blob: ee241732e8ad215d21b54a2d44521dbe62f8d3a6 [file] [log] [blame]
Peter Collingbourne0ff0b372011-01-13 18:57:25 +00001//===--- Mangle.cpp - Mangle C++ Names --------------------------*- C++ -*-===//
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// Implements generic name mangling support for blocks and Objective-C.
11//
12//===----------------------------------------------------------------------===//
Rafael Espindola002667c2013-10-16 01:40:34 +000013#include "clang/AST/Attr.h"
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000014#include "clang/AST/ASTContext.h"
15#include "clang/AST/Decl.h"
16#include "clang/AST/DeclCXX.h"
17#include "clang/AST/DeclObjC.h"
18#include "clang/AST/DeclTemplate.h"
19#include "clang/AST/ExprCXX.h"
Chandler Carruth5553d0d2014-01-07 11:51:46 +000020#include "clang/AST/Mangle.h"
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000021#include "clang/Basic/ABI.h"
22#include "clang/Basic/SourceManager.h"
Rafael Espindola002667c2013-10-16 01:40:34 +000023#include "clang/Basic/TargetInfo.h"
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000024#include "llvm/ADT/StringExtras.h"
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000025#include "llvm/Support/ErrorHandling.h"
Chandler Carruth3a022472012-12-04 09:13:33 +000026#include "llvm/Support/raw_ostream.h"
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000027
28#define MANGLE_CHECKER 0
29
30#if MANGLE_CHECKER
31#include <cxxabi.h>
32#endif
33
34using namespace clang;
35
36// FIXME: For blocks we currently mimic GCC's mangling scheme, which leaves
37// much to be desired. Come up with a better mangling scheme.
38
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000039static void mangleFunctionBlock(MangleContext &Context,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000040 StringRef Outer,
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000041 const BlockDecl *BD,
Chris Lattner0e62c1c2011-07-23 10:55:15 +000042 raw_ostream &Out) {
Fariborz Jahanian63628032012-06-26 16:06:38 +000043 unsigned discriminator = Context.getBlockId(BD, true);
44 if (discriminator == 0)
45 Out << "__" << Outer << "_block_invoke";
46 else
47 Out << "__" << Outer << "_block_invoke_" << discriminator+1;
Peter Collingbourne0ff0b372011-01-13 18:57:25 +000048}
49
David Blaikie68e081d2011-12-20 02:48:34 +000050void MangleContext::anchor() { }
51
Reid Kleckner80944df2014-10-31 22:00:51 +000052enum CCMangling {
53 CCM_Other,
54 CCM_Fast,
55 CCM_Vector,
56 CCM_Std
Rafael Espindola002667c2013-10-16 01:40:34 +000057};
58
59static bool isExternC(const NamedDecl *ND) {
60 if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND))
61 return FD->isExternC();
62 return cast<VarDecl>(ND)->isExternC();
63}
64
Reid Kleckner80944df2014-10-31 22:00:51 +000065static CCMangling getCallingConvMangling(const ASTContext &Context,
66 const NamedDecl *ND) {
Rafael Espindola002667c2013-10-16 01:40:34 +000067 const TargetInfo &TI = Context.getTargetInfo();
Benjamin Kramer9299637dc2014-03-04 19:31:42 +000068 const llvm::Triple &Triple = TI.getTriple();
Reid Kleckner80944df2014-10-31 22:00:51 +000069 if (!Triple.isOSWindows() ||
70 !(Triple.getArch() == llvm::Triple::x86 ||
71 Triple.getArch() == llvm::Triple::x86_64))
72 return CCM_Other;
Rafael Espindola002667c2013-10-16 01:40:34 +000073
74 if (Context.getLangOpts().CPlusPlus && !isExternC(ND) &&
75 TI.getCXXABI() == TargetCXXABI::Microsoft)
Reid Kleckner80944df2014-10-31 22:00:51 +000076 return CCM_Other;
Rafael Espindola002667c2013-10-16 01:40:34 +000077
78 const FunctionDecl *FD = dyn_cast<FunctionDecl>(ND);
79 if (!FD)
Reid Kleckner80944df2014-10-31 22:00:51 +000080 return CCM_Other;
Rafael Espindola002667c2013-10-16 01:40:34 +000081 QualType T = FD->getType();
82
83 const FunctionType *FT = T->castAs<FunctionType>();
84
85 CallingConv CC = FT->getCallConv();
86 switch (CC) {
87 default:
Reid Kleckner80944df2014-10-31 22:00:51 +000088 return CCM_Other;
Rafael Espindola002667c2013-10-16 01:40:34 +000089 case CC_X86FastCall:
Reid Kleckner80944df2014-10-31 22:00:51 +000090 return CCM_Fast;
Rafael Espindola002667c2013-10-16 01:40:34 +000091 case CC_X86StdCall:
Reid Kleckner80944df2014-10-31 22:00:51 +000092 return CCM_Std;
93 case CC_X86VectorCall:
94 return CCM_Vector;
Rafael Espindola002667c2013-10-16 01:40:34 +000095 }
96}
97
98bool MangleContext::shouldMangleDeclName(const NamedDecl *D) {
99 const ASTContext &ASTContext = getASTContext();
100
Reid Kleckner80944df2014-10-31 22:00:51 +0000101 CCMangling CC = getCallingConvMangling(ASTContext, D);
102 if (CC != CCM_Other)
Rafael Espindola002667c2013-10-16 01:40:34 +0000103 return true;
104
105 // In C, functions with no attributes never need to be mangled. Fastpath them.
106 if (!getASTContext().getLangOpts().CPlusPlus && !D->hasAttrs())
107 return false;
108
109 // Any decl can be declared with __asm("foo") on it, and this takes precedence
110 // over all other naming in the .o file.
111 if (D->hasAttr<AsmLabelAttr>())
112 return true;
113
114 return shouldMangleCXXName(D);
115}
116
117void MangleContext::mangleName(const NamedDecl *D, raw_ostream &Out) {
118 // Any decl can be declared with __asm("foo") on it, and this takes precedence
119 // over all other naming in the .o file.
120 if (const AsmLabelAttr *ALA = D->getAttr<AsmLabelAttr>()) {
121 // If we have an asm name, then we use it as the mangling.
122
123 // Adding the prefix can cause problems when one file has a "foo" and
124 // another has a "\01foo". That is known to happen on ELF with the
125 // tricks normally used for producing aliases (PR9177). Fortunately the
126 // llvm mangler on ELF is a nop, so we can just avoid adding the \01
127 // marker. We also avoid adding the marker if this is an alias for an
128 // LLVM intrinsic.
James Y Knightb214cbc2016-03-04 19:00:41 +0000129 char GlobalPrefix =
130 getASTContext().getTargetInfo().getDataLayout().getGlobalPrefix();
131 if (GlobalPrefix && !ALA->getLabel().startswith("llvm."))
Rafael Espindola002667c2013-10-16 01:40:34 +0000132 Out << '\01'; // LLVM IR Marker for __asm("foo")
133
134 Out << ALA->getLabel();
135 return;
136 }
137
138 const ASTContext &ASTContext = getASTContext();
Reid Kleckner80944df2014-10-31 22:00:51 +0000139 CCMangling CC = getCallingConvMangling(ASTContext, D);
Rafael Espindola002667c2013-10-16 01:40:34 +0000140 bool MCXX = shouldMangleCXXName(D);
141 const TargetInfo &TI = Context.getTargetInfo();
Reid Kleckner80944df2014-10-31 22:00:51 +0000142 if (CC == CCM_Other || (MCXX && TI.getCXXABI() == TargetCXXABI::Microsoft)) {
Saleem Abdulrasool3b434472014-10-14 17:20:18 +0000143 if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D))
144 mangleObjCMethodName(OMD, Out);
145 else
146 mangleCXXName(D, Out);
Rafael Espindola002667c2013-10-16 01:40:34 +0000147 return;
148 }
149
150 Out << '\01';
Reid Kleckner80944df2014-10-31 22:00:51 +0000151 if (CC == CCM_Std)
Rafael Espindola002667c2013-10-16 01:40:34 +0000152 Out << '_';
Reid Kleckner80944df2014-10-31 22:00:51 +0000153 else if (CC == CCM_Fast)
Rafael Espindola002667c2013-10-16 01:40:34 +0000154 Out << '@';
155
156 if (!MCXX)
157 Out << D->getIdentifier()->getName();
Saleem Abdulrasool3b434472014-10-14 17:20:18 +0000158 else if (const ObjCMethodDecl *OMD = dyn_cast<ObjCMethodDecl>(D))
159 mangleObjCMethodName(OMD, Out);
Rafael Espindola002667c2013-10-16 01:40:34 +0000160 else
161 mangleCXXName(D, Out);
162
163 const FunctionDecl *FD = cast<FunctionDecl>(D);
164 const FunctionType *FT = FD->getType()->castAs<FunctionType>();
165 const FunctionProtoType *Proto = dyn_cast<FunctionProtoType>(FT);
Reid Kleckner80944df2014-10-31 22:00:51 +0000166 if (CC == CCM_Vector)
167 Out << '@';
Rafael Espindola002667c2013-10-16 01:40:34 +0000168 Out << '@';
169 if (!Proto) {
170 Out << '0';
171 return;
172 }
173 assert(!Proto->isVariadic());
174 unsigned ArgWords = 0;
175 if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(FD))
176 if (!MD->isStatic())
177 ++ArgWords;
Aaron Ballman40bd0aa2014-03-17 15:23:01 +0000178 for (const auto &AT : Proto->param_types())
Reid Kleckner80944df2014-10-31 22:00:51 +0000179 // Size should be aligned to pointer size.
Rui Ueyama83aa9792016-01-14 21:00:27 +0000180 ArgWords +=
181 llvm::alignTo(ASTContext.getTypeSize(AT), TI.getPointerWidth(0)) /
182 TI.getPointerWidth(0);
Reid Kleckner80944df2014-10-31 22:00:51 +0000183 Out << ((TI.getPointerWidth(0) / 8) * ArgWords);
Rafael Espindola002667c2013-10-16 01:40:34 +0000184}
185
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000186void MangleContext::mangleGlobalBlock(const BlockDecl *BD,
Fariborz Jahanian63628032012-06-26 16:06:38 +0000187 const NamedDecl *ID,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000188 raw_ostream &Out) {
Fariborz Jahanian63628032012-06-26 16:06:38 +0000189 unsigned discriminator = getBlockId(BD, false);
190 if (ID) {
191 if (shouldMangleDeclName(ID))
192 mangleName(ID, Out);
193 else {
194 Out << ID->getIdentifier()->getName();
195 }
196 }
197 if (discriminator == 0)
198 Out << "_block_invoke";
199 else
200 Out << "_block_invoke_" << discriminator+1;
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000201}
202
203void MangleContext::mangleCtorBlock(const CXXConstructorDecl *CD,
204 CXXCtorType CT, const BlockDecl *BD,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000205 raw_ostream &ResStream) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000206 SmallString<64> Buffer;
Rafael Espindolaac00f5d2011-02-10 23:59:36 +0000207 llvm::raw_svector_ostream Out(Buffer);
208 mangleCXXCtor(CD, CT, Out);
Rafael Espindolaac00f5d2011-02-10 23:59:36 +0000209 mangleFunctionBlock(*this, Buffer, BD, ResStream);
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000210}
211
212void MangleContext::mangleDtorBlock(const CXXDestructorDecl *DD,
213 CXXDtorType DT, const BlockDecl *BD,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000214 raw_ostream &ResStream) {
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000215 SmallString<64> Buffer;
Rafael Espindolaac00f5d2011-02-10 23:59:36 +0000216 llvm::raw_svector_ostream Out(Buffer);
217 mangleCXXDtor(DD, DT, Out);
Rafael Espindolaac00f5d2011-02-10 23:59:36 +0000218 mangleFunctionBlock(*this, Buffer, BD, ResStream);
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000219}
220
221void MangleContext::mangleBlock(const DeclContext *DC, const BlockDecl *BD,
Chris Lattner0e62c1c2011-07-23 10:55:15 +0000222 raw_ostream &Out) {
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000223 assert(!isa<CXXConstructorDecl>(DC) && !isa<CXXDestructorDecl>(DC));
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000224
Dylan Noblesmith2c1dd272012-02-05 02:13:05 +0000225 SmallString<64> Buffer;
Rafael Espindola3968cd02011-02-11 02:52:17 +0000226 llvm::raw_svector_ostream Stream(Buffer);
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000227 if (const ObjCMethodDecl *Method = dyn_cast<ObjCMethodDecl>(DC)) {
Rafael Espindola3968cd02011-02-11 02:52:17 +0000228 mangleObjCMethodName(Method, Stream);
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000229 } else {
Saleem Abdulrasool64ab4de2014-10-14 17:20:14 +0000230 assert((isa<NamedDecl>(DC) || isa<BlockDecl>(DC)) &&
231 "expected a NamedDecl or BlockDecl");
232 if (isa<BlockDecl>(DC))
233 for (; DC && isa<BlockDecl>(DC); DC = DC->getParent())
234 (void) getBlockId(cast<BlockDecl>(DC), true);
Fariborz Jahanian68e79382014-11-14 23:55:27 +0000235 assert((isa<TranslationUnitDecl>(DC) || isa<NamedDecl>(DC)) &&
236 "expected a TranslationUnitDecl or a NamedDecl");
Fariborz Jahanian05834e22014-12-02 18:42:51 +0000237 if (const auto *CD = dyn_cast<CXXConstructorDecl>(DC))
238 mangleCtorBlock(CD, /*CT*/ Ctor_Complete, BD, Out);
239 else if (const auto *DD = dyn_cast<CXXDestructorDecl>(DC))
240 mangleDtorBlock(DD, /*DT*/ Dtor_Complete, BD, Out);
241 else if (auto ND = dyn_cast<NamedDecl>(DC)) {
Fariborz Jahanian68e79382014-11-14 23:55:27 +0000242 if (!shouldMangleDeclName(ND) && ND->getIdentifier())
243 Stream << ND->getIdentifier()->getName();
244 else {
245 // FIXME: We were doing a mangleUnqualifiedName() before, but that's
246 // a private member of a class that will soon itself be private to the
247 // Itanium C++ ABI object. What should we do now? Right now, I'm just
248 // calling the mangleName() method on the MangleContext; is there a
249 // better way?
250 mangleName(ND, Stream);
251 }
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000252 }
253 }
Rafael Espindolaac00f5d2011-02-10 23:59:36 +0000254 mangleFunctionBlock(*this, Buffer, BD, Out);
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000255}
256
Argyrios Kyrtzidisca741ce2016-02-14 22:30:14 +0000257void MangleContext::mangleObjCMethodNameWithoutSize(const ObjCMethodDecl *MD,
258 raw_ostream &OS) {
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000259 const ObjCContainerDecl *CD =
260 dyn_cast<ObjCContainerDecl>(MD->getDeclContext());
261 assert (CD && "Missing container decl in GetNameForMethod");
262 OS << (MD->isInstanceMethod() ? '-' : '+') << '[' << CD->getName();
263 if (const ObjCCategoryImplDecl *CID = dyn_cast<ObjCCategoryImplDecl>(CD))
Benjamin Kramer2f569922012-02-07 11:57:45 +0000264 OS << '(' << *CID << ')';
Aaron Ballmanb190f972014-01-03 17:59:55 +0000265 OS << ' ';
266 MD->getSelector().print(OS);
267 OS << ']';
Argyrios Kyrtzidisca741ce2016-02-14 22:30:14 +0000268}
269
270void MangleContext::mangleObjCMethodName(const ObjCMethodDecl *MD,
271 raw_ostream &Out) {
272 SmallString<64> Name;
273 llvm::raw_svector_ostream OS(Name);
274
275 mangleObjCMethodNameWithoutSize(MD, OS);
Peter Collingbourne0ff0b372011-01-13 18:57:25 +0000276 Out << OS.str().size() << OS.str();
277}