/netbsd-src/sys/external/bsd/sljit/dist/test_src/ |
H A D | sljitTest.c | 420 …sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_MEM1(SLJIT_S0), sizeof(sljit_sw) * 2, SLJIT_R0, 0, SLJIT… in test6() 421 sljit_emit_op2(compiler, SLJIT_SUB | SLJIT_SET_CARRY, SLJIT_R0, 0, SLJIT_R0, 0, SLJIT_IMM, 6000); in test6() 425 …sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_R0, 0, SLJIT_R0, 0, SLJIT_MEM1(SLJIT_S0), sizeof(sljit_s… in test6() 428 …sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_R1, 0, SLJIT_MEM1(SLJIT_S0), sizeof(sljit_sw) * 4, SLJIT… in test6() 432 sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_R0, 0, SLJIT_IMM, 6000, SLJIT_R0, 0); in test6() 435 sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_R1, 0, SLJIT_R0, 0, SLJIT_IMM, 32768); in test6() 437 sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_R1, 0, SLJIT_R0, 0, SLJIT_IMM, -32767); in test6() 440 …sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_MEM1(SLJIT_S0), sizeof(sljit_sw) * 9, SLJIT_R0, 0, SLJIT… in test6() 442 …sljit_emit_op2(compiler, SLJIT_SUB | SLJIT_SET_CARRY, SLJIT_RETURN_REG, 0, SLJIT_RETURN_REG, 0, SL… in test6() 444 sljit_emit_op2(compiler, SLJIT_SUB, SLJIT_RETURN_REG, 0, SLJIT_RETURN_REG, 0, SLJIT_IMM, -2220); in test6() [all …]
|
/netbsd-src/sys/external/bsd/sljit/dist/doc/tutorial/ |
H A D | brainfuck.c | 168 sljit_emit_op2(C, chr == '+' ? SLJIT_ADD : SLJIT_SUB, in compile() 174 sljit_emit_op2(C, chr == '>' ? SLJIT_ADD : SLJIT_SUB, in compile()
|
/netbsd-src/sys/external/bsd/sljit/dist/regex_src/ |
H A D | regexJIT.c | 1454 …EMIT_OP2(SLJIT_SUB | SLJIT_SET_Z | SLJIT_SET_LESS, SLJIT_UNUSED, 0, SLJIT_MEM1(R_NEXT_STATE), offs… in compile_cond_tran() 1468 …EMIT_OP2(SLJIT_SUB | SLJIT_SET_GREATER_EQUAL, SLJIT_UNUSED, 0, SLJIT_MEM1(R_NEXT_STATE), offset + … in compile_cond_tran() 1568 …EMIT_OP2(SLJIT_SUB, SLJIT_MEM1(R_REGEX_MATCH), SLJIT_OFFSETOF(struct regex_match, best_end), R_CUR… in compile_end_check() 1571 …EMIT_OP2(SLJIT_SUB, SLJIT_MEM1(R_REGEX_MATCH), SLJIT_OFFSETOF(struct regex_match, best_end), R_CUR… in compile_end_check() 1603 EMIT_OP2(SLJIT_SUB, R_NEXT_HEAD, 0, R_TEMP, 0, R_CURR_STATE, 0); in compile_end_check() 1668 EMIT_OP2(SLJIT_SUB, R_TEMP, 0, R_TEMP, 0, SLJIT_IMM, -prev_value); in compile_leave_fast_forward() 1761 EMIT_OP2(SLJIT_SUB, R_TEMP, 0, R_TEMP, 0, SLJIT_IMM, -prev_value); in compile_range_check() 2027 EMIT_OP2(SLJIT_SUB | SLJIT_SET_Z, R_LENGTH, 0, R_LENGTH, 0, SLJIT_IMM, 1); in regex_compile() 2080 EMIT_OP2(SLJIT_SUB, R_TEMP, 0, R_NEXT_HEAD, 0, SLJIT_IMM, 1); in regex_compile() 2115 EMIT_OP2(SLJIT_SUB | SLJIT_SET_Z, R_NEXT_STATE, 0, R_NEXT_STATE, 0, SLJIT_IMM, 1); in regex_compile()
|
/netbsd-src/sys/external/bsd/sljit/dist/sljit_src/ |
H A D | sljitNativePPC_common.c | 1547 case SLJIT_SUB: in sljit_emit_op2() 1554 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM3, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2() 1556 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM5, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2() 1562 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM6, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2() 1564 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM7, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2() 1574 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM1, dst, dstw, src2, src2w, TMP_REG2, 0); in sljit_emit_op2() 1591 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM2, dst, dstw, src1, src1w, TMP_REG2, 0); in sljit_emit_op2() 1593 return emit_op(compiler, SLJIT_SUB, flags | ALT_FORM4, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2() 1601 return emit_op(compiler, SLJIT_SUB, flags, dst, dstw, src1, src1w, src2, src2w); in sljit_emit_op2()
|
H A D | sljitLir.h | 921 #define SLJIT_SUB (SLJIT_OP2_BASE + 2) macro 922 #define SLJIT_SUB32 (SLJIT_SUB | SLJIT_I32_OP)
|
H A D | sljitNativeARM_32.c | 909 FAIL_IF(emit_op(compiler, SLJIT_SUB, ALLOW_IMM, SLJIT_SP, 0, SLJIT_SP, 0, SLJIT_IMM, local_size)); in sljit_emit_enter() 1074 case SLJIT_SUB: in emit_single_op() 1445 op = SLJIT_SUB | GET_ALL_FLAGS(op); in emit_op() 1449 if (GET_OPCODE(op) == SLJIT_SUB) { in emit_op() 1481 op = SLJIT_SUB | GET_ALL_FLAGS(op); in emit_op() 1681 …return sljit_emit_op2(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1() 1704 case SLJIT_SUB: in sljit_emit_op2()
|
H A D | sljitNativeSPARC_32.c | 104 case SLJIT_SUB: in emit_single_op()
|
H A D | sljitNativePPC_32.c | 126 case SLJIT_SUB: in emit_single_op()
|
H A D | sljitNativeARM_T2_32.c | 580 case SLJIT_SUB: in emit_op_imm() 750 case SLJIT_SUB: in emit_op_imm() 1073 FAIL_IF(emit_op_imm(compiler, SLJIT_SUB | ARG2_IMM, SLJIT_SP, SLJIT_SP, local_size)); in sljit_emit_enter() 1319 return sljit_emit_op2(compiler, SLJIT_SUB | op_flags, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1()
|
H A D | sljitNativePPC_64.c | 248 case SLJIT_SUB: in emit_single_op()
|
H A D | sljitNativeARM_64.c | 541 if (arg1 == 0 && op != SLJIT_ADD && op != SLJIT_SUB) in emit_op_imm() 569 case SLJIT_SUB: in emit_op_imm() 733 case SLJIT_SUB: in emit_op_imm()
|
H A D | sljitNativeTILEGX_64.c | 1768 case SLJIT_SUB: in emit_single_op() 2253 …return emit_op(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), IMM_OP, dst, dstw, SLJIT_IMM, 0, src, srcw… in sljit_emit_op1() 2275 case SLJIT_SUB: in sljit_emit_op2()
|
H A D | sljitNativeSPARC_common.c | 885 return emit_op(compiler, SLJIT_SUB, flags | IMM_OP, dst, dstw, SLJIT_IMM, 0, src, srcw); in sljit_emit_op1() 914 case SLJIT_SUB: in sljit_emit_op2()
|
H A D | sljitNativeMIPS_32.c | 241 case SLJIT_SUB: in emit_single_op()
|
H A D | sljitLir.c | 1148 case SLJIT_SUB: in check_sljit_emit_op2() 1763 PTR_FAIL_IF(sljit_emit_op2(compiler, SLJIT_SUB | flags | (type & SLJIT_I32_OP), in sljit_emit_cmp()
|
H A D | sljitNativeMIPS_64.c | 332 case SLJIT_SUB: in emit_single_op()
|
H A D | sljitNativeMIPS_common.c | 1149 …return emit_op(compiler, SLJIT_SUB | GET_ALL_FLAGS(op), flags | IMM_OP, dst, dstw, SLJIT_IMM, 0, s… in sljit_emit_op1() 1194 case SLJIT_SUB: in sljit_emit_op2()
|
H A D | sljitNativeX86_common.c | 2134 case SLJIT_SUB:
|
/netbsd-src/sys/net/ |
H A D | bpfjit.c | 836 SLJIT_SUB, in emit_pkt_read() 1611 *res = SLJIT_SUB; in alu_to_op()
|