Index: lib/AST/MicrosoftMangle.cpp =================================================================== --- lib/AST/MicrosoftMangle.cpp +++ lib/AST/MicrosoftMangle.cpp @@ -953,8 +953,17 @@ void MicrosoftCXXNameMangler::mangleNestedName(const NamedDecl *ND) { // ::= [] // ::= [] - const DeclContext *DC = getEffectiveDeclContext(ND); + const Type *Ty = nullptr; + + if (const auto *FD = dyn_cast(ND)) + Ty = FD->getType()->getAs(); + + if (const auto *VD = dyn_cast(ND)) + if (VD->getType()->isPointerType()) + Ty = VD->getType()->getPointeeType()->getAs(); + + const DeclContext *DC = getEffectiveDeclContext(ND); while (!DC->isTranslationUnit()) { if (isa(ND) || isa(ND)) { unsigned Disc; @@ -1050,6 +1059,11 @@ } DC = DC->getParent(); } + + if (Ty) + if (Ty->getAs()->getCallConv() == CC_Swift) + for (const char *NS : {"__swift_cc", "__Swift"}) + mangleSourceName(NS); } void MicrosoftCXXNameMangler::mangleCXXDtorType(CXXDtorType T) { @@ -1959,6 +1973,11 @@ mangleQualifiers(Quals, /*IsMember=*/false); } + // We currently mangle the SwiftCC as `__Swift::__swift_cc` namespace on the + // decl in mangleNestedName. + if (CC == CC_Swift) + CC = CC_C; + mangleCallingConvention(CC); // ::= Index: test/CodeGenCXX/msabi-swiftcall-cc.cpp =================================================================== --- /dev/null +++ test/CodeGenCXX/msabi-swiftcall-cc.cpp @@ -0,0 +1,29 @@ +// RUN: %clang_cc1 -triple i686-unknown-windows-msvc -fdeclspec -emit-llvm %s -o - | FileCheck %s + +void __attribute__((__swiftcall__)) f() {} +// CHECK-DAG: @"\01?f@__swift_cc@__Swift@@YAXXZ" + +void (__attribute__((__swiftcall__)) *p)(); +// CHECK-DAG: @"\01?p@__swift_cc@__Swift@@3P6AXXZA" + +namespace { +void __attribute__((__swiftcall__)) __attribute__((__used__)) f() { } +// CHECK-DAG: "\01?f@?A@__swift_cc@__Swift@@YAXXZ" +} + +namespace n { +void __attribute__((__swiftcall__)) f() {} +// CHECK-DAG: "\01?f@n@__swift_cc@__Swift@@YAXXZ" +} + +namespace __Swift { namespace __swift_cc { +void __attribute__((__swiftcall__)) f() { } +// CHECK-DAG: "\01?f@__swift_cc@__Swift@12@YAXXZ" +} } + +struct __declspec(dllexport) S { + S(const S &) = delete; + S & operator=(const S &) = delete; + void __attribute__((__swiftcall__)) m() { } + // CHECK-DAG: "\01?m@S@__swift_cc@__Swift@@QAAXXZ" +};