memtest.hh (8948:e95ee70f876c) memtest.hh (8975:7f36d4436074)
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;

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

92 public:
93
94 CpuPort(const std::string &_name, MemTest *_memtest)
95 : MasterPort(_name, _memtest), memtest(_memtest)
96 { }
97
98 protected:
99
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;

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

92 public:
93
94 CpuPort(const std::string &_name, MemTest *_memtest)
95 : MasterPort(_name, _memtest), memtest(_memtest)
96 { }
97
98 protected:
99
100 virtual bool recvTiming(PacketPtr pkt);
100 virtual bool recvTimingResp(PacketPtr pkt);
101
101
102 virtual bool recvTimingSnoop(PacketPtr pkt) { return true; }
102 virtual void recvTimingSnoopReq(PacketPtr pkt) { }
103
104 virtual Tick recvAtomicSnoop(PacketPtr pkt) { return 0; }
105
106 virtual void recvFunctionalSnoop(PacketPtr pkt) { }
107
108 virtual void recvRetry();
109 };
110

--- 88 unchanged lines hidden ---
103
104 virtual Tick recvAtomicSnoop(PacketPtr pkt) { return 0; }
105
106 virtual void recvFunctionalSnoop(PacketPtr pkt) { }
107
108 virtual void recvRetry();
109 };
110

--- 88 unchanged lines hidden ---