-
Notifications
You must be signed in to change notification settings - Fork 13.9k
[libc] Make fenv and math tests preserve fenv_t state #89658
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,84 @@ | ||
//===-- FEnvSafeTest.cpp ---------------------------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===---------------------------------------------------------------------===// | ||
|
||
#include "FEnvSafeTest.h" | ||
|
||
#include "src/__support/FPUtil/FEnvImpl.h" | ||
#include "src/__support/macros/properties/architectures.h" | ||
|
||
namespace LIBC_NAMESPACE::testing { | ||
|
||
void FEnvSafeTest::PreserveFEnv::check() { | ||
fenv_t after; | ||
test.get_fenv(after); | ||
test.expect_fenv_eq(before, after); | ||
} | ||
|
||
void FEnvSafeTest::TearDown() { | ||
if (!should_be_unchanged) { | ||
restore_fenv(); | ||
} | ||
} | ||
|
||
void FEnvSafeTest::get_fenv(fenv_t &fenv) { | ||
ASSERT_EQ(LIBC_NAMESPACE::fputil::get_env(&fenv), 0); | ||
} | ||
|
||
void FEnvSafeTest::set_fenv(const fenv_t &fenv) { | ||
ASSERT_EQ(LIBC_NAMESPACE::fputil::set_env(&fenv), 0); | ||
} | ||
|
||
void FEnvSafeTest::expect_fenv_eq(const fenv_t &before_fenv, | ||
const fenv_t &after_fenv) { | ||
#if defined(LIBC_TARGET_ARCH_IS_AARCH64) | ||
using LIBC_NAMESPACE::fputil::FEnv::FPState; | ||
const FPState &before_state = reinterpret_cast<const FPState &>(before_fenv); | ||
const FPState &after_state = reinterpret_cast<const FPState &>(after_fenv); | ||
|
||
EXPECT_EQ(before_state.ControlWord, after_state.ControlWord); | ||
EXPECT_EQ(before_state.StatusWord, after_state.StatusWord); | ||
|
||
#elif defined(LIBC_TARGET_ARCH_IS_X86) && !defined(__APPLE__) | ||
using LIBC_NAMESPACE::fputil::internal::FPState; | ||
const FPState &before_state = reinterpret_cast<const FPState &>(before_fenv); | ||
const FPState &after_state = reinterpret_cast<const FPState &>(after_fenv); | ||
|
||
#if defined(_WIN32) | ||
EXPECT_EQ(before_state.control_word, after_state.control_word); | ||
EXPECT_EQ(before_state.status_word, after_state.status_word); | ||
#elif defined(__APPLE__) | ||
EXPECT_EQ(before_state.control_word, after_state.control_word); | ||
EXPECT_EQ(before_state.status_word, after_state.status_word); | ||
EXPECT_EQ(before_state.mxcsr, after_state.mxcsr); | ||
#else | ||
EXPECT_EQ(before_state.x87_status.control_word, | ||
after_state.x87_status.control_word); | ||
EXPECT_EQ(before_state.x87_status.status_word, | ||
after_state.x87_status.status_word); | ||
EXPECT_EQ(before_state.mxcsr, after_state.mxcsr); | ||
#endif | ||
|
||
#elif defined(LIBC_TARGET_ARCH_IS_ARM) && defined(__ARM_FP) | ||
using LIBC_NAMESPACE::fputil::FEnv; | ||
const FEnv &before_state = reinterpret_cast<const FEnv &>(before_fenv); | ||
const FEnv &after_state = reinterpret_cast<const FEnv &>(after_fenv); | ||
|
||
EXPECT_EQ(before_state.fpscr, after_state.fpscr); | ||
|
||
#elif defined(LIBC_TARGET_ARCH_IS_ANY_RISCV) | ||
const uint32_t &before_fcsr = reinterpret_cast<const uint32_t &>(before_fenv); | ||
const uint32_t &after_fcsr = reinterpret_cast<const uint32_t &>(after_fenv); | ||
EXPECT_EQ(before_fcsr, after_fcsr); | ||
|
||
#else | ||
// No arch-specific `fenv_t` support, so nothing to compare. | ||
|
||
#endif | ||
} | ||
|
||
} // namespace LIBC_NAMESPACE::testing |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
//===-- FEnvSafeTest.h -----------------------------------------*- C++ -*-===// | ||
// | ||
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. | ||
// See https://llvm.org/LICENSE.txt for license information. | ||
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception | ||
// | ||
//===---------------------------------------------------------------------===// | ||
|
||
#ifndef LLVM_LIBC_TEST_UNITTEST_FPENVSAFE_H | ||
#define LLVM_LIBC_TEST_UNITTEST_FPENVSAFE_H | ||
|
||
#include "hdr/types/fenv_t.h" | ||
#include "src/__support/CPP/utility.h" | ||
#include "test/UnitTest/Test.h" | ||
|
||
namespace LIBC_NAMESPACE::testing { | ||
|
||
// This provides a test fixture (or base class for other test fixtures) that | ||
// asserts that each test does not leave the FPU state represented by `fenv_t` | ||
// (aka `FPState`) perturbed from its initial state. | ||
class FEnvSafeTest : public Test { | ||
public: | ||
void TearDown() override; | ||
|
||
protected: | ||
// This is an RAII type where `PreserveFEnv preserve{this};` will sample the | ||
// `fenv_t` state and restore it when `preserve` goes out of scope. | ||
class PreserveFEnv { | ||
fenv_t before; | ||
FEnvSafeTest &test; | ||
|
||
public: | ||
explicit PreserveFEnv(FEnvSafeTest *self) : test{*self} { | ||
test.get_fenv(before); | ||
} | ||
|
||
// Cause test expectation failures if the current state doesn't match what | ||
// was captured in the constructor. | ||
void check(); | ||
|
||
// Restore the state captured in the constructor. | ||
void restore() { test.set_fenv(before); } | ||
|
||
~PreserveFEnv() { restore(); } | ||
}; | ||
|
||
// This is an RAII type where `CheckFEnv check{this};` will sample the | ||
// `fenv_t` state and require it be the same when `check` goes out of scope. | ||
struct CheckFEnv : public PreserveFEnv { | ||
using PreserveFEnv::PreserveFEnv; | ||
|
||
~CheckFEnv() { check(); } | ||
}; | ||
|
||
// This calls callable() and returns its value, but has EXPECT_* failures if | ||
// the `fenv_t` state is not preserved by the call. | ||
template <typename T> decltype(auto) check_fenv_preserved(T &&callable) { | ||
CheckFEnv check{this}; | ||
return cpp::forward<T>(callable)(); | ||
} | ||
|
||
// This calls callable() and returns its value, but saves and restores the | ||
// `fenv_t` state around the call. | ||
template <typename T> | ||
auto with_fenv_preserved(T &&callable) | ||
-> decltype(cpp::forward<decltype(callable)>(callable)()) { | ||
PreserveFEnv preserve{this}; | ||
return cpp::forward<T>(callable)(); | ||
} | ||
|
||
// A test can call these to indicate it will or won't change `fenv_t` state. | ||
void will_change_fenv() { should_be_unchanged = false; } | ||
void will_not_change_fenv() { should_be_unchanged = true; } | ||
|
||
// This explicitly resets back to the "before" state captured in SetUp(). | ||
// TearDown() always does this, but should_be_unchanged controls whether | ||
// it also causes test failures if a test fails to restore it. | ||
void restore_fenv() { check.restore(); } | ||
|
||
private: | ||
void get_fenv(fenv_t &fenv); | ||
void set_fenv(const fenv_t &fenv); | ||
void expect_fenv_eq(const fenv_t &before_fenv, const fenv_t &after_fenv); | ||
|
||
CheckFEnv check{this}; | ||
|
||
// TODO: Many tests fail if this is true. It needs to be figured out whether | ||
// the state should be preserved by each library function under test, and | ||
// separately whether each test itself should preserve the state. It | ||
// probably isn't important that tests be explicitly written to preserve the | ||
// state, as the fixture can (and does) reset it--the next test can rely on | ||
// getting "normal" ambient state initially. For library functions that | ||
// should preserve the state, that should be checked after each call, not | ||
// just after the whole test. So they can use check_fenv_preserved or | ||
// with_fenv_preserved as appropriate. | ||
bool should_be_unchanged = false; | ||
}; | ||
|
||
} // namespace LIBC_NAMESPACE::testing | ||
|
||
#endif // LLVM_LIBC_TEST_UNITTEST_FPENVSAFE_H |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.