source: src/Parser/TypeData.h @ 2781e65

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 2781e65 was 43c89a7, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

add hoistType flag (currently unused)

  • Property mode set to 100644
File size: 3.9 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//
[148f7290]7// TypeData.h --
[b87a5ed]8//
9// Author           : Rodolfo G. Esteves
10// Created On       : Sat May 16 15:18:36 2015
11// Last Modified By : Peter A. Buhr
[43c89a7]12// Last Modified On : Thu Feb 23 17:14:46 2017
13// Update Count     : 158
[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 {
[faddbd8]25        enum Kind { Basic, Pointer, Array, Function, Aggregate, AggregateInst, Enum, EnumConstant, Symbolic,
26                                SymbolicInst, Tuple, Typeof, Builtin, Unknown };
[b87a5ed]27
28        struct Aggregate_t {
[68cd1ce]29                DeclarationNode::Aggregate kind;
[2298f728]30                const std::string * name;
[7ee14bb7]31                DeclarationNode * params;
[2298f728]32                ExpressionNode * actuals;                                               // holds actual parameters later applied to AggInst
[7ee14bb7]33                DeclarationNode * fields;
[5d125e4]34                bool body;
[b87a5ed]35        };
36
37        struct AggInst_t {
[7ee14bb7]38                TypeData * aggregate;
39                ExpressionNode * params;
[43c89a7]40                bool hoistType;
[b87a5ed]41        };
42
43        struct Array_t {
[7ee14bb7]44                ExpressionNode * dimension;
[b87a5ed]45                bool isVarLen;
46                bool isStatic;
47        };
48
49        struct Enumeration_t {
[2298f728]50                const std::string * name;
[7ee14bb7]51                DeclarationNode * constants;
[ca1a547]52                bool body;
[b87a5ed]53        };
54
55        struct Function_t {
[3a5131ed]56                mutable DeclarationNode * params;                               // mutables modified in buildKRFunction
57                mutable DeclarationNode * idList;                               // old-style
58                mutable DeclarationNode * oldDeclList;
[7ee14bb7]59                StatementNode * body;
[b87a5ed]60                bool newStyle;
61        };
62
63        struct Symbolic_t {
[2298f728]64                const std::string * name;
[721f17a]65                bool isTypedef;                                                                 // false => TYPEGENname, true => TYPEDEFname
[7ee14bb7]66                DeclarationNode * params;
67                ExpressionNode * actuals;
68                DeclarationNode * assertions;
[b87a5ed]69        };
70
[28307be]71        Kind kind;
[413ad05]72        TypeData * base;
[5b639ee]73        DeclarationNode::BasicType basictype = DeclarationNode::NoBasicType;
74        DeclarationNode::ComplexType complextype = DeclarationNode::NoComplexType;
75        DeclarationNode::Signedness signedness = DeclarationNode::NoSignedness;
76        DeclarationNode::Length length = DeclarationNode::NoLength;
[148f7290]77        DeclarationNode::BuiltinType builtintype = DeclarationNode::NoBuiltinType;
[5b639ee]78        typedef std::bitset< DeclarationNode::NoQualifier > Qualifiers;
[413ad05]79        Qualifiers qualifiers;
80        DeclarationNode * forall;
81
[5b639ee]82                // Basic_t basic;
[8f6f47d7]83                Aggregate_t aggregate;
84                AggInst_t aggInst;
85                Array_t array;
86                Enumeration_t enumeration;
[7d05e7e]87                // Variable_t variable;
[8f6f47d7]88                Function_t function;
89                Symbolic_t symbolic;
90                DeclarationNode * tuple;
91                ExpressionNode * typeexpr;
92                // DeclarationNode::BuiltinType builtin;
[b87a5ed]93
[413ad05]94        TypeData( Kind k = Unknown );
95        ~TypeData();
96        void print( std::ostream &, int indent = 0 ) const;
97        TypeData * clone() const;
[51b7345]98};
99
[413ad05]100Type * typebuild( const TypeData * );
101TypeData * typeextractAggregate( const TypeData * td, bool toplevel = true );
102Type::Qualifiers buildQualifiers( const TypeData * td );
103Type * buildBasicType( const TypeData * );
104PointerType * buildPointer( const TypeData * );
105ArrayType * buildArray( const TypeData * );
[c0aa336]106AggregateDecl * buildAggregate( const TypeData *, std::list< Attribute * > );
[43c89a7]107ReferenceToType * buildComAggInst( const TypeData *, std::list< Attribute * > attributes );
[413ad05]108ReferenceToType * buildAggInst( const TypeData * );
109NamedTypeDecl * buildSymbolic( const TypeData *, const std::string &name, DeclarationNode::StorageClass sc );
110TypeDecl * buildVariable( const TypeData * );
[c0aa336]111EnumDecl * buildEnum( const TypeData *, std::list< Attribute * > );
[413ad05]112TypeInstType * buildSymbolicInst( const TypeData * );
113TupleType * buildTuple( const TypeData * );
114TypeofType * buildTypeof( const TypeData * );
[44a81853]115Declaration * buildDecl( const TypeData *, const std::string &, DeclarationNode::StorageClass, Expression *, bool isInline, bool isNoreturn, LinkageSpec::Spec, ConstantExpr *asmName, Initializer * init = nullptr, std::list< class Attribute * > attributes = std::list< class Attribute * >() );
[413ad05]116FunctionType * buildFunction( const TypeData * );
[3a5131ed]117void buildKRFunction( const TypeData::Function_t & function );
[413ad05]118
[c8ffe20b]119#endif // TYPEDATA_H
[b87a5ed]120
121// Local Variables: //
122// tab-width: 4 //
123// mode: c++ //
124// compile-command: "make install" //
125// End: //
Note: See TracBrowser for help on using the repository browser.