summaryrefslogtreecommitdiffstats
path: root/llvm/lib
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2009-09-13 18:04:46 +0000
committerChris Lattner <sabre@nondot.org>2009-09-13 18:04:46 +0000
commit3d6c8ebb584375d01b1acead4c2056b3f0c501fc (patch)
tree1f3dad2e35195f597e85f505045058076a8f0117 /llvm/lib
parentccbabc9645329bbb05b8fc3d50c694f28f284698 (diff)
downloadbcm5719-llvm-3d6c8ebb584375d01b1acead4c2056b3f0c501fc.tar.gz
bcm5719-llvm-3d6c8ebb584375d01b1acead4c2056b3f0c501fc.zip
Make the MC symbol printer and llvm::Mangler exactly agree on mangling
for systems that don't support quoting (PR4966). llvm-svn: 81682
Diffstat (limited to 'llvm/lib')
-rw-r--r--llvm/lib/MC/MCSymbol.cpp70
-rw-r--r--llvm/lib/VMCore/Mangler.cpp1
2 files changed, 51 insertions, 20 deletions
diff --git a/llvm/lib/MC/MCSymbol.cpp b/llvm/lib/MC/MCSymbol.cpp
index ef58aecf33c..64cc15af1b1 100644
--- a/llvm/lib/MC/MCSymbol.cpp
+++ b/llvm/lib/MC/MCSymbol.cpp
@@ -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 {
diff --git a/llvm/lib/VMCore/Mangler.cpp b/llvm/lib/VMCore/Mangler.cpp
index d56e8e2ee03..e0e224826de 100644
--- a/llvm/lib/VMCore/Mangler.cpp
+++ b/llvm/lib/VMCore/Mangler.cpp
@@ -222,4 +222,5 @@ Mangler::Mangler(Module &M, const char *prefix, const char *privatePrefix,
markCharAcceptable('_');
markCharAcceptable('$');
markCharAcceptable('.');
+ markCharAcceptable('@');
}
OpenPOWER on IntegriCloud