Searched refs:delay_slot (Results 1 - 4 of 4) sorted by relevance
/external/pcre/dist2/src/sljit/ |
H A D | sljitNativeSPARC_common.c | 188 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) argument 191 SLJIT_ASSERT((delay_slot & DST_INS_MASK) == UNMOVABLE_INS 192 || (delay_slot & DST_INS_MASK) == MOVABLE_INS 193 || (delay_slot & DST_INS_MASK) == ((ins >> 25) & 0x1f)); 198 compiler->delay_slot = delay_slot; 558 sljit_s32 base, arg2, delay_slot; local 611 delay_slot = ((flags & MEM_MASK) <= GPR_REG && (flags & LOAD_DATA)) ? DR(reg) : MOVABLE_INS; 613 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(arg2) | IMM(0), delay_slot); 615 return push_inst(compiler, data_transfer_insts[flags & MEM_MASK] | dest | S1(base) | S2(arg2), delay_slot); [all...] |
H A D | sljitNativeMIPS_common.c | 204 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot) argument 206 SLJIT_ASSERT(delay_slot == MOVABLE_INS || delay_slot >= UNMOVABLE_INS 207 || delay_slot == ((ins >> 11) & 0x1f) || delay_slot == ((ins >> 16) & 0x1f)); 212 compiler->delay_slot = delay_slot; 744 sljit_s32 tmp_ar, base, delay_slot; local 754 delay_slot = reg_ar; 757 delay_slot [all...] |
H A D | sljitLir.h | 376 sljit_s32 delay_slot; member in struct:sljit_compiler 382 sljit_s32 delay_slot; member in struct:sljit_compiler
|
H A D | sljitLir.c | 394 compiler->delay_slot = UNMOVABLE_INS; 398 compiler->delay_slot = UNMOVABLE_INS;
|
Completed in 67 milliseconds