-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMacintoshMangle.cpp
659 lines (571 loc) · 22.4 KB
/
MacintoshMangle.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
//===--- MacintoshMangle.cpp - Macintosh C++ Name Mangling ------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#include "clang/AST/Mangle.h"
#include "clang/AST/ASTContext.h"
#include "clang/AST/Attr.h"
#include "clang/AST/Decl.h"
#include "clang/AST/DeclBase.h"
#include "clang/AST/DeclCXX.h"
#include "clang/AST/DeclObjC.h"
#include "clang/AST/DeclOpenMP.h"
#include "clang/AST/DeclTemplate.h"
#include "clang/AST/Expr.h"
#include "clang/AST/ExprCXX.h"
#include "clang/AST/ExprObjC.h"
#include "clang/AST/TypeLoc.h"
#include "clang/Basic/ABI.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/TargetInfo.h"
#include "llvm/ADT/StringExtras.h"
#include "llvm/Support/ErrorHandling.h"
#include "llvm/Support/raw_ostream.h"
using namespace clang;
namespace {
/// Retrieve the declaration context that should be used when mangling the given
/// declaration.
static const DeclContext *getEffectiveDeclContext(const Decl *D) {
// The ABI assumes that lambda closure types that occur within
// default arguments live in the context of the function. However, due to
// the way in which Clang parses and creates function declarations, this is
// not the case: the lambda closure type ends up living in the context
// where the function itself resides, because the function declaration itself
// had not yet been created. Fix the context here.
if (const CXXRecordDecl *RD = dyn_cast<CXXRecordDecl>(D)) {
if (RD->isLambda())
if (ParmVarDecl *ContextParam
= dyn_cast_or_null<ParmVarDecl>(RD->getLambdaContextDecl()))
return ContextParam->getDeclContext();
}
// Perform the same check for block literals.
if (const BlockDecl *BD = dyn_cast<BlockDecl>(D)) {
if (ParmVarDecl *ContextParam
= dyn_cast_or_null<ParmVarDecl>(BD->getBlockManglingContextDecl()))
return ContextParam->getDeclContext();
}
const DeclContext *DC = D->getDeclContext();
if (isa<CapturedDecl>(DC) || isa<OMPDeclareReductionDecl>(DC)) {
return getEffectiveDeclContext(cast<Decl>(DC));
}
if (const auto *VD = dyn_cast<VarDecl>(D))
if (VD->isExternC())
return VD->getASTContext().getTranslationUnitDecl();
if (const auto *FD = dyn_cast<FunctionDecl>(D))
if (FD->isExternC())
return FD->getASTContext().getTranslationUnitDecl();
return DC->getRedeclContext();
}
static const DeclContext *getEffectiveParentContext(const DeclContext *DC) {
return getEffectiveDeclContext(cast<Decl>(DC));
}
class MacintoshMangleContextImpl : public MacintoshMangleContext {
public:
explicit MacintoshMangleContextImpl(ASTContext &Context,
DiagnosticsEngine &Diags)
: MacintoshMangleContext(Context, Diags) {}
/// @name Mangler Entry Points
/// @{
bool shouldMangleCXXName(const NamedDecl *D) override;
bool shouldMangleStringLiteral(const StringLiteral *) override {
return false;
}
void mangleCXXName(const NamedDecl *D, raw_ostream &) override;
void mangleThunk(const CXXMethodDecl *MD, const ThunkInfo &Thunk,
raw_ostream &) override;
void mangleCXXDtorThunk(const CXXDestructorDecl *DD, CXXDtorType Type,
const ThisAdjustment &ThisAdjustment,
raw_ostream &) override;
void mangleReferenceTemporary(const VarDecl *D, unsigned ManglingNumber,
raw_ostream &) override;
void mangleCXXRTTI(QualType T, raw_ostream &) override;
void mangleCXXRTTIName(QualType T, raw_ostream &) override;
void mangleTypeName(QualType T, raw_ostream &) override;
void mangleCXXCtor(const CXXConstructorDecl *D, CXXCtorType Type,
raw_ostream &) override;
void mangleCXXDtor(const CXXDestructorDecl *D, CXXDtorType Type,
raw_ostream &) override;
void mangleStaticGuardVariable(const VarDecl *D, raw_ostream &) override;
void mangleDynamicInitializer(const VarDecl *D, raw_ostream &Out) override;
void mangleDynamicAtExitDestructor(const VarDecl *D,
raw_ostream &Out) override;
void mangleSEHFilterExpression(const NamedDecl *EnclosingDecl,
raw_ostream &Out) override;
void mangleSEHFinallyBlock(const NamedDecl *EnclosingDecl,
raw_ostream &Out) override;
void mangleStringLiteral(const StringLiteral *, raw_ostream &) override;
void mangleCXXVTable(const CXXRecordDecl *RD, raw_ostream &) override;
void mangleCXXVTT(const CXXRecordDecl *RD, raw_ostream &) override;
void mangleCXXCtorVTable(const CXXRecordDecl *RD, int64_t Offset,
const CXXRecordDecl *Type,
raw_ostream &) override;
void mangleItaniumThreadLocalInit(const VarDecl *D,
raw_ostream &) override;
void mangleItaniumThreadLocalWrapper(const VarDecl *D,
raw_ostream &) override;
void mangleCXXCtorComdat(const CXXConstructorDecl *D,
raw_ostream &) override;
void mangleCXXDtorComdat(const CXXDestructorDecl *D,
raw_ostream &) override;
/// @}
};
}
bool MacintoshMangleContextImpl::shouldMangleCXXName(const NamedDecl *D) {
const FunctionDecl *FD = dyn_cast<FunctionDecl>(D);
if (FD) {
// Pragma patch function declarations as extern "C" aren't mangled
if (FD->getDeclContext()->isPragmaPatch() &&
FD->getDeclContext()->isExternCContext())
return false;
LanguageLinkage L = FD->getLanguageLinkage();
// Overloadable functions need mangling.
if (FD->hasAttr<OverloadableAttr>())
return true;
// "main" is not mangled.
if (FD->isMain())
return false;
// C++ functions and those whose names are not a simple identifier need
// mangling.
if (!FD->getDeclName().isIdentifier() || L == CXXLanguageLinkage)
return true;
// C functions are not mangled.
if (L == CLanguageLinkage)
return false;
}
// Otherwise, no mangling is done outside C++ mode.
if (!getASTContext().getLangOpts().CPlusPlus)
return false;
const VarDecl *VD = dyn_cast<VarDecl>(D);
if (VD && !isa<DecompositionDecl>(D)) {
// Pragma patch variable declarations as extern "C" aren't mangled
if (VD->getDeclContext()->isPragmaPatch() &&
VD->getDeclContext()->isExternCContext())
return false;
// C variables are not mangled.
if (VD->isExternC())
return false;
// Variables at global scope with non-internal linkage are not mangled
const DeclContext *DC = getEffectiveDeclContext(D);
// Check for extern variable declared locally.
if ((DC->isFunctionOrMethod() && D->hasLinkage()) ||
isa<PragmaPatchDecl>(DC))
while (!DC->isNamespace() && !DC->isTranslationUnit())
DC = getEffectiveParentContext(DC);
if (DC->isTranslationUnit() && D->getFormalLinkage() != InternalLinkage &&
!isa<VarTemplateSpecializationDecl>(D))
return false;
}
return true;
}
static bool PrintType(QualType T, const ASTContext &Ctx,
raw_ostream &Out);
static void MangleTemplateSpecializationArg(const TemplateArgument &Arg,
bool &NeedsComma,
const ASTContext &Ctx,
raw_ostream &Out) {
switch (Arg.getKind()) {
case TemplateArgument::Type:
if (NeedsComma)
Out << ',';
PrintType(Arg.getAsType(), Ctx, Out);
NeedsComma = true;
break;
case TemplateArgument::Integral:
if (NeedsComma)
Out << ',';
Arg.getAsIntegral().print(Out, true);
NeedsComma = true;
break;
default: break;
}
}
static void MangleTemplateSpecialization(const TemplateArgumentList &List,
const ASTContext &Ctx,
raw_ostream &Out) {
Out << '<';
bool NeedsComma = false;
for (const TemplateArgument &Arg : List.asArray())
MangleTemplateSpecializationArg(Arg, NeedsComma, Ctx, Out);
Out << '>';
}
static void MangleTemplateSpecialization(
const DependentFunctionTemplateSpecializationInfo &List,
const ASTContext &Ctx, raw_ostream &Out) {
Out << '<';
bool NeedsComma = false;
const TemplateArgumentLoc *Args = List.getTemplateArgs();
for (unsigned i = 0; i < List.getNumTemplateArgs(); ++i) {
const TemplateArgument &Arg = Args[i].getArgument();
MangleTemplateSpecializationArg(Arg, NeedsComma, Ctx, Out);
}
Out << '>';
}
static void MangleClassTemplateSpecialization(const Decl *Decl,
const ASTContext &Ctx,
raw_ostream &Out) {
if (const ClassTemplateSpecializationDecl *TemplateSpec =
dyn_cast<ClassTemplateSpecializationDecl>(Decl)) {
const TemplateArgumentList &List = TemplateSpec->getTemplateInstantiationArgs();
MangleTemplateSpecialization(List, Ctx, Out);
}
}
static void PrintNamedDecl(const NamedDecl *ND, const ASTContext &Ctx,
raw_ostream &Out) {
std::string Str;
llvm::raw_string_ostream Name(Str);
Name << ND->getName();
MangleClassTemplateSpecialization(ND, Ctx, Name);
auto &NameStr = Name.str();
Out << NameStr.size();
Out << NameStr;
}
static void RecursiveDenest(const DeclContext *DCtx,
unsigned Count,
const ASTContext &Ctx,
raw_ostream &Out) {
const NamedDecl *Named = dyn_cast<NamedDecl>(DCtx);
if (!Named)
return;
const DeclContext *Prefix = DCtx->getParent();
if (Prefix && isa<NamedDecl>(Prefix))
RecursiveDenest(Prefix, Count + 1, Ctx, Out);
else if (Count > 1)
Out << 'Q' << Count;
PrintNamedDecl(Named, Ctx, Out);
}
static bool PrintType(QualType T, const ASTContext &Ctx,
raw_ostream &Out) {
if (const ConstantArrayType *Array =
dyn_cast_or_null<ConstantArrayType>(T.getTypePtr()->getAsArrayTypeUnsafe())) {
Out << 'A';
Array->getSize().print(Out, false);
Out << '_';
return PrintType(Array->getElementType(), Ctx, Out);
}
if (T.isConstQualified())
Out << 'C';
if (T.isVolatileQualified())
Out << 'V';
if (const ReferenceType *Ref = T.getTypePtr()->getAs<ReferenceType>()) {
Out << 'R';
return PrintType(Ref->getPointeeType(), Ctx, Out);
} else if (const PointerType *Ptr = T.getTypePtr()->getAs<PointerType>()) {
Out << 'P';
return PrintType(Ptr->getPointeeType(), Ctx, Out);
} else if (const TagType *Tag = T.getTypePtr()->getAs<TagType>()) {
const TagDecl *TD = Tag->getDecl();
RecursiveDenest(getEffectiveDeclContext(TD), 2, Ctx, Out);
PrintNamedDecl(TD, Ctx, Out);
return true;
} else if (const MemberPointerType *MemberPtr = T.getTypePtr()->getAs<MemberPointerType>()) {
Out << 'M';
const RecordType *Rec = dyn_cast<RecordType>(MemberPtr->getClass());
if (Rec)
RecursiveDenest(Rec->getDecl(), 1, Ctx, Out);
return PrintType(MemberPtr->getPointeeType(), Ctx, Out);
} else if (const FunctionProtoType *Proto = T.getTypePtr()->getAs<FunctionProtoType>()) {
Out << 'F';
if (!Proto->getNumParams() && !Proto->isVariadic())
Out << 'v';
else
for (QualType Type : Proto->param_types())
PrintType(Type, Ctx, Out);
if (Proto->isVariadic())
Out << 'e';
Out << '_';
PrintType(Proto->getReturnType(), Ctx, Out);
return true;
} else if (const BuiltinType *Builtin = T.getTypePtr()->getAs<BuiltinType>()) {
switch (Builtin->getKind()) {
case BuiltinType::Void:
Out << 'v';
return true;
case BuiltinType::Bool:
Out << 'b';
return true;
case BuiltinType::UChar:
Out << "Uc";
return true;
case BuiltinType::UShort:
Out << "Us";
return true;
case BuiltinType::UInt:
Out << "Ui";
return true;
case BuiltinType::ULong:
Out << "Ul";
return true;
case BuiltinType::ULongLong:
Out << "Uq";
return true;
case BuiltinType::Char_S:
case BuiltinType::Char_U:
case BuiltinType::SChar:
Out << 'c';
return true;
case BuiltinType::WChar_S:
case BuiltinType::WChar_U:
Out << 'w';
return true;
case BuiltinType::Short:
Out << 's';
return true;
case BuiltinType::Int:
Out << 'i';
return true;
case BuiltinType::Long:
Out << 'l';
return true;
case BuiltinType::LongLong:
Out << 'x';
return true;
case BuiltinType::Float:
Out << 'f';
return true;
case BuiltinType::Double:
Out << 'd';
return true;
case BuiltinType::LongDouble:
Out << 'r';
return true;
default: break;
}
}
return false;
}
static void MangleNumber(int64_t Number, raw_ostream &Out) {
// <number> ::= [n] <non-negative decimal integer>
if (Number < 0) {
Out << 'n';
Number = -Number;
}
Out << Number;
}
static void MangleCallOffset(int64_t NonVirtual, int64_t Virtual,
raw_ostream &Out) {
// <call-offset> ::= h <nv-offset> _
// ::= v <v-offset> _
// <nv-offset> ::= <offset number> # non-virtual base override
// <v-offset> ::= <offset number> _ <virtual offset number>
// # virtual base override, with vcall offset
if (!Virtual) {
Out << 'h';
MangleNumber(NonVirtual, Out);
Out << '_';
return;
}
Out << 'v';
MangleNumber(NonVirtual, Out);
Out << '_';
MangleNumber(Virtual, Out);
Out << '_';
}
/// Mangles the name of the declaration D and emits that name to the given
/// output stream.
///
/// If the declaration D requires a mangled name, this routine will emit that
/// mangled name to \p os and return true. Otherwise, \p os will be unchanged
/// and this routine will return false. In this case, the caller should just
/// emit the identifier of the declaration (\c D->getIdentifier()) as its
/// name.
void MacintoshMangleContextImpl::mangleCXXName(const NamedDecl *D,
raw_ostream &Out) {
assert((isa<FunctionDecl>(D) || isa<VarDecl>(D)) &&
"Invalid mangleName() call, argument is not a variable or function!");
PrettyStackTraceDecl CrashInfo(D, SourceLocation(),
getASTContext().getSourceManager(),
"Mangling declaration");
if (const CXXMethodDecl *MD = dyn_cast<CXXMethodDecl>(D)) {
MD = MD->getCanonicalDecl();
if (isa<CXXConstructorDecl>(D))
Out << "__ct";
else if (isa<CXXDestructorDecl>(D))
Out << "__dt";
else
MD->getNameInfo().printName(Out);
if (const TemplateArgumentList *TArgs = MD->getTemplateSpecializationArgs())
MangleTemplateSpecialization(*TArgs, getASTContext(), Out);
else if (DependentFunctionTemplateSpecializationInfo *DepArgs =
MD->getDependentSpecializationInfo())
MangleTemplateSpecialization(*DepArgs, getASTContext(), Out);
Out << "__";
RecursiveDenest(getEffectiveDeclContext(MD), 1,
getASTContext(), Out);
if (MD->isConst())
Out << 'C';
Out << 'F';
if (MD->param_empty() && !MD->isVariadic())
Out << 'v';
else
for (const ParmVarDecl *Param : MD->parameters())
PrintType(Param->getType(), getASTContext(), Out);
if (MD->isVariadic())
Out << 'e';
} else if (const FunctionDecl *FD = dyn_cast<FunctionDecl>(D)) {
FD = FD->getCanonicalDecl();
FD->getNameInfo().printName(Out);
if (const TemplateArgumentList *TArgs = FD->getTemplateSpecializationArgs())
MangleTemplateSpecialization(*TArgs, getASTContext(), Out);
else if (DependentFunctionTemplateSpecializationInfo *DepArgs =
FD->getDependentSpecializationInfo())
MangleTemplateSpecialization(*DepArgs, getASTContext(), Out);
Out << "__";
RecursiveDenest(getEffectiveDeclContext(FD), 1,
getASTContext(), Out);
Out << 'F';
if (FD->param_empty() && !FD->isVariadic())
Out << 'v';
else
for (const ParmVarDecl *Param : FD->parameters())
PrintType(Param->getType(), getASTContext(), Out);
if (FD->isVariadic())
Out << 'e';
} else if (const VarDecl *VD = dyn_cast<VarDecl>(D)) {
VD = VD->getCanonicalDecl();
Out << VD->getName();
Out << "__";
RecursiveDenest(getEffectiveDeclContext(VD), 1,
getASTContext(), Out);
}
}
void MacintoshMangleContextImpl::mangleCXXCtor(const CXXConstructorDecl *D,
CXXCtorType Type,
raw_ostream &Out) {
mangleCXXName(D, Out);
}
void MacintoshMangleContextImpl::mangleCXXDtor(const CXXDestructorDecl *D,
CXXDtorType Type,
raw_ostream &Out) {
mangleCXXName(D, Out);
}
void MacintoshMangleContextImpl::mangleThunk(const CXXMethodDecl *MD,
const ThunkInfo &Thunk,
raw_ostream &Out) {
// <special-name> ::= T <call-offset> <base encoding>
// # base is the nominal target function of thunk
// <special-name> ::= Tc <call-offset> <call-offset> <base encoding>
// # base is the nominal target function of thunk
// # first call-offset is 'this' adjustment
// # second call-offset is result adjustment
assert(!isa<CXXDestructorDecl>(MD) &&
"Use mangleCXXDtor for destructor decls!");
Out << "T";
// Mangle the 'this' pointer adjustment.
MangleCallOffset(Thunk.This.NonVirtual,
Thunk.This.Virtual.Itanium.VCallOffsetOffset,
Out);
// Mangle the return pointer adjustment if there is one.
if (!Thunk.Return.isEmpty())
MangleCallOffset(Thunk.Return.NonVirtual,
Thunk.Return.Virtual.Itanium.VBaseOffsetOffset,
Out);
mangleCXXName(MD, Out);
}
void MacintoshMangleContextImpl::mangleCXXDtorThunk(
const CXXDestructorDecl *DD, CXXDtorType Type,
const ThisAdjustment &ThisAdjustment, raw_ostream &Out) {
// <special-name> ::= T <call-offset> <base encoding>
// # base is the nominal target function of thunk
Out << "T";
// Mangle the 'this' pointer adjustment.
MangleCallOffset(ThisAdjustment.NonVirtual,
ThisAdjustment.Virtual.Itanium.VCallOffsetOffset,
Out);
mangleCXXName(DD, Out);
}
/// Returns the mangled name for a guard variable for the passed in VarDecl.
void MacintoshMangleContextImpl::mangleStaticGuardVariable(const VarDecl *D,
raw_ostream &Out) {
llvm_unreachable("Can't mangle StaticGuardVariable");
}
void MacintoshMangleContextImpl::mangleDynamicInitializer(const VarDecl *MD,
raw_ostream &Out) {
// These symbols are internal in the Itanium ABI, so the names don't matter.
// Clang has traditionally used this symbol and allowed LLVM to adjust it to
// avoid duplicate symbols.
Out << "__cxx_global_var_init";
}
void MacintoshMangleContextImpl::mangleDynamicAtExitDestructor(const VarDecl *D,
raw_ostream &Out) {
// Prefix the mangling of D with __dtor_.
Out << "__dtor_";
if (shouldMangleDeclName(D)) {
} else
Out << D->getName();
}
void MacintoshMangleContextImpl::mangleSEHFilterExpression(
const NamedDecl *EnclosingDecl, raw_ostream &Out) {
Out << "__filt_";
if (shouldMangleDeclName(EnclosingDecl)) {
} else
Out << EnclosingDecl->getName();
}
void MacintoshMangleContextImpl::mangleSEHFinallyBlock(
const NamedDecl *EnclosingDecl, raw_ostream &Out) {
Out << "__fin_";
if (shouldMangleDeclName(EnclosingDecl)) {
} else
Out << EnclosingDecl->getName();
}
void MacintoshMangleContextImpl::mangleReferenceTemporary(const VarDecl *D,
unsigned ManglingNumber,
raw_ostream &Out) {
llvm_unreachable("Can't mangle ReferenceTemporary");
}
void MacintoshMangleContextImpl::mangleCXXRTTI(QualType Ty, raw_ostream &Out) {
// <special-name> ::= TI <type> # typeinfo structure
assert(!Ty.hasQualifiers() && "RTTI info cannot have top-level qualifiers");
Out << "_ZTI";
PrintType(Ty, getASTContext(), Out);
}
void MacintoshMangleContextImpl::mangleCXXRTTIName(QualType Ty,
raw_ostream &Out) {
// <special-name> ::= TS <type> # typeinfo name (null terminated byte string)
Out << "_ZTS";
PrintType(Ty, getASTContext(), Out);
}
void MacintoshMangleContextImpl::mangleTypeName(QualType Ty, raw_ostream &Out) {
mangleCXXRTTIName(Ty, Out);
}
void MacintoshMangleContextImpl::mangleStringLiteral(
const StringLiteral *, raw_ostream &) {
llvm_unreachable("Can't mangle string literals");
}
void MacintoshMangleContextImpl::mangleCXXVTable(
const CXXRecordDecl *RD, raw_ostream &Out) {
Out << "__vt__";
RecursiveDenest(RD, 1, getASTContext(), Out);
}
void MacintoshMangleContextImpl::mangleCXXVTT(
const CXXRecordDecl *RD, raw_ostream &) {
llvm_unreachable("Can't mangle CXXVTT");
}
void MacintoshMangleContextImpl::mangleCXXCtorVTable(
const CXXRecordDecl *RD, int64_t Offset,
const CXXRecordDecl *Type, raw_ostream &) {
llvm_unreachable("Can't mangle CtorVTable");
}
void MacintoshMangleContextImpl::mangleItaniumThreadLocalInit(
const VarDecl *D, raw_ostream &) {
llvm_unreachable("Can't mangle ItaniumThreadLocalInit");
}
void MacintoshMangleContextImpl::mangleItaniumThreadLocalWrapper(
const VarDecl *D, raw_ostream &) {
llvm_unreachable("Can't mangle ItaniumThreadLocalWrapper");
}
void MacintoshMangleContextImpl::mangleCXXCtorComdat(
const CXXConstructorDecl *D, raw_ostream &) {
llvm_unreachable("Can't mangle CtorComdat");
}
void MacintoshMangleContextImpl::mangleCXXDtorComdat(
const CXXDestructorDecl *D, raw_ostream &) {
llvm_unreachable("Can't mangle DtorComdat");
}
MacintoshMangleContext *
MacintoshMangleContext::create(ASTContext &Context, DiagnosticsEngine &Diags) {
return new MacintoshMangleContextImpl(Context, Diags);
}