simplify() now in extra method

makeDeclaration handles declarations now, no need for dumpDeclaration
any more


git-svn-id: https://svn.code.sf.net/p/jode/code/trunk@635 379699f6-c40d-0410-875b-85095c16579e
stable
jochen 26 years ago
parent 692f12daed
commit 059b086ee8
  1. 59
      jode/jode/flow/InstructionBlock.java

@ -38,6 +38,12 @@ public class InstructionBlock extends InstructionContainer {
*/ */
LocalInfo pushedLocal = null; LocalInfo pushedLocal = null;
/**
* Tells if this expression is a initializing declaration. This
* can only be set to true and then never be reset. It is changed
* by makeDeclaration. */
boolean isDeclaration = false;
public InstructionBlock(Expression instr) { public InstructionBlock(Expression instr) {
super(instr); super(instr);
} }
@ -91,27 +97,31 @@ public class InstructionBlock extends InstructionContainer {
} }
/** /**
* True if this is a declaration. * Make the declarations, i.e. initialize the declare variable
* to correct values. This will declare every variable that
* is marked as used, but not done.
* @param done The set of the already declare variables.
*/ */
private boolean isDeclaration = false; public void makeDeclaration(VariableSet done) {
if (instr.getOperator() instanceof LocalStoreOperator) {
public void dumpDeclaration(TabbedPrintWriter writer, LocalInfo local) LocalInfo local =
throws java.io.IOException ((LocalStoreOperator) instr.getOperator()).getLocalInfo();
{ if (!done.contains(local)) {
if (instr instanceof ComplexExpression /* Special case: This is a variable assignment, and
&& instr.getOperator() instanceof LocalStoreOperator * the variable has not been declared before. We can
&& ((LocalStoreOperator) instr.getOperator()).getLocalInfo() * change this to a initializing variable declaration.
== local.getLocalInfo()) { */
isDeclaration = true; isDeclaration = true;
} else if (instr instanceof ComplexExpression)
super.dumpDeclaration(writer, local); ((ComplexExpression) instr)
} .getSubExpressions()[0].makeInitializer();
done.addElement(local);
public void dumpSource(TabbedPrintWriter writer) super.makeDeclaration(done);
throws java.io.IOException done.removeElement(local);
{ return;
isDeclaration = false; }
super.dumpSource(writer); }
super.makeDeclaration(done);
} }
public void dumpInstruction(TabbedPrintWriter writer) public void dumpInstruction(TabbedPrintWriter writer)
@ -120,16 +130,11 @@ public class InstructionBlock extends InstructionContainer {
if (isDeclaration) { if (isDeclaration) {
LocalInfo local = ((LocalStoreOperator) instr.getOperator()) LocalInfo local = ((LocalStoreOperator) instr.getOperator())
.getLocalInfo(); .getLocalInfo();
Expression expr = writer.println(local.getType().getHint() + " " + instr);
((ComplexExpression) instr).getSubExpressions()[0];
expr.makeInitializer();
writer.println(local.getType().getHint() + " "
+ local.getName() + " = "
+ expr.simplify().toString() + ";");
} else { } else {
if (instr.getType() != Type.tVoid) if (instr.getType() != Type.tVoid)
writer.print("PUSH "); writer.print("PUSH ");
writer.println(instr.simplify().toString()+";"); writer.println(instr.toString()+";");
} }
} }
} }

Loading…
Cancel
Save