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.cpp105 void BytecodeCircuitBuilder::CollectTryCatchBlockInfo(ExceptionInfo &byteCodeException) in CollectTryCatchBlockInfo() argument
111 cda.EnumerateTryBlocks([this, &byteCodeException]( in CollectTryCatchBlockInfo()
129 byteCodeException.emplace_back(ExceptionItem { tryStartPc, tryEndPc, {} }); in CollectTryCatchBlockInfo()
136 byteCodeException.back().catches.emplace_back(catchBlockPc); in CollectTryCatchBlockInfo()
152 void BytecodeCircuitBuilder::BuildRegions(const ExceptionInfo &byteCodeException) in BuildRegions() argument
200 if (byteCodeException.size() != 0) { in BuildRegions()
201 BuildCatchBlocks(byteCodeException); in BuildRegions()
214 void BytecodeCircuitBuilder::BuildCatchBlocks(const ExceptionInfo &byteCodeException) in BuildCatchBlocks() argument
221 for (auto it = byteCodeException.cbegin(); it != byteCodeException.cend(); it++) { in BuildCatchBlocks()