Searched refs:byteCodeException (Results 1 – 1 of 1) sorted by relevance
105 void BytecodeCircuitBuilder::CollectTryCatchBlockInfo(ExceptionInfo &byteCodeException) in CollectTryCatchBlockInfo() argument111 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() argument200 if (byteCodeException.size() != 0) { in BuildRegions()201 BuildCatchBlocks(byteCodeException); in BuildRegions()214 void BytecodeCircuitBuilder::BuildCatchBlocks(const ExceptionInfo &byteCodeException) in BuildCatchBlocks() argument221 for (auto it = byteCodeException.cbegin(); it != byteCodeException.cend(); it++) { in BuildCatchBlocks()