timing.hh (3170:37fd1e73f836) timing.hh (3192:f3e215dda3f6)
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;

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

87 virtual Tick recvAtomic(Packet *pkt);
88
89 virtual void recvFunctional(Packet *pkt);
90
91 virtual void recvStatusChange(Status status);
92
93 virtual void getDeviceAddressRanges(AddrRangeList &resp,
94 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;

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

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

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

--- 98 unchanged lines hidden ---