Searched refs:run (Results 51 - 75 of 90) sorted by relevance

1234

/gem5/configs/example/
H A Detrace_replay.py127 Simulation.run(options, root, system, FutureClass)
/gem5/src/dev/net/
H A Ddist_iface.hh45 * connected by Ethernet links). A dist gem5 run consists of seperate gem5
177 virtual bool run(bool same_tick) = 0;
225 bool run(bool same_tick) override;
264 bool run(bool same_tick) override;
571 * @param dist_rank Rank of this gem5 process within the dist run
H A Ddist_iface.cc126 DistIface::SyncNode::run(bool same_tick) function in class:DistIface::SyncNode
158 DistIface::SyncSwitch::run(bool same_tick) function in class:DistIface::SyncSwitch
299 run(false);
343 if (!DistIface::sync->run(false))
396 if (!DistIface::sync->run(true))
/gem5/util/systemc/gem5_within_systemc/
H A Dmain.cc131 void run();
152 SC_THREAD(run);
274 "run");
287 void SimControl::run() function in class:SimControl
294 " before SimControl::run");
437 // it is best to just move this call before the switchCpu loop in run()
/gem5/tests/testing/
H A Dtests.py62 # runner (run.py).
179 Test cases consists of one or more test units that are run in two
180 phases. A run phase (units produced by run_units() and a verify
182 the run phase fails.
198 """Units (typically RunGem5 instances) that describe the run phase of
206 """Verify the output from the run phase (see run_units())."""
211 """Update reference files with files from a test run"""
214 def run(self): member in class:Test
217 run_results = [ u.run() for u in self.run_units() ]
221 u.run() i
[all...]
/gem5/ext/pybind11/tests/
H A Dtest_virtual_functions.cpp23 virtual int run(int value) { function in class:ExampleVirt
25 "ExampleVirt::run(state={}, value={}, str1={}, str2={})"_s.format(state, value, get_string1(), *get_string2()));
48 int run(int value) override {
53 run, /* Name of function */
193 .def("run", &ExampleVirt::run)
213 m.def("runExampleVirt", [](ExampleVirt *ex, int value) { return ex->run(value); });
H A Dtest_virtual_functions.py13 def run(self, value): member in class:test_override.ExtendedExampleVirt
14 print('ExtendedExampleVirt::run(%i), calling parent..' % value)
15 return super(ExtendedExampleVirt, self).run(value + 1)
38 Original implementation of ExampleVirt::run(state=10, value=20, str1=default1, str2=default2)
49 ExtendedExampleVirt::run(20), calling parent..
50 Original implementation of ExampleVirt::run(state=11, value=21, str1=override1, str2=default2)
63 ExtendedExampleVirt::run(50), calling parent..
64 Original implementation of ExampleVirt::run(state=17, value=51, str1=override1, str2=override2)
/gem5/tests/test-progs/asmtest/src/riscv/isa/rv64ua/
H A Dlrsc.S21 # for now, only run this on core 0
/gem5/configs/example/arm/
H A Ddist_bigLITTLE.py61 " a distributed gem5 run.")
63 help="Rank of this system within the dist gem5 run.")
66 " run.")
139 bL.run(options.checkpoint_dir)
H A Dfs_bigLITTLE.py321 def run(checkpoint_dir=m5.options.outdir): function
346 run()
/gem5/src/systemc/tests/include/
H A DSimpleATInitiator1.h115 SC_THREAD(run);
183 void run() function in class:SimpleATInitiator1
268 // Notify end of request phase if run thread is waiting for it
H A DSimpleATInitiator2.h115 SC_THREAD(run);
179 void run() function in class:SimpleATInitiator2
266 // Notify end of request phase if run thread is waiting for it
H A DSimpleLTInitiator1_DMI.h74 SC_THREAD(run);
134 void run() function in class:SimpleLTInitiator1_dmi
H A DSimpleLTInitiator2_DMI.h75 SC_THREAD(run);
144 void run() function in class:SimpleLTInitiator2_dmi
H A DSimpleLTInitiator3_DMI.h73 SC_THREAD(run);
142 void run() function in class:SimpleLTInitiator3_dmi
/gem5/src/systemc/tests/tlm/static_extensions/ext2gp/
H A DSimpleLTInitiator_ext.h64 SC_THREAD(run);
133 void run() function in class:SimpleLTInitiator_ext
/gem5/src/systemc/tests/tlm/static_extensions/ext2gp2ext/
H A DSimpleLTInitiator_ext.h64 SC_THREAD(run);
133 void run() function in class:SimpleLTInitiator_ext
/gem5/ext/testlib/
H A Dsandbox.py153 def run(self): member in class:ExceptionProcess
155 super(ExceptionProcess, self).run()
H A Dhelper.py361 def run(self, *args, **kwargs): member in class:ExceptionThread
363 threading.Thread.run(self, *args, **kwargs)
/gem5/src/unittest/
H A Dstattest.cc117 void run();
395 StatTest::run() function in class:StatTest
682 .def("stattest_run", []() { __stattest().run(); })
/gem5/src/systemc/core/
H A Dprocess.hh108 void run();
H A Dprocess.cc186 // Clear suspended ready since we're about to run regardless.
264 Process::run() function in class:sc_gem5::Process
/gem5/src/systemc/tests/
H A Dverify.py129 def run(self, tests): member in class:CompilePhase
146 def run(self, tests): member in class:RunPhase
149 help='Time limit for each run in seconds, '
153 help='How many tests to run in parallel.')
403 def run(self, tests): member in class:VerifyPhase
522 help='Directory to run scons from')
594 phase.run(tests_to_run)
/gem5/src/dev/arm/
H A Dsmmu_v3_proc.cc204 SMMUProcess::run(PacketPtr pkt) function in class:SMMUProcess
/gem5/tests/
H A Dtests.py104 into the run command.
106 For example, to list all quick arm tests, run the following:
136 "run",
204 all_results.append(test.run())
217 run, but it can also be used to merge the outputs from
277 2: At least one test failed to run. This is what the summary
306 "run" : (_run_tests, _run_tests_args),
321 a list of tests tuples that can be used by the run command
322 (e.g., "tests.py run gem5.opt
325 The run comman
[all...]

Completed in 191 milliseconds

1234