Searched refs:SLJIT_I32_OP (Results 1 – 10 of 10) sorted by relevance
/external/pcre/dist2/src/sljit/ |
D | sljitLir.h | 788 #define SLJIT_I32_OP 0x100 macro 802 #define SLJIT_F32_OP SLJIT_I32_OP 886 #define SLJIT_DIVMOD_U32 (SLJIT_DIVMOD_UW | SLJIT_I32_OP) 894 #define SLJIT_DIVMOD_S32 (SLJIT_DIVMOD_SW | SLJIT_I32_OP) 900 #define SLJIT_DIV_U32 (SLJIT_DIV_UW | SLJIT_I32_OP) 908 #define SLJIT_DIV_S32 (SLJIT_DIV_SW | SLJIT_I32_OP) 940 #define SLJIT_MOV32_U8 (SLJIT_MOV_U8 | SLJIT_I32_OP) 943 #define SLJIT_MOV32_S8 (SLJIT_MOV_S8 | SLJIT_I32_OP) 946 #define SLJIT_MOV32_U16 (SLJIT_MOV_U16 | SLJIT_I32_OP) 949 #define SLJIT_MOV32_S16 (SLJIT_MOV_S16 | SLJIT_I32_OP) [all …]
|
D | sljitNativeS390X.c | 954 type &= ~SLJIT_I32_OP; in push_load_cc() 971 if (!(op & SLJIT_I32_OP)) { in push_store_zero_flag() 1465 op = GET_OPCODE(op) | (op & SLJIT_I32_OP); in sljit_emit_op0() 1567 switch (opcode | (op & SLJIT_I32_OP)) { in sljit_emit_op1() 1651 switch (opcode | (op & SLJIT_I32_OP)) { in sljit_emit_op1() 1788 FAIL_IF(load_word(compiler, src_r, src, srcw, tmp1, src & SLJIT_I32_OP)); in sljit_emit_op1() 1791 switch (opcode | (op & SLJIT_I32_OP)) { in sljit_emit_op1() 1852 FAIL_IF(store_word(compiler, dst_r, dst, dstw, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op1() 1901 switch (GET_OPCODE(op) | (op & SLJIT_I32_OP)) { in have_op_2_imm() 1994 FAIL_IF(load_word(compiler, src1_r, src1, src1w, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op2() [all …]
|
D | sljitLir.c | 98 ((op) & ~(SLJIT_I32_OP | SLJIT_SET_Z | VARIABLE_FLAG_MASK)) 104 ((op) & (SLJIT_I32_OP | SLJIT_SET_Z | VARIABLE_FLAG_MASK)) 382 SLJIT_COMPILE_ASSERT(SLJIT_I32_OP == SLJIT_F32_OP, in sljit_create_compiler() 541 if ((current_flags & ~(VARIABLE_FLAG_MASK | SLJIT_I32_OP | SLJIT_SET_Z)) == 0) { in sljit_set_current_flags() 542 …compiler->last_flags = GET_FLAG_TYPE(current_flags) | (current_flags & (SLJIT_I32_OP | SLJIT_SET_Z… in sljit_set_current_flags() 971 ((type & 0xff) <= SLJIT_MUL_NOT_OVERFLOW ? ((type & SLJIT_I32_OP) ? "32" : "") \ 1173 || ((op & ~SLJIT_I32_OP) >= SLJIT_DIVMOD_UW && (op & ~SLJIT_I32_OP) <= SLJIT_DIV_SW) in check_sljit_emit_op0() 1184 fprintf(compiler->verbose, (op & SLJIT_I32_OP) ? "32" : "w"); in check_sljit_emit_op0() 1217 CHECK_ARGUMENT(!(op & (SLJIT_I32_OP | SLJIT_SET_Z | VARIABLE_FLAG_MASK))); in check_sljit_emit_op1() 1230 compiler->last_flags = GET_FLAG_TYPE(op) | (op & (SLJIT_I32_OP | SLJIT_SET_Z)); in check_sljit_emit_op1() [all …]
|
D | sljitNativeMIPS_64.c | 122 (!(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() 465 if (op & SLJIT_I32_OP) in emit_single_op()
|
D | sljitNativeARM_64.c | 1124 sljit_ins inv_bits = (op & SLJIT_I32_OP) ? W_OP : 0; in sljit_emit_op0() 1175 … return emit_op_imm(compiler, op | ((op_flags & SLJIT_I32_OP) ? INT_OP : 0), dst_r, TMP_REG1, src); in sljit_emit_op1() 1233 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1() 1273 if (op & SLJIT_I32_OP) { in sljit_emit_op2() 1718 sljit_ins inv_bits = (type & SLJIT_I32_OP) ? W_OP : 0; in emit_cmp_to0() 1819 if (op & SLJIT_I32_OP) { in sljit_emit_op_flags() 1843 sljit_ins inv_bits = (dst_reg & SLJIT_I32_OP) ? W_OP : 0; in sljit_emit_cmov() 1850 if (dst_reg & SLJIT_I32_OP) in sljit_emit_cmov() 1858 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
|
D | sljitNativeX86_common.c | 980 compiler->mode32 = op & SLJIT_I32_OP; in sljit_emit_op0() 1417 EMIT_MOV(compiler, TMP_REG2, 0, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? (64 + 63) : (32 + 31)); in emit_clz() 1425 …it_cmov_generic(compiler, SLJIT_EQUAL, dst_r, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? (64 + 63) : … in emit_clz() 1427 …inst = emit_x86_instruction(compiler, 1 | EX86_BIN_INS, SLJIT_IMM, !(op_flags & SLJIT_I32_OP) ? 63… in emit_clz() 1455 compiler->mode32 = op_flags & SLJIT_I32_OP; in sljit_emit_op1() 1470 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1() 2297 compiler->mode32 = op & SLJIT_I32_OP; 2969 dst_reg &= ~SLJIT_I32_OP; 2982 compiler->mode32 = dst_reg & SLJIT_I32_OP; 2983 dst_reg &= ~SLJIT_I32_OP;
|
D | sljitNativePPC_common.c | 1126 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0() 1226 if (op_flags & SLJIT_I32_OP) { in sljit_emit_op1() 1283 …return emit_op(compiler, SLJIT_CLZ, flags | (!(op_flags & SLJIT_I32_OP) ? 0 : ALT_FORM1), dst, dst… in sljit_emit_op1() 1349 if (op & SLJIT_I32_OP) { in sljit_emit_op2() 1470 if (op & SLJIT_I32_OP) in sljit_emit_op2() 1526 if (op & SLJIT_I32_OP) in sljit_emit_op2() 2101 input_flags = (op & SLJIT_I32_OP) ? INT_DATA : WORD_DATA; in sljit_emit_op_flags() 2259 if (!(type & SLJIT_MEM_STORE) && !(type & SLJIT_I32_OP)) { in sljit_emit_mem()
|
D | sljitNativeMIPS_common.c | 1224 sljit_s32 int_op = op & SLJIT_I32_OP; in sljit_emit_op0() 1341 if ((op & SLJIT_I32_OP) && GET_OPCODE(op) >= SLJIT_NOT) in sljit_emit_op1() 1415 if (op & SLJIT_I32_OP) { in sljit_emit_op2() 1449 if (op & SLJIT_I32_OP) in sljit_emit_op2() 1948 flags = ((type & SLJIT_I32_OP) ? INT_DATA : WORD_DATA) | LOAD_DATA; in sljit_emit_cmp() 2104 sljit_s32 mem_type = (op & SLJIT_I32_OP) ? (INT_DATA | SIGNED_DATA) : WORD_DATA; in sljit_emit_op_flags() 2200 if (dst_reg & SLJIT_I32_OP) in sljit_emit_cmov() 2208 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
|
D | sljitNativeARM_32.c | 2630 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
|
D | sljitNativeARM_T2_32.c | 2230 dst_reg &= ~SLJIT_I32_OP; in sljit_emit_cmov()
|