summaryrefslogtreecommitdiff
path: root/src
AgeCommit message (Collapse)Author
2017-11-30[libc++abi] Add install-cxxabi-stripped targetShoaib Meenai
LLVM is gaining install-*-stripped targets to perform stripped installs, and in order for this to be useful for install-distribution, all potential distribution components should have stripped installation targets. LLVM has a function to create these install targets, but since we can't use LLVM CMake functions in libc++abi, let's do it manually. Differential Revision: https://reviews.llvm.org/D40681 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@319499 91177308-0d34-0410-b5e6-96231b3b80d8
2017-11-28Insert padding before the __cxa_exception header to ensure the thrownAkira Hatanaka
object is sufficiently aligned. r303175 annotated field unwindHeader of __cxa_exception with attribute 'aligned' to ensure the thrown object following the __cxa_exception header was sufficiently aligned. This caused changes in the field offsets of __cxa_exception relative to the start of the thrown object, which was an ABI breaking change for some clients. Instead of annotating field unwindHeader, this commit inserts extra space before the header. This ensures the thrown object following the header is sufficiently aligned without changing the field offsets, thus avoiding any ABI breakages. rdar://problem/25364625 rdar://problem/35556163 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@319123 91177308-0d34-0410-b5e6-96231b3b80d8
2017-11-22[demangler] Support for abi_tag attributeErik Pilkington
Differential revision: https://reviews.llvm.org/D40279 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@318874 91177308-0d34-0410-b5e6-96231b3b80d8
2017-11-21[demangler] Document some features that the demangler doesn't yet support, NFCErik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@318765 91177308-0d34-0410-b5e6-96231b3b80d8
2017-11-17[libcxxabi][CMake] Provide option to disable installing of the libraryPetr Hosek
This is useful in cases where we only build static library and libc++abi.a is combined with libc++.a into a single archive in which case we don't want to have libc++abi.a installed separately. The same option is already provided by libcxx CMake build. Differential Revision: https://reviews.llvm.org/D40194 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@318568 91177308-0d34-0410-b5e6-96231b3b80d8
2017-11-17[CMake][libcxxabi] Support merging objects when statically linking unwinderPetr Hosek
When using LLVM unwinder and static unwinder option is set, merge libunwind and libc++abi objects into a single archive. libc++ already supports merging libc++abi.a and libc++.a into a single archive; with this change, it is possible to also include libunwind.a in the same archive which is useful when doing static link and using libc++ as a default C++ library and compiler-rt as a default runtime library. Differential Revision: https://reviews.llvm.org/D39949 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@318563 91177308-0d34-0410-b5e6-96231b3b80d8
2017-11-13Remove excess whitespace from syslog message; NFCStephan Bergmann
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@318043 91177308-0d34-0410-b5e6-96231b3b80d8
2017-09-14Fix ASAN build with older compiler-rt versions.Eric Fiselier
compiler-rt recently added the __asan_handle_no_return() function that libc++abi needs to use, however older versions of compiler-rt don't declare this interface publicly and that breaks the libc++abi build. This patch attempts to fix the issues by declaring the asan function explicitly, so we don't depend on compiler-rt to provide the declaration. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@313308 91177308-0d34-0410-b5e6-96231b3b80d8
2017-09-14[libc++abi] Fix ASAN build with older compiler-rt versions.Eric Fiselier
Summary: compiler-rt recently added the `__asan_handle_no_return()` function that libc++abi needs to use, however older versions of compiler-rt don't provide this interface and that breaks the libc++abi build. This patch attempts to fix the issues by using a macro to detect if `asan_interface.h` is new enough to provide the function. See D37871 Reviewers: phosek, vitalybuka Reviewed By: phosek, vitalybuka Subscribers: dberris, cfe-commits Differential Revision: https://reviews.llvm.org/D37872 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@313304 91177308-0d34-0410-b5e6-96231b3b80d8
2017-09-13Reland "When built with ASan, __cxa_throw calls __asan_handle_no_return"Petr Hosek
The ASan runtime on many systems intercepts cxa_throw just so it can call asan_handle_no_return first. Some newer systems such as Fuchsia don't use interceptors on standard library functions at all, but instead use sanitizer-instrumented versions of the standard libraries. When libc++abi is built with ASan, cxa_throw can just call asan_handle_no_return itself so no interceptor is required. Patch by Roland McGrath Differential Revision: https://reviews.llvm.org/D37229 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@313215 91177308-0d34-0410-b5e6-96231b3b80d8
2017-09-06Revert "[libcxxabi] When built with ASan, __cxa_throw calls ↵Petr Hosek
__asan_handle_no_return" This reverts commit r312606 because it's causing an error on libcxx-libcxxabi-x86_64-linux-ubuntu-asan bot. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@312609 91177308-0d34-0410-b5e6-96231b3b80d8
2017-09-06[libcxxabi] When built with ASan, __cxa_throw calls __asan_handle_no_returnPetr Hosek
The ASan runtime on many systems intercepts cxa_throw just so it can call asan_handle_no_return first. Some newer systems such as Fuchsia don't use interceptors on standard library functions at all, but instead use sanitizer-instrumented versions of the standard libraries. When libc++abi is built with ASan, cxa_throw can just call asan_handle_no_return itself so no interceptor is required. This is a re-land of r311045, which has become safe after r311869 changed compiler-rt to declare __asan_handle_no_return. Patch by Roland McGrath Differential Revision: https://reviews.llvm.org/D37229 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@312606 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-16Revert "[libcxxabi] When built with ASan, __cxa_throw calls ↵Petr Hosek
__asan_handle_no_return" This reverts commit r311045 because it's causing an error on libcxx-libcxxabi-x86_64-linux-ubuntu-asan bot. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@311047 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-16[libcxxabi] When built with ASan, __cxa_throw calls __asan_handle_no_returnPetr Hosek
The ASan runtime on many systems intercepts cxa_throw just so it can call asan_handle_no_return first. Some newer systems such as Fuchsia don't use interceptors on standard library functions at all, but instead use sanitizer-instrumented versions of the standard libraries. When libc++abi is built with ASan, cxa_throw can just call asan_handle_no_return itself so no interceptor is required. Patch by Roland McGrath Differential Revision: https://reviews.llvm.org/D36599 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@311045 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-10[demangler] Fix some more -Wshadow warnings I missed in r310535Erik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@310546 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-09[demangler] Fix a bunch of -Wshadow warningsErik Pilkington
These were causing failures in -Werror builds. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@310535 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-09[demangler] Improve representation of substitutions/templatesErik Pilkington
Differential revision: https://reviews.llvm.org/D36427 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@310525 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-08[demangler] Rename some variables, NFCErik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@310415 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-08[libc++abi] Use proper calling convention for TLS destructorShoaib Meenai
This is needed when using Windows threading. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@310329 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-06[demangler] Fix another oss-fuzz bugErik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@310226 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-01[demangler] Fix another bug found by oss-fuzz in r309340Erik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@309650 91177308-0d34-0410-b5e6-96231b3b80d8
2017-08-01[demangler] Use _LIBCPP_UNREACHABLE()Erik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@309649 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-30[demangler] Fix some bugs in r309340 found by oss-fuzzErik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@309520 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-28[demangler] Fix some overzealous -Wreturn-type errorsErik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@309349 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-28[demangler] Attempt to fix linux bots, include <cstdio>Erik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@309342 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-28[demangler] Use an AST to represent demangled namesErik Pilkington
The demangler now demangles by producing an AST, then traverses that AST to produce a demangled name. This is done for performance reasons, now the demangler doesn't manuiplate std::strings, which hurt performance and caused string operations to be inlined into the parser, leading to large code size and stack usage. Differential revision: https://reviews.llvm.org/D35159 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@309340 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-13[demangler] Respect try_to_parse_template_argsErik Pilkington
Fixes an exponential parse found by oss-fuzz. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@307941 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-12Remove dependancy on __refstring header; use local copy instead.Eric Fiselier
This patch removes the dependancy on libc++'s __refstring header, which was only a header in the first place so that libc++abi could build library code using it, and not because libc++ needed it in the headers. This patch allows libc++ to stop shipping <__refstring> publicaly at the cost of duplicating it across projects. Ideally libc++abi would always require the libc++ sources when building, but that's a separate discussion I plan to start on the mailing lists shortly. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@307748 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-11[libcxxabi][CMake] Add install path variable to allow overriding the destinationPetr Hosek
This is going to be used by the runtime build in the multi-target setup to allow using different install prefix for each target. Differential Revision: https://reviews.llvm.org/D33761 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@307611 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-08[Demangler] NFC: Don't make the parse_* functions templatesErik Pilkington
Differential revision: https://reviews.llvm.org/D35158 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@307482 91177308-0d34-0410-b5e6-96231b3b80d8
2017-07-08[Demangler] NFC: Move Db struct to beginning of fileErik Pilkington
Differential revision: https://reviews.llvm.org/D35158 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@307481 91177308-0d34-0410-b5e6-96231b3b80d8
2017-06-15Use _LIBCPP_FALLTHROUGH() to avoid warnings about [[gnu::fallthrough]] being ↵Eric Fiselier
unsupported git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@305500 91177308-0d34-0410-b5e6-96231b3b80d8
2017-06-11build: use cmake to pass -std=c++11Saleem Abdulrasool
Rather than manually checking for support for the spelling of the C++ standard, indicate to CMake that we require that the compiler support C++11 and that we compile without the GNU extensions. This simplifies the flags handling in libc++abi itself by relying on CMake to translate the flag and add it as appropriate. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@305175 91177308-0d34-0410-b5e6-96231b3b80d8
2017-06-11build: use POSITION_INDEPENDENT_CODE CMake propertySaleem Abdulrasool
Use the POSITION_INDEPENDENT_CODE target property to indicate that we should be building with -fPIC or the equivalent flag based on the toolchain that we are using. This makes the check more portable and simplifies the flags management. Because we don't want this setting to propagate in the case of an in-tree build, set the property on the targets we construct explicitly rather than setting CMAKE_POSITION_INDEPENDENT_CODE to ON globally. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@305174 91177308-0d34-0410-b5e6-96231b3b80d8
2017-06-11cxa_demangle: fix -Wimplicit-fallthrough for GCC:7Saleem Abdulrasool
Use the C++11 (formalised in C++17) tag to indicate a fallthrough in the switch case. Silences a -Wimplicit-fallthrough warning with gcc:7 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@305173 91177308-0d34-0410-b5e6-96231b3b80d8
2017-06-11private_typeinfo: add missing field initializersSaleem Abdulrasool
Cleanup the -Wmissing-field-initializers warnings from gcc:7 builds. NFC. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@305172 91177308-0d34-0410-b5e6-96231b3b80d8
2017-06-01[libcxxabi] Rework CMakeLists.txt into modulesMartell Malone
Refactor cmake to remove dependence on LLVM's cmake modules. This improves handling of cmake checks when cross compiling and brings libcxxabi in line with libcxx and other project modules. Differential revision: https://reviews.llvm.org/D33635 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@304374 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-28[demangler] Fix a exponential string copying bugErik Pilkington
The problem was that if base_name() was called from a context without an actual base name, it could gulp up the entire string, which can result in recursive duplications. The fix is to be more strict as to what qualifies as a base name. Differential revision: https://reviews.llvm.org/D33637 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@304113 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-24[Demangler] Remove a failing assert introduced in r303718Erik Pilkington
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@303806 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-24__cxa_demangle: Fix constructor cv qualifier handlingTamas Berghammer
Summary: Previously if we parsed a constructor then we set parsed_ctor_dtor_cv to true and never reseted it. This causes issue when a template argument references a constructor (e.g. type of lambda defined inside a constructor) as we will have the parsed_ctor_dtor_cv flag set what will cause issues when parsing later arguments. Reviewers: EricWF, compnerd Subscribers: cfe-commits Differential Revision: https://reviews.llvm.org/D33385 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@303737 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-24[demangler] Fix a crash in the demangler during parsing of a lamdbaErik Pilkington
The problem is that multiple types could have been parsed from parse_type(), which the lamdba parameter parsing didn't handle. Differential revision: https://reviews.llvm.org/D33368 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@303718 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-16[libcxxabi] Align unwindHeader on a double-word boundary.Akira Hatanaka
r276215 made a change to annotate _Unwind_Exception with attribute "aligned" so that an exception object following field __cxa_exception is sufficiently aligned. This fix hasn't been incorporated to unwind.h on Darwin since it is an ABI breaking change. Instead of annotating struct _Unwind_Exception with the attribute, this commit annotates field unwindHeader of __cxa_exception. This ensures the exception object is sufficiently aligned without breaking the ABI. This recommits r302978 and r302981, which were reverted in r303016 because a libcxx test was failing on an AArch64 bot. I also modified the libcxxabi test case to check the alignment of the pointer returned by __cxa_allocate_exception rather than compiling the test with -O1 and checking whether it segfaults. rdar://problem/25364625 Differential Revision: https://reviews.llvm.org/D33030 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@303175 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-14Revert r302978 and r302981.Akira Hatanaka
Revert the two commits to understand why the following aarch64 bot is failing. http://lab.llvm.org:8011/builders/libcxx-libcxxabi-libunwind-aarch64-linux git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@303016 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-13[libcxxabi] Do not align field unwindHeader when building for ARM EHABI.Akira Hatanaka
For ARM EHABI, _Unwind_Exception is an alias of _Unwind_Control_Block, which is not aligned, so we shouldn't align unwindHeader either. rdar://problem/25364625 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302981 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-13[libcxxabi] Align unwindHeader on a double-word boundary.Akira Hatanaka
r276215 made a change to annotate _Unwind_Exception with attribute "aligned" so that an exception object following field __cxa_exception is sufficiently aligned. This fix hasn't been incorporated to unwind.h on Darwin since it is an ABI breaking change. Instead of annotating struct _Unwind_Exception with the attribute, this commit annotates field unwindHeader of __cxa_exception. This ensures the exception object is sufficiently aligned without breaking the ABI. This recommits r302763 with fixes to RUN lines in the test case. rdar://problem/25364625 Differential Revision: https://reviews.llvm.org/D33030 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302978 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-11Revert "[libcxxabi] Align unwindHeader on a double-word boundary."Akira Hatanaka
This reverts commit r302763. The commit caused bot failures. git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302764 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-11[libcxxabi] Align unwindHeader on a double-word boundary.Akira Hatanaka
r276215 made a change to annotate _Unwind_Exception with attribute "aligned" so that an exception object following field __cxa_exception is sufficiently aligned. This fix hasn't been incorporated to unwind.h on Darwin since it is an ABI breaking change. Instead of annotating struct _Unwind_Exception with the attribute, this commit annotates field unwindHeader of __cxa_exception. This ensures the exception object is sufficiently aligned without breaking the ABI. rdar://problem/25364625 Differential Revision: https://reviews.llvm.org/D33030 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302763 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-11Revert "Rename c++abi.a on Windows to libc++abi to avoid name conflicts"Eric Fiselier
This reverts commit r302759 git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302762 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-11Fix Libc++abi linking under MinGW64Eric Fiselier
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302760 91177308-0d34-0410-b5e6-96231b3b80d8
2017-05-11Rename c++abi.a on Windows to libc++abi to avoid name conflictsEric Fiselier
git-svn-id: https://llvm.org/svn/llvm-project/libcxxabi/trunk@302759 91177308-0d34-0410-b5e6-96231b3b80d8