?? unary.java
字號:
package AST;
import java.util.HashSet;import java.util.LinkedHashSet;import java.io.FileNotFoundException;import java.io.File;import java.util.*;import beaver.*;import java.util.ArrayList;import java.util.zip.*;import java.io.*;public abstract class Unary extends Expr implements Cloneable {
public void flushCache() { super.flushCache(); type_computed = false; type_value = null; } @SuppressWarnings({"unchecked", "cast"}) public Unary clone() throws CloneNotSupportedException { Unary node = (Unary)super.clone(); node.type_computed = false; node.type_value = null; node.in$Circle(false); node.is$Final(false); return node; } // Declared in PrettyPrint.jadd at line 382 // Pre and post operations for unary expression public void toString(StringBuffer s) { s.append(printPreOp()); getOperand().toString(s); s.append(printPostOp()); } // Declared in CreateBCode.jrag at line 815 // T_LONG public void createBCode(CodeGeneration gen) { super.createBCode(gen); emitOperation(gen); } // Declared in CreateBCode.jrag at line 827 // TODO: consider using IINC or WIDE,IINC public void emitPostfix(CodeGeneration gen, int constant) { Expr operand = getOperand(); while(operand instanceof ParExpr) operand = ((ParExpr)operand).getExpr(); Access access = ((Access)operand).lastAccess(); access.createAssignLoadDest(gen); if(needsPush()) access.createPushAssignmentResult(gen); TypeDecl type = access.type().binaryNumericPromotion(typeInt()); type.emitPushConstant(gen, constant); type.add(gen); type.emitCastTo(gen, access.type()); access.emitStore(gen); } // Declared in CreateBCode.jrag at line 844 public void emitPrefix(CodeGeneration gen, int constant) { Expr operand = getOperand(); while(operand instanceof ParExpr) operand = ((ParExpr)operand).getExpr(); Access access = ((Access)operand).lastAccess(); access.createAssignLoadDest(gen); TypeDecl type = access.type().binaryNumericPromotion(typeInt()); type.emitPushConstant(gen, constant); type.add(gen); type.emitCastTo(gen, access.type()); if(needsPush()) access.createPushAssignmentResult(gen); access.emitStore(gen); } // Declared in java.ast at line 3 // Declared in java.ast line 139
public Unary() { super();
} // Declared in java.ast at line 10
// Declared in java.ast line 139 public Unary(Expr p0) { setChild(p0, 0); } // Declared in java.ast at line 14 protected int numChildren() {
return 1;
} // Declared in java.ast at line 17
public boolean mayHaveRewrite() { return false; } // Declared in java.ast at line 2 // Declared in java.ast line 139 public void setOperand(Expr node) { setChild(node, 0); } // Declared in java.ast at line 5 public Expr getOperand() { return (Expr)getChild(0); } // Declared in java.ast at line 9 public Expr getOperandNoTransform() { return (Expr)getChildNoTransform(0); } // Declared in DefiniteAssignment.jrag at line 402 @SuppressWarnings({"unchecked", "cast"}) public boolean isDAafter(Variable v) { boolean isDAafter_Variable_value = isDAafter_compute(v); return isDAafter_Variable_value; } private boolean isDAafter_compute(Variable v) { return getOperand().isDAafter(v); } // Declared in DefiniteAssignment.jrag at line 846 @SuppressWarnings({"unchecked", "cast"}) public boolean isDUafter(Variable v) { boolean isDUafter_Variable_value = isDUafter_compute(v); return isDUafter_Variable_value; } private boolean isDUafter_compute(Variable v) { return getOperand().isDUafter(v); } // Declared in PrettyPrint.jadd at line 388 @SuppressWarnings({"unchecked", "cast"}) public String printPostOp() { String printPostOp_value = printPostOp_compute(); return printPostOp_value; } private String printPostOp_compute() { return ""; } // Declared in PrettyPrint.jadd at line 392 @SuppressWarnings({"unchecked", "cast"}) public String printPreOp() { String printPreOp_value = printPreOp_compute(); return printPreOp_value; } private String printPreOp_compute() { return ""; } protected boolean type_computed = false; protected TypeDecl type_value; // Declared in TypeAnalysis.jrag at line 315 @SuppressWarnings({"unchecked", "cast"}) public TypeDecl type() { if(type_computed) return type_value; int num = boundariesCrossed; boolean isFinal = this.is$Final(); type_value = type_compute(); if(isFinal && num == boundariesCrossed) type_computed = true; return type_value; } private TypeDecl type_compute() { return getOperand().type(); } // Declared in DefiniteAssignment.jrag at line 44 public boolean Define_boolean_isSource(ASTNode caller, ASTNode child) { if(caller == getOperandNoTransform()) { return true; } return getParent().Define_boolean_isSource(this, caller); }public ASTNode rewriteTo() { return super.rewriteTo();}}
?? 快捷鍵說明
復(fù)制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -