- Apr 22, 2016
-
-
Eric Fiselier authored
llvm-svn: 267074
-
- Mar 03, 2016
-
-
Marshall Clow authored
llvm-svn: 262610
-
- Feb 25, 2016
-
-
Marshall Clow authored
llvm-svn: 261894
-
- Jan 11, 2016
-
-
Marshall Clow authored
Preemptively disable unsigned integer sanitization in 32 and 64 bit versions of __murmur2_or_cityhash. This lets people use the unsigned integer overflow checker in UBSAN w/o getting hits from libc++'s hash code (where the unsigned integer overflow is legal and deliberate)> Patch by @danielaustin. Reviewed as: http://reviews.llvm.org/D15973 llvm-svn: 257368
-
- Dec 09, 2015
-
-
Evgeniy Stepanov authored
These are the cases when an out-of-class definition of a method is marked _LIBCPP_INLINE_VISIBILITY, but the in-class declaration is not. This will start failing when (or if) we switch to attribute((internal_linkage)). llvm-svn: 255166
-
- Nov 12, 2015
-
-
Marshall Clow authored
llvm-svn: 252905
-
- Nov 07, 2015
-
-
Evgeniy Stepanov authored
This change moves visibility attributes from out-of-class method definitions to in-class declaration. This is needed for a switch to attribute((internal_linkage)) (see http://reviews.llvm.org/D13925) which can only appear on the first declaration. This change does not touch istream/ostream/streambuf. They are handled separately in http://reviews.llvm.org/D14409. llvm-svn: 252385
-
- Oct 25, 2015
-
-
Marshall Clow authored
llvm-svn: 251252
-
Marshall Clow authored
llvm-svn: 251247
-
- Aug 28, 2015
-
-
Eric Fiselier authored
Summary: This patch properly constrains the converting assignment operator in C++03. It also fixes a bug where std::forward was given the wrong type. The following two tests begin passing in C++03: * `unique_ptr.single.asgn/move_convert.pass.cpp` * `unique_ptr.single.asgn/move_convert13.fail.cpp` Reviewers: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D12173 llvm-svn: 246272
-
- Aug 23, 2015
-
-
Eric Fiselier authored
Currently we need an #ifdef branch every time we use pointer traits to rebind a pointer because it is done differently in C++11 and C++03. This patch introduces the __rebind_pointer utility to clean this up. Also add a test that list and it's iterators can be instantiated with incomplete element types. llvm-svn: 245806
-
Eric Fiselier authored
llvm-svn: 245805
-
Eric Fiselier authored
Currently we need an #ifdef branch every time we use pointer traits to rebind a pointer because it is done differently in C++11 and C++03. This patch introduces the __rebind_pointer utility to clean this up. llvm-svn: 245802
-
- Aug 19, 2015
-
-
Eric Fiselier authored
Summary: After putting this question up on cfe-dev I have decided that it would be best to allow the use of `<atomic>` in C++03. Although static initialization is a concern the syntax required to get it is C++11 only. Meaning that C++11 constant static initialization cannot silently break in C++03, it will always cause a syntax error. Furthermore `ATOMIC_VAR_INIT` and `ATOMIC_FLAG_INIT` remain defined in C++03 even though they cannot be used because C++03 usages will cause better error messages. The main change in this patch is to replace `__has_feature(cxx_atomic)`, which only returns true when C++ >= 11, to `__has_extension(c_atomic)` which returns true whenever clang supports the required atomic builtins. This patch adds the following macros: * `_LIBCPP_HAS_C_ATOMIC_IMP` - Defined on clang versions which provide the C `_Atomic` keyword. * `_LIBCPP_HAS_GCC_ATOMIC_IMP` - Defined on GCC > 4.7. We must use the fallback atomic implementation. * `_LIBCPP_HAS_NO_ATOMIC_HEADER` - Defined when it is not safe to include `<atomic>`. `_LIBCPP_HAS_C_ATOMIC_IMP` and `_LIBCPP_HAS_GCC_ATOMIC_IMP` are mutually exclusive, only one should be defined. If neither is defined then `<atomic>` is not implemented and including `<atomic>` will issue an error. Reviewers: chandlerc, jroelofs, mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D11555 llvm-svn: 245463
-
- Aug 18, 2015
-
-
Marshall Clow authored
llvm-svn: 245336
-
Marshall Clow authored
implement more of N4258 - Cleaning up noexcept in the standard library. Specifically add new noexcept stuff to vector and string's move-assignment operations llvm-svn: 245330
-
- Jul 18, 2015
-
-
Eric Fiselier authored
Although CMake adds warning flags, they are ignored in the libc++ headers because the headers '#pragma system header' themselves. This patch disables the system header pragma when building libc++ and fixes the warnings that arose. The warnings fixed were: 1. <memory> - anonymous structs are a GNU extension 2. <functional> - anonymous structs are a GNU extension. 3. <__hash_table> - Embedded preprocessor directives have undefined behavior. 4. <string> - Definition is missing noexcept from declaration. 5. <__std_stream> - Unused variable. llvm-svn: 242623
-
- Jul 16, 2015
-
-
Marshall Clow authored
Make sure that __libcpp_compressed_pair_imp default-constructs its' members, rather than value-initializing them. Fixes PR#24137 llvm-svn: 242377
-
- Jul 13, 2015
-
-
Marshall Clow authored
Implement the first part of N4258: 'Cleaning up noexcept in the Library'. This patch deals with swapping containers, and implements a more strict noexcept specification (a conforming extension) than the standard mandates. llvm-svn: 242056
-
- Jul 07, 2015
-
-
Eric Fiselier authored
Summary: In some places in libc++ we need to use the `__atomic_*` builtins. This patch adds a header that provides access to those builtins in a uniform way from within the dylib source. If the compiler building the dylib does not support these builtins then a warning is issued. Only relaxed loads are needed within the headers. A singe function to do these relaxed loads has been added to `<memory>`. This patch applies the new atomic builtins to `__shared_count` and `call_once`. Reviewers: mclow.lists Subscribers: majnemer, jroelofs, cfe-commits Differential Revision: http://reviews.llvm.org/D10406 llvm-svn: 241532
-
- Jul 01, 2015
-
-
Marshall Clow authored
Noticed that std::allocator<const T> was missing the definition for is_always_equal. Fixed this, and added a test for it. llvm-svn: 241190
-
- Jun 19, 2015
-
-
Marshall Clow authored
llvm-svn: 240163
-
Marshall Clow authored
llvm-svn: 240139
-
Marshall Clow authored
llvm-svn: 240136
-
- Jun 13, 2015
-
-
Eric Fiselier authored
Summary: Currently we only enable the use of __is_final(...) with Clang. GCC also provides __is_final(...) since 4.7 in all standard modes. This patch creates the macro _LIBCPP_HAS_IS_FINAL to note the availability of `__is_final`. Reviewers: danalbert, mclow.lists Reviewed By: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D8795 llvm-svn: 239664
-
- Jun 02, 2015
-
-
Marshall Clow authored
llvm-svn: 238848
-
Marshall Clow authored
llvm-svn: 238828
-
- May 31, 2015
-
-
Marshall Clow authored
llvm-svn: 238674
-
Marshall Clow authored
Don't try to memcpy zero bytes; sometimes the source pointer is NULL, and that's UB. Thanks to Nuno Lopes for the catch. llvm-svn: 238666
-
- May 28, 2015
-
-
Marshall Clow authored
llvm-svn: 238370
-
- May 27, 2015
-
-
Marshall Clow authored
llvm-svn: 238355
-
Marshall Clow authored
llvm-svn: 238354
-
- May 19, 2015
-
-
Marshall Clow authored
llvm-svn: 237699
-
- May 10, 2015
-
-
Marshall Clow authored
llvm-svn: 236953
-
Marshall Clow authored
llvm-svn: 236948
-
- Apr 07, 2015
-
-
Marshall Clow authored
In many places, there was an #ifdef/#else block that selected one of two implmentations of rebind_alloc based on whether or not we had template aliases. Create a helper struct to encapsulate that bit of logic, and replace all the ifdefs with uses of that struct. No functionality change intented. llvm-svn: 234296
-
- Mar 31, 2015
-
-
Eric Fiselier authored
Summary: In certain cases vector can use memcpy to construct a range of elements at the back of the vector. We currently don't do this resulting in terrible code gen in non-optimized mode and a very large slowdown compared to libstdc++. This patch adds a `__construct_forward_range(Allocator, Iter, Iter, _Ptr&)` and `__construct_forward_range(Allocator, Tp*, Tp*, Tp*&)` functions to `allocator_traits` which act similarly to the existing `__construct_forward(...)` functions. This patch also changes vectors `__construct_at_end(Iter, Iter)` to be `__construct_at_end(Iter, Iter, SizeType)` where SizeType is the size of the range. `__construct_at_end(Iter, Iter, SizeType)` now calls `allocator_traits<Tp>::__construct_forward_range(...)`. This patch is based off the design of `__swap_out_circular_buffer(...)` which uses `allocator_traits<Tp>::__construct_forward(...)`. On my machine this code performs 4x better than the current implementation when tested against `std::vector<int>`. Reviewers: howard.hinnant, titus, kcc, mclow.lists Reviewed By: mclow.lists Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D8109 llvm-svn: 233711
-
- Feb 13, 2015
-
-
Saleem Abdulrasool authored
Visual Studio's SAL extension uses a macro named __deallocate. This macro is used pervasively, and gets included through various different ways. This conflicts with the similarly named interfaces in libc++. Introduce a undef header similar to __undef_min_max to handle this. This fixes a number of errors due to the macro replacing the function name. llvm-svn: 229162
-
- Feb 06, 2015
-
-
Eric Fiselier authored
llvm-svn: 228353
-
- Nov 17, 2014
-
-
Marshall Clow authored
Implement LWG2400 - 'shared_ptr's get_deleter() should use addressof()', and add tests. Mark LWG2400 and LWG2404 as complete llvm-svn: 222161
-