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

  /src/sys/external/bsd/sljit/dist/sljit_src/
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_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...]
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;
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...]

Completed in 15 milliseconds