blob: 418eb9a71a35c4c0fe79422ca333edd359c311c2 [file] [log] [blame]
Brian Gaekeb198ca32003-07-24 20:20:58 +00001//===-- Mangler.cpp - Self-contained c/asm llvm name mangler --------------===//
Misha Brukmanfd939082005-04-21 23:48:37 +00002//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
Misha Brukmanfd939082005-04-21 23:48:37 +00007//
John Criswellb576c942003-10-20 19:43:21 +00008//===----------------------------------------------------------------------===//
Brian Gaekeb198ca32003-07-24 20:20:58 +00009//
10// Unified name mangler for CWriter and assembly backends.
11//
12//===----------------------------------------------------------------------===//
13
Brian Gaeke6b902dc2003-07-25 20:21:20 +000014#include "llvm/Support/Mangler.h"
Chris Lattner9ddf2122005-11-10 18:48:58 +000015#include "llvm/DerivedTypes.h"
Brian Gaekeb198ca32003-07-24 20:20:58 +000016#include "llvm/Module.h"
Reid Spencer551ccae2004-09-01 22:55:40 +000017#include "llvm/ADT/StringExtras.h"
Chris Lattner2cdd21c2003-12-14 21:35:53 +000018using namespace llvm;
Brian Gaeked0fde302003-11-11 22:41:34 +000019
Chris Lattneraa8a8472003-08-24 21:08:38 +000020static char HexDigit(int V) {
21 return V < 10 ? V+'0' : V+'A'-10;
22}
23
24static std::string MangleLetter(unsigned char C) {
25 return std::string("_")+HexDigit(C >> 4) + HexDigit(C & 15) + "_";
26}
27
28/// makeNameProper - We don't want identifier names non-C-identifier characters
29/// in them, so mangle them as appropriate.
Misha Brukmanfd939082005-04-21 23:48:37 +000030///
Chris Lattner5b845c92005-09-24 08:24:28 +000031std::string Mangler::makeNameProper(const std::string &X, const char *Prefix) {
Chris Lattneraa8a8472003-08-24 21:08:38 +000032 std::string Result;
Chris Lattner5b845c92005-09-24 08:24:28 +000033
Chris Lattnerac8c8342005-11-10 19:30:07 +000034 if (!UseQuotes) {
35 // If X does not start with (char)1, add the prefix.
36 std::string::const_iterator I = X.begin();
37 if (*I != 1)
38 Result = Prefix;
Chris Lattneraa8a8472003-08-24 21:08:38 +000039 else
Chris Lattnerac8c8342005-11-10 19:30:07 +000040 ++I; // Skip over the marker.
41
42 // Mangle the first letter specially, don't allow numbers...
43 if (*I >= '0' && *I <= '9')
44 Result += MangleLetter(*I++);
45
46 for (std::string::const_iterator E = X.end(); I != E; ++I)
47 if ((*I < 'a' || *I > 'z') && (*I < 'A' || *I > 'Z') &&
48 (*I < '0' || *I > '9') && *I != '_' && *I != '$')
49 Result += MangleLetter(*I);
50 else
51 Result += *I;
52 } else {
53 bool NeedsQuotes = false;
54
55 // If X does not start with (char)1, add the prefix.
56 std::string::const_iterator I = X.begin();
57 if (*I != 1)
58 Result = Prefix;
59 else
60 ++I; // Skip over the marker.
61
62 // If the first character is a number, we need quotes.
63 if (*I >= '0' && *I <= '9')
64 NeedsQuotes = true;
65
66 for (std::string::const_iterator E = X.end(); I != E; ++I)
67 if (*I == '"')
68 Result += "_QQ_";
69 else {
70 if ((*I < 'a' || *I > 'z') && (*I < 'A' || *I > 'Z') &&
71 (*I < '0' || *I > '9') && *I != '_' && *I != '$' && *I != '.')
72 NeedsQuotes = true;
73 Result += *I;
74 }
75 if (NeedsQuotes)
76 Result = '"' + Result + '"';
77 }
Chris Lattneraa8a8472003-08-24 21:08:38 +000078 return Result;
Brian Gaekeb198ca32003-07-24 20:20:58 +000079}
80
Chris Lattnerd6391d72004-07-08 22:09:34 +000081/// getTypeID - Return a unique ID for the specified LLVM type.
82///
83unsigned Mangler::getTypeID(const Type *Ty) {
84 unsigned &E = TypeMap[Ty];
85 if (E == 0) E = ++TypeCounter;
86 return E;
87}
88
Brian Gaekeb198ca32003-07-24 20:20:58 +000089std::string Mangler::getValueName(const Value *V) {
Chris Lattner9ddf2122005-11-10 18:48:58 +000090 if (const GlobalValue *GV = dyn_cast<GlobalValue>(V))
91 return getValueName(GV);
92
93 std::string &Name = Memo[V];
94 if (!Name.empty())
95 return Name; // Return the already-computed name for V.
96
97 // Always mangle local names.
98 Name = "ltmp_" + utostr(Count++) + "_" + utostr(getTypeID(V->getType()));
99 return Name;
100}
101
102
103std::string Mangler::getValueName(const GlobalValue *GV) {
Brian Gaekeb198ca32003-07-24 20:20:58 +0000104 // Check to see whether we've already named V.
Chris Lattner9ddf2122005-11-10 18:48:58 +0000105 std::string &Name = Memo[GV];
106 if (!Name.empty())
107 return Name; // Return the already-computed name for V.
Brian Gaekeb198ca32003-07-24 20:20:58 +0000108
Chris Lattner9ddf2122005-11-10 18:48:58 +0000109 // Name mangling occurs as follows:
110 // - If V is an intrinsic function, do not change name at all
111 // - Otherwise, mangling occurs if global collides with existing name.
112 if (isa<Function>(GV) && cast<Function>(GV)->getIntrinsicID()) {
113 Name = GV->getName(); // Is an intrinsic function
114 } else if (!MangledGlobals.count(GV)) {
115 Name = makeNameProper(GV->getName(), Prefix);
Brian Gaekeb198ca32003-07-24 20:20:58 +0000116 } else {
Chris Lattner9ddf2122005-11-10 18:48:58 +0000117 unsigned TypeUniqueID = getTypeID(GV->getType());
118 Name = "l" + utostr(TypeUniqueID) + "_" + makeNameProper(GV->getName());
Brian Gaekeb198ca32003-07-24 20:20:58 +0000119 }
Misha Brukmanfd939082005-04-21 23:48:37 +0000120
Chris Lattner9ddf2122005-11-10 18:48:58 +0000121 return Name;
Brian Gaekeb198ca32003-07-24 20:20:58 +0000122}
123
Chris Lattnera6acb4f2004-02-14 00:30:23 +0000124void Mangler::InsertName(GlobalValue *GV,
125 std::map<std::string, GlobalValue*> &Names) {
126 if (!GV->hasName()) { // We must mangle unnamed globals.
127 MangledGlobals.insert(GV);
128 return;
129 }
130
131 // Figure out if this is already used.
132 GlobalValue *&ExistingValue = Names[GV->getName()];
133 if (!ExistingValue) {
134 ExistingValue = GV;
135 } else {
136 // If GV is external but the existing one is static, mangle the existing one
137 if (GV->hasExternalLinkage() && !ExistingValue->hasExternalLinkage()) {
138 MangledGlobals.insert(ExistingValue);
139 ExistingValue = GV;
140 } else {
141 // Otherwise, mangle GV
142 MangledGlobals.insert(GV);
143 }
144 }
145}
146
147
Chris Lattner2f9bc4f2005-11-10 19:02:18 +0000148Mangler::Mangler(Module &M, const char *prefix)
Chris Lattnerac8c8342005-11-10 19:30:07 +0000149 : Prefix(prefix), UseQuotes(false), Count(0), TypeCounter(0) {
Brian Gaekeb198ca32003-07-24 20:20:58 +0000150 // Calculate which global values have names that will collide when we throw
151 // away type information.
Chris Lattnera6acb4f2004-02-14 00:30:23 +0000152 std::map<std::string, GlobalValue*> Names;
Brian Gaekeb198ca32003-07-24 20:20:58 +0000153 for (Module::iterator I = M.begin(), E = M.end(); I != E; ++I)
Chris Lattnera6acb4f2004-02-14 00:30:23 +0000154 InsertName(I, Names);
Chris Lattnere4d5c442005-03-15 04:54:21 +0000155 for (Module::global_iterator I = M.global_begin(), E = M.global_end(); I != E; ++I)
Chris Lattnera6acb4f2004-02-14 00:30:23 +0000156 InsertName(I, Names);
Brian Gaekeb198ca32003-07-24 20:20:58 +0000157}