From 833eb68a1f18f361b2429fe12d13533cc9e3debe Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Thu, 7 Sep 2006 18:20:41 +0000 Subject: [PATCH] Add new option to leave asm names alone git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@30149 91177308-0d34-0410-b5e6-96231b3b80d8 --- include/llvm/Support/Mangler.h | 8 ++++++++ lib/VMCore/Mangler.cpp | 7 ++++++- 2 files changed, 14 insertions(+), 1 deletion(-) diff --git a/include/llvm/Support/Mangler.h b/include/llvm/Support/Mangler.h index ac7deadf8bd..b6f9839fab2 100644 --- a/include/llvm/Support/Mangler.h +++ b/include/llvm/Support/Mangler.h @@ -35,6 +35,10 @@ class Mangler { /// the space character. By default, this is false. bool UseQuotes; + /// PreserveAsmNames - If this is set, the asm escape character is not removed + /// from names with 'asm' specifiers. + bool PreserveAsmNames; + /// Memo - This is used to remember the name that we assign a value. /// std::map Memo; @@ -66,6 +70,10 @@ public: /// strings for assembler labels. void setUseQuotes(bool Val) { UseQuotes = Val; } + /// setPreserveAsmNames - If the mangler should not strip off the asm name + /// identifier (\001), this should be set. + void setPreserveAsmNames(bool Val) { PreserveAsmNames = Val; } + /// 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. diff --git a/lib/VMCore/Mangler.cpp b/lib/VMCore/Mangler.cpp index 53719aff2cc..8715498b9cd 100644 --- a/lib/VMCore/Mangler.cpp +++ b/lib/VMCore/Mangler.cpp @@ -33,6 +33,10 @@ std::string Mangler::makeNameProper(const std::string &X, const char *Prefix) { std::string Result; if (X.empty()) return X; // Empty names are uniqued by the caller. + // If PreserveAsmNames is set, names with asm identifiers are not modified. + if (PreserveAsmNames && X[0] == 1) + return X; + if (!UseQuotes) { // If X does not start with (char)1, add the prefix. std::string::const_iterator I = X.begin(); @@ -174,7 +178,8 @@ void Mangler::InsertName(GlobalValue *GV, Mangler::Mangler(Module &M, const char *prefix) - : Prefix(prefix), UseQuotes(false), Count(0), TypeCounter(0) { + : Prefix(prefix), UseQuotes(false), PreserveAsmNames(false), + Count(0), TypeCounter(0) { std::fill(AcceptableChars, AcceptableChars+sizeof(AcceptableChars)/sizeof(AcceptableChars[0]), 0);