Граф коммитов

202 Коммитов

Автор SHA1 Сообщение Дата
Alex Guteniev ad1a26ad97
<chrono>: Cache QueryPerformanceFrequency() and divide just once (#653) 2020-05-14 15:49:17 -07:00
Casey Carter 995401051f
Implement ranges::adjacent_find (#822) 2020-05-14 15:44:21 -07:00
Casey Carter 79c602144b
Implement ranges::find_first_of (#821) 2020-05-14 15:39:23 -07:00
Daniil Goncharov 48f79a3112
<utility> P0586R2 Integer Comparison Functions (#621)
Co-authored-by: Stephan T. Lavavej <stl@microsoft.com>
2020-05-14 15:20:28 -07:00
Casey Carter 46ae5f8234
Fix race in parallel adjacent_find (#816)
Check cancellation status _before_ getting a chunk of work to process, instead of after. If we check after and a result was found in a later block than the one we were assigned, we won't notice a better result in our block.
2020-05-12 14:11:32 -07:00
Casey Carter 21046cc515
Implement ranges::find_end (#815) 2020-05-12 14:10:36 -07:00
Alex Guteniev 7353cd1fbc
atomic_flag_test, lock free type aliases (#684)
Addresses #52 (Partially implements P1135R6).

Co-authored-by: Casey Carter <cartec69@gmail.com>
Co-authored-by: Stephan T. Lavavej <stl@microsoft.com>
2020-05-12 14:08:04 -07:00
Alex Guteniev 9a0a17e66c
Improve call_once performance by using Init­Once­Begin­Initialize / InitOnceComplete (#688)
Co-authored-by: Stephan T. Lavavej <stl@nuwen.net>
Co-authored-by: Casey Carter <cartec69@gmail.com>
Co-authored-by: Billy Robert O'Neal III <bion@microsoft.com>
Co-authored-by: Curtis Bezault <curtbezault@gmail.com>
2020-05-11 16:38:36 -07:00
Jean Philippe 11150ca667
Use _Next_iter(it) and _Prev_iter(it) instead of it + 1 and it - 1 (#803) 2020-05-07 17:09:08 -07:00
Casey Carter 07627b63ea
C++20 move_iterator changes and move_sentinel (#787)
* C++20 move_iterator changes and move_sentinel

Changes primarily come from P0896R4 "<ranges>", but the `operator<=>` from P1614R2 "Adding Spaceship <=> To The Library" is here as well.

I've also speculatively implemented the proposed resolutions of LWG-3293, LWG-3391, and LWG-3435.

I had to [patch a pair of libc++ tests](https://reviews.llvm.org/D79343) that fail with these changes; the LLVM reference is updated here to pull in those tests.

Drive-by:
* s/explicit constexpr/constexpr explicit/g (I somehow managed to sneak two occurrences into `subrange`)

* Skip flaky libc++ test (detached threads)
2020-05-07 16:02:40 -07:00
Jean Philippe bb9e6d48ab
Use *_Prev_iter(it) instead of *(it - 1) (#771)
Fixes #465.
2020-05-06 18:18:25 -07:00
Casey Carter 1c918ecfcc
C6294 is suppressed STL-wide; remove local suppressions (#794) 2020-05-06 18:03:54 -07:00
Stephan T. Lavavej 65d98ffaba
Fix complex's Sufficient Additional Overloads (#791)
* Fixes GH-785, which reported that `arg(real)` was implemented as `return 0;`
but `arg(complex)` does actual work for complex numbers with
zero imaginary parts.

* `norm` should upgrade to `double` before squaring. The difference
is observable because `double`'s range is vast.

* `conj` and `proj` should return `complex`.

* `conj(real)` should behave exactly like `conj(complex)`, returning
an imaginary part of negative zero. The difference is technically
observable.

* `proj(real)` should behave exactly like `proj(complex)`, mapping
negative infinity to positive infinity.

* Test that float/double/long double aren't "upgraded".

* Tests pass for Clang, emit warnings for MSVC.
2020-05-05 13:36:07 -07:00
Koki Nishihara 430b569d0a
Update _MSVC_STL_UPDATE in yvals_core.h (#793) 2020-05-05 12:39:46 -07:00
Casey Carter c6c430be08
Implement LWG-3420 (#786) 2020-05-05 12:34:56 -07:00
Stephan T. Lavavej 2f4c5792b2
Fix CUDA warnings/errors, _Noinit shadowing, other cleanups (#772) 2020-05-01 14:53:40 -07:00
Casey Carter f0f0b55d57
Silence clang warning in <variant> (#768)
Clang complains about an "unnecessary" lambda capture despite that the capture is used in a discarded statement (LLVM-45398).
2020-04-30 12:12:55 -07:00
Sumit Bhardwaj d7f855891b
Remove _For_each_tuple_element in scoped_lock (#760)
Fixes #738.
2020-04-30 03:51:20 -07:00
Casey Carter 045f3dd0e1
C++20 reverse_iterator changes (#759)
Co-authored-by: Stephan T. Lavavej <stl@microsoft.com>
2020-04-30 03:15:16 -07:00
Casey Carter d346a6a4be
__cpp_consteval indicates support for consteval (#765) 2020-04-30 03:06:00 -07:00
Alex Guteniev a5a9e49fc6
Optimize `atomic_thread_fence` (#740)
Fixes #739.
2020-04-30 03:00:25 -07:00
Stephan T. Lavavej 2c441c7e03
Improve build instructions and cleanup code (#764)
Fixes #518.
2020-04-30 02:49:14 -07:00
Curtis J Bezault 84221fbe95
Clang warnings cleanup (#755)
Fix Clang warnings in STL headers (when they aren't being suppressed for "system headers").

Change the test infrastructure to no longer treat STL headers as "system headers", so we'll remain clean with respect to Clang warnings in the future.

Fix Microsoft-internal VSO-609129 "`<cvt/sjis_0208>` appears to have impossible condition" which was also emitting a Clang warning.
2020-04-30 02:37:48 -07:00
Josh Soref 79dd533569
Fix spelling (#743) 2020-04-30 02:27:56 -07:00
Stephan T. Lavavej e4bc00e70c
Remove and update compiler bug workarounds (#742) 2020-04-30 02:23:37 -07:00
Daniil Goncharov 2bc5f9bc71
P0415R1 constexpr For <complex> (Again) (#367)
Fixes #16 and fixes #190.

Co-authored-by: Curtis.Bezault <curtbezault@gmail.com>
Co-authored-by: Stephan T. Lavavej <stl@microsoft.com>
2020-04-30 02:13:55 -07:00
Casey Carter 343e625427
Implement ranges::subrange and ranges::view_interface (#734)
* Implement ranges::subrange and ranges::view_interface

Product changes:
`<utility>`: declare `tuple`'s overloads of `std::get` so they are visible to the definition of `subrange`'s `_Pair_like` concept in `<xutility>`.
`<xutility>`: Implementations of `subrange`, `view_interface`, and `borrowed_subrange_t`.

Test changes:
`std/include/range_algorithm_support.hpp`: Remove `iter_move` overload landmine for non-`indirectly_readable` `test_iterator`s that hampers detection.
`std/tests/P0896R4_ranges_algorithm_machinery`: Enable `borrowed_subrange_t` smoke test.
`std/tests/P0896R4_ranges_range_machinery`: Validate that `subrange` is a `borrowed_range`.
`std/tests/P0896R4_ranges_subrange`: New test to cover `subrange` and `view_interface`.
2020-04-24 18:59:20 -07:00
Stephan T. Lavavej b64eeed4ef
Silence Clang -Wc++20-extensions. (#737) 2020-04-24 18:45:04 -07:00
Michael Schellenberger Costa ca032aebb0
Remove _ITERATOR_DEBUG_ARRAY_OVERLOADS (#735)
Fixes #660.

Also move `_Array_(const_)?iterator` from `<xutility>` to `<array>`, since it's no longer needed by the IDAO.
2020-04-24 18:44:01 -07:00
Charlie Barto 0cbd1b2470
Remove EDG-related workaround for bit_cast (#733)
This was Microsoft-internal VSO-1041044.
2020-04-22 01:53:51 -07:00
Stefan Stipanovic b1c18611b9
<atomic>: Remove _ENABLE_ATOMIC_ALIGNMENT_FIX (#723)
Fixes #717.
2020-04-22 01:42:24 -07:00
Abhishek Bhattacharya b76647085e
Refactored some `for` loops to the normal pattern. (#709)
Fixes #678.
2020-04-22 01:38:41 -07:00
Alex Guteniev 97f9a2ce25
<functional>: std::function doesn't handle over-aligned types (#698)
Fixes #690.
2020-04-22 01:34:49 -07:00
Michael Schellenberger Costa 72c724007c
P1831R1 Deprecating volatile In The Standard Library (#634)
Fixes #558.
2020-04-22 01:30:11 -07:00
Casey Carter 53137aa4c0
Suppress C5219 in the STL (#730)
C1XX now emits C5219 `implicit conversion from '%s' to '%s', possible loss of data` to warn about potentially lossy implicit conversions, e.g., from integer types to floating-point types. These changes avoid emission of the new warning from the internals and tests of the STL.
2020-04-21 09:23:09 -07:00
Stephan T. Lavavej 51446475c1
Fix boyer_moore_searcher with the Rytter correction (#724)
Fixes #713.
2020-04-20 14:37:13 -07:00
Casey Carter ae34ee631f
Require MSVC 19.26 and Clang 10 in the STL (#708)
* `<yvals_core.h>` changes:
  * Clang 10 `_HAS_CONDITIONAL_EXPLICIT` in C++14 mode (Only CUDA now requires the `_HAS_CONDITIONAL_EXPLICIT == 0` code paths)
  * reject Clang < 10
  * reject MSVC < 1926

* Unskip libc++ tests that need Concepts and/or `<=>`

* `std/tests/P0595R2_is_constant_evaluated`: We no longer need  suppress the warning Clang 9 emits when it sees the suppression for the warning Clang 10 emits in this test ;)

* `std/tests/VSO_0157762_feature_test_macros`: Remove Clang 9 support

* `std/tests/concepts_matrix.lst`: This is now simply a copy of `usual_latest_matrix.lst` with the `/BE` lines (EDG configs) commented out. (i.e., we now run the Concepts tests with Clang as well as MSVC.)

* Remove workarounds for LLVM-38491 "clang-cl should accept __declspec(allocator)": Replace uses of `_DECLSPEC_ALLOCATOR` with `__declspec(allocator)`, and suppress Clang's warning when the return type isn't a pointer or reference.

* Remove workarounds for LLVM-43531 "clang-format damages 'alternative representations' for operators": Re-enable clang-format in the test which triggered the bug.

* Remove workarounds for LLVM-38478 "clang -fno-ms-compatibility rejects Windows.h": Add -fno-ms-compatibility to the XXX_winsdk_XXX.lst files. (Yes, we still need these because the Windows SDK breaks `/Za`.)

* Drive-by: unskip libc++ new.version now that we implement destroying delete
2020-04-13 13:09:34 -07:00
Michael Schellenberger Costa bda4230d58
<numeric> Optimize gcd to use builtins (#665)
* [numerics] Optimize gcd to use builtins

* Fix template argument deduction for _countl_zero

* Use the same casts as the other bit operations

* Update stl/inc/numeric

Fix tpyo

* Remove whitespace

Co-Authored-By: Stephan T. Lavavej <stl@nuwen.net>

* _BitScanForward is countr_zero(x), not countl_zero(~x)

Co-authored-by: Casey Carter <cartec69@gmail.com>
Co-authored-by: Stephan T. Lavavej <stl@nuwen.net>
Co-authored-by: Casey Carter <Casey@Carter.net>
2020-04-10 19:09:41 -07:00
Alex Guteniev 764f7cbd6f
<chrono>: Explain steady_clock::now frequency scaling (#658) 2020-04-10 19:08:31 -07:00
Casey Carter d0d059716e
Update FixNamespaceComments to true in various clang-format files (#681)
Now that LLVM-39247 has been fixed in Clang 10, we can enable this setting again. This PR does so in several Libs clang-format files which had a LLVM-39247 comment.

I've changed the end comments on unnamed namespaces from `// namespace`, which clang-format adds automatically, to `// unnamed namespace` which more clearly indicates that someone didn't simply forget to finish typing the comment.
2020-04-10 16:21:06 -07:00
Casey Carter 2a1a375b88
More Clang 10 support (#657)
* Minor test matrix cleanup:
  * Factor "/EHsc /std:c++latest" out of each config in `usual_latest_matrix.lst` and `usual_latest_winsdk_matrix.lst`
  * Remove unused `native_latest_matrix.lst`

* Avoid LLVM-45213 in `range_algorithm_support.hpp` and `std/tests/P0896R4_ranges_alg_all_of`

* <concepts> remove workaround for LLVM-44689 which is fixed in Clang 10
2020-04-10 15:58:11 -07:00
Adam Bucior 433b8a16b6
Implement P0718R2 atomic<shared_ptr<T>>, atomic<weak_ptr<T>> (#601) 2020-04-09 19:56:00 -07:00
Casey Carter 0055b5bf80
<yvals_core.h>: Fix <bit> feature-test macros (#695)
* Don't define `__cpp_lib_bitops` when `__EDG__`, so IntelliSense is consistent with MSVC
* Don't define `__cpp_lib_int_pow2` when `__cpp_lib_bitops` isn't defined since the facilities that correspond with `__cpp_lib_int_pow2` are only provided when `__cpp_lib_bitops` is defined.
* Update feature-test macro test accordingly

(See discussion starting at https://github.com/microsoft/STL/issues/313#issuecomment-585127653.)
2020-04-09 19:27:35 -07:00
Adam Bucior a099e85ce3
P0674R1 make_shared() For Arrays (#309)
Fixes #33.

Co-authored-by: Gianni Weinand <t-giwein@microsoft.com>
Co-authored-by: Stephan T. Lavavej <stl@microsoft.com>
2020-04-08 12:23:05 -07:00
joemmett 714f499f4b
Library support for P0722R3 - Efficient sized delete for variable siz… (#692)
Library support for P0722R3 - Efficient sized delete for variable sized classes

Implements the struct type `std::destroying_delete_t`, variable
`std::destroying_delete`, and feature test macro
`__cpp_lib_destroying_delete` in C++20 mode with a compiler that defines
`__cpp_impl_destroying_delete`.
2020-04-08 09:38:43 -07:00
Casey Carter 22391019cb
Changes to support the compiler portion of P1152R4 "deprecating volatile" (#674)
* Updates for MSVC implementation of P1152R4 "deprecating volatile"

* Enable volatile deprecation warnings in STL's std and libcxx test suites

* `<any>`: `any_cast<T>` now returns `remove_cv_t<T>` because it's silly to have a cv-qualified return type (LWG issue submitted)
* `<optional>`: `optional<T>::value_or` now returns `remove_cv_t<T>` because it's silly to have a cv-qualified return type (LWG issue submitted).
* `<type_traits>`: suppress deprecation warnings around `_Implicitly_convert_to` so `_Implicitly_convert_to<volatile meow>(woof)` doesn't warn
* `<variant>`: Suppress deprecation warnings when forming the "imaginary" overload set `FUN` for the `variant(T&&)` constructor.
* Add the new warning C5215 "'%s' a function parameter with volatile qualified type is deprecated in C++20" to libc++'s "suppress deprecation warnings" macro and update llvm submodule reference.
* Skip libc++ test `containers/sequences/deque/deque.modifiers/insert_iter_iter.pass.cpp` after seeing one timeout too many in Contest logs.
* Suppress C5215 in `tr1/include/tfuns.h` which uses volatile function parameters, and in `tr1/functional4` altogether.
* Update skips for two libc++ tests that changed suffixes from `.sh.cpp` to `.pass.cpp`.

* Add a throwaway `addCompileFlags` function to `LibcxxTestFormat` to enable libc++ to continue working after upstream changes to pass configuration to the filesystem tests which we do not run.
2020-04-03 18:20:24 -07:00
Alex Guteniev 260cfafb63
<bitset>: Make bitset::all work like bitset::any (#671)
Fixes #669.
2020-04-02 21:50:14 -07:00
s00kee 43e07f3fad
Updated _MSVC_STL_UPDATE to April 2020 (#676)
Fixes #670.
2020-04-02 17:54:50 -07:00
Charlie Barto 3e8b26950f
Revert "Replace __pragma with _Pragma (#662)" (#675)
This reverts commit 42d5df07d0.

Reverting due to a bug in how /Zc:preprocessor handles _Pragma
see VSO-1091758 for more details

Co-authored-by: Charles <barto.charlie+code@gmail.com>
2020-04-02 14:44:09 -07:00
Miroslav Hrnčíř 42d5df07d0
Replace __pragma with _Pragma (#662)
* Replace __pragma with _Pragma

VS 2019 16.6 Preview 2 now supports Standard _Pragma.

* Fix formatting

* _Pragma takes a string
2020-04-01 18:41:51 -07:00