base.hh (5999:3cf8e71257e0) base.hh (6227:a17798f2a52c)
1/*
2 * Copyright (c) 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;

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

49 protected:
50
51 /** The Prefetch Queue. */
52 std::list<PacketPtr> pf;
53
54 // PARAMETERS
55
56 /** The number of MSHRs in the Prefetch Queue. */
1/*
2 * Copyright (c) 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;

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

49 protected:
50
51 /** The Prefetch Queue. */
52 std::list<PacketPtr> pf;
53
54 // PARAMETERS
55
56 /** The number of MSHRs in the Prefetch Queue. */
57 const int size;
57 const unsigned size;
58
59 /** Pointr to the parent cache. */
60 BaseCache* cache;
61
62 /** The block size of the parent cache. */
63 int blkSize;
64
65 /** Do we prefetch across page boundaries. */

--- 75 unchanged lines hidden ---
58
59 /** Pointr to the parent cache. */
60 BaseCache* cache;
61
62 /** The block size of the parent cache. */
63 int blkSize;
64
65 /** Do we prefetch across page boundaries. */

--- 75 unchanged lines hidden ---