| 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 <deque>
 | 
|---|
| 19 | #include <utility>        // for move
 | 
|---|
| 20 | #include <vector>
 | 
|---|
| 21 | 
 | 
|---|
| 22 | #include "ParseNode.hpp"
 | 
|---|
| 23 | #include "Node.hpp"       // for ptr
 | 
|---|
| 24 | #include "Visitor.hpp"
 | 
|---|
| 25 | 
 | 
|---|
| 26 | // Must be included in *all* AST classes; should be #undef'd at the end of the file
 | 
|---|
| 27 | #define MUTATE_FRIEND \
 | 
|---|
| 28 |     template<typename node_t> friend node_t * mutate(const node_t * node); \
 | 
|---|
| 29 |         template<typename node_t> friend node_t * shallowCopy(const node_t * node);
 | 
|---|
| 30 | 
 | 
|---|
| 31 | namespace ast {
 | 
|---|
| 32 | 
 | 
|---|
| 33 | class Expr;
 | 
|---|
| 34 | class Stmt;
 | 
|---|
| 35 | 
 | 
|---|
| 36 | /// List of designator (NameExpr, VariableExpr, and ConstantExpr) expressions that specify an
 | 
|---|
| 37 | /// object being initialized
 | 
|---|
| 38 | class Designation final : public ParseNode {
 | 
|---|
| 39 | public:
 | 
|---|
| 40 |         std::deque<ptr<Expr>> designators;
 | 
|---|
| 41 | 
 | 
|---|
| 42 |         Designation( const CodeLocation& loc, std::deque<ptr<Expr>>&& ds = {} )
 | 
|---|
| 43 |         : ParseNode( loc ), designators( std::move(ds) ) {}
 | 
|---|
| 44 | 
 | 
|---|
| 45 |         const Designation* accept( Visitor& v ) const override { return v.visit( this ); }
 | 
|---|
| 46 | private:
 | 
|---|
| 47 |         Designation* clone() const override { return new Designation{ *this }; }
 | 
|---|
| 48 |         MUTATE_FRIEND
 | 
|---|
| 49 | };
 | 
|---|
| 50 | 
 | 
|---|
| 51 | /// Flag for whether to construct from initialzier
 | 
|---|
| 52 | enum ConstructFlag { NoConstruct, MaybeConstruct };
 | 
|---|
| 53 | 
 | 
|---|
| 54 | /// Object initializer base class
 | 
|---|
| 55 | class Init : public ParseNode {
 | 
|---|
| 56 | public:
 | 
|---|
| 57 |         ConstructFlag maybeConstructed;
 | 
|---|
| 58 | 
 | 
|---|
| 59 |         Init( const CodeLocation & loc, ConstructFlag mc ) : ParseNode( loc ), maybeConstructed( mc ) {}
 | 
|---|
| 60 | 
 | 
|---|
| 61 |         const Init * accept( Visitor & v ) const override = 0;
 | 
|---|
| 62 | private:
 | 
|---|
| 63 |         Init * clone() const override = 0;
 | 
|---|
| 64 |         MUTATE_FRIEND
 | 
|---|
| 65 | };
 | 
|---|
| 66 | 
 | 
|---|
| 67 | /// Initializer for a common object: `int x = 4`
 | 
|---|
| 68 | class SingleInit final : public Init {
 | 
|---|
| 69 | public:
 | 
|---|
| 70 |         /// value to initialize to. Must be compile-time constant.
 | 
|---|
| 71 |         ptr<Expr> value;
 | 
|---|
| 72 | 
 | 
|---|
| 73 |         SingleInit( const CodeLocation & loc, const Expr * val, ConstructFlag mc = NoConstruct )
 | 
|---|
| 74 |         : Init( loc, mc ), value( val ) {}
 | 
|---|
| 75 | 
 | 
|---|
| 76 |         const Init * accept( Visitor & v ) const override { return v.visit( this ); }
 | 
|---|
| 77 | private:
 | 
|---|
| 78 |         SingleInit * clone() const override { return new SingleInit{ *this }; }
 | 
|---|
| 79 |         MUTATE_FRIEND
 | 
|---|
| 80 | };
 | 
|---|
| 81 | 
 | 
|---|
| 82 | /// Initializer recursively composed of a list of initializers.
 | 
|---|
| 83 | /// Used to initialize an array or aggregate: `int a[] = { 1, 2, 3 }`
 | 
|---|
| 84 | class ListInit final : public Init {
 | 
|---|
| 85 | public:
 | 
|---|
| 86 |         /// list of initializers
 | 
|---|
| 87 |         std::vector<ptr<Init>> initializers;
 | 
|---|
| 88 |         /// list of designators; order/length is consistent with initializers
 | 
|---|
| 89 |         std::vector<ptr<Designation>> designations;
 | 
|---|
| 90 | 
 | 
|---|
| 91 |         ListInit( const CodeLocation & loc, std::vector<ptr<Init>> && is,
 | 
|---|
| 92 |                 std::vector<ptr<Designation>> && ds = {}, ConstructFlag mc = NoConstruct );
 | 
|---|
| 93 | 
 | 
|---|
| 94 |         using iterator = std::vector<ptr<Init>>::iterator;
 | 
|---|
| 95 |         using const_iterator = std::vector<ptr<Init>>::const_iterator;
 | 
|---|
| 96 |         iterator begin() { return initializers.begin(); }
 | 
|---|
| 97 |         iterator end() { return initializers.end(); }
 | 
|---|
| 98 |         const_iterator begin() const { return initializers.begin(); }
 | 
|---|
| 99 |         const_iterator end() const { return initializers.end(); }
 | 
|---|
| 100 | 
 | 
|---|
| 101 |         const Init * accept( Visitor & v ) const override { return v.visit( this ); }
 | 
|---|
| 102 | private:
 | 
|---|
| 103 |         ListInit * clone() const override { return new ListInit{ *this }; }
 | 
|---|
| 104 |         MUTATE_FRIEND
 | 
|---|
| 105 | };
 | 
|---|
| 106 | 
 | 
|---|
| 107 | /// Either a constructor expression or a C-style initializer.
 | 
|---|
| 108 | /// Should not be necessary to create manually; instead set `maybeConstructed` true on `SingleInit`
 | 
|---|
| 109 | /// or `ListInit` if the object should be constructed.
 | 
|---|
| 110 | class ConstructorInit final : public Init {
 | 
|---|
| 111 | public:
 | 
|---|
| 112 |         ptr<Stmt> ctor;
 | 
|---|
| 113 |         ptr<Stmt> dtor;
 | 
|---|
| 114 |         /// C-style initializer made up of SingleInit/ListInit nodes to use as a fallback if an
 | 
|---|
| 115 |         /// appropriate constructor definition is not found by the resolver.
 | 
|---|
| 116 |         ptr<Init> init;
 | 
|---|
| 117 | 
 | 
|---|
| 118 |         ConstructorInit( 
 | 
|---|
| 119 |                 const CodeLocation & loc, const Stmt * ctor, const Stmt * dtor, const Init * init )
 | 
|---|
| 120 |         : Init( loc, MaybeConstruct ), ctor( ctor ), dtor( dtor ), init( init ) {}
 | 
|---|
| 121 | 
 | 
|---|
| 122 |         const Init * accept( Visitor & v ) const override { return v.visit( this ); }
 | 
|---|
| 123 | private:
 | 
|---|
| 124 |         ConstructorInit * clone() const override { return new ConstructorInit{ *this }; }
 | 
|---|
| 125 |         MUTATE_FRIEND
 | 
|---|
| 126 | };
 | 
|---|
| 127 | 
 | 
|---|
| 128 | }
 | 
|---|
| 129 | 
 | 
|---|
| 130 | #undef MUTATE_FRIEND
 | 
|---|
| 131 | 
 | 
|---|
| 132 | // Local Variables: //
 | 
|---|
| 133 | // tab-width: 4 //
 | 
|---|
| 134 | // mode: c++ //
 | 
|---|
| 135 | // compile-command: "make install" //
 | 
|---|
| 136 | // End: //
 | 
|---|