- May 18, 2016
-
-
Marshall Clow authored
When you assign a shared_ptr, the deleter gets called and assigned. In this routine, the assignment happens inside a critical section, which could (potentially) lead to a deadlock, if the deleter did something wonky. Now we swap the old value with an (empty) temporary shared_ptr, and then let the temporary delete the old value when it goes out of scope (after the lock has been released). This should fix PR#27724. Thanks to Hans Boehm for the bug report and the suggested fix. llvm-svn: 269965
-
- May 17, 2016
-
-
Marshall Clow authored
llvm-svn: 269789
-
Marshall Clow authored
llvm-svn: 269772
-
- May 16, 2016
-
-
Marshall Clow authored
llvm-svn: 269663
-
- May 07, 2016
-
-
Eric Fiselier authored
llvm-svn: 268860
-
Eric Fiselier authored
llvm-svn: 268842
-
Eric Fiselier authored
llvm-svn: 268841
-
Eric Fiselier authored
llvm-svn: 268838
-
Eric Fiselier authored
Reviewers: mclow.lists, EricWF Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D20007 llvm-svn: 268829
-
- May 06, 2016
-
-
Asiri Rathnayake authored
This patch extracts out all the pthread dependencies of libcxx into the new header __threading_support. The motivation is to make it easy to re-target libcxx into platforms that do not support pthread. Original patch from Fulvio Esposito (fulvio.esposito@outlook.com) - D11781 Applied with tweaks - D19412 Change-Id: I301111f0075de93dd8129416e06babc195aa936b llvm-svn: 268734
-
- May 04, 2016
-
-
Marshall Clow authored
Fixed some spelling errors in assert messages. No functional change. Thanks to giffunip@yahoo.com for the report. llvm-svn: 268510
-
- May 03, 2016
-
-
Chris Bieneman authored
Based on post commit feedback from Eric Fiselier. llvm-svn: 268401
-
Eric Fiselier authored
This patch fixes a bunch of bugs in the fallback implementation of is_convertible, which is used by GCC. Removing the "__is_convertible" specializations for array/function types we fallback on the SFINAE test, which is more correct. See https://llvm.org/bugs/show_bug.cgi?id=27538 llvm-svn: 268359
-
Eric Fiselier authored
Summary: Replace non-Standard "atomic_flag f(false);" with Standard "atomic_flag f;" in clear tests. Although the value of 'f' is unspecified it shouldn't matter because these tests always call `f.test_and_set()` without checking the result, so the initial state shouldn't matter. The test init03.pass.cpp is explicitly testing this non-Standard extension; It has been moved into the `test/libcxx` directory. Reviewers: mclow.lists, STL_MSFT Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D19758 llvm-svn: 268355
-
- Apr 30, 2016
-
-
Chris Bieneman authored
This change doesn't impact the behavior of the install-libcxx target which installs whichever libcxx components you build, it just adds a separate target to just install the headers. llvm-svn: 268124
-
- Apr 29, 2016
-
-
Eric Fiselier authored
Fix PR21428 for long. Buffer was one byte too small in octal formatting case. Rename previously added test llvm-svn: 268009
-
- Apr 22, 2016
-
-
Evgeniy Stepanov authored
http://reviews.llvm.org/D15404 llvm-svn: 267093
-
Eric Fiselier authored
llvm-svn: 267091
-
Eric Fiselier authored
llvm-svn: 267079
-
Eric Fiselier authored
llvm-svn: 267076
-
Eric Fiselier authored
llvm-svn: 267074
-
- Apr 21, 2016
-
-
Weiming Zhao authored
Summary: when setting LIBCXX_ENABLE_EXCEPTIONS=false, _LIBCPP_NO_EXCEPTIONS wil be defined in both commandline and _config Reviewers: bcraig, EricWF Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D19344 llvm-svn: 266956
-
- Apr 20, 2016
-
-
Eric Fiselier authored
Summary: Hi, When creating a new thread libc++ performs at least 2 allocations. The first allocates a tuple of args and the functor that will be passed to the new thread. The second allocation is for the thread local storage needed internally by libc++. Currently the second allocation happens in the child thread, meaning that if it throws the program will terminate with an uncaught bad alloc. The solution to this is to allocate ALL memory in the parent thread and then pass it to the child. See https://llvm.org/bugs/show_bug.cgi?id=15638 Reviewers: mclow.lists, danalbert, jroelofs, EricWF Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D13748 llvm-svn: 266851
-
Eric Fiselier authored
The primary purpose of this patch is to add the 'is_callable' traits. Since 'is_nothrow_callable' required making 'INVOKE' conditionally noexcept I also took this oppertunity to implement a constexpr version of INVOKE. This fixes 'std::experimental::apply' which required constexpr 'INVOKE support'. This patch will be followed up with some cleanup. Primarly removing most of "__member_function_traits" since it's no longer used by INVOKE (in C++11 at least). llvm-svn: 266836
-
- Apr 19, 2016
-
-
Ben Craig authored
The C++11 and C++14 standards both say in the header <utility> synopsis that <utility> shall include <initializer_list>. llvm-svn: 266808
-
Eric Fiselier authored
llvm-svn: 266703
-
- Apr 18, 2016
-
-
Eric Fiselier authored
Mark LWG issue 2469 as done. Also simplify try_emplace and insert_or_assign implementations in unordered_map llvm-svn: 266591
-
Eric Fiselier authored
llvm-svn: 266590
-
Eric Fiselier authored
llvm-svn: 266587
-
Eric Fiselier authored
llvm-svn: 266585
-
- Apr 16, 2016
-
-
Eric Fiselier authored
In cases where emplace is called with two arguments and the first one matches the key_type we can Key to check for duplicates before allocating. This patch expands on work done by dexonsmith@apple.com. llvm-svn: 266498
-
Eric Fiselier authored
Summary: This patch applies Duncan's work on __hash_table to __tree. Reviewers: mclow.lists, dexonsmith Subscribers: dexonsmith, cfe-commits Differential Revision: http://reviews.llvm.org/D18637 llvm-svn: 266491
-
- Apr 15, 2016
-
-
Eric Fiselier authored
There are two main fixes in this patch. First the constructor SFINAE was changed so that it's evaluated in two stages where the first stage evaluates the "safe" SFINAE conditions and the second evaluates the "dangerous" ones. The key is that the second stage is lazily evaluated only if the first stage passes. This helps fix PR23256 (https://llvm.org/bugs/show_bug.cgi?id=23256). The second fix is for PR22806 and LWG issue 2549. This fix applies the suggested resolution to the LWG issue in order to prevent the construction of dangling references. The SFINAE for this check is contained within the _PreferTupleLikeConstructor alias template. The tuple-like constructors are disabled whenever that trait returns false. (https://llvm.org/bugs/show_bug.cgi?id=22806) (http://cplusplus.github.io/LWG/lwg-active.html#2549) llvm-svn: 266461
-
Eric Fiselier authored
Summary: A default uses-allocator constructor has been added since that overload was previously provided by the extended constructor. Since Clang does implicit conversion checking after substitution this constructor has to deduce the allocator_arg_t parameter so that it can prevent the evaluation of "is_default_constructible" if the first argument doesn't match. See http://www.open-std.org/jtc1/sc22/wg21/docs/cwg_defects.html#1391 for more information. This patch fixes PR24779 (https://llvm.org/bugs/show_bug.cgi?id=24779) Subscribers: cfe-commits Differential Revision: http://reviews.llvm.org/D19006 llvm-svn: 266409
-
- Apr 13, 2016
-
-
Marshall Clow authored
llvm-svn: 266209
-
- Apr 11, 2016
-
-
Marshall Clow authored
Implement LWG#680, which was missed lo these many moons ago, and was reported as bug #27259. As a drive-by fix, replace the hand-rolled equivalent to addressof in __wrap_iter with the real thing. llvm-svn: 265914
-
- Apr 07, 2016
-
-
Marshall Clow authored
Recommit r263036 with additional inlining, so that it will continue to work with existing system dylibs. Implements LWG#2583 llvm-svn: 265706
-
Marshall Clow authored
llvm-svn: 265672
-
- Apr 05, 2016
-
-
Marshall Clow authored
llvm-svn: 265363
-
Marshall Clow authored
Put back the undefs that Richard removed. Boost won't build w/o these; specifically the file 'bytes_methods.h' in Apple's python framework defines these. llvm-svn: 265358
-