Lines Matching defs:byteCodeException
111 void BytecodeCircuitBuilder::CollectTryCatchBlockInfo(ExceptionInfo &byteCodeException)
117 cda.EnumerateTryBlocks([this, &byteCodeException](
135 byteCodeException.emplace_back(ExceptionItem { tryStartPc, tryEndPc, {} });
142 byteCodeException.back().catches.emplace_back(catchBlockPc);
339 void BytecodeCircuitBuilder::BuildRegions(const ExceptionInfo &byteCodeException)
367 if (byteCodeException.size() != 0) {
368 BuildCatchBlocks(byteCodeException);
384 void BytecodeCircuitBuilder::BuildCatchBlocks(const ExceptionInfo &byteCodeException)
404 for (auto it = byteCodeException.cbegin(); it != byteCodeException.cend(); it++) {