blob: f3f2bd70c5f270423289698ae04203739e2d3c13 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#ifndef __DYNAREC_ARM_H_
#define __DYNAREC_ARM_H_
typedef struct dynablock_s dynablock_t;
typedef struct x64emu_s x64emu_t;
typedef struct instsize_s instsize_t;
#define MAX_INSTS 32760
void addInst(instsize_t* insts, size_t* size, int x64_size, int native_size);
void CancelBlock64(int need_lock);
dynablock_t* FillBlock64(uintptr_t addr, int alternate, int is32bits, int inst_max, int is_new);
#endif //__DYNAREC_ARM_H_
|