|
|||||||||
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.NaryExpr scale.score.expr.PhiExpr
public class PhiExpr
This operator represents a phi operation in static single assignment form.
$Id: PhiExpr.java,v 1.71 2007-10-17 13:45:45 burrill Exp $
Copyright 2008 by the
Scale Compiler Group,
Department of Computer Science
University of Massachusetts,
Amherst MA. 01003, USA
All Rights Reserved.
SSA
Field Summary |
---|
Fields inherited from class scale.score.expr.Expr |
---|
fpReorder, SE_DOMAIN, SE_NONE, SE_OVERFLOW, SE_STATE |
Constructor Summary | |
---|---|
PhiExpr(Type type,
Vector<Expr> operands)
Build a phi function instance. |
Method Summary | |
---|---|
void |
clearEdge(int i)
Clear the i-th marker. |
void |
clearEdgeMarkers()
Clear all the markers. |
Expr |
copy()
Perform a deep copy of the expression tree. |
boolean |
dependsOnDeclaration(Declaration decl)
Return true if this expression's value depends on the variable. |
boolean |
edgeMarked(int i)
Return the i-th marker. |
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(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. |
void |
markEdge(int i)
Set the i-th marker. |
boolean |
optimizationCandidate()
Return true if the expression can be moved without problems. |
void |
removeOperand(int i)
Allow some expressions such as VectorExpr to remove an operand. |
int |
sideEffects()
Return an indication of the side effects execution of this expression may cause. |
void |
validate()
Check this node for validity. |
void |
visit(Predicate p)
Process a node by calling its associated routine. |
Methods inherited from class scale.score.expr.NaryExpr |
---|
addOperand, containsDeclaration, equivalent, getDeclList, getExprList, getLoadExprList, getOperand, getOperandArray, loopClean, numOperands, pushOperands, recordRefs, removeRefs, removeUseDef, replaceDecl, setOperand, unlinkExpression |
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 PhiExpr(Type type, Vector<Expr> operands)
All incoming values should be of the same type. The result type is the same as that of the incoming data.
type
- of the result and each argumentoperands
- a vector of argumentsSSA
Method Detail |
---|
public Expr copy()
Expr
copy
in class Expr
public boolean optimizationCandidate()
optimizationCandidate
in class NaryExpr
public int sideEffects()
sideEffects
in class NaryExpr
Expr.SE_NONE
public 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 Expr
public void removeOperand(int i)
removeOperand
in class NaryExpr
public void clearEdgeMarkers()
public boolean edgeMarked(int i)
i
- the index of the markerpublic void markEdge(int i)
i
- the index of the markerpublic void clearEdge(int i)
i
- the index of the markerpublic Literal getConstantValue(HashMap<Expr,Literal> cvMap)
getConstantValue
in class Expr
Lattice
public int findLinearCoefficient(VariableDecl indexVar, LoopHeaderChord thisLoop)
findLinearCoefficient
in class Expr
indexVar
- the index variable associated with the
coefficient.
protected AffineExpr getAffineRepresentation(HashMap<Expr,AffineExpr> affines, LoopHeaderChord thisLoop)
Expr
affine
representation
for this expression. This method should be
called only from the getAffineExpr()
method. This method never returns null
.
getAffineRepresentation
in class Expr
affines
- 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
public boolean isLoopInvariant(LoopHeaderChord loop)
isLoopInvariant
in class Expr
loop
- is the loopprotected 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 boolean dependsOnDeclaration(Declaration decl)
dependsOnDeclaration
in class NaryExpr
LoadExpr.setUseOriginal(boolean)
public int executionCostEstimate()
executionCostEstimate
in class NaryExpr
public void validate()
validate
in class NaryExpr
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |