Searched refs:newPC (Results 1 - 10 of 10) sorted by relevance

/gem5/src/arch/alpha/
H A Dutility.cc103 PCState newPC = tc->pcState(); local
104 newPC.set(tc->readIntReg(ReturnAddressReg));
105 tc->pcState(newPC);
/gem5/src/arch/arm/
H A Dtypes.hh455 Addr newPC = val; local
457 if (bits(newPC, 0)) {
458 newPC = newPC & ~mask(1);
463 if (bits(newPC, 0)) {
465 newPC = newPC & ~mask(1);
466 } else if (!bits(newPC, 1)) {
472 newPC &= ~mask(2);
475 npc(newPC);
[all...]
H A Dutility.cc133 PCState newPC = tc->pcState(); local
135 newPC.set(tc->readIntReg(INTREG_X30));
137 newPC.set(tc->readIntReg(ReturnAddressReg) & ~ULL(1));
142 tc->pcStateNoRecord(newPC);
144 tc->pcState(newPC);
/gem5/src/arch/mips/
H A Dutility.cc271 PCState newPC = tc->pcState(); local
272 newPC.set(tc->readIntReg(ReturnAddressReg));
273 tc->pcState(newPC);
/gem5/src/cpu/o3/
H A Ddyn_inst_impl.hh206 TheISA::PCState newPC = this->cpu->pcState(this->threadNumber); local
207 if (!(curPC == newPC)) {
208 this->pcState(newPC);
H A Dfetch.hh332 inline void doSquash(const TheISA::PCState &newPC,
338 void squashFromDecode(const TheISA::PCState &newPC,
354 void squash(const TheISA::PCState &newPC, const InstSeqNum seq_num,
H A Dfetch_impl.hh761 DefaultFetch<Impl>::doSquash(const TheISA::PCState &newPC, argument
765 tid, newPC);
767 pc[tid] = newPC;
769 if (squashInst && squashInst->pcState().instAddr() == newPC.instAddr())
813 DefaultFetch<Impl>::squashFromDecode(const TheISA::PCState &newPC, argument
819 doSquash(newPC, squashInst, tid);
883 DefaultFetch<Impl>::squash(const TheISA::PCState &newPC, argument
889 doSquash(newPC, squashInst, tid);
/gem5/src/arch/sparc/
H A Dutility.cc251 PCState newPC = tc->pcState(); local
252 newPC.set(tc->readIntReg(ReturnAddressReg));
253 tc->pcState(newPC);
/gem5/util/statetrace/arch/amd64/
H A Dtracechild.cc394 uint64_t newPC, origPC = getPC(); local
397 newPC = getPC();
398 } while (newPC == origPC);
/gem5/util/minorview/
H A Dmodel.py183 self.newPC = 0
192 newPC, id = m.groups()
196 self.newPC = int(newPC, 0)
206 colours.number_to_colour(self.newPC)]

Completed in 28 milliseconds