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.h --
|
---|
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 : Tue May 19 07:48:14 2015
|
---|
13 | // Update Count : 1
|
---|
14 | //
|
---|
15 |
|
---|
16 | #ifndef _SCRUBTYVARS_H
|
---|
17 | #define _SCRUBTYVARS_H
|
---|
18 |
|
---|
19 | #include <string>
|
---|
20 |
|
---|
21 | #include "GenPoly.h"
|
---|
22 |
|
---|
23 | #include "SynTree/SynTree.h"
|
---|
24 | #include "SynTree/Mutator.h"
|
---|
25 |
|
---|
26 | namespace GenPoly {
|
---|
27 | class ScrubTyVars : public Mutator {
|
---|
28 | public:
|
---|
29 | ScrubTyVars( bool doAll, const TyVarMap &tyVars ): doAll( doAll ), tyVars( tyVars ) {}
|
---|
30 |
|
---|
31 | /// Like scrub( SynTreeClass* ), but only applies to type variables in `tyVars`
|
---|
32 | template< typename SynTreeClass >
|
---|
33 | static SynTreeClass *scrub( SynTreeClass *target, const TyVarMap &tyVars );
|
---|
34 | /// Replaces dtypes and ftypes with the appropriate void type, and sizeof expressions of polymorphic types with the proper variable
|
---|
35 | template< typename SynTreeClass >
|
---|
36 | static SynTreeClass *scrub( SynTreeClass *target );
|
---|
37 |
|
---|
38 | virtual Type* mutate( TypeInstType *typeInst );
|
---|
39 | Expression* mutate( SizeofExpr *szeof );
|
---|
40 | Expression* mutate( AlignofExpr *algnof );
|
---|
41 | virtual Type* mutate( PointerType *pointer );
|
---|
42 | private:
|
---|
43 | bool doAll;
|
---|
44 | const TyVarMap &tyVars;
|
---|
45 | };
|
---|
46 |
|
---|
47 | /* static class method */
|
---|
48 | template< typename SynTreeClass >
|
---|
49 | SynTreeClass * ScrubTyVars::scrub( SynTreeClass *target, const TyVarMap &tyVars ) {
|
---|
50 | ScrubTyVars scrubber( false, tyVars );
|
---|
51 | return static_cast< SynTreeClass * >( target->acceptMutator( scrubber ) );
|
---|
52 | }
|
---|
53 |
|
---|
54 | /* static class method */
|
---|
55 | template< typename SynTreeClass >
|
---|
56 | SynTreeClass * ScrubTyVars::scrub( SynTreeClass *target ) {
|
---|
57 | TyVarMap tyVars;
|
---|
58 | ScrubTyVars scrubber( true, tyVars );
|
---|
59 | return static_cast< SynTreeClass* >( target->acceptMutator( scrubber ) );
|
---|
60 | }
|
---|
61 | } // namespace GenPoly
|
---|
62 |
|
---|
63 | #endif // _SCRUBTYVARS_H
|
---|
64 |
|
---|
65 | // Local Variables: //
|
---|
66 | // tab-width: 4 //
|
---|
67 | // mode: c++ //
|
---|
68 | // compile-command: "make install" //
|
---|
69 | // End: //
|
---|