source: src/GenPoly/Lvalue.cc @ 453b586

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumwith_gc
Last change on this file since 453b586 was 453b586, checked in by Rob Schluntz <rschlunt@…>, 7 years ago

Update depth counter after reference-to-rvalue conversion

  • Property mode set to 100644
File size: 24.9 KB
Line 
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// Lvalue.cc --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Fri Mar 17 09:11:18 2017
13// Update Count     : 5
14//
15
16#include <cassert>                       // for strict_dynamic_cast
17#include <string>                        // for string
18
19#include "Common/PassVisitor.h"
20#include "GenPoly.h"                     // for isPolyType
21#include "Lvalue.h"
22
23#include "Parser/LinkageSpec.h"          // for Spec, isBuiltin, Intrinsic
24#include "ResolvExpr/TypeEnvironment.h"  // for AssertionSet, OpenVarSet
25#include "ResolvExpr/Unify.h"            // for unify
26#include "ResolvExpr/typeops.h"
27#include "SymTab/Autogen.h"
28#include "SymTab/Indexer.h"              // for Indexer
29#include "SynTree/Declaration.h"         // for Declaration, FunctionDecl
30#include "SynTree/Expression.h"          // for Expression, ConditionalExpr
31#include "SynTree/Mutator.h"             // for mutateAll, Mutator
32#include "SynTree/Statement.h"           // for ReturnStmt, Statement (ptr o...
33#include "SynTree/Type.h"                // for PointerType, Type, FunctionType
34#include "SynTree/Visitor.h"             // for Visitor, acceptAll
35
36#if 0
37#define PRINT(x) x
38#else
39#define PRINT(x)
40#endif
41
42namespace GenPoly {
43        namespace {
44                // TODO: fold this into the general createDeref function??
45                Expression * mkDeref( Expression * arg ) {
46                        if ( SymTab::dereferenceOperator ) {
47                                VariableExpr * deref = new VariableExpr( SymTab::dereferenceOperator );
48                                deref->result = new PointerType( Type::Qualifiers(), deref->result );
49                                Type * base = InitTweak::getPointerBase( arg->result );
50                                assertf( base, "expected pointer type in dereference (type was %s)", toString( arg->result ).c_str() );
51                                ApplicationExpr * ret = new ApplicationExpr( deref, { arg } );
52                                delete ret->result;
53                                ret->result = base->clone();
54                                ret->result->set_lvalue( true );
55                                return ret;
56                        } else {
57                                return UntypedExpr::createDeref( arg );
58                        }
59                }
60
61                struct ReferenceConversions final : public WithStmtsToAdd {
62                        Expression * postmutate( CastExpr * castExpr );
63                        Expression * postmutate( AddressExpr * addrExpr );
64                };
65
66                /// Intrinsic functions that take reference parameters don't REALLY take reference parameters -- their reference arguments must always be implicitly dereferenced.
67                struct FixIntrinsicArgs final {
68                        Expression * postmutate( ApplicationExpr * appExpr );
69                };
70
71                struct FixIntrinsicResult final : public WithGuards {
72                        Expression * postmutate( ApplicationExpr * appExpr );
73                        void premutate( FunctionDecl * funcDecl );
74                        bool inIntrinsic = false;
75                };
76
77                /// Replace reference types with pointer types
78                struct ReferenceTypeElimination final {
79                        Type * postmutate( ReferenceType * refType );
80                };
81
82                /// GCC-like Generalized Lvalues (which have since been removed from GCC)
83                /// https://gcc.gnu.org/onlinedocs/gcc-3.4.6/gcc/Lvalues.html#Lvalues
84                /// Replaces &(a,b) with (a, &b), &(a ? b : c) with (a ? &b : &c)
85                struct GeneralizedLvalue final : public WithVisitorRef<GeneralizedLvalue> {
86                        Expression * postmutate( AddressExpr * addressExpr );
87                        Expression * postmutate( MemberExpr * memExpr );
88
89                        template<typename Func>
90                        Expression * applyTransformation( Expression * expr, Expression * arg, Func mkExpr );
91                };
92
93                /// Removes redundant &*/*& pattern that this pass can generate
94                struct CollapseAddrDeref final {
95                        Expression * postmutate( AddressExpr * addressExpr );
96                        Expression * postmutate( ApplicationExpr * appExpr );
97                };
98
99                struct AddrRef final : public WithGuards {
100                        void premutate( AddressExpr * addrExpr );
101                        Expression * postmutate( AddressExpr * addrExpr );
102                        void premutate( Expression * expr );
103
104                        bool first = true;
105                        bool current = false;
106                        int refDepth = 0;
107                };
108        } // namespace
109
110        static bool referencesEliminated = false;
111        // used by UntypedExpr::createDeref to determine whether result type of dereference should be ReferenceType or value type.
112        bool referencesPermissable() {
113                return ! referencesEliminated;
114        }
115
116        void convertLvalue( std::list< Declaration* > & translationUnit ) {
117                PassVisitor<ReferenceConversions> refCvt;
118                PassVisitor<ReferenceTypeElimination> elim;
119                PassVisitor<GeneralizedLvalue> genLval;
120                PassVisitor<FixIntrinsicArgs> fixer;
121                PassVisitor<CollapseAddrDeref> collapser;
122                PassVisitor<AddrRef> addrRef;
123                PassVisitor<FixIntrinsicResult> intrinsicResults;
124                mutateAll( translationUnit, intrinsicResults );
125                mutateAll( translationUnit, addrRef );
126                mutateAll( translationUnit, refCvt );
127                mutateAll( translationUnit, fixer );
128                mutateAll( translationUnit, collapser );
129                mutateAll( translationUnit, genLval );
130                mutateAll( translationUnit, elim );  // last because other passes need reference types to work
131
132                // from this point forward, no other pass should create reference types.
133                referencesEliminated = true;
134        }
135
136        Expression * generalizedLvalue( Expression * expr ) {
137                PassVisitor<GeneralizedLvalue> genLval;
138                return expr->acceptMutator( genLval );
139        }
140
141        namespace {
142                // true for intrinsic function calls that return a reference
143                bool isIntrinsicReference( Expression * expr ) {
144                        if ( UntypedExpr * untyped = dynamic_cast< UntypedExpr * >( expr ) ) {
145                                std::string fname = InitTweak::getFunctionName( untyped );
146                                // known intrinsic-reference prelude functions
147                                return fname == "*?" || fname == "?[?]";
148                        } else if ( ApplicationExpr * appExpr = dynamic_cast< ApplicationExpr * > ( expr ) ) {
149                                if ( DeclarationWithType * func = InitTweak::getFunction( appExpr ) ) {
150                                        // use type of return variable rather than expr result type, since it may have been changed to a pointer type
151                                        FunctionType * ftype = GenPoly::getFunctionType( func->get_type() );
152                                        Type * ret = ftype->returnVals.empty() ? nullptr : ftype->returnVals.front()->get_type();
153                                        return func->linkage == LinkageSpec::Intrinsic && dynamic_cast<ReferenceType *>( ret );
154                                }
155                        }
156                        return false;
157                }
158
159                Expression * FixIntrinsicResult::postmutate( ApplicationExpr * appExpr ) {
160                        if ( isIntrinsicReference( appExpr ) ) {
161                                // eliminate reference types from intrinsic applications - now they return lvalues
162                                Type * result = appExpr->result;
163                                appExpr->result = result->stripReferences()->clone();
164                                appExpr->result->set_lvalue( true );
165                                if ( ! inIntrinsic ) {
166                                        // when not in an intrinsic function, add a cast to
167                                        // don't add cast when in an intrinsic function, since they already have the cast
168                                        Expression * ret = new CastExpr( appExpr, result );
169                                        std::swap( ret->env, appExpr->env );
170                                        return ret;
171                                }
172                                delete result;
173                        }
174                        return appExpr;
175                }
176
177                void FixIntrinsicResult::premutate( FunctionDecl * funcDecl ) {
178                        GuardValue( inIntrinsic );
179                        inIntrinsic =  funcDecl->linkage == LinkageSpec::Intrinsic;
180                }
181
182                Expression * FixIntrinsicArgs::postmutate( ApplicationExpr * appExpr ) {
183                        // intrinsic functions don't really take reference-typed parameters, so they require an implicit dereference on their arguments.
184                        if ( DeclarationWithType * function = InitTweak::getFunction( appExpr ) ) {
185                                FunctionType * ftype = GenPoly::getFunctionType( function->get_type() );
186                                assertf( ftype, "Function declaration does not have function type." );
187                                // can be of differing lengths only when function is variadic
188                                assertf( ftype->parameters.size() == appExpr->args.size() || ftype->isVarArgs, "ApplicationExpr args do not match formal parameter type." );
189
190
191                                unsigned int i = 0;
192                                const unsigned int end = ftype->parameters.size();
193                                for ( auto p : unsafe_group_iterate( appExpr->args, ftype->parameters ) ) {
194                                        if (i == end) break;
195                                        Expression *& arg = std::get<0>( p );
196                                        Type * formal = std::get<1>( p )->get_type();
197                                        PRINT(
198                                                std::cerr << "pair<0>: " << arg << std::endl;
199                                                std::cerr << "pair<1>: " << formal << std::endl;
200                                        )
201                                        if ( dynamic_cast<ReferenceType*>( formal ) ) {
202                                                if ( isIntrinsicReference( arg ) ) { // do not combine conditions, because that changes the meaning of the else if
203                                                        if ( function->get_linkage() != LinkageSpec::Intrinsic ) { // intrinsic functions that turn pointers into references
204                                                                // if argument is dereference or array subscript, the result isn't REALLY a reference, so it's not necessary to fix the argument
205                                                                PRINT(
206                                                                        std::cerr << "===is intrinsic arg in non-intrinsic call - adding address" << std::endl;
207                                                                )
208                                                                arg = new AddressExpr( arg );
209                                                        }
210                                                } else if ( function->get_linkage() == LinkageSpec::Intrinsic ) {
211                                                        // std::cerr << "===adding deref to arg" << std::endl;
212                                                        // if the parameter is a reference, add a dereference to the reference-typed argument.
213                                                        Type * baseType = InitTweak::getPointerBase( arg->result );
214                                                        assertf( baseType, "parameter is reference, arg must be pointer or reference: %s", toString( arg->result ).c_str() );
215                                                        PointerType * ptrType = new PointerType( Type::Qualifiers(), baseType->clone() );
216                                                        delete arg->result;
217                                                        arg->set_result( ptrType );
218                                                        arg = mkDeref( arg );
219                                                }
220                                        }
221                                        ++i;
222                                }
223                        }
224                        return appExpr;
225                }
226
227                // idea: &&&E: get outer &, inner &
228                // at inner &, record depth D of reference type
229                // at outer &, add D derefs.
230                void AddrRef::premutate( Expression * ) {
231                        GuardValue( current );
232                        GuardValue( first );
233                        current = false;
234                        first = true;
235                }
236
237                void AddrRef::premutate( AddressExpr * ) {
238                        GuardValue( current );
239                        GuardValue( first );
240                        current = first;
241                        first = false;
242                        if ( current ) {
243                                GuardValue( refDepth );
244                                refDepth = 0;
245                        }
246                }
247
248                Expression * AddrRef::postmutate( AddressExpr * addrExpr ) {
249                        if ( refDepth == 0 ) {
250                                if ( ! isIntrinsicReference( addrExpr->arg ) ) {
251                                        // try to avoid ?[?]
252                                        refDepth = addrExpr->arg->result->referenceDepth();
253                                }
254                        }
255                        if ( current ) {
256                                Expression * ret = addrExpr;
257                                while ( refDepth ) {
258                                        ret = mkDeref( ret );
259                                        refDepth--;
260                                }
261                                return ret;
262                        }
263                        return addrExpr;
264                }
265
266                Expression * ReferenceConversions::postmutate( AddressExpr * addrExpr ) {
267                        // Inner expression may have been lvalue to reference conversion, which becomes an address expression.
268                        // In this case, remove the outer address expression and return the argument.
269                        // TODO: It's possible that this might catch too much and require a more sophisticated check.
270                        return addrExpr;
271                }
272
273                Expression * ReferenceConversions::postmutate( CastExpr * castExpr ) {
274                        // xxx - is it possible to convert directly between reference types with a different base? E.g.,
275                        //   int x;
276                        //   (double&)x;
277                        // At the moment, I am working off of the assumption that this is illegal, thus the cast becomes redundant
278                        // after this pass, so trash the cast altogether. If that changes, care must be taken to insert the correct
279                        // pointer casts in the right places.
280
281                        // need to reorganize this so that depth difference is the determining factor in what code is run, rather than whether something is reference type or not.
282
283                        Type * destType = castExpr->result;
284                        Type * srcType = castExpr->arg->result;
285                        int depth1 = destType->referenceDepth();
286                        int depth2 = srcType->referenceDepth();
287                        int diff = depth1 - depth2;
288
289                        if ( diff > 0 && ! srcType->get_lvalue() ) {
290                                // rvalue to reference conversion -- introduce temporary
291                                // know that reference depth of cast argument is 0, need to introduce n temporaries for reference depth of n, e.g.
292                                //   (int &&&)3;
293                                // becomes
294                                //   int __ref_tmp_0 = 3;
295                                //   int & __ref_tmp_1 = _&_ref_tmp_0;
296                                //   int && __ref_tmp_2 = &__ref_tmp_1;
297                                //   &__ref_tmp_2;
298                                // the last & comes from the remaining reference conversion code
299                                SemanticWarning( castExpr->arg->location, Warning::RvalueToReferenceConversion, toCString( castExpr->arg ) );
300
301                                static UniqueName tempNamer( "__ref_tmp_" );
302                                ObjectDecl * temp = ObjectDecl::newObject( tempNamer.newName(), castExpr->arg->result->clone(), new SingleInit( castExpr->arg ) );
303                                PRINT( std::cerr << "made temp: " << temp << std::endl; )
304                                stmtsToAddBefore.push_back( new DeclStmt( temp ) );
305                                for ( int i = 0; i < depth1-1; i++ ) {
306                                        ObjectDecl * newTemp = ObjectDecl::newObject( tempNamer.newName(), new ReferenceType( Type::Qualifiers(), temp->type->clone() ), new SingleInit( new AddressExpr( new VariableExpr( temp ) ) ) );
307                                        PRINT( std::cerr << "made temp" << i << ": " << newTemp << std::endl; )
308                                        stmtsToAddBefore.push_back( new DeclStmt( newTemp ) );
309                                        temp = newTemp;
310                                }
311                                // update diff so that remaining code works out correctly
312                                castExpr->arg = new VariableExpr( temp );
313                                PRINT( std::cerr << "update cast to: " << castExpr << std::endl; )
314                                srcType = castExpr->arg->result;
315                                depth2 = srcType->referenceDepth();
316                                diff = depth1 - depth2;
317                                assert( diff == 1 );
318                        }
319
320                        PRINT (
321                                if ( depth1 || depth2 ) {
322                                        std::cerr << "destType: " << destType << " / srcType: " << srcType << std::endl;
323                                        std::cerr << "depth: " << depth1 << " / " << depth2 << std::endl;
324                                }
325                        )
326                        if ( diff > 0 ) {
327                                // conversion to type with more depth (e.g. int & -> int &&): add address-of for each level of difference
328                                Expression * ret = castExpr->arg;
329                                for ( int i = 0; i < diff; ++i ) {
330                                        ret = new AddressExpr( ret );
331                                }
332                                if ( srcType->get_lvalue() && srcType->get_qualifiers() != strict_dynamic_cast<ReferenceType *>( destType )->base->get_qualifiers() ) {
333                                        // must keep cast if cast-to type is different from the actual type
334                                        castExpr->arg = ret;
335                                        return castExpr;
336                                }
337                                ret->env = castExpr->env;
338                                delete ret->result;
339                                ret->result = castExpr->result;
340                                castExpr->env = nullptr;
341                                castExpr->arg = nullptr;
342                                castExpr->result = nullptr;
343                                delete castExpr;
344                                return ret;
345                        } else if ( diff < 0 ) {
346                                // conversion to type with less depth (e.g. int && -> int &): add dereferences for each level of difference
347                                diff = -diff; // care only about magnitude now
348                                Expression * ret = castExpr->arg;
349                                for ( int i = 0; i < diff; ++i ) {
350                                        ret = mkDeref( ret );
351                                }
352                                if ( ! ResolvExpr::typesCompatibleIgnoreQualifiers( destType->stripReferences(), srcType->stripReferences(), SymTab::Indexer() ) ) {
353                                        // must keep cast if types are different
354                                        castExpr->arg = ret;
355                                        return castExpr;
356                                }
357                                ret->env = castExpr->env;
358                                delete ret->result;
359                                ret->result = castExpr->result;
360                                ret->result->set_lvalue( true ); // ensure result is lvalue
361                                castExpr->env = nullptr;
362                                castExpr->arg = nullptr;
363                                castExpr->result = nullptr;
364                                delete castExpr;
365                                return ret;
366                        } else {
367                                assert( diff == 0 );
368                                // conversion between references of the same depth
369                                return castExpr;
370                        }
371
372                        // // conversion to reference type
373                        // if ( ReferenceType * refType = dynamic_cast< ReferenceType * >( castExpr->result ) ) {
374                        //      (void)refType;
375                        //      if ( ReferenceType * otherRef = dynamic_cast< ReferenceType * >( castExpr->arg->result ) ) {
376                        //              // nothing to do if casting from reference to reference.
377                        //              (void)otherRef;
378                        //              PRINT( std::cerr << "convert reference to reference -- nop" << std::endl; )
379                        //              if ( isIntrinsicReference( castExpr->arg ) ) {
380                        //                      Expression * callExpr = castExpr->arg;
381                        //                      PRINT(
382                        //                              std::cerr << "but arg is deref -- &" << std::endl;
383                        //                              std::cerr << callExpr << std::endl;
384                        //                      )
385                        //                      callExpr = new AddressExpr( callExpr ); // this doesn't work properly for multiple casts
386                        //                      delete callExpr->result;
387                        //                      callExpr->set_result( refType->clone() );
388                        //                      // move environment out to new top-level
389                        //                      callExpr->env = castExpr->env;
390                        //                      castExpr->arg = nullptr;
391                        //                      castExpr->env = nullptr;
392                        //                      delete castExpr;
393                        //                      return callExpr;
394                        //              }
395                        //              int depth1 = refType->referenceDepth();
396                        //              int depth2 = otherRef->referenceDepth();
397                        //              int diff = depth1-depth2;
398                        //              if ( diff == 0 ) {
399                        //                      // conversion between references of the same depth
400                        //                      assertf( depth1 == depth2, "non-intrinsic reference with cast of reference to reference not yet supported: %d %d %s", depth1, depth2, toString( castExpr ).c_str() );
401                        //                      PRINT( std::cerr << castExpr << std::endl; )
402                        //                      return castExpr;
403                        //              } else if ( diff < 0 ) {
404                        //                      // conversion from reference to reference with less depth (e.g. int && -> int &): add dereferences
405                        //                      Expression * ret = castExpr->arg;
406                        //                      for ( int i = 0; i < diff; ++i ) {
407                        //                              ret = mkDeref( ret );
408                        //                      }
409                        //                      ret->env = castExpr->env;
410                        //                      delete ret->result;
411                        //                      ret->result = castExpr->result;
412                        //                      ret->result->set_lvalue( true ); // ensure result is lvalue
413                        //                      castExpr->env = nullptr;
414                        //                      castExpr->arg = nullptr;
415                        //                      castExpr->result = nullptr;
416                        //                      delete castExpr;
417                        //                      return ret;
418                        //              } else if ( diff > 0 ) {
419                        //                      // conversion from reference to reference with more depth (e.g. int & -> int &&): add address-of
420                        //                      Expression * ret = castExpr->arg;
421                        //                      for ( int i = 0; i < diff; ++i ) {
422                        //                              ret = new AddressExpr( ret );
423                        //                      }
424                        //                      ret->env = castExpr->env;
425                        //                      delete ret->result;
426                        //                      ret->result = castExpr->result;
427                        //                      castExpr->env = nullptr;
428                        //                      castExpr->arg = nullptr;
429                        //                      castExpr->result = nullptr;
430                        //                      delete castExpr;
431                        //                      return ret;
432                        //              }
433
434                        //              assertf( depth1 == depth2, "non-intrinsic reference with cast of reference to reference not yet supported: %d %d %s", depth1, depth2, toString( castExpr ).c_str() );
435                        //              PRINT( std::cerr << castExpr << std::endl; )
436                        //              return castExpr;
437                        //      } else if ( castExpr->arg->result->get_lvalue() ) {
438                        //              // conversion from lvalue to reference
439                        //              // xxx - keep cast, but turn into pointer cast??
440                        //              // xxx - memory
441                        //              PRINT(
442                        //                      std::cerr << "convert lvalue to reference -- &" << std::endl;
443                        //                      std::cerr << castExpr->arg << std::endl;
444                        //              )
445                        //              AddressExpr * ret = new AddressExpr( castExpr->arg );
446                        //              if ( refType->base->get_qualifiers() != castExpr->arg->result->get_qualifiers() ) {
447                        //                      // must keep cast if cast-to type is different from the actual type
448                        //                      castExpr->arg = ret;
449                        //                      return castExpr;
450                        //              }
451                        //              ret->env = castExpr->env;
452                        //              delete ret->result;
453                        //              ret->result = castExpr->result;
454                        //              castExpr->env = nullptr;
455                        //              castExpr->arg = nullptr;
456                        //              castExpr->result = nullptr;
457                        //              delete castExpr;
458                        //              return ret;
459                        //      } else {
460                        //              // rvalue to reference conversion -- introduce temporary
461                        //              // know that reference depth of cast argument is 0, need to introduce n temporaries for reference depth of n, e.g.
462                        //              //   (int &&&)3;
463                        //              // becomes
464                        //              //   int __ref_tmp_0 = 3;
465                        //              //   int & __ref_tmp_1 = _&_ref_tmp_0;
466                        //              //   int && __ref_tmp_2 = &__ref_tmp_1;
467                        //              //   &__ref_tmp_2;
468
469                        //              static UniqueName tempNamer( "__ref_tmp_" );
470                        //              ObjectDecl * temp = ObjectDecl::newObject( tempNamer.newName(), castExpr->arg->result->clone(), new SingleInit( castExpr->arg ) );
471                        //              stmtsToAddBefore.push_back( new DeclStmt( temp ) );
472                        //              auto depth = castExpr->result->referenceDepth();
473                        //              for ( int i = 0; i < depth-1; i++ ) {
474                        //                      ObjectDecl * newTemp = ObjectDecl::newObject( tempNamer.newName(), new ReferenceType( Type::Qualifiers(), temp->type->clone() ), new SingleInit( new AddressExpr( new VariableExpr( temp ) ) ) );
475                        //                      stmtsToAddBefore.push_back( new DeclStmt( newTemp ) );
476                        //                      temp = newTemp;
477                        //              }
478                        //              Expression * ret = new AddressExpr( new VariableExpr( temp ) );
479                        //              // for ( int i = 0; i < depth; ++i ) {
480                        //              //      ret = mkDeref( ret );
481                        //              // }
482                        //              ret->result = castExpr->result;
483                        //              ret->result->set_lvalue( true ); // ensure result is lvalue
484                        //              ret->env = castExpr->env;
485                        //              castExpr->arg = nullptr;
486                        //              castExpr->env = nullptr;
487                        //              castExpr->result = nullptr;
488                        //              delete castExpr;
489                        //              return ret;
490                        //      }
491                        // } else if ( ReferenceType * refType = dynamic_cast< ReferenceType * >( castExpr->arg->result ) ) {
492                        //      (void)refType;
493                        //      // conversion from reference to rvalue
494                        //      PRINT(
495                        //              std::cerr << "convert reference to rvalue -- *" << std::endl;
496                        //              std::cerr << "was = " << castExpr << std::endl;
497                        //      )
498                        //      Expression * ret = castExpr->arg;
499                        //      TypeSubstitution * env = castExpr->env;
500                        //      castExpr->set_env( nullptr );
501                        //      if ( ! isIntrinsicReference( ret ) ) {
502                        //              // dereference if not already dereferenced
503                        //              ret = mkDeref( ret );
504                        //      }
505                        //      if ( ResolvExpr::typesCompatibleIgnoreQualifiers( castExpr->result, castExpr->arg->result->stripReferences(), SymTab::Indexer() ) ) {
506                        //              // can remove cast if types are compatible, changing expression type to value type
507                        //              ret->result = castExpr->result->clone();
508                        //              ret->result->set_lvalue( true );  // ensure result is lvalue
509                        //              castExpr->arg = nullptr;
510                        //              delete castExpr;
511                        //      } else {
512                        //              // must keep cast if types are different
513                        //              castExpr->arg = ret;
514                        //              ret = castExpr;
515                        //      }
516                        //      ret->set_env( env );
517                        //      PRINT( std::cerr << "now: " << ret << std::endl; )
518                        //      return ret;
519                        // }
520                        // return castExpr;
521                }
522
523                Type * ReferenceTypeElimination::postmutate( ReferenceType * refType ) {
524                        Type * base = refType->base;
525                        Type::Qualifiers qualifiers = refType->get_qualifiers();
526                        refType->base = nullptr;
527                        delete refType;
528                        return new PointerType( qualifiers, base );
529                }
530
531                template<typename Func>
532                Expression * GeneralizedLvalue::applyTransformation( Expression * expr, Expression * arg, Func mkExpr ) {
533                        if ( CommaExpr * commaExpr = dynamic_cast< CommaExpr * >( arg ) ) {
534                                Expression * arg1 = commaExpr->arg1->clone();
535                                Expression * arg2 = commaExpr->arg2->clone();
536                                Expression * ret = new CommaExpr( arg1, mkExpr( arg2 )->acceptMutator( *visitor ) );
537                                ret->env = expr->env;
538                                expr->env = nullptr;
539                                delete expr;
540                                return ret;
541                        } else if ( ConditionalExpr * condExpr = dynamic_cast< ConditionalExpr * >( arg ) ) {
542                                Expression * arg1 = condExpr->arg1->clone();
543                                Expression * arg2 = condExpr->arg2->clone();
544                                Expression * arg3 = condExpr->arg3->clone();
545                                ConditionalExpr * ret = new ConditionalExpr( arg1, mkExpr( arg2 )->acceptMutator( *visitor ), mkExpr( arg3 )->acceptMutator( *visitor ) );
546                                ret->env = expr->env;
547                                expr->env = nullptr;
548                                delete expr;
549
550                                // conditional expr type may not be either of the argument types, need to unify
551                                using namespace ResolvExpr;
552                                Type* commonType = nullptr;
553                                TypeEnvironment newEnv;
554                                AssertionSet needAssertions, haveAssertions;
555                                OpenVarSet openVars;
556                                unify( ret->arg2->result, ret->arg3->result, newEnv, needAssertions, haveAssertions, openVars, SymTab::Indexer(), commonType );
557                                ret->result = commonType ? commonType : ret->arg2->result->clone();
558                                return ret;
559                        }
560                        return expr;
561                }
562
563                Expression * GeneralizedLvalue::postmutate( MemberExpr * memExpr ) {
564                        return applyTransformation( memExpr, memExpr->aggregate, [=]( Expression * aggr ) { return new MemberExpr( memExpr->member, aggr ); } );
565                }
566
567                Expression * GeneralizedLvalue::postmutate( AddressExpr * addrExpr ) {
568                        return applyTransformation( addrExpr, addrExpr->arg, []( Expression * arg ) { return new AddressExpr( arg ); } );
569                }
570
571                Expression * CollapseAddrDeref::postmutate( AddressExpr * addrExpr ) {
572                        Expression * arg = addrExpr->arg;
573                        if ( isIntrinsicReference( arg ) ) {
574                                std::string fname = InitTweak::getFunctionName( arg );
575                                if ( fname == "*?" ) {
576                                        Expression *& arg0 = InitTweak::getCallArg( arg, 0 );
577                                        Expression * ret = arg0;
578                                        ret->set_env( addrExpr->env );
579                                        arg0 = nullptr;
580                                        addrExpr->env = nullptr;
581                                        delete addrExpr;
582                                        return ret;
583                                }
584                        } else if ( CastExpr * castExpr = dynamic_cast< CastExpr * > ( arg ) ) {
585                                // need to move cast to pointer type out a level since address of pointer
586                                // is not valid C code (can be introduced in prior passes, e.g., InstantiateGeneric)
587                                if ( InitTweak::getPointerBase( castExpr->result ) ) {
588                                        addrExpr->arg = castExpr->arg;
589                                        castExpr->arg = addrExpr;
590                                        castExpr->result = new PointerType( Type::Qualifiers(), castExpr->result );
591                                        return castExpr;
592                                }
593                        }
594                        return addrExpr;
595                }
596
597                Expression * CollapseAddrDeref::postmutate( ApplicationExpr * appExpr ) {
598                        if ( isIntrinsicReference( appExpr ) ) {
599                                std::string fname = InitTweak::getFunctionName( appExpr );
600                                if ( fname == "*?" ) {
601                                        Expression * arg = InitTweak::getCallArg( appExpr, 0 );
602                                        // xxx - this isn't right, because it can remove casts that should be there...
603                                        // while ( CastExpr * castExpr = dynamic_cast< CastExpr * >( arg ) ) {
604                                        //      arg = castExpr->get_arg();
605                                        // }
606                                        if ( AddressExpr * addrExpr = dynamic_cast< AddressExpr * >( arg ) ) {
607                                                Expression * ret = addrExpr->arg;
608                                                ret->env = appExpr->env;
609                                                addrExpr->arg = nullptr;
610                                                appExpr->env = nullptr;
611                                                delete appExpr;
612                                                return ret;
613                                        }
614                                }
615                        }
616                        return appExpr;
617                }
618        } // namespace
619} // namespace GenPoly
620
621// Local Variables: //
622// tab-width: 4 //
623// mode: c++ //
624// compile-command: "make install" //
625// End: //
Note: See TracBrowser for help on using the repository browser.