Lines Matching defs:op
20 #define OPCODE_BT(op) (((op) & 0xff00) == 0x8900) argument
21 #define OPCODE_BF(op) (((op) & 0xff00) == 0x8b00) argument
22 #define OPCODE_BTF_DISP(op) (((op) & 0x80) ? (((op) | 0xffffff80) << 1) : \ argument
24 #define OPCODE_BFS(op) (((op) & 0xff00) == 0x8f00) argument
25 #define OPCODE_BTS(op) (((op) & 0xff00) == 0x8d00) argument
26 #define OPCODE_BRA(op) (((op) & 0xf000) == 0xa000) argument
27 #define OPCODE_BRA_DISP(op) (((op) & 0x800) ? (((op) | 0xfffff800) << 1) : \ argument
29 #define OPCODE_BRAF(op) (((op) & 0xf0ff) == 0x0023) argument
30 #define OPCODE_BRAF_REG(op) (((op) & 0x0f00) >> 8) argument
31 #define OPCODE_BSR(op) (((op) & 0xf000) == 0xb000) argument
32 #define OPCODE_BSR_DISP(op) (((op) & 0x800) ? (((op) | 0xfffff800) << 1) : \ argument
34 #define OPCODE_BSRF(op) (((op) & 0xf0ff) == 0x0003) argument
35 #define OPCODE_BSRF_REG(op) (((op) >> 8) & 0xf) argument
36 #define OPCODE_JMP(op) (((op) & 0xf0ff) == 0x402b) argument
37 #define OPCODE_JMP_REG(op) (((op) >> 8) & 0xf) argument
38 #define OPCODE_JSR(op) (((op) & 0xf0ff) == 0x400b) argument
39 #define OPCODE_JSR_REG(op) (((op) >> 8) & 0xf) argument
40 #define OPCODE_RTS(op) ((op) == 0xb) argument
41 #define OPCODE_RTE(op) ((op) == 0x2b) argument
49 insn_size_t op = __raw_readw(linux_regs->pc); in get_step_address() local