MS ABI: Implement thread_local for global variables
Summary: This add support for the C++11 feature, thread_local global variables. The ABI Clang implements is an improvement of the MSVC ABI. Sadly, further improvements could be made but not without sacrificing ABI compatibility. The feature is implemented as follows: - All thread_local initialization routines are pointed to from the .CRT$XDU section. - All non-weak thread_local variables have their initialization routines call from a single function instead of getting their own .CRT$XDU section entry. This is done to open up optimization opportunities to the compiler. - All weak thread_local variables have their own .CRT$XDU section entry. This entry is in a COMDAT with the global variable it is initializing; this ensures that we will initialize the global exactly once. - Destructors are registered in the initialization function using __tlregdtor. Differential Revision: http://reviews.llvm.org/D5597 git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@219074 91177308-0d34-0410-b5e6-96231b3b80d8
Showing
- lib/CodeGen/CGCXXABI.cpp 0 additions, 23 deletionslib/CodeGen/CGCXXABI.cpp
- lib/CodeGen/CGCXXABI.h 20 additions, 10 deletionslib/CodeGen/CGCXXABI.h
- lib/CodeGen/CGDeclCXX.cpp 31 additions, 54 deletionslib/CodeGen/CGDeclCXX.cpp
- lib/CodeGen/CGExpr.cpp 2 additions, 1 deletionlib/CodeGen/CGExpr.cpp
- lib/CodeGen/CodeGenFunction.h 4 additions, 1 deletionlib/CodeGen/CodeGenFunction.h
- lib/CodeGen/CodeGenModule.h 7 additions, 2 deletionslib/CodeGen/CodeGenModule.h
- lib/CodeGen/ItaniumCXXABI.cpp 29 additions, 7 deletionslib/CodeGen/ItaniumCXXABI.cpp
- lib/CodeGen/MicrosoftCXXABI.cpp 101 additions, 0 deletionslib/CodeGen/MicrosoftCXXABI.cpp
- test/CodeGenCXX/ms-thread_local.cpp 28 additions, 0 deletionstest/CodeGenCXX/ms-thread_local.cpp
Loading
Please register or sign in to comment