source: src/CodeGen/CodeGenerator.h @ 7bcf74e

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsctordeferred_resndemanglerenumforall-pointer-decaygc_noraiijacob/cs343-translationjenkins-sandboxmemorynew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newstringwith_gc
Last change on this file since 7bcf74e was 5f2f2d7, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

fix constant types, remove unnecessary string copying, work on regression testing, fix several memory leaks

  • Property mode set to 100644
File size: 3.4 KB
Line 
1//
2// Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
3//
4// The contents of this file are covered under the licence agreement in the
5// file "LICENCE" distributed with Cforall.
6//
7// CodeGenerator.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Jun  8 14:34:43 2015
13// Update Count     : 15
14//
15
16#ifndef CODEGENV_H
17#define CODEGENV_H
18
19#include <list>
20
21#include "SynTree/SynTree.h"
22#include "SynTree/Visitor.h"
23#include "SymTab/Indexer.h"
24
25namespace CodeGen {
26        class CodeGenerator : public Visitor {
27          public:
28                static int tabsize;
29
30                CodeGenerator( std::ostream &os );
31                CodeGenerator( std::ostream &os, std::string, int indent = 0, bool infun = false );
32                CodeGenerator( std::ostream &os, char *, int indent = 0, bool infun = false );
33
34                //*** Declaration
35                virtual void visit( StructDecl * );
36                virtual void visit( FunctionDecl * );
37                virtual void visit( ObjectDecl * );
38                virtual void visit( UnionDecl *aggregateDecl );
39                virtual void visit( EnumDecl *aggregateDecl );
40                virtual void visit( ContextDecl *aggregateDecl );
41                virtual void visit( TypedefDecl *typeDecl );
42                virtual void visit( TypeDecl *typeDecl );
43
44                //*** Initializer
45                virtual void visit( SingleInit * );
46                virtual void visit( ListInit * );
47
48                //*** Constant
49                virtual void visit( Constant * );
50
51                //*** Expression
52                virtual void visit( ApplicationExpr *applicationExpr );
53                virtual void visit( UntypedExpr *untypedExpr );
54                virtual void visit( NameExpr *nameExpr );
55                virtual void visit( AddressExpr *addressExpr );
56                virtual void visit( CastExpr *castExpr );
57                virtual void visit( UntypedMemberExpr *memberExpr );
58                virtual void visit( MemberExpr *memberExpr );
59                virtual void visit( VariableExpr *variableExpr );
60                virtual void visit( ConstantExpr *constantExpr ); 
61                virtual void visit( SizeofExpr *sizeofExpr );
62                virtual void visit( LogicalExpr *logicalExpr );
63                virtual void visit( ConditionalExpr *conditionalExpr );
64                virtual void visit( CommaExpr *commaExpr );
65                virtual void visit( TupleExpr *tupleExpr );
66                virtual void visit( TypeExpr *typeExpr );
67
68                //*** Statements
69                virtual void visit( CompoundStmt * );
70                virtual void visit( ExprStmt * );
71                virtual void visit( IfStmt * );
72                virtual void visit( SwitchStmt * );
73                virtual void visit( CaseStmt * );
74                virtual void visit( BranchStmt * );
75                virtual void visit( ReturnStmt * );
76                virtual void visit( WhileStmt * );
77                virtual void visit( ForStmt * );
78                virtual void visit( NullStmt * );
79                virtual void visit( DeclStmt * ); 
80
81                template< class Iterator > void genCommaList( Iterator begin, Iterator end );
82          private:
83                int cur_indent;
84                bool insideFunction;
85                std::ostream &output;
86
87                static std::string printLabels ( std::list < Label > & );
88                void handleStorageClass( Declaration *decl );
89                void handleAggregate( AggregateDecl *aggDecl );
90                void handleTypedef( NamedTypeDecl *namedType );
91
92        };
93       
94        template< class Iterator >
95        void CodeGenerator::genCommaList( Iterator begin, Iterator end ) {
96                if ( begin == end ) return;
97
98                for ( ;; ) {
99                        (*begin++)->accept( *this );
100                        if ( begin == end ) return;
101                        output << ", ";
102                } // for
103        }
104 
105        inline bool doSemicolon( Declaration* decl ) {
106                if ( FunctionDecl* func = dynamic_cast< FunctionDecl* >( decl ) ) {
107                        return ! func->get_statements();
108                } // if
109                return true;
110        }
111} // namespace CodeGen
112
113#endif // CODEGENV_H
114
115// Local Variables: //
116// tab-width: 4 //
117// mode: c++ //
118// compile-command: "make install" //
119// End: //
Note: See TracBrowser for help on using the repository browser.