2004-09-02 00:55:40 +02:00
|
|
|
//===-- llvm/Support/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"
|
2008-07-10 02:04:23 +02:00
|
|
|
#include "llvm/ADT/SmallPtrSet.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 {
|
2004-07-09 00:09:07 +02:00
|
|
|
class Type;
|
2004-02-14 01:30:31 +01:00
|
|
|
class Module;
|
2005-11-10 19:46:57 +01:00
|
|
|
class Value;
|
2004-02-14 01:30:31 +01:00
|
|
|
class GlobalValue;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2003-07-24 22:20:58 +02:00
|
|
|
class Mangler {
|
2005-11-10 20:02:52 +01: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 08:06:37 +02:00
|
|
|
const char *Prefix;
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2009-05-06 00:50:29 +02:00
|
|
|
/// PrivatePrefix - This string is emitted before each symbol with private
|
|
|
|
/// linkage.
|
2009-01-15 21:18:42 +01:00
|
|
|
const char *PrivatePrefix;
|
2009-05-06 00:50:29 +02:00
|
|
|
|
2009-02-20 23:51:36 +01:00
|
|
|
/// UseQuotes - If this is set, the target accepts global names in quotes,
|
2005-11-10 20:30:07 +01:00
|
|
|
/// 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;
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2006-09-07 20:20:41 +02:00
|
|
|
/// PreserveAsmNames - If this is set, the asm escape character is not removed
|
2009-02-20 23:51:36 +01:00
|
|
|
/// from names with 'asm' specifiers.
|
2006-09-07 20:20:41 +02:00
|
|
|
bool PreserveAsmNames;
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2005-11-10 20:02:52 +01:00
|
|
|
/// Memo - This is used to remember the name that we assign a value.
|
|
|
|
///
|
2008-06-26 19:20:16 +02:00
|
|
|
DenseMap<const Value*, std::string> Memo;
|
2003-08-11 21:34:29 +02:00
|
|
|
|
2005-11-10 20:02:52 +01:00
|
|
|
/// Count - This simple counter is used to unique value names.
|
|
|
|
///
|
2003-08-11 21:34:29 +02:00
|
|
|
unsigned Count;
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2005-11-10 20:02:52 +01: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 02:04:23 +02:00
|
|
|
DenseMap<const Type*, unsigned> TypeMap;
|
2005-11-10 20:02:52 +01:00
|
|
|
unsigned TypeCounter;
|
2004-02-14 01:30:31 +01:00
|
|
|
|
2005-11-10 22:39:12 +01: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 22:20:58 +02:00
|
|
|
public:
|
2003-08-11 21:34:29 +02:00
|
|
|
|
2004-08-17 08:06:37 +02:00
|
|
|
// Mangler ctor - if a prefix is specified, it will be prepended onto all
|
|
|
|
// symbols.
|
2009-01-15 21:18:42 +01:00
|
|
|
Mangler(Module &M, const char *Prefix = "", const char *privatePrefix = "");
|
2003-08-11 21:34:29 +02:00
|
|
|
|
2005-11-10 20:30:07 +01:00
|
|
|
/// setUseQuotes - If UseQuotes is set to true, this target accepts quoted
|
|
|
|
/// strings for assembler labels.
|
|
|
|
void setUseQuotes(bool Val) { UseQuotes = Val; }
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2006-09-07 20:20:41 +02:00
|
|
|
/// setPreserveAsmNames - If the mangler should not strip off the asm name
|
2007-08-05 22:06:04 +02:00
|
|
|
/// @verbatim identifier (\001), this should be set. @endverbatim
|
2006-09-07 20:20:41 +02:00
|
|
|
void setPreserveAsmNames(bool Val) { PreserveAsmNames = Val; }
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2005-11-10 22:39:12 +01: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;
|
|
|
|
}
|
2009-02-20 23:51:36 +01:00
|
|
|
|
2003-07-24 22:20:58 +02:00
|
|
|
/// getValueName - Returns the mangled name of V, an LLVM Value,
|
|
|
|
/// in the current module.
|
|
|
|
///
|
2007-09-18 00:39:32 +02:00
|
|
|
std::string getValueName(const GlobalValue *V, const char *Suffix = "");
|
2003-07-24 22:20:58 +02: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 22:48:15 +02:00
|
|
|
///
|
2009-05-06 00:50:29 +02:00
|
|
|
std::string makeNameProper(const std::string &x, const char *Prefix = 0,
|
|
|
|
const char *PrivatePrefix = 0);
|
2008-07-10 02:04:23 +02:00
|
|
|
|
2005-11-10 20:30:07 +01:00
|
|
|
private:
|
2008-07-10 02:04:23 +02:00
|
|
|
/// getTypeID - Return a unique ID for the specified LLVM type.
|
|
|
|
///
|
|
|
|
unsigned getTypeID(const Type *Ty);
|
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
|