source: src/Parser/TypeData.h@ 908cc83

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 908cc83 was 7d05e7e, checked in by Peter A. Buhr <pabuhr@…>, 9 years ago

fix error messages for declarations

  • Property mode set to 100644
File size: 3.6 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 : Fri Sep 9 23:20:55 2016
13// Update Count : 117
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 DeclarationNode * forall;
92
93 Basic_t basic;
94 Aggregate_t aggregate;
95 AggInst_t aggInst;
96 Array_t array;
97 Enumeration_t enumeration;
98 // Variable_t variable;
99 Function_t function;
100 Symbolic_t symbolic;
101 DeclarationNode * tuple;
102 ExpressionNode * typeexpr;
103 // Attr_t attr;
104 // DeclarationNode::BuiltinType builtin;
105
106 TypeData( Kind k = Unknown );
107 ~TypeData();
108 void print( std::ostream &, int indent = 0 ) const;
109 TypeData * clone() const;
110};
111
112Type * typebuild( const TypeData * );
113TypeData * typeextractAggregate( const TypeData * td, bool toplevel = true );
114Type::Qualifiers buildQualifiers( const TypeData * td );
115Type * buildBasicType( const TypeData * );
116PointerType * buildPointer( const TypeData * );
117ArrayType * buildArray( const TypeData * );
118AggregateDecl * buildAggregate( const TypeData * );
119ReferenceToType * buildAggInst( const TypeData * );
120NamedTypeDecl * buildSymbolic( const TypeData *, const std::string &name, DeclarationNode::StorageClass sc );
121TypeDecl * buildVariable( const TypeData * );
122EnumDecl * buildEnum( const TypeData * );
123TypeInstType * buildSymbolicInst( const TypeData * );
124TupleType * buildTuple( const TypeData * );
125TypeofType * buildTypeof( const TypeData * );
126AttrType * buildAttr( const TypeData * );
127Declaration * buildDecl( const TypeData *, std::string, DeclarationNode::StorageClass, Expression *, bool isInline, bool isNoreturn, LinkageSpec::Spec, Initializer * init = 0 );
128FunctionType * buildFunction( const TypeData * );
129
130#endif // TYPEDATA_H
131
132// Local Variables: //
133// tab-width: 4 //
134// mode: c++ //
135// compile-command: "make install" //
136// End: //
Note: See TracBrowser for help on using the repository browser.