if (false) {
System.out.println(getFullyQualifiedMethodName());
System.out.println(first + " ... " + endOfFirstSegment + " : " + OPCODE_NAMES[opcodeAtEndOfFirst]);
System.out.println(second + " ... " + endOfSecondSegment + " : " + OPCODE_NAMES[opcodeAtEndOfSecond]);
}
SourceLineAnnotation firstSourceLine = SourceLineAnnotation.fromVisitedInstructionRange(getClassContext(),
this, first, endOfFirstSegment - 1);
SourceLineAnnotation secondSourceLine = SourceLineAnnotation.fromVisitedInstructionRange(getClassContext(),
this, second, endOfSecondSegment - 1);
int priority = HIGH_PRIORITY;
if (firstSourceLine.getStartLine() == -1 || firstSourceLine.getStartLine() != secondSourceLine.getEndLine()) {
priority++;
}
if (stack.isJumpTarget(second)) {
priority++;
}