source: src/Parser/TypeData.h@ ddcfb88

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors deferred_resn demangler enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new with_gc
Last change on this file since ddcfb88 was b6424d9, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

refactor copyStorageClasses

  • Property mode set to 100644
File size: 3.7 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// 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
12// Last Modified On : Sat Sep 10 09:42:54 2016
13// Update Count : 118
14//
15
16#ifndef TYPEDATA_H
17#define TYPEDATA_H
18
19#include <bitset>
20
21#include "ParseNode.h"
22#include "SynTree/Type.h"
23
24struct TypeData {
25 enum Kind { Unknown, Basic, Pointer, Array, Function, Aggregate, AggregateInst,
26 Enum, EnumConstant, Symbolic, SymbolicInst, Variable, Tuple, Typeof, Builtin, Attr };
27
28 struct Basic_t {
29 std::list< DeclarationNode::BasicType > typeSpec;
30 std::list< DeclarationNode::Modifier > modifiers;
31 };
32
33 struct Aggregate_t {
34 DeclarationNode::Aggregate kind;
35 std::string name;
36 DeclarationNode * params;
37 ExpressionNode * actuals; // holds actual parameters later applied to AggInst
38 DeclarationNode * fields;
39 bool body;
40 };
41
42 struct AggInst_t {
43 TypeData * aggregate;
44 ExpressionNode * params;
45 };
46
47 struct Array_t {
48 ExpressionNode * dimension;
49 bool isVarLen;
50 bool isStatic;
51 };
52
53 struct Enumeration_t {
54 std::string name;
55 DeclarationNode * constants;
56 };
57
58 struct Function_t {
59 DeclarationNode * params;
60 DeclarationNode * idList; // old-style
61 DeclarationNode * oldDeclList;
62 StatementNode * body;
63 bool hasBody;
64 bool newStyle;
65 };
66
67 struct Symbolic_t {
68 std::string name;
69 bool isTypedef; // false => TYPEGENname, true => TYPEDEFname
70 DeclarationNode * params;
71 ExpressionNode * actuals;
72 DeclarationNode * assertions;
73 };
74
75 // struct Tuple_t {
76 // DeclarationNode * members;
77 // };
78
79 // struct Typeof_t {
80 // ExpressionNode * expr;
81 // };
82
83 // struct Builtin_t {
84 // DeclarationNode::BuiltinType type;
85 // };
86
87 Kind kind;
88 TypeData * base;
89 typedef std::bitset< DeclarationNode::NoOfQualifier > Qualifiers;
90 Qualifiers qualifiers;
91 typedef std::bitset< DeclarationNode::NoStorageClass > StorageClasses;
92 StorageClasses storageclasses;
93 DeclarationNode * forall;
94
95 Basic_t basic;
96 Aggregate_t aggregate;
97 AggInst_t aggInst;
98 Array_t array;
99 Enumeration_t enumeration;
100 // Variable_t variable;
101 Function_t function;
102 Symbolic_t symbolic;
103 DeclarationNode * tuple;
104 ExpressionNode * typeexpr;
105 // Attr_t attr;
106 // DeclarationNode::BuiltinType builtin;
107
108 TypeData( Kind k = Unknown );
109 ~TypeData();
110 void print( std::ostream &, int indent = 0 ) const;
111 TypeData * clone() const;
112};
113
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
132#endif // TYPEDATA_H
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.