source: src/GenPoly/ScrubTyVars.h@ 36874e4

ADT aaron-thesis arm-eh ast-experimental cleanup-dtors ctor deferred_resn demangler enum forall-pointer-decay gc_noraii jacob/cs343-translation jenkins-sandbox memory new-ast new-ast-unique-expr new-env no_list persistent-indexer pthread-emulation qualifiedEnum resolv-new string with_gc
Last change on this file since 36874e4 was b18b0b5, checked in by Aaron Moss <a3moss@…>, 10 years ago

Replace generic type function parameters with void*

  • Property mode set to 100644
File size: 2.3 KB
RevLine 
[51587aa]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//
[01aeade]7// ScrubTyVars.h --
[51587aa]8//
9// Author : Richard C. Bilson
10// Created On : Mon May 18 07:44:20 2015
[01aeade]11// Last Modified By : Peter A. Buhr
12// Last Modified On : Tue May 19 07:48:14 2015
13// Update Count : 1
[51587aa]14//
[01aeade]15
16#ifndef _SCRUBTYVARS_H
17#define _SCRUBTYVARS_H
[51b73452]18
[78dd0da]19#include <string>
20
[51b73452]21#include "GenPoly.h"
22
23#include "SynTree/SynTree.h"
24#include "SynTree/Mutator.h"
25
26namespace GenPoly {
[01aeade]27 class ScrubTyVars : public Mutator {
28 public:
29 ScrubTyVars( bool doAll, const TyVarMap &tyVars ): doAll( doAll ), tyVars( tyVars ) {}
[f8b961b]30
31 /// Like scrub( SynTreeClass* ), but only applies to type variables in `tyVars`
[01aeade]32 template< typename SynTreeClass >
33 static SynTreeClass *scrub( SynTreeClass *target, const TyVarMap &tyVars );
[f8b961b]34 /// Replaces dtypes and ftypes with the appropriate void type, and sizeof expressions of polymorphic types with the proper variable
[01aeade]35 template< typename SynTreeClass >
36 static SynTreeClass *scrub( SynTreeClass *target );
[b18b0b5]37
[01aeade]38 virtual Type* mutate( TypeInstType *typeInst );
[b18b0b5]39 virtual Type* mutate( StructInstType *structInst );
40 virtual Type* mutate( UnionInstType *unionInst );
41 virtual Expression* mutate( SizeofExpr *szeof );
42 virtual Expression* mutate( AlignofExpr *algnof );
[01aeade]43 virtual Type* mutate( PointerType *pointer );
[b18b0b5]44
[01aeade]45 private:
[b18b0b5]46 /// Mutates (possibly generic) aggregate types appropriately
47 Type* mutateAggregateType( Type *ty );
48
[01aeade]49 bool doAll;
50 const TyVarMap &tyVars;
51 };
52
53 /* static class method */
[bdd516a]54 template< typename SynTreeClass >
[01aeade]55 SynTreeClass * ScrubTyVars::scrub( SynTreeClass *target, const TyVarMap &tyVars ) {
56 ScrubTyVars scrubber( false, tyVars );
57 return static_cast< SynTreeClass * >( target->acceptMutator( scrubber ) );
58 }
59
60 /* static class method */
[bdd516a]61 template< typename SynTreeClass >
[01aeade]62 SynTreeClass * ScrubTyVars::scrub( SynTreeClass *target ) {
63 TyVarMap tyVars;
64 ScrubTyVars scrubber( true, tyVars );
65 return static_cast< SynTreeClass* >( target->acceptMutator( scrubber ) );
66 }
[51b73452]67} // namespace GenPoly
68
[01aeade]69#endif // _SCRUBTYVARS_H
70
[51587aa]71// Local Variables: //
72// tab-width: 4 //
73// mode: c++ //
74// compile-command: "make install" //
75// End: //
Note: See TracBrowser for help on using the repository browser.