Make the MC symbol printer and llvm::Mangler exactly agree on mangling
authorChris Lattner <sabre@nondot.org>
Sun, 13 Sep 2009 18:04:46 +0000 (18:04 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 13 Sep 2009 18:04:46 +0000 (18:04 +0000)
for systems that don't support quoting (PR4966).

git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@81682 91177308-0d34-0410-b5e6-96231b3b80d8

lib/MC/MCSymbol.cpp
lib/VMCore/Mangler.cpp

index ef58aecf33cd7f832f9c09b21dc6b4126eb92a0b..64cc15af1b1e18eb83f17ec34fbc7dab0d192a1e 100644 (file)
@@ -16,16 +16,27 @@ using namespace llvm;
 const MCSection *MCSymbol::AbsolutePseudoSection =
   reinterpret_cast<const MCSection *>(1);
 
-/// ShouldQuoteIdentifier - Return true if the identifier \arg Str needs quotes
-/// for this assembler.
-static bool ShouldQuoteIdentifier(const StringRef &Str, const MCAsmInfo &MAI) {
-  // If the assembler doesn't support quotes, never use them.
-  if (!MAI.doesAllowQuotesInName())
+static bool isAcceptableChar(char C) {
+  if ((C < 'a' || C > 'z') &&
+      (C < 'A' || C > 'Z') &&
+      (C < '0' || C > '9') &&
+      C != '_' && C != '$' && C != '.' && C != '@')
     return false;
-  
-  // If empty, we need quotes.
-  if (Str.empty())
-    return true;
+  return true;
+}
+
+static char HexDigit(int V) {
+  return V < 10 ? V+'0' : V+'A'-10;
+}
+
+static void MangleLetter(raw_ostream &OS, unsigned char C) {
+  OS << '_' << HexDigit(C >> 4) << HexDigit(C & 15) << '_';
+}
+
+/// NameNeedsEscaping - Return true if the identifier \arg Str needs quotes
+/// for this assembler.
+static bool NameNeedsEscaping(const StringRef &Str, const MCAsmInfo &MAI) {
+  assert(!Str.empty() && "Cannot create an empty MCSymbol");
   
   // If the first character is a number, we need quotes.
   if (Str[0] >= '0' && Str[0] <= '9')
@@ -33,23 +44,42 @@ static bool ShouldQuoteIdentifier(const StringRef &Str, const MCAsmInfo &MAI) {
 
   // If any of the characters in the string is an unacceptable character, force
   // quotes.
-  for (unsigned i = 0, e = Str.size(); i != e; ++i) {
-    char C = Str[i];
-  
-    if ((C < 'a' || C > 'z') &&
-        (C < 'A' || C > 'Z') &&
-        (C < '0' || C > '9') &&
-        C != '_' && C != '$' && C != '.' && C != '@')
+  for (unsigned i = 0, e = Str.size(); i != e; ++i)
+    if (!isAcceptableChar(Str[i]))
       return true;
-  }
   return false;
 }
 
+static void PrintMangledName(raw_ostream &OS, StringRef Str) {
+  // The first character is not allowed to be a number.
+  if (Str[0] >= '0' && Str[0] <= '9') {
+    MangleLetter(OS, Str[0]);
+    Str = Str.substr(1);
+  }
+  
+  for (unsigned i = 0, e = Str.size(); i != e; ++i) {
+    if (!isAcceptableChar(Str[i]))
+      MangleLetter(OS, Str[i]);
+    else
+      OS << Str[i];
+  }
+}
+
+
 void MCSymbol::print(raw_ostream &OS, const MCAsmInfo *MAI) const {
-  if (!MAI || ShouldQuoteIdentifier(getName(), *MAI))
-    OS << '"' << getName() << '"';
-  else
+  if (MAI == 0 || !NameNeedsEscaping(getName(), *MAI)) {
     OS << getName();
+    return;
+  }
+
+  // On darwin and other systems that allow quoted names, just do that.
+  if (MAI->doesAllowQuotesInName()) {
+    OS << '"' << getName() << '"';
+    return;
+  }
+  
+  // Otherwise, we have to mangle the name.
+  PrintMangledName(OS, getName());
 }
 
 void MCSymbol::dump() const {
index d56e8e2ee03f68ae6f683055c90a58dfa00c3ce3..e0e224826dea64bf81f825d5fa74a89013297f6e 100644 (file)
@@ -222,4 +222,5 @@ Mangler::Mangler(Module &M, const char *prefix, const char *privatePrefix,
   markCharAcceptable('_');
   markCharAcceptable('$');
   markCharAcceptable('.');
+  markCharAcceptable('@');
 }