Home
last modified time | relevance | path

Searched refs:push_inst (Results 1 – 14 of 14) sorted by relevance

/PHP-8.3/ext/pcre/pcre2lib/sljit/
H A DsljitNativePPC_64.c50 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
165 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
166 return push_inst(compiler, CLRLDI(dst, src2, 32)); in emit_single_op()
178 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
179 return push_inst(compiler, CLRLDI(dst, src2, 56)); in emit_single_op()
182 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
193 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
194 return push_inst(compiler, CLRLDI(dst, src2, 48)); in emit_single_op()
231 return push_inst(compiler, SRDI(32) | S(dst) | A(dst)); in emit_single_op()
261 return push_inst(compiler, CMPI | A(dst) | 0); in emit_single_op()
[all …]
H A DsljitNativePPC_32.c32 return push_inst(compiler, ADDI | D(reg) | A(0) | IMM(imm)); in load_immediate()
57 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
65 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
66 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op()
69 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
80 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
81 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 16)); in emit_single_op()
94 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
98 FAIL_IF(push_inst(compiler, NEG | D(TMP_REG1) | A(src2))); in emit_single_op()
100 FAIL_IF(push_inst(compiler, CNTLZW | S(dst) | A(dst))); in emit_single_op()
[all …]
H A DsljitNativeRISCV_64.c39 FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)0x80000000u)); in load_immediate()
40 return push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(imm)); in load_immediate()
51 return push_inst(compiler, ADDI | RD(dst_r) | RS1(dst_r) | IMM_I(imm)); in load_immediate()
64 FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)0x80000000u)); in load_immediate()
76 FAIL_IF(push_inst(compiler, SLLI | RD(dst_r) | RS1(dst_r) | IMM_I(12))); in load_immediate()
79 return push_inst(compiler, XORI | RD(dst_r) | RS1(dst_r) | IMM_I(imm)); in load_immediate()
91 FAIL_IF(push_inst(compiler, LUI | RD(tmp_r) | (sljit_ins)(high << 12))); in load_immediate()
107 FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)0x80000000u)); in load_immediate()
126 return push_inst(compiler, XOR | RD(dst_r) | RS1(dst_r) | RS2(tmp_r)); in load_immediate()
148 FAIL_IF(push_inst(compiler, XOR | RD(dst) | RS1(dst) | RS2(TMP_REG3))); in emit_const()
[all …]
H A DsljitNativeSPARC_32.c30 return push_inst(compiler, OR | D(dst) | S1(0) | IMM(imm), DR(dst)); in load_immediate()
32 FAIL_IF(push_inst(compiler, SETHI | D(dst) | ((imm >> 10) & 0x3fffff), DR(dst))); in load_immediate()
47 return push_inst(compiler, OR | D(dst) | S1(0) | S2(src2), DR(dst)); in emit_single_op()
55 return push_inst(compiler, AND | D(dst) | S1(src2) | IMM(0xff), DR(dst)); in emit_single_op()
56 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(24), DR(dst))); in emit_single_op()
57 return push_inst(compiler, SRA | D(dst) | S1(dst) | IMM(24), DR(dst)); in emit_single_op()
66 FAIL_IF(push_inst(compiler, SLL | D(dst) | S1(src2) | IMM(16), DR(dst))); in emit_single_op()
81 FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(32), UNMOVABLE_INS)); in emit_single_op()
82 FAIL_IF(push_inst(compiler, OR | D(dst) | S1(0) | IMM(-1), DR(dst))); in emit_single_op()
88 return push_inst(compiler, ADD | D(dst) | S1(dst) | IMM(1), UNMOVABLE_INS); in emit_single_op()
[all …]
H A DsljitNativeMIPS_common.c1117 return push_inst(compiler, ins, UNMOVABLE_INS); in sljit_emit_return_void()
1143 return push_inst(compiler, ins, UNMOVABLE_INS); in sljit_emit_return_to()
1147 FAIL_IF(push_inst(compiler, ins, MOVABLE_INS)); in sljit_emit_return_to()
1448 FAIL_IF(push_inst(compiler, NOP, UNMOVABLE_INS)); in emit_clz_ctz()
2162 return push_inst(compiler, BREAK, UNMOVABLE_INS); in sljit_emit_op0()
2164 return push_inst(compiler, NOP, UNMOVABLE_INS); in sljit_emit_op0()
2209 FAIL_IF(push_inst(compiler, NOP, UNMOVABLE_INS)); in sljit_emit_op0()
2504 return push_inst(compiler, NOP, UNMOVABLE_INS); in sljit_emit_op_src()
3187 FAIL_IF(push_inst(compiler, NOP, UNMOVABLE_INS)); in sljit_emit_ijump()
3649 FAIL_IF(push_inst(compiler, NOP, UNMOVABLE_INS)); in sljit_emit_fmem()
[all …]
H A DsljitNativeMIPS_64.c38 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
41 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
44 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate()
79 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(uimm >> 48), dst_ar)); in load_immediate()
88 FAIL_IF(push_inst(compiler, ins | TA(dst_ar) | DA(dst_ar), dst_ar)); in load_immediate()
212 FAIL_IF(push_inst(compiler, prev_ins, MOVABLE_INS)); in call_with_args()
257 PTR_FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS)); in sljit_emit_call()
260 PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_call()
294 FAIL_IF(push_inst(compiler, ins, MOVABLE_INS)); in sljit_emit_icall()
317 FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS)); in sljit_emit_icall()
[all …]
H A DsljitNativeARM_64.c913 return push_inst(compiler, STRB | type | RT(reg) in emit_op_mem()
989 FAIL_IF(push_inst(compiler, STP_PRE | RT(TMP_FP) | RT2(TMP_LR) in sljit_emit_enter()
1110 FAIL_IF(push_inst(compiler, STP_PRE | RT(TMP_FP) | RT2(TMP_LR) in sljit_emit_enter()
1136 FAIL_IF(push_inst(compiler, STP_PRE | RT(TMP_FP) | RT2(TMP_LR) in sljit_emit_enter()
1260 return push_inst(compiler, RET | RN(TMP_LR)); in sljit_emit_return_void()
1300 return push_inst(compiler, BRK); in sljit_emit_op0()
1302 return push_inst(compiler, NOP); in sljit_emit_op0()
1570 return push_inst(compiler, RET | RN(TMP_LR)); in sljit_emit_op_src()
1615 return push_inst(compiler, *(sljit_ins*)instruction); in sljit_emit_op_custom()
1635 return push_inst(compiler, STR_FR | type | VT(reg) in emit_fop_mem()
[all …]
H A DsljitNativeMIPS_32.c32 return push_inst(compiler, ORI | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
35 return push_inst(compiler, ADDIU | SA(0) | TA(dst_ar) | IMM(imm), dst_ar); in load_immediate()
37 FAIL_IF(push_inst(compiler, LUI | TA(dst_ar) | IMM(imm >> 16), dst_ar)); in load_immediate()
143 FAIL_IF(push_inst(compiler, prev_ins, MOVABLE_INS)); in call_with_args()
182 FAIL_IF(push_inst(compiler, prev_ins, MOVABLE_INS)); in call_with_args()
228 PTR_FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS)); in sljit_emit_call()
231 PTR_FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_call()
279 FAIL_IF(push_inst(compiler, ins, MOVABLE_INS)); in sljit_emit_icall()
299 FAIL_IF(push_inst(compiler, JR | S(PIC_ADDR_REG), UNMOVABLE_INS)); in sljit_emit_icall()
300 FAIL_IF(push_inst(compiler, ins, UNMOVABLE_INS)); in sljit_emit_icall()
[all …]
H A DsljitNativeS390X.c2181 return push_inst(compiler, in sljit_emit_op1()
2185 return push_inst(compiler, in sljit_emit_op1()
2190 return push_inst(compiler, in sljit_emit_op1()
2208 FAIL_IF(push_inst(compiler, in sljit_emit_op1()
2211 return push_inst(compiler, in sljit_emit_op1()
2218 return push_inst(compiler, in sljit_emit_op1()
2226 return push_inst(compiler, in sljit_emit_op1()
3526 FAIL_IF(push_inst(compiler, in sljit_emit_op_flags()
3538 FAIL_IF(push_inst(compiler, in sljit_emit_op_flags()
3542 FAIL_IF(push_inst(compiler, in sljit_emit_op_flags()
[all …]
H A DsljitNativeRISCV_common.c163 return push_inst(compiler, ins | IMM_S(imm)); in push_imm_s_inst()
856 return push_inst(compiler, ins); in push_mem_inst()
1662 return push_inst(compiler, EBREAK); in sljit_emit_op0()
1894 FAIL_IF(push_inst(compiler, ins2 | RD(TMP_REG1) | RS1(src1))); in sljit_emit_shift_into()
1968 return push_inst(compiler, *(sljit_ins*)instruction); in sljit_emit_op_custom()
2051 FAIL_IF(push_inst(compiler, inst)); in sljit_emit_fop1_conv_f64_from_sw()
2113 return push_inst(compiler, inst); in sljit_emit_fop1_cmp()
2353 PTR_FAIL_IF(push_inst(compiler, inst)); in sljit_emit_jump()
2365 PTR_FAIL_IF(push_inst(compiler, inst)); in sljit_emit_jump()
2479 PTR_FAIL_IF(push_inst(compiler, inst)); in sljit_emit_cmp()
[all …]
H A DsljitNativeARM_32.c288 return push_inst(compiler, BLX | RM(TMP_REG1)); in emit_blx()
1216 FAIL_IF(push_inst(compiler, *(--remap_ptr))); in sljit_emit_enter()
1384 FAIL_IF(push_inst(compiler, POP | reg_list)); in emit_stack_frame_release()
1782 return push_inst(compiler, MOV | RD(reg) | tmp); in load_immediate()
1786 return push_inst(compiler, MVN | RD(reg) | tmp); in load_immediate()
2064 FAIL_IF(push_inst(compiler, BKPT)); in sljit_emit_op0()
2067 FAIL_IF(push_inst(compiler, NOP)); in sljit_emit_op0()
2301 return push_inst(compiler, BX | RM(TMP_REG2)); in sljit_emit_op_src()
2456 return push_inst(compiler, VMRS); in sljit_emit_fop1_cmp()
3045 return push_inst(compiler, BX | RM(TMP_REG2)); in sljit_emit_icall()
[all …]
H A DsljitNativeRISCV_32.c33 return push_inst(compiler, ADDI | RD(dst_r) | RS1(TMP_ZERO) | IMM_I(imm)); in load_immediate()
38 FAIL_IF(push_inst(compiler, LUI | RD(dst_r) | (sljit_ins)(imm & ~0xfff))); in load_immediate()
43 return push_inst(compiler, ADDI | RD(dst_r) | RS1(dst_r) | IMM_I(imm)); in load_immediate()
51 FAIL_IF(push_inst(compiler, LUI | RD(dst) | (sljit_ins)(init_value & ~0xfff))); in emit_const()
52 return push_inst(compiler, last_ins | RS1(dst) | IMM_I(init_value)); in emit_const()
H A DsljitNativePPC_common.c774 FAIL_IF(push_inst(compiler, MFLR | D(0))); in sljit_emit_enter()
934 push_inst(compiler, MTLR | S(0)); in emit_stack_frame_release()
952 return push_inst(compiler, BLR); in sljit_emit_return_void()
1278 return push_inst(compiler, NOP); in sljit_emit_op0()
1354 FAIL_IF(push_inst(compiler, MTXER | S(TMP_ZERO))); in sljit_emit_op1()
1508 FAIL_IF(push_inst(compiler, MTXER | S(TMP_ZERO))); in sljit_emit_op2()
1838 FAIL_IF(push_inst(compiler, MTLR | S(src))); in sljit_emit_op_src()
1844 return push_inst(compiler, BLR); in sljit_emit_op_src()
2179 return push_inst(compiler, MFLR | D(dst)); in sljit_emit_fast_enter()
2182 FAIL_IF(push_inst(compiler, MFLR | D(TMP_REG2))); in sljit_emit_fast_enter()
[all …]
H A DsljitNativeSPARC_common.c702 FAIL_IF(push_inst(compiler, data_transfer_insts[flags & MEM_MASK] in getput_arg_fast()
949 return push_inst(compiler, TA, UNMOVABLE_INS); in sljit_emit_op0()
951 return push_inst(compiler, NOP, UNMOVABLE_INS); in sljit_emit_op0()
956 return push_inst(compiler, RDY | D(SLJIT_R1), DR(SLJIT_R1)); in sljit_emit_op0()
967 FAIL_IF(push_inst(compiler, WRY | S1(0), MOVABLE_INS)); in sljit_emit_op0()
970 FAIL_IF(push_inst(compiler, WRY | S1(TMP_REG1), MOVABLE_INS)); in sljit_emit_op0()
1103 return push_inst(compiler, NOP, UNMOVABLE_INS); in sljit_emit_op_src()
1133 return push_inst(compiler, *(sljit_ins*)instruction, UNMOVABLE_INS); in sljit_emit_op_custom()
1247 FAIL_IF(push_inst(compiler, FNEGS | FD(dst_r) | FS2(src), MOVABLE_INS)); in sljit_emit_fop1()
1493 PTR_FAIL_IF(push_inst(compiler, NOP, UNMOVABLE_INS)); in sljit_emit_jump()
[all …]

Completed in 212 milliseconds