base.cc (6978:ab05e20dc4a7) base.cc (7823:dac01f14f20f)
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;

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

119 DPRINTF(Cache, "Cache Unblocking\n");
120 blocked = false;
121 if (mustSendRetry)
122 {
123 DPRINTF(Cache, "Cache Sending Retry\n");
124 mustSendRetry = false;
125 SendRetryEvent *ev = new SendRetryEvent(this, true);
126 // @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;

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

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

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

--- 513 unchanged lines hidden ---