Revert the ConstantInt constructors back to their 2.5 forms where possible, thanks...
[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                                     ManglerPrefixTy PrefixTy) {
36   assert(!X.empty() && "Cannot mangle empty strings");
37   
38   if (!UseQuotes) {
39     std::string Result;
40
41     // If X does not start with (char)1, add the prefix.
42     bool NeedPrefix = true;
43     std::string::const_iterator I = X.begin();
44     if (*I == 1) {
45       NeedPrefix = false;
46       ++I;  // Skip over the marker.
47     }
48     
49     // Mangle the first letter specially, don't allow numbers.
50     if (*I >= '0' && *I <= '9')
51       Result += MangleLetter(*I++);
52
53     for (std::string::const_iterator E = X.end(); I != E; ++I) {
54       if (!isCharAcceptable(*I))
55         Result += MangleLetter(*I);
56       else
57         Result += *I;
58     }
59
60     if (NeedPrefix) {
61       Result = Prefix + Result;
62
63       if (PrefixTy == Mangler::Private)
64         Result = PrivatePrefix + Result;
65       else if (PrefixTy == Mangler::LinkerPrivate)
66         Result = LinkerPrivatePrefix + Result;
67     }
68
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     
99     Result = Prefix + X;
100
101     if (PrefixTy == Mangler::Private)
102       Result = PrivatePrefix + Result;
103     else if (PrefixTy == Mangler::LinkerPrivate)
104       Result = LinkerPrivatePrefix + Result;
105
106     return Result;
107   }
108   
109   Result = X.substr(0, I-X.begin());
110     
111   // Otherwise, construct the string the expensive way.
112   for (std::string::const_iterator E = X.end(); I != E; ++I) {
113     if (*I == '"')
114       Result += "_QQ_";
115     else if (*I == '\n')
116       Result += "_NL_";
117     else
118       Result += *I;
119   }
120
121   if (NeedPrefix) {
122     Result = Prefix + Result;
123
124     if (PrefixTy == Mangler::Private)
125       Result = PrivatePrefix + Result;
126     else if (PrefixTy == Mangler::LinkerPrivate)
127       Result = LinkerPrivatePrefix + Result;
128   }
129
130   Result = '"' + Result + '"';
131   return Result;
132 }
133
134 /// getMangledName - Returns the mangled name of V, an LLVM Value,
135 /// in the current module.  If 'Suffix' is specified, the name ends with the
136 /// specified suffix.  If 'ForcePrivate' is specified, the label is specified
137 /// to have a private label prefix.
138 ///
139 std::string Mangler::getMangledName(const GlobalValue *GV, const char *Suffix,
140                                     bool ForcePrivate) {
141   assert((!isa<Function>(GV) || !cast<Function>(GV)->isIntrinsic()) &&
142          "Intrinsic functions cannot be mangled by Mangler");
143
144   ManglerPrefixTy PrefixTy =
145     (GV->hasPrivateLinkage() || ForcePrivate) ? Mangler::Private :
146       GV->hasLinkerPrivateLinkage() ? Mangler::LinkerPrivate : Mangler::Default;
147
148   if (GV->hasName())
149     return makeNameProper(GV->getNameStr() + Suffix, PrefixTy);
150   
151   // Get the ID for the global, assigning a new one if we haven't got one
152   // already.
153   unsigned &ID = AnonGlobalIDs[GV];
154   if (ID == 0) ID = NextAnonGlobalID++;
155   
156   // Must mangle the global into a unique ID.
157   return makeNameProper("__unnamed_" + utostr(ID) + Suffix, PrefixTy);
158 }
159
160 Mangler::Mangler(Module &M, const char *prefix, const char *privatePrefix,
161                  const char *linkerPrivatePrefix)
162   : Prefix(prefix), PrivatePrefix(privatePrefix),
163     LinkerPrivatePrefix(linkerPrivatePrefix), UseQuotes(false),
164     NextAnonGlobalID(1) {
165   std::fill(AcceptableChars, array_endof(AcceptableChars), 0);
166
167   // Letters and numbers are acceptable.
168   for (unsigned char X = 'a'; X <= 'z'; ++X)
169     markCharAcceptable(X);
170   for (unsigned char X = 'A'; X <= 'Z'; ++X)
171     markCharAcceptable(X);
172   for (unsigned char X = '0'; X <= '9'; ++X)
173     markCharAcceptable(X);
174   
175   // These chars are acceptable.
176   markCharAcceptable('_');
177   markCharAcceptable('$');
178   markCharAcceptable('.');
179 }