Home
last modified time | relevance | path

Searched refs:SLJIT_I32_OP (Results 1 – 10 of 10) sorted by relevance

/external/pcre/dist2/src/sljit/
DsljitLir.h760 #define SLJIT_I32_OP 0x100 macro
774 #define SLJIT_F32_OP SLJIT_I32_OP
858 #define SLJIT_DIVMOD_U32 (SLJIT_DIVMOD_UW | SLJIT_I32_OP)
866 #define SLJIT_DIVMOD_S32 (SLJIT_DIVMOD_SW | SLJIT_I32_OP)
872 #define SLJIT_DIV_U32 (SLJIT_DIV_UW | SLJIT_I32_OP)
880 #define SLJIT_DIV_S32 (SLJIT_DIV_SW | SLJIT_I32_OP)
913 #define SLJIT_MOV32_U8 (SLJIT_MOV_U8 | SLJIT_I32_OP)
916 #define SLJIT_MOV32_S8 (SLJIT_MOV_S8 | SLJIT_I32_OP)
919 #define SLJIT_MOV32_U16 (SLJIT_MOV_U16 | SLJIT_I32_OP)
922 #define SLJIT_MOV32_S16 (SLJIT_MOV_S16 | SLJIT_I32_OP)
[all …]
DsljitLir.c99 ((op) & ~(SLJIT_I32_OP | SLJIT_SET_Z | VARIABLE_FLAG_MASK))
105 ((op) & (SLJIT_I32_OP | SLJIT_SET_Z | VARIABLE_FLAG_MASK))
383 SLJIT_COMPILE_ASSERT(SLJIT_I32_OP == SLJIT_F32_OP, in sljit_create_compiler()
529 if ((current_flags & ~(VARIABLE_FLAG_MASK | SLJIT_I32_OP | SLJIT_SET_Z)) == 0) { in sljit_set_current_flags()
530 …compiler->last_flags = GET_FLAG_TYPE(current_flags) | (current_flags & (SLJIT_I32_OP | SLJIT_SET_Z… in sljit_set_current_flags()
912 ((type & 0xff) <= SLJIT_MUL_NOT_OVERFLOW ? ((type & SLJIT_I32_OP) ? "32" : "") \
1131 || ((op & ~SLJIT_I32_OP) >= SLJIT_DIVMOD_UW && (op & ~SLJIT_I32_OP) <= SLJIT_DIV_SW)); in check_sljit_emit_op0()
1141 fprintf(compiler->verbose, (op & SLJIT_I32_OP) ? "32" : "w"); in check_sljit_emit_op0()
1174 CHECK_ARGUMENT(!(op & (SLJIT_I32_OP | SLJIT_SET_Z | VARIABLE_FLAG_MASK))); in check_sljit_emit_op1()
1187 compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_I32_OP | SLJIT_SET_Z)); in check_sljit_emit_op1()
[all …]
DsljitNativeMIPS_64.c122 (!(op & SLJIT_I32_OP) ? a : b)
141 SLJIT_ASSERT(!(op & SLJIT_I32_OP)); \
146 ins = (op & SLJIT_I32_OP) ? op_imm : op_dimm; \
153 ins = (op & SLJIT_I32_OP) ? op_v : op_dv; \
205 SLJIT_ASSERT(!(op & SLJIT_I32_OP)); in emit_single_op()
237 …FAIL_IF(push_inst(compiler, ORI | SA(0) | T(dst) | IMM((op & SLJIT_I32_OP) ? 32 : 64), UNMOVABLE_I… in emit_single_op()
463 if (op & SLJIT_I32_OP) in emit_single_op()
DsljitNativeARM_64.c1083 sljit_ins inv_bits = (op & SLJIT_I32_OP) ? (1 << 31) : 0; in sljit_emit_op0()
1148 … return emit_op_imm(compiler, op | ((op_flags & SLJIT_I32_OP) ? INT_OP : 0), dst_r, TMP_REG1, src); in sljit_emit_op1()
1206 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1()
1246 if (op & SLJIT_I32_OP) { in sljit_emit_op2()
1665 sljit_ins inv_bits = (type & SLJIT_I32_OP) ? (1 << 31) : 0; in emit_cmp_to0()
1766 if (op & SLJIT_I32_OP) { in sljit_emit_op_flags()
1790 sljit_ins inv_bits = (dst_reg & SLJIT_I32_OP) ? (1 << 31) : 0; in sljit_emit_cmov()
1797 if (dst_reg & SLJIT_I32_OP) in sljit_emit_cmov()
1805 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
DsljitNativeX86_common.c780 compiler->mode32 = op & SLJIT_I32_OP; in sljit_emit_op0()
1213 EMIT_MOV(compiler, TMP_REG2, 0, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? (64 + 63) : (32 + 31)); in emit_clz()
1221 …it_cmov_generic(compiler, SLJIT_EQUAL, dst_r, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? (64 + 63) : … in emit_clz()
1223 …inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 63… in emit_clz()
1251 compiler->mode32 = op_flags & SLJIT_I32_OP; in sljit_emit_op1()
1272 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1()
2099 compiler->mode32 = op & SLJIT_I32_OP;
2740 dst_reg &= ~SLJIT_I32_OP;
2753 compiler->mode32 = dst_reg & SLJIT_I32_OP;
2754 dst_reg &= ~SLJIT_I32_OP;
DsljitNativePPC_common.c1035 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0()
1139 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1()
1196 …return emit_op(compiler, SLJIT_CLZ, flags | (!(op_flags & SLJIT_I32_OP) ? 0 : ALT_FORM1), dst, dst… in sljit_emit_op1()
1262 if (op & SLJIT_I32_OP) { in sljit_emit_op2()
1383 if (op & SLJIT_I32_OP) in sljit_emit_op2()
1439 if (op & SLJIT_I32_OP) in sljit_emit_op2()
2001 input_flags = (op & SLJIT_I32_OP) ? INT_DATA : WORD_DATA; in sljit_emit_op_flags()
2159 if (!(type & SLJIT_MEM_STORE) && !(type & SLJIT_I32_OP)) { in sljit_emit_mem()
DsljitNativeMIPS_common.c1064 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0()
1158 if ((op & SLJIT_I32_OP) && GET_OPCODE(op) >= SLJIT_NOT) in sljit_emit_op1()
1232 if (op & SLJIT_I32_OP) { in sljit_emit_op2()
1266 if (op & SLJIT_I32_OP) in sljit_emit_op2()
1733 flags = ((type & SLJIT_I32_OP) ? INT_DATA : WORD_DATA) | LOAD_DATA; in sljit_emit_cmp()
1889 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
1981 if (dst_reg & SLJIT_I32_OP) in sljit_emit_cmov()
1989 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
DsljitNativeTILEGX_64.c2089 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags()
2251 …return emit_op(compiler, op, (op & SLJIT_I32_OP) ? INT_DATA : WORD_DATA, dst, dstw, TMP_REG1, 0, s… in sljit_emit_op1()
2287 if (op & SLJIT_I32_OP) in sljit_emit_op2()
DsljitNativeARM_T2_32.c2197 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
DsljitNativeARM_32.c2507 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()