source: translator/GenPoly/ScrubTyVars.cc@ 4bf5298

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 4bf5298 was bdd516a, checked in by Peter A. Buhr <pabuhr@…>, 11 years ago

fixed sizeof type variable, find lowest cost alternative for sizeof expression, removed unused classes, added compiler flag, remove temporary file for -CFA, formatting

  • Property mode set to 100644
File size: 1.5 KB
Line 
1#include "GenPoly.h"
2#include "ScrubTyVars.h"
3
4#include "SynTree/Mutator.h"
5#include "SynTree/Type.h"
6#include "SynTree/Expression.h"
7
8
9namespace GenPoly {
10 Type * ScrubTyVars::mutate( TypeInstType *typeInst ) {
11 TyVarMap::const_iterator tyVar = tyVars.find( typeInst->get_name() );
12 if ( doAll || tyVar != tyVars.end() ) {
13 switch( tyVar->second ) {
14 case TypeDecl::Any:
15 case TypeDecl::Dtype:
16 {
17 PointerType *ret = new PointerType( Type::Qualifiers(), new VoidType( typeInst->get_qualifiers() ) );
18 delete typeInst;
19 return ret;
20 }
21 case TypeDecl::Ftype:
22 delete typeInst;
23 return new PointerType( Type::Qualifiers(), new FunctionType( Type::Qualifiers(), true ) );
24 }
25 }
26 return typeInst;
27 }
28
29 Expression * ScrubTyVars::mutate( SizeofExpr *szeof ) {
30 // sizeof( T ) => T parameter, which is the size of T
31 if ( TypeInstType *typeInst = dynamic_cast< TypeInstType * >( szeof->get_type() ) ) {
32 Expression *expr = new NameExpr( typeInst->get_name() );
33 return expr;
34 } else {
35 return Mutator::mutate( szeof );
36 }
37 }
38
39 Type * ScrubTyVars::mutate( PointerType *pointer ) {
40 if ( TypeInstType *typeInst = dynamic_cast< TypeInstType * >( pointer->get_base() ) ) {
41 if ( doAll || tyVars.find( typeInst->get_name() ) != tyVars.end() ) {
42 Type *ret = mutate( typeInst );
43 ret->get_qualifiers() += pointer->get_qualifiers();
44 pointer->set_base( 0 );
45 delete pointer;
46 return ret;
47 }
48 }
49 return Mutator::mutate( pointer );
50 }
51} // namespace GenPoly
Note: See TracBrowser for help on using the repository browser.