2014-01-07 21:19:40 +00:00
|
|
|
//===-- llvm/IR/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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#ifndef LLVM_IR_MANGLER_H
|
|
|
|
#define LLVM_IR_MANGLER_H
|
2003-07-24 20:20:58 +00:00
|
|
|
|
2008-06-26 17:20:16 +00:00
|
|
|
#include "llvm/ADT/DenseMap.h"
|
2014-01-29 02:30:38 +00:00
|
|
|
#include "llvm/Support/raw_ostream.h"
|
2003-07-24 20:20:58 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
2013-05-29 20:37:19 +00:00
|
|
|
|
2014-01-03 19:21:54 +00:00
|
|
|
class DataLayout;
|
2004-02-14 00:30:31 +00:00
|
|
|
class GlobalValue;
|
2013-05-29 20:37:19 +00:00
|
|
|
template <typename T> class SmallVectorImpl;
|
|
|
|
class Twine;
|
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:
|
2014-01-03 19:21:54 +00:00
|
|
|
const DataLayout *DL;
|
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
|
|
|
///
|
2014-02-10 21:25:13 +00:00
|
|
|
mutable 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
|
|
|
///
|
2014-02-10 21:25:13 +00:00
|
|
|
mutable unsigned NextAnonGlobalID;
|
2009-02-20 22:51:36 +00:00
|
|
|
|
2009-07-20 01:03:30 +00:00
|
|
|
public:
|
2014-01-03 19:21:54 +00:00
|
|
|
Mangler(const DataLayout *DL) : DL(DL), NextAnonGlobalID(1) {}
|
2010-03-12 18:55:20 +00:00
|
|
|
|
2014-01-29 02:30:38 +00:00
|
|
|
/// Print 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.
|
2014-02-19 17:23:20 +00:00
|
|
|
void getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV,
|
|
|
|
bool CannotUsePrivateLabel) const;
|
|
|
|
void getNameWithPrefix(SmallVectorImpl<char> &OutName, const GlobalValue *GV,
|
|
|
|
bool CannotUsePrivateLabel) const;
|
2012-10-09 01:56:07 +00:00
|
|
|
|
2014-01-29 02:30:38 +00:00
|
|
|
/// Print the appropriate prefix and the specified name as the global variable
|
|
|
|
/// name. GVName must not be empty.
|
|
|
|
void getNameWithPrefix(raw_ostream &OS, const Twine &GVName,
|
2014-02-10 21:25:13 +00:00
|
|
|
ManglerPrefixTy PrefixTy = Mangler::Default) const;
|
2010-01-13 21:31:39 +00:00
|
|
|
void getNameWithPrefix(SmallVectorImpl<char> &OutName, const Twine &GVName,
|
2014-02-10 21:25:13 +00:00
|
|
|
ManglerPrefixTy PrefixTy = Mangler::Default) const;
|
2003-07-24 20:20:58 +00:00
|
|
|
};
|
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
} // End llvm namespace
|
|
|
|
|
2014-08-13 16:26:38 +00:00
|
|
|
#endif
|