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

  /external/mesa3d/src/compiler/nir/
nir_lower_indirect_derefs.c 28 emit_load_store(nir_builder *b, nir_intrinsic_instr *orig_instr,
33 emit_indirect_load_store(nir_builder *b, nir_intrinsic_instr *orig_instr,
51 emit_load_store(b, orig_instr, deref, &direct.deref, dest, src);
64 emit_indirect_load_store(b, orig_instr, deref, arr_parent,
68 emit_indirect_load_store(b, orig_instr, deref, arr_parent,
97 emit_load_store(nir_builder *b, nir_intrinsic_instr *orig_instr,
111 emit_indirect_load_store(b, orig_instr, deref, tail, -arr->base_offset,
124 load->num_components = orig_instr->num_components;
126 unsigned bit_size = orig_instr->dest.ssa.bit_size;
135 store->num_components = orig_instr->num_components
    [all...]
  /art/compiler/optimizing/
superblock_cloner_test.cc 221 HInstruction* orig_instr = it.first; local
224 EXPECT_EQ(cloner.GetBlockCopy(orig_instr->GetBlock()), copy_instr->GetBlock());
225 EXPECT_EQ(orig_instr->GetKind(), copy_instr->GetKind());
226 EXPECT_EQ(orig_instr->GetType(), copy_instr->GetType());
228 if (orig_instr->IsPhi()) {
232 EXPECT_EQ(orig_instr->InputCount(), copy_instr->InputCount());
235 for (size_t i = 0, e = orig_instr->InputCount(); i < e; i++) {
236 HInstruction* orig_input = orig_instr->InputAt(i);
245 EXPECT_EQ(orig_instr->HasEnvironment(), copy_instr->HasEnvironment());
248 if (orig_instr->HasEnvironment())
    [all...]
superblock_cloner.cc 510 void SuperblockCloner::CheckInstructionInputsRemapping(HInstruction* orig_instr) {
511 DCHECK(!orig_instr->IsPhi());
512 HInstruction* copy_instr = GetInstrCopy(orig_instr);
513 for (size_t i = 0, e = orig_instr->InputCount(); i < e; i++) {
514 HInstruction* orig_input = orig_instr->InputAt(i);
515 DCHECK(orig_input->GetBlock()->Dominates(orig_instr->GetBlock()));
527 if (orig_instr->HasEnvironment()) {
528 HEnvironment* orig_env = orig_instr->GetEnvironment();
662 HInstruction* orig_instr = it.Current(); local
663 HInstruction* copy_instr = orig_instr->Clone(arena_)
672 HInstruction* orig_instr = it.Current(); local
    [all...]
superblock_cloner.h 176 HInstruction* GetInstrCopy(HInstruction* orig_instr) const {
177 auto copy_input_iter = hir_map_->find(orig_instr);
274 void CheckInstructionInputsRemapping(HInstruction* orig_instr);

Completed in 554 milliseconds