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

123

/gem5/src/sim/
H A DRoot.py35 class Root(SimObject): class in inherits:SimObject
40 if Root._the_instance:
41 fatal("Attempt to allocate multiple instances of Root.")
50 Root._the_instance = SimObject.__new__(cls)
51 return Root._the_instance
55 return Root._the_instance
60 type = 'Root'
H A Droot.cc42 Root *Root::_root = NULL;
51 Root::timeSync()
72 Root::timeSyncEnable(bool en)
90 Root::timeSyncPeriod(Time newPeriod)
100 Root::timeSyncSpinThreshold(Time newThreshold)
107 Root::Root(RootParams *p) function in class:Root
122 Root::startup()
128 Root
[all...]
H A Droot.hh32 * @file This file defines the Root simobject and the methods used to control
45 #include "params/Root.hh"
49 class Root : public SimObject class in inherits:SimObject
52 static Root *_root;
67 * Use this function to get a pointer to the single Root object in the
74 static Root *
104 Root(Params *p);
/gem5/configs/example/
H A Dsc_main.py33 from m5.objects import SystemC_Kernel, Root
38 root = Root(full_system=True, systemc_kernel=kernel)
H A Dhmc_hello.py84 root = Root(full_system=False, system=system)
/gem5/src/systemc/tests/
H A Dconfig.py36 from m5.objects import SystemC_Kernel, Root
41 root = Root(full_system=True, systemc_kernel=kernel)
/gem5/util/systemc/systemc_within_gem5/systemc_sc_main/
H A Dconfig.py32 from m5.objects import SystemC_Kernel, Root
40 root = Root(full_system=True, systemc_kernel=kernel)
/gem5/configs/learning_gem5/part2/
H A Dhello_goodbye.py48 root = Root(full_system = False)
H A Drun_simple.py33 It creates a Root object and one *very* simple SimObject and simulates the
47 root = Root(full_system = False)
/gem5/util/systemc/systemc_within_gem5/systemc_simple_object/
H A Dconfig.py34 from m5.objects import SystemC_Kernel, Root, SystemC_Printer, Gem5_Feeder
54 root = Root(full_system=True, systemc_kernel=kernel)
/gem5/tests/configs/
H A Do3-timing-ruby.py55 root = Root(full_system = False, system = system)
H A Dtgen-simple-mem.py78 root = Root(full_system = False, system = system)
H A Dtgen-dram-ctrl.py75 root = Root(full_system = False, system = system)
H A Do3-timing-mp-ruby.py64 root = Root(full_system = False, system = system)
H A Dsimple-atomic-mp-ruby.py62 root = Root(full_system = False, system = system)
H A Dt1000-simple-atomic.py57 root = Root(full_system=True, system=system)
H A Dmemtest.py77 root = Root( full_system = False, system = system )
H A Dmemtest-filter.py78 root = Root( full_system = False, system = system )
H A Dsimple-timing-ruby.py98 root = Root(full_system = False, system = system)
/gem5/src/python/m5/
H A Dsimulate.py80 root = objects.Root.getInstance()
83 fatal("Need to instantiate Root() before calling instantiate()")
163 root = objects.Root.getInstance()
226 root = objects.Root.getInstance()
227 if not isinstance(root, objects.Root):
236 if not isinstance(system, (objects.Root, objects.System)):
238 (type(system), objects.Root, objects.System))
359 root = objects.Root.getInstance()
/gem5/util/tlm/conf/
H A Dtlm_master.py73 root = Root(full_system = False, system = system)
H A Dtlm_slave.py75 root = Root(full_system = False, system = system)
/gem5/configs/learning_gem5/part3/
H A Druby_test.py73 root = Root(full_system = False, system = system)
/gem5/configs/dist/
H A Dsw.py75 root = Root(full_system = True, system = system)
/gem5/src/unittest/
H A Dgenini.py73 if 'root' in globals() and isinstance(root, Root):

Completed in 11 milliseconds

123