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

  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeSPARC_32.c 43 SLJIT_COMPILE_ASSERT(ICC_IS_SET == SET_FLAGS, icc_is_set_and_set_flags_must_be_the_same);
81 return push_inst(compiler, XNOR | (flags & SET_FLAGS) | D(dst) | S1(0) | S2(src2), DR(dst) | (flags & SET_FLAGS));
86 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(src2) | S2(0), SET_FLAGS));
89 FAIL_IF(push_inst(compiler, OR | (flags & SET_FLAGS) | D(dst) | S1(0) | IMM(32), UNMOVABLE_INS | (flags & SET_FLAGS)));
93 FAIL_IF(push_inst(compiler, SUB | SET_FLAGS | D(0) | S1(TMP_REG1) | S2(0), SET_FLAGS));
96 return push_inst(compiler, ADD | (flags & SET_FLAGS) | D(dst) | S1(dst) | IMM(1), UNMOVABLE_INS | (flags & SET_FLAGS))
    [all...]
sljitNativeARM_T2_32.c 514 /* SET_FLAGS must be 0x100000 as it is also the value of S bit (can be used for optimization). */
515 #define SET_FLAGS 0x0100000
543 SLJIT_ASSERT(!(flags & SET_FLAGS) && (flags & ARG2_IMM) && arg1 == TMP_REG2);
546 if (!(flags & SET_FLAGS))
565 if (!(flags & SET_FLAGS)) {
573 return push_inst32(compiler, ADD_WI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm);
578 return push_inst32(compiler, ADCI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm);
586 return push_inst32(compiler, RSB_WI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm);
604 if (!(flags & SET_FLAGS)) {
612 return push_inst32(compiler, SUB_WI | (flags & SET_FLAGS) | RD4(dst) | RN4(reg) | imm)
    [all...]
sljitNativeARM_32.c 872 #define EMIT_DATA_PROCESS_INS(opcode, set_flags, dst, src1, src2) \
873 (0xe0000000 | ((opcode) << 21) | (set_flags) | RD(dst) | RN(src1) | (src2))
974 /* SET_FLAGS must be (1 << 20) as it is also the value of S bit (can be used for optimization). */
975 #define SET_FLAGS (1 << 20)
989 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, \
991 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, dst, SLJIT_UNUSED, RM(src2))); \
993 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MOV_DP, flags & SET_FLAGS, \
1051 return push_inst(compiler, EMIT_DATA_PROCESS_INS((flags & INV_IMM) ? MOV_DP : MVN_DP, flags & SET_FLAGS,
1054 return push_inst(compiler, EMIT_DATA_PROCESS_INS(MVN_DP, flags & SET_FLAGS, dst, SLJIT_UNUSED, RM(src2)));
1060 if (flags & SET_FLAGS)
    [all...]
sljitNativeARM_64.c 514 #define SET_FLAGS 0x0080000
521 if (flags & SET_FLAGS) { \
563 SLJIT_ASSERT(!(flags & SET_FLAGS) && (flags & ARG2_IMM) && arg1 == TMP_REG1);
568 goto set_flags;
596 if (imm > 0 && imm <= 0xffffff && !(flags & SET_FLAGS)) {
600 if (nimm > 0 && nimm <= 0xffffff && !(flags & SET_FLAGS)) {
621 goto set_flags;
633 goto set_flags;
648 goto set_flags;
678 SLJIT_ASSERT(!(flags & SET_FLAGS) && arg1 == TMP_REG1)
    [all...]
sljitNativeSPARC_common.c 122 #define SET_FLAGS OPC3(0x10)
430 /* SET_FLAGS (0x10 << 19) also belong here! */
827 sljit_s32 flags = HAS_FLAGS(op) ? SET_FLAGS : 0;
896 sljit_s32 flags = HAS_FLAGS(op) ? SET_FLAGS : 0;
1391 sljit_s32 reg, flags = HAS_FLAGS(op) ? SET_FLAGS : 0;

Completed in 45 milliseconds