Home
last modified time | relevance | path

Searched refs:SLJIT_INT_OP (Results 1 – 8 of 8) sorted by relevance

/external/pcre/dist/sljit/
DsljitLir.h643 #define SLJIT_INT_OP 0x100 macro
710 #define SLJIT_IUDIVMOD (SLJIT_UDIVMOD | SLJIT_INT_OP)
718 #define SLJIT_ISDIVMOD (SLJIT_SDIVMOD | SLJIT_INT_OP)
725 #define SLJIT_IUDIVI (SLJIT_UDIVI | SLJIT_INT_OP)
734 #define SLJIT_ISDIVI (SLJIT_SDIVI | SLJIT_INT_OP)
756 #define SLJIT_IMOV_UB (SLJIT_MOV_UB | SLJIT_INT_OP)
759 #define SLJIT_IMOV_SB (SLJIT_MOV_SB | SLJIT_INT_OP)
762 #define SLJIT_IMOV_UH (SLJIT_MOV_UH | SLJIT_INT_OP)
765 #define SLJIT_IMOV_SH (SLJIT_MOV_SH | SLJIT_INT_OP)
773 #define SLJIT_IMOV (SLJIT_MOV_SI | SLJIT_INT_OP)
[all …]
DsljitLir.c80 …((op) & ~(SLJIT_INT_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJ…
86 …((op) & (SLJIT_INT_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJIT_SET_C | SLJI…
344 SLJIT_COMPILE_ASSERT(SLJIT_INT_OP == SLJIT_SINGLE_OP, in sljit_create_compiler()
666 …CHECK_ARGUMENT(!(op & (SLJIT_INT_OP | SLJIT_SET_E | SLJIT_SET_U | SLJIT_SET_S | SLJIT_SET_O | SLJI…
877 ((type & 0xff) <= SLJIT_MUL_NOT_OVERFLOW ? ((type & SLJIT_INT_OP) ? "i_" : "") \
1039 || ((op & ~SLJIT_INT_OP) >= SLJIT_UDIVMOD && (op & ~SLJIT_INT_OP) <= SLJIT_SDIVI)); in check_sljit_emit_op0()
1044 …fprintf(compiler->verbose, " %s%s\n", !(op & SLJIT_INT_OP) ? "" : "i", op0_names[GET_OPCODE(op) -… in check_sljit_emit_op0()
1067 …fprintf(compiler->verbose, " %s%s%s%s%s%s%s%s ", !(op & SLJIT_INT_OP) ? "" : "i", op1_names[GET_O… in check_sljit_emit_op1()
1098 …fprintf(compiler->verbose, " %s%s%s%s%s%s%s%s ", !(op & SLJIT_INT_OP) ? "" : "i", op2_names[GET_O… in check_sljit_emit_op2()
1331 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_REWRITABLE_JUMP | SLJIT_INT_OP))); in check_sljit_emit_jump()
[all …]
DsljitNativeMIPS_64.c122 (!(op & SLJIT_INT_OP) ? a : b)
141 SLJIT_ASSERT(!(op & SLJIT_INT_OP)); \
146 ins = (op & SLJIT_INT_OP) ? op_imm : op_dimm; \
153 ins = (op & SLJIT_INT_OP) ? op_v : op_dv; \
202 SLJIT_ASSERT(!(op & SLJIT_INT_OP)); in emit_single_op()
234 …FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM((op & SLJIT_INT_OP) ? 32 : 64), UNMOVABLE_I… in emit_single_op()
395 if (op & SLJIT_INT_OP) in emit_single_op()
DsljitNativeX86_common.c766 compiler->mode32 = op & SLJIT_INT_OP; in sljit_emit_op0()
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()
1280 compiler->mode32 = op_flags & SLJIT_INT_OP; in sljit_emit_op1()
1289 if (op_flags & SLJIT_INT_OP) { in sljit_emit_op1()
2144 compiler->mode32 = op & SLJIT_INT_OP;
2968 CHECK_ARGUMENT(!(type & ~(0xff | SLJIT_INT_OP)));
2970 CHECK_ARGUMENT(FUNCTION_CHECK_IS_REG(dst_reg & ~SLJIT_INT_OP));
[all …]
DsljitNativeARM_64.c1248 sljit_ins inv_bits = (op & SLJIT_INT_OP) ? (1 << 31) : 0; in sljit_emit_op0()
1381 … return emit_op_imm(compiler, op | ((op_flags & SLJIT_INT_OP) ? INT_OP : 0), dst_r, TMP_REG1, src); in sljit_emit_op1()
1396 if (op_flags & SLJIT_INT_OP) { in sljit_emit_op1()
1414 if (op_flags & SLJIT_INT_OP) in sljit_emit_op1()
1449 if (op & SLJIT_INT_OP) { in sljit_emit_op2()
1910 sljit_ins inv_bits = (type & SLJIT_INT_OP) ? (1 << 31) : 0; in emit_cmp_to0()
1997 if (op & SLJIT_INT_OP) { in sljit_emit_op_flags()
DsljitNativePPC_common.c1249 sljit_si int_op = op & SLJIT_INT_OP; in sljit_emit_op0()
1315 if (op_flags & SLJIT_INT_OP) { in sljit_emit_op1()
1407 …return emit_op(compiler, SLJIT_CLZ, flags | (!(op_flags & SLJIT_INT_OP) ? 0 : ALT_FORM1), dst, dst… in sljit_emit_op1()
1470 if (op & SLJIT_INT_OP) { in sljit_emit_op2()
1590 if (op & SLJIT_INT_OP) in sljit_emit_op2()
1646 if (op & SLJIT_INT_OP) in sljit_emit_op2()
2238 input_flags = (flags & SLJIT_INT_OP) ? INT_DATA : WORD_DATA; in sljit_emit_op_flags()
DsljitNativeMIPS_common.c1035 sljit_si int_op = op & SLJIT_INT_OP; in sljit_emit_op0()
1098 if ((op & SLJIT_INT_OP) && GET_OPCODE(op) >= SLJIT_NOT) { in sljit_emit_op1()
1201 if (op & SLJIT_INT_OP) { in sljit_emit_op2()
1235 if (op & SLJIT_INT_OP) in sljit_emit_op2()
1751 flags = ((type & SLJIT_INT_OP) ? INT_DATA : WORD_DATA) | LOAD_DATA; in sljit_emit_cmp()
2014 sljit_si mem_type = (op & SLJIT_INT_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
DsljitNativeTILEGX_64.c2089 sljit_si mem_type = (op & SLJIT_INT_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
2252 …return emit_op(compiler, op, (op & SLJIT_INT_OP) ? INT_DATA : WORD_DATA, dst, dstw, TMP_REG1, 0, s… in sljit_emit_op1()
2288 if (op & SLJIT_INT_OP) in sljit_emit_op2()