thread_state.hh (5715:e8c1d4e669a7) thread_state.hh (5999:3cf8e71257e0)
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 141 unchanged lines hidden (view full) ---

150 public:
151 /** Connects port to the functional port of the memory object
152 * below the CPU. */
153 void connectToMemFunc(Port *port);
154
155 /** Number of instructions committed. */
156 Counter numInst;
157 /** Stat for number instructions committed. */
1/*
2 * Copyright (c) 2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 141 unchanged lines hidden (view full) ---

150 public:
151 /** Connects port to the functional port of the memory object
152 * below the CPU. */
153 void connectToMemFunc(Port *port);
154
155 /** Number of instructions committed. */
156 Counter numInst;
157 /** Stat for number instructions committed. */
158 Stats::Scalar<> numInsts;
158 Stats::Scalar numInsts;
159 /** Stat for number of memory references. */
159 /** Stat for number of memory references. */
160 Stats::Scalar<> numMemRefs;
160 Stats::Scalar numMemRefs;
161
162 /** Number of simulated loads, used for tracking events based on
163 * the number of loads committed.
164 */
165 Counter numLoad;
166
167 /** The number of simulated loads committed prior to this run. */
168 Counter startNumLoad;

--- 89 unchanged lines hidden ---
161
162 /** Number of simulated loads, used for tracking events based on
163 * the number of loads committed.
164 */
165 Counter numLoad;
166
167 /** The number of simulated loads committed prior to this run. */
168 Counter startNumLoad;

--- 89 unchanged lines hidden ---