Searched refs:byteCodeException (Results 1 – 1 of 1) sorted by relevance
103 void BytecodeCircuitBuilder::CollectTryCatchBlockInfo(ExceptionInfo &byteCodeException) in CollectTryCatchBlockInfo() argument109 cda.EnumerateTryBlocks([this, &byteCodeException]( in CollectTryCatchBlockInfo()127 byteCodeException.emplace_back(ExceptionItem { tryStartPc, tryEndPc, {} }); in CollectTryCatchBlockInfo()134 byteCodeException.back().catchs.emplace_back(catchBlockPc); in CollectTryCatchBlockInfo()150 void BytecodeCircuitBuilder::BuildRegions(const ExceptionInfo &byteCodeException) in BuildRegions() argument195 if (byteCodeException.size() != 0) { in BuildRegions()196 BuildCatchBlocks(byteCodeException); in BuildRegions()204 void BytecodeCircuitBuilder::BuildCatchBlocks(const ExceptionInfo &byteCodeException) in BuildCatchBlocks() argument211 for (auto it = byteCodeException.cbegin(); it != byteCodeException.cend(); it++) { in BuildCatchBlocks()