|
|
@ -145,7 +145,9 @@ public class FlowBlock { |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* This method optimizes the jumps to successor. |
|
|
|
* This method optimizes the jumps to successor. |
|
|
|
* Returns the new appendBlock, it may have changed. |
|
|
|
* @param successor The successing flow block |
|
|
|
|
|
|
|
* @param appendBlock the block where the successor is appended to. |
|
|
|
|
|
|
|
* @return the new appendBlock, it may have changed. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public StructuredBlock optimizeJumps(FlowBlock successor, |
|
|
|
public StructuredBlock optimizeJumps(FlowBlock successor, |
|
|
|
StructuredBlock appendBlock) { |
|
|
|
StructuredBlock appendBlock) { |
|
|
@ -374,6 +376,98 @@ public class FlowBlock { |
|
|
|
return appendBlock; |
|
|
|
return appendBlock; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Move the successors of the given flow block to this flow block. |
|
|
|
|
|
|
|
* @param succ the other flow block |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
void mergeSuccessors(FlowBlock succ) { |
|
|
|
|
|
|
|
/* Merge the sucessors from the successing flow block |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
Enumeration enum = succ.successors.elements(); |
|
|
|
|
|
|
|
while (enum.hasMoreElements()) { |
|
|
|
|
|
|
|
Jump jump = (Jump) enum.nextElement(); |
|
|
|
|
|
|
|
if (jump == null) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
successors.addElement(jump); |
|
|
|
|
|
|
|
if (jump.destination.predecessors.contains(succ)) { |
|
|
|
|
|
|
|
/*XXX comment and make clearer, better etc.*/ |
|
|
|
|
|
|
|
jump.destination.predecessors.removeElement(succ); |
|
|
|
|
|
|
|
if (!jump.destination.predecessors.contains(this)) |
|
|
|
|
|
|
|
jump.destination.predecessors.addElement(this); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Resolve remaining jumps to the successor by generating break |
|
|
|
|
|
|
|
* instructions. As last resort generate a do while(false) block. |
|
|
|
|
|
|
|
* @param successor The successing flow block |
|
|
|
|
|
|
|
* @param appendBlock the block where the successor is appended to. |
|
|
|
|
|
|
|
* @return the new appendBlock, it may have changed. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
StructuredBlock resolveRemaining(FlowBlock succ, |
|
|
|
|
|
|
|
StructuredBlock appendBlock) { |
|
|
|
|
|
|
|
LoopBlock doWhileFalse = null; |
|
|
|
|
|
|
|
Enumeration enum = successors.elements(); |
|
|
|
|
|
|
|
next_jump: |
|
|
|
|
|
|
|
while (enum.hasMoreElements()) { |
|
|
|
|
|
|
|
Jump jump = (Jump) enum.nextElement(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jump == null || jump.destination != succ |
|
|
|
|
|
|
|
|| jump.prev == appendBlock) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int breaklevel = 0; |
|
|
|
|
|
|
|
BreakableBlock breakToBlock = null; |
|
|
|
|
|
|
|
for (StructuredBlock surrounder = jump.prev.outer; |
|
|
|
|
|
|
|
surrounder != null && surrounder != appendBlock.outer; |
|
|
|
|
|
|
|
surrounder = surrounder.outer) { |
|
|
|
|
|
|
|
if (surrounder instanceof BreakableBlock) { |
|
|
|
|
|
|
|
breaklevel++; |
|
|
|
|
|
|
|
if (surrounder.getNextFlowBlock() == succ) { |
|
|
|
|
|
|
|
breakToBlock = (BreakableBlock) surrounder; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StructuredBlock prevBlock = jump.prev; |
|
|
|
|
|
|
|
prevBlock.removeJump(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (breakToBlock == null) { |
|
|
|
|
|
|
|
/* Nothing else helped, so put a do/while(0) |
|
|
|
|
|
|
|
* block around appendBlock and break to that |
|
|
|
|
|
|
|
* block. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (doWhileFalse == null) { |
|
|
|
|
|
|
|
doWhileFalse = new LoopBlock(LoopBlock.DOWHILE, |
|
|
|
|
|
|
|
LoopBlock.FALSE); |
|
|
|
|
|
|
|
doWhileFalse.setJump(new Jump(succ)); |
|
|
|
|
|
|
|
successors.addElement(doWhileFalse.jump); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
prevBlock.appendBlock |
|
|
|
|
|
|
|
(new BreakBlock(doWhileFalse, breaklevel > 0)); |
|
|
|
|
|
|
|
} else |
|
|
|
|
|
|
|
prevBlock.appendBlock |
|
|
|
|
|
|
|
(new BreakBlock(breakToBlock, breaklevel > 1)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (doWhileFalse != null) { |
|
|
|
|
|
|
|
doWhileFalse.replace(appendBlock, appendBlock); |
|
|
|
|
|
|
|
doWhileFalse.setBody(appendBlock); |
|
|
|
|
|
|
|
doWhileFalse.removeJump(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Now remove the jump of the appendBlock if it points to |
|
|
|
|
|
|
|
* successor. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (appendBlock.jump != null |
|
|
|
|
|
|
|
&& appendBlock.jump.destination == succ) |
|
|
|
|
|
|
|
appendBlock.removeJump(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return appendBlock; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Updates the in/out-Vectors of the structured block of the |
|
|
|
* Updates the in/out-Vectors of the structured block of the |
|
|
|
* successing flow block simultanous to a T1 transformation. |
|
|
|
* successing flow block simultanous to a T1 transformation. |
|
|
@ -497,6 +591,7 @@ public class FlowBlock { |
|
|
|
public void checkConsistent() { |
|
|
|
public void checkConsistent() { |
|
|
|
if (!Decompiler.doChecks) |
|
|
|
if (!Decompiler.doChecks) |
|
|
|
return; |
|
|
|
return; |
|
|
|
|
|
|
|
// try {
|
|
|
|
if (block.outer != null || block.flowBlock != this) { |
|
|
|
if (block.outer != null || block.flowBlock != this) { |
|
|
|
throw new RuntimeException("Inconsistency"); |
|
|
|
throw new RuntimeException("Inconsistency"); |
|
|
|
} |
|
|
|
} |
|
|
@ -525,6 +620,16 @@ public class FlowBlock { |
|
|
|
sb = sb.outer; |
|
|
|
sb = sb.outer; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
// } catch (RuntimeException ex) {
|
|
|
|
|
|
|
|
// ex.printStackTrace();
|
|
|
|
|
|
|
|
// try {
|
|
|
|
|
|
|
|
// jode.TabbedPrintWriter writer =
|
|
|
|
|
|
|
|
// new jode.TabbedPrintWriter(System.err, " ");
|
|
|
|
|
|
|
|
// writer.tab();
|
|
|
|
|
|
|
|
// block.dumpSource(writer);
|
|
|
|
|
|
|
|
// } catch (java.io.IOException ioex) {
|
|
|
|
|
|
|
|
// }
|
|
|
|
|
|
|
|
// }
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -540,20 +645,8 @@ public class FlowBlock { |
|
|
|
succ.predecessors.elementAt(0) != this) |
|
|
|
succ.predecessors.elementAt(0) != this) |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
|
|
try{ |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
succ.checkConsistent(); |
|
|
|
succ.checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
succ.block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* First find the innermost block that contains all jumps to this |
|
|
|
/* First find the innermost block that contains all jumps to this |
|
|
|
* successor and the last modified block. |
|
|
|
* successor and the last modified block. |
|
|
@ -647,34 +740,9 @@ public class FlowBlock { |
|
|
|
sequBlock.setSecond(succ.block); |
|
|
|
sequBlock.setSecond(succ.block); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Merge the sucessors from the successing flow block |
|
|
|
mergeSuccessors(succ); |
|
|
|
*/ |
|
|
|
|
|
|
|
enum = succ.successors.elements(); |
|
|
|
|
|
|
|
while (enum.hasMoreElements()) { |
|
|
|
|
|
|
|
Jump jump = (Jump) enum.nextElement(); |
|
|
|
|
|
|
|
if (jump == null) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
successors.addElement(jump); |
|
|
|
|
|
|
|
if (jump.destination.predecessors.contains(succ)) { |
|
|
|
|
|
|
|
/*XXX comment and make clearer, better etc.*/ |
|
|
|
|
|
|
|
jump.destination.predecessors.removeElement(succ); |
|
|
|
|
|
|
|
if (!jump.destination.predecessors.contains(this)) |
|
|
|
|
|
|
|
jump.destination.predecessors.addElement(this); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Try to eliminate as many jumps as possible. |
|
|
|
/* Try to eliminate as many jumps as possible. |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -687,72 +755,9 @@ public class FlowBlock { |
|
|
|
|
|
|
|
|
|
|
|
appendBlock = optimizeJumps(succ, appendBlock); |
|
|
|
appendBlock = optimizeJumps(succ, appendBlock); |
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LoopBlock doWhileFalse = null; |
|
|
|
|
|
|
|
enum = successors.elements(); |
|
|
|
|
|
|
|
next_jump: |
|
|
|
|
|
|
|
while (enum.hasMoreElements()) { |
|
|
|
|
|
|
|
Jump jump = (Jump) enum.nextElement(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jump == null || jump.destination != succ |
|
|
|
|
|
|
|
|| jump.prev == appendBlock) |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int breaklevel = 0; |
|
|
|
appendBlock = resolveRemaining(succ, appendBlock); |
|
|
|
BreakableBlock breakToBlock = null; |
|
|
|
|
|
|
|
for (StructuredBlock surrounder = jump.prev.outer; |
|
|
|
|
|
|
|
surrounder != null && surrounder != appendBlock.outer; |
|
|
|
|
|
|
|
surrounder = surrounder.outer) { |
|
|
|
|
|
|
|
if (surrounder instanceof BreakableBlock) { |
|
|
|
|
|
|
|
breaklevel++; |
|
|
|
|
|
|
|
if (surrounder.getNextFlowBlock() == succ) { |
|
|
|
|
|
|
|
breakToBlock = (BreakableBlock) surrounder; |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StructuredBlock prevBlock = jump.prev; |
|
|
|
|
|
|
|
prevBlock.removeJump(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (breakToBlock == null) { |
|
|
|
|
|
|
|
/* Nothing else helped, so put a do/while(0) |
|
|
|
|
|
|
|
* block around appendBlock and break to that |
|
|
|
|
|
|
|
* block. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (doWhileFalse == null) |
|
|
|
|
|
|
|
doWhileFalse = new LoopBlock(LoopBlock.DOWHILE, |
|
|
|
|
|
|
|
LoopBlock.FALSE); |
|
|
|
|
|
|
|
prevBlock.appendBlock |
|
|
|
|
|
|
|
(new BreakBlock(doWhileFalse, breaklevel > 0)); |
|
|
|
|
|
|
|
} else |
|
|
|
|
|
|
|
prevBlock.appendBlock |
|
|
|
|
|
|
|
(new BreakBlock(breakToBlock, breaklevel > 1)); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (doWhileFalse != null) { |
|
|
|
|
|
|
|
doWhileFalse.replace(appendBlock, appendBlock); |
|
|
|
|
|
|
|
doWhileFalse.setBody(appendBlock); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Now remove the jump of the appendBlock if it points to |
|
|
|
|
|
|
|
* successor. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (appendBlock.jump != null |
|
|
|
|
|
|
|
&& appendBlock.jump.destination == succ) |
|
|
|
|
|
|
|
appendBlock.removeJump(); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Believe it or not: Now the rule, that the first part of a |
|
|
|
/* Believe it or not: Now the rule, that the first part of a |
|
|
@ -774,21 +779,11 @@ public class FlowBlock { |
|
|
|
length += succ.length; |
|
|
|
length += succ.length; |
|
|
|
|
|
|
|
|
|
|
|
/* T1 transformation succeeded */ |
|
|
|
/* T1 transformation succeeded */ |
|
|
|
try { |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
public boolean doT2(int start, int end) { |
|
|
|
public boolean doT2(int start, int end) { |
|
|
|
/* If there are no jumps to the beginning of this flow block |
|
|
|
/* If there are no jumps to the beginning of this flow block |
|
|
|
* or if this block has other predecessors with a higher |
|
|
|
* or if this block has other predecessors with a higher |
|
|
@ -806,18 +801,7 @@ public class FlowBlock { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Update the in/out-Vectors now */ |
|
|
|
/* Update the in/out-Vectors now */ |
|
|
|
updateInOut(this, false); |
|
|
|
updateInOut(this, false); |
|
|
@ -922,18 +906,7 @@ public class FlowBlock { |
|
|
|
predecessors.removeElement(this); |
|
|
|
predecessors.removeElement(this); |
|
|
|
|
|
|
|
|
|
|
|
/* T2 analysis succeeded */ |
|
|
|
/* T2 analysis succeeded */ |
|
|
|
try { |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
return true; |
|
|
|
} |
|
|
|
} |
|
|
@ -943,18 +916,7 @@ public class FlowBlock { |
|
|
|
* Do a T1 transformation with the end_of_method block. |
|
|
|
* Do a T1 transformation with the end_of_method block. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
public void mergeEndBlock() { |
|
|
|
public void mergeEndBlock() { |
|
|
|
try{ |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* First find the innermost block that contains all jumps to the |
|
|
|
/* First find the innermost block that contains all jumps to the |
|
|
|
* END_OF_METHOD block. |
|
|
|
* END_OF_METHOD block. |
|
|
@ -1032,18 +994,7 @@ public class FlowBlock { |
|
|
|
appendBlock.removeJump(); |
|
|
|
appendBlock.removeJump(); |
|
|
|
|
|
|
|
|
|
|
|
/* transformation succeeded */ |
|
|
|
/* transformation succeeded */ |
|
|
|
try { |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
|
} catch (RuntimeException ex) { |
|
|
|
|
|
|
|
ex.printStackTrace(); |
|
|
|
|
|
|
|
try { |
|
|
|
|
|
|
|
jode.TabbedPrintWriter writer = |
|
|
|
|
|
|
|
new jode.TabbedPrintWriter(System.err, " "); |
|
|
|
|
|
|
|
writer.tab(); |
|
|
|
|
|
|
|
block.dumpSource(writer); |
|
|
|
|
|
|
|
} catch (java.io.IOException ioex) { |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
@ -1161,14 +1112,22 @@ public class FlowBlock { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
return changed; |
|
|
|
return changed; |
|
|
|
} else { |
|
|
|
} else { |
|
|
|
if (succ.block instanceof RawTryCatchBlock) { |
|
|
|
|
|
|
|
int subStart = succ.addr; |
|
|
|
|
|
|
|
int subEnd = (subStart > addr)? end : addr; |
|
|
|
|
|
|
|
succ.analyze(subStart, subEnd); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/* Only do T1 transformation if the blocks are |
|
|
|
/* Only do T1 transformation if the blocks are |
|
|
|
* adjacent. */ |
|
|
|
* adjacent. */ |
|
|
|
if ((succ.addr == addr+length |
|
|
|
if (succ.block instanceof SwitchBlock) { |
|
|
|
|
|
|
|
/* analyze succ, the new region is the |
|
|
|
|
|
|
|
* continous region of |
|
|
|
|
|
|
|
* [start,end) \cap \compl [addr, addr+length) |
|
|
|
|
|
|
|
* where succ.addr lies in. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
int newStart = (succ.addr > addr) |
|
|
|
|
|
|
|
? addr+length : start; |
|
|
|
|
|
|
|
int newEnd = (succ.addr > addr) |
|
|
|
|
|
|
|
? end : addr; |
|
|
|
|
|
|
|
if (succ.analyzeSwitch(newStart, newEnd)) |
|
|
|
|
|
|
|
break; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} if ((succ.addr == addr+length |
|
|
|
|| succ.addr+succ.length == addr) |
|
|
|
|| succ.addr+succ.length == addr) |
|
|
|
&& doT1(succ)) { |
|
|
|
&& doT1(succ)) { |
|
|
|
/* T1 transformation succeeded. */ |
|
|
|
/* T1 transformation succeeded. */ |
|
|
@ -1206,6 +1165,81 @@ public class FlowBlock { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* The switch analyzation. This calls doSwitchT1 and doT2 on apropriate |
|
|
|
|
|
|
|
* regions. Only blocks whose address lies in the given address |
|
|
|
|
|
|
|
* range are considered and it is taken care of, that the switch |
|
|
|
|
|
|
|
* is never leaved. <p> |
|
|
|
|
|
|
|
* The current flow block must contain the switch block as main |
|
|
|
|
|
|
|
* block. |
|
|
|
|
|
|
|
* @param start the start of the address range. |
|
|
|
|
|
|
|
* @param end the end of the address range. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
public boolean analyzeSwitch(int start, int end) { |
|
|
|
|
|
|
|
SwitchBlock switchBlock = (SwitchBlock) block; |
|
|
|
|
|
|
|
boolean changed = false; |
|
|
|
|
|
|
|
StructuredBlock lastBlock = null; |
|
|
|
|
|
|
|
lastModified = block; |
|
|
|
|
|
|
|
/* XXX - move to switchBlock??? */ |
|
|
|
|
|
|
|
for (int i=0; i < switchBlock.caseBlocks.length; i++) { |
|
|
|
|
|
|
|
if (switchBlock.caseBlocks[i].subBlock != null |
|
|
|
|
|
|
|
&& switchBlock.caseBlocks[i].subBlock.jump != null) { |
|
|
|
|
|
|
|
FlowBlock next = switchBlock.caseBlocks[i]. |
|
|
|
|
|
|
|
subBlock.jump.destination; |
|
|
|
|
|
|
|
if (next.addr >= end) |
|
|
|
|
|
|
|
return changed; |
|
|
|
|
|
|
|
else if (next.addr >= start) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* First analyze the next block. */ |
|
|
|
|
|
|
|
changed = next.analyze(next.addr, end) || changed; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Check if next has only the previous case |
|
|
|
|
|
|
|
* and this case as predecessor. Otherwise |
|
|
|
|
|
|
|
* break the analysis. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (next.predecessors.size() != 1 |
|
|
|
|
|
|
|
|| next.predecessors.elementAt(0) != this) |
|
|
|
|
|
|
|
return changed; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
boolean lastContains = false; |
|
|
|
|
|
|
|
for (int j=0; j<successors.size(); j++) { |
|
|
|
|
|
|
|
Jump jump = (Jump) successors.elementAt(j); |
|
|
|
|
|
|
|
if (jump != null && jump.destination == next |
|
|
|
|
|
|
|
&& jump != |
|
|
|
|
|
|
|
switchBlock.caseBlocks[i].subBlock.jump) { |
|
|
|
|
|
|
|
if (lastBlock != null |
|
|
|
|
|
|
|
&& lastBlock.contains(jump.prev)) |
|
|
|
|
|
|
|
lastContains = true; |
|
|
|
|
|
|
|
else |
|
|
|
|
|
|
|
return changed; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
updateInOut(next, true); |
|
|
|
|
|
|
|
switchBlock.caseBlocks[i].subBlock.removeJump(); |
|
|
|
|
|
|
|
next.block.replace(switchBlock.caseBlocks[i].subBlock, |
|
|
|
|
|
|
|
null); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
mergeSuccessors(next); |
|
|
|
|
|
|
|
if (lastContains) { |
|
|
|
|
|
|
|
lastBlock = optimizeJumps(next, lastBlock); |
|
|
|
|
|
|
|
lastBlock = resolveRemaining(next, lastBlock); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Set addr+length to (semi-)correct value */ |
|
|
|
|
|
|
|
if (next.addr < addr) |
|
|
|
|
|
|
|
addr = next.addr; |
|
|
|
|
|
|
|
length += next.length; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
lastBlock = next.block; |
|
|
|
|
|
|
|
checkConsistent(); |
|
|
|
|
|
|
|
changed = true; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
return changed; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Resolves the destinations of all jumps. |
|
|
|
* Resolves the destinations of all jumps. |
|
|
|