mshr.hh (9264:1607119c36bb) mshr.hh (9663:45df88079f04)
1/*
1/*
2 * Copyright (c) 2012 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software
9 * licensed hereunder. You may use the software subject to the license
10 * terms below provided that you ensure that this notice is replicated
11 * unmodified and in its entirety in all distributions of the software,
12 * modified or unmodified, in source code or in binary form.
13 *
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;
9 * redistributions in binary form must reproduce the above copyright

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

274 bool checkFunctional(PacketPtr pkt);
275
276 /**
277 * Prints the contents of this MSHR for debugging.
278 */
279 void print(std::ostream &os,
280 int verbosity = 0,
281 const std::string &prefix = "") const;
14 * Copyright (c) 2002-2005 The Regents of The University of Michigan
15 * All rights reserved.
16 *
17 * Redistribution and use in source and binary forms, with or without
18 * modification, are permitted provided that the following conditions are
19 * met: redistributions of source code must retain the above copyright
20 * notice, this list of conditions and the following disclaimer;
21 * redistributions in binary form must reproduce the above copyright

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

286 bool checkFunctional(PacketPtr pkt);
287
288 /**
289 * Prints the contents of this MSHR for debugging.
290 */
291 void print(std::ostream &os,
292 int verbosity = 0,
293 const std::string &prefix = "") const;
294 /**
295 * A no-args wrapper of print(std::ostream...) meant to be
296 * invoked from DPRINTFs avoiding string overheads in fast mode
297 *
298 * @return string with mshr fields + [deferred]targets
299 */
300 std::string print() const;
282};
283
284#endif //__MSHR_HH__
301};
302
303#endif //__MSHR_HH__