/src/sys/external/bsd/sljit/dist/sljit_src/ |
sljitNativeARM_T2_32.c | 518 static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit_uw arg1, sljit_uw arg2) function in typeref:typename:sljit_s32 1073 FAIL_IF(emit_op_imm(compiler, SLJIT_SUB | ARG2_IMM, SLJIT_SP, SLJIT_SP, local_size)); 1115 FAIL_IF(emit_op_imm(compiler, SLJIT_ADD | ARG2_IMM, SLJIT_SP, SLJIT_SP, compiler->local_size)); 1299 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG2, srcw)); 1304 return emit_op_imm(compiler, op, dst_r, TMP_REG2, src); 1333 emit_op_imm(compiler, flags | op, dst_r, TMP_REG2, srcw); 1378 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_reg, src1w, src2w);
|
sljitNativeARM_64.c | 527 static sljit_s32 emit_op_imm(struct sljit_compiler *compiler, sljit_s32 flags, sljit_s32 dst, sljit_sw arg1, sljit_sw arg2) function in typeref:typename:sljit_s32 1381 FAIL_IF(emit_op_imm(compiler, SLJIT_MOV | ARG2_IMM, dst_r, TMP_REG1, srcw)); 1389 return emit_op_imm(compiler, op | ((op_flags & SLJIT_I32_OP) ? INT_OP : 0), dst_r, TMP_REG1, src); 1427 emit_op_imm(compiler, flags | op, dst_r, TMP_REG1, srcw); 1510 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_r, src1w, src2w); 2018 emit_op_imm(compiler, flags | GET_OPCODE(op), dst_r, src, TMP_REG2);
|