Searched refs:pcState (Results 76 - 100 of 102) sorted by relevance

12345

/gem5/src/cpu/minor/
H A Dlsq.cc81 TheISA::PCState old_pc = thread.pcState();
93 thread.pcState(old_pc);
103 TheISA::PCState old_pc = thread.pcState();
110 thread.pcState(old_pc);
1122 TheISA::PCState old_pc = thread.pcState();
1137 thread.pcState(old_pc);
H A Dfetch1.cc718 thread.pc = thread_ctx->pcState();
722 tid, thread_ctx->pcState());
/gem5/src/arch/sparc/
H A Dprocess.cc73 PCState pc = tc->pcState();
406 tc->pcState(getStartPC());
/gem5/src/cpu/o3/
H A Dcpu.hh483 void pcState(const TheISA::PCState &newPCState, ThreadID tid);
486 TheISA::PCState pcState(ThreadID tid);
/gem5/src/arch/mips/
H A Dfaults.hh260 tc->pcState(vect);
H A Dprocess.cc197 tc->pcState(getStartPC());
/gem5/src/arch/arm/
H A Dnativetrace.cc115 newState[STATE_PC] = tc->pcState().npc();
H A Dsystem.cc172 threadContexts[0]->pcState((kernelEntry & loadAddrMask) +
H A Disa.cc460 pc = tc->pcState();
800 PCState pc = tc->pcState();
813 tc->pcState(pc);
1737 tc->pcState().pc(), tc->contextId());
2005 tc->pcState().pc());
H A Dprocess.cc476 tc->pcState(pc);
/gem5/src/arch/x86/
H A Dnativetrace.cc90 rip = tc->pcState().npc();
H A Dsystem.cc296 tc->pcState(tc->getSystemPtr()->kernelEntry);
H A Dprocess.cc153 PCState pc = tc->pcState();
158 tc->pcState(pc);
1039 tc->pcState(getStartPC());
/gem5/src/cpu/
H A Dstatic_inst.hh288 virtual void advancePC(TheISA::PCState &pcState) const = 0;
H A Dsimple_thread.hh525 TheISA::PCState pcState() const override { return _pcState; }
526 void pcState(const TheISA::PCState &val) override { _pcState = val; }
H A Dbase_dyn_inst.hh871 TheISA::PCState pcState() const { return pc; } function in class:BaseDynInst
874 void pcState(const TheISA::PCState &val) { pc = val; } function in class:BaseDynInst
/gem5/src/arch/arm/insts/
H A Dvfp.hh854 advancePC(PCState &pcState) const
857 pcState.uEnd();
859 pcState.uAdvance();
861 pcState.advance();
/gem5/src/arch/power/
H A Dprocess.cc270 tc->pcState(getStartPC());
/gem5/src/arch/alpha/
H A Dprocess.cc183 tc->pcState(getStartPC());
H A Dev5.cc78 tc->pcState(tc->readMiscRegNoEffect(IPR_PAL_BASE) + reset->vect());
/gem5/src/cpu/simple/
H A Dtiming.cc673 TheISA::PCState pcState = thread->pcState();
674 bool needToFetch = !isRomMicroPC(pcState.microPC()) &&
/gem5/src/arch/arm/kvm/
H A Darmv8_cpu.cc355 tc->pcState(pc);
H A Darm_cpu.cc747 PCState pc(tc->pcState());
749 tc->pcState(pc);
/gem5/src/sim/
H A Dsyscall_emul.hh753 tgt_fd, req, tc->pcState());
1618 ctc->pcState(tc->readIntReg(TheISA::INTREG_RCX));
1623 TheISA::PCState cpc = tc->pcState();
1625 ctc->pcState(cpc);
1892 Addr pc = tc->pcState().pc();
2215 TheISA::PCState pcState = tc->pcState(); local
2216 tc->setNPC(pcState.instAddr());
H A Dpseudo_inst.cc190 panic("M5 panic instruction called at %s\n", tc->pcState());

Completed in 77 milliseconds

12345