Searched refs:startPc (Results 1 - 5 of 5) sorted by relevance
/arkcompiler/runtime_core/static_core/verification/absint/ |
H A D | absint.cpp | 243 auto startPc = reinterpret_cast<uint8_t const *>( in VerifyExcHandler() local 247 execCtx.AddEntryPoint(startPc, EntryPointType::EXCEPTION_HANDLER); in VerifyExcHandler() 248 execCtx.StoreCurrentRegContextForAddr(startPc); in VerifyExcHandler()
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
H A D | bytecode_circuit_builder.h | 38 uint8_t* startPc; member 42 ExceptionItem(uint8_t* startPc, uint8_t* endPc, std::vector<uint8_t*> catches) in ExceptionItem() 43 : startPc(startPc), endPc(endPc), catches(catches) {} in ExceptionItem()
|
H A D | bytecode_circuit_builder.cpp | 405 if (pc < it->startPc || pc >= it->endPc) { in BuildCatchBlocks()
|
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir_builder/ |
H A D | ir_builder.cpp | 445 auto startPc = tryBlock.GetStartPc(); in CreateTryCatchBoundariesBlocks() 446 auto endPc = startPc + tryBlock.GetLength(); in CreateTryCatchBoundariesBlocks() 447 auto tryInfo = InsertTryBlockInfo({startPc, endPc}); in CreateTryCatchBoundariesBlocks()
|
/arkcompiler/runtime_core/static_core/libpandafile/ |
H A D | file_items.h | 1472 TryBlock(size_t startPc, size_t length, std::vector<CatchBlock> catchBlocks) in TryBlock() argument 1473 : startPc_(startPc), length_(length), catchBlocks_(std::move(catchBlocks)) in TryBlock()
|
Completed in 10 milliseconds