RubyDirectedTester.hh (8965:1ebd7c856abc) RubyDirectedTester.hh (8975:7f36d4436074)
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

54
55 public:
56 CpuPort(const std::string &_name, RubyDirectedTester *_tester,
57 Port::PortId _id)
58 : MasterPort(_name, _tester, _id), tester(_tester)
59 {}
60
61 protected:
1/*
2 * Copyright (c) 1999-2008 Mark D. Hill and David A. Wood
3 * Copyright (c) 2009-2010 Advanced Micro Devices, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

54
55 public:
56 CpuPort(const std::string &_name, RubyDirectedTester *_tester,
57 Port::PortId _id)
58 : MasterPort(_name, _tester, _id), tester(_tester)
59 {}
60
61 protected:
62 virtual bool recvTiming(PacketPtr pkt);
62 virtual bool recvTimingResp(PacketPtr pkt);
63 virtual void recvRetry()
64 { panic("%s does not expect a retry\n", name()); }
65 };
66
67 typedef RubyDirectedTesterParams Params;
68 RubyDirectedTester(const Params *p);
69 ~RubyDirectedTester();
70

--- 49 unchanged lines hidden ---
63 virtual void recvRetry()
64 { panic("%s does not expect a retry\n", name()); }
65 };
66
67 typedef RubyDirectedTesterParams Params;
68 RubyDirectedTester(const Params *p);
69 ~RubyDirectedTester();
70

--- 49 unchanged lines hidden ---