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 | // RemoveInit.h --
|
---|
8 | //
|
---|
9 | // Author : Rob Schluntz
|
---|
10 | // Created On : Fri May 13 11:26:36 2016
|
---|
11 | // Last Modified By : Peter A. Buhr
|
---|
12 | // Last Modified On : Sat Jul 22 09:30:33 2017
|
---|
13 | // Update Count : 4
|
---|
14 | //
|
---|
15 |
|
---|
16 | #pragma once
|
---|
17 |
|
---|
18 | #include <list> // for list
|
---|
19 | #include <memory> // for shared_ptr
|
---|
20 | #include <string> // for string, allocator
|
---|
21 |
|
---|
22 | #include "SynTree/SynTree.h" // for Visitor Nodes
|
---|
23 |
|
---|
24 | // helper functions for initialization
|
---|
25 | namespace InitTweak {
|
---|
26 | FunctionDecl * isAssignment( Declaration * decl );
|
---|
27 | FunctionDecl * isDestructor( Declaration * decl );
|
---|
28 | FunctionDecl * isDefaultConstructor( Declaration * decl );
|
---|
29 | FunctionDecl * isCopyConstructor( Declaration * decl );
|
---|
30 | FunctionDecl * isCopyFunction( Declaration * decl, const std::string & fname );
|
---|
31 |
|
---|
32 | /// returns the base type of the first parameter to a constructor/destructor/assignment function
|
---|
33 | Type * getTypeofThis( FunctionType * ftype );
|
---|
34 |
|
---|
35 | /// returns the first parameter of a constructor/destructor/assignment function
|
---|
36 | ObjectDecl * getParamThis( FunctionType * ftype );
|
---|
37 |
|
---|
38 | /// generate a bitwise assignment operation.
|
---|
39 | ApplicationExpr * createBitwiseAssignment( Expression * dst, Expression * src );
|
---|
40 |
|
---|
41 | /// transform Initializer into an argument list that can be passed to a call expression
|
---|
42 | std::list< Expression * > makeInitList( Initializer * init );
|
---|
43 |
|
---|
44 | /// True if the resolver should try to construct dwt
|
---|
45 | bool tryConstruct( DeclarationWithType * dwt );
|
---|
46 |
|
---|
47 | /// True if the type can have a user-defined constructor
|
---|
48 | bool isConstructable( Type * t );
|
---|
49 |
|
---|
50 | /// True if the Initializer contains designations
|
---|
51 | bool isDesignated( Initializer * init );
|
---|
52 |
|
---|
53 | /// True if the ObjectDecl's Initializer nesting level is not deeper than the depth of its
|
---|
54 | /// type, where the depth of its type is the number of nested ArrayTypes + 1
|
---|
55 | bool checkInitDepth( ObjectDecl * objDecl );
|
---|
56 |
|
---|
57 | /// returns the declaration of the function called by the expr (must be ApplicationExpr or UntypedExpr)
|
---|
58 | DeclarationWithType * getFunction( Expression * expr );
|
---|
59 |
|
---|
60 | /// Non-Null if expr is a call expression whose target function is intrinsic
|
---|
61 | ApplicationExpr * isIntrinsicCallExpr( Expression * expr );
|
---|
62 |
|
---|
63 | /// True if stmt is a call statement where the function called is intrinsic and takes one parameter.
|
---|
64 | /// Intended to be used for default ctor/dtor calls, but might have use elsewhere.
|
---|
65 | /// Currently has assertions that make it less than fully general.
|
---|
66 | bool isIntrinsicSingleArgCallStmt( Statement * stmt );
|
---|
67 |
|
---|
68 | /// True if stmt is a call statement where the function called is intrinsic.
|
---|
69 | bool isIntrinsicCallStmt( Statement * stmt );
|
---|
70 |
|
---|
71 | /// get all Ctor/Dtor call expressions from a Statement
|
---|
72 | void collectCtorDtorCalls( Statement * stmt, std::list< Expression * > & matches );
|
---|
73 |
|
---|
74 | /// get the Ctor/Dtor call expression from a Statement that looks like a generated ctor/dtor call
|
---|
75 | Expression * getCtorDtorCall( Statement * stmt );
|
---|
76 |
|
---|
77 | /// returns the name of the function being called
|
---|
78 | std::string getFunctionName( Expression * expr );
|
---|
79 |
|
---|
80 | /// returns the argument to a call expression in position N indexed from 0
|
---|
81 | Expression *& getCallArg( Expression * callExpr, unsigned int pos );
|
---|
82 |
|
---|
83 | /// returns the base type of a PointerType or ArrayType, else returns NULL
|
---|
84 | Type * getPointerBase( Type * );
|
---|
85 |
|
---|
86 | /// returns the argument if it is a PointerType or ArrayType, else returns NULL
|
---|
87 | Type * isPointerType( Type * );
|
---|
88 |
|
---|
89 | /// returns true if expr is trivially a compile-time constant
|
---|
90 | bool isConstExpr( Expression * expr );
|
---|
91 | bool isConstExpr( Initializer * init );
|
---|
92 |
|
---|
93 | class InitExpander {
|
---|
94 | public:
|
---|
95 | // expand by stepping through init to get each list of arguments
|
---|
96 | InitExpander( Initializer * init );
|
---|
97 |
|
---|
98 | // always expand to expr
|
---|
99 | InitExpander( Expression * expr );
|
---|
100 |
|
---|
101 | // iterator-like interface
|
---|
102 | std::list< Expression * > operator*();
|
---|
103 | InitExpander & operator++();
|
---|
104 |
|
---|
105 | // builds statement which has the same semantics as a C-style list initializer
|
---|
106 | // (for array initializers) using callExpr as the base expression to perform initialization
|
---|
107 | Statement * buildListInit( UntypedExpr * callExpr );
|
---|
108 | void addArrayIndex( Expression * index, Expression * dimension );
|
---|
109 | void clearArrayIndices();
|
---|
110 | bool addReference();
|
---|
111 |
|
---|
112 | class ExpanderImpl;
|
---|
113 |
|
---|
114 | typedef std::list< Expression * > IndexList;
|
---|
115 | private:
|
---|
116 | std::shared_ptr< ExpanderImpl > expander;
|
---|
117 | std::list< Expression * > cur;
|
---|
118 |
|
---|
119 | // invariant: list of size 2N (elements come in pairs [index, dimension])
|
---|
120 | IndexList indices;
|
---|
121 | };
|
---|
122 | } // namespace
|
---|
123 |
|
---|
124 | // Local Variables: //
|
---|
125 | // tab-width: 4 //
|
---|
126 | // mode: c++ //
|
---|
127 | // compile-command: "make install" //
|
---|
128 | // End: //
|
---|