2010-03-12 18:55:20 +00:00
|
|
|
//===-- llvm/Target/Mangler.h - Self-contained name mangler -----*- C++ -*-===//
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 19:59:42 +00:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 20:48:15 +00:00
|
|
|
//
|
2003-10-20 20:19:47 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-07-24 20:20:58 +00:00
|
|
|
//
|
2004-02-14 00:30:31 +00:00
|
|
|
// Unified name mangler for various backends.
|
2003-07-24 20:20:58 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_MANGLER_H
|
|
|
|
#define LLVM_SUPPORT_MANGLER_H
|
|
|
|
|
2008-06-26 17:20:16 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2003-07-28 16:42:33 +00:00
|
|
|
#include <string>
|
2003-07-24 20:20:58 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2010-01-17 19:23:46 +00:00
|
|
|
class StringRef;
|
2010-01-13 05:02:57 +00:00
|
|
|
class Twine;
|
2005-11-10 18:46:57 +00:00
|
|
|
class Value;
|
2004-02-14 00:30:31 +00:00
|
|
|
class GlobalValue;
|
2009-09-11 05:40:42 +00:00
|
|
|
template <typename T> class SmallVectorImpl;
|
2010-03-12 18:44:54 +00:00
|
|
|
class MCContext;
|
2010-03-12 18:55:20 +00:00
|
|
|
class MCSymbol;
|
2010-03-12 20:47:28 +00:00
|
|
|
class TargetData;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
class Mangler {
|
2009-07-20 01:03:30 +00:00
|
|
|
public:
|
|
|
|
enum ManglerPrefixTy {
|
2009-07-20 19:41:27 +00:00
|
|
|
Default, ///< Emit default string before each symbol.
|
|
|
|
Private, ///< Emit "private" prefix before each symbol.
|
2010-06-29 22:34:52 +00:00
|
|
|
LinkerPrivate ///< Emit "linker private" prefix before each symbol.
|
2009-07-20 01:03:30 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2010-03-12 18:55:20 +00:00
|
|
|
MCContext &Context;
|
2010-03-12 20:47:28 +00:00
|
|
|
const TargetData &TD;
|
2009-07-20 01:03:30 +00:00
|
|
|
|
2009-07-14 00:01:06 +00:00
|
|
|
/// AnonGlobalIDs - We need to give global values the same name every time
|
|
|
|
/// they are mangled. This keeps track of the number we give to anonymous
|
|
|
|
/// ones.
|
2005-11-10 19:02:52 +00:00
|
|
|
///
|
2009-07-14 00:01:06 +00:00
|
|
|
DenseMap<const GlobalValue*, unsigned> AnonGlobalIDs;
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2009-07-14 00:01:06 +00:00
|
|
|
/// NextAnonGlobalID - This simple counter is used to unique value names.
|
2005-11-10 19:02:52 +00:00
|
|
|
///
|
2009-07-14 00:01:06 +00:00
|
|
|
unsigned NextAnonGlobalID;
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-20 01:03:30 +00:00
|
|
|
public:
|
2010-03-12 20:47:28 +00:00
|
|
|
Mangler(MCContext &context, const TargetData &td)
|
|
|
|
: Context(context), TD(td), NextAnonGlobalID(1) {}
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2010-03-12 18:55:20 +00:00
|
|
|
/// getSymbol - Return the MCSymbol for the specified global value. This
|
|
|
|
/// symbol is the main label that is the address of the global.
|
|
|
|
MCSymbol *getSymbol(const GlobalValue *GV);
|
|
|
|
|
|
|
|
|
2010-01-13 21:31:39 +00:00
|
|
|
/// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
|
|
|
|
/// and the specified global variable's name. If the global variable doesn't
|
|
|
|
/// have a name, this fills in a unique name for the global.
|
|
|
|
void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
|
|
|
|
bool isImplicitlyPrivate);
|
|
|
|
|
|
|
|
/// getNameWithPrefix - Fill OutName with the name of the appropriate prefix
|
|
|
|
/// and the specified name as the global variable name. GVName must not be
|
|
|
|
/// empty.
|
|
|
|
void getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName,
|
|
|
|
ManglerPrefixTy PrefixTy = Mangler::Default);
|
|
|
|
|
2010-01-16 18:06:34 +00:00
|
|
|
/// getNameWithPrefix - Return the name of the appropriate prefix
|
|
|
|
/// and the specified global variable's name. If the global variable doesn't
|
|
|
|
/// have a name, this fills in a unique name for the global.
|
2010-01-16 18:12:14 +00:00
|
|
|
std::string getNameWithPrefix(const GlobalValue *GV,
|
|
|
|
bool isImplicitlyPrivate = false);
|
2003-07-24 20:20:58 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
#endif // LLVM_SUPPORT_MANGLER_H
|