|
|
@ -71,7 +71,9 @@ public class FlowBlock { |
|
|
|
StructuredBlock block; |
|
|
|
StructuredBlock block; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* The last modified structured block. |
|
|
|
* The last modified structured block. This is probably the |
|
|
|
|
|
|
|
* last instruction in the outermost block, that is in the |
|
|
|
|
|
|
|
* outermost chain of SequentialBlock. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
StructuredBlock lastModified; |
|
|
|
StructuredBlock lastModified; |
|
|
|
|
|
|
|
|
|
|
@ -132,36 +134,6 @@ public class FlowBlock { |
|
|
|
|
|
|
|
|
|
|
|
FlowBlock successor = jump.destination; |
|
|
|
FlowBlock successor = jump.destination; |
|
|
|
|
|
|
|
|
|
|
|
if (jump.prev instanceof EmptyBlock |
|
|
|
|
|
|
|
&& jump.prev.outer != null |
|
|
|
|
|
|
|
&& jump.prev.outer instanceof ConditionalBlock |
|
|
|
|
|
|
|
&& jump.prev.outer.jump != null) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jump.prev.outer.jump.destination == jump.destination) { |
|
|
|
|
|
|
|
/* This is a weired "if (cond) empty"-block. We |
|
|
|
|
|
|
|
* transform it by hand. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
jump.prev.removeJump(); |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Swap conditional blocks, that have two jumps, and where |
|
|
|
|
|
|
|
* this jump is the inner jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
StructuredBlock prev = jump.prev; |
|
|
|
|
|
|
|
ConditionalBlock cb = (ConditionalBlock) prev.outer; |
|
|
|
|
|
|
|
Instruction instr = cb.getInstruction(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* XXX Expression clean up is necessary. Otherwise |
|
|
|
|
|
|
|
* this may lead to a ClassCastException. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Our code below _depends_ on the fact that this |
|
|
|
|
|
|
|
* transformation is done. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
cb.setInstruction(((Expression)instr).negate()); |
|
|
|
|
|
|
|
cb.swapJump(jump.prev); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* if the jump is the jump of the appendBlock, skip it. |
|
|
|
/* if the jump is the jump of the appendBlock, skip it. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
if (jump.prev == appendBlock) { |
|
|
|
if (jump.prev == appendBlock) { |
|
|
@ -169,24 +141,9 @@ public class FlowBlock { |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/* Now move the jump as far to the outer as possible, |
|
|
|
/* jump.prev.outer is not null since appendBlock is an |
|
|
|
* without leaving appendBlock. |
|
|
|
* outer block. |
|
|
|
* |
|
|
|
*/ |
|
|
|
* Note: jump.prev != appendblock implies |
|
|
|
|
|
|
|
* jump.prev.outer != null, since appendBlock is an outer |
|
|
|
|
|
|
|
* block of jump.prev |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
while (jump.prev.outer.isSingleExit(jump.prev)) { |
|
|
|
|
|
|
|
if (jump.prev.outer == appendBlock) { |
|
|
|
|
|
|
|
/* Okay we have reached the top. |
|
|
|
|
|
|
|
* appendBlock should already have the right jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
jump.prev.removeJump(); |
|
|
|
|
|
|
|
continue next_jump; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
/* this changed jump.prev */ |
|
|
|
|
|
|
|
jump.prev.outer.moveJump(jump); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* remove this jump if it jumps to the getNextFlowBlock(). |
|
|
|
/* remove this jump if it jumps to the getNextFlowBlock(). |
|
|
|
*/ |
|
|
|
*/ |
|
|
@ -196,123 +153,102 @@ public class FlowBlock { |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
if (jump.prev instanceof EmptyBlock && |
|
|
|
if (jump.prev.outer instanceof ConditionalBlock) { |
|
|
|
jump.prev.outer instanceof ConditionalBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StructuredBlock prev = jump.prev; |
|
|
|
if (jump.prev.outer.jump != null) { |
|
|
|
ConditionalBlock cb = (ConditionalBlock) prev.outer; |
|
|
|
|
|
|
|
Instruction instr = cb.getInstruction(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* cb.jump is null (see above), so cb must have a |
|
|
|
StructuredBlock prev = jump.prev; |
|
|
|
* successor in this block, that means cb.outer is not |
|
|
|
ConditionalBlock cb = (ConditionalBlock) prev.outer; |
|
|
|
* null. |
|
|
|
Expression instr = cb.getInstruction(); |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
if (cb.jump.destination == jump.destination) { |
|
|
|
|
|
|
|
/* This is a weired "if (cond) empty"-block. We |
|
|
|
|
|
|
|
* transform it by hand. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
prev.removeJump(); |
|
|
|
|
|
|
|
IfThenElseBlock ifBlock = |
|
|
|
|
|
|
|
new IfThenElseBlock(cb.getInstruction()); |
|
|
|
|
|
|
|
ifBlock.replace(cb, prev); |
|
|
|
|
|
|
|
ifBlock.setThenBlock(prev); |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Swap conditional blocks, that have two jumps, and where |
|
|
|
|
|
|
|
* this jump is the inner jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
cb.setInstruction(instr.negate()); |
|
|
|
|
|
|
|
cb.swapJump(jump.prev); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Consider this jump again |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
jumps.push(jump); |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Now cb.jump is null and cb.outer is not null, |
|
|
|
|
|
|
|
* since appendBlock is around it. */ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ConditionalBlock cb = (ConditionalBlock) jump.prev.outer; |
|
|
|
|
|
|
|
Expression instr = cb.getInstruction(); |
|
|
|
|
|
|
|
|
|
|
|
/* If this is the first instruction of a while and the |
|
|
|
/* If this is the first instruction of a while and the |
|
|
|
* condition of the while is true, use the condition |
|
|
|
* condition of the while is true, use the condition |
|
|
|
* as while condition. |
|
|
|
* as while condition. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
if (cb.outer instanceof LoopBlock |
|
|
|
|
|
|
|
|| (cb.outer instanceof SequentialBlock |
|
|
|
|
|
|
|
&& cb.outer.getSubBlocks()[0] == cb |
|
|
|
|
|
|
|
&& cb.outer.outer instanceof LoopBlock)) { |
|
|
|
|
|
|
|
|
|
|
|
/* This is the first instruction in a while block */ |
|
|
|
LoopBlock loopBlock = (cb.outer instanceof LoopBlock) ? |
|
|
|
if (cb.outer instanceof SequentialBlock && |
|
|
|
(LoopBlock) cb.outer : (LoopBlock) cb.outer.outer; |
|
|
|
cb.outer.getSubBlocks()[0] == cb && |
|
|
|
|
|
|
|
cb.outer.outer instanceof LoopBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LoopBlock loopBlock = (LoopBlock) cb.outer.outer; |
|
|
|
|
|
|
|
if (loopBlock.getCondition() == LoopBlock.TRUE && |
|
|
|
if (loopBlock.getCondition() == LoopBlock.TRUE && |
|
|
|
loopBlock.getType() != LoopBlock.DOWHILE && |
|
|
|
loopBlock.getType() != LoopBlock.DOWHILE && |
|
|
|
loopBlock.getNextFlowBlock() == successor && |
|
|
|
loopBlock.getNextFlowBlock() == successor) { |
|
|
|
/*XXX remove following after expression cleanup */ |
|
|
|
|
|
|
|
instr instanceof Expression) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev.removeJump(); |
|
|
|
jump.prev.removeJump(); |
|
|
|
loopBlock.setCondition(((Expression)instr).negate()); |
|
|
|
loopBlock.setCondition(instr.negate()); |
|
|
|
loopBlock.moveDefinitions(cb, null); |
|
|
|
loopBlock.moveDefinitions(cb, null); |
|
|
|
|
|
|
|
|
|
|
|
/* Now remove the whole ConditionalBlock including |
|
|
|
cb.removeBlock(); |
|
|
|
* the surrounding SequentialBlock. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (cb.outer.jump != null) { |
|
|
|
|
|
|
|
/* Well can this happen??? |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Currently a sequential block can only |
|
|
|
|
|
|
|
* temporarily have a jump (assigned in |
|
|
|
|
|
|
|
* this method, see above). |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* But in any case we know, that the |
|
|
|
|
|
|
|
* second sub block can't have a jump, so |
|
|
|
|
|
|
|
* it takes the jump of its parent. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
cb.outer.getSubBlocks()[1]. |
|
|
|
|
|
|
|
moveJump(cb.outer.jump); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
cb.outer.getSubBlocks()[1].replace |
|
|
|
|
|
|
|
(cb.outer, cb.outer.getSubBlocks()[1]); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Note that cb.outer != appendBlock because |
|
|
|
/* Note that cb.outer != appendBlock because |
|
|
|
* appendBlock contains loopBlock. This is |
|
|
|
* appendBlock contains loopBlock. This is |
|
|
|
* because lastModified can't be an |
|
|
|
* because lastModified is in the outermost |
|
|
|
* instruction inside a loop block. |
|
|
|
* block. |
|
|
|
* |
|
|
|
|
|
|
|
* XXX I have to make a clear precondition for this. |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Now the same for the empty loop. In this case there is |
|
|
|
|
|
|
|
* no sequential block, which simplifies the situation. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
else if (cb.outer instanceof LoopBlock) { |
|
|
|
|
|
|
|
LoopBlock loopBlock = (LoopBlock) cb.outer; |
|
|
|
|
|
|
|
if (loopBlock.getCondition() == LoopBlock.TRUE && |
|
|
|
|
|
|
|
loopBlock.getType() != LoopBlock.DOWHILE && |
|
|
|
|
|
|
|
loopBlock.getNextFlowBlock() == successor && |
|
|
|
|
|
|
|
instr instanceof Expression) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev.removeJump(); |
|
|
|
|
|
|
|
loopBlock.setCondition(((Expression)instr).negate()); |
|
|
|
|
|
|
|
loopBlock.moveDefinitions(cb, null); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
EmptyBlock empty = new EmptyBlock(); |
|
|
|
|
|
|
|
empty.replace(cb, null); |
|
|
|
|
|
|
|
/* cb is not used any more */ |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} else if (cb.outer instanceof SequentialBlock |
|
|
|
} else if (cb.outer instanceof SequentialBlock |
|
|
|
&& cb.outer.getSubBlocks()[1] == cb) { |
|
|
|
&& cb.outer.getSubBlocks()[1] == cb) { |
|
|
|
|
|
|
|
|
|
|
|
/* And a third time for do/while loops, where the jump |
|
|
|
/* And now for do/while loops, where the jump is |
|
|
|
* is at the end of the loop. Note that all ifs are |
|
|
|
* at the end of the loop. |
|
|
|
* disjunct. |
|
|
|
|
|
|
|
*/ |
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
/* First find the beginning of the loop */ |
|
|
|
/* First find the beginning of the loop */ |
|
|
|
StructuredBlock sb = cb.outer; |
|
|
|
StructuredBlock sb = cb.outer.outer; |
|
|
|
while (sb.outer instanceof SequentialBlock) { |
|
|
|
while (sb instanceof SequentialBlock) { |
|
|
|
sb = sb.outer; |
|
|
|
sb = sb.outer; |
|
|
|
} |
|
|
|
} |
|
|
|
/* sb is now the first and cb is the last |
|
|
|
/* sb is now the first and cb is the last |
|
|
|
* instruction in the current block. |
|
|
|
* instruction in the current block. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
if (sb.outer instanceof LoopBlock) { |
|
|
|
if (sb instanceof LoopBlock) { |
|
|
|
LoopBlock loopBlock = (LoopBlock) sb.outer; |
|
|
|
LoopBlock loopBlock = (LoopBlock) sb; |
|
|
|
if (loopBlock.getCondition() == LoopBlock.TRUE && |
|
|
|
if (loopBlock.getCondition() == LoopBlock.TRUE && |
|
|
|
loopBlock.getType() == LoopBlock.WHILE && |
|
|
|
loopBlock.getType() == LoopBlock.WHILE && |
|
|
|
loopBlock.getNextFlowBlock() == successor && |
|
|
|
loopBlock.getNextFlowBlock() == successor) { |
|
|
|
instr instanceof Expression) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev.removeJump(); |
|
|
|
jump.prev.removeJump(); |
|
|
|
loopBlock.setType(LoopBlock.DOWHILE); |
|
|
|
loopBlock.setType(LoopBlock.DOWHILE); |
|
|
|
loopBlock.setCondition(((Expression)instr).negate()); |
|
|
|
loopBlock.setCondition(instr.negate()); |
|
|
|
loopBlock.moveDefinitions(cb, null); |
|
|
|
loopBlock.moveDefinitions(cb, null); |
|
|
|
|
|
|
|
|
|
|
|
/* We pretend here that cb.outer has no jump. |
|
|
|
cb.removeBlock(); |
|
|
|
* (Note that cb.outer is a sequential block) |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
cb.outer.getSubBlocks()[0].replace(cb.outer, |
|
|
|
|
|
|
|
cb.outer); |
|
|
|
|
|
|
|
/* cb and cb.outer are not used any more */ |
|
|
|
|
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -325,79 +261,80 @@ public class FlowBlock { |
|
|
|
if (cb.outer instanceof SequentialBlock && |
|
|
|
if (cb.outer instanceof SequentialBlock && |
|
|
|
cb.outer.getSubBlocks()[0] == cb && |
|
|
|
cb.outer.getSubBlocks()[0] == cb && |
|
|
|
(cb.outer.getNextFlowBlock() == successor || |
|
|
|
(cb.outer.getNextFlowBlock() == successor || |
|
|
|
cb.outer.jumpMayBeChanged()) && |
|
|
|
cb.outer.jumpMayBeChanged())) { |
|
|
|
instr instanceof Expression) { |
|
|
|
|
|
|
|
SequentialBlock sequBlock = |
|
|
|
SequentialBlock sequBlock = |
|
|
|
(SequentialBlock) cb.outer; |
|
|
|
(SequentialBlock) cb.outer; |
|
|
|
|
|
|
|
|
|
|
|
IfThenElseBlock newIfBlock = |
|
|
|
IfThenElseBlock newIfBlock = |
|
|
|
new IfThenElseBlock(((Expression)instr).negate()); |
|
|
|
new IfThenElseBlock(instr.negate()); |
|
|
|
|
|
|
|
|
|
|
|
newIfBlock.replace(sequBlock, sequBlock.getSubBlocks()[1]); |
|
|
|
newIfBlock.replace(sequBlock, sequBlock.getSubBlocks()[1]); |
|
|
|
newIfBlock.setThenBlock(sequBlock.getSubBlocks()[1]); |
|
|
|
newIfBlock.setThenBlock(sequBlock.getSubBlocks()[1]); |
|
|
|
|
|
|
|
|
|
|
|
newIfBlock.moveJump(sequBlock.jump); |
|
|
|
|
|
|
|
if (appendBlock == sequBlock) |
|
|
|
|
|
|
|
appendBlock = newIfBlock; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (newIfBlock.getNextFlowBlock() != successor && |
|
|
|
if (appendBlock == sequBlock) { |
|
|
|
newIfBlock != appendBlock) { |
|
|
|
newIfBlock.moveJump(appendBlock.jump); |
|
|
|
|
|
|
|
appendBlock = newIfBlock; |
|
|
|
|
|
|
|
jump.prev.removeJump(); |
|
|
|
|
|
|
|
} else { |
|
|
|
newIfBlock.moveJump(jump); |
|
|
|
newIfBlock.moveJump(jump); |
|
|
|
/* consider this jump again */ |
|
|
|
/* consider this jump again */ |
|
|
|
jumps.push(jump); |
|
|
|
jumps.push(jump); |
|
|
|
continue; |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
prev.removeJump(); |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} else { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Now find the real outer block, that is ascend the chain |
|
|
|
|
|
|
|
* of SequentialBlocks. But don't leave appendBlock. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Note that only the last instr in a SequentialBlock chain |
|
|
|
|
|
|
|
* can have a jump. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Note further, that jump.prev must be a inner block, since |
|
|
|
|
|
|
|
* otherwise its normal flow block is that of appendBlock, |
|
|
|
|
|
|
|
* and appendblocks successor must be the destination, since |
|
|
|
|
|
|
|
* it is then a sequential block. |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Yes, I know this data structure is quite subtile. But |
|
|
|
|
|
|
|
* that's why the function checkConsistent exists. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
StructuredBlock sb = jump.prev.outer; |
|
|
|
|
|
|
|
while (sb instanceof SequentialBlock) |
|
|
|
|
|
|
|
sb = sb.outer; |
|
|
|
|
|
|
|
|
|
|
|
/* if this is a jumps at the end of a then block belonging |
|
|
|
|
|
|
|
* to a if-then block without else part, and the if-then |
|
|
|
|
|
|
|
* block is followed by a single block, then replace the |
|
|
|
|
|
|
|
* if-then block with a if-then-else block and remove the |
|
|
|
|
|
|
|
* unconditional jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
else if (jump.prev.outer instanceof IfThenElseBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
IfThenElseBlock ifBlock = |
|
|
|
|
|
|
|
(IfThenElseBlock)jump.prev.outer; |
|
|
|
|
|
|
|
if (ifBlock.elseBlock == null |
|
|
|
|
|
|
|
&& ifBlock.outer instanceof SequentialBlock |
|
|
|
|
|
|
|
&& ifBlock.outer.getSubBlocks()[0] == ifBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StructuredBlock elseBlock = |
|
|
|
|
|
|
|
ifBlock.outer.getSubBlocks()[1]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (ifBlock.outer.jump != null) |
|
|
|
|
|
|
|
/* If the sequential block has a jump, we |
|
|
|
|
|
|
|
* move it to the else block. |
|
|
|
|
|
|
|
* Note that only one of these blocks can |
|
|
|
|
|
|
|
* have a jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
elseBlock.moveJump(ifBlock.outer.jump); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (elseBlock.getNextFlowBlock() == successor |
|
|
|
/* if this is a jumps at the end of a then block belonging |
|
|
|
|| elseBlock.jumpMayBeChanged()) { |
|
|
|
* to a if-then block without else part, and the if-then |
|
|
|
|
|
|
|
* block is followed by a single block, then replace the |
|
|
|
|
|
|
|
* if-then block with a if-then-else block and remove the |
|
|
|
|
|
|
|
* unconditional jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
if (sb instanceof IfThenElseBlock |
|
|
|
|
|
|
|
&& sb.outer instanceof SequentialBlock |
|
|
|
|
|
|
|
&& sb.outer.getSubBlocks()[0] == sb) { |
|
|
|
|
|
|
|
|
|
|
|
if (appendBlock == elseBlock.outer) |
|
|
|
IfThenElseBlock ifBlock = (IfThenElseBlock) sb; |
|
|
|
appendBlock = ifBlock; |
|
|
|
SequentialBlock sequBlock = (SequentialBlock) sb.outer; |
|
|
|
|
|
|
|
StructuredBlock elseBlock = sequBlock.subBlocks[1]; |
|
|
|
|
|
|
|
|
|
|
|
ifBlock.replace(ifBlock.outer, elseBlock); |
|
|
|
if (ifBlock.elseBlock == null |
|
|
|
if (elseBlock.jump != null) |
|
|
|
&& (elseBlock.getNextFlowBlock() == successor |
|
|
|
ifBlock.moveJump(elseBlock.jump); |
|
|
|
|| elseBlock.jumpMayBeChanged())) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ifBlock.replace(sequBlock, elseBlock); |
|
|
|
ifBlock.setElseBlock(elseBlock); |
|
|
|
ifBlock.setElseBlock(elseBlock); |
|
|
|
|
|
|
|
|
|
|
|
if (ifBlock.getNextFlowBlock() != successor) { |
|
|
|
if (appendBlock == sequBlock) { |
|
|
|
ifBlock.moveJump(jump); |
|
|
|
ifBlock.moveJump(appendBlock.jump); |
|
|
|
|
|
|
|
appendBlock = ifBlock; |
|
|
|
|
|
|
|
jump.prev.removeJump(); |
|
|
|
|
|
|
|
} else { |
|
|
|
/* consider this jump again */ |
|
|
|
/* consider this jump again */ |
|
|
|
|
|
|
|
ifBlock.moveJump(jump); |
|
|
|
jumps.push(jump); |
|
|
|
jumps.push(jump); |
|
|
|
} else |
|
|
|
} |
|
|
|
jump.prev.removeJump(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
continue; |
|
|
|
continue; |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
@ -586,60 +523,77 @@ public class FlowBlock { |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
|
|
|
|
* Checks if the FlowBlock and its StructuredBlocks are |
|
|
|
|
|
|
|
* consistent. There are to many conditions to list them |
|
|
|
|
|
|
|
* here, the best way is to read this function and all other |
|
|
|
|
|
|
|
* checkConsistent functions. |
|
|
|
|
|
|
|
*/ |
|
|
|
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 AssertError("Inconsistency"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
block.checkConsistent(); |
|
|
|
|
|
|
|
Enumeration preds = predecessors.elements(); |
|
|
|
|
|
|
|
while (preds.hasMoreElements()) { |
|
|
|
|
|
|
|
FlowBlock pred = (FlowBlock)preds.nextElement(); |
|
|
|
|
|
|
|
if (pred == null) |
|
|
|
|
|
|
|
/* The special start marker */ |
|
|
|
|
|
|
|
continue; |
|
|
|
|
|
|
|
if (pred.successors.get(this) == null) |
|
|
|
|
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
block.checkConsistent(); |
|
|
|
|
|
|
|
|
|
|
|
Enumeration keys = successors.keys(); |
|
|
|
Enumeration preds = predecessors.elements(); |
|
|
|
Enumeration stacks = successors.elements(); |
|
|
|
while (preds.hasMoreElements()) { |
|
|
|
while (keys.hasMoreElements()) { |
|
|
|
FlowBlock pred = (FlowBlock)preds.nextElement(); |
|
|
|
FlowBlock dest = (FlowBlock) keys.nextElement(); |
|
|
|
if (pred == null) |
|
|
|
if (!dest.predecessors.contains(this)) |
|
|
|
/* The special start marker */ |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
continue; |
|
|
|
|
|
|
|
if (pred.successors.get(this) == null) |
|
|
|
|
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Enumeration enum = ((Stack)stacks.nextElement()).elements(); |
|
|
|
StructuredBlock last = lastModified; |
|
|
|
if (!enum.hasMoreElements()) |
|
|
|
while (last.outer instanceof SequentialBlock) |
|
|
|
|
|
|
|
last = last.outer; |
|
|
|
|
|
|
|
if (last.outer != null) |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
|
|
|
|
while (enum.hasMoreElements()) { |
|
|
|
Enumeration keys = successors.keys(); |
|
|
|
Jump jump = (Jump) enum.nextElement(); |
|
|
|
Enumeration stacks = successors.elements(); |
|
|
|
|
|
|
|
while (keys.hasMoreElements()) { |
|
|
|
|
|
|
|
FlowBlock dest = (FlowBlock) keys.nextElement(); |
|
|
|
|
|
|
|
if (!dest.predecessors.contains(this)) |
|
|
|
|
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
|
|
|
|
if (jump.destination != dest) |
|
|
|
Enumeration enum = ((Stack)stacks.nextElement()).elements(); |
|
|
|
|
|
|
|
if (!enum.hasMoreElements()) |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
|
|
|
|
if (jump.prev.flowBlock != this || |
|
|
|
while (enum.hasMoreElements()) { |
|
|
|
jump.prev.jump != jump) |
|
|
|
Jump jump = (Jump) enum.nextElement(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jump.destination != dest) |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
|
|
|
|
prev_loop: |
|
|
|
if (jump.prev.flowBlock != this || |
|
|
|
for (StructuredBlock prev = jump.prev; prev != block; |
|
|
|
jump.prev.jump != jump) |
|
|
|
|
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev_loop: |
|
|
|
|
|
|
|
for (StructuredBlock prev = jump.prev; prev != block; |
|
|
|
prev = prev.outer) { |
|
|
|
prev = prev.outer) { |
|
|
|
if (prev.outer == null) |
|
|
|
if (prev.outer == null) |
|
|
|
throw new RuntimeException("Inconsistency"); |
|
|
|
throw new RuntimeException("Inconsistency"); |
|
|
|
StructuredBlock[] blocks = prev.outer.getSubBlocks(); |
|
|
|
StructuredBlock[] blocks = prev.outer.getSubBlocks(); |
|
|
|
int i; |
|
|
|
int i; |
|
|
|
for (i=0; i<blocks.length; i++) |
|
|
|
for (i=0; i<blocks.length; i++) |
|
|
|
if (blocks[i] == prev) |
|
|
|
if (blocks[i] == prev) |
|
|
|
continue prev_loop; |
|
|
|
continue prev_loop; |
|
|
|
|
|
|
|
|
|
|
|
throw new RuntimeException("Inconsistency"); |
|
|
|
throw new AssertError("Inconsistency"); |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
} |
|
|
|
// } catch (AssertError ex) {
|
|
|
|
|
|
|
|
// System.err.println("in: "+this);
|
|
|
|
|
|
|
|
// throw ex;
|
|
|
|
|
|
|
|
// }
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
@ -743,12 +697,12 @@ public class FlowBlock { |
|
|
|
|
|
|
|
|
|
|
|
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 not yet |
|
|
|
* address, return false. The second condition make sure that |
|
|
|
* considered address, return false. The second condition |
|
|
|
* the while isn't created up to the first continue. */ |
|
|
|
* make sure that not for each continue a while is created. |
|
|
|
|
|
|
|
*/ |
|
|
|
if (!predecessors.contains(this)) |
|
|
|
if (!predecessors.contains(this)) |
|
|
|
return false; |
|
|
|
return false; |
|
|
|
|
|
|
|
|
|
|
|
Enumeration preds = predecessors.elements(); |
|
|
|
Enumeration preds = predecessors.elements(); |
|
|
|
while (preds.hasMoreElements()) { |
|
|
|
while (preds.hasMoreElements()) { |
|
|
|
FlowBlock predFlow = (FlowBlock) preds.nextElement(); |
|
|
|
FlowBlock predFlow = (FlowBlock) preds.nextElement(); |
|
|
@ -765,96 +719,81 @@ public class FlowBlock { |
|
|
|
/* Update the in/out-Vectors now */ |
|
|
|
/* Update the in/out-Vectors now */ |
|
|
|
updateInOut(this, false, jumps); |
|
|
|
updateInOut(this, false, jumps); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
StructuredBlock bodyBlock = block; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* If there is only one jump to the beginning and it is |
|
|
|
|
|
|
|
* the last jump (lastModified) and (there is a |
|
|
|
|
|
|
|
* do/while(0) block surrounding everything but the last |
|
|
|
|
|
|
|
* instruction, or the last instruction is a |
|
|
|
|
|
|
|
* increase/decrease statement), replace the do/while(0) |
|
|
|
|
|
|
|
* with a for(;;last_instr) resp. create a new one and |
|
|
|
|
|
|
|
* replace breaks to do/while with continue to for. */ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
boolean createdForBlock = false; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jumps.size() == 1 |
|
|
|
|
|
|
|
&& ((Jump)jumps.peek()).prev == lastModified |
|
|
|
|
|
|
|
&& lastModified instanceof InstructionBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Expression instr = |
|
|
|
|
|
|
|
((InstructionBlock)lastModified).getInstruction(); |
|
|
|
|
|
|
|
if (lastModified.outer instanceof SequentialBlock |
|
|
|
|
|
|
|
&& lastModified.outer.getSubBlocks()[0] |
|
|
|
|
|
|
|
instanceof LoopBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LoopBlock lb = |
|
|
|
|
|
|
|
(LoopBlock) lastModified.outer.getSubBlocks()[0]; |
|
|
|
|
|
|
|
if (lb.cond == lb.FALSE && lb.type == lb.DOWHILE) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The jump is directly following a |
|
|
|
|
|
|
|
* do-while(false) block |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Remove do/while, create a for(;;last_instr) |
|
|
|
|
|
|
|
* and replace break to that block with |
|
|
|
|
|
|
|
* continue to for. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
while (lastModified != block) |
|
|
|
LoopBlock forBlock = |
|
|
|
lastModified = lastModified.outer; |
|
|
|
new LoopBlock(LoopBlock.FOR, LoopBlock.TRUE); |
|
|
|
|
|
|
|
forBlock.replace(bodyBlock, bodyBlock); |
|
|
|
transformation: |
|
|
|
forBlock.setBody(bodyBlock); |
|
|
|
do { |
|
|
|
forBlock.incr = instr; |
|
|
|
/* If there is only one jump to the beginning and it is the |
|
|
|
lastModified.removeJump(); |
|
|
|
* last jump and (there is a do/while(0) block surrounding |
|
|
|
|
|
|
|
* everything but the last instruction, or the last |
|
|
|
|
|
|
|
* instruction is a increase/decrease statement), replace the |
|
|
|
|
|
|
|
* do/while(0) with a for(;;last_instr) resp. create a new one |
|
|
|
|
|
|
|
* and replace breaks to do/while with continue to for. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (jumps.size() == 1 && |
|
|
|
|
|
|
|
((Jump)jumps.peek()).prev instanceof InstructionBlock) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
InstructionBlock prev = |
|
|
|
|
|
|
|
(InstructionBlock) ((Jump)jumps.peek()).prev; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Now check if the jump is the last block in a chain |
|
|
|
|
|
|
|
* of SequentialBlocks that have no surrounding blocks. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
StructuredBlock sb = prev; |
|
|
|
|
|
|
|
while (sb.outer != null |
|
|
|
|
|
|
|
&& sb.outer instanceof SequentialBlock |
|
|
|
|
|
|
|
&& sb.outer.getSubBlocks()[1] == sb) |
|
|
|
|
|
|
|
sb = sb.outer; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (sb.outer == null && prev.outer != null |
|
|
|
|
|
|
|
&& prev.outer instanceof SequentialBlock |
|
|
|
|
|
|
|
&& prev.outer.getSubBlocks()[0] instanceof LoopBlock) { |
|
|
|
|
|
|
|
LoopBlock lb = (LoopBlock) prev.outer.getSubBlocks()[0]; |
|
|
|
|
|
|
|
if (lb.cond == lb.FALSE && lb.type == lb.DOWHILE) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The jump is directly following a |
|
|
|
|
|
|
|
* do-while(false) block |
|
|
|
|
|
|
|
* |
|
|
|
|
|
|
|
* Remove do/while, create a for(;;last_instr) |
|
|
|
|
|
|
|
* and replace break to that block with |
|
|
|
|
|
|
|
* continue to for. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
LoopBlock forBlock = |
|
|
|
|
|
|
|
new LoopBlock(LoopBlock.FOR, LoopBlock.TRUE); |
|
|
|
|
|
|
|
forBlock.replace(sb, sb); |
|
|
|
|
|
|
|
forBlock.setBody(sb); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev.outer.getSubBlocks()[0].replace(prev.outer, null); |
|
|
|
|
|
|
|
forBlock.incr = prev.getInstruction(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
forBlock.replaceBreakContinue(lb); |
|
|
|
|
|
|
|
lb.bodyBlock.replace(lb, null); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev.removeJump(); |
|
|
|
forBlock.replaceBreakContinue(lb); |
|
|
|
lastModified = lb; |
|
|
|
lb.bodyBlock.replace(lastModified.outer, null); |
|
|
|
break transformation; |
|
|
|
createdForBlock = true; |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
Instruction instr = prev.getInstruction(); |
|
|
|
} |
|
|
|
Operator op; |
|
|
|
|
|
|
|
if (sb.outer == null |
|
|
|
|
|
|
|
&& instr instanceof Expression |
|
|
|
|
|
|
|
&& ((op = ((Expression)instr).getOperator()) |
|
|
|
|
|
|
|
instanceof StoreInstruction |
|
|
|
|
|
|
|
|| op instanceof IIncOperator)) { |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* The only jump is the jump of the last |
|
|
|
if (!createdForBlock && |
|
|
|
* instruction prev */ |
|
|
|
(instr.getOperator() instanceof StoreInstruction |
|
|
|
|
|
|
|
|| instr.getOperator() instanceof IIncOperator)) { |
|
|
|
|
|
|
|
|
|
|
|
LoopBlock forBlock = |
|
|
|
/* The only jump is the jump of the last |
|
|
|
new LoopBlock(LoopBlock.FOR, LoopBlock.TRUE); |
|
|
|
* instruction lastModified */ |
|
|
|
forBlock.replace(sb, sb); |
|
|
|
|
|
|
|
forBlock.setBody(sb); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
prev.outer.getSubBlocks()[0].replace(prev.outer, null); |
|
|
|
LoopBlock forBlock = |
|
|
|
forBlock.incr = instr; |
|
|
|
new LoopBlock(LoopBlock.FOR, LoopBlock.TRUE); |
|
|
|
prev.removeJump(); |
|
|
|
forBlock.replace(bodyBlock, bodyBlock); |
|
|
|
lastModified = forBlock; |
|
|
|
forBlock.setBody(bodyBlock); |
|
|
|
break transformation; |
|
|
|
forBlock.incr = instr; |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
lastModified.removeJump(); |
|
|
|
|
|
|
|
lastModified.outer.getSubBlocks()[0] |
|
|
|
|
|
|
|
.replace(lastModified.outer, null); |
|
|
|
|
|
|
|
createdForBlock = true; |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (!createdForBlock) { |
|
|
|
/* Creating a for block didn't succeed; create a |
|
|
|
/* Creating a for block didn't succeed; create a |
|
|
|
* while block instead. */ |
|
|
|
* while block instead. */ |
|
|
|
StructuredBlock bodyBlock = block; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* Prepare the unification of the blocks: Make sure that |
|
|
|
/* Prepare the unification of the blocks: Make sure that |
|
|
|
* bodyBlock has a jump. */ |
|
|
|
* bodyBlock has a jump. |
|
|
|
|
|
|
|
*/ |
|
|
|
if (bodyBlock.jump == null) { |
|
|
|
if (bodyBlock.jump == null) { |
|
|
|
Jump jump = new Jump(this); |
|
|
|
Jump jump = new Jump(this); |
|
|
|
bodyBlock.setJump(jump); |
|
|
|
bodyBlock.setJump(jump); |
|
|
@ -911,13 +850,12 @@ public class FlowBlock { |
|
|
|
if (bodyBlock.jump != null |
|
|
|
if (bodyBlock.jump != null |
|
|
|
&& bodyBlock.jump.destination == this) |
|
|
|
&& bodyBlock.jump.destination == this) |
|
|
|
bodyBlock.removeJump(); |
|
|
|
bodyBlock.removeJump(); |
|
|
|
|
|
|
|
} |
|
|
|
lastModified = whileBlock; |
|
|
|
|
|
|
|
} while (false); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* remove ourself from the predecessor list. |
|
|
|
/* remove ourself from the predecessor list. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
predecessors.removeElement(this); |
|
|
|
predecessors.removeElement(this); |
|
|
|
|
|
|
|
lastModified = block; |
|
|
|
|
|
|
|
|
|
|
|
/* T2 analysis succeeded */ |
|
|
|
/* T2 analysis succeeded */ |
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
@ -1322,7 +1260,7 @@ public class FlowBlock { |
|
|
|
removeJSR(subRoutine); |
|
|
|
removeJSR(subRoutine); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public boolean isMonitorExit(Instruction instr, LocalInfo local) { |
|
|
|
public boolean isMonitorExit(Expression instr, LocalInfo local) { |
|
|
|
if (instr instanceof ComplexExpression) { |
|
|
|
if (instr instanceof ComplexExpression) { |
|
|
|
ComplexExpression expr = (ComplexExpression)instr; |
|
|
|
ComplexExpression expr = (ComplexExpression)instr; |
|
|
|
if (expr.getOperator() instanceof MonitorExitOperator |
|
|
|
if (expr.getOperator() instanceof MonitorExitOperator |
|
|
@ -1353,7 +1291,7 @@ public class FlowBlock { |
|
|
|
subRoutine.analyzeSubRoutine(addr+length, end); |
|
|
|
subRoutine.analyzeSubRoutine(addr+length, end); |
|
|
|
|
|
|
|
|
|
|
|
if (subRoutine.block instanceof InstructionBlock) { |
|
|
|
if (subRoutine.block instanceof InstructionBlock) { |
|
|
|
Instruction instr = |
|
|
|
Expression instr = |
|
|
|
((InstructionBlock)subRoutine.block) |
|
|
|
((InstructionBlock)subRoutine.block) |
|
|
|
.getInstruction(); |
|
|
|
.getInstruction(); |
|
|
|
if (isMonitorExit(instr, local)) { |
|
|
|
if (isMonitorExit(instr, local)) { |
|
|
@ -1403,7 +1341,7 @@ public class FlowBlock { |
|
|
|
continue; |
|
|
|
continue; |
|
|
|
|
|
|
|
|
|
|
|
if (pred instanceof InstructionBlock) { |
|
|
|
if (pred instanceof InstructionBlock) { |
|
|
|
Instruction instr = |
|
|
|
Expression instr = |
|
|
|
((InstructionBlock)pred).getInstruction(); |
|
|
|
((InstructionBlock)pred).getInstruction(); |
|
|
|
if (instr instanceof ComplexExpression |
|
|
|
if (instr instanceof ComplexExpression |
|
|
|
&& ((ComplexExpression)instr) |
|
|
|
&& ((ComplexExpression)instr) |
|
|
@ -1502,8 +1440,8 @@ public class FlowBlock { |
|
|
|
SequentialBlock catchBlock = (SequentialBlock) catchFlow.block; |
|
|
|
SequentialBlock catchBlock = (SequentialBlock) catchFlow.block; |
|
|
|
int type = 0; |
|
|
|
int type = 0; |
|
|
|
|
|
|
|
|
|
|
|
Instruction instr = |
|
|
|
Expression instr = |
|
|
|
((InstructionBlock)catchBlock.subBlocks[0]).instr; |
|
|
|
((InstructionBlock)catchBlock.subBlocks[0]).getInstruction(); |
|
|
|
|
|
|
|
|
|
|
|
if (instr instanceof ComplexExpression |
|
|
|
if (instr instanceof ComplexExpression |
|
|
|
&& ((ComplexExpression)instr).getOperator() |
|
|
|
&& ((ComplexExpression)instr).getOperator() |
|
|
@ -1621,8 +1559,10 @@ public class FlowBlock { |
|
|
|
changed = true; |
|
|
|
changed = true; |
|
|
|
} |
|
|
|
} |
|
|
|
} else if (catchFlow.block instanceof InstructionBlock |
|
|
|
} else if (catchFlow.block instanceof InstructionBlock |
|
|
|
&& ((InstructionBlock) catchFlow.block).instr |
|
|
|
&& ((InstructionBlock) catchFlow.block).getInstruction() |
|
|
|
instanceof PopOperator |
|
|
|
instanceof PopOperator |
|
|
|
|
|
|
|
&& ((PopOperator) ((InstructionBlock) catchFlow.block) |
|
|
|
|
|
|
|
.getInstruction()).getCount() == 1 |
|
|
|
&& successors.size() == 1) { |
|
|
|
&& successors.size() == 1) { |
|
|
|
|
|
|
|
|
|
|
|
/* This is a special try/finally-block, where |
|
|
|
/* This is a special try/finally-block, where |
|
|
@ -1630,12 +1570,14 @@ public class FlowBlock { |
|
|
|
* similar. |
|
|
|
* similar. |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
FlowBlock succ = catchFlow.block.jump.destination; |
|
|
|
FlowBlock succ = catchFlow.block.jump.destination; |
|
|
|
Stack jumps = (Stack) successors.get(succ); |
|
|
|
Stack jumps = (Stack) successors.remove(succ); |
|
|
|
Stack newJumps = new Stack(); |
|
|
|
updateInOut(succ, true, jumps); |
|
|
|
newJumps.push(catchFlow.block.jump); |
|
|
|
|
|
|
|
successors.put(succ, newJumps); |
|
|
|
Stack stack = new Stack(); |
|
|
|
jumps.removeElement(catchFlow.block.jump); |
|
|
|
stack.push(catchFlow.block.jump); |
|
|
|
|
|
|
|
successors.put(succ, stack); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
jumps.removeElement(catchFlow.block.jump); |
|
|
|
if (rawBlock.tryBlock.jump == null) { |
|
|
|
if (rawBlock.tryBlock.jump == null) { |
|
|
|
Jump jump = new Jump(succ); |
|
|
|
Jump jump = new Jump(succ); |
|
|
|
rawBlock.tryBlock.setJump(jump); |
|
|
|
rawBlock.tryBlock.setJump(jump); |
|
|
@ -1648,10 +1590,20 @@ public class FlowBlock { |
|
|
|
CatchFinallyBlock newBlock = new CatchFinallyBlock(); |
|
|
|
CatchFinallyBlock newBlock = new CatchFinallyBlock(); |
|
|
|
newBlock.replace(rawBlock, rawBlock); |
|
|
|
newBlock.replace(rawBlock, rawBlock); |
|
|
|
newBlock.setTryBlock(rawBlock.tryBlock); |
|
|
|
newBlock.setTryBlock(rawBlock.tryBlock); |
|
|
|
newBlock.setFinallyBlock(new EmptyBlock()); |
|
|
|
if (succ.predecessors.size() == 1) { |
|
|
|
newBlock.moveJump(rawBlock.jump); |
|
|
|
succ.analyze(addr+length, end); |
|
|
|
lastModified = newBlock.finallyBlock; |
|
|
|
length += succ.length; |
|
|
|
lastModified.moveJump(catchFlow.block.jump); |
|
|
|
successors.remove(succ); |
|
|
|
|
|
|
|
newBlock.setFinallyBlock(succ.block); |
|
|
|
|
|
|
|
mergeSuccessors(succ); |
|
|
|
|
|
|
|
} else { |
|
|
|
|
|
|
|
/* The finally block is empty, put the jump back |
|
|
|
|
|
|
|
* into the finally block. |
|
|
|
|
|
|
|
*/ |
|
|
|
|
|
|
|
newBlock.setFinallyBlock(new EmptyBlock()); |
|
|
|
|
|
|
|
newBlock.finallyBlock.moveJump(catchFlow.block.jump); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
lastModified = newBlock; |
|
|
|
changed = true; |
|
|
|
changed = true; |
|
|
|
} |
|
|
|
} |
|
|
|
checkConsistent(); |
|
|
|
checkConsistent(); |
|
|
@ -1667,8 +1619,7 @@ public class FlowBlock { |
|
|
|
/* throws ClassCastException if something isn't as exspected. */ |
|
|
|
/* throws ClassCastException if something isn't as exspected. */ |
|
|
|
SequentialBlock sequBlock = (SequentialBlock) block; |
|
|
|
SequentialBlock sequBlock = (SequentialBlock) block; |
|
|
|
LocalStoreOperator store = (LocalStoreOperator) |
|
|
|
LocalStoreOperator store = (LocalStoreOperator) |
|
|
|
((Expression)((InstructionBlock)sequBlock.subBlocks[0]).instr) |
|
|
|
((InstructionBlock)sequBlock.subBlocks[0]).instr.getOperator(); |
|
|
|
.getOperator(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
while (sequBlock.subBlocks[1] instanceof SequentialBlock) |
|
|
|
while (sequBlock.subBlocks[1] instanceof SequentialBlock) |
|
|
|
sequBlock = (SequentialBlock) sequBlock.subBlocks[1]; |
|
|
|
sequBlock = (SequentialBlock) sequBlock.subBlocks[1]; |
|
|
@ -1699,8 +1650,6 @@ public class FlowBlock { |
|
|
|
SwitchBlock switchBlock = (SwitchBlock) block; |
|
|
|
SwitchBlock switchBlock = (SwitchBlock) block; |
|
|
|
boolean changed = false; |
|
|
|
boolean changed = false; |
|
|
|
StructuredBlock lastBlock = null; |
|
|
|
StructuredBlock lastBlock = null; |
|
|
|
lastModified = block; |
|
|
|
|
|
|
|
/* XXX - move to switchBlock??? */ |
|
|
|
|
|
|
|
for (int i=0; i < switchBlock.caseBlocks.length; i++) { |
|
|
|
for (int i=0; i < switchBlock.caseBlocks.length; i++) { |
|
|
|
if (switchBlock.caseBlocks[i].subBlock != null |
|
|
|
if (switchBlock.caseBlocks[i].subBlock != null |
|
|
|
&& switchBlock.caseBlocks[i].subBlock.jump != null) { |
|
|
|
&& switchBlock.caseBlocks[i].subBlock.jump != null) { |
|
|
@ -1878,8 +1827,7 @@ public class FlowBlock { |
|
|
|
public String toString() { |
|
|
|
public String toString() { |
|
|
|
try { |
|
|
|
try { |
|
|
|
java.io.StringWriter strw = new java.io.StringWriter(); |
|
|
|
java.io.StringWriter strw = new java.io.StringWriter(); |
|
|
|
TabbedPrintWriter writer = |
|
|
|
TabbedPrintWriter writer = new TabbedPrintWriter(strw, " "); |
|
|
|
new TabbedPrintWriter(strw, " "); |
|
|
|
|
|
|
|
writer.println(super.toString()); |
|
|
|
writer.println(super.toString()); |
|
|
|
writer.tab(); |
|
|
|
writer.tab(); |
|
|
|
dumpSource(writer); |
|
|
|
dumpSource(writer); |
|
|
|