Rizin
unix-like reverse engineering framework and cli tools
PPCMapping.h
Go to the documentation of this file.
1 /* Capstone Disassembly Engine */
2 /* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
3 
4 #ifndef CS_PPC_MAP_H
5 #define CS_PPC_MAP_H
6 
7 #include "capstone/capstone.h"
8 
9 // return name of regiser in friendly string
10 const char *PPC_reg_name(csh handle, unsigned int reg);
11 
12 // given internal insn id, return public instruction info
13 void PPC_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
14 
15 const char *PPC_insn_name(csh handle, unsigned int id);
16 const char *PPC_group_name(csh handle, unsigned int id);
17 
18 // map internal raw register to 'public' register
19 ppc_reg PPC_map_register(unsigned int r);
20 
21 struct ppc_alias {
22  unsigned int id; // instruction id
23  int cc; // code condition
24  const char *mnem;
25 };
26 
27 // given alias mnemonic, return instruction ID & CC
28 bool PPC_alias_insn(const char *name, struct ppc_alias *alias);
29 
30 // check if this insn is relative branch
31 bool PPC_abs_branch(cs_struct *h, unsigned int id);
32 
33 // map instruction name to public instruction ID
34 ppc_insn PPC_map_insn(const char *name);
35 
36 #endif
37 
const char * PPC_insn_name(csh handle, unsigned int id)
ppc_reg PPC_map_register(unsigned int r)
bool PPC_alias_insn(const char *name, struct ppc_alias *alias)
void PPC_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id)
bool PPC_abs_branch(cs_struct *h, unsigned int id)
const char * PPC_reg_name(csh handle, unsigned int reg)
const char * PPC_group_name(csh handle, unsigned int id)
ppc_insn PPC_map_insn(const char *name)
static mcore_handle handle
Definition: asm_mcore.c:8
size_t csh
Definition: capstone.h:71
#define r
Definition: crypto_rc6.c:12
#define reg(n)
#define h(i)
Definition: sha256.c:48
Definition: z80asm.h:102
const char * mnem
Definition: PPCMapping.h:24
unsigned int id
Definition: PPCMapping.h:22
ppc_insn
PPC instruction.
Definition: ppc.h:311
ppc_reg
PPC registers.
Definition: ppc.h:51