Home
last modified time | relevance | path

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

/aosp12/art/compiler/optimizing/
H A 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()
H A Dloop_optimization.cc1858 vector_header_->AddPhi(new_phi); in GenerateVecReductionPhi()
1859 vector = new_phi; in GenerateVecReductionPhi()
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()
1921 new_phi->AsPhi()->AddInput(new_init); in GenerateVecReductionPhiInputs()
1922 new_phi->AsPhi()->AddInput(new_red); in GenerateVecReductionPhiInputs()
[all …]
H A Dload_store_elimination_test.cc3770 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()
3902 ASSERT_NE(new_phi, nullptr); in TEST_F()
3909 EXPECT_INS_EQ(store_two->InputAt(0), new_phi) << *store_two << " vs " << *new_phi; in TEST_F()
3915 EXPECT_EQ(read_escape->InputAt(0), new_phi) << *new_phi << " vs " << *read_escape->InputAt(0); in TEST_F()
4035 HPhi* new_phi = FindOrNull( in TEST_F() local
[all …]