source: src/CodeGen/CodeGenerator.h @ 2a6c115

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since 2a6c115 was d807ca28, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Add AST support for _Generic, along with C codegen

  • Property mode set to 100644
File size: 6.2 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 : Andrew Beach
12// Last Modified On : Fri Aug 18 15:40:00 2017
13// Update Count     : 56
14//
15
16#pragma once
17
18#include <list>                   // for list
19#include <ostream>                // for ostream, operator<<
20#include <string>                 // for string
21
22#include "Common/Indenter.h"      // for Indenter
23#include "Common/PassVisitor.h"   // for PassVisitor
24#include "SynTree/Declaration.h"  // for DeclarationWithType (ptr only), Fun...
25#include "SynTree/Visitor.h"      // for Visitor
26#include "SynTree/SynTree.h"      // for Visitor Nodes
27
28namespace CodeGen {
29        struct CodeGenerator : public WithShortCircuiting, public WithGuards, public WithVisitorRef<CodeGenerator> {
30          static int tabsize;
31
32                CodeGenerator( std::ostream &os, bool pretty = false, bool genC = false, bool lineMarks = false, bool printExprTypes = false );
33
34                //*** Turn off visit_children for all nodes
35                void previsit( BaseSyntaxNode * );
36
37                //*** Error for unhandled node types
38                void postvisit( BaseSyntaxNode * );
39
40                //*** print type for all expressions
41                void previsit( Expression * node );
42
43                //*** Declaration
44                void postvisit( StructDecl * );
45                void postvisit( FunctionDecl * );
46                void postvisit( ObjectDecl * );
47                void postvisit( UnionDecl * aggregateDecl );
48                void postvisit( EnumDecl * aggregateDecl );
49                void postvisit( TraitDecl * aggregateDecl );
50                void postvisit( TypedefDecl * typeDecl );
51                void postvisit( TypeDecl * typeDecl );
52                void postvisit( StaticAssertDecl * assertDecl );
53
54                //*** Initializer
55                void postvisit( Designation * );
56                void postvisit( SingleInit * );
57                void postvisit( ListInit * );
58                void postvisit( ConstructorInit * );
59
60                //*** Constant
61                void postvisit( Constant * );
62
63                //*** Expression
64                void postvisit( ApplicationExpr *applicationExpr );
65                void postvisit( UntypedExpr *untypedExpr );
66                void postvisit( RangeExpr * rangeExpr );
67                void postvisit( NameExpr *nameExpr );
68                void postvisit( AddressExpr *addressExpr );
69                void postvisit( LabelAddressExpr *addressExpr );
70                void postvisit( CastExpr *castExpr );
71                void postvisit( KeywordCastExpr * castExpr );
72                void postvisit( VirtualCastExpr *castExpr );
73                void postvisit( UntypedMemberExpr *memberExpr );
74                void postvisit( MemberExpr *memberExpr );
75                void postvisit( VariableExpr *variableExpr );
76                void postvisit( ConstantExpr *constantExpr );
77                void postvisit( SizeofExpr *sizeofExpr );
78                void postvisit( AlignofExpr *alignofExpr );
79                void postvisit( UntypedOffsetofExpr *offsetofExpr );
80                void postvisit( OffsetofExpr *offsetofExpr );
81                void postvisit( OffsetPackExpr *offsetPackExpr );
82                void postvisit( LogicalExpr *logicalExpr );
83                void postvisit( ConditionalExpr *conditionalExpr );
84                void postvisit( CommaExpr *commaExpr );
85                void postvisit( CompoundLiteralExpr *compLitExpr );
86                void postvisit( UniqueExpr * );
87                void postvisit( TupleAssignExpr * tupleExpr );
88                void postvisit( UntypedTupleExpr *tupleExpr );
89                void postvisit( TupleExpr *tupleExpr );
90                void postvisit( TupleIndexExpr * tupleExpr );
91                void postvisit( TypeExpr *typeExpr );
92                void postvisit( AsmExpr * );
93                void postvisit( StmtExpr * );
94                void postvisit( ConstructorExpr * );
95                void postvisit( DeletedExpr * );
96                void postvisit( GenericExpr * );
97
98                //*** Statements
99                void postvisit( CompoundStmt * );
100                void postvisit( ExprStmt * );
101                void postvisit( AsmStmt * );
102                void postvisit( DirectiveStmt * );
103                void postvisit( AsmDecl * );                            // special: statement in declaration context
104                void postvisit( IfStmt * );
105                void postvisit( SwitchStmt * );
106                void postvisit( CaseStmt * );
107                void postvisit( BranchStmt * );
108                void postvisit( ReturnStmt * );
109                void postvisit( ThrowStmt * );
110                void postvisit( CatchStmt * );
111                void postvisit( WaitForStmt * );
112                void postvisit( WithStmt * );
113                void postvisit( WhileStmt * );
114                void postvisit( ForStmt * );
115                void postvisit( NullStmt * );
116                void postvisit( DeclStmt * );
117                void postvisit( ImplicitCtorDtorStmt * );
118
119                void genAttributes( std::list< Attribute * > & attributes );
120
121                template< class Iterator > void genCommaList( Iterator begin, Iterator end );
122
123                struct LabelPrinter {
124                        LabelPrinter(CodeGenerator &cg) : cg(cg), labels( 0 ) {}
125                        LabelPrinter & operator()( std::list< Label > & l );
126                        CodeGenerator & cg;
127                        std::list< Label > * labels;
128                };
129
130                void asmName( DeclarationWithType *decl );
131
132                void extension( Expression *expr );
133                void extension( Declaration *decl );
134
135                void updateLocation( BaseSyntaxNode const * to );
136                struct LineEnder {
137                        CodeGenerator & cg;
138                        LineEnder( CodeGenerator & cg ) : cg( cg ) {}
139                        std::ostream & operator()(std::ostream &) const;
140                };
141          private:
142                Indenter indent;
143                std::ostream & output;
144                LabelPrinter printLabels;
145                bool pretty = false;  // pretty print
146                bool genC = false;    // true if output has to be C code
147                bool lineMarks = false;
148                bool printExprTypes = false;
149        public:
150                LineEnder endl;
151        private:
152
153                CodeLocation currentLocation;
154                void updateLocation( CodeLocation const & to );
155
156                void handleStorageClass( DeclarationWithType *decl );
157                void handleAggregate( AggregateDecl *aggDecl, const std::string & kind );
158                void handleTypedef( NamedTypeDecl *namedType );
159                std::string mangleName( DeclarationWithType * decl );
160        }; // CodeGenerator
161
162        template< class Iterator >
163        void CodeGenerator::genCommaList( Iterator begin, Iterator end ) {
164          if ( begin == end ) return;
165                for ( ;; ) {
166                        (*begin++)->accept( *visitor );
167                  if ( begin == end ) break;
168                        output << ", ";                                                         // separator
169                } // for
170        } // genCommaList
171
172        inline bool doSemicolon( Declaration* decl ) {
173                if ( FunctionDecl* func = dynamic_cast< FunctionDecl* >( decl ) ) {
174                        return ! func->get_statements();
175                } // if
176                return true;
177        } // doSemicolon
178
179        /// returns C-compatible name of declaration
180        std::string genName( DeclarationWithType * decl );
181
182        inline std::ostream & operator<<( std::ostream & os, const CodeGenerator::LineEnder & endl ) {
183                return endl( os );
184        }
185} // namespace CodeGen
186
187// Local Variables: //
188// tab-width: 4 //
189// mode: c++ //
190// compile-command: "make install" //
191// End: //
Note: See TracBrowser for help on using the repository browser.