HomeSort by relevance Sort by last modified time
    Searched refs:delay_slot (Results 1 - 6 of 6) sorted by null

  /external/pcre/dist2/src/sljit/
sljitNativeSPARC_common.c 188 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
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...]
sljitNativeMIPS_common.c 204 static sljit_s32 push_inst(struct sljit_compiler *compiler, sljit_ins ins, sljit_s32 delay_slot)
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 = 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
    [all...]
sljitLir.c 394 compiler->delay_slot = UNMOVABLE_INS;
398 compiler->delay_slot = UNMOVABLE_INS;
    [all...]
  /art/compiler/utils/mips/
assembler_mips.cc     [all...]
assembler_mips.h     [all...]

Completed in 492 milliseconds