2004-09-01 22:55:40 +00:00
|
|
|
//===-- llvm/Support/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"
|
2008-07-10 00:04:23 +00:00
|
|
|
#include "llvm/ADT/SmallPtrSet.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 {
|
2004-07-08 22:09:07 +00:00
|
|
|
class Type;
|
2004-02-14 00:30:31 +00:00
|
|
|
class Module;
|
2005-11-10 18:46:57 +00:00
|
|
|
class Value;
|
2004-02-14 00:30:31 +00:00
|
|
|
class GlobalValue;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
class Mangler {
|
2005-11-10 19:02:52 +00:00
|
|
|
/// Prefix - This string is added to each symbol that is emitted, unless the
|
|
|
|
/// symbol is marked as not needing this prefix.
|
2004-08-17 06:06:37 +00:00
|
|
|
const char *Prefix;
|
2005-11-10 19:30:07 +00:00
|
|
|
|
2009-01-15 20:18:42 +00:00
|
|
|
const char *PrivatePrefix;
|
2005-11-10 19:30:07 +00:00
|
|
|
/// UseQuotes - If this is set, the target accepts global names in quotes,
|
|
|
|
/// e.g. "foo bar" is a legal name. This syntax is used instead of escaping
|
|
|
|
/// the space character. By default, this is false.
|
|
|
|
bool UseQuotes;
|
|
|
|
|
2006-09-07 18:20:41 +00:00
|
|
|
/// PreserveAsmNames - If this is set, the asm escape character is not removed
|
|
|
|
/// from names with 'asm' specifiers.
|
|
|
|
bool PreserveAsmNames;
|
|
|
|
|
2005-11-10 19:02:52 +00:00
|
|
|
/// Memo - This is used to remember the name that we assign a value.
|
|
|
|
///
|
2008-06-26 17:20:16 +00:00
|
|
|
DenseMap<const Value*, std::string> Memo;
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2005-11-10 19:02:52 +00:00
|
|
|
/// Count - This simple counter is used to unique value names.
|
|
|
|
///
|
2003-08-11 19:34:29 +00:00
|
|
|
unsigned Count;
|
2005-11-10 19:02:52 +00:00
|
|
|
|
|
|
|
/// TypeMap - If the client wants us to unique types, this keeps track of the
|
|
|
|
/// current assignments and TypeCounter keeps track of the next id to assign.
|
2008-07-10 00:04:23 +00:00
|
|
|
DenseMap<const Type*, unsigned> TypeMap;
|
2005-11-10 19:02:52 +00:00
|
|
|
unsigned TypeCounter;
|
2004-02-14 00:30:31 +00:00
|
|
|
|
2005-11-10 21:39:12 +00:00
|
|
|
/// AcceptableChars - This bitfield contains a one for each character that is
|
|
|
|
/// allowed to be part of an unmangled name.
|
|
|
|
unsigned AcceptableChars[256/32];
|
2003-07-24 20:20:58 +00:00
|
|
|
public:
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2004-08-17 06:06:37 +00:00
|
|
|
// Mangler ctor - if a prefix is specified, it will be prepended onto all
|
|
|
|
// symbols.
|
2009-01-15 20:18:42 +00:00
|
|
|
Mangler(Module &M, const char *Prefix = "", const char *privatePrefix = "");
|
2003-08-11 19:34:29 +00:00
|
|
|
|
2005-11-10 19:30:07 +00:00
|
|
|
/// setUseQuotes - If UseQuotes is set to true, this target accepts quoted
|
|
|
|
/// strings for assembler labels.
|
|
|
|
void setUseQuotes(bool Val) { UseQuotes = Val; }
|
|
|
|
|
2006-09-07 18:20:41 +00:00
|
|
|
/// setPreserveAsmNames - If the mangler should not strip off the asm name
|
2007-08-05 20:06:04 +00:00
|
|
|
/// @verbatim identifier (\001), this should be set. @endverbatim
|
2006-09-07 18:20:41 +00:00
|
|
|
void setPreserveAsmNames(bool Val) { PreserveAsmNames = Val; }
|
|
|
|
|
2005-11-10 21:39:12 +00:00
|
|
|
/// Acceptable Characters - This allows the target to specify which characters
|
|
|
|
/// are acceptable to the assembler without being mangled. By default we
|
|
|
|
/// allow letters, numbers, '_', '$', and '.', which is what GAS accepts.
|
|
|
|
void markCharAcceptable(unsigned char X) {
|
|
|
|
AcceptableChars[X/32] |= 1 << (X&31);
|
|
|
|
}
|
|
|
|
void markCharUnacceptable(unsigned char X) {
|
|
|
|
AcceptableChars[X/32] &= ~(1 << (X&31));
|
|
|
|
}
|
|
|
|
bool isCharAcceptable(unsigned char X) const {
|
|
|
|
return (AcceptableChars[X/32] & (1 << (X&31))) != 0;
|
|
|
|
}
|
|
|
|
|
2003-07-24 20:20:58 +00:00
|
|
|
/// getValueName - Returns the mangled name of V, an LLVM Value,
|
|
|
|
/// in the current module.
|
|
|
|
///
|
2007-09-17 22:39:32 +00:00
|
|
|
std::string getValueName(const GlobalValue *V, const char *Suffix = "");
|
2003-07-24 20:20:58 +00:00
|
|
|
std::string getValueName(const Value *V);
|
|
|
|
|
|
|
|
/// makeNameProper - We don't want identifier names with ., space, or
|
|
|
|
/// - in them, so we mangle these characters into the strings "d_",
|
|
|
|
/// "s_", and "D_", respectively. This is a very simple mangling that
|
|
|
|
/// doesn't guarantee unique names for values. getValueName already
|
|
|
|
/// does this for you, so there's no point calling it on the result
|
|
|
|
/// from getValueName.
|
2005-04-21 20:48:15 +00:00
|
|
|
///
|
2005-11-10 18:55:09 +00:00
|
|
|
std::string makeNameProper(const std::string &x, const char *Prefix = "");
|
2008-07-10 00:04:23 +00:00
|
|
|
|
2005-11-10 19:30:07 +00:00
|
|
|
private:
|
2008-07-10 00:04:23 +00:00
|
|
|
/// getTypeID - Return a unique ID for the specified LLVM type.
|
|
|
|
///
|
|
|
|
unsigned getTypeID(const Type *Ty);
|
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
|