Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions tests/std/test.lst
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,7 @@ tests\GH_000940_missing_valarray_copy
tests\GH_001010_filesystem_error_encoding
tests\GH_001017_discrete_distribution_out_of_range
tests\GH_001086_partial_sort_copy
tests\GH_001103_countl_zero_correctness
tests\LWG2597_complex_branch_cut
tests\LWG3018_shared_ptr_function
tests\P0019R8_atomic_ref
Expand Down
4 changes: 4 additions & 0 deletions tests/std/tests/GH_001103_countl_zero_correctness/env.lst
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
# Copyright (c) Microsoft Corporation.
# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

RUNALL_INCLUDE ..\usual_latest_matrix.lst
43 changes: 43 additions & 0 deletions tests/std/tests/GH_001103_countl_zero_correctness/test.cpp
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
// Copyright (c) Microsoft Corporation.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception

#include <bit>
#include <cassert>

// Indirectly test countl_zero on old x86/x64 processors by testing a private helper,
// which is different from the usual branch.

// Currently need this test only in C++20 mode;
// may update to older C++ if the helper is used internally too, for example in <bitset>.

using namespace std;

int main() {
// This test is applicable only to x86 and x64 platforms
#if defined(_M_IX86) || defined(_M_X64)
assert(_Countl_zero_bsr(static_cast<unsigned char>(0x00)) == 8);
assert(_Countl_zero_bsr(static_cast<unsigned char>(0x13)) == 3);
assert(_Countl_zero_bsr(static_cast<unsigned char>(0x83)) == 0);
assert(_Countl_zero_bsr(static_cast<unsigned char>(0xF8)) == 0);

assert(_Countl_zero_bsr(static_cast<unsigned short>(0x0000)) == 16);
assert(_Countl_zero_bsr(static_cast<unsigned short>(0x0013)) == 11);
assert(_Countl_zero_bsr(static_cast<unsigned short>(0x8003)) == 0);
assert(_Countl_zero_bsr(static_cast<unsigned short>(0xF008)) == 0);

assert(_Countl_zero_bsr(static_cast<unsigned int>(0x0000'0000)) == 32);
assert(_Countl_zero_bsr(static_cast<unsigned int>(0x0000'0013)) == 27);
assert(_Countl_zero_bsr(static_cast<unsigned int>(0x8000'0003)) == 0);
assert(_Countl_zero_bsr(static_cast<unsigned int>(0xF000'0008)) == 0);

assert(_Countl_zero_bsr(static_cast<unsigned long>(0x0000'0000)) == 32);
assert(_Countl_zero_bsr(static_cast<unsigned long>(0x0000'0013)) == 27);
assert(_Countl_zero_bsr(static_cast<unsigned long>(0x8000'0003)) == 0);
assert(_Countl_zero_bsr(static_cast<unsigned long>(0xF000'0008)) == 0);

assert(_Countl_zero_bsr(static_cast<unsigned long long>(0x0000'0000'0000'0000)) == 64);
assert(_Countl_zero_bsr(static_cast<unsigned long long>(0x0000'0000'0000'0013)) == 59);
assert(_Countl_zero_bsr(static_cast<unsigned long long>(0x8000'0000'0000'0003)) == 0);
assert(_Countl_zero_bsr(static_cast<unsigned long long>(0xF000'0000'0000'0008)) == 0);
#endif // ^^^ defined(_M_IX86) || defined(_M_X64) ^^^
}