diff options
author | David Majnemer <david.majnemer@gmail.com> | 2014-04-01 05:29:46 +0000 |
---|---|---|
committer | David Majnemer <david.majnemer@gmail.com> | 2014-04-01 05:29:46 +0000 |
commit | 2e1e0491b7098fcfe01945e8f62cafe1fcb3cf36 (patch) | |
tree | 463c0ad77620b54640dd9666999d00cddcf66b92 /clang/test/CodeGenCXX/mangle-ms-cxx14.cpp | |
parent | 762bdd5118f859422b255fb3cda064c89ffb73b6 (diff) | |
download | bcm5719-llvm-2e1e0491b7098fcfe01945e8f62cafe1fcb3cf36.tar.gz bcm5719-llvm-2e1e0491b7098fcfe01945e8f62cafe1fcb3cf36.zip |
MS ABI: Support mangling of return-types deducing to local types
The MS ABI forces us into catch-22 when it comes to functions which
return types which are local:
- A function is mangled with it's return type.
- A type is mangled with it's surrounding context.
Avoid this by mangling auto and decltype(autp) directly into the
function's return type. Using this mangling has the double advantage of
being compatible with the C++ standard without crashing the compiler.
N.B. For the curious, the MSVC mangling leads to collisions amongst
template functions and either crashes when faced with local types or is
otherwise incapable of returning them.
llvm-svn: 205282
Diffstat (limited to 'clang/test/CodeGenCXX/mangle-ms-cxx14.cpp')
-rw-r--r-- | clang/test/CodeGenCXX/mangle-ms-cxx14.cpp | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/clang/test/CodeGenCXX/mangle-ms-cxx14.cpp b/clang/test/CodeGenCXX/mangle-ms-cxx14.cpp index 5bf0e967a79..03995611d25 100644 --- a/clang/test/CodeGenCXX/mangle-ms-cxx14.cpp +++ b/clang/test/CodeGenCXX/mangle-ms-cxx14.cpp @@ -6,3 +6,35 @@ template <typename> int x = 0; template <> int x<void>; // CHECK: "\01??$x@H@@3HA" template <> int x<int>; + +// CHECK: "\01?FunctionWithLocalType@@YA?A?<auto>@@XZ" +auto FunctionWithLocalType() { + struct LocalType {}; + return LocalType{}; +} + +// CHECK: "\01?ValueFromFunctionWithLocalType@@3ULocalType@?0??FunctionWithLocalType@@YA?A?<auto>@@XZ@A" +auto ValueFromFunctionWithLocalType = FunctionWithLocalType(); + +// CHECK: "\01??R<lambda_0>@@QBE?A?<auto>@@XZ" +auto LambdaWithLocalType = [] { + struct LocalType {}; + return LocalType{}; +}; + +// CHECK: "\01?ValueFromLambdaWithLocalType@@3ULocalType@?0???R<lambda_0>@@QBE?A?<auto>@@XZ@A" +auto ValueFromLambdaWithLocalType = LambdaWithLocalType(); + +template <typename T> +auto TemplateFuncionWithLocalLambda(T) { + auto LocalLambdaWithLocalType = []() { + struct LocalType {}; + return LocalType{}; + }; + return LocalLambdaWithLocalType(); +} + +// CHECK: "\01?ValueFromTemplateFuncionWithLocalLambda@@3ULocalType@?2???R<lambda_1>@??$TemplateFuncionWithLocalLambda@H@@YA?A?<auto>@@H@Z@QBA?A?3@XZ@A" +// CHECK: "\01??$TemplateFuncionWithLocalLambda@H@@YA?A?<auto>@@H@Z" +// CHECK: "\01??R<lambda_1>@??$TemplateFuncionWithLocalLambda@H@@YA?A?<auto>@@H@Z@QBA?A?1@XZ" +auto ValueFromTemplateFuncionWithLocalLambda = TemplateFuncionWithLocalLambda(0); |