core: rename operand access symbols from CS_OP_* to CS_AC_*

This commit is contained in:
Nguyen Anh Quynh 2015-03-23 00:09:20 +08:00
parent 6a77cc7463
commit b1a4af656c
5 changed files with 12534 additions and 12552 deletions

File diff suppressed because it is too large Load Diff

View File

@ -879,16 +879,10 @@ bool ARM_blx_to_arm_mode(cs_struct *h, unsigned int id) {
#if 0
// Runtime option for the disassembled engine
typedef enum cs_op_type {
CS_OP_READ = 1, // this operand reads register
CS_OP_WRITE, // this operand writes register
} cs_op_type;
// map instruction to its characteristics
typedef struct insn_op {
unsigned int eflags_update; // how this instruction update status flags
cs_op_type operands[4];
cs_ac_type operands[4];
} insn_op;
static insn_op insn_ops[] = {

File diff suppressed because it is too large Load Diff

View File

@ -2972,16 +2972,10 @@ void op_addAvxBroadcast(MCInst *MI, x86_avx_bcast v)
#if 0
// Runtime option for the disassembled engine
typedef enum cs_op_type {
CS_OP_READ = 1, // this operand reads register
CS_OP_WRITE, // this operand writes register
} cs_op_type;
// map instruction to its characteristics
typedef struct insn_op {
unsigned int eflags_update; // how this instruction update EFlags
cs_op_type operands[4];
cs_ac_type operands[4];
} insn_op;
static insn_op insn_ops[] = {

File diff suppressed because it is too large Load Diff