Uses of Class
tip.node.AIntConstExp

Packages that use AIntConstExp
tip.analysis Provides the analysis utility classes for the TIP ASTs. 
tip.cfg Provides the basic framework for performing fixed-point analyses of TIP programs. 
tip.cfg.dfa Provides a collection of data flow analyses for TIP programs. 
tip.display Provides classes for display ASTs and CFGs of TIP programs. 
tip.node Provides node classes for representing the TIP ASTs. 
tip.phases Provides the TIP compiler phases. 
 

Uses of AIntConstExp in tip.analysis
 

Methods in tip.analysis with parameters of type AIntConstExp
 void ReversedDepthFirstAdapter.caseAIntConstExp(AIntConstExp node)
          Calls ReversedDepthFirstAdapter.inAIntConstExp(AIntConstExp), traverses the children of AIntConstExp in the reverse order of the order they are defined in the grammar, and finally calls ReversedDepthFirstAdapter.outAIntConstExp(AIntConstExp).
 void DepthFirstAdapter.caseAIntConstExp(AIntConstExp node)
          Calls DepthFirstAdapter.inAIntConstExp(AIntConstExp), traverses the children of AIntConstExp in the order they are defined in the grammar, and finally calls DepthFirstAdapter.outAIntConstExp(AIntConstExp).
 A AnswerAdapter.caseAIntConstExp(AIntConstExp node)
          Returns the default answer for a AIntConstExp node.
 A Answer.caseAIntConstExp(AIntConstExp node)
          Called by AIntConstExp from apply(Answer).
 void AnalysisAdapter.caseAIntConstExp(AIntConstExp node)
          Called by the AIntConstExp node from AIntConstExp#apply(Switch).
 void Analysis.caseAIntConstExp(AIntConstExp node)
          Called by the AIntConstExp node from AIntConstExp#apply(Switch).
 A QuestionAnswerAdapter.caseAIntConstExp(AIntConstExp node, Q question)
          Returns the default answer for a AIntConstExp node.
 A QuestionAnswer.caseAIntConstExp(AIntConstExp node, Q question)
          Called by AIntConstExp from apply(QuestionAnswer,Object).
 void QuestionAdapter.caseAIntConstExp(AIntConstExp node, Q question)
          Action for applying a question to a AIntConstExp node.
 void Question.caseAIntConstExp(AIntConstExp node, Q question)
          Called by AIntConstExp from apply(Question,Object).
 void ReversedDepthFirstAdapter.inAIntConstExp(AIntConstExp node)
          Called by ReversedDepthFirstAdapter.caseAIntConstExp(AIntConstExp) before traversing the children of AIntConstExp.
 void DepthFirstAdapter.inAIntConstExp(AIntConstExp node)
          Called by DepthFirstAdapter.caseAIntConstExp(AIntConstExp) before traversing the children of AIntConstExp.
 void ReversedDepthFirstAdapter.outAIntConstExp(AIntConstExp node)
          Called by ReversedDepthFirstAdapter.caseAIntConstExp(AIntConstExp) after traversing the children of AIntConstExp.
 void DepthFirstAdapter.outAIntConstExp(AIntConstExp node)
          Called by DepthFirstAdapter.caseAIntConstExp(AIntConstExp) after traversing the children of AIntConstExp.
 

Uses of AIntConstExp in tip.cfg
 

Methods in tip.cfg that return AIntConstExp
 AIntConstExp CIntConstExpPoint.getNode()
          Returns the AIntConstExp associated with this program point.
 

Methods in tip.cfg with parameters of type AIntConstExp
 boolean ICFGAnalysis.caseCIntConstExpPoint(AIntConstExp node, CIntConstExpPoint point)
          caseCIntConstExpPoint is called by a CIntConstExpPoint from CIntConstExpPoint.apply(ICFGAnalysis).
 A CFGAnswerAdapter.caseCIntConstExpPoint(AIntConstExp node, CIntConstExpPoint point)
          Default implementation.
 A CFGAnswer.caseCIntConstExpPoint(AIntConstExp node, CIntConstExpPoint point)
          caseCIntConstExpPoint is called by a CIntConstExpPoint from CIntConstExpPoint.apply(CFGAnswer).
 boolean CFGAnalysisAdapter.caseCIntConstExpPoint(AIntConstExp node, CIntConstExpPoint point)
          Default implementation.
 A CFGQuestionAnswerAdapter.caseCIntConstExpPoint(AIntConstExp node, CIntConstExpPoint point, Q question)
          Default implementation.
 A CFGQuestionAnswer.caseCIntConstExpPoint(AIntConstExp node, CIntConstExpPoint point, Q question)
          caseCIntConstExpPoint is called by a CIntConstExpPoint from CIntConstExpPoint.apply(CFGQuestionAnswer,Object).
 void CFGBuilder.inAIntConstExp(AIntConstExp node)
           
 

Constructors in tip.cfg with parameters of type AIntConstExp
CIntConstExpPoint(AIntConstExp _node_)
          Creates a new CIntConstExpPoint associated with the AIntConstExp _node_ with the label "".
CIntConstExpPoint(AIntConstExp _node_, String _label_)
          Creates a new CIntConstExpPoint associated with the AIntConstExp _node_ with the label _label_.
 

Uses of AIntConstExp in tip.cfg.dfa
 

Methods in tip.cfg.dfa with parameters of type AIntConstExp
 IntervalAnalysis.Interval IntervalAnalysis.Evaluator.caseAIntConstExp(AIntConstExp node, EqualityMap<ALocalDecl,IntervalAnalysis.Interval> sigma)
           
 SignAnalysis.Sign SignAnalysis.Evaluator.caseAIntConstExp(AIntConstExp node, EqualityMap<ALocalDecl,SignAnalysis.Sign> map)
           
 ConstantPropagationAnalysis.Const ConstantPropagationAnalysis.Evaluator.caseAIntConstExp(AIntConstExp e, Map<ALocalDecl,ConstantPropagationAnalysis.Const> env)
           
 

Uses of AIntConstExp in tip.display
 

Methods in tip.display with parameters of type AIntConstExp
 Integer Precedence.caseAIntConstExp(AIntConstExp node)
           
 String NodeText.caseAIntConstExp(AIntConstExp node)
           
 

Uses of AIntConstExp in tip.node
 

Methods in tip.node that return AIntConstExp
 AIntConstExp AIntConstExp.clone()
          Returns a deep clone of this AIntConstExp node.
 AIntConstExp AIntConstExp.clone(Map<Node,Node> oldToNewMap)
          Creates a deep clone of this AIntConstExp node while putting all old node-new node relations in the map oldToNewMap.
 

Uses of AIntConstExp in tip.phases
 

Methods in tip.phases with parameters of type AIntConstExp
 void CodeGeneration.caseAIntConstExp(AIntConstExp node)
           
 void TypeChecking.outAIntConstExp(AIntConstExp node)