Lines Matching +full:0 +full:x3800
37 (kdb_frame->tf_eip & 0xffff) + \
38 ((kdb_frame->tf_cs & 0xffff) << 4) : \
41 #define BKPT_INST 0xcc /* breakpoint instruction */
49 } while(0)
55 } while(0);
70 #define IS_WATCHPOINT_TRAP(type, code) 0
72 #define I_CALL 0xe8
73 #define I_CALLI 0xff
74 #define I_RET 0xc3
75 #define I_IRET 0xcf
77 #define inst_trap_return(ins) (((ins)&0xff) == I_IRET)
78 #define inst_return(ins) (((ins)&0xff) == I_RET)
79 #define inst_call(ins) (((ins)&0xff) == I_CALL || \
80 (((ins)&0xff) == I_CALLI && \
81 ((ins)&0x3800) == 0x1000))
82 #define inst_load(ins) 0
83 #define inst_store(ins) 0