Searched refs:execute_tick (Results 1 - 2 of 2) sorted by relevance

/gem5/src/cpu/o3/probe/
H A Delastic_trace.cc534 Tick execute_tick = curTick(); local
540 if (hasLoadCompleted(past_record, execute_tick)) {
549 if (hasStoreCommitted(past_record, execute_tick)) {
572 Tick execute_tick = 0; local
576 execute_tick = new_record->executeTick;
580 execute_tick = curTick();
584 execute_tick = new_record->toCommitTick;
595 if (hasLoadBeenSent(past_record, execute_tick) ||
596 hasStoreCommitted(past_record, execute_tick) ||
597 hasCompCompleted(past_record, execute_tick)) {
[all...]
H A Delastic_trace.hh476 * @param execute_tick tick with which to compare past store's commit tick
480 bool hasStoreCommitted(TraceInfo* past_record, Tick execute_tick) const;
487 * @param execute_tick tick with which to compare past load's complete
492 bool hasLoadCompleted(TraceInfo* past_record, Tick execute_tick) const;
498 * @param execute_tick tick with which to compare past load's send tick
502 bool hasLoadBeenSent(TraceInfo* past_record, Tick execute_tick) const;
509 * @param execute_tick tick with which to compare past comp node's
514 bool hasCompCompleted(TraceInfo* past_record, Tick execute_tick) const;

Completed in 8 milliseconds