2010-03-12 19:55:20 +01:00
|
|
|
//===-- llvm/Target/Mangler.h - Self-contained name mangler -----*- C++ -*-===//
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 20:59:42 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-21 22:48:15 +02:00
|
|
|
//
|
2003-10-20 22:19:47 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-07-24 22:20:58 +02:00
|
|
|
//
|
2004-02-14 01:30:31 +01:00
|
|
|
// Unified name mangler for various backends.
|
2003-07-24 22:20:58 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#ifndef LLVM_SUPPORT_MANGLER_H
|
|
|
|
#define LLVM_SUPPORT_MANGLER_H
|
|
|
|
|
2008-06-26 19:20:16 +02:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2003-07-28 18:42:33 +02:00
|
|
|
#include <string>
|
2003-07-24 22:20:58 +02:00
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
namespace llvm {
|
2010-01-17 20:23:46 +01:00
|
|
|
class StringRef;
|
2010-01-13 06:02:57 +01:00
|
|
|
class Twine;
|
2005-11-10 19:46:57 +01:00
|
|
|
class Value;
|
2004-02-14 01:30:31 +01:00
|
|
|
class GlobalValue;
|
2009-09-11 07:40:42 +02:00
|
|
|
template <typename T> class SmallVectorImpl;
|
2010-03-12 19:44:54 +01:00
|
|
|
class MCContext;
|
2010-03-12 19:55:20 +01:00
|
|
|
class MCSymbol;
|
2010-03-12 21:47:28 +01:00
|
|
|
class TargetData;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2003-07-24 22:20:58 +02:00
|
|
|
class Mangler {
|
2009-07-20 03:03:30 +02:00
|
|
|
public:
|
|
|
|
enum ManglerPrefixTy {
|
2009-07-20 21:41:27 +02:00
|
|
|
Default, ///< Emit default string before each symbol.
|
|
|
|
Private, ///< Emit "private" prefix before each symbol.
|
2010-06-30 00:34:52 +02:00
|
|
|
LinkerPrivate ///< Emit "linker private" prefix before each symbol.
|
2009-07-20 03:03:30 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2010-03-12 19:55:20 +01:00
|
|
|
MCContext &Context;
|
2010-03-12 21:47:28 +01:00
|
|
|
const TargetData &TD;
|
2009-07-20 03:03:30 +02:00
|
|
|
|
2009-07-14 02:01:06 +02: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 20:02:52 +01:00
|
|
|
///
|
2009-07-14 02:01:06 +02:00
|
|
|
DenseMap<const GlobalValue*, unsigned> AnonGlobalIDs;
|
2003-08-11 21:34:29 +02:00
|
|
|
|
2009-07-14 02:01:06 +02:00
|
|
|
/// NextAnonGlobalID - This simple counter is used to unique value names.
|
2005-11-10 20:02:52 +01:00
|
|
|
///
|
2009-07-14 02:01:06 +02:00
|
|
|
unsigned NextAnonGlobalID;
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2009-07-20 03:03:30 +02:00
|
|
|
public:
|
2010-03-12 21:47:28 +01:00
|
|
|
Mangler(MCContext &context, const TargetData &td)
|
|
|
|
: Context(context), TD(td), NextAnonGlobalID(1) {}
|
2003-08-11 21:34:29 +02:00
|
|
|
|
2010-03-12 19:55:20 +01: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 22:31:39 +01: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 19:06:34 +01: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 19:12:14 +01:00
|
|
|
std::string getNameWithPrefix(const GlobalValue *GV,
|
|
|
|
bool isImplicitlyPrivate = false);
|
2003-07-24 22:20:58 +02:00
|
|
|
};
|
|
|
|
|
2003-11-11 23:41:34 +01:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2003-07-24 22:20:58 +02:00
|
|
|
#endif // LLVM_SUPPORT_MANGLER_H
|