source: src/Parser/TypeData.h @ e693572

Last change on this file since e693572 was 67467a3, checked in by Andrew Beach <ajbeach@…>, 4 months ago

Fused TypeData::Enum and TypeData::Aggregate, an enumeration is a kind of aggregate after all. There will always be some unused fields in Aggregate_t (but less in TypeData? overall) but the code is almost always simpler.

  • Property mode set to 100644
File size: 6.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//
[148f7290]7// TypeData.h --
[b87a5ed]8//
[fec3e9a]9// Author           : Peter A. Buhr
[b87a5ed]10// Created On       : Sat May 16 15:18:36 2015
[4eb3a7c5]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Thu Feb 22 16:30:31 2024
13// Update Count     : 210
[b87a5ed]14//
15
[6b0b624]16#pragma once
[51b7345]17
[c468150]18#include <iosfwd>                                   // for ostream
19#include <list>                                     // for list
20#include <string>                                   // for string
[d180746]21
[c468150]22#include "AST/Type.hpp"                             // for Type
23#include "DeclarationNode.h"                        // for DeclarationNode
[51b7345]24
[c8ffe20b]25struct TypeData {
[e048ece]26        // Type flags used in this type, and there names (harmonize with implementation).
27        enum BasicType {
28                Void, Bool, Char, Int, Int128,
29                Float, Double, LongDouble, uuFloat80, uuFloat128,
30                uFloat16, uFloat32, uFloat32x, uFloat64, uFloat64x, uFloat128, uFloat128x,
31                NoBasicType
32        };
33        static const char * basicTypeNames[];
34        enum ComplexType { Complex, NoComplexType, Imaginary };
35        // Imaginary unsupported => parse, but make invisible and print error message
36        static const char * complexTypeNames[];
37        enum Signedness { Signed, Unsigned, NoSignedness };
38        static const char * signednessNames[];
39        enum Length { Short, Long, LongLong, NoLength };
40        static const char * lengthNames[];
41        enum BuiltinType { Valist, AutoType, Zero, One, NoBuiltinType };
42        static const char * builtinTypeNames[];
43
[67467a3]44        enum Kind { Basic, Pointer, Reference, Array, Function, Aggregate, AggregateInst, EnumConstant, Symbolic,
[66406f3]45                                SymbolicInst, Tuple, Basetypeof, Typeof, Vtable, Builtin, GlobalScope, Qualified, Unknown };
[b87a5ed]46
47        struct Aggregate_t {
[bb7422a]48                ast::AggregateDecl::Aggregate kind;
[5509ff4]49                const std::string * name = nullptr;
[67467a3]50                // Polymorphics parameters. (Polymorphic types only.)
[5509ff4]51                DeclarationNode * params = nullptr;
[67467a3]52                // Arguments later applied to AggInst. (Polymorphic types only.)
53                ExpressionNode * actuals = nullptr;
54                // Only set if body is true. (Constants for enumerations.)
[5509ff4]55                DeclarationNode * fields = nullptr;
[4eb3a7c5]56                std::vector<ast::ptr<ast::Attribute>> attributes;
[67467a3]57                // Is this a declaration with a body (may have fields)?
[5d125e4]58                bool body;
[67467a3]59                // Is this type anonymous? (Name can still be set to generated name.)
[3d7e53b]60                bool anon;
[67467a3]61                // Is this a typed enumeration? Type may be stored in base.
62                bool typed;
63                EnumHiding hiding;
[b87a5ed]64        };
65
[bb7422a]66        struct AggInst_t {
[5509ff4]67                TypeData * aggregate = nullptr;
68                ExpressionNode * params = nullptr;
[43c89a7]69                bool hoistType;
[b87a5ed]70        };
71
72        struct Array_t {
[5509ff4]73                ExpressionNode * dimension = nullptr;
[b87a5ed]74                bool isVarLen;
75                bool isStatic;
76        };
77
78        struct Function_t {
[fec3e9a]79                mutable DeclarationNode * params = nullptr;             // mutables modified in buildKRFunction
80                mutable DeclarationNode * idList = nullptr;             // old-style
[5509ff4]81                mutable DeclarationNode * oldDeclList = nullptr;
82                StatementNode * body = nullptr;
[fec3e9a]83                ExpressionNode * withExprs = nullptr;                   // expressions from function's with_clause
[b87a5ed]84        };
85
86        struct Symbolic_t {
[5509ff4]87                const std::string * name = nullptr;
[721f17a]88                bool isTypedef;                                                                 // false => TYPEGENname, true => TYPEDEFname
[5509ff4]89                DeclarationNode * params = nullptr;
90                ExpressionNode * actuals = nullptr;
91                DeclarationNode * assertions = nullptr;
[b87a5ed]92        };
93
[f7e4db27]94        struct Qualified_t {                                                            // qualified type S.T
[5509ff4]95                TypeData * parent = nullptr;
96                TypeData * child = nullptr;
[c194661]97        };
98
[0b0f1dd]99        CodeLocation location;
100
[28307be]101        Kind kind;
[413ad05]102        TypeData * base;
[e048ece]103        BasicType basictype = NoBasicType;
104        ComplexType complextype = NoComplexType;
105        Signedness signedness = NoSignedness;
106        Length length = NoLength;
107        BuiltinType builtintype = NoBuiltinType;
[c3396e0]108
[bb7422a]109        ast::CV::Qualifiers qualifiers;
[5509ff4]110        DeclarationNode * forall = nullptr;
[413ad05]111
[c3396e0]112        Aggregate_t aggregate;
113        AggInst_t aggInst;
114        Array_t array;
115        Function_t function;
116        Symbolic_t symbolic;
[c194661]117        Qualified_t qualified;
[5509ff4]118        DeclarationNode * tuple = nullptr;
119        ExpressionNode * typeexpr = nullptr;
[b87a5ed]120
[413ad05]121        TypeData( Kind k = Unknown );
122        ~TypeData();
123        void print( std::ostream &, int indent = 0 ) const;
124        TypeData * clone() const;
[7de22b28]125
126        const std::string * leafName() const;
[af60383]127
128        TypeData * getLastBase();
129        void setLastBase( TypeData * );
[51b7345]130};
131
[6cef439]132
133TypeData * build_type_qualifier( ast::CV::Qualifiers );
[e048ece]134TypeData * build_basic_type( TypeData::BasicType );
135TypeData * build_complex_type( TypeData::ComplexType );
136TypeData * build_signedness( TypeData::Signedness );
137TypeData * build_builtin_type( TypeData::BuiltinType );
138TypeData * build_length( TypeData::Length );
[6cef439]139TypeData * build_forall( DeclarationNode * );
140TypeData * build_global_scope();
141TypeData * build_qualified_type( TypeData *, TypeData * );
142TypeData * build_typedef( const std::string * name );
143TypeData * build_type_gen( const std::string * name, ExpressionNode * params );
144TypeData * build_vtable_type( TypeData * );
145
[af60383]146TypeData * addQualifiers( TypeData * ltype, TypeData * rtype );
147TypeData * addType( TypeData * ltype, TypeData * rtype, std::vector<ast::ptr<ast::Attribute>> & );
[6cef439]148TypeData * addType( TypeData * ltype, TypeData * rtype );
[af60383]149TypeData * cloneBaseType( TypeData * type, TypeData * other );
150TypeData * makeNewBase( TypeData * type );
151
[6cef439]152
[bb7422a]153ast::Type * typebuild( const TypeData * );
[413ad05]154TypeData * typeextractAggregate( const TypeData * td, bool toplevel = true );
[bb7422a]155ast::CV::Qualifiers buildQualifiers( const TypeData * td );
156ast::Type * buildBasicType( const TypeData * );
157ast::PointerType * buildPointer( const TypeData * );
158ast::ArrayType * buildArray( const TypeData * );
159ast::ReferenceType * buildReference( const TypeData * );
160ast::AggregateDecl * buildAggregate( const TypeData *, std::vector<ast::ptr<ast::Attribute>> );
161ast::BaseInstType * buildComAggInst( const TypeData *, std::vector<ast::ptr<ast::Attribute>> && attributes, ast::Linkage::Spec linkage );
162ast::BaseInstType * buildAggInst( const TypeData * );
163ast::TypeDecl * buildVariable( const TypeData * );
164ast::EnumDecl * buildEnum( const TypeData *, std::vector<ast::ptr<ast::Attribute>> &&, ast::Linkage::Spec );
165ast::TypeInstType * buildSymbolicInst( const TypeData * );
166ast::TupleType * buildTuple( const TypeData * );
167ast::TypeofType * buildTypeof( const TypeData * );
168ast::VTableType * buildVtable( const TypeData * );
169ast::Decl * buildDecl(
170        const TypeData *, const std::string &, ast::Storage::Classes, ast::Expr *,
171        ast::Function::Specs funcSpec, ast::Linkage::Spec, ast::Expr * asmName,
172        ast::Init * init = nullptr, std::vector<ast::ptr<ast::Attribute>> && attributes = std::vector<ast::ptr<ast::Attribute>>() );
173ast::FunctionType * buildFunctionType( const TypeData * );
[3a5131ed]174void buildKRFunction( const TypeData::Function_t & function );
[413ad05]175
[6cef439]176static inline ast::Type * maybeMoveBuildType( TypeData * type ) {
177        ast::Type * ret = type ? typebuild( type ) : nullptr;
178        delete type;
179        return ret;
180}
181
[b87a5ed]182// Local Variables: //
183// tab-width: 4 //
184// mode: c++ //
185// compile-command: "make install" //
186// End: //
Note: See TracBrowser for help on using the repository browser.