source: src/Parser/TypeData.h @ b6424d9

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since b6424d9 was b6424d9, checked in by Peter A. Buhr <pabuhr@…>, 8 years ago

refactor copyStorageClasses

  • Property mode set to 100644
File size: 3.7 KB
RevLine 
[b87a5ed]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// TypeData.h --
8//
9// Author           : Rodolfo G. Esteves
10// Created On       : Sat May 16 15:18:36 2015
11// Last Modified By : Peter A. Buhr
[b6424d9]12// Last Modified On : Sat Sep 10 09:42:54 2016
13// Update Count     : 118
[b87a5ed]14//
15
[51b7345]16#ifndef TYPEDATA_H
17#define TYPEDATA_H
18
[c1c1112]19#include <bitset>
[bdd516a]20
[51b7345]21#include "ParseNode.h"
22#include "SynTree/Type.h"
23
[c8ffe20b]24struct TypeData {
[b87a5ed]25        enum Kind { Unknown, Basic, Pointer, Array, Function, Aggregate, AggregateInst,
[28307be]26                                Enum, EnumConstant, Symbolic, SymbolicInst, Variable, Tuple, Typeof, Builtin, Attr };
[b87a5ed]27
28        struct Basic_t {
29                std::list< DeclarationNode::BasicType > typeSpec;
30                std::list< DeclarationNode::Modifier > modifiers;
31        };
32
33        struct Aggregate_t {
[68cd1ce]34                DeclarationNode::Aggregate kind;
[b87a5ed]35                std::string name;
[7ee14bb7]36                DeclarationNode * params;
37                ExpressionNode  * actuals;                                              // holds actual parameters later applied to AggInst
38                DeclarationNode * fields;
[5d125e4]39                bool body;
[b87a5ed]40        };
41
42        struct AggInst_t {
[7ee14bb7]43                TypeData * aggregate;
44                ExpressionNode * params;
[b87a5ed]45        };
46
47        struct Array_t {
[7ee14bb7]48                ExpressionNode * dimension;
[b87a5ed]49                bool isVarLen;
50                bool isStatic;
51        };
52
53        struct Enumeration_t {
54                std::string name;
[7ee14bb7]55                DeclarationNode * constants;
[b87a5ed]56        };
57
58        struct Function_t {
[7ee14bb7]59                DeclarationNode * params;
60                DeclarationNode * idList;                                               // old-style
61                DeclarationNode * oldDeclList;
62                StatementNode * body;
[b87a5ed]63                bool hasBody;
64                bool newStyle;
65        };
66
67        struct Symbolic_t {
68                std::string name;
[721f17a]69                bool isTypedef;                                                                 // false => TYPEGENname, true => TYPEDEFname
[7ee14bb7]70                DeclarationNode * params;
71                ExpressionNode * actuals;
72                DeclarationNode * assertions;
[b87a5ed]73        };
74
[8f6f47d7]75        // struct Tuple_t {
76        //      DeclarationNode * members;
77        // };
[51b7345]78 
[8f6f47d7]79        // struct Typeof_t {
80        //      ExpressionNode * expr;
81        // };
[b87a5ed]82
[8f6f47d7]83        // struct Builtin_t {
84        //      DeclarationNode::BuiltinType type;
85        // };
[90c3b1c]86
[28307be]87        Kind kind;
[413ad05]88        TypeData * base;
89        typedef std::bitset< DeclarationNode::NoOfQualifier > Qualifiers;
90        Qualifiers qualifiers;
[b6424d9]91        typedef std::bitset< DeclarationNode::NoStorageClass > StorageClasses;
92        StorageClasses storageclasses;
[413ad05]93        DeclarationNode * forall;
94
[8f6f47d7]95                Basic_t basic;
96                Aggregate_t aggregate;
97                AggInst_t aggInst;
98                Array_t array;
99                Enumeration_t enumeration;
[7d05e7e]100                // Variable_t variable;
[8f6f47d7]101                Function_t function;
102                Symbolic_t symbolic;
103                DeclarationNode * tuple;
104                ExpressionNode * typeexpr;
[7d05e7e]105                // Attr_t attr;
[8f6f47d7]106                // DeclarationNode::BuiltinType builtin;
[b87a5ed]107
[413ad05]108        TypeData( Kind k = Unknown );
109        ~TypeData();
110        void print( std::ostream &, int indent = 0 ) const;
111        TypeData * clone() const;
[51b7345]112};
113
[413ad05]114Type * typebuild( const TypeData * );
115TypeData * typeextractAggregate( const TypeData * td, bool toplevel = true );
116Type::Qualifiers buildQualifiers( const TypeData * td );
117Type * buildBasicType( const TypeData * );
118PointerType * buildPointer( const TypeData * );
119ArrayType * buildArray( const TypeData * );
120AggregateDecl * buildAggregate( const TypeData * );
121ReferenceToType * buildAggInst( const TypeData * );
122NamedTypeDecl * buildSymbolic( const TypeData *, const std::string &name, DeclarationNode::StorageClass sc );
123TypeDecl * buildVariable( const TypeData * );
124EnumDecl * buildEnum( const TypeData * );
125TypeInstType * buildSymbolicInst( const TypeData * );
126TupleType * buildTuple( const TypeData * );
127TypeofType * buildTypeof( const TypeData * );
128AttrType * buildAttr( const TypeData * );
129Declaration * buildDecl( const TypeData *, std::string, DeclarationNode::StorageClass, Expression *, bool isInline, bool isNoreturn, LinkageSpec::Spec, Initializer * init = 0 );
130FunctionType * buildFunction( const TypeData * );
131
[c8ffe20b]132#endif // TYPEDATA_H
[b87a5ed]133
134// Local Variables: //
135// tab-width: 4 //
136// mode: c++ //
137// compile-command: "make install" //
138// End: //
Note: See TracBrowser for help on using the repository browser.