Searched refs:_pid (Results 1 - 8 of 8) sorted by relevance

/gem5/src/mem/
H A Dpage_table.hh70 const uint64_t _pid; member in class:EmulationPageTable
76 const std::string &__name, uint64_t _pid, Addr _pageSize) :
78 _pid(_pid), _name(__name), shared(false)
83 uint64_t pid() const { return _pid; };
75 EmulationPageTable( const std::string &__name, uint64_t _pid, Addr _pageSize) argument
H A Dmulti_level_page_table.hh197 MultiLevelPageTable(const std::string &__name, uint64_t _pid, argument
199 EmulationPageTable(__name, _pid, pageSize), system(_sys)
/gem5/src/sim/
H A Dprocess.hh87 inline uint64_t pid() { return _pid; }
237 uint64_t _pid; member in class:Process
H A Dprocess.cc103 _pid(params->pid), _ppid(params->ppid),
108 if (_pid >= System::maxPID)
109 fatal("_pid is too large: %d", _pid);
111 auto ret_pair = system->PIDs.emplace(_pid);
113 fatal("_pid %d is already used", _pid);
/gem5/src/cpu/
H A Dbase.hh145 uint32_t _pid; member in class:BaseCPU
211 uint32_t getPid() const { return _pid; }
212 void setPid(uint32_t pid) { _pid = pid; }
H A Dbase.cc132 _taskId(ContextSwitchTaskId::Unknown), _pid(invldPid),
595 _pid = oldCPU->getPid();
718 /* Unlike _pid, _taskId is not serialized, as they are dynamically
722 SERIALIZE_SCALAR(_pid);
739 UNSERIALIZE_SCALAR(_pid);
/gem5/src/arch/alpha/
H A Dprocess.cc190 tc->setMiscRegNoEffect(IPR_DTB_ASN, _pid << 57);
198 // need to set up ASN after unserialization since _pid value may
/gem5/src/arch/sparc/
H A Dprocess.cc151 tc->setMiscReg(MISCREG_MMU_P_CONTEXT, _pid);

Completed in 18 milliseconds