// // 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 "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 SymTab { namespace Mangler { /// Mangle syntax tree object; primary interface to clients std::string mangle( BaseSyntaxNode * decl, bool mangleOverridable = true, bool typeMode = false, bool mangleGenericParams = true ); /// Mangle a type name; secondary interface std::string mangleType( Type* ty ); /// Mangle ignoring generic type parameters std::string mangleConcrete( Type* ty ); namespace Encoding { extern const std::string manglePrefix; extern const std::string basicTypes[]; extern const std::map qualifiers; extern const std::string voidType; 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 autogen; extern const std::string intrinsic; }; } // Mangler } // SymTab extern "C" { std::string cforall_demangle(const std::string &); } // Local Variables: // // tab-width: 4 // // mode: c++ // // compile-command: "make install" // // End: //