Lines Matching refs:dst

30 #define ASM_SLJIT_CLZ(src, dst) \  argument
31 __asm__ volatile ( "cntlzd %0, %1" : "=r"(dst) : "r"(src) )
38 #define RLDI(dst, src, sh, mb, type) \ argument
39 …(HI(30) | S(src) | A(dst) | ((type) << 2) | (((sh) & 0x1f) << 11) | (((sh) & 0x20) >> 4) | (((mb) …
120 #define INS_CLEAR_LEFT(dst, src, from) \ argument
121 (RLDICL | S(src) | A(dst) | ((from) << 6) | (1 << 5))
149 sljit_s32 dst, sljit_s32 src1, sljit_s32 src2) in emit_single_op() argument
155 if (dst != src2) in emit_single_op()
156 return push_inst(compiler, OR | S(src2) | A(dst) | B(src2)); in emit_single_op()
164 return push_inst(compiler, EXTSW | S(src2) | A(dst)); in emit_single_op()
165 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 0)); in emit_single_op()
168 SLJIT_ASSERT(dst == src2); in emit_single_op()
177 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
178 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 24)); in emit_single_op()
181 return push_inst(compiler, EXTSB | S(src2) | A(dst)); in emit_single_op()
183 SLJIT_ASSERT(dst == src2); in emit_single_op()
192 return push_inst(compiler, EXTSH | S(src2) | A(dst)); in emit_single_op()
193 return push_inst(compiler, INS_CLEAR_LEFT(dst, src2, 16)); in emit_single_op()
196 SLJIT_ASSERT(dst == src2); in emit_single_op()
203 return push_inst(compiler, NOR | RC(flags) | S(src2) | A(dst) | B(src2)); in emit_single_op()
210 FAIL_IF(push_inst(compiler, NEG | OE(ALT_SET_FLAGS) | RC(ALT_SET_FLAGS) | D(dst) | A(TMP_REG2))); in emit_single_op()
211 return push_inst(compiler, RLDI(dst, dst, 32, 32, 0)); in emit_single_op()
216 …return push_inst(compiler, NEG | OE((flags & ALT_FORM1) ? ALT_SET_FLAGS : 0) | RC(flags) | D(dst) … in emit_single_op()
221 return push_inst(compiler, CNTLZW | S(src2) | A(dst)); in emit_single_op()
222 return push_inst(compiler, CNTLZD | S(src2) | A(dst)); in emit_single_op()
233 …FAIL_IF(push_inst(compiler, ADD | OE(ALT_SET_FLAGS) | RC(ALT_SET_FLAGS) | D(dst) | A(src1) | B(src… in emit_single_op()
235 return push_inst(compiler, RLDI(dst, dst, 32, 32, 0)); in emit_single_op()
244 return push_inst(compiler, ADDIS | D(dst) | A(src1) | compiler->imm); in emit_single_op()
247 …FAIL_IF(push_inst(compiler, ADDIS | D(dst) | A(src1) | (((compiler->imm >> 16) & 0xffff) + ((compi… in emit_single_op()
248 src1 = dst; in emit_single_op()
251 return push_inst(compiler, ADDI | D(dst) | A(src1) | (compiler->imm & 0xffff)); in emit_single_op()
256 return push_inst(compiler, ADDIC | D(dst) | A(src1) | compiler->imm); in emit_single_op()
259 return push_inst(compiler, ADD | D(dst) | A(src1) | B(src2)); in emit_single_op()
262 return push_inst(compiler, ADDC | RC(ALT_SET_FLAGS) | D(dst) | A(src1) | B(src2)); in emit_single_op()
263 return push_inst(compiler, ADD | RC(flags) | D(dst) | A(src1) | B(src2)); in emit_single_op()
267 return push_inst(compiler, ADDE | D(dst) | A(src1) | B(src2)); in emit_single_op()
275 return push_inst(compiler, ADDI | D(dst) | A(src1) | (-compiler->imm & 0xffff)); in emit_single_op()
280 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
291 …FAIL_IF(push_inst(compiler, SUBF | OE(ALT_SET_FLAGS) | RC(ALT_SET_FLAGS) | D(dst) | A(src2) | B(sr… in emit_single_op()
293 return push_inst(compiler, RLDI(dst, dst, 32, 32, 0)); in emit_single_op()
300 return push_inst(compiler, SUBFIC | D(dst) | A(src1) | compiler->imm); in emit_single_op()
312 return push_inst(compiler, SUBF | D(dst) | A(src2) | B(src1)); in emit_single_op()
315 return push_inst(compiler, SUBFC | RC(ALT_SET_FLAGS) | D(dst) | A(src2) | B(src1)); in emit_single_op()
316 return push_inst(compiler, SUBF | RC(flags) | D(dst) | A(src2) | B(src1)); in emit_single_op()
320 return push_inst(compiler, SUBFE | D(dst) | A(src2) | B(src1)); in emit_single_op()
325 return push_inst(compiler, MULLI | D(dst) | A(src1) | compiler->imm); in emit_single_op()
329 return push_inst(compiler, MULLW | OE(flags) | RC(flags) | D(dst) | A(src2) | B(src1)); in emit_single_op()
330 return push_inst(compiler, MULLD | OE(flags) | RC(flags) | D(dst) | A(src2) | B(src1)); in emit_single_op()
335 return push_inst(compiler, ANDI | S(src1) | A(dst) | compiler->imm); in emit_single_op()
339 return push_inst(compiler, ANDIS | S(src1) | A(dst) | compiler->imm); in emit_single_op()
341 return push_inst(compiler, AND | RC(flags) | S(src1) | A(dst) | B(src2)); in emit_single_op()
346 return push_inst(compiler, ORI | S(src1) | A(dst) | compiler->imm); in emit_single_op()
350 return push_inst(compiler, ORIS | S(src1) | A(dst) | compiler->imm); in emit_single_op()
354 FAIL_IF(push_inst(compiler, ORI | S(src1) | A(dst) | IMM(compiler->imm))); in emit_single_op()
355 return push_inst(compiler, ORIS | S(dst) | A(dst) | IMM(compiler->imm >> 16)); in emit_single_op()
357 return push_inst(compiler, OR | RC(flags) | S(src1) | A(dst) | B(src2)); in emit_single_op()
362 return push_inst(compiler, XORI | S(src1) | A(dst) | compiler->imm); in emit_single_op()
366 return push_inst(compiler, XORIS | S(src1) | A(dst) | compiler->imm); in emit_single_op()
370 FAIL_IF(push_inst(compiler, XORI | S(src1) | A(dst) | IMM(compiler->imm))); in emit_single_op()
371 return push_inst(compiler, XORIS | S(dst) | A(dst) | IMM(compiler->imm >> 16)); in emit_single_op()
373 return push_inst(compiler, XOR | RC(flags) | S(src1) | A(dst) | B(src2)); in emit_single_op()
380 …return push_inst(compiler, RLWINM | RC(flags) | S(src1) | A(dst) | (compiler->imm << 11) | ((31 - … in emit_single_op()
383 return push_inst(compiler, RLDI(dst, src1, compiler->imm, 63 - compiler->imm, 1) | RC(flags)); in emit_single_op()
385 …return push_inst(compiler, ((flags & ALT_FORM2) ? SLW : SLD) | RC(flags) | S(src1) | A(dst) | B(sr… in emit_single_op()
392 …return push_inst(compiler, RLWINM | RC(flags) | S(src1) | A(dst) | (((32 - compiler->imm) & 0x1f) … in emit_single_op()
395 return push_inst(compiler, RLDI(dst, src1, 64 - compiler->imm, compiler->imm, 0) | RC(flags)); in emit_single_op()
397 …return push_inst(compiler, ((flags & ALT_FORM2) ? SRW : SRD) | RC(flags) | S(src1) | A(dst) | B(sr… in emit_single_op()
404 return push_inst(compiler, SRAWI | RC(flags) | S(src1) | A(dst) | (compiler->imm << 11)); in emit_single_op()
407 …return push_inst(compiler, SRADI | RC(flags) | S(src1) | A(dst) | ((compiler->imm & 0x1f) << 11) |… in emit_single_op()
409 …return push_inst(compiler, ((flags & ALT_FORM2) ? SRAW : SRAD) | RC(flags) | S(src1) | A(dst) | B(… in emit_single_op()