forked from espressomd/espresso
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
319 additions
and
6 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -8,17 +8,16 @@ permissions: | |
contents: read # to fetch code (actions/checkout) | ||
|
||
jobs: | ||
macos: | ||
macos-13: | ||
runs-on: macos-13 | ||
if: ${{ github.repository == 'espressomd/espresso' }} | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
- name: Setup ccache | ||
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: macos | ||
save: ${{ github.ref == 'refs/heads/python' }} | ||
save: false | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
with: | ||
|
@@ -31,6 +30,45 @@ jobs: | |
build_procs: 4 | ||
check_procs: 4 | ||
with_ccache: 'true' | ||
make_check_python: 'false' | ||
|
||
macos-14: | ||
runs-on: macos-14 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.12' | ||
- name: Get runner specifications | ||
run: system_profiler SPHardwareDataType | ||
- name: Build and check | ||
uses: ./.github/actions/build_and_check | ||
env: | ||
build_procs: 4 | ||
check_procs: 4 | ||
with_ccache: 'false' | ||
make_check_python: 'false' | ||
|
||
macos-15: | ||
runs-on: macos-15 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
- name: Setup Python environment | ||
uses: actions/[email protected] | ||
with: | ||
python-version: '3.12' | ||
- name: Get runner specifications | ||
run: system_profiler SPHardwareDataType | ||
- name: Build and check | ||
uses: ./.github/actions/build_and_check | ||
env: | ||
build_procs: 3 | ||
check_procs: 3 | ||
with_ccache: 'false' | ||
make_check_python: 'false' | ||
|
||
debian: | ||
runs-on: ubuntu-latest | ||
|
@@ -47,7 +85,7 @@ jobs: | |
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: debian | ||
save: ${{ github.ref == 'refs/heads/python' || ( github.repository != 'espressomd/espresso' && ! startsWith(github.ref, 'refs/pull') ) }} | ||
save: false | ||
- name: Setup Git environment | ||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
- name: Get runner specifications | ||
|
@@ -72,7 +110,6 @@ jobs: | |
|
||
ubuntu: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.repository == 'espressomd/espresso' }} | ||
container: | ||
image: ghcr.io/espressomd/docker/ubuntu-wo-dependencies:f7f8ef2c0ca93c67aa16b9f91785492fb04ecc1b-base-layer | ||
credentials: | ||
|
@@ -86,7 +123,7 @@ jobs: | |
uses: hendrikmuhs/[email protected] | ||
with: | ||
key: ubuntu | ||
save: ${{ github.ref == 'refs/heads/python' }} | ||
save: false | ||
- name: Setup Git environment | ||
run: git config --global --add safe.directory "$GITHUB_WORKSPACE" | ||
- name: Get runner specifications | ||
|
This file contains 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 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,275 @@ | ||
/* | ||
* Copyright (C) 2024 The ESPResSo project | ||
* | ||
* This file is part of ESPResSo. | ||
* | ||
* ESPResSo is free software: you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License as published by | ||
* the Free Software Foundation, either version 3 of the License, or | ||
* (at your option) any later version. | ||
* | ||
* ESPResSo is distributed in the hope that it will be useful, | ||
* but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
* GNU General Public License for more details. | ||
* | ||
* You should have received a copy of the GNU General Public License | ||
* along with this program. If not, see <http://www.gnu.org/licenses/>. | ||
*/ | ||
|
||
#define BOOST_TEST_MODULE floating-point exceptions test | ||
#define BOOST_TEST_DYN_LINK | ||
#include <boost/test/unit_test.hpp> | ||
|
||
#include <memory> | ||
#include <mutex> | ||
#include <optional> | ||
#include <utility> | ||
|
||
class fe_trap { | ||
struct global_state_params { | ||
std::weak_ptr<fe_trap> observer; | ||
std::mutex mutex; | ||
}; | ||
static global_state_params global_state; | ||
|
||
struct scoped_instance { | ||
explicit scoped_instance(std::shared_ptr<fe_trap> ptr) | ||
: m_resource{std::move(ptr)} {} | ||
scoped_instance(scoped_instance const &) = delete; | ||
scoped_instance(scoped_instance &&) noexcept = default; | ||
scoped_instance &operator=(scoped_instance const &) = delete; | ||
scoped_instance &operator=(scoped_instance &&) noexcept = default; | ||
bool is_unique() const { return m_resource->is_unique(); } | ||
int get_flags() const { return m_resource->get_flags(); } | ||
|
||
private: | ||
std::shared_ptr<fe_trap> m_resource; | ||
}; | ||
|
||
struct deleter { | ||
void operator()(fe_trap *ptr) { delete ptr; } | ||
}; | ||
friend deleter; | ||
|
||
int m_flags; | ||
bool m_unique; | ||
|
||
fe_trap(std::optional<int> excepts, bool unique); | ||
~fe_trap(); | ||
|
||
static int parse_excepts(std::optional<int> excepts); | ||
|
||
public: | ||
fe_trap(fe_trap const &) = delete; | ||
fe_trap(fe_trap &&) noexcept = delete; | ||
fe_trap &operator=(fe_trap const &) = delete; | ||
fe_trap &operator=(fe_trap &&) noexcept = delete; | ||
int get_flags() const { return m_flags; } | ||
bool is_unique() const { return m_unique; } | ||
static scoped_instance make_unique_scoped(std::optional<int> excepts = std::nullopt); | ||
static scoped_instance make_shared_scoped(std::optional<int> excepts = std::nullopt); | ||
}; | ||
|
||
|
||
#include <cassert> | ||
#include <cfenv> | ||
#include <memory> | ||
#include <mutex> | ||
#include <optional> | ||
#include <stdexcept> | ||
#include <thread> | ||
|
||
fe_trap::global_state_params fe_trap::global_state{{}, {}}; | ||
|
||
fe_trap::fe_trap(std::optional<int> excepts, bool unique) { | ||
#if defined(__STDC_IEC_559__) | ||
#if defined(__GLIBC__) | ||
#define ESPRESSO_FENV_DEFINED_CTOR | ||
m_flags = parse_excepts(excepts); | ||
[[maybe_unused]] int status = feenableexcept(m_flags); | ||
assert(status == 0); | ||
#endif // __GLIBC__ | ||
#endif // __STDC_IEC_559__ | ||
m_unique = unique; | ||
|
||
// sentinel if no implementation-defined solution was found | ||
#if defined(ESPRESSO_FENV_DEFINED_CTOR) | ||
#undef ESPRESSO_FENV_DEFINED_CTOR | ||
#else | ||
#error "FE not supported" | ||
#endif | ||
} | ||
|
||
fe_trap::~fe_trap() { | ||
#if defined(__STDC_IEC_559__) | ||
#if defined(__GLIBC__) | ||
#define ESPRESSO_FENV_DEFINED_DTOR | ||
[[maybe_unused]] int status = fedisableexcept(m_flags); | ||
assert(status == 0 or status == m_flags); | ||
#endif // __GLIBC__ | ||
#endif // __STDC_IEC_559__ | ||
|
||
// sentinel if no implementation-defined solution was found | ||
#if defined(ESPRESSO_FENV_DEFINED_DTOR) | ||
#undef ESPRESSO_FENV_DEFINED_DTOR | ||
#else | ||
#error "FE not supported" | ||
#endif | ||
} | ||
|
||
int fe_trap::parse_excepts(std::optional<int> excepts) { | ||
int retval = 0; | ||
#if defined(__STDC_IEC_559__) | ||
#if defined(__GLIBC__) | ||
#define ESPRESSO_FENV_DEFINED_CTOR | ||
retval = excepts ? *excepts : (FE_DIVBYZERO | FE_INVALID | FE_OVERFLOW); | ||
#endif // __GLIBC__ | ||
#endif // __STDC_IEC_559__ | ||
return retval; | ||
} | ||
|
||
fe_trap::scoped_instance fe_trap::make_unique_scoped(std::optional<int> excepts) { | ||
std::lock_guard<std::mutex> lock(fe_trap::global_state.mutex); | ||
if (fe_trap::global_state.observer.lock()) { | ||
throw std::runtime_error("Cannot create more than 1 instance of fe_trap"); | ||
} | ||
auto raw_ptr = new fe_trap(excepts, true); | ||
auto watched = std::shared_ptr<fe_trap>(raw_ptr, deleter{}); | ||
fe_trap::global_state.observer = watched; | ||
return fe_trap::scoped_instance(watched); | ||
} | ||
|
||
fe_trap::scoped_instance fe_trap::make_shared_scoped(std::optional<int> excepts) { | ||
std::lock_guard<std::mutex> lock(fe_trap::global_state.mutex); | ||
if (auto watched = fe_trap::global_state.observer.lock()) { | ||
if (watched->is_unique()) { | ||
throw std::runtime_error("Cannot create more than 1 instance of fe_trap"); | ||
} | ||
if (watched->get_flags() != parse_excepts(excepts)) { | ||
throw std::invalid_argument("Cannot mix different exceptions with fe_trap"); | ||
} | ||
return fe_trap::scoped_instance(watched); | ||
} | ||
auto raw_ptr = new fe_trap(excepts, false); | ||
auto watched = std::shared_ptr<fe_trap>(raw_ptr, deleter{}); | ||
fe_trap::global_state.observer = watched; | ||
return fe_trap::scoped_instance(watched); | ||
} | ||
|
||
|
||
|
||
#include <cstdio> | ||
#include <cfenv> | ||
|
||
#if defined(__STDC_IEC_559__) and defined(__GLIBC__) and !defined(__FAST_MATH__) | ||
|
||
#include <cassert> | ||
#include <cmath> | ||
#include <csetjmp> | ||
#include <csignal> | ||
#include <initializer_list> | ||
|
||
static volatile std::sig_atomic_t last_signal_status; | ||
static std::jmp_buf jmp_env; | ||
|
||
void sigfpe_handler(int signal) { | ||
::last_signal_status = signal; | ||
siglongjmp(::jmp_env, 1); | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(trap_by_signal) { | ||
double volatile denominator = 0.; | ||
double volatile value = 1.; | ||
printf("SIGILL: %i\n", SIGILL); | ||
printf("SIGFPE: %i\n", SIGFPE); | ||
value = 0. / denominator; | ||
BOOST_REQUIRE(std::isnan(value)); | ||
BOOST_REQUIRE_EQUAL(::last_signal_status, 0); | ||
[[maybe_unused]] auto sig_ret = std::signal(SIGFPE, sigfpe_handler); | ||
assert(sig_ret != SIG_ERR); | ||
std::signal(SIGILL, sigfpe_handler); | ||
{ | ||
auto const trap = fe_trap::make_unique_scoped(); | ||
BOOST_REQUIRE(trap.is_unique()); | ||
value = 0.; | ||
while (sigsetjmp(::jmp_env, 1) == 0) { | ||
value = 2.; | ||
value = 0. / denominator; | ||
} | ||
BOOST_CHECK_EQUAL(::last_signal_status, SIGFPE); | ||
BOOST_REQUIRE(not std::isnan(value)); | ||
BOOST_REQUIRE_EQUAL(value, 2.); | ||
::last_signal_status = 0; | ||
} | ||
{ | ||
auto const trap = fe_trap::make_shared_scoped(); | ||
BOOST_REQUIRE(not trap.is_unique()); | ||
value = 0.; | ||
while (sigsetjmp(::jmp_env, 1) == 0) { | ||
value = 2.; | ||
value = 0. / denominator; | ||
} | ||
BOOST_CHECK_EQUAL(::last_signal_status, SIGFPE); | ||
BOOST_REQUIRE(not std::isnan(value)); | ||
BOOST_REQUIRE_EQUAL(value, 2.); | ||
::last_signal_status = 0; | ||
} | ||
{ | ||
auto const trap1 = fe_trap::make_shared_scoped(); | ||
{ | ||
auto const trap2 = fe_trap::make_shared_scoped(); | ||
BOOST_REQUIRE_EQUAL(trap1.get_flags(), trap2.get_flags()); | ||
value = 0.; | ||
while (sigsetjmp(::jmp_env, 1) == 0) { | ||
value = 2.; | ||
value = 0. / denominator; | ||
} | ||
BOOST_CHECK_EQUAL(::last_signal_status, SIGFPE); | ||
BOOST_REQUIRE(not std::isnan(value)); | ||
BOOST_REQUIRE_EQUAL(value, 2.); | ||
::last_signal_status = 0; | ||
} | ||
} | ||
std::signal(SIGFPE, SIG_DFL); | ||
std::signal(SIGILL, SIG_DFL); | ||
value = 1. / denominator; | ||
} | ||
|
||
BOOST_AUTO_TEST_CASE(exceptions) { | ||
{ | ||
auto const trap = fe_trap::make_unique_scoped(); | ||
BOOST_REQUIRE_THROW(fe_trap::make_unique_scoped(), std::runtime_error); | ||
BOOST_REQUIRE_THROW(fe_trap::make_shared_scoped(), std::runtime_error); | ||
} | ||
{ | ||
auto const trap = fe_trap::make_shared_scoped(); | ||
BOOST_REQUIRE_THROW(fe_trap::make_unique_scoped(), std::runtime_error); | ||
for (int other_excepts : {FE_INEXACT, FE_ALL_EXCEPT}) { | ||
if (trap.get_flags() != other_excepts) { | ||
BOOST_REQUIRE_THROW(fe_trap::make_shared_scoped(FE_ALL_EXCEPT), | ||
std::invalid_argument); | ||
} | ||
} | ||
} | ||
} | ||
#else | ||
#include <cstdio> | ||
int main() { | ||
#if defined(__STDC_IEC_559__) | ||
puts("defined(__STDC_IEC_559__)"); | ||
#else | ||
puts("!defined(__STDC_IEC_559__)"); | ||
#endif | ||
#if defined(__GLIBC__) | ||
puts("defined(__GLIBC__)"); | ||
#else | ||
puts("!defined(__GLIBC__)"); | ||
#endif | ||
#if defined(__FAST_MATH__) | ||
puts("defined(__FAST_MATH__)"); | ||
#else | ||
puts("!defined(__FAST_MATH__)"); | ||
#endif | ||
} | ||
#endif |