Home
last modified time | relevance | path

Searched refs:IsCatchPhi (Results 1 – 9 of 9) sorted by relevance

/art/compiler/optimizing/
Dssa_phi_elimination.cc170 bool catch_phi_in_cycle = phi->IsCatchPhi(); in Run()
202 catch_phi_in_cycle |= input->AsPhi()->IsCatchPhi(); in Run()
Dcode_sinking.cc191 block = user->AsPhi()->IsCatchPhi() in FindIdealPosition()
Dregister_allocator_linear_scan.cc376 if (instruction->IsPhi() && instruction->AsPhi()->IsCatchPhi()) { in ProcessInstruction()
1096 DCHECK(!defined_by->IsPhi() || !defined_by->AsPhi()->IsCatchPhi()); in AllocateSpillSlotFor()
Dgraph_checker.cc837 if (phi->IsCatchPhi()) { in VisitPhi()
893 if (phi->IsCatchPhi()) { in VisitPhi()
Dregister_allocation_resolver.cc79 } else if (instruction->IsPhi() && instruction->AsPhi()->IsCatchPhi()) { in Resolve()
Dgraph_visualizer.cc372 StartAttributeStream("is_catch_phi") << std::boolalpha << phi->IsCatchPhi() << std::noboolalpha; in VisitPhi()
Dregister_allocator_graph_color.cc1038 if (instruction->IsPhi() && instruction->AsPhi()->IsCatchPhi()) { in AllocateSpillSlotForCatchPhi()
Dnodes.cc1306 } else if (user->IsPhi() && !user->AsPhi()->IsCatchPhi()) { in ReplaceUsesDominatedBy()
Dnodes.h2868 bool IsCatchPhi() const { return GetBlock()->IsCatchBlock(); } in IsCatchPhi() function