Home
last modified time | relevance | path

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

/arkcompiler/ets_runtime/ecmascript/compiler/
Dbytecode_circuit_builder.cpp115 void BytecodeCircuitBuilder::CollectTryCatchBlockInfo(ExceptionInfo &byteCodeException) in CollectTryCatchBlockInfo() argument
121 cda.EnumerateTryBlocks([this, &byteCodeException]( in CollectTryCatchBlockInfo()
139 byteCodeException.emplace_back(ExceptionItem { tryStartPc, tryEndPc, {} }); in CollectTryCatchBlockInfo()
147 byteCodeException.back().catches.emplace_back(catchBlockPc); in CollectTryCatchBlockInfo()
344 void BytecodeCircuitBuilder::BuildRegions(const ExceptionInfo &byteCodeException) in BuildRegions() argument
372 if (byteCodeException.size() != 0) { in BuildRegions()
373 BuildCatchBlocks(byteCodeException); in BuildRegions()
403 void BytecodeCircuitBuilder::BuildCatchBlocks(const ExceptionInfo &byteCodeException) in BuildCatchBlocks() argument
423 for (auto it = byteCodeException.cbegin(); it != byteCodeException.cend(); it++) { in BuildCatchBlocks()