-
Notifications
You must be signed in to change notification settings - Fork 10.4k
/
Copy pathPrintClangValueType.cpp
745 lines (696 loc) · 29.4 KB
/
PrintClangValueType.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
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
//===--- PrintClangValueType.cpp - Printer for C/C++ value types *- C++ -*-===//
//
// This source file is part of the Swift.org open source project
//
// Copyright (c) 2014 - 2022 Apple Inc. and the Swift project authors
// Licensed under Apache License v2.0 with Runtime Library Exception
//
// See https://swift.org/LICENSE.txt for license information
// See https://swift.org/CONTRIBUTORS.txt for the list of Swift project authors
//
//===----------------------------------------------------------------------===//
#include "PrintClangValueType.h"
#include "ClangSyntaxPrinter.h"
#include "DeclAndTypePrinter.h"
#include "OutputLanguageMode.h"
#include "PrimitiveTypeMapping.h"
#include "SwiftToClangInteropContext.h"
#include "swift/AST/Decl.h"
#include "swift/AST/SwiftNameTranslation.h"
#include "swift/AST/Type.h"
#include "swift/ClangImporter/ClangImporter.h"
#include "swift/IRGen/IRABIDetailsProvider.h"
#include "swift/IRGen/Linking.h"
#include "llvm/ADT/STLExtras.h"
#include "llvm/Support/raw_ostream.h"
using namespace swift;
/// Print out the C type name of a struct/enum declaration.
static void printCTypeName(raw_ostream &os, const NominalTypeDecl *type) {
ClangSyntaxPrinter printer(type->getASTContext(), os);
printer.printModuleNameCPrefix(*type->getParentModule());
if (!ClangSyntaxPrinter(type->getASTContext(), os).printNestedTypeNamespaceQualifiers(type))
os << "::";
printer.printBaseName(type);
}
/// Print out the C++ type name of a struct/enum declaration.
static void printCxxTypeName(raw_ostream &os, const NominalTypeDecl *type,
const ModuleDecl *moduleContext) {
ClangSyntaxPrinter(type->getASTContext(), os).printPrimaryCxxTypeName(type, moduleContext);
}
void ClangValueTypePrinter::printCxxImplClassName(raw_ostream &os,
const NominalTypeDecl *type) {
os << "_impl_";
ClangSyntaxPrinter(type->getASTContext(), os).printBaseName(type);
}
void ClangValueTypePrinter::printMetadataAccessAsVariable(
const ASTContext &Context,
raw_ostream &os, StringRef metadataFuncName,
ArrayRef<GenericRequirement> genericRequirements, int indent,
StringRef varName) {
ClangSyntaxPrinter printer(Context, os);
os << std::string(indent, ' ') << "auto " << varName << " = "
<< cxx_synthesis::getCxxImplNamespaceName() << "::";
printer.printSwiftTypeMetadataAccessFunctionCall(metadataFuncName,
genericRequirements);
os << ";\n";
}
void ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(
const ASTContext &Context,
raw_ostream &os, StringRef metadataFuncName,
ArrayRef<GenericRequirement> genericRequirements, int indent,
StringRef metadataVarName, StringRef vwTableVarName) {
ClangSyntaxPrinter printer(Context, os);
printMetadataAccessAsVariable(Context, os, metadataFuncName, genericRequirements,
indent, metadataVarName);
printer.printValueWitnessTableAccessSequenceFromTypeMetadata(
metadataVarName, vwTableVarName, indent);
}
static void
printCValueTypeStorageStruct(raw_ostream &os, const NominalTypeDecl *typeDecl,
IRABIDetailsProvider::SizeAndAlignment layout) {
os << "struct ";
printCTypeName(os, typeDecl);
os << " {\n";
os << " _Alignas(" << layout.alignment << ") ";
os << "char _storage[" << layout.size << "];\n";
os << "};\n\n";
}
void ClangValueTypePrinter::forwardDeclType(
raw_ostream &os, const NominalTypeDecl *typeDecl,
DeclAndTypePrinter &declAndTypePrinter) {
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printParentNamespaceForNestedTypes(
typeDecl, [&](raw_ostream &) {
if (typeDecl->isGeneric()) {
auto genericSignature =
typeDecl->getGenericSignature().getCanonicalSignature();
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printGenericSignature(genericSignature);
}
os << "class";
declAndTypePrinter.printAvailability(os, typeDecl);
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printSymbolUSRAttribute(typeDecl);
os << ' ';
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printBaseName(typeDecl);
os << ";\n";
});
printTypePrecedingGenericTraits(os, typeDecl, typeDecl->getModuleContext());
}
static void addCppExtensionsToStdlibType(const NominalTypeDecl *typeDecl,
raw_ostream &os,
ClangSyntaxPrinter &printer,
raw_ostream &cPrologueOS) {
if (typeDecl == typeDecl->getASTContext().getStringDecl()) {
// Perform String -> NSString conversion using
// _bridgeToObjectiveCImpl.
// FIXME: This is an extension, we should
// just expose the method to C once extensions are
// supported.
// FIXME: This C passing should not be here, remove it.
cPrologueOS << "struct swift_interop_stub_Swift_String {\n"
"#if UINTPTR_MAX == 0xFFFFFFFFFFFFFFFFu\n"
"uint64_t _1;\n"
"void * _Nullable _2;\n"
"#elif UINTPTR_MAX == 0xFFFFFFFF\n"
"uint32_t _1;\n"
"uint32_t _2;\n"
"uint32_t _3;\n"
"#endif\n"
"};\n";
cPrologueOS
<< "static SWIFT_INLINE_THUNK struct swift_interop_stub_Swift_String "
"swift_interop_passDirect_Swift_String(const char * "
"_Nonnull value) {\n"
"struct swift_interop_stub_Swift_String result;\n"
"#if UINTPTR_MAX == 0xFFFFFFFFFFFFFFFFu\n"
"memcpy(&result._1, value, 8);\n"
"memcpy(&result._2, value + 8, 8);\n"
"#elif UINTPTR_MAX == 0xFFFFFFFF\n"
"memcpy(&result._1, value, 4);\n"
"memcpy(&result._2, value + 4, 4);\n"
"memcpy(&result._3, value + 8, 4);\n"
"#endif\n"
"return result;\n"
"}\n";
cPrologueOS << "SWIFT_EXTERN void *_Nonnull "
"$sSS10FoundationE19_bridgeToObjectiveCSo8NSStringCyF(swift_interop_stub_"
"Swift_String) SWIFT_NOEXCEPT SWIFT_CALL;\n";
cPrologueOS << "SWIFT_EXTERN swift_interop_stub_Swift_String "
"$sSS10FoundationE36_"
"unconditionallyBridgeFromObjectiveCySSSo8NSStringCSgFZ("
"void * _Nullable) SWIFT_NOEXCEPT SWIFT_CALL;\n";
cPrologueOS << "SWIFT_EXTERN swift_interop_stub_Swift_String "
"$sSS7cStringSSSPys4Int8VG_tcfC("
"const char * _Nonnull) SWIFT_NOEXCEPT SWIFT_CALL;\n";
printer.printObjCBlock([&](raw_ostream &os) {
os << " ";
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printInlineForThunk();
os << "operator NSString * _Nonnull () const noexcept {\n";
os << " return (__bridge_transfer NSString "
"*)(_impl::$sSS10FoundationE19_bridgeToObjectiveCSo8NSStringCyF(_impl::swift_interop_"
"passDirect_Swift_String(_getOpaquePointer())));\n";
os << " }\n";
os << "static ";
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printInlineForThunk();
os << "String init(NSString * _Nonnull nsString) noexcept {\n";
os << " auto result = _make();\n";
os << " auto res = "
"_impl::$sSS10FoundationE36_"
"unconditionallyBridgeFromObjectiveCySSSo8NSStringCSgFZ((__bridge "
"void *)nsString);\n";
os << " memcpy(result._getOpaquePointer(), &res, sizeof(res));\n";
os << " return result;\n";
os << " }\n";
});
// Add additional methods for the `String` declaration.
printer.printDefine("SWIFT_CXX_INTEROP_STRING_MIXIN");
printer.printIncludeForShimHeader("_SwiftStdlibCxxOverlay.h");
} else if (typeDecl == typeDecl->getASTContext().getOptionalDecl()) {
// Add additional methods for the `Optional` declaration.
printer.printDefine("SWIFT_CXX_INTEROP_OPTIONAL_MIXIN");
printer.printIncludeForShimHeader("_SwiftStdlibCxxOverlay.h");
}
}
void ClangValueTypePrinter::printValueTypeDecl(
const NominalTypeDecl *typeDecl, llvm::function_ref<void(void)> bodyPrinter,
DeclAndTypePrinter &declAndTypePrinter) {
// FIXME: Add support for generic structs.
std::optional<IRABIDetailsProvider::SizeAndAlignment> typeSizeAlign;
GenericSignature genericSignature;
auto printGenericSignature = [&](raw_ostream &os) {
if (!genericSignature)
return;
ClangSyntaxPrinter(Context, os).printGenericSignature(genericSignature);
};
auto printGenericParamRefs = [&](raw_ostream &os) {
if (!genericSignature)
return;
ClangSyntaxPrinter(Context, os).printGenericSignatureParams(genericSignature);
};
if (typeDecl->isGeneric()) {
genericSignature = typeDecl->getGenericSignature();
assert(cxx_translation::isExposableToCxx(genericSignature));
// FIXME: Can we make some better layout than opaque layout for generic
// types.
} else if (!typeDecl->isResilient()) {
typeSizeAlign =
interopContext.getIrABIDetails().getTypeSizeAlignment(typeDecl);
// typeSizeAlign can be null if this is not a fixed-layout type,
// e.g. it has resilient fields.
if (typeSizeAlign && typeSizeAlign->size == 0) {
// FIXME: How to represent 0 sized structs?
declAndTypePrinter.getCxxDeclEmissionScope()
.additionalUnrepresentableDeclarations.push_back(typeDecl);
return;
}
}
bool isOpaqueLayout = !typeSizeAlign.has_value();
auto typeMetadataFunc = irgen::LinkEntity::forTypeMetadataAccessFunction(
typeDecl->getDeclaredType()->getCanonicalType());
std::string typeMetadataFuncName = typeMetadataFunc.mangleAsString(typeDecl->getASTContext());
auto typeMetadataFuncGenericParams =
interopContext.getIrABIDetails()
.getTypeMetadataAccessFunctionGenericRequirementParameters(
const_cast<NominalTypeDecl *>(typeDecl));
ClangSyntaxPrinter printer(Context, os);
printer.printParentNamespaceForNestedTypes(typeDecl, [&](raw_ostream &os) {
// Print out a forward declaration of the "hidden" _impl class.
printer.printNamespace(
cxx_synthesis::getCxxImplNamespaceName(), [&](raw_ostream &os) {
printGenericSignature(os);
os << "class";
declAndTypePrinter.printAvailability(os, typeDecl);
os << ' ';
printCxxImplClassName(os, typeDecl);
os << ";\n\n";
// Print out special functions, like functions that
// access type metadata.
printer.printCTypeMetadataTypeFunction(typeDecl, typeMetadataFuncName,
typeMetadataFuncGenericParams);
// Print out global variables for resilient enum
// cases
if (isa<EnumDecl>(typeDecl) && isOpaqueLayout) {
auto elementTagMapping =
interopContext.getIrABIDetails().getEnumTagMapping(
cast<EnumDecl>(typeDecl));
os << "// Tags for resilient enum ";
os << typeDecl->getName().str() << '\n';
os << "extern \"C\" {\n";
for (const auto &pair : elementTagMapping) {
os << "extern unsigned " << pair.second.globalVariableName
<< ";\n";
}
os << "}\n";
}
});
auto printEnumVWTableVariable = [&](StringRef metadataName = "metadata",
StringRef vwTableName = "vwTable",
StringRef enumVWTableName =
"enumVWTable") {
ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(Context,
os, typeMetadataFuncName, typeMetadataFuncGenericParams);
os << " const auto *" << enumVWTableName << " = reinterpret_cast<";
ClangSyntaxPrinter(Context, os).printSwiftImplQualifier();
os << "EnumValueWitnessTable";
os << " *>(" << vwTableName << ");\n";
};
// Print out the C++ class itself.
printGenericSignature(os);
os << "class";
declAndTypePrinter.printAvailability(os, typeDecl);
ClangSyntaxPrinter(Context, os).printSymbolUSRAttribute(typeDecl);
os << ' ';
ClangSyntaxPrinter(Context, os).printBaseName(typeDecl);
os << " final {\n";
os << "public:\n";
if (genericSignature)
ClangSyntaxPrinter(Context, os).printGenericSignatureInnerStaticAsserts(
genericSignature);
// Print out the destructor.
os << " ";
printer.printInlineForThunk();
os << '~';
printer.printBaseName(typeDecl);
os << "() noexcept {\n";
ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(Context,
os, typeMetadataFuncName, typeMetadataFuncGenericParams);
os << " vwTable->destroy(_getOpaquePointer(), metadata._0);\n";
os << " }\n";
// copy constructor.
os << " ";
printer.printInlineForThunk();
printer.printBaseName(typeDecl);
os << "(const ";
printer.printBaseName(typeDecl);
os << " &other) noexcept {\n";
ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(Context,
os, typeMetadataFuncName, typeMetadataFuncGenericParams);
if (isOpaqueLayout) {
os << " _storage = ";
printer.printSwiftImplQualifier();
os << cxx_synthesis::getCxxOpaqueStorageClassName()
<< "(vwTable->size, vwTable->getAlignment());\n";
}
os << " vwTable->initializeWithCopy(_getOpaquePointer(), "
"const_cast<char "
"*>(other._getOpaquePointer()), metadata._0);\n";
os << " }\n";
// copy assignment.
os << " ";
printer.printInlineForThunk();
printer.printBaseName(typeDecl);
os << " &operator =(const ";
printer.printBaseName(typeDecl);
os << " &other) noexcept {\n";
ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(Context,
os, typeMetadataFuncName, typeMetadataFuncGenericParams);
os << " vwTable->assignWithCopy(_getOpaquePointer(), const_cast<char "
"*>(other._getOpaquePointer()), metadata._0);\n";
os << " return *this;\n";
os << " }\n";
// FIXME: implement the move assignment.
os << " ";
printer.printInlineForThunk();
printer.printBaseName(typeDecl);
os << " &operator =(";
printer.printBaseName(typeDecl);
os << " &&other) = delete;\n";
// FIXME: implement the move constructor.
os << " [[noreturn]] ";
// NOTE: Do not apply attribute((used))
// here to ensure the linker error isn't
// forced, so just mark this an inline
// helper function instead.
printer.printInlineForHelperFunction();
printer.printBaseName(typeDecl);
os << "(";
printer.printBaseName(typeDecl);
StringRef moveErrorMessage =
"C++ does not support moving a Swift value yet";
os << " &&) noexcept {\n "
"swift::_impl::_fatalError_Cxx_move_of_Swift_value_type_not_"
"supported_"
"yet();\n swift::_impl::_swift_stdlib_reportFatalError(\"swift\", "
"5, "
"\""
<< moveErrorMessage << "\", " << moveErrorMessage.size()
<< ", 0);\n abort();\n }\n";
bodyPrinter();
if (typeDecl->isStdlibDecl())
addCppExtensionsToStdlibType(typeDecl, os, printer, cPrologueOS);
os << "private:\n";
// Print out private default constructor.
os << " ";
printer.printInlineForThunk();
printer.printBaseName(typeDecl);
if (isOpaqueLayout) {
os << "(";
printer.printSwiftImplQualifier();
os << "ValueWitnessTable * _Nonnull vwTable) noexcept : "
"_storage(vwTable->size, "
"vwTable->getAlignment()) {}\n";
} else {
os << "() noexcept {}\n";
}
// Print out '_make' function which returns an unitialized instance for
// passing to Swift.
os << " static ";
printer.printInlineForThunk();
printer.printBaseName(typeDecl);
os << " _make() noexcept {";
if (isOpaqueLayout) {
os << "\n";
ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(Context,
os, typeMetadataFuncName, typeMetadataFuncGenericParams);
os << " return ";
printer.printBaseName(typeDecl);
os << "(vwTable);\n }\n";
} else {
os << " return ";
printer.printBaseName(typeDecl);
os << "(); }\n";
}
// Print out the private accessors to the underlying Swift value storage.
os << " ";
printer.printInlineForThunk();
os << "const char * _Nonnull _getOpaquePointer() const noexcept { return "
"_storage";
if (isOpaqueLayout)
os << ".getOpaquePointer()";
os << "; }\n";
os << " ";
printer.printInlineForThunk();
os << "char * _Nonnull _getOpaquePointer() noexcept { return _storage";
if (isOpaqueLayout)
os << ".getOpaquePointer()";
os << "; }\n";
os << "\n";
// Print out helper function for enums
if (isa<EnumDecl>(typeDecl)) {
os << " ";
printer.printInlineForThunk();
os << "char * _Nonnull _destructiveProjectEnumData() noexcept {\n";
printEnumVWTableVariable();
os << " enumVWTable->destructiveProjectEnumData(_getOpaquePointer(), "
"metadata._0);\n";
os << " return _getOpaquePointer();\n";
os << " }\n";
os << " ";
printer.printInlineForThunk();
os << "void _destructiveInjectEnumTag(unsigned tag) noexcept {\n";
printEnumVWTableVariable();
os << " enumVWTable->destructiveInjectEnumTag(_getOpaquePointer(), "
"tag, "
"metadata._0);\n";
os << " }\n";
os << " ";
printer.printInlineForThunk();
os << "unsigned _getEnumTag() const noexcept {\n";
printEnumVWTableVariable();
os << " return enumVWTable->getEnumTag(_getOpaquePointer(), "
"metadata._0);\n";
os << " }\n";
}
// Print out the storage for the value type.
os << " ";
if (isOpaqueLayout) {
printer.printSwiftImplQualifier();
os << cxx_synthesis::getCxxOpaqueStorageClassName() << " _storage;\n";
} else {
os << "alignas(" << typeSizeAlign->alignment << ") ";
os << "char _storage[" << typeSizeAlign->size << "];\n";
}
// Wrap up the value type.
os << " friend class " << cxx_synthesis::getCxxImplNamespaceName() << "::";
printCxxImplClassName(os, typeDecl);
printGenericParamRefs(os);
os << ";\n";
printer.printSwiftMangledNameForDebugger(typeDecl);
os << "};\n";
os << '\n';
const auto *moduleContext = typeDecl->getModuleContext();
// Print out the "hidden" _impl class.
printer.printNamespace(
cxx_synthesis::getCxxImplNamespaceName(), [&](raw_ostream &os) {
printGenericSignature(os);
os << "class";
declAndTypePrinter.printAvailability(os, typeDecl);
os << ' ';
printCxxImplClassName(os, typeDecl);
os << " {\n";
os << "public:\n";
if (genericSignature)
ClangSyntaxPrinter(Context, os).printGenericSignatureInnerStaticAsserts(
genericSignature);
os << " static ";
ClangSyntaxPrinter(Context, os).printInlineForThunk();
os << "char * _Nonnull getOpaquePointer(";
printCxxTypeName(os, typeDecl, moduleContext);
printGenericParamRefs(os);
os << " &object) { return object._getOpaquePointer(); }\n";
os << " static ";
ClangSyntaxPrinter(Context, os).printInlineForThunk();
os << "const char * _Nonnull getOpaquePointer(const ";
printCxxTypeName(os, typeDecl, moduleContext);
printGenericParamRefs(os);
os << " &object) { return object._getOpaquePointer(); }\n";
os << " template<class T>\n";
os << " static ";
ClangSyntaxPrinter(Context, os).printInlineForHelperFunction();
printCxxTypeName(os, typeDecl, moduleContext);
printGenericParamRefs(os);
os << " returnNewValue(T callable) {\n";
os << " auto result = ";
printCxxTypeName(os, typeDecl, moduleContext);
printGenericParamRefs(os);
os << "::_make();\n";
os << " callable(result._getOpaquePointer());\n";
os << " return result;\n";
os << " }\n";
// Print out helper function for initializeWithTake
os << " static ";
ClangSyntaxPrinter(Context, os).printInlineForThunk();
os << "void initializeWithTake(char * _Nonnull "
"destStorage, char * _Nonnull srcStorage) {\n";
ClangValueTypePrinter::printValueWitnessTableAccessAsVariable(
Context, os, typeMetadataFuncName, typeMetadataFuncGenericParams);
os << " vwTable->initializeWithTake(destStorage, srcStorage, "
"metadata._0);\n";
os << " }\n";
os << "};\n";
});
});
if (!isOpaqueLayout)
printCValueTypeStorageStruct(cPrologueOS, typeDecl, *typeSizeAlign);
printTypeGenericTraits(
os, typeDecl, typeMetadataFuncName, typeMetadataFuncGenericParams,
typeDecl->getModuleContext(), declAndTypePrinter, isOpaqueLayout);
}
void ClangValueTypePrinter::printParameterCxxToCUseScaffold(
const ModuleDecl *moduleContext, llvm::function_ref<void()> typePrinter,
llvm::function_ref<void()> cxxParamPrinter, bool forceSelf) {
// A Swift value type is passed to its underlying Swift function
if (forceSelf) {
os << "_getOpaquePointer()";
} else {
// FIXME: can we propagate the _impl request here?
typePrinter();
os << "::getOpaquePointer(";
cxxParamPrinter();
os << ')';
}
}
void ClangValueTypePrinter::printValueTypeReturnType(
const NominalTypeDecl *type, OutputLanguageMode outputLang,
TypeUseKind typeUse, const ModuleDecl *moduleContext) {
assert(isa<StructDecl>(type) || isa<EnumDecl>(type));
assert(outputLang == OutputLanguageMode::Cxx);
// FIXME: make a type use.
if (outputLang == OutputLanguageMode::Cxx) {
if (typeUse == TypeUseKind::CxxTypeName)
printCxxTypeName(os, type, moduleContext);
else {
assert(typeUse == TypeUseKind::CxxImplTypeName);
ClangSyntaxPrinter(Context, os).printBaseName(type->getModuleContext());
os << "::";
if (!ClangSyntaxPrinter(Context, os).printNestedTypeNamespaceQualifiers(type))
os << "::";
os << cxx_synthesis::getCxxImplNamespaceName() << "::";
printCxxImplClassName(os, type);
}
}
}
void ClangValueTypePrinter::printValueTypeReturnScaffold(
const NominalTypeDecl *type, const ModuleDecl *moduleContext,
llvm::function_ref<void()> typePrinter,
llvm::function_ref<void(StringRef)> bodyPrinter) {
assert(isa<StructDecl>(type) || isa<EnumDecl>(type));
os << " return ";
typePrinter();
os << "::returnNewValue([&](char * _Nonnull result) "
"SWIFT_INLINE_THUNK_ATTRIBUTES {\n ";
bodyPrinter("result");
os << ";\n";
os << " });\n";
}
void ClangValueTypePrinter::printClangTypeSwiftGenericTraits(
raw_ostream &os, const TypeDecl *typeDecl, const ModuleDecl *moduleContext,
DeclAndTypePrinter &declAndTypePrinter) {
assert(typeDecl->hasClangNode());
// Do not reference unspecialized templates.
if (isa<clang::ClassTemplateDecl>(typeDecl->getClangDecl()))
return;
auto typeMetadataFunc = irgen::LinkEntity::forTypeMetadataAccessFunction(
typeDecl->getDeclaredInterfaceType()->getCanonicalType());
std::string typeMetadataFuncName = typeMetadataFunc.mangleAsString(typeDecl->getASTContext());
printTypeGenericTraits(os, typeDecl, typeMetadataFuncName,
/*typeMetadataFuncRequirements=*/{}, moduleContext,
declAndTypePrinter);
}
void ClangValueTypePrinter::printTypePrecedingGenericTraits(
raw_ostream &os, const NominalTypeDecl *typeDecl,
const ModuleDecl *moduleContext) {
assert(!typeDecl->hasClangNode());
ClangSyntaxPrinter printer(typeDecl->getASTContext(), os);
// FIXME: avoid popping out of the module's namespace here.
os << "} // end namespace \n\n";
os << "namespace swift SWIFT_PRIVATE_ATTR {\n";
os << "#pragma clang diagnostic push\n";
os << "#pragma clang diagnostic ignored \"-Wc++17-extensions\"\n";
if (printer.printNominalTypeOutsideMemberDeclTemplateSpecifiers(typeDecl))
os << "template<>\n";
os << "inline const constexpr bool isUsableInGenericContext<";
printer.printNominalTypeReference(typeDecl,
/*moduleContext=*/nullptr);
os << "> = ";
if (typeDecl->isGeneric()) {
auto signature = typeDecl->getGenericSignature().getCanonicalSignature();
llvm::interleave(
signature.getInnermostGenericParams(), os,
[&](const GenericTypeParamType *genericParamType) {
os << "isUsableInGenericContext<";
printer.printGenericTypeParamTypeName(genericParamType);
os << '>';
},
" && ");
} else
os << "true";
os << ";\n";
os << "#pragma clang diagnostic pop\n";
os << "} // namespace swift\n";
os << "\n";
printer.printModuleNamespaceStart(*moduleContext);
}
void ClangValueTypePrinter::printTypeGenericTraits(
raw_ostream &os, const TypeDecl *typeDecl, StringRef typeMetadataFuncName,
ArrayRef<GenericRequirement> typeMetadataFuncRequirements,
const ModuleDecl *moduleContext, DeclAndTypePrinter &declAndTypePrinter,
bool isOpaqueLayout) {
auto *NTD = dyn_cast<NominalTypeDecl>(typeDecl);
ClangSyntaxPrinter printer(typeDecl->getASTContext(), os);
// FIXME: avoid popping out of the module's namespace here.
os << "} // end namespace \n\n";
os << "namespace swift SWIFT_PRIVATE_ATTR {\n";
if (typeDecl->hasClangNode()) {
/// Print a reference to the type metadata function for a C++ type.
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printNamespace(
cxx_synthesis::getCxxImplNamespaceName(), [&](raw_ostream &os) {
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printCTypeMetadataTypeFunction(
typeDecl, typeMetadataFuncName, typeMetadataFuncRequirements);
});
}
bool addPointer = typeDecl->isObjC();
os << "#pragma clang diagnostic push\n";
os << "#pragma clang diagnostic ignored \"-Wc++17-extensions\"\n";
if (typeDecl->hasClangNode()) {
// FIXME: share the code.
os << "template<>\n";
os << "inline const constexpr bool isUsableInGenericContext<";
printer.printClangTypeReference(typeDecl->getClangDecl());
if (addPointer)
os << "*";
os << "> = true;\n";
}
if (!NTD || printer.printNominalTypeOutsideMemberDeclTemplateSpecifiers(NTD))
os << "template<>\n";
os << "struct";
declAndTypePrinter.printAvailability(os, typeDecl);
os << " TypeMetadataTrait<";
if (typeDecl->hasClangNode()) {
printer.printClangTypeReference(typeDecl->getClangDecl());
if (addPointer)
os << "*";
} else {
assert(NTD);
printer.printNominalTypeReference(NTD,
/*moduleContext=*/nullptr);
}
os << "> {\n";
os << " static ";
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printInlineForHelperFunction();
os << "void * _Nonnull getTypeMetadata() {\n";
os << " return ";
if (!typeDecl->hasClangNode()) {
printer.printBaseName(typeDecl->getModuleContext());
os << "::";
}
if (!printer.printNestedTypeNamespaceQualifiers(typeDecl))
os << "::";
os << cxx_synthesis::getCxxImplNamespaceName() << "::";
ClangSyntaxPrinter(typeDecl->getASTContext(), os).printSwiftTypeMetadataAccessFunctionCall(
typeMetadataFuncName, typeMetadataFuncRequirements);
os << "._0;\n";
os << " }\n};\n";
os << "namespace " << cxx_synthesis::getCxxImplNamespaceName() << "{\n";
if (typeDecl->hasClangNode() && !typeDecl->isObjC()) {
os << "template<>\n";
os << "inline const constexpr bool isSwiftBridgedCxxRecord<";
printer.printClangTypeReference(typeDecl->getClangDecl());
os << "> = true;\n";
}
if (!isa<ClassDecl>(typeDecl) && !typeDecl->hasClangNode()) {
assert(NTD && "not a nominal type?");
if (printer.printNominalTypeOutsideMemberDeclTemplateSpecifiers(NTD))
os << "template<>\n";
os << "inline const constexpr bool isValueType<";
printer.printBaseName(typeDecl->getModuleContext());
os << "::";
printer.printNominalTypeReference(NTD, moduleContext);
os << "> = true;\n";
}
if (isOpaqueLayout) {
assert(NTD && "not a nominal type?");
assert(!isa<ClassDecl>(typeDecl) && !typeDecl->hasClangNode());
if (printer.printNominalTypeOutsideMemberDeclTemplateSpecifiers(NTD))
os << "template<>\n";
os << "inline const constexpr bool isOpaqueLayout<";
printer.printNominalTypeReference(NTD,
/*moduleContext=*/nullptr);
os << "> = true;\n";
}
if (!typeDecl->hasClangNode()) {
assert(NTD);
if (printer.printNominalTypeOutsideMemberDeclTemplateSpecifiers(NTD))
os << "template<>\n";
os << "struct";
declAndTypePrinter.printAvailability(os, typeDecl);
os << " implClassFor<";
printer.printBaseName(typeDecl->getModuleContext());
os << "::";
printer.printNominalTypeReference(NTD, moduleContext);
os << "> { using type = ";
printer.printBaseName(typeDecl->getModuleContext());
os << "::";
if (!printer.printNestedTypeNamespaceQualifiers(typeDecl))
os << "::";
os << cxx_synthesis::getCxxImplNamespaceName() << "::";
printCxxImplClassName(os, NTD);
if (NTD->isGeneric())
printer.printGenericSignatureParams(
NTD->getGenericSignature().getCanonicalSignature());
os << "; };\n";
}
os << "} // namespace\n";
os << "#pragma clang diagnostic pop\n";
os << "} // namespace swift\n";
os << "\n";
printer.printModuleNamespaceStart(*moduleContext);
}