timing.hh (3647:8121d4503cbc) timing.hh (3846:a0fe3210ce53)
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;

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

89 virtual Tick recvAtomic(PacketPtr pkt);
90
91 virtual void recvFunctional(PacketPtr pkt);
92
93 virtual void recvStatusChange(Status status);
94
95 virtual void getDeviceAddressRanges(AddrRangeList &resp,
96 AddrRangeList &snoop)
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;

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

89 virtual Tick recvAtomic(PacketPtr pkt);
90
91 virtual void recvFunctional(PacketPtr pkt);
92
93 virtual void recvStatusChange(Status status);
94
95 virtual void getDeviceAddressRanges(AddrRangeList &resp,
96 AddrRangeList &snoop)
97 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,-1)); }
97 { resp.clear(); snoop.clear(); snoop.push_back(RangeSize(0,0)); }
98
99 struct TickEvent : public Event
100 {
101 PacketPtr pkt;
102 TimingSimpleCPU *cpu;
103
104 TickEvent(TimingSimpleCPU *_cpu)
105 :Event(&mainEventQueue), cpu(_cpu) {}

--- 99 unchanged lines hidden ---
98
99 struct TickEvent : public Event
100 {
101 PacketPtr pkt;
102 TimingSimpleCPU *cpu;
103
104 TickEvent(TimingSimpleCPU *_cpu)
105 :Event(&mainEventQueue), cpu(_cpu) {}

--- 99 unchanged lines hidden ---