|
|
@ -24,6 +24,7 @@ import jode.LocalInfo; |
|
|
|
import jode.decompiler.Expression; |
|
|
|
import jode.decompiler.Expression; |
|
|
|
import jode.decompiler.ConstOperator; |
|
|
|
import jode.decompiler.ConstOperator; |
|
|
|
import jode.decompiler.LocalStoreOperator; |
|
|
|
import jode.decompiler.LocalStoreOperator; |
|
|
|
|
|
|
|
import jode.decompiler.CombineableOperator; |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* This is the structured block for an Loop block. |
|
|
|
* This is the structured block for an Loop block. |
|
|
@ -68,6 +69,23 @@ public class LoopBlock extends StructuredBlock implements BreakableBlock { |
|
|
|
*/ |
|
|
|
*/ |
|
|
|
StructuredBlock bodyBlock; |
|
|
|
StructuredBlock bodyBlock; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*{ invariant { type != POSSFOR || |
|
|
|
|
|
|
|
(incr != null |
|
|
|
|
|
|
|
&& incr.getInstruction().getOperator() |
|
|
|
|
|
|
|
instanceof CombineableOperator) |
|
|
|
|
|
|
|
:: "(possible) for with invalid init/incr"; |
|
|
|
|
|
|
|
init == null || |
|
|
|
|
|
|
|
(init.getInstruction().getOperator() |
|
|
|
|
|
|
|
instanceof CombinableOperator) |
|
|
|
|
|
|
|
:: "Initializer is not combinableOperator"; |
|
|
|
|
|
|
|
type == POSSFOR || type == FOR || |
|
|
|
|
|
|
|
(init == null && incr == null) |
|
|
|
|
|
|
|
:: "(while/do while) with init or incr"; |
|
|
|
|
|
|
|
cond != null && cond.getType() == Type.tBoolean |
|
|
|
|
|
|
|
:: "invalid condition type"; |
|
|
|
|
|
|
|
type != POSSFOR || bodyBlock.contains(incr) |
|
|
|
|
|
|
|
:: "incr is not in body of possible for" } }*/ |
|
|
|
|
|
|
|
|
|
|
|
/** |
|
|
|
/** |
|
|
|
* Returns the block where the control will normally flow to, when |
|
|
|
* Returns the block where the control will normally flow to, when |
|
|
|
* the given sub block is finished (<em>not</em> ignoring the jump |
|
|
|
* the given sub block is finished (<em>not</em> ignoring the jump |
|
|
@ -179,7 +197,7 @@ public class LoopBlock extends StructuredBlock implements BreakableBlock { |
|
|
|
public void dumpDeclaration(TabbedPrintWriter writer, LocalInfo local) |
|
|
|
public void dumpDeclaration(TabbedPrintWriter writer, LocalInfo local) |
|
|
|
throws java.io.IOException |
|
|
|
throws java.io.IOException |
|
|
|
{ |
|
|
|
{ |
|
|
|
if ((type == FOR || type == POSSFOR) && init != null |
|
|
|
if (type == FOR && init != null |
|
|
|
&& (outer == null || !outer.used.contains(local)) |
|
|
|
&& (outer == null || !outer.used.contains(local)) |
|
|
|
&& (init.getInstruction().getOperator() |
|
|
|
&& (init.getInstruction().getOperator() |
|
|
|
instanceof LocalStoreOperator) |
|
|
|
instanceof LocalStoreOperator) |
|
|
|