Home
last modified time | relevance | path

Searched refs:new_phi (Results 1 – 3 of 3) sorted by relevance

/art/compiler/optimizing/
Dssa_builder.cc668 HPhi* new_phi = new (allocator) HPhi(allocator, phi->GetRegNumber(), inputs.size(), type); in GetFloatDoubleOrReferenceEquivalentOfPhi() local
671 ArrayRef<HUserRecord<HInstruction*>> new_input_records = new_phi->GetInputRecords(); in GetFloatDoubleOrReferenceEquivalentOfPhi()
675 phi->GetBlock()->InsertPhiAfter(new_phi, phi); in GetFloatDoubleOrReferenceEquivalentOfPhi()
676 DCHECK(new_phi->IsLive()); in GetFloatDoubleOrReferenceEquivalentOfPhi()
677 return new_phi; in GetFloatDoubleOrReferenceEquivalentOfPhi()
Dloop_optimization.cc1856 HPhi* new_phi = new (global_allocator_) HPhi( in GenerateVecReductionPhi() local
1858 vector_header_->AddPhi(new_phi); in GenerateVecReductionPhi()
1859 vector = new_phi; in GenerateVecReductionPhi()
1866 HPhi* new_phi = new (global_allocator_) HPhi( in GenerateVecReductionPhi() local
1868 vector_header_->AddPhi(new_phi); in GenerateVecReductionPhi()
1869 vector = new_phi; in GenerateVecReductionPhi()
1876 HInstruction* new_phi = vector_map_->Get(phi); in GenerateVecReductionPhiInputs() local
1880 for (; !new_phi->IsPhi(); new_phi = vector_permanent_map_->Get(new_phi)) { in GenerateVecReductionPhiInputs()
1881 DCHECK(new_phi->IsVecOperation()); in GenerateVecReductionPhiInputs()
1920 DCHECK(new_phi->IsPhi()); in GenerateVecReductionPhiInputs()
[all …]
Dload_store_elimination_test.cc3767 HPhi* new_phi = FindSingleInstruction<HPhi>(graph_, escape); in TEST_F() local
3770 EXPECT_EQ(materialization_ins_one, new_phi->InputAt(0)) in TEST_F()
3771 << *materialization_ins_one << " vs " << *new_phi; in TEST_F()
3772 EXPECT_EQ(materialization_ins_two, new_phi->InputAt(1)) in TEST_F()
3773 << *materialization_ins_two << " vs " << *new_phi; in TEST_F()
3777 EXPECT_EQ(read_escape->InputAt(0), new_phi) << *new_phi << " vs " << *read_escape->InputAt(0); in TEST_F()
3780 EXPECT_EQ(escape_instruction->InputAt(0), new_phi); in TEST_F()
3901 HPhi* new_phi = FindSingleInstruction<HPhi>(graph_, set_two); in TEST_F() local
3902 ASSERT_NE(new_phi, nullptr); in TEST_F()
3905 EXPECT_INS_EQ(materialization_ins_one, new_phi->InputAt(0)); in TEST_F()
[all …]