base.cc (6331:d947798df4a1) base.cc (6429:7ed8937e375a)
1/*
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;

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

277 thread->mem->write(memReq, data);
278 if (dcacheInterface) {
279 memReq->cmd = Copy;
280 memReq->completionEvent = NULL;
281 memReq->paddr = thread->copySrcPhysAddr;
282 memReq->dest = dest_addr;
283 memReq->size = 64;
284 memReq->time = curTick;
1/*
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;

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

277 thread->mem->write(memReq, data);
278 if (dcacheInterface) {
279 memReq->cmd = Copy;
280 memReq->completionEvent = NULL;
281 memReq->paddr = thread->copySrcPhysAddr;
282 memReq->dest = dest_addr;
283 memReq->size = 64;
284 memReq->time = curTick;
285 memReq->flags &= ~INST_FETCH;
286 dcacheInterface->access(memReq);
287 }
288 }
289 else
290 assert(!fault->isAlignmentFault());
291
292 return fault;
293#else

--- 248 unchanged lines hidden ---
285 dcacheInterface->access(memReq);
286 }
287 }
288 else
289 assert(!fault->isAlignmentFault());
290
291 return fault;
292#else

--- 248 unchanged lines hidden ---