// // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo // // The contents of this file are covered under the licence agreement in the // file "LICENCE" distributed with Cforall. // // Mangler.h -- // // Author : Richard C. Bilson // Created On : Sun May 17 21:44:03 2015 // Last Modified By : Peter A. Buhr // Last Modified On : Sat Jul 22 09:45:30 2017 // Update Count : 15 // #pragma once #include // for map, map<>::value_compare #include // for ostringstream #include // for string #include // for pair #include "AST/Bitfield.hpp" #include "AST/Fwd.hpp" #include "SynTree/SynTree.h" // for Types #include "SynTree/Visitor.h" // for Visitor, maybeAccept // https://itanium-cxx-abi.github.io/cxx-abi/abi.html#mangling // The CFA name mangling scheme is based closely on the itanium C++ name mangling scheme, with the following key differences: // * Variable names are also mangled to include type information, not just functions // * CFA does not have template expansion, so the rules for function specialization do not apply. // * CFA instead has to handle type parameters and assertion parameters. // * Currently name compression is not implemented. namespace ResolvExpr { class TypeEnvironment; } namespace SymTab { namespace Mangler { /// Mangle syntax tree object; primary interface to clients std::string mangle( const BaseSyntaxNode * decl, bool mangleOverridable = true, bool typeMode = false, bool mangleGenericParams = true ); /// Mangle a type name; secondary interface std::string mangleType( const Type * ty ); /// Mangle ignoring generic type parameters std::string mangleConcrete( const Type * ty ); namespace Encoding { extern const std::string manglePrefix; extern const std::string basicTypes[]; extern const std::map qualifiers; extern const std::string void_t; extern const std::string zero; extern const std::string one; extern const std::string function; extern const std::string tuple; extern const std::string pointer; extern const std::string array; extern const std::string qualifiedTypeStart; extern const std::string qualifiedTypeEnd; extern const std::string forall; extern const std::string typeVariables[]; extern const std::string struct_t; extern const std::string union_t; extern const std::string enum_t; extern const std::string type; extern const std::string autogen; extern const std::string intrinsic; }; } // Mangler } // SymTab namespace Mangle { /// Bitflags for mangle modes enum { NoOverrideable = 1 << 0, Type = 1 << 1, NoGenericParams = 1 << 2 }; /// Bitflag type for mangler modes struct mangle_flags { union { unsigned int val; struct { bool no_overrideable : 1; bool type : 1; bool no_generic_params : 1; }; }; constexpr mangle_flags( unsigned int val ) : val(val) {} }; using Mode = bitfield; static inline Mode typeMode() { return NoOverrideable | Type; } /// Mangle declaration name std::string mangle( const ast::Node * decl, Mode mode = {} ); namespace Encoding { using namespace SymTab::Mangler::Encoding; }; } extern "C" { char * cforall_demangle(const char *, int); } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //