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

  /src/sys/external/bsd/sljit/dist/sljit_src/
sljitNativeSPARC_common.c 190 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
193 SLJIT_ASSERT((delay_slot & DST_INS_MASK) == UNMOVABLE_INS
194 || (delay_slot & DST_INS_MASK) == MOVABLE_INS
195 || (delay_slot & DST_INS_MASK) == ((ins >> 25) & 0x1f));
200 compiler->delay_slot = delay_slot;
571 sljit_s32 base, arg2, delay_slot; local in function:getput_arg
623 delay_slot = ((flags & MEM_MASK) <= GPR_REG && (flags & LOAD_DATA)) ? DR(reg) : MOVABLE_INS;
625 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(arg2) | IMM(0), delay_slot);
627 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot);
    [all...]
sljitNativeMIPS_common.c 201 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
203 SLJIT_ASSERT(delay_slot == MOVABLE_INS || delay_slot >= UNMOVABLE_INS
204 || delay_slot == ((ins >> 11) & 0x1f) || delay_slot == ((ins >> 16) & 0x1f));
209 compiler->delay_slot = delay_slot;
746 sljit_s32 tmp_ar, base, delay_slot; local in function:getput_arg
756 delay_slot = reg_ar;
759 delay_slot = MOVABLE_INS
    [all...]
sljitLir.h 376 sljit_s32 delay_slot; member in struct:sljit_compiler
382 sljit_s32 delay_slot; member in struct:sljit_compiler

Completed in 53 milliseconds