Lines Matching refs:op_flags
1149 static sljit_si emit_clz(struct sljit_compiler *compiler, sljit_si op_flags, in emit_clz() argument
1156 SLJIT_UNUSED_ARG(op_flags); in emit_clz()
1167 …inst = emit_x86_instruction(compiler, 1 | EX86_SHIFT_INS, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? … in emit_clz()
1202 EMIT_MOV(compiler, dst_r, 0, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 64 + 63 : 32 + 31); in emit_clz()
1203 compiler->mode32 = op_flags & SLJIT_INT_OP; in emit_clz()
1240 …inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 63… in emit_clz()
1264 sljit_si op_flags = GET_ALL_FLAGS(op); in sljit_emit_op1() local
1280 compiler->mode32 = op_flags & SLJIT_INT_OP; in sljit_emit_op1()
1289 if (op_flags & SLJIT_INT_OP) { in sljit_emit_op1()
1400 if (SLJIT_UNLIKELY(GET_FLAGS(op_flags))) in sljit_emit_op1()
1405 if (SLJIT_UNLIKELY(op_flags & SLJIT_SET_E)) in sljit_emit_op1()
1410 if (SLJIT_UNLIKELY(op_flags & SLJIT_KEEP_FLAGS) && !compiler->flags_saved) in sljit_emit_op1()
1415 if (SLJIT_UNLIKELY(op_flags & SLJIT_KEEP_FLAGS) && !compiler->flags_saved) in sljit_emit_op1()
1417 return emit_clz(compiler, op_flags, dst, dstw, src, srcw); in sljit_emit_op1()