Lines Matching refs:ins
49 #define inst_trap_return(ins) (((ins)&0xff) == I_IRET)
50 #define inst_return(ins) (((ins)&0xff) == I_RET)
51 #define inst_call(ins) (((ins)&0xff) == I_CALL || \
52 (((ins)&0xff) == I_CALLI && \
53 ((ins)&0x3800) == 0x1000))
54 #define inst_load(ins) 0
55 #define inst_store(ins) 0
80 #define inst_trap_return(ins) (((ins)&0xff) == I_IRET)
81 #define inst_return(ins) (((ins)&0xff) == I_RET)
82 #define inst_call(ins) (((ins)&0xff) == I_CALL || \
83 (((ins)&0xff) == I_CALLI && \
84 ((ins)&0x3800) == 0x1000))
85 #define inst_load(ins) (__USE(ins), 0)
86 #define inst_store(ins) (__USE(ins), 0)