• Home
  • Raw
  • Download

Lines Matching refs:src2w

1947 	sljit_s32 src2, sljit_sw src2w)  in sljit_emit_op2()  argument
1950 CHECK(check_sljit_emit_op2(compiler, op, dst, dstw, src1, src1w, src2, src2w)); in sljit_emit_op2()
1953 ADJUST_LOCAL_OFFSET(src2, src2w); in sljit_emit_op2()
1966 src1w = src2w; \ in sljit_emit_op2()
1968 src2w = tw; \ in sljit_emit_op2()
2019 #define LEVAL(i) i(src1_r, src2w) in sljit_emit_op2()
2020 if (cmp > 0 && is_u32(src2w)) { in sljit_emit_op2()
2025 else if (cmp < 0 && is_s16(src2w)) { in sljit_emit_op2()
2030 else if (cmp < 0 && is_s32(src2w)) { in sljit_emit_op2()
2038 FAIL_IF(push_load_imm_inst(compiler, src2_r, src2w)); in sljit_emit_op2()
2055 FAIL_IF(load_word(compiler, src2_r, src2, src2w, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op2()
2084 d = src2w & ((op & SLJIT_I32_OP) ? 31 : 63); in sljit_emit_op2()
2088 FAIL_IF(load_word(compiler, tmp1, src2, src2w, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op2()
2134 FAIL_IF(push_load_imm_inst(compiler, src2_r, src2w)); in sljit_emit_op2()
2138 FAIL_IF(load_word(compiler, src2_r, src2, src2w, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op2()
2176 FAIL_IF(push_load_imm_inst(compiler, src2_r, src2w)); in sljit_emit_op2()
2180 FAIL_IF(load_word(compiler, src2_r, src2, src2w, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op2()
2195 else if ((src2 & SLJIT_IMM) && (src1_r == dst_r) && have_op_2_imm(op, src2w)) { in sljit_emit_op2()
2197 #define LEVAL(i) i(dst_r, src2w) in sljit_emit_op2()
2201 WHEN2(is_s16(src2w), aghi, agfi))); in sljit_emit_op2()
2210 WHEN2(is_s16(src2w), ahi, afi))); in sljit_emit_op2()
2217 FAIL_IF(push_inst(compiler, mhi(dst_r, src2w))); in sljit_emit_op2()
2220 FAIL_IF(push_inst(compiler, mghi(dst_r, src2w))); in sljit_emit_op2()
2223 FAIL_IF(push_inst(compiler, oilf(dst_r, src2w))); in sljit_emit_op2()
2226 FAIL_IF(push_inst(compiler, xilf(dst_r, src2w))); in sljit_emit_op2()
2229 FAIL_IF(push_inst(compiler, nilf(dst_r, src2w))); in sljit_emit_op2()
2235 else if ((src2 & SLJIT_IMM) && have_op_3_imm(op, src2w)) { in sljit_emit_op2()
2246 FAIL_IF(make_addr_bx(compiler, &mem, src2, src2w, tmp1)); in sljit_emit_op2()
2248 FAIL_IF(make_addr_bxy(compiler, &mem, src2, src2w, tmp1)); in sljit_emit_op2()
2320 FAIL_IF(push_load_imm_inst(compiler, src2_r, src2w)); in sljit_emit_op2()
2324 FAIL_IF(load_word(compiler, src2_r, src2, src2w, tmp1, op & SLJIT_I32_OP)); in sljit_emit_op2()
2490 sljit_s32 src2, sljit_sw src2w) in sljit_emit_fop2() argument