- Oct 17, 2011
-
-
Howard Hinnant authored
llvm-svn: 142235
-
- Oct 11, 2011
-
-
-
Howard Hinnant authored
llvm-svn: 141672
-
- Oct 09, 2011
-
-
- Oct 08, 2011
-
-
- Oct 04, 2011
-
-
- Oct 01, 2011
-
-
- Sep 29, 2011
-
-
Howard Hinnant authored
llvm-svn: 140805
-
Howard Hinnant authored
llvm-svn: 140781
-
Howard Hinnant authored
Attempted locale refactoring. _LIBCPP_LOCALE__L_EXTENSIONS now should be defined if one has all of the xxx_l() functions. I've defined this for apple, freebsd and win32. _LIBCPP_HAS_DEFAULTRUNELOCALE should be defined if there is a _DefaultRuneLocale. I've defined this for apple and freebsd. The block of code we're trying to migrate away from is now under #ifdef __linux__. I've tested only on OS X. I hope I haven't broken things too badly elsewhere. Please let me know. llvm-svn: 140734
-
- Sep 28, 2011
-
-
Howard Hinnant authored
llvm-svn: 140728
-
Howard Hinnant authored
Attempt to enable locale simplification. On which platforms can we now #define _LIBCPP_STABLE_APPLE_ABI? llvm-svn: 140724
-
Howard Hinnant authored
Another installment on debug mode. This addresses list. However this should be considered a temporary state. The API of the debug database and how vector and list use it, is unsatisfactory at the moment. It is both inefficient and overly verbose. I wanted to get this functionality checked in though. In the next day or so I'll refactor what is there in an attempt to streamline things. llvm-svn: 140660
-
- Sep 23, 2011
-
-
Howard Hinnant authored
llvm-svn: 140384
-
- Sep 22, 2011
-
-
Howard Hinnant authored
llvm-svn: 140328
-
- Sep 21, 2011
-
-
David Chisnall authored
libc++ now mostly works on FreeBSD with libcxxrt and this patch applied to the base system: http://lists.freebsd.org/pipermail/freebsd-hackers/attachments/20110920/e666632c/xlocale-0001.obj Summary of tests on FreeBSD: **************************************************** Results for /root/libcxx/test: using FreeBSD clang version 3.0 (trunk 135360) 20110717 Target: x86_64-unknown-freebsd9.0 Thread model: posix with -std=c++0x -stdlib=libc++ -I/root/libcxx/include -L/root/libcxx/build/lib ---------------------------------------------------- sections without tests : 1 sections with failures : 48 sections without failures: 1015 + ---- total number of sections : 1064 ---------------------------------------------------- number of tests failed : 145 number of tests passed : 4179 + ---- total number of tests : 4324 **************************************************** (Many due to this clang version not supporting C++ atomics) More fixes to follow... llvm-svn: 140245
-
- Sep 19, 2011
-
-
Howard Hinnant authored
Chris Jefferson noted that vector iterator ownership can be transferred from source to target under move construction and move assignment. This commit makes that happen for debug mode. llvm-svn: 140023
-
Howard Hinnant authored
llvm-svn: 140014
-
- Sep 18, 2011
-
-
David Chisnall authored
llvm-svn: 140005
-
- Sep 16, 2011
-
-
Howard Hinnant authored
Doug Gregor pointed out some problems with debug mode enabled in one TU and not another. This patch helps detect those situations and offers improved error messages to help get debug mode enabled in more TU's when it is absolutely necessary to do so. Thanks Doug. llvm-svn: 139933
-
Howard Hinnant authored
llvm-svn: 139930
-
Howard Hinnant authored
llvm-svn: 139913
-
- Sep 14, 2011
-
-
Howard Hinnant authored
llvm-svn: 139711
-
- Sep 02, 2011
-
-
Howard Hinnant authored
llvm-svn: 139032
-
Howard Hinnant authored
llvm-svn: 138978
-
- Sep 01, 2011
-
-
Howard Hinnant authored
Reimplemented much of <istream> such that single character extractions do not check to see if this is the last character in the stream and thus never set eofbit. This fixes http://llvm.org/bugs/show_bug.cgi?id=10817 . This fix requires a recompiled libc++.dylib to be fully implemented. The recompiled libc++.dylib is ABI compatible with that shipped on Lion. llvm-svn: 138961
-
- Aug 28, 2011
-
-
Howard Hinnant authored
llvm-svn: 138726
-
- Aug 17, 2011
-
-
Howard Hinnant authored
llvm-svn: 137862
-
- Aug 15, 2011
-
-
Howard Hinnant authored
llvm-svn: 137617
-
- Aug 12, 2011
-
-
- Jul 31, 2011
-
-
Howard Hinnant authored
llvm-svn: 136596
-
-
- Jul 30, 2011
-
-
Chandler Carruth authored
This was checked in without review. It is not clear its reasonable to include with libc++ at all, and needs discussion at a highlevel before moving forward. It's also completely lacking tests, and included several bugs in the implementation. llvm-svn: 136577
-
Chandler Carruth authored
Original change: Destruct elements of hash tables when removing individual entries from the hash_table. I think this is the correct solution to PR10507, but I'm not sure since this is a little bit cargo-culted. Howard, please review. llvm-svn: 136576
-
Alexis Hunt authored
implementation of previous(). llvm-svn: 136547
-
Alexis Hunt authored
the hash_table. I think this is the correct solution to PR10507, but I'm not sure since this is a little bit cargo-culted. Howard, please review. llvm-svn: 136546
-
Alexis Hunt authored
more than just a bit broken. This one should compile and run without infinite loops. llvm-svn: 136545
-
Alexis Hunt authored
together to get it working with code, and is neither optimal (erase(Iterator, Iterator) calculates the previous iterator twice, rather than calculating the previous iterator of the first one, then advancing it until the second is found) nor complete (splice() was not implemented). Most of the implementation is borrowed from forward_list via using-declarations. llvm-svn: 136542
-
Alexis Hunt authored
avoids bugs where, when the allocator's size_type was smaller than int, the multiplication or division would cause integral promotions and, with two different integer types as arguments, deduction of the template arguments would fail. llvm-svn: 136540
-
Alexis Hunt authored
are two motivations for this. First, this allows users who are specializing __gnu_ext::hash to continue doing so without changing their code. Second, SGI specifies hash overloads for char* and const char* that perform a hash of the string, not of the pointer. In order to support this, the hashing code for string is factored out. llvm-svn: 136539
-