|
|||||||||
| 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.BinaryExpr
scale.score.expr.AdditionExpr
public class AdditionExpr
This class represents the addition function.
$Id: AdditionExpr.java,v 1.72 2007-10-04 19:58:27 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 | |
|---|---|
AdditionExpr(Expr la,
Expr ra)
The expression type is the same as the type of expression la. |
|
AdditionExpr(Type type,
Expr la,
Expr ra)
|
|
| Method Summary | |
|---|---|
Expr |
copy()
Perform a deep copy of the expression tree. |
static Expr |
create(Type type,
Expr la,
Expr ra)
This method of creating a AdditionExpr instance will return a reduced expression if possible. |
int |
findLinearCoefficient(VariableDecl indexVar,
LoopHeaderChord thisLoop)
Return the coefficient of the addition operator. |
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 |
isAssociative()
Return true becuase addition is associative. |
boolean |
isCommutative()
Return true becuase addition is commutative. |
boolean |
isSimpleExpr()
Return true if this is a simple expression. |
Expr |
reduce()
Return a simplied equivalent expression. |
int |
sideEffects()
Return an indication of the side effects execution of this expression may cause. |
void |
visit(Predicate p)
Process a node by calling its associated routine. |
| Methods inherited from class scale.score.expr.BinaryExpr |
|---|
associativeSwapOperands, containsDeclaration, dependsOnDeclaration, equivalent, executionCostEstimate, getAliasAnnote, getDeclList, getExprList, getLeftArg, getLoadExprList, getOperand, getOperandArray, getRightArg, isLeftDistributive, isRightDistributive, loopClean, numOperands, optimizationCandidate, pushOperands, recordRefs, removeRefs, removeUseDef, replaceDecl, setLeftArg, setOperand, setRightArg, swapOperands, 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 AdditionExpr(Type type,
Expr la,
Expr ra)
public AdditionExpr(Expr la,
Expr ra)
la.
| Method Detail |
|---|
public static Expr create(Type type,
Expr la,
Expr ra)
public Expr copy()
Expr
copy in class Exprpublic int sideEffects()
sideEffects in class BinaryExprExpr.SE_NONEpublic 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 Expr
public int findLinearCoefficient(VariableDecl indexVar,
LoopHeaderChord thisLoop)
findLinearCoefficient in class ExprindexVar - the index variable associated with the coefficient.
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.notAffinepublic Literal getConstantValue(HashMap<Expr,Literal> cvMap)
getConstantValue in class ExprLatticepublic Literal getConstantValue()
getConstantValue in class ExprLatticepublic boolean isCommutative()
isCommutative in class BinaryExprpublic boolean isAssociative()
isAssociative in class BinaryExprpublic boolean isSimpleExpr()
isSimpleExpr in class Exprpublic Expr reduce()
((a + c1) + c2)wherec1andc2are constants, the result is(a + k)wherekis the sum ofc1andc2. This method may modify the original expression. This is used in the lowering of subscript expressions.
reduce in class ExprSubscriptExpr.lower()
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||