HomeSort by relevance Sort by last modified time
    Searched defs:try_item (Results 1 - 5 of 5) sorted by null

  /art/compiler/optimizing/
block_builder.cc 49 const DexFile::TryItem* try_item = DexFile::GetTryItems(code_item_, idx); local
50 uint32_t dex_pc_start = try_item->start_addr_;
51 uint32_t dex_pc_end = dex_pc_start + try_item->insn_count_;
208 // Iterates over the exception handlers of `try_item`, finds the corresponding
214 const DexFile::TryItem* try_item,
216 for (CatchHandlerIterator it(code_item, *try_item); it.HasNext(); it.Next()) {
325 const DexFile::TryItem* try_item = entry.second; local
328 if (GetTryItem(predecessor, try_block_info) != try_item) {
334 LinkToCatchBlocks(try_entry, code_item_, try_item, catch_blocks);
344 const DexFile::TryItem* try_item = entry.second local
    [all...]
  /art/runtime/
dex_file.cc 973 int32_t try_item = FindTryItem(code_item, address); local
    [all...]
  /art/dexlayout/
dex_ir.cc 616 TryItem* try_item = new TryItem(start_addr, insn_count, handlers); local
617 tries->push_back(std::unique_ptr<const TryItem>(try_item));
    [all...]
dexlayout.cc 808 const dex_ir::TryItem* try_item = (*tries)[i].get(); local
809 const uint32_t start = try_item->StartAddr();
810 const uint32_t end = start + try_item->InsnCount();
812 for (auto& handler : *try_item->GetHandlers()->GetHandlers()) {
    [all...]
  /art/runtime/verifier/
method_verifier.cc 1048 const DexFile::TryItem* try_item = &tries[idx]; local
    [all...]

Completed in 386 milliseconds