source: src/SymTab/Mangler.h @ ea91c42

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 ea91c42 was 6b0b624, checked in by Peter A. Buhr <pabuhr@…>, 7 years ago

change #ifndef to #pragma once

  • Property mode set to 100644
File size: 2.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// Mangler.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 21:44:03 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sat Jul 22 09:45:30 2017
13// Update Count     : 15
14//
15
16#pragma once
17
18#include <sstream>
19#include "SynTree/SynTree.h"
20#include "SynTree/Visitor.h"
21
22namespace SymTab {
23        /// Mangles names to a unique C identifier
24        class Mangler : public Visitor {
25          public:
26                /// Mangle syntax tree object; primary interface to clients
27                template< typename SynTreeClass >
28            static std::string mangle( SynTreeClass *decl, bool mangleOverridable = true, bool typeMode = false );
29                /// Mangle a type name; secondary interface
30                static std::string mangleType( Type* ty );
31
32                virtual void visit( ObjectDecl *declaration );
33                virtual void visit( FunctionDecl *declaration );
34                virtual void visit( TypeDecl *declaration );
35
36                virtual void visit( VoidType *voidType );
37                virtual void visit( BasicType *basicType );
38                virtual void visit( PointerType *pointerType );
39                virtual void visit( ArrayType *arrayType );
40                virtual void visit( FunctionType *functionType );
41                virtual void visit( StructInstType *aggregateUseType );
42                virtual void visit( UnionInstType *aggregateUseType );
43                virtual void visit( EnumInstType *aggregateUseType );
44                virtual void visit( TypeInstType *aggregateUseType );
45                virtual void visit( TupleType *tupleType );
46                virtual void visit( VarArgsType *varArgsType );
47                virtual void visit( ZeroType *zeroType );
48                virtual void visit( OneType *oneType );
49 
50                std::string get_mangleName() { return mangleName.str(); }
51          private:
52                std::ostringstream mangleName;  ///< Mangled name being constructed
53                typedef std::map< std::string, std::pair< int, int > > VarMapType;
54                VarMapType varNums;             ///< Map of type variables to indices
55                int nextVarNum;                 ///< Next type variable index
56                bool isTopLevel;                ///< Is the Mangler at the top level
57                bool mangleOverridable;         ///< Specially mangle overridable built-in methods
58                bool typeMode;                  ///< Produce a unique mangled name for a type
59 
60                Mangler( bool mangleOverridable, bool typeMode );
61                Mangler( const Mangler & );
62 
63                void mangleDecl( DeclarationWithType *declaration );
64                void mangleRef( ReferenceToType *refType, std::string prefix );
65                void mangleGenericRef( ReferenceToType *refType, std::string prefix );
66 
67                void printQualifiers( Type *type );
68        }; // Mangler
69
70        template< typename SynTreeClass >
71        std::string Mangler::mangle( SynTreeClass *decl, bool mangleOverridable, bool typeMode ) {
72                Mangler mangler( mangleOverridable, typeMode );
73                maybeAccept( decl, mangler );
74                return mangler.get_mangleName();
75        }
76} // SymTab
77
78// Local Variables: //
79// tab-width: 4 //
80// mode: c++ //
81// compile-command: "make install" //
82// End: //
Note: See TracBrowser for help on using the repository browser.