base.hh (5252:c2804af3a7f4) base.hh (5336:c7e21f4e5a2e)
1/*
2 * Copyright (c) 2002-2005 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;

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

63 Counter lastNumInst;
64 BaseCPU *cpu;
65
66 public:
67 CPUProgressEvent(EventQueue *q, Tick ival, BaseCPU *_cpu);
68
69 void process();
70
1/*
2 * Copyright (c) 2002-2005 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;

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

63 Counter lastNumInst;
64 BaseCPU *cpu;
65
66 public:
67 CPUProgressEvent(EventQueue *q, Tick ival, BaseCPU *_cpu);
68
69 void process();
70
71 virtual const char *description();
71 virtual const char *description() const;
72};
73
74class BaseCPU : public MemObject
75{
76 protected:
77 // CPU's clock period in terms of the number of ticks of curTime.
78 Tick clock;
79 // @todo remove me after debugging with legion done

--- 225 unchanged lines hidden ---
72};
73
74class BaseCPU : public MemObject
75{
76 protected:
77 // CPU's clock period in terms of the number of ticks of curTime.
78 Tick clock;
79 // @todo remove me after debugging with legion done

--- 225 unchanged lines hidden ---