Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dblock_builder.cc365 HTryBoundary* try_entry = new (allocator_) HTryBoundary( in InsertTryBoundaryBlocks() local
367 try_block->CreateImmediateDominator()->AddInstruction(try_entry); in InsertTryBoundaryBlocks()
368 LinkToCatchBlocks(try_entry, code_item_accessor_, try_item, catch_blocks); in InsertTryBoundaryBlocks()
Dgraph_checker.cc243 const HTryBoundary& try_entry = block->GetTryCatchInformation()->GetTryEntry(); in VisitBasicBlock() local
247 try_entry.DebugName(), in VisitBasicBlock()
248 try_entry.GetId())); in VisitBasicBlock()
Dnodes.cc723 const HTryBoundary* try_entry = first_predecessor->ComputeTryEntryOfSuccessors(); in ComputeTryBlockInformation() local
724 if (try_entry != nullptr && in ComputeTryBlockInformation()
726 try_entry != &block->GetTryCatchInformation()->GetTryEntry())) { in ComputeTryBlockInformation()
729 block->SetTryCatchInformation(new (allocator_) TryCatchInformation(*try_entry)); in ComputeTryBlockInformation()
Dinstruction_builder.cc178 const HTryBoundary& try_entry = current->GetTryCatchInformation()->GetTryEntry(); in InitializeBlockLocals() local
179 if (try_entry.HasExceptionHandler(*current_block_)) { in InitializeBlockLocals()
253 const HTryBoundary& try_entry = current_block_->GetTryCatchInformation()->GetTryEntry(); in PropagateLocalsToCatchBlocks() local
254 for (HBasicBlock* catch_block : try_entry.GetExceptionHandlers()) { in PropagateLocalsToCatchBlocks()
Dnodes.h1020 explicit TryCatchInformation(const HTryBoundary& try_entry) in TryCatchInformation() argument
1021 : try_entry_(&try_entry), in TryCatchInformation()