mirror of
https://github.com/sarah-walker-pcem/pcem.git
synced 2025-07-23 11:43:03 +02:00
20 lines
374 B
C
20 lines
374 B
C
#ifndef _CODEGEN_BACKEND_X86_64_H_
|
|
#define _CODEGEN_BACKEND_X86_64_H_
|
|
|
|
#include "codegen_backend_x86-64_defs.h"
|
|
|
|
#define BLOCK_SIZE 0x4000
|
|
#define BLOCK_MASK 0x3fff
|
|
#define BLOCK_START 0
|
|
|
|
#define HASH_SIZE 0x20000
|
|
#define HASH_MASK 0x1ffff
|
|
|
|
#define HASH(l) ((l)&0x1ffff)
|
|
|
|
#define BLOCK_MAX 0x3c0
|
|
|
|
#define CODEGEN_BACKEND_HAS_MOV_IMM
|
|
|
|
#endif /* _CODEGEN_BACKEND_X86_64_H_ */
|