source: src/GenPoly/ScrubTyVars.cc @ 1a4bef3

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since 1a4bef3 was b8a4f47, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Convert ScrubTyVars? to PassVisitor?

  • Property mode set to 100644
File size: 3.5 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// ScrubTyVars.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 : Thu Mar 16 15:44:27 2017
13// Update Count     : 3
14//
15
16#include <utility>                      // for pair
17
18#include "GenPoly.h"                    // for mangleType, TyVarMap, alignof...
19#include "GenPoly/ErasableScopedMap.h"  // for ErasableScopedMap<>::const_it...
20#include "ScrubTyVars.h"
21#include "SynTree/Declaration.h"        // for TypeDecl, TypeDecl::Data, Typ...
22#include "SynTree/Expression.h"         // for Expression (ptr only), NameExpr
23#include "SynTree/Mutator.h"            // for Mutator
24#include "SynTree/Type.h"               // for PointerType, TypeInstType, Type
25
26namespace GenPoly {
27        Type * ScrubTyVars::postmutate( TypeInstType * typeInst ) {
28                if ( ! tyVars ) {
29                        if ( typeInst->get_isFtype() ) {
30                                delete typeInst;
31                                return new PointerType( Type::Qualifiers(), new FunctionType( Type::Qualifiers(), true ) );
32                        } else {
33                                PointerType * ret = new PointerType( Type::Qualifiers(), new VoidType( typeInst->get_qualifiers() ) );
34                                delete typeInst;
35                                return ret;
36                        }
37                }
38
39                TyVarMap::const_iterator tyVar = tyVars->find( typeInst->name );
40                if ( tyVar != tyVars->end() ) {
41                        switch ( tyVar->second.kind ) {
42                          case TypeDecl::Dtype:
43                          case TypeDecl::Ttype:
44                                {
45                                        PointerType * ret = new PointerType( Type::Qualifiers(), new VoidType( typeInst->get_qualifiers() ) );
46                                        delete typeInst;
47                                        return ret;
48                                }
49                          case TypeDecl::Ftype:
50                                delete typeInst;
51                                return new PointerType( Type::Qualifiers(), new FunctionType( Type::Qualifiers(), true ) );
52                        } // switch
53                } // if
54                return typeInst;
55        }
56
57        Type * ScrubTyVars::mutateAggregateType( Type * ty ) {
58                if ( shouldScrub( ty ) ) {
59                        PointerType * ret = new PointerType( Type::Qualifiers(), new VoidType( ty->get_qualifiers() ) );
60                        delete ty;
61                        return ret;
62                }
63                return ty;
64        }
65
66        Type * ScrubTyVars::postmutate( StructInstType * structInst ) {
67                return mutateAggregateType( structInst );
68        }
69
70        Type * ScrubTyVars::postmutate( UnionInstType * unionInst ) {
71                return mutateAggregateType( unionInst );
72        }
73
74        void ScrubTyVars::primeBaseScrub( Type * type ) {
75                // need to determine whether type needs to be scrubbed to determine whether
76                // automatic recursion is necessary
77                if ( Type * t = shouldScrub( type ) ) {
78                        visit_children = false;
79                        GuardValue( dynType );
80                        dynType = t;
81                }
82        }
83
84        Expression * ScrubTyVars::postmutate( SizeofExpr * szeof ) {
85                // sizeof( T ) => _sizeof_T parameter, which is the size of T
86                if ( dynType ) {
87                        Expression *expr = new NameExpr( sizeofName( mangleType( dynType ) ) );
88                        return expr;
89                } // if
90                return szeof;
91        }
92
93        Expression * ScrubTyVars::postmutate( AlignofExpr * algnof ) {
94                // alignof( T ) => _alignof_T parameter, which is the alignment of T
95                if ( dynType ) {
96                        Expression *expr = new NameExpr( alignofName( mangleType( dynType ) ) );
97                        return expr;
98                } // if
99                return algnof;
100        }
101
102        Type * ScrubTyVars::postmutate( PointerType * pointer ) {
103                if ( dynType ) {
104                        Type * ret = dynType->acceptMutator( *visitor );
105                        ret->get_qualifiers() |= pointer->get_qualifiers();
106                        pointer->base = nullptr;
107                        delete pointer;
108                        return ret;
109                }
110                return pointer;
111        }
112} // namespace GenPoly
113
114// Local Variables: //
115// tab-width: 4 //
116// mode: c++ //
117// compile-command: "make install" //
118// End: //
Note: See TracBrowser for help on using the repository browser.