Searched refs:ex (Results 1 - 25 of 25) sorted by relevance

/gem5/src/base/loader/
H A Dexec_aout.h41 #define N_PAGSIZ(ex) (AOUT_LDPGSZ)
49 #define N_ALIGN(ex,x) \
50 (N_GETMAGIC(ex) == ZMAGIC ? \
54 #define N_BADMAG(ex) \
55 (N_GETMAGIC(ex) != NMAGIC && N_GETMAGIC(ex) != OMAGIC && \
56 N_GETMAGIC(ex) != ZMAGIC)
/gem5/src/arch/alpha/
H A Daout_machdep.h57 #define N_GETMAGIC(ex) ((ex).magic)
61 #define N_TXTADDR(ex) ((ex).text_start)
62 #define N_DATADDR(ex) ((ex).data_start)
63 #define N_BSSADDR(ex) ((ex).bss_start)
65 #define N_TXTOFF(ex) \
66 (N_GETMAGIC(ex)
[all...]
/gem5/ext/googletest/googlemock/test/
H A Dgmock_ex_test.cc74 } catch (const std::exception& ex) {
75 EXPECT_THAT(ex.what(), HasSubstr("has no default value"));
/gem5/src/systemc/tests/systemc/1666-2011-compliance/kill_reset/
H A Dkill_reset.cpp82 catch (const sc_unwind_exception& ex)
86 sc_assert( !ex.is_reset() );
93 throw ex;
148 catch (const sc_unwind_exception& ex)
152 sc_assert( ex.is_reset() );
155 sc_assert( !ex.is_reset() );
161 throw ex;
175 catch (const sc_unwind_exception& ex)
179 sc_assert( ex.is_reset() == false );
185 throw ex;
[all...]
/gem5/src/systemc/tests/systemc/tmp/compliance_1666_2011/section_6.6/test05/
H A Dtest05.cpp72 catch (const sc_unwind_exception& ex) {
76 sc_assert( !ex.is_reset() );
79 throw ex;
124 catch (const sc_unwind_exception& ex) {
127 sc_assert( ex.is_reset() );
130 sc_assert( !ex.is_reset() );
136 throw ex;
/gem5/src/systemc/tests/systemc/tmp/others/kill_reset/
H A Dkill_reset.cpp37 catch (const sc_unwind_exception& ex) {
40 sc_assert( !ex.is_reset() );
43 throw ex;
88 catch (const sc_unwind_exception& ex) {
91 sc_assert( ex.is_reset() );
94 sc_assert( !ex.is_reset() );
100 throw ex;
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test10/
H A Dtest10.cpp88 catch(sc_core::sc_unwind_exception& ex)
90 if ( !ex.is_reset() )
97 throw ex;
110 catch(sc_core::sc_unwind_exception& ex)
112 if ( !ex.is_reset() )
116 throw ex;
129 catch(sc_core::sc_unwind_exception& ex)
131 if ( !ex.is_reset() )
135 throw ex;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/throw_it/
H A Dthrow_it.cpp79 std::exception ex; member in struct:Top
84 t1.throw_it(ex);
86 catch (std::exception ex) {
102 t1.throw_it(ex);
109 t4.throw_it(ex); // Throw exception in method process
120 t1.throw_it(ex);
124 t1.throw_it(ex);
139 t1.throw_it(ex);
143 t1.throw_it(ex);
157 t1.throw_it(ex);
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_exceptions.cpp74 static py::exception<MyException> ex(m, "MyException");
80 ex(e.what());
125 catch (py::error_already_set& ex) {
126 if (!ex.matches(PyExc_KeyError)) throw;
137 catch (py::error_already_set &ex) {
138 if (!ex.matches(PyExc_Exception)) throw;
148 catch (py::error_already_set &ex) {
149 if (!ex.matches(PyExc_ImportError)) throw;
188 catch (py::error_already_set &ex) {
189 if (ex
[all...]
H A Dtest_virtual_functions.cpp213 m.def("runExampleVirt", [](ExampleVirt *ex, int value) { return ex->run(value); });
214 m.def("runExampleVirtBool", [](ExampleVirt* ex) { return ex->run_bool(); });
215 m.def("runExampleVirtVirtual", [](ExampleVirt *ex) { ex->pure_virtual(); });
/gem5/src/systemc/tests/systemc/kernel/dynamic_processes/test09/
H A Dtest09.cpp80 catch(sc_core::sc_unwind_exception& ex)
82 if ( !ex.is_reset() )
87 throw ex;
156 catch ( sc_core::sc_unwind_exception& ex )
158 if ( ex.is_reset() )
166 throw ex;
/gem5/src/systemc/tests/systemc/tmp/others/is_unwinding_bug/
H A Dis_unwinding_bug.cpp59 catch (const sc_unwind_exception& ex) {
63 throw ex;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/mixed_child_procs/
H A Dmixed_child_procs.cpp84 std::exception ex; member in struct:Top
102 t.throw_it(ex, SC_INCLUDE_DESCENDANTS);
103 m.throw_it(ex, SC_INCLUDE_DESCENDANTS);
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_elab/
H A Dproc_ctrl_elab.cpp142 ts2.throw_it(ex);
181 ts2.throw_it(ex);
211 ts2.throw_it(ex);
237 std::exception ex; local
/gem5/ext/systemc/src/sysc/kernel/
H A Dsc_method_process.h307 catch( sc_unwind_exception& ex ) {
309 ex.clear();
310 restart = ex.is_reset();
H A Dsc_thread_process.cpp125 catch( const sc_unwind_exception& ex ) {
126 ex.clear();
127 if ( ex.is_reset() ) continue;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_timeout/
H A Dproc_ctrl_timeout.cpp88 catch (sc_exception ex) {
97 catch (sc_exception ex) {
195 catch (sc_exception ex) {
/gem5/src/systemc/tests/systemc/1666-2011-compliance/include_descendants/
H A Dinclude_descendants.cpp68 std::exception ex; member in struct:Top
112 t7.throw_it(ex, SC_INCLUDE_DESCENDANTS);
/gem5/src/systemc/tests/systemc/1666-2011-compliance/sync_reset/
H A Dsync_reset.cpp298 catch (const sc_unwind_exception& ex) {
300 sc_assert( ex.is_reset() );
301 throw ex;
/gem5/src/systemc/tests/systemc/1666-2011-compliance/proc_ctrl_immed/
H A Dproc_ctrl_immed.cpp94 std::exception ex; member in struct:Top
179 t.throw_it(ex);
/gem5/ext/systemc/src/sysc/qt/
H A Dmeas.c7 #define assert(ex) \
9 if (!(ex)) { \
10 fprintf (stderr, "[%s:%d] Assertion " #ex " failed\n", __FILE__, __LINE__); \
/gem5/ext/ply/ply/
H A Dcpp.py483 ex = self.expand_macros([copy.copy(_x) for _x in m.value],expanded)
484 for e in ex:
486 tokens[i:i+1] = ex
487 i += len(ex)
/gem5/ext/pybind11/include/pybind11/
H A Dpybind11.h1803 exception<CppException> &get_exception_object() { static exception<CppException> ex; return ex; } local
1816 auto &ex = detail::get_exception_object<CppException>(); local
1817 if (!ex) ex = exception<CppException>(scope, name, base);
1827 return ex;
/gem5/src/cpu/kvm/
H A Dbase.cc1103 _kvmRun->ex.exception, _kvmRun->ex.error_code);
/gem5/src/arch/arm/
H A Dmiscregs_types.hh433 Bitfield<31> ex; member in namespace:ArmISA

Completed in 52 milliseconds