HomeSort by: relevance | last modified time | path
    Searched refs:SLJIT_DIV_UW (Results 1 - 10 of 10) sorted by relevancy

  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitLir.h 788 #define SLJIT_DIV_UW (SLJIT_OP0_BASE + 6)
789 #define SLJIT_DIV_U32 (SLJIT_DIV_UW | SLJIT_I32_OP)
sljitNativeSPARC_common.c 798 case SLJIT_DIV_UW:
800 SLJIT_COMPILE_ASSERT((SLJIT_DIVMOD_UW & 0x2) == 0 && SLJIT_DIV_UW - 0x2 == SLJIT_DIVMOD_UW, bad_div_opcode_assignments);
802 if ((op | 0x2) == SLJIT_DIV_UW)
810 FAIL_IF(push_inst(compiler, ((op | 0x2) == SLJIT_DIV_UW ? UDIV : SDIV) | D(SLJIT_R0) | S1(SLJIT_R0) | S2(SLJIT_R1), DR(SLJIT_R0)));
811 if (op >= SLJIT_DIV_UW)
sljitNativeMIPS_common.c 1037 case SLJIT_DIV_UW:
1039 SLJIT_COMPILE_ASSERT((SLJIT_DIVMOD_UW & 0x2) == 0 && SLJIT_DIV_UW - 0x2 == SLJIT_DIVMOD_UW, bad_div_opcode_assignments);
1047 FAIL_IF(push_inst(compiler, ((op | 0x2) == SLJIT_DIV_UW ? DIVU : DIV) | S(SLJIT_R0) | T(SLJIT_R1), MOVABLE_INS));
1049 FAIL_IF(push_inst(compiler, ((op | 0x2) == SLJIT_DIV_UW ? DDIVU : DDIV) | S(SLJIT_R0) | T(SLJIT_R1), MOVABLE_INS));
1051 FAIL_IF(push_inst(compiler, ((op | 0x2) == SLJIT_DIV_UW ? DIVU : DIV) | S(SLJIT_R0) | T(SLJIT_R1), MOVABLE_INS));
1055 return (op >= SLJIT_DIV_UW) ? SLJIT_SUCCESS : push_inst(compiler, MFHI | D(SLJIT_R1), DR(SLJIT_R1));
sljitNativeARM_32.c 1576 case SLJIT_DIV_UW:
1578 SLJIT_COMPILE_ASSERT((SLJIT_DIVMOD_UW & 0x2) == 0 && SLJIT_DIV_UW - 0x2 == SLJIT_DIVMOD_UW, bad_div_opcode_assignments);
1586 if (op >= SLJIT_DIV_UW)
1604 ((op | 0x2) == SLJIT_DIV_UW ? SLJIT_FUNC_OFFSET(__aeabi_uidivmod) : SLJIT_FUNC_OFFSET(__aeabi_idivmod))));
sljitNativeARM_T2_32.c 1172 case SLJIT_DIV_UW:
1174 SLJIT_COMPILE_ASSERT((SLJIT_DIVMOD_UW & 0x2) == 0 && SLJIT_DIV_UW - 0x2 == SLJIT_DIVMOD_UW, bad_div_opcode_assignments);
1182 if (op >= SLJIT_DIV_UW)
1200 ((op | 0x2) == SLJIT_DIV_UW ? SLJIT_FUNC_OFFSET(__aeabi_uidivmod) : SLJIT_FUNC_OFFSET(__aeabi_idivmod))));
sljitNativeX86_common.c 731 case SLJIT_DIV_UW:
747 SLJIT_COMPILE_ASSERT((SLJIT_DIVMOD_UW & 0x2) == 0 && SLJIT_DIV_UW - 0x2 == SLJIT_DIVMOD_UW, bad_div_opcode_assignments);
750 if ((op | 0x2) == SLJIT_DIV_UW) {
824 case SLJIT_DIV_UW:
836 if (op >= SLJIT_DIV_UW)
sljitNativePPC_common.c 1298 case SLJIT_DIV_UW:
1301 return push_inst(compiler, (int_op ? (op == SLJIT_DIV_UW ? DIVWU : DIVW) : (op == SLJIT_DIV_UW ? DIVDU : DIVD)) | D(SLJIT_R0) | A(SLJIT_R0) | B(SLJIT_R1));
1303 return push_inst(compiler, (op == SLJIT_DIV_UW ? DIVWU : DIVW) | D(SLJIT_R0) | A(SLJIT_R0) | B(SLJIT_R1));
sljitNativeARM_64.c 1278 case SLJIT_DIV_UW:
1280 return push_inst(compiler, ((op == SLJIT_DIV_UW ? UDIV : SDIV) ^ inv_bits) | RD(SLJIT_R0) | RN(SLJIT_R0) | RM(SLJIT_R1));
sljitNativeTILEGX_64.c 2189 case SLJIT_DIV_UW:
  /src/sys/external/bsd/sljit/dist/test_src/
sljitTest.c 3977 sljit_emit_op0(compiler, SLJIT_DIV_UW);
4042 sljit_emit_op0(compiler, SLJIT_DIV_UW);

Completed in 37 milliseconds