|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectscale.common.Root
scale.score.Note
scale.score.expr.Expr
scale.score.expr.LoadExpr
scale.score.expr.LoadDeclValueExpr
public class LoadDeclValueExpr
This class represents the value of a declaration.
$Id: LoadDeclValueExpr.java,v 1.96 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.
The type of an IdAddressOp is always the same as the declaration type.
| Field Summary |
|---|
| Fields inherited from class scale.score.expr.Expr |
|---|
fpReorder, SE_DOMAIN, SE_NONE, SE_OVERFLOW, SE_STATE |
| Constructor Summary | |
|---|---|
LoadDeclValueExpr(Declaration decl)
|
|
| 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. |
int |
executionCostEstimate()
Return a relative cost estimate for executing the expression. |
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. |
int |
findLinearCoefficient(VariableDecl indexVar,
LoopHeaderChord thisLoop)
Determine the coefficent of a linear expression. |
protected AffineExpr |
getAffineRepresentation(HashMap<Expr,AffineExpr> affines,
LoopHeaderChord thisLoop)
Return the affine
representation for this expression. |
Literal |
getConstantValue()
Return the constant value of the expression. |
Literal |
getConstantValue(HashMap<Expr,Literal> cvMap)
Return the constant value of the expression. |
java.lang.String |
getDisplayLabel()
Return a String suitable for labeling this node in a graphical display. |
boolean |
isLoopInvariant(LoopHeaderChord loop)
Return true if this expression is loop invariant. |
boolean |
isSimpleExpr()
Return true if this is a simple expression. |
boolean |
optimizationCandidate()
Return true if the expression can be moved without problems. |
void |
visit(Predicate p)
Process a node by calling its associated routine. |
| Methods inherited from class scale.score.expr.LoadExpr |
|---|
addMayUse, canonical, containsDeclaration, dependsOnDeclaration, equivalent, findSubscriptExpr, getAliasAnnote, getDecl, getDeclList, getExprList, getLoadExprList, getMayUse, getName, getObject, getOperandArray, getReference, getReuseLevel, getSubsetDecl, getUseDef, isMemoryDef, isMemRefExpr, loopClean, numOperands, pushOperands, recordRefs, referencesVariableInCommon, removeRefs, removeUseDef, replaceDecl, setCrossloopReuse, setDecl, setSpatialReuse, setStep, setTemporalReuse, setUseDef, setUseMayUse, setUseOriginal, sideEffects, unlinkExpression, validate, validLValue |
| 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 LoadDeclValueExpr(Declaration decl)
| Method Detail |
|---|
public Expr copy()
copy in class Exprpublic Expr copyNoUD()
copyNoUD in class LoadExprpublic 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 NotePredicatepublic java.lang.String getDisplayLabel()
Expr
getDisplayLabel in interface DisplayNodegetDisplayLabel in class Exprpublic Literal getConstantValue(HashMap<Expr,Literal> cvMap)
getConstantValue in class ExprLattice,
ValueDeclpublic Literal getConstantValue()
getConstantValue in class ExprLattice,
ValueDecl
public int findLinearCoefficient(VariableDecl indexVar,
LoopHeaderChord thisLoop)
findLinearCoefficient in class ExprindexVar - is the index variable associated with the
coefficient.thisLoop - is the loop containing the index variable
reference
protected AffineExpr getAffineRepresentation(HashMap<Expr,AffineExpr> affines,
LoopHeaderChord thisLoop)
Expraffine
representation for this expression. This method should be
called only from the getAffineExpr()
method. This method never returns null.
getAffineRepresentation in class Expraffines - is a mapping from an expression to its representation
and is used to avoid combinatorial explosion through use-def
linksthisLoop - the loop for which this expression may be affineAffineExpr,
AffineExpr.notAffine
protected Chord findCriticalChord(HashMap<Expr,Chord> lMap,
Chord independent)
findCriticalChord in class ExprlMap - is used to memoize the expression to critical Chord
informationindependent - is returned if the expression is not dependent
on anythingpublic boolean optimizationCandidate()
optimizationCandidate in class Exprpublic int executionCostEstimate()
executionCostEstimate in class Notepublic boolean isLoopInvariant(LoopHeaderChord loop)
isLoopInvariant in class Exprloop - is the looppublic boolean isSimpleExpr()
isSimpleExpr in class Expr
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||