Change the internal interface to makeNameProper to take a bool that
[oota-llvm.git] / lib / VMCore / Mangler.cpp
1 //===-- Mangler.cpp - Self-contained c/asm llvm name mangler --------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // Unified name mangler for CWriter and assembly backends.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #include "llvm/Support/Mangler.h"
15 #include "llvm/DerivedTypes.h"
16 #include "llvm/Module.h"
17 #include "llvm/ADT/STLExtras.h"
18 #include "llvm/ADT/StringExtras.h"
19 #include "llvm/ADT/StringMap.h"
20 using namespace llvm;
21
22 static char HexDigit(int V) {
23   return V < 10 ? V+'0' : V+'A'-10;
24 }
25
26 static std::string MangleLetter(unsigned char C) {
27   char Result[] = { '_', HexDigit(C >> 4), HexDigit(C & 15), '_', 0 };
28   return Result;
29 }
30
31 /// makeNameProper - We don't want identifier names non-C-identifier characters
32 /// in them, so mangle them as appropriate.
33 ///
34 std::string Mangler::makeNameProper(const std::string &X,
35                                     bool hasPrivateLinkage) {
36   assert(!X.empty() && "Cannot mangle empty strings");
37   
38   // If PreserveAsmNames is set, names with asm identifiers are not modified. 
39   if (PreserveAsmNames && X[0] == 1)
40     return X;
41
42   // Figure out the prefix to use.
43   const char *ThePrefix = hasPrivateLinkage ? PrivatePrefix : Prefix;
44   
45   if (!UseQuotes) {
46     std::string Result;
47
48     // If X does not start with (char)1, add the prefix.
49     bool NeedPrefix = true;
50     std::string::const_iterator I = X.begin();
51     if (*I == 1) {
52       NeedPrefix = false;
53       ++I;  // Skip over the marker.
54     }
55     
56     // Mangle the first letter specially, don't allow numbers.
57     if (*I >= '0' && *I <= '9')
58       Result += MangleLetter(*I++);
59
60     for (std::string::const_iterator E = X.end(); I != E; ++I) {
61       if (!isCharAcceptable(*I))
62         Result += MangleLetter(*I);
63       else
64         Result += *I;
65     }
66
67     if (NeedPrefix)
68       Result = ThePrefix + Result;
69     return Result;
70   }
71
72   bool NeedPrefix = true;
73   bool NeedQuotes = false;
74   std::string Result;    
75   std::string::const_iterator I = X.begin();
76   if (*I == 1) {
77     NeedPrefix = false;
78     ++I;  // Skip over the marker.
79   }
80
81   // If the first character is a number, we need quotes.
82   if (*I >= '0' && *I <= '9')
83     NeedQuotes = true;
84     
85   // Do an initial scan of the string, checking to see if we need quotes or
86   // to escape a '"' or not.
87   if (!NeedQuotes)
88     for (std::string::const_iterator E = X.end(); I != E; ++I)
89       if (!isCharAcceptable(*I)) {
90         NeedQuotes = true;
91         break;
92       }
93     
94   // In the common case, we don't need quotes.  Handle this quickly.
95   if (!NeedQuotes) {
96     if (!NeedPrefix)
97       return X.substr(1);   // Strip off the \001.
98     return ThePrefix + X;
99   }
100   
101   Result = X.substr(0, I-X.begin());
102     
103   // Otherwise, construct the string the expensive way.
104   for (std::string::const_iterator E = X.end(); I != E; ++I) {
105     if (*I == '"')
106       Result += "_QQ_";
107     else if (*I == '\n')
108       Result += "_NL_";
109     else
110       Result += *I;
111   }
112
113   if (NeedPrefix)
114     Result = ThePrefix + Result;
115   Result = '"' + Result + '"';
116   return Result;
117 }
118
119 std::string Mangler::getValueName(const GlobalValue *GV, const char *Suffix) {
120   assert((!isa<Function>(GV) || !cast<Function>(GV)->isIntrinsic()) &&
121          "Intrinsic functions cannot be mangled by Mangler");
122   
123   if (GV->hasName())
124     return makeNameProper(GV->getName() + Suffix, GV->hasPrivateLinkage());
125   
126   // Get the ID for the global, assigning a new one if we haven't got one
127   // already.
128   unsigned &ID = AnonGlobalIDs[GV];
129   if (ID == 0) ID = NextAnonGlobalID++;
130   
131   // Must mangle the global into a unique ID.
132   return "__unnamed_" + utostr(ID) + Suffix;
133 }
134
135 Mangler::Mangler(Module &M, const char *prefix, const char *privatePrefix)
136   : Prefix(prefix), PrivatePrefix (privatePrefix), UseQuotes(false),
137     PreserveAsmNames(false), NextAnonGlobalID(1) {
138   std::fill(AcceptableChars, array_endof(AcceptableChars), 0);
139
140   // Letters and numbers are acceptable.
141   for (unsigned char X = 'a'; X <= 'z'; ++X)
142     markCharAcceptable(X);
143   for (unsigned char X = 'A'; X <= 'Z'; ++X)
144     markCharAcceptable(X);
145   for (unsigned char X = '0'; X <= '9'; ++X)
146     markCharAcceptable(X);
147   
148   // These chars are acceptable.
149   markCharAcceptable('_');
150   markCharAcceptable('$');
151   markCharAcceptable('.');
152 }