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

266 Коммитов

Автор SHA1 Сообщение Дата
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
Stephan T. Lavavej e783504204
N4861 is the post-Prague Working Paper. (#746)
Drop "C++2a" explanation; the Standard will definitely be C++20.
2020-04-30 02:31:38 -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
Jonathan Caves 852a308590
Remove compiler specific feature test macro tests (#752)
Compilers should test their own feature-test macros so the STL need not do so.
2020-04-27 07:43:21 -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
Curtis J Bezault 31419650d4
Point TMP to the D drive (#712) 2020-04-14 11:02:36 -07:00
Curtis J Bezault 28024b4a86
Remove dependency on LLVM-Lit and fixup libcxx's lit.site.cfg to deal with upstream changes. (#710) 2020-04-14 08:10:37 -07:00
Curtis J Bezault 2f69a318b7
Use the temp disk (#701) 2020-04-14 08:10:23 -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
Stephan T. Lavavej a0fffa1076
Add a Question issue template (#687) 2020-04-10 19:10:32 -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
Stephan T. Lavavej 7a2ae687bc
validate.cpp: Validate paths for length and spaces (#699) 2020-04-09 22:54:59 -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
Curtis J Bezault 2597e24586
Run format validation as its own stage and enable /BE (#682) 2020-04-09 18:46:00 -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
Charlie Barto ad389e3836 use build_testing option to toggle tests (#666)
Previously we were using ENABLE_TESTS to toggle testing on or off. I suppose this is a little more true to what it does than BUILD_TESTING, but BUILD_TESTING is the "standard" cmake option used for this kind of stuff by many projects.

Additionally we never added ENABLE_TESTS to the cache so it didn't show up in programs like cmake-gui, so I added it to the cache with a default value of "OFF" using the option() cmake command.

Co-authored-by: Charles <barto.charlie+code@gmail.com>
2020-04-02 13:23:34 -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
Billy O'Neal 20ad5586de
Update pull request template for tests-in-Azure infrastructure (#644)
Remove out of date parts of the pull request template, and put instructions to pull request submitters in a comment rather than duplicating them into each PR.
2020-04-01 16:22:01 -07:00
Andrew Marino dba4ef945c
Disable warning C4648 'standard attribute 'x' ignored' (#672)
In a future release of MSVC, the compiler warns with C4648 on uses of `[[no_unique_address]]`, which the compiler recognizes but does not yet implement. Since `<algorithm>` intentionally uses the attribute, disable the warning in STL headers. This mirrors changes in internal MSVC-PR-239026.
2020-04-01 16:18:00 -07:00
Sumit Bhardwaj 21944c188d
Add static_assert to is_sorted() for the lookup tables in validate.cpp (#650)
Co-authored-by: Sumit Bhardwaj <subhardw@microsoft.com>
2020-04-01 11:42:12 -07:00
Sumit Bhardwaj e1d9d8b303
Changing VCLIBS_SUFFIX to be a cache CMake variable (#649) 2020-04-01 11:41:55 -07:00
Damien 6d5372b027
lerp() noexcept is now required, so we should remove comments (#640) 2020-04-01 11:41:43 -07:00
Alex Guteniev 8e8453c677
<chrono>: Cache QueryPerformanceFrequency() (#646) 2020-03-31 17:35:28 -07:00
Gianni Georg Weinand 90bc6215e4
constexpr for std::array Comparisons (#599)
* Add constexpr to array comparison functions + change feature test macro.

* Fixed clang-format on array and moved comment in yvals_core.h

* Corrected feature test macro constant

* Removed libcxx test skip

* Added constexpr testing for array comparison operators

* clang-formatted the test file

* Added CXX20 feature test macro

* Fixed 0 size array initialization in test file.

* Test variables made global and const, removed to_array, fix typo

* clang-format test file

* Fixed typo, duplicate line and alignment in the constexpr operator test.

* clang-format array

* Changed const global variables to constexpr in test file.

* Removed double parenthesis in test file.

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

* Update tests/std/tests/P1023R0_constexpr_for_array_comparisons/test.cpp

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

* STL's suggestion to avoid disabling clang-format and shorten test.

* clang-format 10 array

* Removed test skip from expected_results.txt to match skipped_tests.txt

Co-authored-by: Stephan T. Lavavej <stl@nuwen.net>
2020-03-31 14:33:55 -07:00
Curtis J Bezault a1a45cc178
Add testing instructions to the README (#647)
Co-authored-by: Stephan T. Lavavej <stl@nuwen.net>
Co-authored-by: Casey Carter <cartec69@gmail.com>
2020-03-31 14:05:46 -07:00
Curtis J Bezault 811c8c1816
Add tr1 testsuite (#652) 2020-03-29 18:16:33 -07:00
Billy O'Neal ff83542af4
Update to Clang 10 and Visual Studio 2019 version 16.6p2 (#645)
* Update to Clang 10 and Visual Studio 2019 version 16.6p2

* re-clang-formats the tree to comply with new clang 10 clang-format
* updates our agents to F series VMs which are faster and cheaper for our build workloads
* defaults scale set to 0 VMs and lets the Azure Pipelines service control all resizing
* fix tests to pass with the new compilers

Co-authored by Casey Carter and Curtis Bezault
2020-03-28 18:53:15 -07:00
Curtis J Bezault 5f7933ce20
Add futures.unique_future/wait.pass.cpp to the skip lists (#641) 2020-03-27 08:29:26 -07:00
Charlie Barto e960db2d54
update cgmanifest (#643)
Co-authored-by: Charles <barto.charlie+code@gmail.com>
2020-03-26 23:03:35 -07:00
Curtis J Bezault 023980e72b
Try to run with fewer workers to avoid overwhelming VMs (#642) 2020-03-26 22:37:11 -07:00