Home
last modified time | relevance | path

Searched refs:delay_slot (Results 1 – 4 of 4) sorted by relevance

/external/pcre/dist2/src/sljit/
DsljitNativeMIPS_common.c204 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument
206 SLJIT_ASSERT(delay_slot == MOVABLE_INS || delay_slot >= UNMOVABLE_INS in push_inst()
207 || delay_slot == ((ins >> 11) & 0x1f) || delay_slot == ((ins >> 16) & 0x1f)); in push_inst()
212 compiler->delay_slot = delay_slot; in push_inst()
744 sljit_s32 tmp_ar, base, delay_slot; in getput_arg() local
754 delay_slot = reg_ar; in getput_arg()
757 delay_slot = MOVABLE_INS; in getput_arg()
773 … push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | S(TMP_REG3) | TA(reg_ar), delay_slot); in getput_arg()
779 … push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | S(TMP_REG3) | TA(reg_ar), delay_slot); in getput_arg()
782 …n push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | SA(tmp_ar) | TA(reg_ar), delay_slot); in getput_arg()
[all …]
DsljitNativeSPARC_common.c188 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) in push_inst() argument
191 SLJIT_ASSERT((delay_slot & DST_INS_MASK) == UNMOVABLE_INS in push_inst()
192 || (delay_slot & DST_INS_MASK) == MOVABLE_INS in push_inst()
193 || (delay_slot & DST_INS_MASK) == ((ins >> 25) & 0x1f)); in push_inst()
198 compiler->delay_slot = delay_slot; in push_inst()
558 sljit_s32 base, arg2, delay_slot; in getput_arg() local
611 delay_slot = ((flags & MEM_MASK) <= GPR_REG && (flags & LOAD_DATA)) ? DR(reg) : MOVABLE_INS; in getput_arg()
613 … push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(arg2) | IMM(0), delay_slot); in getput_arg()
615 …ush_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot); in getput_arg()
616 …sh_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot)); in getput_arg()
[all …]
DsljitLir.h376 sljit_s32 delay_slot; member
382 sljit_s32 delay_slot; member
DsljitLir.c394 compiler->delay_slot = UNMOVABLE_INS; in sljit_create_compiler()
398 compiler->delay_slot = UNMOVABLE_INS; in sljit_create_compiler()