Changeset 1531ef5


Ignore:
Timestamp:
May 10, 2019, 3:26:26 PM (5 years ago)
Author:
Thierry Delisle <tdelisle@…>
Branches:
ADT, arm-eh, ast-experimental, cleanup-dtors, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
Children:
18d4dbd, 4ab0669, b78129a
Parents:
cdcd53dc (diff), 7e89526 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of plg.uwaterloo.ca:software/cfa/cfa-cc

Location:
src/AST
Files:
3 added
4 edited

Legend:

Unmodified
Added
Removed
  • src/AST/Decl.cpp

    rcdcd53dc r1531ef5  
    1414//
    1515
    16 #include <cassert>        // for assert, strict_dynamic_cast
     16#include "Decl.hpp"
     17
     18#include <cassert>             // for assert, strict_dynamic_cast
     19#include <string>
    1720#include <unordered_map>
    1821
    19 #include "Decl.hpp"
    20 
    21 #include "Fwd.hpp"        // for UniqueId
     22#include "Fwd.hpp"             // for UniqueId
    2223#include "Init.hpp"
    23 #include "Node.hpp"       // for readonly
     24#include "Node.hpp"            // for readonly
     25#include "Parser/ParseNode.h"  // for DeclarationNode
    2426
    2527namespace ast {
     
    4143        if ( i != idMap.end() ) return i->second;
    4244        return {};
     45}
     46
     47// --- TypeDecl
     48
     49std::string TypeDecl::typeString() const {
     50        static const std::string kindNames[] = { "object type", "function type", "tuple type" };
     51        assertf( sizeof(kindNames)/sizeof(kindNames[0]) == DeclarationNode::NoTypeClass-1,
     52                "typeString: kindNames is out of sync." );
     53        assertf( kind < sizeof(kindNames)/sizeof(kindNames[0]), "TypeDecl's kind is out of bounds." );
     54        return (sized ? "sized " : "") + kindNames[ kind ];
     55}
     56
     57std::string TypeDecl::genTypeString() const {
     58        static const std::string kindNames[] = { "dtype", "ftype", "ttype" };
     59        assertf( sizeof(kindNames)/sizeof(kindNames[0]) == DeclarationNode::NoTypeClass-1, "genTypeString: kindNames is out of sync." );
     60        assertf( kind < sizeof(kindNames)/sizeof(kindNames[0]), "TypeDecl's kind is out of bounds." );
     61        return kindNames[ kind ];
    4362}
    4463
  • src/AST/Decl.hpp

    rcdcd53dc r1531ef5  
    115115};
    116116
     117/// Base class for named type aliases
     118class NamedTypeDecl : public Decl {
     119public:
     120        ptr<Type> base;
     121        std::vector<ptr<TypeDecl>> parameters;
     122        std::vector<ptr<DeclWithType>> assertions;
     123
     124        NamedTypeDecl( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
     125                Type* b, Linkage::Spec spec = Linkage::Cforall )
     126        : Decl( loc, name, storage, spec ), base( b ), parameters(), assertions() {}
     127
     128        /// Produces a name for the kind of alias
     129        virtual std::string typeString() const = 0;
     130
     131private:
     132        NamedTypeDecl* clone() const override = 0;
     133};
     134
     135/// Cforall type variable: `dtype T`
     136class TypeDecl final : public NamedTypeDecl {
     137public:
     138        /// type variable variants. otype is a specialized dtype
     139        enum Kind { Dtype, Ftype, Ttype, NUMBER_OF_KINDS } kind;
     140        bool sized;
     141        ptr<Type> init;
     142
     143        /// Data extracted from a type decl
     144        struct Data {
     145                Kind kind;
     146                bool isComplete;
     147
     148                Data() : kind( (Kind)-1 ), isComplete( false ) {}
     149                Data( TypeDecl* d ) : kind( d->kind ), isComplete( d->sized ) {}
     150                Data( Kind k, bool c ) : kind( k ), isComplete( c ) {}
     151                Data( const Data& d1, const Data& d2 )
     152                : kind( d1.kind ), isComplete( d1.isComplete || d2.isComplete ) {}
     153
     154                bool operator== ( const Data& o ) const {
     155                        return kind == o.kind && isComplete == o.isComplete;
     156                }
     157                bool operator!= ( const Data& o ) const { return !(*this == o); }
     158        };
     159
     160        TypeDecl( const CodeLocation& loc, const std::string& name, Storage::Classes storage, Type* b,
     161                Kind k, bool s, Type* i = nullptr )
     162        : NamedTypeDecl( loc, name, storage, b ), kind( k ), sized( k == Ttype || s ), init( i ) {}
     163
     164        std::string typeString() const override;
     165        /// Produces a name for generated code
     166        std::string genTypeString() const;
     167
     168        Decl* accept( Visitor& v ) override { return v.visit( this ); }
     169private:
     170        TypeDecl* clone() const override { return new TypeDecl{ *this }; }
     171};
     172
     173/// C-style typedef `typedef Foo Bar`
     174class TypedefDecl final : public NamedTypeDecl {
     175public:
     176        TypedefDecl( const CodeLocation& loc, const std::string& name, Storage::Classes storage,
     177                Type* b, Linkage::Spec spec = Linkage::Cforall )
     178        : NamedTypeDecl( loc, name, storage, b, spec ) {}
     179
     180        std::string typeString() const override { return "typedef"; }
     181
     182        Decl* accept( Visitor& v ) override { return v.visit( this ); }
     183private:
     184        TypedefDecl* clone() const override { return new TypedefDecl{ *this }; }
     185};
     186
    117187/// Aggregate type declaration base class
    118188class AggregateDecl : public Decl {
  • src/AST/Init.hpp

    rcdcd53dc r1531ef5  
     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// Init.hpp --
     8//
     9// Author           : Aaron B. Moss
     10// Created On       : Fri May 10 10:30:00 2019
     11// Last Modified By : Aaron B. Moss
     12// Created On       : Fri May 10 10:30:00 2019
     13// Update Count     : 1
     14//
     15
     16#pragma once
     17
     18#include <utility>        // for move
     19#include <vector>
     20
     21#include "ParseNode.hpp"
     22#include "Node.hpp"       // for ptr
     23#include "Visitor.hpp"
     24
     25namespace ast {
     26
     27class Expr;
     28class Stmt;
     29
     30/// List of designator (NameExpr, VariableExpr, and ConstantExpr) expressions that specify an
     31/// object being initialized
     32class Designation final : public ParseNode {
     33public:
     34        std::vector<ptr<Expr>> designators;
     35
     36        Designation( const CodeLocation& loc, std::vector<ptr<Expr>>&& ds = {} )
     37        : ParseNode( loc ), designators( std::move(ds) ) {}
     38
     39        Designation* accept( Visitor& v ) override { return v.visit( this ); }
     40private:
     41        Designation* clone() const override { return new Designation{ *this }; }
     42};
     43
     44/// Object initializer base class
     45class Init : public ParseNode {
     46public:
     47        bool maybeConstructed;
     48
     49        Init( const CodeLocation& loc, bool mc ) : ParseNode( loc ), maybeConstructed( mc ) {}
     50
     51        virtual Init* accept( Visitor& v ) override = 0;
     52private:
     53        virtual Init* clone() const override = 0;
     54};
     55
     56/// Initializer for a common object: `int x = 4`
     57class SingleInit final : public Init {
     58public:
     59        /// value to initialize to. Must be compile-time constant.
     60        ptr<Expr> value;
     61
     62        SingleInit( const CodeLocation& loc, Expr* val, bool mc = false )
     63        : Init( loc, mc ), value( val ) {}
     64
     65        Init* accept( Visitor& v ) override { return v.visit( this ); }
     66private:
     67        SingleInit* clone() const override { return new SingleInit{ *this }; }
     68};
     69
     70/// Initializer recursively composed of a list of initializers.
     71/// Used to initialize an array or aggregate: `int a[] = { 1, 2, 3 }`
     72class ListInit final : public Init {
     73public:
     74        /// list of initializers
     75        std::vector<ptr<Init>> initializers;
     76        /// list of designators; order/length is consistent with initializers
     77        std::vector<ptr<Designation>> designations;
     78
     79        ListInit( const CodeLocation& loc, std::vector<ptr<Init>>&& is,
     80                std::vector<ptr<Designation>>&& ds = {}, bool mc = false );
     81       
     82        using iterator = std::vector<ptr<Init>>::iterator;
     83        using const_iterator = std::vector<ptr<Init>>::const_iterator;
     84        iterator begin() { return initializers.begin(); }
     85        iterator end() { return initializers.end(); }
     86        const_iterator begin() const { return initializers.begin(); }
     87        const_iterator end() const { return initializers.end(); }
     88
     89        Init* accept( Visitor& v ) override { return v.visit( this ); }
     90private:
     91        ListInit* clone() const override { return new ListInit{ *this }; }
     92};
     93
     94/// Either a constructor expression or a C-style initializer.
     95/// Should not be necessary to create manually; instead set `maybeConstructed` true on `SingleInit`
     96/// or `ListInit` if the object should be constructed.
     97class ConstructorInit final : public Init {
     98public:
     99        ptr<Stmt> ctor;
     100        ptr<Stmt> dtor;
     101        /// C-style initializer made up of SingleInit/ListInit nodes to use as a fallback if an
     102        /// appropriate constructor definition is not found by the resolver.
     103        ptr<Init> init;
     104
     105        ConstructorInit( const CodeLocation& loc, Stmt* ctor, Stmt* dtor, Init* init )
     106        : Init( loc, true ), ctor( ctor ), dtor( dtor ), init( init ) {}
     107
     108        Init* accept( Visitor& v ) override { return v.visit( this ); }
     109private:
     110        ConstructorInit* clone() const override { return new ConstructorInit{ *this }; }
     111};
     112
     113}
     114
     115// Local Variables: //
     116// tab-width: 4 //
     117// mode: c++ //
     118// compile-command: "make install" //
     119// End: //
  • src/AST/porting.md

    rcdcd53dc r1531ef5  
    8989  * allows `newObject` as just default settings
    9090
     91`TypeDecl`
     92* stripped `isComplete()` accessor in favour of direct access to `sized`
     93
    9194`EnumDecl`
    9295* **TODO** rebuild `eval` for new AST (re: `valueOf` implementation)
Note: See TracChangeset for help on using the changeset viewer.