Uses of Class
tip.node.AFunctionCallExp

Packages that use AFunctionCallExp
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.cfa Provides a collection of control 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 AFunctionCallExp in tip.analysis
 

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

Uses of AFunctionCallExp in tip.cfg
 

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

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

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

Uses of AFunctionCallExp in tip.cfg.cfa
 

Methods in tip.cfg.cfa with parameters of type AFunctionCallExp
 void Normalization.outAFunctionCallExp(AFunctionCallExp node)
          Normalizes function call expressions: E -> f(E1,...
 

Uses of AFunctionCallExp in tip.display
 

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

Uses of AFunctionCallExp in tip.node
 

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

Uses of AFunctionCallExp in tip.phases
 

Methods in tip.phases with parameters of type AFunctionCallExp
 void TypeChecking.outAFunctionCallExp(AFunctionCallExp node)
           
 void CodeGeneration.outAFunctionCallExp(AFunctionCallExp node)