Searched refs:old_ih (Results 1 - 7 of 7) sorted by relevance

/openjdk9/jaxp/src/java.xml/share/classes/com/sun/org/apache/bcel/internal/generic/
H A DInstructionTargeter.java36 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih); argument
H A DBranchInstruction.java185 static void notifyTargetChanging(InstructionHandle old_ih, argument
187 if(old_ih != null) {
188 old_ih.removeTargeter(t);
205 * @param old_ih old target
209 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
210 if(target == old_ih)
213 throw new ClassGenException("Not targeting " + old_ih + ", but " + target);
H A DLineNumberGen.java60 * @param old_ih old target
64 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
65 if(old_ih != ih)
66 throw new ClassGenException("Not targeting " + old_ih + ", but " + ih + "}");
H A DCodeExceptionGen.java109 * @param old_ih old target, either start or end
113 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
116 if(start_pc == old_ih) {
121 if(end_pc == old_ih) {
126 if(handler_pc == old_ih) {
132 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start_pc + ", " +
H A DSelect.java168 * @param old_ih old target
172 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
175 if(target == old_ih) {
181 if(targets[i] == old_ih) {
188 throw new ClassGenException("Not targeting " + old_ih);
H A DBranchHandle.java94 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
95 bi.updateTarget(old_ih, new_ih);
H A DLocalVariableGen.java185 * @param old_ih old target, either start or end
189 public void updateTarget(InstructionHandle old_ih, InstructionHandle new_ih) { argument
192 if(start == old_ih) {
197 if(end == old_ih) {
203 throw new ClassGenException("Not targeting " + old_ih + ", but {" + start + ", " +

Completed in 55 milliseconds