Home
last modified time | relevance | path

Searched refs:catchSuccessor (Results 1 – 1 of 1) sorted by relevance

/external/r8/src/main/java/com/android/tools/r8/ir/code/
DBasicBlock.java1094 for (BasicBlock catchSuccessor : catchSuccessors) { in copyCatchHandlers()
1095 catchSuccessor.splitCriticalExceptionEdges( in copyCatchHandlers()
1191 BasicBlock catchSuccessor = successors.get(newCatchTarget); in appendCatchHandlers() local
1192 if (!catchSuccessors.contains(catchSuccessor)) { in appendCatchHandlers()
1193 catchSuccessors.add(catchSuccessor); in appendCatchHandlers()
1195 int index = catchSuccessors.indexOf(catchSuccessor); in appendCatchHandlers()
1208 BasicBlock catchSuccessor = fromBlock.successors.get(prevCatchTarget); in appendCatchHandlers() local
1211 assert catchSuccessor.getPredecessors().size() == 1; in appendCatchHandlers()
1212 assert catchSuccessor.getPhis().isEmpty(); in appendCatchHandlers()
1214 int index = catchSuccessors.indexOf(catchSuccessor); in appendCatchHandlers()
[all …]