|
|||||||||
| 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.UnaryExpr
scale.score.expr.TranscendentalExpr
public class TranscendentalExpr
This class represents the monadic intrinsic functions.
$Id: TranscendentalExpr.java,v 1.23 2007-10-04 19:58:33 burrill Exp $
Copyright 2008 by the
Scale Compiler Group,
Department of Computer Science
University of Massachusetts,
Amherst MA. 01003, USA
All Rights Reserved.
If would have been better to name this class the BuiltInOperation class. It represents those complex operations which it may be possible to implement on the target architecture with a simple sequence of instructions. An example is the square root function which some architectures provide as a single instruction.
TranscendentalOp| Field Summary |
|---|
| Fields inherited from class scale.score.expr.Expr |
|---|
fpReorder, SE_DOMAIN, SE_NONE, SE_OVERFLOW, SE_STATE |
| Constructor Summary | |
|---|---|
TranscendentalExpr(Type t,
Expr e1,
TransFtn ftn)
|
|
| Method Summary | |
|---|---|
Expr |
copy()
Perform a deep copy of the expression tree. |
boolean |
equivalent(Expr exp)
Return true if the expressions are equivalent. |
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. |
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. |
TransFtn |
getFtn()
Return a value indicating the transcendental function represented. |
boolean |
isLoopInvariant(LoopHeaderChord loop)
Return true if this expression is loop invariant. |
boolean |
mayGenerateCall()
Return true if this expression may result in the generation of a call to a subroutine. |
boolean |
optimizationCandidate()
Return true if the expression can be moved without problems. |
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.UnaryExpr |
|---|
containsDeclaration, dependsOnDeclaration, getAliasAnnote, getArg, getDeclList, getExprList, getLoadExprList, getOperand, getOperandArray, loopClean, numOperands, pushOperands, recordRefs, removeRefs, removeUseDef, replaceDecl, setArg, setOperand, 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 TranscendentalExpr(Type t,
Expr e1,
TransFtn ftn)
| Method Detail |
|---|
public boolean equivalent(Expr exp)
equivalent in class UnaryExprpublic TransFtn getFtn()
public Expr copy()
Expr
copy in class Exprpublic int sideEffects()
sideEffects in class UnaryExprExpr.SE_NONEpublic boolean optimizationCandidate()
optimizationCandidate in class UnaryExprpublic boolean mayGenerateCall()
mayGenerateCall in class Exprpublic boolean isLoopInvariant(LoopHeaderChord loop)
isLoopInvariant in class Exprloop - is the loop
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 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 ExprLatticepublic Literal getConstantValue()
getConstantValue in class ExprLatticepublic int executionCostEstimate()
executionCostEstimate in class UnaryExpr
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||