aboutsummaryrefslogtreecommitdiff
path: root/contrib/libstdc++/include
Commit message (Collapse)AuthorAgeFilesLines
* Remove old contrib/libstdc++, unused since r358454Ed Maste2020-03-02570-148917/+0
| | | | | | | Sponsored by: The FreeBSD Foundation Notes: svn path=/head/; revision=358544
* libstdc++: remove getsEd Maste2019-09-011-2/+0
| | | | | | | Removed from libc in r351659 Notes: svn path=/head/; revision=351660
* Merge r133175 from upstream:Marius Strobl2014-04-291-1/+1
| | | | | | | | | | | | | | | | | 2008-03-13 Dennis Czeremin <dennis.czeremin@smiths-heimann.com> PR libstdc++/35566 * include/bits/stl_multimap.h (multimap<>::multimap(_InputIterator, _InputIterator)): Forward to _M_insert_equal, not _M_insert_unique. This patch was GPL2 at the time and fixes a regression introduced with the merge of GCC r129013 in FreeBSD r236829. MFC after: 3 days Sponsored by: Bally Wulff Games & Entertainment GmbH Notes: svn path=/head/; revision=265090
* Revert r263694, and apply a better fix to squelch unnecessary warningsDimitry Andric2014-03-261-0/+11
| | | | | | | | | | | | | from clang about possible keywords being treated as identifiers for the remainder of the translation unit (a.k.a. -Wkeyword-compat), when using libstdc++ in combination with -Wsystem-headers. This will not only fix devd, but any C++ program using libstdc++. MFC after: 3 days X-MFC-With: r263694 Notes: svn path=/head/; revision=263774
* gcc: Bring updates from Google's enhanced gcc-4.2.1.Pedro F. Giffuni2013-11-231-1/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Google released and enhanced version of gcc-4.2.1 plus their local patches for Android[1]. The patches are owned by Google and the license hasn't been changed from the original GPLv2. We are only bringing a subset of the available patches that may be helpful in FreeBSD. Changes specific to android are not included. From the README.google file[1]. Patches applied to google_vendor_src_branch/gcc/gcc-4.2.1: gcc/Makefile.in gcc/c-common.c gcc/c-common.h gcc/c-opts.c gcc/c-typeck.c gcc/cp/typeck.c gcc/doc/invoke.texi gcc/flags.h gcc/opts.c gcc/tree-flow.h gcc/tree-ssa-alias-warnings.c gcc/tree-ssa-alias.c Backport of -Wstrict-aliasing from mainline. Silvius Rus <rus@google.com> gcc/coverage.c: Patch coverage_checksum_string for PR 25351. Seongbae Park <spark@google.com> Not yet submitted to FSF. gcc/c-opts.c gcc/c-ppoutput.c gcc/c.opt gcc/doc/cppopts.texi libcpp/Makefile.in libcpp/directives-only.c libcpp/directives.c libcpp/files.c libcpp/include/cpplib.h libcpp/init.c libcpp/internal.h libcpp/macro.c Support for -fdirectives-only. Ollie Wild <aaw@google.com>. Submitted to FSF but not yet approved. libstdc++-v3/include/ext/hashtable.h http://b/742065 http://b/629994 Reduce min size of hashtable for hash_map, hash_set from 53 to 5 libstdc++-v3/include/ext/hashtable.h http://b/629994 Do not iterate over buckets if hashtable is empty. gcc/common.opt gcc/doc/invoke.texi gcc/flags.h gcc/gimplify.c gcc/opts.c Add Saito's patch for -finstrument-functions-exclude-* options. gcc/common.opt gcc/doc/invoke.texi gcc/final.c gcc/flags.h gcc/opts.c gcc/testsuite/gcc.dg/Wframe-larger-than.c Add a new flag -Wframe-larger-than- which enables a new warning when a frame size of a function is larger than specified. This patch hasn't been integrated into gcc mainline yet. gcc/tree-vrp.c Add a hack to avoid using ivopts information for pointers starting at constant values. Reference: [1] https://android.googlesource.com/toolchain/gcc/+/master/gcc-4.2.1/ Obtained from: Google Inc. MFC after: 3 weeks Notes: svn path=/head/; revision=258501
* libstdc++: merge non-abi changes from Apple's developer toolsPedro F. Giffuni2013-11-217-18/+33
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Take some changes from Apple's Developer Tools 4.0 [1]: block.patch emergency-buffer-reduction.patch test_cleanup.patch vector_copy_no_alloc.patch problem/6473222 copy-constructing a std::vector from an empty std::vector calls malloc 2008-10-27 Howard Hinnant stl_tree_system_header.patch Added #pragma GCC system_header to stl_tree.h. copy_doc.patch Corrected documentation concerning copy in stl_algobase.h. string_compare.patch Fixed basic_string.h, basic_string.tcc, incorrect 64bit to 32bit narrowing. Reference: [1] http://opensource.apple.com/source/libstdcxx/libstdcxx-39/patches-4.2.1/ Obtained from: Apple MFC after: 1 month Notes: svn path=/head/; revision=258429
* Add isnan() and isinf() to the global namespace in libstdc++'s <cmath>.David Chisnall2013-07-231-0/+2
| | | | | | | | | | | | | The standard (n3242, section 17.6.1.1, paragraph 4) says that, because these are declared as macros in the C specification (even though they are implemented as functions in the C++ library) they should be in the global namespace. A surprising number of configure checks rely on this. It was broken by recent cleanups to math.h. Notes: svn path=/head/; revision=253563
* Fix the __glibcxx_min and __glibcxx_max macros for a signed wchar_t.Andrew Turner2012-12-251-2/+3
| | | | | | | | | * The __glibcxx_max macro came from GCC svn r138078, the last GPLv2 revision of this file. * I wrote the updated __glibcxx_min macro. Notes: svn path=/head/; revision=244673
* Fix a number of other clang warnings in libstdc++, which could appearDimitry Andric2012-10-232-5/+5
| | | | | | | | | | | when building other C++ software with it. Also fix one actual bug in libsupc++, which was exposed by such a warning. This latter fix is the only functional change. MFC after: 1 week Notes: svn path=/head/; revision=241959
* Fix several clang warnings in libstdc++, which were exposed by theDimitry Andric2012-10-235-33/+42
| | | | | | | | | | recent atf import. These changes are purely cosmetic, no functional change. MFC after: 1 week Notes: svn path=/head/; revision=241957
* Bring a couple of libstdc++ patches from Apple's llvm-gcc project.Pedro F. Giffuni2012-06-1010-42/+111
| | | | | | | | | | | | | | | | | | Modified Fri Jul 10 07:44:34 2009 CDT by rafael backport part of http://gcc.gnu.org/ml/gcc-cvs/2007-10/msg00118.html The patch is for libstdc++ and it was GPL2 at the time. Modified Tue Apr 29 01:20:19 2008 CDT by asl Backport from mainline (pre-GPLv3). Fix for sizeof(const void*) > sizeof(unsigned long). Approved by: jhb (mentor) MFC after: 2 weeks Notes: svn path=/head/; revision=236829
* Add explicit braces to avoid dangling else in stl_tree.h. This silencesDimitry Andric2012-03-191-4/+6
| | | | | | | | | | | | | | | the following warning produced by clang trunk: In file included from /usr/src/sbin/devd/devd.cc:91: In file included from /usr/obj/usr/src/tmp/usr/include/c++/4.2/map:64: /usr/obj/usr/src/tmp/usr/include/c++/4.2/bits/stl_tree.h:987:2: error: add explicit braces to avoid dangling else [-Werror,-Wdangling-else] else ^ MFC after: 3 days Notes: svn path=/head/; revision=233193
* Update libstdc++ with small updates from the latest rev. (135556)Pedro F. Giffuni2011-12-2110-38/+55
| | | | | | | | | | | | | | | | | from the gcc 4.2 branch. The libraries in the gcc-4_2-branch remained under the LGPLv2. The changes can be reproduced with the following command: svn diff svn://gcc.gnu.org/svn/gcc/branches/gcc-4_2-branch/libstdc++-v3 -r 127959:135556 Reviewed by: mm Approved by: jhb (mentor) MFC after: 2 weeks Notes: svn path=/head/; revision=228780
* Make it possible to use the debug versions of std::map and std::multimapDimitry Andric2011-12-072-4/+0
| | | | | | | | | | | | | | | | | | | | with clang, by removing two unneeded using declarations. Otherwise, you would get errors similar to: /usr/include/c++/4.2/debug/map.h:77:20: error: dependent using declaration resolved to type without 'typename' using _Base::value_compare; ^ N.B.: Take care when you actually use the debug versions of any libstdc++ header. They are more likely to contain problems, because they are exercised far less often, and since the standard library complexity guarantees don't always apply anymore, compile times can drastically increase. MFC after: 2 weeks Notes: svn path=/head/; revision=228328
* Upgrade of base gcc and libstdc++ to the last GPLv2-licensed revisionMartin Matuska2011-03-292-2/+6
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | (rev. 127959 of gcc-4_2-branch). Resolved GCC bugs: c++: 17763, 29365, 30535, 30917, 31337, 31941, 32108, 32112, 32346, 32898, 32992 debug: 32610, 32914 libstdc++: 33084, 33128 middle-end: 32563 rtl-optimization: 33148 tree-optimization: 25413, 32723 target: 32218 Tested by: pointyhat (miwi) Obtained from: gcc (gcc-4_2-branch up to rev. 127959) PR: gnu/153298, gnu/153959, gnu/154385 MFC after: 1 month Notes: svn path=/head/; revision=220150
| * Reorganize the gcc vendor import work area. This flattens out a bunchPeter Wemm2008-06-01570-148786/+0
| | | | | | | | | | | | | | | | | | of unnecessary path components that are relics of cvs2svn. (These are directory moves) Notes: svn path=/vendor/gcc/dist/; revision=179468
* | Some fixes so we can build libstdc++ with clang:Rui Paulo2010-08-242-6/+8
|/ | | | | | | | | | | | | | o Make the value_type, vector_type, iterator, __mutex_type types of free_list class so we can access them o In some cases template keywords must be inserted to treat classes as dependent template names o Remove two 'inline' keywords where they do not make sense Submitted by: Dimitry Andric <dimitry at andric.com> Reviewed by: trema Notes: svn path=/head/; revision=211755
* GCC 4.2.1 release C++ standard library and runtime support code.Alexander Kabaev2007-08-146-15/+61
| | | | Notes: svn path=/vendor/gcc/dist/; revision=171827
* Remove files that are no more part of GCC distribution from FSF branch.Alexander Kabaev2007-05-197-1083/+0
| | | | Notes: svn path=/vendor/gcc/dist/; revision=169708
* GCC 4.2.0 release C++ standard library and runtime support code.Alexander Kabaev2007-05-19570-16342/+84981
| | | | Notes: svn path=/vendor/gcc/dist/; revision=169691
* MFS: Remove file that was disappeared from gcc distribution.Xin LI2006-09-301-2789/+0
| | | | | | | | | While I'm there, add the file into ObsoleteFiles.inc. Approved by: maintainer (kan) Notes: svn path=/vendor/gcc/dist/; revision=162837
* Gcc 3.4.6 C++ support bits (as of 2006/08/25 #116475).Alexander Kabaev2006-08-264-43/+58
| | | | Notes: svn path=/vendor/gcc/dist/; revision=161653
* Gcc 3.4.4 C++ support bits.Alexander Kabaev2005-06-0325-187/+304
| | | | Notes: svn path=/vendor/gcc/dist/; revision=146897
* Remove files that are not part of GCC 3.4.x from the vendor branch.Alexander Kabaev2004-08-128-6458/+0
| | | | Notes: svn path=/vendor/gcc/dist/; revision=133582
* Gcc 3.4.2 20040728 C++ support bits.Alexander Kabaev2004-07-28234-20174/+45429
| | | | Notes: svn path=/vendor/gcc/dist/; revision=132720
* Remove bits which are not part of GCC 3.3.x anymore.Alexander Kabaev2004-01-0556-5333/+0
| | | | Notes: svn path=/vendor/gcc/dist/; revision=124154
* Gcc 3.3.3 20031106 C++ support bits.Alexander Kabaev2003-11-077-11/+18
| | | | Notes: svn path=/vendor/gcc/dist/; revision=122182
* Gcc 3.3.1-release C++ support bits.Alexander Kabaev2003-08-222-2/+2
| | | | Notes: svn path=/vendor/gcc/dist/; revision=119258
* Gcc 3.3.1-pre 2003-07-11 C++ support bits.Alexander Kabaev2003-07-1170-9051/+13800
| | | | Notes: svn path=/vendor/gcc/dist/; revision=117397
* Gcc 3.2.2-release C++ support bits.Alexander Kabaev2003-02-1015-802/+819
| | | | Notes: svn path=/vendor/gcc/dist/; revision=110614
* Gcc 3.2.1 release virgin vendor import. (19-Nov-2002)David E. O'Brien2002-12-0417-213/+255
| | | | Notes: svn path=/vendor/gcc/dist/; revision=107606
* Gcc 3.2.1-prerelease C++ support bits from the FSF anoncvs repo ↵Alexander Kabaev2002-10-105-8/+10
| | | | | | | gcc-3_2-branch on October 9th 2002 20:15 EST. Notes: svn path=/vendor/gcc/dist/; revision=104754
* Gcc 3.2.1-prerelease C++ support bits from the FSF anoncvs repo ↵Alexander Kabaev2002-09-174-56/+31
| | | | | | | gcc-3_2-branch on 16-Sep-2002 13:23:11 EDT. Notes: svn path=/vendor/gcc/dist/; revision=103447
* Gcc 3.2.1-prerelease libf2c bits from the FSF anoncvs repo gcc-3_2-branch on ↵Alexander Kabaev2002-09-0163-668/+2332
| | | | | | | 1-Sep-2002 00:00:01 EDT. Notes: svn path=/vendor/gcc/dist/; revision=102782
* Gcc 3.1.0 pre-release's C++ support bits from the FSF anoncvs repoDavid E. O'Brien2002-05-28238-0/+63921
on 9-May-2002 15:57:15 EDT. Notes: svn path=/vendor/gcc/dist/; revision=97403