Uses of Class
tip.analysis.AnalysisAdapter

Packages that use AnalysisAdapter
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.phases Provides the TIP compiler phases. 
tip.util Provides utility classes for the TIP compiler. 
 

Uses of AnalysisAdapter in tip.analysis
 

Subclasses of AnalysisAdapter in tip.analysis
 class DepthFirstAdapter
          DepthFirstAdapter extends the AnalysisAdapter to provide a forward depth-first traversal of the AST.
 class ReversedDepthFirstAdapter
          ReversedDepthFirstAdapter extends the AnalysisAdapter to provide a backward depth-first traversal of the AST.
 class TreeDisplay
           
 

Uses of AnalysisAdapter in tip.cfg
 

Subclasses of AnalysisAdapter in tip.cfg
 class CFGBuilder
          CFGBuilder constructs control flow graphs for an AST based on the definitions in the SableCC grammar 'Control Flow Graph'-section.
 

Uses of AnalysisAdapter in tip.cfg.cfa
 

Subclasses of AnalysisAdapter in tip.cfg.cfa
 class Andersen
          Andersen is an implemention of Andersen's algorithm for computing points-to maps.
 class FunctionPointers
          FunctionPointers is an implemention of a simple control flow analysis for functions pointers.
 class Normalization
           
 class OneLevelFlow
           
 class Steensgaard
           
 

Uses of AnalysisAdapter in tip.display
 

Subclasses of AnalysisAdapter in tip.display
 class ASTDisplay
           
 class CodeGenerationDisplay
           
 class EnvironmentsDisplay
           
 class NameLinkingDisplay
           
 class NormalizationDisplay
           
 class ParserDisplay
           
 class ResourcesDisplay
           
 class TypeCheckingDisplay
           
 

Uses of AnalysisAdapter in tip.phases
 

Subclasses of AnalysisAdapter in tip.phases
 class CodeEmission
           
 class CodeGeneration
           
 class CodePrepare
           
 class Environments
           
 class NameLinking
           
 class Resources
           
 class ShowAsm
           
 class TypeChecking
           
 class Weeding
           
 

Uses of AnalysisAdapter in tip.util
 

Subclasses of AnalysisAdapter in tip.util
 class DeclCollector
          DeclCollector defines methods for collecting all referred PDecl nodes in the subtree of an AST node or in the subtrees of nodes associated with points in a control flow graph.
 class LocalDeclCollector
          LocalDeclCollector defines methods for collecting all referred ALocalDecl nodes in the subtree of an AST node or in the subtrees of nodes associated with points in a control flow graph.