Home | History | Annotate | Download | only in sljit

Lines Matching refs:op_flags

1137 static sljit_si emit_clz(struct sljit_compiler *compiler, sljit_si op_flags,
1144 SLJIT_UNUSED_ARG(op_flags);
1155 inst = emit_x86_instruction(compiler, 1 | EX86_SHIFT_INS, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 63 : 31, TMP_REG1, 0);
1190 EMIT_MOV(compiler, dst_r, 0, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 64 + 63 : 32 + 31);
1191 compiler->mode32 = op_flags & SLJIT_INT_OP;
1228 inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_INT_OP) ? 63 : 31, dst_r, 0);
1252 sljit_si op_flags = GET_ALL_FLAGS(op);
1268 compiler->mode32 = op_flags & SLJIT_INT_OP;
1277 if (op_flags & SLJIT_INT_OP) {
1388 if (SLJIT_UNLIKELY(GET_FLAGS(op_flags)))
1393 if (SLJIT_UNLIKELY(op_flags & SLJIT_SET_E))
1398 if (SLJIT_UNLIKELY(op_flags & SLJIT_KEEP_FLAGS) && !compiler->flags_saved)
1403 if (SLJIT_UNLIKELY(op_flags & SLJIT_KEEP_FLAGS) && !compiler->flags_saved)
1405 return emit_clz(compiler, op_flags, dst, dstw, src, srcw);