Lines Matching +full:0 +full:x3800
38 #define BKPT_INST 0xcc /* breakpoint instruction */
46 } while(0)
52 } while(0);
67 #define IS_WATCHPOINT_TRAP(type, code) 0
69 #define I_CALL 0xe8
70 #define I_CALLI 0xff
71 #define i_calli(ins) (((ins)&0xff) == I_CALLI && ((ins)&0x3800) == 0x1000)
72 #define I_RET 0xc3
73 #define I_IRET 0xcf
74 #define i_rex(ins) (((ins) & 0xff) == 0x41 || ((ins) & 0xff) == 0x43)
76 #define inst_trap_return(ins) (((ins)&0xff) == I_IRET)
77 #define inst_return(ins) (((ins)&0xff) == I_RET)
78 #define inst_call(ins) (((ins)&0xff) == I_CALL || i_calli(ins) || \
80 #define inst_load(ins) 0
81 #define inst_store(ins) 0