Searched refs:takeOverFrom (Results 26 - 50 of 64) sorted by relevance

123

/gem5/src/cpu/
H A DBaseCPU.py120 PyBindMethod("takeOverFrom"),
145 """Does the CPU model support CPU takeOverFrom?"""
148 def takeOverFrom(self, old_cpu): member in class:BaseCPU
149 self._ccObject.takeOverFrom(old_cpu._ccObject)
H A Dthread_context.cc250 takeOverFrom(ThreadContext &ntc, ThreadContext &otc) function
H A Dbase.hh334 * takeOverFrom() on the new CPU with this CPU as its parameter.
349 virtual void takeOverFrom(BaseCPU *cpu);
/gem5/src/cpu/o3/
H A Dcpu.cc1137 FullO3CPU<Impl>::takeOverFrom(BaseCPU *oldCPU) function in class:FullO3CPU
1139 BaseCPU::takeOverFrom(oldCPU);
1141 fetch.takeOverFrom();
1142 decode.takeOverFrom();
1143 rename.takeOverFrom();
1144 iew.takeOverFrom();
1145 commit.takeOverFrom();
H A Dcommit.hh206 void takeOverFrom();
H A Diew.hh175 void takeOverFrom();
H A Dinst_queue.hh156 void takeOverFrom();
H A Drename.hh194 void takeOverFrom();
H A Dfetch.hh265 void takeOverFrom();
H A Dthread_context.hh168 void takeOverFrom(ThreadContext *old_context) override;
H A Diew_impl.hh435 DefaultIEW<Impl>::takeOverFrom() function in class:DefaultIEW
442 instQueue.takeOverFrom();
443 ldstQueue.takeOverFrom();
444 fuPool->takeOverFrom();
H A Drob_impl.hh146 ROB<Impl>::takeOverFrom() function in class:ROB
H A Dmem_dep_unit_impl.hh157 MemDepUnit<MemDepPred, Impl>::takeOverFrom() function in class:MemDepUnit
H A Dcpu.hh309 void takeOverFrom(BaseCPU *oldCPU) override;
/gem5/src/cpu/checker/
H A Dthread_context.hh195 takeOverFrom(ThreadContext *oldContext) override
197 actualTC->takeOverFrom(oldContext);
/gem5/util/cxx_config/
H A Dmain.cc297 new_cpu.takeOverFrom(&old_cpu);
/gem5/util/systemc/gem5_within_systemc/
H A Dmain.cc442 new_cpu.takeOverFrom(&old_cpu);
/gem5/src/arch/x86/
H A Ddecoder.hh286 void takeOverFrom(Decoder *old) function in class:X86ISA::Decoder
/gem5/src/cpu/kvm/
H A Dbase.hh96 void takeOverFrom(BaseCPU *cpu) override;
/gem5/src/python/m5/
H A Dsimulate.py316 new_cpu.takeOverFrom(old_cpu)
/gem5/src/cpu/simple/
H A Dtiming.hh278 void takeOverFrom(BaseCPU *oldCPU) override;
H A Datomic.cc208 AtomicSimpleCPU::takeOverFrom(BaseCPU *oldCPU) function in class:AtomicSimpleCPU
210 BaseSimpleCPU::takeOverFrom(oldCPU);
/gem5/src/arch/arm/
H A Dtlb.hh219 void takeOverFrom(BaseTLB *otlb) override;
396 * port connections during a CPU takeOverFrom() call. For
/gem5/src/cpu/trace/
H A Dtrace_cpu.hh190 * the old cpu. This function overrides the takeOverFrom() function in the
194 void takeOverFrom(BaseCPU *oldCPU);
H A Dtrace_cpu.cc106 TraceCPU::takeOverFrom(BaseCPU *oldCPU) function in class:TraceCPU
109 getInstPort().takeOverFrom(&oldCPU->getInstPort());
110 getDataPort().takeOverFrom(&oldCPU->getDataPort());

Completed in 36 milliseconds

123