Lines Matching refs:op

43 		if (op & SLJIT_SET_Z) \
49 if (op & SLJIT_SET_Z) \
57 if (op & SLJIT_SET_Z) \
63 if (op & SLJIT_SET_Z) \
69 static SLJIT_INLINE sljit_s32 emit_single_op(struct sljit_compiler *compiler, sljit_s32 op, sljit_s… in emit_single_op() argument
74 switch (GET_OPCODE(op)) { in emit_single_op()
88 if (op == SLJIT_MOV_S8) { in emit_single_op()
107 if (op == SLJIT_MOV_S16) { in emit_single_op()
124 if (op & SLJIT_SET_Z) in emit_single_op()
133 if (op & SLJIT_SET_Z) in emit_single_op()
156 is_overflow = GET_FLAG_TYPE(op) == SLJIT_OVERFLOW; in emit_single_op()
157 is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY); in emit_single_op()
166 else if (op & SLJIT_SET_Z) in emit_single_op()
178 if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK)) in emit_single_op()
184 else if (op & SLJIT_SET_Z) in emit_single_op()
190 if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK)) in emit_single_op()
202 if (op & SLJIT_SET_Z) in emit_single_op()
207 is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY); in emit_single_op()
247 if (GET_FLAG_TYPE(op) == SLJIT_LESS || GET_FLAG_TYPE(op) == SLJIT_GREATER_EQUAL) { in emit_single_op()
251 else if (GET_FLAG_TYPE(op) == SLJIT_SIG_LESS || GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER_EQUAL) { in emit_single_op()
257 if (!is_handled && GET_FLAG_TYPE(op) >= SLJIT_LESS && GET_FLAG_TYPE(op) <= SLJIT_SIG_LESS_EQUAL) { in emit_single_op()
266 if (GET_FLAG_TYPE(op) == SLJIT_LESS || GET_FLAG_TYPE(op) == SLJIT_GREATER_EQUAL) { in emit_single_op()
269 else if (GET_FLAG_TYPE(op) == SLJIT_GREATER || GET_FLAG_TYPE(op) == SLJIT_LESS_EQUAL) in emit_single_op()
273 else if (GET_FLAG_TYPE(op) == SLJIT_SIG_LESS || GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER_EQUAL) { in emit_single_op()
276 else if (GET_FLAG_TYPE(op) == SLJIT_SIG_GREATER || GET_FLAG_TYPE(op) == SLJIT_SIG_LESS_EQUAL) in emit_single_op()
284 if (op & SLJIT_SET_Z) in emit_single_op()
290 if (op & SLJIT_SET_Z) in emit_single_op()
298 is_overflow = GET_FLAG_TYPE(op) == SLJIT_OVERFLOW; in emit_single_op()
299 is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY); in emit_single_op()
308 else if (op & SLJIT_SET_Z) in emit_single_op()
314 if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK)) in emit_single_op()
320 else if (op & SLJIT_SET_Z) in emit_single_op()
326 if (!(flags & UNUSED_DEST) || (op & VARIABLE_FLAG_MASK)) in emit_single_op()
335 if (op & SLJIT_SET_Z) in emit_single_op()
346 is_carry = GET_FLAG_TYPE(op) == GET_FLAG_TYPE(SLJIT_SET_CARRY); in emit_single_op()
370 if (GET_FLAG_TYPE(op) != SLJIT_MUL_OVERFLOW) { in emit_single_op()