Home
last modified time | relevance | path

Searched refs:try_entry (Results 1 – 8 of 8) sorted by relevance

/art/compiler/optimizing/
Ddead_code_elimination.h106 void RemoveTry(HBasicBlock* try_entry,
Dblock_builder.cc352 HTryBoundary* try_entry = new (allocator_) HTryBoundary( in InsertTryBoundaryBlocks() local
354 try_block->CreateImmediateDominator()->AddInstruction(try_entry); in InsertTryBoundaryBlocks()
355 LinkToCatchBlocks(try_entry, code_item_accessor_, try_item, catch_blocks); in InsertTryBoundaryBlocks()
Ddead_code_elimination.cc641 void HDeadCodeElimination::RemoveTry(HBasicBlock* try_entry, in RemoveTry() argument
645 DCHECK(try_entry->EndsWithTryBoundary()); in RemoveTry()
646 DCHECK(try_entry->GetLastInstruction()->AsTryBoundary()->IsEntry()); in RemoveTry()
647 DisconnectHandlersAndUpdateTryBoundary(try_entry, any_block_in_loop); in RemoveTry()
Dcode_sinking.cc261 const HTryBoundary& try_entry = in FindIdealPosition() local
264 try_entry.HasSameExceptionHandlersAs( in FindIdealPosition()
Dgraph_checker.cc369 const HTryBoundary& try_entry = block->GetTryCatchInformation()->GetTryEntry(); in VisitBasicBlock() local
373 try_entry.DebugName(), in VisitBasicBlock()
374 try_entry.GetId())); in VisitBasicBlock()
Dnodes.cc605 const HTryBoundary* try_entry = first_predecessor->ComputeTryEntryOfSuccessors(); in ComputeTryBlockInformation() local
606 graph_has_try_catch |= try_entry != nullptr; in ComputeTryBlockInformation()
607 if (try_entry != nullptr && in ComputeTryBlockInformation()
609 try_entry != &block->GetTryCatchInformation()->GetTryEntry())) { in ComputeTryBlockInformation()
612 block->SetTryCatchInformation(new (allocator_) TryCatchInformation(*try_entry)); in ComputeTryBlockInformation()
Dinstruction_builder.cc180 const HTryBoundary& try_entry = current->GetTryCatchInformation()->GetTryEntry(); in InitializeBlockLocals() local
181 if (try_entry.HasExceptionHandler(*current_block_)) { in InitializeBlockLocals()
255 const HTryBoundary& try_entry = current_block_->GetTryCatchInformation()->GetTryEntry(); in PropagateLocalsToCatchBlocks() local
256 for (HBasicBlock* catch_block : try_entry.GetExceptionHandlers()) { in PropagateLocalsToCatchBlocks()
Dnodes.h1047 explicit TryCatchInformation(const HTryBoundary& try_entry) in TryCatchInformation() argument
1048 : try_entry_(&try_entry), in TryCatchInformation()