mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-31 12:41:49 +01:00
[IR] Avoid the need to prefix MS C++ symbols with '\01'
Now the Windows mangling modes ('w' and 'x') do not do any mangling for symbols starting with '?'. This means that clang can stop adding the hideous '\01' leading escape. This means LLVM debug logs are less likely to contain ASCII escape characters and it will be easier to copy and paste MS symbol names from IR. Finally. For non-Windows platforms, names starting with '?' still get IR mangling, so once clang stops escaping MS C++ names, we will get extra '_' prefixing on MachO. That's fine, since it is currently impossible to construct a triple that uses the MS C++ ABI in clang and emits macho object files. Differential Revision: https://reviews.llvm.org/D7775 llvm-svn: 327734
This commit is contained in:
parent
2e29a2d86f
commit
1ba9070f0c
@ -1940,17 +1940,22 @@ as follows:
|
|||||||
``a:<abi>:<pref>``
|
``a:<abi>:<pref>``
|
||||||
This specifies the alignment for an object of aggregate type.
|
This specifies the alignment for an object of aggregate type.
|
||||||
``m:<mangling>``
|
``m:<mangling>``
|
||||||
If present, specifies that llvm names are mangled in the output. The
|
If present, specifies that llvm names are mangled in the output. Symbols
|
||||||
|
prefixed with the mangling escape character ``\01`` are passed through
|
||||||
|
directly to the assembler without the escape character. The mangling style
|
||||||
options are
|
options are
|
||||||
|
|
||||||
* ``e``: ELF mangling: Private symbols get a ``.L`` prefix.
|
* ``e``: ELF mangling: Private symbols get a ``.L`` prefix.
|
||||||
* ``m``: Mips mangling: Private symbols get a ``$`` prefix.
|
* ``m``: Mips mangling: Private symbols get a ``$`` prefix.
|
||||||
* ``o``: Mach-O mangling: Private symbols get ``L`` prefix. Other
|
* ``o``: Mach-O mangling: Private symbols get ``L`` prefix. Other
|
||||||
symbols get a ``_`` prefix.
|
symbols get a ``_`` prefix.
|
||||||
* ``w``: Windows COFF prefix: Similar to Mach-O, but stdcall and fastcall
|
* ``x``: Windows x86 COFF mangling: Private symbols get the usual prefix.
|
||||||
functions also get a suffix based on the frame size.
|
Regular C symbols get a ``_`` prefix. Functions with ``__stdcall``,
|
||||||
* ``x``: Windows x86 COFF prefix: Similar to Windows COFF, but use a ``_``
|
``__fastcall``, and ``__vectorcall`` have custom mangling that appends
|
||||||
prefix for ``__cdecl`` functions.
|
``@N`` where N is the number of bytes used to pass parameters. C++ symbols
|
||||||
|
starting with ``?`` are not mangled in any way.
|
||||||
|
* ``w``: Windows COFF mangling: Similar to ``x``, except that normal C
|
||||||
|
symbols do not receive a ``_`` prefix.
|
||||||
``n<size1>:<size2>:<size3>...``
|
``n<size1>:<size2>:<size3>...``
|
||||||
This specifies a set of native integer widths for the target CPU in
|
This specifies a set of native integer widths for the target CPU in
|
||||||
bits. For example, it might contain ``n32`` for 32-bit PowerPC,
|
bits. For example, it might contain ``n32`` for 32-bit PowerPC,
|
||||||
|
@ -42,6 +42,9 @@ Non-comprehensive list of changes in this release
|
|||||||
|
|
||||||
* The LoopInstSimplify pass (-loop-instsimplify) has been removed.
|
* The LoopInstSimplify pass (-loop-instsimplify) has been removed.
|
||||||
|
|
||||||
|
* Symbols starting with ``?`` are no longer mangled by LLVM when using the
|
||||||
|
Windows ``x`` or ``w`` IR mangling schemes.
|
||||||
|
|
||||||
* Note..
|
* Note..
|
||||||
|
|
||||||
.. NOTE
|
.. NOTE
|
||||||
|
@ -263,6 +263,12 @@ public:
|
|||||||
return ManglingMode == MM_WinCOFFX86;
|
return ManglingMode == MM_WinCOFFX86;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns true if symbols with leading question marks should not receive IR
|
||||||
|
/// mangling. True for Windows mangling modes.
|
||||||
|
bool doNotMangleLeadingQuestionMark() const {
|
||||||
|
return ManglingMode == MM_WinCOFF || ManglingMode == MM_WinCOFFX86;
|
||||||
|
}
|
||||||
|
|
||||||
bool hasLinkerPrivateGlobalPrefix() const { return ManglingMode == MM_MachO; }
|
bool hasLinkerPrivateGlobalPrefix() const { return ManglingMode == MM_MachO; }
|
||||||
|
|
||||||
StringRef getLinkerPrivateGlobalPrefix() const {
|
StringRef getLinkerPrivateGlobalPrefix() const {
|
||||||
|
@ -44,6 +44,9 @@ static void getNameWithPrefixImpl(raw_ostream &OS, const Twine &GVName,
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (DL.doNotMangleLeadingQuestionMark() && Name[0] == '?')
|
||||||
|
Prefix = '\0';
|
||||||
|
|
||||||
if (PrefixTy == Private)
|
if (PrefixTy == Private)
|
||||||
OS << DL.getPrivateGlobalPrefix();
|
OS << DL.getPrivateGlobalPrefix();
|
||||||
else if (PrefixTy == LinkerPrivate)
|
else if (PrefixTy == LinkerPrivate)
|
||||||
@ -135,8 +138,13 @@ void Mangler::getNameWithPrefix(raw_ostream &OS, const GlobalValue *GV,
|
|||||||
// Mangle functions with Microsoft calling conventions specially. Only do
|
// Mangle functions with Microsoft calling conventions specially. Only do
|
||||||
// this mangling for x86_64 vectorcall and 32-bit x86.
|
// this mangling for x86_64 vectorcall and 32-bit x86.
|
||||||
const Function *MSFunc = dyn_cast<Function>(GV);
|
const Function *MSFunc = dyn_cast<Function>(GV);
|
||||||
if (Name.startswith("\01"))
|
|
||||||
MSFunc = nullptr; // Don't mangle when \01 is present.
|
// Don't add byte count suffixes when '\01' or '?' are in the first
|
||||||
|
// character.
|
||||||
|
if (Name.startswith("\01") ||
|
||||||
|
(DL.doNotMangleLeadingQuestionMark() && Name.startswith("?")))
|
||||||
|
MSFunc = nullptr;
|
||||||
|
|
||||||
CallingConv::ID CC =
|
CallingConv::ID CC =
|
||||||
MSFunc ? MSFunc->getCallingConv() : (unsigned)CallingConv::C;
|
MSFunc ? MSFunc->getCallingConv() : (unsigned)CallingConv::C;
|
||||||
if (!DL.hasMicrosoftFastStdCallMangling() &&
|
if (!DL.hasMicrosoftFastStdCallMangling() &&
|
||||||
|
60
test/CodeGen/X86/mangle-question-mark.ll
Normal file
60
test/CodeGen/X86/mangle-question-mark.ll
Normal file
@ -0,0 +1,60 @@
|
|||||||
|
; Test that symbols starting with '?' are not affected by IR mangling.
|
||||||
|
|
||||||
|
; RUN: llc -mtriple i686-pc-win32 < %s | FileCheck %s --check-prefix=COFF
|
||||||
|
; RUN: llc -mtriple x86_64-pc-win32 < %s | FileCheck %s --check-prefix=COFF64
|
||||||
|
; RUN: llc -mtriple i686-linux-gnu < %s | FileCheck %s --check-prefix=ELF
|
||||||
|
; RUN: llc -mtriple i686-apple-darwin < %s | FileCheck %s --check-prefix=MACHO
|
||||||
|
|
||||||
|
; Currently all object files allow escaping private symbols, but eventually we
|
||||||
|
; might want to reject that.
|
||||||
|
|
||||||
|
; COFF: calll "?withescape@A@@QBEXXZ"
|
||||||
|
; COFF: calll "?withquestion@A@@QBEXXZ"
|
||||||
|
; COFF: calll "L?privatequestion@A@@QBEXXZ"
|
||||||
|
; COFF: calll "L?privatequestionfast@A@@QBEXXZ"
|
||||||
|
; COFF: calll "?escapedprivate@A@@QBEXXZ"
|
||||||
|
|
||||||
|
; COFF64: callq "?withescape@A@@QBEXXZ"
|
||||||
|
; COFF64: callq "?withquestion@A@@QBEXXZ"
|
||||||
|
; COFF64: callq ".L?privatequestion@A@@QBEXXZ"
|
||||||
|
; COFF64: callq ".L?privatequestionfast@A@@QBEXXZ"
|
||||||
|
; COFF64: callq "?escapedprivate@A@@QBEXXZ"
|
||||||
|
|
||||||
|
; ELF: calll "?withescape@A@@QBEXXZ"
|
||||||
|
; ELF: calll "?withquestion@A@@QBEXXZ"
|
||||||
|
; ELF: calll ".L?privatequestion@A@@QBEXXZ"
|
||||||
|
; ELF: calll ".L?privatequestionfast@A@@QBEXXZ"
|
||||||
|
; ELF: calll "?escapedprivate@A@@QBEXXZ"
|
||||||
|
|
||||||
|
; MACHO: calll "?withescape@A@@QBEXXZ"
|
||||||
|
; MACHO: calll "_?withquestion@A@@QBEXXZ"
|
||||||
|
; MACHO: calll "l_?privatequestion@A@@QBEXXZ"
|
||||||
|
; MACHO: calll "l_?privatequestionfast@A@@QBEXXZ"
|
||||||
|
; MACHO: calll "?escapedprivate@A@@QBEXXZ"
|
||||||
|
|
||||||
|
%struct.A = type {}
|
||||||
|
|
||||||
|
define i32 @main() {
|
||||||
|
entry:
|
||||||
|
tail call void @"\01?withescape@A@@QBEXXZ"(%struct.A* null)
|
||||||
|
tail call void @"?withquestion@A@@QBEXXZ"(%struct.A* null)
|
||||||
|
tail call void @"?privatequestion@A@@QBEXXZ"(%struct.A* null)
|
||||||
|
tail call x86_fastcallcc void @"?privatequestionfast@A@@QBEXXZ"(%struct.A* null)
|
||||||
|
tail call void @"\01?escapedprivate@A@@QBEXXZ"(%struct.A* null)
|
||||||
|
ret i32 0
|
||||||
|
}
|
||||||
|
|
||||||
|
declare void @"\01?withescape@A@@QBEXXZ"(%struct.A*)
|
||||||
|
declare void @"?withquestion@A@@QBEXXZ"(%struct.A*)
|
||||||
|
|
||||||
|
define private void @"?privatequestion@A@@QBEXXZ"(%struct.A*) {
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
define private x86_fastcallcc void @"?privatequestionfast@A@@QBEXXZ"(%struct.A*) {
|
||||||
|
ret void
|
||||||
|
}
|
||||||
|
|
||||||
|
define private void @"\01?escapedprivate@A@@QBEXXZ"(%struct.A*) {
|
||||||
|
ret void
|
||||||
|
}
|
@ -1,17 +0,0 @@
|
|||||||
; The purpose of this test is to see if the MC layer properly handles symbol
|
|
||||||
; names needing quoting on MS/Windows. This code is generated by clang when
|
|
||||||
; using -cxx-abi microsoft.
|
|
||||||
|
|
||||||
; RUN: llc -filetype=asm -mtriple i686-pc-win32 %s -o - | FileCheck %s
|
|
||||||
|
|
||||||
; CHECK: ?sayhi@A@@QBEXXZ
|
|
||||||
|
|
||||||
%struct.A = type {}
|
|
||||||
|
|
||||||
define i32 @main() {
|
|
||||||
entry:
|
|
||||||
tail call void @"\01?sayhi@A@@QBEXXZ"(%struct.A* null)
|
|
||||||
ret i32 0
|
|
||||||
}
|
|
||||||
|
|
||||||
declare void @"\01?sayhi@A@@QBEXXZ"(%struct.A*)
|
|
@ -25,6 +25,7 @@ set(IRSources
|
|||||||
IntrinsicsTest.cpp
|
IntrinsicsTest.cpp
|
||||||
LegacyPassManagerTest.cpp
|
LegacyPassManagerTest.cpp
|
||||||
MDBuilderTest.cpp
|
MDBuilderTest.cpp
|
||||||
|
ManglerTest.cpp
|
||||||
MetadataTest.cpp
|
MetadataTest.cpp
|
||||||
ModuleTest.cpp
|
ModuleTest.cpp
|
||||||
PassManagerTest.cpp
|
PassManagerTest.cpp
|
||||||
|
140
unittests/IR/ManglerTest.cpp
Normal file
140
unittests/IR/ManglerTest.cpp
Normal file
@ -0,0 +1,140 @@
|
|||||||
|
//===- llvm/unittest/IR/ManglerTest.cpp - Mangler unit tests --------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is distributed under the University of Illinois Open Source
|
||||||
|
// License. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
#include "llvm/IR/Mangler.h"
|
||||||
|
#include "llvm/IR/CallingConv.h"
|
||||||
|
#include "llvm/IR/DataLayout.h"
|
||||||
|
#include "llvm/IR/GlobalValue.h"
|
||||||
|
#include "llvm/IR/Module.h"
|
||||||
|
#include "gtest/gtest.h"
|
||||||
|
|
||||||
|
using namespace llvm;
|
||||||
|
|
||||||
|
static std::string mangleStr(StringRef IRName, Mangler &Mang,
|
||||||
|
const DataLayout &DL) {
|
||||||
|
std::string Mangled;
|
||||||
|
raw_string_ostream SS(Mangled);
|
||||||
|
Mang.getNameWithPrefix(SS, IRName, DL);
|
||||||
|
SS.flush();
|
||||||
|
return Mangled;
|
||||||
|
}
|
||||||
|
|
||||||
|
static std::string mangleFunc(StringRef IRName,
|
||||||
|
GlobalValue::LinkageTypes Linkage,
|
||||||
|
llvm::CallingConv::ID CC, Module &Mod,
|
||||||
|
Mangler &Mang) {
|
||||||
|
Type *VoidTy = Type::getVoidTy(Mod.getContext());
|
||||||
|
Type *I32Ty = Type::getInt32Ty(Mod.getContext());
|
||||||
|
FunctionType *FTy =
|
||||||
|
FunctionType::get(VoidTy, {I32Ty, I32Ty, I32Ty}, /*isVarArg=*/false);
|
||||||
|
Function *F = Function::Create(FTy, Linkage, IRName, &Mod);
|
||||||
|
F->setCallingConv(CC);
|
||||||
|
std::string Mangled;
|
||||||
|
raw_string_ostream SS(Mangled);
|
||||||
|
Mang.getNameWithPrefix(SS, F, false);
|
||||||
|
SS.flush();
|
||||||
|
F->eraseFromParent();
|
||||||
|
return Mangled;
|
||||||
|
}
|
||||||
|
|
||||||
|
namespace {
|
||||||
|
|
||||||
|
TEST(ManglerTest, MachO) {
|
||||||
|
LLVMContext Ctx;
|
||||||
|
DataLayout DL("m:o"); // macho
|
||||||
|
Module Mod("test", Ctx);
|
||||||
|
Mod.setDataLayout(DL);
|
||||||
|
Mangler Mang;
|
||||||
|
EXPECT_EQ(mangleStr("foo", Mang, DL), "_foo");
|
||||||
|
EXPECT_EQ(mangleStr("\01foo", Mang, DL), "foo");
|
||||||
|
EXPECT_EQ(mangleStr("?foo", Mang, DL), "_?foo");
|
||||||
|
EXPECT_EQ(mangleFunc("foo", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"_foo");
|
||||||
|
EXPECT_EQ(mangleFunc("?foo", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"_?foo");
|
||||||
|
EXPECT_EQ(mangleFunc("foo", llvm::GlobalValue::PrivateLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"L_foo");
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ManglerTest, WindowsX86) {
|
||||||
|
LLVMContext Ctx;
|
||||||
|
DataLayout DL("m:x-p:32:32"); // 32-bit windows
|
||||||
|
Module Mod("test", Ctx);
|
||||||
|
Mod.setDataLayout(DL);
|
||||||
|
Mangler Mang;
|
||||||
|
EXPECT_EQ(mangleStr("foo", Mang, DL), "_foo");
|
||||||
|
EXPECT_EQ(mangleStr("\01foo", Mang, DL), "foo");
|
||||||
|
EXPECT_EQ(mangleStr("?foo", Mang, DL), "?foo");
|
||||||
|
EXPECT_EQ(mangleFunc("foo", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"_foo");
|
||||||
|
EXPECT_EQ(mangleFunc("?foo", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"?foo");
|
||||||
|
EXPECT_EQ(mangleFunc("foo", llvm::GlobalValue::PrivateLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"L_foo");
|
||||||
|
|
||||||
|
// Test calling conv mangling.
|
||||||
|
EXPECT_EQ(mangleFunc("stdcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_StdCall, Mod, Mang),
|
||||||
|
"_stdcall@12");
|
||||||
|
EXPECT_EQ(mangleFunc("fastcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_FastCall, Mod, Mang),
|
||||||
|
"@fastcall@12");
|
||||||
|
EXPECT_EQ(mangleFunc("vectorcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_VectorCall, Mod, Mang),
|
||||||
|
"vectorcall@@12");
|
||||||
|
|
||||||
|
// Adding a '?' prefix blocks calling convention mangling.
|
||||||
|
EXPECT_EQ(mangleFunc("?fastcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_FastCall, Mod, Mang),
|
||||||
|
"?fastcall");
|
||||||
|
}
|
||||||
|
|
||||||
|
TEST(ManglerTest, WindowsX64) {
|
||||||
|
LLVMContext Ctx;
|
||||||
|
DataLayout DL("m:w-p:64:64"); // windows
|
||||||
|
Module Mod("test", Ctx);
|
||||||
|
Mod.setDataLayout(DL);
|
||||||
|
Mangler Mang;
|
||||||
|
EXPECT_EQ(mangleStr("foo", Mang, DL), "foo");
|
||||||
|
EXPECT_EQ(mangleStr("\01foo", Mang, DL), "foo");
|
||||||
|
EXPECT_EQ(mangleStr("?foo", Mang, DL), "?foo");
|
||||||
|
EXPECT_EQ(mangleFunc("foo", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"foo");
|
||||||
|
EXPECT_EQ(mangleFunc("?foo", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
"?foo");
|
||||||
|
EXPECT_EQ(mangleFunc("foo", llvm::GlobalValue::PrivateLinkage,
|
||||||
|
llvm::CallingConv::C, Mod, Mang),
|
||||||
|
".Lfoo");
|
||||||
|
|
||||||
|
// Test calling conv mangling.
|
||||||
|
EXPECT_EQ(mangleFunc("stdcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_StdCall, Mod, Mang),
|
||||||
|
"stdcall");
|
||||||
|
EXPECT_EQ(mangleFunc("fastcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_FastCall, Mod, Mang),
|
||||||
|
"fastcall");
|
||||||
|
EXPECT_EQ(mangleFunc("vectorcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_VectorCall, Mod, Mang),
|
||||||
|
"vectorcall@@24");
|
||||||
|
|
||||||
|
// Adding a '?' prefix blocks calling convention mangling.
|
||||||
|
EXPECT_EQ(mangleFunc("?vectorcall", llvm::GlobalValue::ExternalLinkage,
|
||||||
|
llvm::CallingConv::X86_VectorCall, Mod, Mang),
|
||||||
|
"?vectorcall");
|
||||||
|
}
|
||||||
|
|
||||||
|
} // end anonymous namespace
|
Loading…
x
Reference in New Issue
Block a user