[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 | //
|
---|
[0caaa6a] | 7 | // ExpressionNode.cc --
|
---|
| 8 | //
|
---|
[b87a5ed] | 9 | // Author : Rodolfo G. Esteves
|
---|
| 10 | // Created On : Sat May 16 13:17:07 2015
|
---|
[ac10576] | 11 | // Last Modified By : Andrew Beach
|
---|
| 12 | // Last Modified On : Tus Jul 18 10:08:00 2017
|
---|
| 13 | // Update Count : 550
|
---|
[0caaa6a] | 14 | //
|
---|
[b87a5ed] | 15 |
|
---|
[51b73452] | 16 | #include <cassert>
|
---|
| 17 | #include <cctype>
|
---|
[7bf7fb9] | 18 | #include <climits>
|
---|
| 19 | #include <cstdio>
|
---|
[51b73452] | 20 | #include <algorithm>
|
---|
[59db689] | 21 | #include <sstream>
|
---|
[51b73452] | 22 |
|
---|
| 23 | #include "ParseNode.h"
|
---|
[630a82a] | 24 | #include "TypeData.h"
|
---|
[51b73452] | 25 | #include "SynTree/Constant.h"
|
---|
| 26 | #include "SynTree/Expression.h"
|
---|
[630a82a] | 27 | #include "SynTree/Declaration.h"
|
---|
[d3b7937] | 28 | #include "Common/UnimplementedError.h"
|
---|
[a67b60e] | 29 | #include "parserutility.h"
|
---|
[d3b7937] | 30 | #include "Common/utility.h"
|
---|
[51b73452] | 31 |
|
---|
| 32 | using namespace std;
|
---|
| 33 |
|
---|
[cd623a4] | 34 | //##############################################################################
|
---|
| 35 |
|
---|
[7bf7fb9] | 36 | // Difficult to separate extra parts of constants during lexing because actions are not allow in the middle of patterns:
|
---|
| 37 | //
|
---|
| 38 | // prefix action constant action suffix
|
---|
| 39 | //
|
---|
| 40 | // Alternatively, breaking a pattern using BEGIN does not work if the following pattern can be empty:
|
---|
| 41 | //
|
---|
| 42 | // constant BEGIN CONT ...
|
---|
| 43 | // <CONT>(...)? BEGIN 0 ... // possible empty suffix
|
---|
| 44 | //
|
---|
| 45 | // because the CONT rule is NOT triggered if the pattern is empty. Hence, constants are reparsed here to determine their
|
---|
| 46 | // type.
|
---|
| 47 |
|
---|
[ac10576] | 48 | Type::Qualifiers noQualifiers; // no qualifiers on constants
|
---|
[7bf7fb9] | 49 |
|
---|
| 50 | static inline bool checkU( char c ) { return c == 'u' || c == 'U'; }
|
---|
| 51 | static inline bool checkL( char c ) { return c == 'l' || c == 'L'; }
|
---|
| 52 | static inline bool checkF( char c ) { return c == 'f' || c == 'F'; }
|
---|
| 53 | static inline bool checkD( char c ) { return c == 'd' || c == 'D'; }
|
---|
| 54 | static inline bool checkI( char c ) { return c == 'i' || c == 'I'; }
|
---|
| 55 | static inline bool checkX( char c ) { return c == 'x' || c == 'X'; }
|
---|
| 56 |
|
---|
[ac71a86] | 57 | Expression *build_constantInteger( const std::string & str ) {
|
---|
[7bf7fb9] | 58 | static const BasicType::Kind kind[2][3] = {
|
---|
| 59 | { BasicType::SignedInt, BasicType::LongSignedInt, BasicType::LongLongSignedInt },
|
---|
| 60 | { BasicType::UnsignedInt, BasicType::LongUnsignedInt, BasicType::LongLongUnsignedInt },
|
---|
| 61 | };
|
---|
| 62 | bool dec = true, Unsigned = false; // decimal, unsigned constant
|
---|
| 63 | int size; // 0 => int, 1 => long, 2 => long long
|
---|
[d56e5bc] | 64 | unsigned long long int v; // converted integral value
|
---|
[7bf7fb9] | 65 | size_t last = str.length() - 1; // last character of constant
|
---|
| 66 |
|
---|
| 67 | if ( str[0] == '0' ) { // octal/hex constant ?
|
---|
| 68 | dec = false;
|
---|
| 69 | if ( last != 0 && checkX( str[1] ) ) { // hex constant ?
|
---|
| 70 | sscanf( (char *)str.c_str(), "%llx", &v );
|
---|
| 71 | //printf( "%llx %llu\n", v, v );
|
---|
| 72 | } else { // octal constant
|
---|
| 73 | sscanf( (char *)str.c_str(), "%llo", &v );
|
---|
| 74 | //printf( "%llo %llu\n", v, v );
|
---|
| 75 | } // if
|
---|
| 76 | } else { // decimal constant ?
|
---|
| 77 | sscanf( (char *)str.c_str(), "%llu", &v );
|
---|
| 78 | //printf( "%llu %llu\n", v, v );
|
---|
| 79 | } // if
|
---|
| 80 |
|
---|
| 81 | if ( v <= INT_MAX ) { // signed int
|
---|
| 82 | size = 0;
|
---|
| 83 | } else if ( v <= UINT_MAX && ! dec ) { // unsigned int
|
---|
| 84 | size = 0;
|
---|
| 85 | Unsigned = true; // unsigned
|
---|
| 86 | } else if ( v <= LONG_MAX ) { // signed long int
|
---|
| 87 | size = 1;
|
---|
| 88 | } else if ( v <= ULONG_MAX && ( ! dec || LONG_MAX == LLONG_MAX ) ) { // signed long int
|
---|
| 89 | size = 1;
|
---|
| 90 | Unsigned = true; // unsigned long int
|
---|
| 91 | } else if ( v <= LLONG_MAX ) { // signed long long int
|
---|
| 92 | size = 2;
|
---|
| 93 | } else { // unsigned long long int
|
---|
| 94 | size = 2;
|
---|
| 95 | Unsigned = true; // unsigned long long int
|
---|
| 96 | } // if
|
---|
| 97 |
|
---|
| 98 | if ( checkU( str[last] ) ) { // suffix 'u' ?
|
---|
| 99 | Unsigned = true;
|
---|
| 100 | if ( last > 0 && checkL( str[last - 1] ) ) { // suffix 'l' ?
|
---|
| 101 | size = 1;
|
---|
| 102 | if ( last > 1 && checkL( str[last - 2] ) ) { // suffix 'll' ?
|
---|
| 103 | size = 2;
|
---|
| 104 | } // if
|
---|
| 105 | } // if
|
---|
| 106 | } else if ( checkL( str[ last ] ) ) { // suffix 'l' ?
|
---|
| 107 | size = 1;
|
---|
| 108 | if ( last > 0 && checkL( str[last - 1] ) ) { // suffix 'll' ?
|
---|
| 109 | size = 2;
|
---|
| 110 | if ( last > 1 && checkU( str[last - 2] ) ) { // suffix 'u' ?
|
---|
| 111 | Unsigned = true;
|
---|
| 112 | } // if
|
---|
| 113 | } else {
|
---|
| 114 | if ( last > 0 && checkU( str[last - 1] ) ) { // suffix 'u' ?
|
---|
| 115 | Unsigned = true;
|
---|
| 116 | } // if
|
---|
| 117 | } // if
|
---|
| 118 | } // if
|
---|
| 119 |
|
---|
[ac10576] | 120 | Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[Unsigned][size] ), str, v ) );
|
---|
[ab57786] | 121 | delete &str; // created by lex
|
---|
| 122 | return ret;
|
---|
[7bf7fb9] | 123 | } // build_constantInteger
|
---|
[51b73452] | 124 |
|
---|
[ac71a86] | 125 | Expression *build_constantFloat( const std::string & str ) {
|
---|
[7bf7fb9] | 126 | static const BasicType::Kind kind[2][3] = {
|
---|
| 127 | { BasicType::Float, BasicType::Double, BasicType::LongDouble },
|
---|
| 128 | { BasicType::FloatComplex, BasicType::DoubleComplex, BasicType::LongDoubleComplex },
|
---|
| 129 | };
|
---|
[59c24b6] | 130 |
|
---|
[7bf7fb9] | 131 | bool complx = false; // real, complex
|
---|
| 132 | int size = 1; // 0 => float, 1 => double (default), 2 => long double
|
---|
| 133 | // floating-point constant has minimum of 2 characters: 1. or .1
|
---|
| 134 | size_t last = str.length() - 1;
|
---|
[d56e5bc] | 135 | double v;
|
---|
| 136 |
|
---|
| 137 | sscanf( str.c_str(), "%lg", &v );
|
---|
[51b73452] | 138 |
|
---|
[7bf7fb9] | 139 | if ( checkI( str[last] ) ) { // imaginary ?
|
---|
| 140 | complx = true;
|
---|
| 141 | last -= 1; // backup one character
|
---|
| 142 | } // if
|
---|
[0caaa6a] | 143 |
|
---|
[7bf7fb9] | 144 | if ( checkF( str[last] ) ) { // float ?
|
---|
| 145 | size = 0;
|
---|
| 146 | } else if ( checkD( str[last] ) ) { // double ?
|
---|
| 147 | size = 1;
|
---|
| 148 | } else if ( checkL( str[last] ) ) { // long double ?
|
---|
| 149 | size = 2;
|
---|
| 150 | } // if
|
---|
| 151 | if ( ! complx && checkI( str[last - 1] ) ) { // imaginary ?
|
---|
| 152 | complx = true;
|
---|
| 153 | } // if
|
---|
[51b73452] | 154 |
|
---|
[ac10576] | 155 | Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, kind[complx][size] ), str, v ) );
|
---|
[ab57786] | 156 | delete &str; // created by lex
|
---|
| 157 | return ret;
|
---|
[7bf7fb9] | 158 | } // build_constantFloat
|
---|
[51b73452] | 159 |
|
---|
[ac71a86] | 160 | Expression *build_constantChar( const std::string & str ) {
|
---|
[ac10576] | 161 | Expression * ret = new ConstantExpr( Constant( new BasicType( noQualifiers, BasicType::Char ), str, (unsigned long long int)(unsigned char)str[1] ) );
|
---|
[ab57786] | 162 | delete &str; // created by lex
|
---|
| 163 | return ret;
|
---|
[7bf7fb9] | 164 | } // build_constantChar
|
---|
[51b73452] | 165 |
|
---|
[ac71a86] | 166 | ConstantExpr *build_constantStr( const std::string & str ) {
|
---|
[7bf7fb9] | 167 | // string should probably be a primitive type
|
---|
[ac10576] | 168 | ArrayType *at = new ArrayType( noQualifiers, new BasicType( Type::Qualifiers( Type::Const ), BasicType::Char ),
|
---|
[d56e5bc] | 169 | new ConstantExpr( Constant::from_ulong( str.size() + 1 - 2 ) ), // +1 for '\0' and -2 for '"'
|
---|
[7bf7fb9] | 170 | false, false );
|
---|
[d56e5bc] | 171 | // constant 0 is ignored for pure string value
|
---|
| 172 | ConstantExpr * ret = new ConstantExpr( Constant( at, str, (unsigned long long int)0 ) );
|
---|
[ab57786] | 173 | delete &str; // created by lex
|
---|
| 174 | return ret;
|
---|
[7bf7fb9] | 175 | } // build_constantStr
|
---|
[51b73452] | 176 |
|
---|
[4cb935e] | 177 | Expression *build_constantZeroOne( const std::string & str ) {
|
---|
[ac10576] | 178 | Expression * ret = new ConstantExpr( Constant( str == "0" ? (Type *)new ZeroType( noQualifiers ) : (Type*)new OneType( noQualifiers ), str,
|
---|
[d56e5bc] | 179 | str == "0" ? (unsigned long long int)0 : (unsigned long long int)1 ) );
|
---|
[4cb935e] | 180 | delete &str; // created by lex
|
---|
| 181 | return ret;
|
---|
| 182 | } // build_constantChar
|
---|
| 183 |
|
---|
[8780e30] | 184 | Expression * build_field_name_FLOATINGconstant( const std::string & str ) {
|
---|
| 185 | // str is of the form A.B -> separate at the . and return member expression
|
---|
| 186 | int a, b;
|
---|
| 187 | char dot;
|
---|
| 188 | std::stringstream ss( str );
|
---|
| 189 | ss >> a >> dot >> b;
|
---|
[d56e5bc] | 190 | UntypedMemberExpr * ret = new UntypedMemberExpr( new ConstantExpr( Constant::from_int( b ) ), new ConstantExpr( Constant::from_int( a ) ) );
|
---|
[8780e30] | 191 | delete &str;
|
---|
| 192 | return ret;
|
---|
| 193 | } // build_field_name_FLOATINGconstant
|
---|
| 194 |
|
---|
| 195 | Expression * make_field_name_fraction_constants( Expression * fieldName, Expression * fracts ) {
|
---|
| 196 | if ( fracts ) {
|
---|
| 197 | if ( UntypedMemberExpr * memberExpr = dynamic_cast< UntypedMemberExpr * >( fracts ) ) {
|
---|
| 198 | memberExpr->set_member( make_field_name_fraction_constants( fieldName, memberExpr->get_aggregate() ) );
|
---|
| 199 | return memberExpr;
|
---|
| 200 | } else {
|
---|
| 201 | return new UntypedMemberExpr( fracts, fieldName );
|
---|
| 202 | }
|
---|
| 203 | }
|
---|
| 204 | return fieldName;
|
---|
| 205 | } // make_field_name_fraction_constants
|
---|
| 206 |
|
---|
| 207 | Expression * build_field_name_fraction_constants( Expression * fieldName, ExpressionNode * fracts ) {
|
---|
| 208 | return make_field_name_fraction_constants( fieldName, maybeMoveBuild< Expression >( fracts ) );
|
---|
| 209 | } // build_field_name_fraction_constants
|
---|
| 210 |
|
---|
[0213af6] | 211 |
|
---|
| 212 |
|
---|
[8780e30] | 213 | Expression * build_field_name_REALFRACTIONconstant( const std::string & str ) {
|
---|
[0213af6] | 214 | if ( str.find_first_not_of( "0123456789", 1 ) != string::npos ) throw SemanticError( "invalid tuple index " + str );
|
---|
[8780e30] | 215 | Expression * ret = build_constantInteger( *new std::string( str.substr(1) ) );
|
---|
| 216 | delete &str;
|
---|
| 217 | return ret;
|
---|
| 218 | } // build_field_name_REALFRACTIONconstant
|
---|
| 219 |
|
---|
| 220 | Expression * build_field_name_REALDECIMALconstant( const std::string & str ) {
|
---|
[0213af6] | 221 | if ( str[str.size()-1] != '.' ) throw SemanticError( "invalid tuple index " + str );
|
---|
[8780e30] | 222 | Expression * ret = build_constantInteger( *new std::string( str.substr( 0, str.size()-1 ) ) );
|
---|
| 223 | delete &str;
|
---|
| 224 | return ret;
|
---|
| 225 | } // build_field_name_REALDECIMALconstant
|
---|
| 226 |
|
---|
[d7dc824] | 227 | NameExpr * build_varref( const string *name ) {
|
---|
[7ecbb7e] | 228 | NameExpr *expr = new NameExpr( *name, nullptr );
|
---|
| 229 | delete name;
|
---|
| 230 | return expr;
|
---|
[51b1202] | 231 | }
|
---|
| 232 |
|
---|
[e5f2a67] | 233 | // Must harmonize with OperKinds.
|
---|
[d9e2280] | 234 | static const char *OperName[] = {
|
---|
[5721a6d] | 235 | // diadic
|
---|
[e5f2a67] | 236 | "SizeOf", "AlignOf", "OffsetOf", "?+?", "?-?", "?\\?", "?*?", "?/?", "?%?", "||", "&&",
|
---|
[5721a6d] | 237 | "?|?", "?&?", "?^?", "Cast", "?<<?", "?>>?", "?<?", "?>?", "?<=?", "?>=?", "?==?", "?!=?",
|
---|
[e5f2a67] | 238 | "?=?", "?@=?", "?\\=?", "?*=?", "?/=?", "?%=?", "?+=?", "?-=?", "?<<=?", "?>>=?", "?&=?", "?^=?", "?|=?",
|
---|
[d9e2280] | 239 | "?[?]", "...",
|
---|
[5721a6d] | 240 | // monadic
|
---|
| 241 | "+?", "-?", "AddressOf", "*?", "!?", "~?", "++?", "?++", "--?", "?--", "&&"
|
---|
| 242 | };
|
---|
| 243 |
|
---|
[d1625f8] | 244 | Expression *build_cast( DeclarationNode *decl_node, ExpressionNode *expr_node ) {
|
---|
[4f147cc] | 245 | Type *targetType = maybeMoveBuildType( decl_node );
|
---|
[d1625f8] | 246 | if ( dynamic_cast< VoidType * >( targetType ) ) {
|
---|
[064e3ff] | 247 | delete targetType;
|
---|
[7ecbb7e] | 248 | return new CastExpr( maybeMoveBuild< Expression >(expr_node) );
|
---|
[064e3ff] | 249 | } else {
|
---|
[7ecbb7e] | 250 | return new CastExpr( maybeMoveBuild< Expression >(expr_node), targetType );
|
---|
[064e3ff] | 251 | } // if
|
---|
| 252 | }
|
---|
| 253 |
|
---|
[3b58d91] | 254 | Expression *build_fieldSel( ExpressionNode *expr_node, Expression *member ) {
|
---|
| 255 | UntypedMemberExpr *ret = new UntypedMemberExpr( member, maybeMoveBuild< Expression >(expr_node) );
|
---|
[064e3ff] | 256 | return ret;
|
---|
| 257 | }
|
---|
| 258 |
|
---|
[3b58d91] | 259 | Expression *build_pfieldSel( ExpressionNode *expr_node, Expression *member ) {
|
---|
[064e3ff] | 260 | UntypedExpr *deref = new UntypedExpr( new NameExpr( "*?" ) );
|
---|
[64ac636] | 261 | deref->location = expr_node->location;
|
---|
[7ecbb7e] | 262 | deref->get_args().push_back( maybeMoveBuild< Expression >(expr_node) );
|
---|
[3b58d91] | 263 | UntypedMemberExpr *ret = new UntypedMemberExpr( member, deref );
|
---|
[064e3ff] | 264 | return ret;
|
---|
| 265 | }
|
---|
| 266 |
|
---|
| 267 | Expression *build_addressOf( ExpressionNode *expr_node ) {
|
---|
[7ecbb7e] | 268 | return new AddressExpr( maybeMoveBuild< Expression >(expr_node) );
|
---|
[064e3ff] | 269 | }
|
---|
[d1625f8] | 270 | Expression *build_sizeOfexpr( ExpressionNode *expr_node ) {
|
---|
[7ecbb7e] | 271 | return new SizeofExpr( maybeMoveBuild< Expression >(expr_node) );
|
---|
[064e3ff] | 272 | }
|
---|
[d1625f8] | 273 | Expression *build_sizeOftype( DeclarationNode *decl_node ) {
|
---|
[4f147cc] | 274 | return new SizeofExpr( maybeMoveBuildType( decl_node ) );
|
---|
[d1625f8] | 275 | }
|
---|
| 276 | Expression *build_alignOfexpr( ExpressionNode *expr_node ) {
|
---|
[7ecbb7e] | 277 | return new AlignofExpr( maybeMoveBuild< Expression >(expr_node) );
|
---|
[d1625f8] | 278 | }
|
---|
| 279 | Expression *build_alignOftype( DeclarationNode *decl_node ) {
|
---|
[4f147cc] | 280 | return new AlignofExpr( maybeMoveBuildType( decl_node) );
|
---|
[064e3ff] | 281 | }
|
---|
[d1625f8] | 282 | Expression *build_offsetOf( DeclarationNode *decl_node, NameExpr *member ) {
|
---|
[a7c90d4] | 283 | Expression * ret = new UntypedOffsetofExpr( maybeMoveBuildType( decl_node ), member->get_name() );
|
---|
[ac71a86] | 284 | delete member;
|
---|
| 285 | return ret;
|
---|
[064e3ff] | 286 | }
|
---|
| 287 |
|
---|
[51e076e] | 288 | Expression *build_and_or( ExpressionNode *expr_node1, ExpressionNode *expr_node2, bool kind ) {
|
---|
[7ecbb7e] | 289 | return new LogicalExpr( notZeroExpr( maybeMoveBuild< Expression >(expr_node1) ), notZeroExpr( maybeMoveBuild< Expression >(expr_node2) ), kind );
|
---|
[51e076e] | 290 | }
|
---|
| 291 |
|
---|
[d9e2280] | 292 | Expression *build_unary_val( OperKinds op, ExpressionNode *expr_node ) {
|
---|
[7880579] | 293 | std::list< Expression * > args;
|
---|
[7ecbb7e] | 294 | args.push_back( maybeMoveBuild< Expression >(expr_node) );
|
---|
[d9e2280] | 295 | return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
|
---|
[9706554] | 296 | }
|
---|
[d9e2280] | 297 | Expression *build_unary_ptr( OperKinds op, ExpressionNode *expr_node ) {
|
---|
[7880579] | 298 | std::list< Expression * > args;
|
---|
[7ecbb7e] | 299 | args.push_back( new AddressExpr( maybeMoveBuild< Expression >(expr_node) ) );
|
---|
[d9e2280] | 300 | return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
|
---|
[51e076e] | 301 | }
|
---|
[d9e2280] | 302 | Expression *build_binary_val( OperKinds op, ExpressionNode *expr_node1, ExpressionNode *expr_node2 ) {
|
---|
[7880579] | 303 | std::list< Expression * > args;
|
---|
[7ecbb7e] | 304 | args.push_back( maybeMoveBuild< Expression >(expr_node1) );
|
---|
| 305 | args.push_back( maybeMoveBuild< Expression >(expr_node2) );
|
---|
[d9e2280] | 306 | return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
|
---|
[51e076e] | 307 | }
|
---|
[d9e2280] | 308 | Expression *build_binary_ptr( OperKinds op, ExpressionNode *expr_node1, ExpressionNode *expr_node2 ) {
|
---|
[7880579] | 309 | std::list< Expression * > args;
|
---|
[7ecbb7e] | 310 | args.push_back( new AddressExpr( maybeMoveBuild< Expression >(expr_node1) ) );
|
---|
| 311 | args.push_back( maybeMoveBuild< Expression >(expr_node2) );
|
---|
[d9e2280] | 312 | return new UntypedExpr( new NameExpr( OperName[ (int)op ] ), args );
|
---|
[9706554] | 313 | }
|
---|
[51e076e] | 314 |
|
---|
| 315 | Expression *build_cond( ExpressionNode *expr_node1, ExpressionNode *expr_node2, ExpressionNode *expr_node3 ) {
|
---|
[7ecbb7e] | 316 | return new ConditionalExpr( notZeroExpr( maybeMoveBuild< Expression >(expr_node1) ), maybeMoveBuild< Expression >(expr_node2), maybeMoveBuild< Expression >(expr_node3) );
|
---|
[51e076e] | 317 | }
|
---|
| 318 |
|
---|
| 319 | Expression *build_comma( ExpressionNode *expr_node1, ExpressionNode *expr_node2 ) {
|
---|
[7ecbb7e] | 320 | return new CommaExpr( maybeMoveBuild< Expression >(expr_node1), maybeMoveBuild< Expression >(expr_node2) );
|
---|
[51e076e] | 321 | }
|
---|
| 322 |
|
---|
[d1625f8] | 323 | Expression *build_attrexpr( NameExpr *var, ExpressionNode * expr_node ) {
|
---|
[7ecbb7e] | 324 | return new AttrExpr( var, maybeMoveBuild< Expression >(expr_node) );
|
---|
[d1625f8] | 325 | }
|
---|
| 326 | Expression *build_attrtype( NameExpr *var, DeclarationNode * decl_node ) {
|
---|
[4f147cc] | 327 | return new AttrExpr( var, maybeMoveBuildType( decl_node ) );
|
---|
[9706554] | 328 | }
|
---|
| 329 |
|
---|
[d1625f8] | 330 | Expression *build_tuple( ExpressionNode * expr_node ) {
|
---|
[907eccb] | 331 | std::list< Expression * > exprs;
|
---|
| 332 | buildMoveList( expr_node, exprs );
|
---|
| 333 | return new UntypedTupleExpr( exprs );;
|
---|
[9706554] | 334 | }
|
---|
| 335 |
|
---|
[d1625f8] | 336 | Expression *build_func( ExpressionNode * function, ExpressionNode * expr_node ) {
|
---|
[7880579] | 337 | std::list< Expression * > args;
|
---|
[7ecbb7e] | 338 | buildMoveList( expr_node, args );
|
---|
| 339 | return new UntypedExpr( maybeMoveBuild< Expression >(function), args, nullptr );
|
---|
[9706554] | 340 | }
|
---|
| 341 |
|
---|
[d9e2280] | 342 | Expression *build_range( ExpressionNode * low, ExpressionNode *high ) {
|
---|
[7ecbb7e] | 343 | return new RangeExpr( maybeMoveBuild< Expression >( low ), maybeMoveBuild< Expression >( high ) );
|
---|
[51b73452] | 344 | }
|
---|
| 345 |
|
---|
[e82aa9df] | 346 | Expression *build_asmexpr( ExpressionNode *inout, ConstantExpr *constraint, ExpressionNode *operand ) {
|
---|
[7ecbb7e] | 347 | return new AsmExpr( maybeMoveBuild< Expression >( inout ), constraint, maybeMoveBuild< Expression >(operand) );
|
---|
[7f5566b] | 348 | }
|
---|
| 349 |
|
---|
[d1625f8] | 350 | Expression *build_valexpr( StatementNode *s ) {
|
---|
[af5c204a] | 351 | return new StmtExpr( dynamic_cast< CompoundStmt * >(maybeMoveBuild< Statement >(s) ) );
|
---|
[3848e0e] | 352 | }
|
---|
[d1625f8] | 353 | Expression *build_typevalue( DeclarationNode *decl ) {
|
---|
[4f147cc] | 354 | return new TypeExpr( maybeMoveBuildType( decl ) );
|
---|
[630a82a] | 355 | }
|
---|
| 356 |
|
---|
[d1625f8] | 357 | Expression *build_compoundLiteral( DeclarationNode *decl_node, InitializerNode *kids ) {
|
---|
[7880579] | 358 | Declaration * newDecl = maybeBuild< Declaration >(decl_node); // compound literal type
|
---|
[630a82a] | 359 | if ( DeclarationWithType * newDeclWithType = dynamic_cast< DeclarationWithType * >( newDecl ) ) { // non-sue compound-literal type
|
---|
[7ecbb7e] | 360 | return new CompoundLiteralExpr( newDeclWithType->get_type(), maybeMoveBuild< Initializer >(kids) );
|
---|
[630a82a] | 361 | // these types do not have associated type information
|
---|
| 362 | } else if ( StructDecl * newDeclStructDecl = dynamic_cast< StructDecl * >( newDecl ) ) {
|
---|
[fbcde64] | 363 | if ( newDeclStructDecl->has_body() ) {
|
---|
| 364 | return new CompoundLiteralExpr( new StructInstType( Type::Qualifiers(), newDeclStructDecl ), maybeMoveBuild< Initializer >(kids) );
|
---|
| 365 | } else {
|
---|
| 366 | return new CompoundLiteralExpr( new StructInstType( Type::Qualifiers(), newDeclStructDecl->get_name() ), maybeMoveBuild< Initializer >(kids) );
|
---|
| 367 | } // if
|
---|
[630a82a] | 368 | } else if ( UnionDecl * newDeclUnionDecl = dynamic_cast< UnionDecl * >( newDecl ) ) {
|
---|
[fbcde64] | 369 | if ( newDeclUnionDecl->has_body() ) {
|
---|
| 370 | return new CompoundLiteralExpr( new UnionInstType( Type::Qualifiers(), newDeclUnionDecl ), maybeMoveBuild< Initializer >(kids) );
|
---|
| 371 | } else {
|
---|
| 372 | return new CompoundLiteralExpr( new UnionInstType( Type::Qualifiers(), newDeclUnionDecl->get_name() ), maybeMoveBuild< Initializer >(kids) );
|
---|
| 373 | } // if
|
---|
[630a82a] | 374 | } else if ( EnumDecl * newDeclEnumDecl = dynamic_cast< EnumDecl * >( newDecl ) ) {
|
---|
[fbcde64] | 375 | if ( newDeclEnumDecl->has_body() ) {
|
---|
| 376 | return new CompoundLiteralExpr( new EnumInstType( Type::Qualifiers(), newDeclEnumDecl ), maybeMoveBuild< Initializer >(kids) );
|
---|
| 377 | } else {
|
---|
| 378 | return new CompoundLiteralExpr( new EnumInstType( Type::Qualifiers(), newDeclEnumDecl->get_name() ), maybeMoveBuild< Initializer >(kids) );
|
---|
| 379 | } // if
|
---|
[630a82a] | 380 | } else {
|
---|
| 381 | assert( false );
|
---|
| 382 | } // if
|
---|
| 383 | }
|
---|
| 384 |
|
---|
[b87a5ed] | 385 | // Local Variables: //
|
---|
| 386 | // tab-width: 4 //
|
---|
| 387 | // mode: c++ //
|
---|
| 388 | // compile-command: "make install" //
|
---|
| 389 | // End: //
|
---|