Searched refs:exceptions (Results 1 - 4 of 4) sorted by relevance

/gem5/src/arch/arm/insts/
H A Dvfp.hh258 setFPExceptions(int exceptions) { argument
260 feraiseexcept(exceptions);
310 int exceptions = fetestexcept(FeAllExceptions); local
315 exceptions |= FeInvalid;
348 exceptions |= FeInexact;
407 exceptions |= FeInvalid;
408 exceptions &= ~FeInexact;
410 setFPExceptions(exceptions);
414 exceptions |= FeInvalid;
415 exceptions
[all...]
H A Dvfp.cc197 int exceptions = fetestexcept(FeAllExceptions); local
199 if ((exceptions & FeInvalid) && mask.ioc) {
202 if ((exceptions & FeDivByZero) && mask.dzc) {
205 if ((exceptions & FeOverflow) && mask.ofc) {
208 if (exceptions & FeUnderflow) {
213 if ((exceptions & FeInexact) && !(underflow && flush) && mask.ixc) {
/gem5/ext/pybind11/tests/
H A Dtest_exceptions.cpp2 tests/test_custom-exceptions.cpp -- exception translation
68 TEST_SUBMODULE(exceptions, m) {
H A Dtest_exceptions.py3 from pybind11_tests import exceptions as m
62 # Can we translate to standard Python exceptions?
67 # Can we handle unknown exceptions?

Completed in 13 milliseconds