Searched refs:_status (Results 1 - 25 of 29) sorted by relevance

12

/gem5/src/base/
H A Ddebug.hh67 bool _status; // flag status member in class:Debug::SimpleFlag
71 : Flag(name, desc), _status(false)
78 void enable() { _status = true; sync(); }
79 void disable() { _status = false; sync(); }
81 void sync() { _tracing = _active && _status; }
/gem5/src/cpu/simple/
H A Dtiming.cc84 _status = Idle;
102 if (_status == Idle ||
103 (_status == BaseSimpleCPU::Running && isCpuDrained())) {
113 if (_status == BaseSimpleCPU::Running && !fetchEvent.scheduled())
132 _status = BaseSimpleCPU::Idle;
140 _status = BaseSimpleCPU::Running;
182 assert(_status == BaseSimpleCPU::Running || _status == Idle);
216 if (_status == BaseSimpleCPU::Idle)
217 _status
[all...]
H A Datomic.cc91 _status = Idle;
158 _status = BaseSimpleCPU::Idle;
164 _status = BaseSimpleCPU::Running;
202 assert(_status == BaseSimpleCPU::Running || _status == Idle);
241 _status = BaseSimpleCPU::Running;
259 if (_status == Idle)
262 assert(_status == BaseSimpleCPU::Running);
267 _status = Idle;
665 if (_status
[all...]
H A Dbase.hh125 Status _status; member in class:BaseSimpleCPU
H A Dtiming.hh122 assert(cpu->_status == BaseSimpleCPU::Running);
123 cpu->_status = ITBWaitResponse;
H A Dbase.cc93 _status(Idle)
408 thread_info->notIdleFraction = (_status != Idle);
415 assert(_status == Idle || _status == Running);
/gem5/src/cpu/kvm/
H A Dbase.cc68 _status(Idle),
233 assert(_status = RunningMMIOPending);
236 _status = RunningServiceCompletion;
337 assert(_status == Idle);
347 assert(_status == Idle);
366 switch (_status) {
382 _status = Idle;
440 _status = Running;
442 _status = Idle;
452 assert(_status
[all...]
H A Dbase.hh231 Status _status; member in class:BaseKvmCPU
/gem5/src/cpu/
H A Dthread_state.hh136 Status status() const { return _status; }
139 void setStatus(Status new_status) { _status = new_status; }
163 ThreadContext::Status _status; member in struct:ThreadState
H A Dthread_state.cc48 _status(ThreadContext::Halted), baseCpu(cpu),
67 SERIALIZE_ENUM(_status);
86 UNSERIALIZE_ENUM(_status);
H A Dsimple_thread.cc131 _status = oldContext->status();
176 _status = ThreadContext::Active;
188 _status = ThreadContext::Suspended;
199 _status = ThreadContext::Halted;
H A Dsimple_thread.hh229 Status status() const override { return _status; }
231 void setStatus(Status newStatus) override { _status = newStatus; }
/gem5/src/systemc/core/
H A Dkernel.cc49 sc_core::sc_status _status = sc_core::SC_ELABORATION; member in namespace:sc_gem5::__anon141
56 sc_core::sc_status Kernel::status() { return _status; }
57 void Kernel::status(sc_core::sc_status s) { _status = s; }
H A Dscheduler.hh373 Status status() { return _status; }
374 void status(Status s) { _status = s; }
449 Status _status; member in class:sc_gem5::Scheduler
/gem5/src/cpu/o3/
H A Ddecode.hh95 DecodeStatus _status; member in class:DefaultDecode
H A Dcpu.cc145 _status = Running;
147 _status = SwitchedOut;
568 if (_status == SwitchedOut) {
572 } else if (!activityRec.active() || _status == Idle) {
729 _status = Running;
748 _status = Idle;
1103 _status = Idle;
1108 _status = Running;
1113 if (_status == Running)
1129 _status
[all...]
H A Ddecode_impl.hh106 _status = Inactive;
464 if (_status == Inactive) {
465 _status = Active;
474 if (_status == Active) {
475 _status = Inactive;
H A Dfetch_impl.hh384 _status = Inactive;
523 if (_status == Inactive) {
528 _status = Active;
536 if (_status == Active) {
541 _status = Inactive;
756 _status = updateFetchStatus();
856 if (_status == Inactive) {
872 if (_status == Active) {
941 _status = updateFetchStatus();
H A Drename_impl.hh283 _status = Inactive;
889 if (_status == Inactive) {
890 _status = Active;
899 if (_status == Active) {
900 _status = Inactive;
H A Diew_impl.hh97 _status = Active;
438 _status = Active;
744 if (_status == Active && !instQueue.hasReadyInsts() &&
750 _status = Inactive;
751 } else if (_status == Inactive && (instQueue.hasReadyInsts() ||
759 _status = Active;
H A Dcommit.hh125 CommitStatus _status; member in class:DefaultCommit
H A Diew.hh118 Status _status; member in class:DefaultIEW
H A Drename.hh116 RenameStatus _status; member in class:DefaultRename
H A Dfetch.hh205 FetchStatus _status; member in class:DefaultFetch
H A Dcommit_impl.hh105 _status = Active;
445 _status = Active;
490 if (_nextStatus == Inactive && _status == Active) {
493 } else if (_nextStatus == Active && _status == Inactive) {
498 _status = _nextStatus;

Completed in 64 milliseconds

12