mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04:00
50 lines
1.6 KiB
C
50 lines
1.6 KiB
C
/* Capstone Disassembly Engine */
|
|
/* By Nguyen Anh Quynh <aquynh@gmail.com>, 2013-2015 */
|
|
|
|
#ifndef CS_SYSTEMZ_MAP_H
|
|
#define CS_SYSTEMZ_MAP_H
|
|
|
|
#include <capstone/capstone.h>
|
|
|
|
#include "../../cs_priv.h"
|
|
|
|
typedef enum {
|
|
#include "SystemZGenCSOpGroup.inc"
|
|
} systemz_op_group;
|
|
|
|
// return name of register in friendly string
|
|
const char *SystemZ_reg_name(csh handle, unsigned int reg);
|
|
|
|
// given internal insn id, return public instruction info
|
|
void SystemZ_get_insn_id(cs_struct *h, cs_insn *insn, unsigned int id);
|
|
|
|
const char *SystemZ_insn_name(csh handle, unsigned int id);
|
|
|
|
const char *SystemZ_group_name(csh handle, unsigned int id);
|
|
|
|
void SystemZ_printer(MCInst *MI, SStream *O, void * /* MCRegisterInfo* */ info);
|
|
bool SystemZ_getInstruction(csh handle, const uint8_t *bytes, size_t bytes_len,
|
|
MCInst *MI, uint16_t *size, uint64_t address,
|
|
void *info);
|
|
void SystemZ_init_mri(MCRegisterInfo *MRI);
|
|
void SystemZ_init_cs_detail(MCInst *MI);
|
|
|
|
void SystemZ_set_detail_op_reg(MCInst *MI, unsigned op_num, systemz_reg Reg);
|
|
void SystemZ_set_detail_op_imm(MCInst *MI, unsigned op_num, int64_t Imm, size_t width);
|
|
void SystemZ_set_detail_op_mem(MCInst *MI, unsigned op_num, systemz_reg base, int64_t disp, uint64_t length, systemz_reg index, systemz_addr_mode am);
|
|
void SystemZ_add_cs_detail(MCInst *MI, int /* systemz_op_group */ op_group,
|
|
va_list args);
|
|
|
|
static inline void add_cs_detail(MCInst *MI,
|
|
int /* aarch64_op_group */ op_group, ...)
|
|
{
|
|
if (!MI->flat_insn->detail)
|
|
return;
|
|
va_list args;
|
|
va_start(args, op_group);
|
|
SystemZ_add_cs_detail(MI, op_group, args);
|
|
va_end(args);
|
|
}
|
|
|
|
#endif // CS_SYSTEMZ_MAP_H
|
|
|