ADT
        aaron-thesis
        arm-eh
        ast-experimental
        cleanup-dtors
        ctor
        deferred_resn
        demangler
        enum
        forall-pointer-decay
        gc_noraii
        jacob/cs343-translation
        jenkins-sandbox
        memory
        new-ast
        new-ast-unique-expr
        new-env
        no_list
        persistent-indexer
        pthread-emulation
        qualifiedEnum
        resolv-new
        string
        with_gc
      
      
        
          | 
            Last change
 on this file since 643a2e1 was             51b73452, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago           | 
        
        
          | 
             
initial commit 
 
           | 
        
        
          
            
              - 
Property                 mode
 set to                 
100644
               
             
           | 
        
        
          | 
            File size:
            932 bytes
           | 
        
      
      
| Line |   | 
|---|
| 1 | /*
 | 
|---|
| 2 |  * This file is part of the Cforall project
 | 
|---|
| 3 |  *
 | 
|---|
| 4 |  * A singleton class to encapsulate the bison-generated parser
 | 
|---|
| 5 |  *
 | 
|---|
| 6 |  * $Id: Parser.h,v 1.4 2002/09/09 16:47:14 rcbilson Exp $
 | 
|---|
| 7 |  *
 | 
|---|
| 8 |  */
 | 
|---|
| 9 | 
 | 
|---|
| 10 | #ifndef PARSER_H
 | 
|---|
| 11 | #define PARSER_H
 | 
|---|
| 12 | 
 | 
|---|
| 13 | #include <cstdio>
 | 
|---|
| 14 | 
 | 
|---|
| 15 | #include "Parser/ParseNode.h"
 | 
|---|
| 16 | #include "LinkageSpec.h"
 | 
|---|
| 17 | 
 | 
|---|
| 18 | class Parser
 | 
|---|
| 19 | {
 | 
|---|
| 20 | public:
 | 
|---|
| 21 |   static Parser &get_parser();
 | 
|---|
| 22 | 
 | 
|---|
| 23 |   /* do the actual parse */
 | 
|---|
| 24 |   void parse( FILE *input );
 | 
|---|
| 25 | 
 | 
|---|
| 26 |   /* accessors to return the result of the parse */
 | 
|---|
| 27 |   DeclarationNode *get_parseTree() const { return parseTree; }
 | 
|---|
| 28 |   int get_parseStatus() const { return parseStatus; }
 | 
|---|
| 29 | 
 | 
|---|
| 30 |   /* mutators to control parse options */
 | 
|---|
| 31 |   void set_debug( bool debug );
 | 
|---|
| 32 |   void set_linkage( LinkageSpec::Type linkage );
 | 
|---|
| 33 | 
 | 
|---|
| 34 |   /* free the parse tree without actually destroying the parser */
 | 
|---|
| 35 |   void freeTree();
 | 
|---|
| 36 | 
 | 
|---|
| 37 |   ~Parser();
 | 
|---|
| 38 | 
 | 
|---|
| 39 | private:
 | 
|---|
| 40 |   Parser();
 | 
|---|
| 41 |   static Parser *theParser;
 | 
|---|
| 42 |   DeclarationNode *parseTree;
 | 
|---|
| 43 |   int parseStatus;
 | 
|---|
| 44 | };
 | 
|---|
| 45 | 
 | 
|---|
| 46 | #endif /* #ifndef PARSER_H */
 | 
|---|
       
      
  Note:
 See   
TracBrowser
 for help on using the repository browser.