Rizin
unix-like reverse engineering framework and cli tools
AArch64Module.c
Go to the documentation of this file.
1 /* Capstone Disassembly Engine */
2 /* By Dang Hoang Vu <danghvu@gmail.com> 2013 */
3 
4 #ifdef CAPSTONE_HAS_ARM64
5 
6 #include "../../utils.h"
7 #include "../../MCRegisterInfo.h"
8 #include "AArch64Disassembler.h"
9 #include "AArch64InstPrinter.h"
10 #include "AArch64Mapping.h"
11 #include "AArch64Module.h"
12 
14 {
15  MCRegisterInfo *mri;
16  mri = cs_mem_malloc(sizeof(*mri));
17 
18  AArch64_init(mri);
20  ud->printer_info = mri;
21  ud->getinsn_info = mri;
28 #ifndef CAPSTONE_DIET
30 #endif
31 
32  return CS_ERR_OK;
33 }
34 
36 {
37  if (type == CS_OPT_MODE) {
38  handle->mode = (cs_mode)value;
39  }
40 
41  return CS_ERR_OK;
42 }
43 
44 #endif
bool AArch64_getInstruction(csh ud, const uint8_t *code, size_t code_len, MCInst *instr, uint16_t *size, uint64_t address, void *info)
void AArch64_init(MCRegisterInfo *MRI)
void AArch64_printInst(MCInst *MI, SStream *O, void *)
void AArch64_post_printer(csh handle, cs_insn *pub_insn, char *insn_asm, MCInst *mci)
const char * AArch64_insn_name(csh handle, unsigned int id)
void AArch64_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id)
void AArch64_reg_access(const cs_insn *insn, cs_regs regs_read, uint8_t *regs_read_count, cs_regs regs_write, uint8_t *regs_write_count)
const char * AArch64_reg_name(csh handle, unsigned int reg)
const char * AArch64_group_name(csh handle, unsigned int id)
cs_err AArch64_option(cs_struct *handle, cs_opt_type type, size_t value)
cs_err AArch64_global_init(cs_struct *ud)
static mcore_handle handle
Definition: asm_mcore.c:8
cs_mode
Mode type.
Definition: capstone.h:102
cs_opt_type
Runtime option for the disassembled engine.
Definition: capstone.h:168
@ CS_OPT_MODE
Change engine's mode at run-time.
Definition: capstone.h:172
static int value
Definition: cmd_api.c:93
cs_malloc_t cs_mem_malloc
Definition: cs.c:348
int type
Definition: mipsasm.c:17
int CS_ERR_OK
Definition: __init__.py:235
GetName_t insn_name
Definition: cs_priv.h:62
GetName_t reg_name
Definition: cs_priv.h:61
void * printer_info
Definition: cs_priv.h:58
Printer_t printer
Definition: cs_priv.h:57
GetID_t insn_id
Definition: cs_priv.h:64
GetName_t group_name
Definition: cs_priv.h:63
GetRegisterAccess_t reg_access
Definition: cs_priv.h:77
Disasm_t disasm
Definition: cs_priv.h:59
void * getinsn_info
Definition: cs_priv.h:60
PostPrinter_t post_printer
Definition: cs_priv.h:65