Package EDU.purdue.cs.bloat.tree
Class UCExpr
- java.lang.Object
-
- EDU.purdue.cs.bloat.tree.Node
-
- EDU.purdue.cs.bloat.tree.Expr
-
- EDU.purdue.cs.bloat.tree.CheckExpr
-
- EDU.purdue.cs.bloat.tree.UCExpr
-
- All Implemented Interfaces:
java.lang.Cloneable
public class UCExpr extends CheckExpr
UPExpr represents an update check opcode which checks the persistent store to determine if a variable needs to be updated.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Objectclone()booleanequalsExpr(Expr other)Compares this expression to another.intkind()voidvisit(TreeVisitor visitor)-
Methods inherited from class EDU.purdue.cs.bloat.tree.CheckExpr
expr, exprHashCode, visitForceChildren
-
Methods inherited from class EDU.purdue.cs.bloat.tree.Expr
cleanupOnly, comparator, copyInto, def, isDef, setDef, setType, stmt, type
-
Methods inherited from class EDU.purdue.cs.bloat.tree.Node
block, cleanup, copyInto, hasParent, key, parent, replaceWith, replaceWith, setKey, setParent, setValueNumber, toString, valueNumber, visitChildren, visitOnly
-
-
-
-
Field Detail
-
POINTER
public static final int POINTER
- See Also:
- Constant Field Values
-
SCALAR
public static final int SCALAR
- See Also:
- Constant Field Values
-
-
Method Detail
-
kind
public int kind()
-
visit
public void visit(TreeVisitor visitor)
-
equalsExpr
public boolean equalsExpr(Expr other)
Description copied from class:ExprCompares this expression to another.- Overrides:
equalsExprin classCheckExpr- Parameters:
other- Expr to which to compare this.
-
-