|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object scale.common.Root scale.score.Note scale.score.expr.Expr scale.score.expr.UnaryExpr scale.score.expr.FieldExpr scale.score.expr.LoadFieldAddressExpr
public class LoadFieldAddressExpr
This class represents the address of a field of a structure.
$Id: LoadFieldAddressExpr.java,v 1.29 2007-10-04 19:58:31 burrill Exp $
Copyright 2008 by the
Scale Compiler Group,
Department of Computer Science
University of Massachusetts,
Amherst MA. 01003, USA
All Rights Reserved.
Field Summary |
---|
Fields inherited from class scale.score.expr.Expr |
---|
fpReorder, SE_DOMAIN, SE_NONE, SE_OVERFLOW, SE_STATE |
Constructor Summary | |
---|---|
LoadFieldAddressExpr(Expr structure,
FieldDecl field)
This method builds an expression node with this operation as the operator. |
Method Summary | |
---|---|
Expr |
copy()
Make a copy of this load expression. |
Expr |
copyNoUD()
Make a copy of this load expression without the use - def information. |
protected Chord |
findCriticalChord(HashMap<Expr,Chord> lMap,
Chord independent)
Return the Chord with the highest label value from the set of Chords that must be executed before this expression. |
java.lang.String |
getDisplayLabel()
Return a String suitable for labeling this node in a graphical display. |
boolean |
optimizationCandidate()
Return true if the expression can be moved without problems. |
boolean |
validLValue()
Return true if this expression is valid on the left side of an assignment. |
void |
visit(Predicate p)
Process a node by calling its associated routine. |
Methods inherited from class scale.score.expr.FieldExpr |
---|
canonical, equivalent, getField, getReference, getStructure, isDefined, isLoopInvariant, isMemRefExpr |
Methods inherited from class scale.score.expr.UnaryExpr |
---|
containsDeclaration, dependsOnDeclaration, executionCostEstimate, getAliasAnnote, getArg, getDeclList, getExprList, getLoadExprList, getOperand, getOperandArray, loopClean, numOperands, pushOperands, recordRefs, removeRefs, removeUseDef, replaceDecl, setArg, setOperand, sideEffects, unlinkExpression, validate |
Methods inherited from class scale.score.Note |
---|
getChord, getEssentialUse, setAnnotationLevel, setReportLevel, toString |
Methods inherited from class scale.common.Root |
---|
addAnnotation, allAnnotations, allMatchingAnnotations, getAnnotation, getDisplayName, getDisplayString, getNodeCount, getNodeID, hasAnnotation, hasEqualAnnotation, hashCode, removeAnnotation, removeAnnotations, toStringAnnotations, toStringClass, trace, trace, trace |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public LoadFieldAddressExpr(Expr structure, FieldDecl field)
structure
- is the address of the structure accessedfield
- specifies the field of the structureMethod Detail |
---|
public Expr copy()
copy
in class Expr
public Expr copyNoUD()
protected Chord findCriticalChord(HashMap<Expr,Chord> lMap, Chord independent)
findCriticalChord
in class Expr
lMap
- is used to memoize the expression to critical Chord
informationindependent
- is returned if the expression is not dependent
on anythingpublic void visit(Predicate p)
Note
Each class has a visit(Predicate p)
method. For
example, in class ABC
:
public void visit(Predicate p) { p.visitABC(this); }and the class that implements
Predicate
has a method
public void visitABC(Note n) { ABC a = (ABC) n; ... }Thus, the class that implements
Predicate
can call
n.visit(this);where
n
is a Note
sub-class without
determining which specific sub-class n
is.
The visit pattern basically avoids implementing a large
switch
statement or defining different methods
in each class for some purpose.
visit
in class Note
Predicate
public java.lang.String getDisplayLabel()
Expr
getDisplayLabel
in interface DisplayNode
getDisplayLabel
in class FieldExpr
public boolean validLValue()
validLValue
in class Expr
public boolean optimizationCandidate()
optimizationCandidate
in class UnaryExpr
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |