Searched refs:byteCodeException (Results 1 – 1 of 1) sorted by relevance
115 void BytecodeCircuitBuilder::CollectTryCatchBlockInfo(ExceptionInfo &byteCodeException) in CollectTryCatchBlockInfo() argument121 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() argument372 if (byteCodeException.size() != 0) { in BuildRegions()373 BuildCatchBlocks(byteCodeException); in BuildRegions()403 void BytecodeCircuitBuilder::BuildCatchBlocks(const ExceptionInfo &byteCodeException) in BuildCatchBlocks() argument423 for (auto it = byteCodeException.cbegin(); it != byteCodeException.cend(); it++) { in BuildCatchBlocks()