fetch1.cc (10379:c00f6d7e2681) | fetch1.cc (10713:eddb533708cb) |
---|---|
1/* 2 * Copyright (c) 2013-2014 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 --- 403 unchanged lines hidden (view full) --- 412 * queues */ 413 cpu.wakeupOnEvent(Pipeline::Fetch1StageId); 414 415 /* Never busy */ 416 return true; 417} 418 419void | 1/* 2 * Copyright (c) 2013-2014 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 --- 403 unchanged lines hidden (view full) --- 412 * queues */ 413 cpu.wakeupOnEvent(Pipeline::Fetch1StageId); 414 415 /* Never busy */ 416 return true; 417} 418 419void |
420Fetch1::recvRetry() | 420Fetch1::recvReqRetry() |
421{ 422 DPRINTF(Fetch, "recvRetry\n"); 423 assert(icacheState == IcacheNeedsRetry); 424 assert(!requests.empty()); 425 426 FetchRequestPtr retryRequest = requests.front(); 427 428 icacheState = IcacheRunning; --- 248 unchanged lines hidden --- | 421{ 422 DPRINTF(Fetch, "recvRetry\n"); 423 assert(icacheState == IcacheNeedsRetry); 424 assert(!requests.empty()); 425 426 FetchRequestPtr retryRequest = requests.front(); 427 428 icacheState = IcacheRunning; --- 248 unchanged lines hidden --- |