Home
last modified time | relevance | path

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

/art/compiler/optimizing/
Dblock_builder.cc85 const uint8_t* handlers_ptr = code_item_accessor_.GetCatchHandlerData(); in CreateBranchTargets() local
86 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); in CreateBranchTargets()
88 CatchHandlerIterator iterator(handlers_ptr); in CreateBranchTargets()
92 handlers_ptr = iterator.EndDataPointer(); in CreateBranchTargets()
299 const uint8_t* handlers_ptr = code_item_accessor_.GetCatchHandlerData(); in InsertTryBoundaryBlocks() local
300 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); in InsertTryBoundaryBlocks()
302 CatchHandlerIterator iterator(handlers_ptr); in InsertTryBoundaryBlocks()
337 handlers_ptr = iterator.EndDataPointer(); in InsertTryBoundaryBlocks()
/art/tools/veridex/
Dflow_analysis.cc79 const uint8_t* handlers_ptr = code_item_accessor_.GetCatchHandlerData(); in FindBranches() local
80 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); in FindBranches()
82 CatchHandlerIterator iterator(handlers_ptr); in FindBranches()
86 handlers_ptr = iterator.EndDataPointer(); in FindBranches()
/art/runtime/verifier/
Dmethod_verifier.cc1108 const uint8_t* handlers_ptr = code_item_accessor_.GetCatchHandlerData(); in ScanTryCatchBlocks() local
1109 const uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); in ScanTryCatchBlocks()
1112 CatchHandlerIterator iterator(handlers_ptr); in ScanTryCatchBlocks()
1137 handlers_ptr = iterator.EndDataPointer(); in ScanTryCatchBlocks()
3665 const uint8_t* handlers_ptr = code_item_accessor_.GetCatchHandlerData(); in HandleMoveException() local
3666 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); in HandleMoveException()
3669 CatchHandlerIterator iterator(handlers_ptr); in HandleMoveException()
3707 handlers_ptr = iterator.EndDataPointer(); in HandleMoveException()
/art/dex2oat/driver/
Dcompiler_driver.cc1104 const uint8_t* handlers_ptr = accessor.GetCatchHandlerData(); in FindExceptionTypesToResolve() local
1105 size_t num_encoded_catch_handlers = DecodeUnsignedLeb128(&handlers_ptr); in FindExceptionTypesToResolve()
1107 CatchHandlerIterator iterator(handlers_ptr); in FindExceptionTypesToResolve()
1122 handlers_ptr = iterator.EndDataPointer(); in FindExceptionTypesToResolve()
/art/runtime/
Dclass_linker.cc5209 const uint8_t* handlers_ptr = accessor.GetCatchHandlerData(0); in ResolveMethodExceptionHandlerTypes() local
5210 CHECK(method->GetDexFile()->IsInDataSection(handlers_ptr)) in ResolveMethodExceptionHandlerTypes()
5213 << "@" << reinterpret_cast<const void*>(handlers_ptr) in ResolveMethodExceptionHandlerTypes()
5216 uint32_t handlers_size = DecodeUnsignedLeb128(&handlers_ptr); in ResolveMethodExceptionHandlerTypes()
5218 CatchHandlerIterator iterator(handlers_ptr); in ResolveMethodExceptionHandlerTypes()
5230 handlers_ptr = iterator.EndDataPointer(); in ResolveMethodExceptionHandlerTypes()