aboutsummaryrefslogtreecommitdiffstats
path: root/lib/MC/MCSymbol.cpp
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
commite19f9783231d7881efbcf2876c11f7914cf516f1 (patch)
tree308e236d0bdbbaf5c60994f869990fa105d65641 /lib/MC/MCSymbol.cpp
parentf6dd026fed67d7f7654f26c2bff1ef7652de2023 (diff)
downloadexternal_llvm-e19f9783231d7881efbcf2876c11f7914cf516f1.zip
external_llvm-e19f9783231d7881efbcf2876c11f7914cf516f1.tar.gz
external_llvm-e19f9783231d7881efbcf2876c11f7914cf516f1.tar.bz2
Make the MC symbol printer and llvm::Mangler exactly agree on mangling
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
Diffstat (limited to 'lib/MC/MCSymbol.cpp')
-rw-r--r--lib/MC/MCSymbol.cpp70
1 files changed, 50 insertions, 20 deletions
diff --git a/lib/MC/MCSymbol.cpp b/lib/MC/MCSymbol.cpp
index ef58aec..64cc15a 100644
--- a/lib/MC/MCSymbol.cpp
+++ b/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 {