base.cc (8232:b28d06a175be) base.cc (8708:7ccbdea0fa12)
1/*
2 * Copyright (c) 2003-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;

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

121 DPRINTF(Cache, "Cache Unblocking\n");
122 blocked = false;
123 if (mustSendRetry)
124 {
125 DPRINTF(Cache, "Cache Sending Retry\n");
126 mustSendRetry = false;
127 SendRetryEvent *ev = new SendRetryEvent(this, true);
128 // @TODO: need to find a better time (next bus cycle?)
1/*
2 * Copyright (c) 2003-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;

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

121 DPRINTF(Cache, "Cache Unblocking\n");
122 blocked = false;
123 if (mustSendRetry)
124 {
125 DPRINTF(Cache, "Cache Sending Retry\n");
126 mustSendRetry = false;
127 SendRetryEvent *ev = new SendRetryEvent(this, true);
128 // @TODO: need to find a better time (next bus cycle?)
129 schedule(ev, curTick() + 1);
129 cache->schedule(ev, curTick() + 1);
130 }
131}
132
133
134void
135BaseCache::init()
136{
137 if (!cpuSidePort || !memSidePort)

--- 513 unchanged lines hidden ---
130 }
131}
132
133
134void
135BaseCache::init()
136{
137 if (!cpuSidePort || !memSidePort)

--- 513 unchanged lines hidden ---