lsq_unit.hh revision 2927
1/* 2 * Copyright (c) 2004-2006 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; 9 * redistributions in binary form must reproduce the above copyright 10 * notice, this list of conditions and the following disclaimer in the 11 * documentation and/or other materials provided with the distribution; 12 * neither the name of the copyright holders nor the names of its 13 * contributors may be used to endorse or promote products derived from 14 * this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 27 * 28 * Authors: Kevin Lim 29 * Korey Sewell 30 */ 31 32#ifndef __CPU_O3_LSQ_UNIT_HH__ 33#define __CPU_O3_LSQ_UNIT_HH__ 34 35#include <algorithm> 36#include <map> 37#include <queue> 38 39#include "arch/faults.hh" 40#include "config/full_system.hh" 41#include "base/hashmap.hh" 42#include "cpu/inst_seq.hh" 43#include "mem/packet_impl.hh" 44#include "mem/port.hh" 45 46/** 47 * Class that implements the actual LQ and SQ for each specific 48 * thread. Both are circular queues; load entries are freed upon 49 * committing, while store entries are freed once they writeback. The 50 * LSQUnit tracks if there are memory ordering violations, and also 51 * detects partial load to store forwarding cases (a store only has 52 * part of a load's data) that requires the load to wait until the 53 * store writes back. In the former case it holds onto the instruction 54 * until the dependence unit looks at it, and in the latter it stalls 55 * the LSQ until the store writes back. At that point the load is 56 * replayed. 57 */ 58template <class Impl> 59class LSQUnit { 60 protected: 61 typedef TheISA::IntReg IntReg; 62 public: 63 typedef typename Impl::Params Params; 64 typedef typename Impl::O3CPU O3CPU; 65 typedef typename Impl::DynInstPtr DynInstPtr; 66 typedef typename Impl::CPUPol::IEW IEW; 67 typedef typename Impl::CPUPol::LSQ LSQ; 68 typedef typename Impl::CPUPol::IssueStruct IssueStruct; 69 70 public: 71 /** Constructs an LSQ unit. init() must be called prior to use. */ 72 LSQUnit(); 73 74 /** Initializes the LSQ unit with the specified number of entries. */ 75 void init(Params *params, LSQ *lsq_ptr, unsigned maxLQEntries, 76 unsigned maxSQEntries, unsigned id); 77 78 /** Returns the name of the LSQ unit. */ 79 std::string name() const; 80 81 /** Registers statistics. */ 82 void regStats(); 83 84 /** Sets the CPU pointer. */ 85 void setCPU(O3CPU *cpu_ptr); 86 87 /** Sets the IEW stage pointer. */ 88 void setIEW(IEW *iew_ptr) 89 { iewStage = iew_ptr; } 90 91 /** Sets the pointer to the dcache port. */ 92 void setDcachePort(Port *dcache_port) 93 { dcachePort = dcache_port; } 94 95 /** Switches out LSQ unit. */ 96 void switchOut(); 97 98 /** Takes over from another CPU's thread. */ 99 void takeOverFrom(); 100 101 /** Returns if the LSQ is switched out. */ 102 bool isSwitchedOut() { return switchedOut; } 103 104 /** Ticks the LSQ unit, which in this case only resets the number of 105 * used cache ports. 106 * @todo: Move the number of used ports up to the LSQ level so it can 107 * be shared by all LSQ units. 108 */ 109 void tick() { usedPorts = 0; } 110 111 /** Inserts an instruction. */ 112 void insert(DynInstPtr &inst); 113 /** Inserts a load instruction. */ 114 void insertLoad(DynInstPtr &load_inst); 115 /** Inserts a store instruction. */ 116 void insertStore(DynInstPtr &store_inst); 117 118 /** Executes a load instruction. */ 119 Fault executeLoad(DynInstPtr &inst); 120 121 Fault executeLoad(int lq_idx) { panic("Not implemented"); return NoFault; } 122 /** Executes a store instruction. */ 123 Fault executeStore(DynInstPtr &inst); 124 125 /** Commits the head load. */ 126 void commitLoad(); 127 /** Commits loads older than a specific sequence number. */ 128 void commitLoads(InstSeqNum &youngest_inst); 129 130 /** Commits stores older than a specific sequence number. */ 131 void commitStores(InstSeqNum &youngest_inst); 132 133 /** Writes back stores. */ 134 void writebackStores(); 135 136 /** Completes the data access that has been returned from the 137 * memory system. */ 138 void completeDataAccess(PacketPtr pkt); 139 140 /** Clears all the entries in the LQ. */ 141 void clearLQ(); 142 143 /** Clears all the entries in the SQ. */ 144 void clearSQ(); 145 146 /** Resizes the LQ to a given size. */ 147 void resizeLQ(unsigned size); 148 149 /** Resizes the SQ to a given size. */ 150 void resizeSQ(unsigned size); 151 152 /** Squashes all instructions younger than a specific sequence number. */ 153 void squash(const InstSeqNum &squashed_num); 154 155 /** Returns if there is a memory ordering violation. Value is reset upon 156 * call to getMemDepViolator(). 157 */ 158 bool violation() { return memDepViolator; } 159 160 /** Returns the memory ordering violator. */ 161 DynInstPtr getMemDepViolator(); 162 163 /** Returns if a load became blocked due to the memory system. */ 164 bool loadBlocked() 165 { return isLoadBlocked; } 166 167 /** Clears the signal that a load became blocked. */ 168 void clearLoadBlocked() 169 { isLoadBlocked = false; } 170 171 /** Returns if the blocked load was handled. */ 172 bool isLoadBlockedHandled() 173 { return loadBlockedHandled; } 174 175 /** Records the blocked load as being handled. */ 176 void setLoadBlockedHandled() 177 { loadBlockedHandled = true; } 178 179 /** Returns the number of free entries (min of free LQ and SQ entries). */ 180 unsigned numFreeEntries(); 181 182 /** Returns the number of loads ready to execute. */ 183 int numLoadsReady(); 184 185 /** Returns the number of loads in the LQ. */ 186 int numLoads() { return loads; } 187 188 /** Returns the number of stores in the SQ. */ 189 int numStores() { return stores; } 190 191 /** Returns if either the LQ or SQ is full. */ 192 bool isFull() { return lqFull() || sqFull(); } 193 194 /** Returns if the LQ is full. */ 195 bool lqFull() { return loads >= (LQEntries - 1); } 196 197 /** Returns if the SQ is full. */ 198 bool sqFull() { return stores >= (SQEntries - 1); } 199 200 /** Returns the number of instructions in the LSQ. */ 201 unsigned getCount() { return loads + stores; } 202 203 /** Returns if there are any stores to writeback. */ 204 bool hasStoresToWB() { return storesToWB; } 205 206 /** Returns the number of stores to writeback. */ 207 int numStoresToWB() { return storesToWB; } 208 209 /** Returns if the LSQ unit will writeback on this cycle. */ 210 bool willWB() { return storeQueue[storeWBIdx].canWB && 211 !storeQueue[storeWBIdx].completed && 212 !isStoreBlocked; } 213 214 /** Handles doing the retry. */ 215 void recvRetry(); 216 217 private: 218 /** Writes back the instruction, sending it to IEW. */ 219 void writeback(DynInstPtr &inst, PacketPtr pkt); 220 221 /** Handles completing the send of a store to memory. */ 222 void storePostSend(Packet *pkt); 223 224 /** Completes the store at the specified index. */ 225 void completeStore(int store_idx); 226 227 /** Increments the given store index (circular queue). */ 228 inline void incrStIdx(int &store_idx); 229 /** Decrements the given store index (circular queue). */ 230 inline void decrStIdx(int &store_idx); 231 /** Increments the given load index (circular queue). */ 232 inline void incrLdIdx(int &load_idx); 233 /** Decrements the given load index (circular queue). */ 234 inline void decrLdIdx(int &load_idx); 235 236 public: 237 /** Debugging function to dump instructions in the LSQ. */ 238 void dumpInsts(); 239 240 private: 241 /** Pointer to the CPU. */ 242 O3CPU *cpu; 243 244 /** Pointer to the IEW stage. */ 245 IEW *iewStage; 246 247 /** Pointer to the LSQ. */ 248 LSQ *lsq; 249 250 /** Pointer to the dcache port. Used only for sending. */ 251 Port *dcachePort; 252 253 /** Derived class to hold any sender state the LSQ needs. */ 254 class LSQSenderState : public Packet::SenderState 255 { 256 public: 257 /** Default constructor. */ 258 LSQSenderState() 259 : noWB(false) 260 { } 261 262 /** Instruction who initiated the access to memory. */ 263 DynInstPtr inst; 264 /** Whether or not it is a load. */ 265 bool isLoad; 266 /** The LQ/SQ index of the instruction. */ 267 int idx; 268 /** Whether or not the instruction will need to writeback. */ 269 bool noWB; 270 }; 271 272 /** Writeback event, specifically for when stores forward data to loads. */ 273 class WritebackEvent : public Event { 274 public: 275 /** Constructs a writeback event. */ 276 WritebackEvent(DynInstPtr &_inst, PacketPtr pkt, LSQUnit *lsq_ptr); 277 278 /** Processes the writeback event. */ 279 void process(); 280 281 /** Returns the description of this event. */ 282 const char *description(); 283 284 private: 285 /** Instruction whose results are being written back. */ 286 DynInstPtr inst; 287 288 /** The packet that would have been sent to memory. */ 289 PacketPtr pkt; 290 291 /** The pointer to the LSQ unit that issued the store. */ 292 LSQUnit<Impl> *lsqPtr; 293 }; 294 295 public: 296 struct SQEntry { 297 /** Constructs an empty store queue entry. */ 298 SQEntry() 299 : inst(NULL), req(NULL), size(0), data(0), 300 canWB(0), committed(0), completed(0) 301 { } 302 303 /** Constructs a store queue entry for a given instruction. */ 304 SQEntry(DynInstPtr &_inst) 305 : inst(_inst), req(NULL), size(0), data(0), 306 canWB(0), committed(0), completed(0) 307 { } 308 309 /** The store instruction. */ 310 DynInstPtr inst; 311 /** The request for the store. */ 312 RequestPtr req; 313 /** The size of the store. */ 314 int size; 315 /** The store data. */ 316 IntReg data; 317 /** Whether or not the store can writeback. */ 318 bool canWB; 319 /** Whether or not the store is committed. */ 320 bool committed; 321 /** Whether or not the store is completed. */ 322 bool completed; 323 }; 324 325 private: 326 /** The LSQUnit thread id. */ 327 unsigned lsqID; 328 329 /** The store queue. */ 330 std::vector<SQEntry> storeQueue; 331 332 /** The load queue. */ 333 std::vector<DynInstPtr> loadQueue; 334 335 /** The number of LQ entries, plus a sentinel entry (circular queue). 336 * @todo: Consider having var that records the true number of LQ entries. 337 */ 338 unsigned LQEntries; 339 /** The number of SQ entries, plus a sentinel entry (circular queue). 340 * @todo: Consider having var that records the true number of SQ entries. 341 */ 342 unsigned SQEntries; 343 344 /** The number of load instructions in the LQ. */ 345 int loads; 346 /** The number of store instructions in the SQ. */ 347 int stores; 348 /** The number of store instructions in the SQ waiting to writeback. */ 349 int storesToWB; 350 351 /** The index of the head instruction in the LQ. */ 352 int loadHead; 353 /** The index of the tail instruction in the LQ. */ 354 int loadTail; 355 356 /** The index of the head instruction in the SQ. */ 357 int storeHead; 358 /** The index of the first instruction that may be ready to be 359 * written back, and has not yet been written back. 360 */ 361 int storeWBIdx; 362 /** The index of the tail instruction in the SQ. */ 363 int storeTail; 364 365 /// @todo Consider moving to a more advanced model with write vs read ports 366 /** The number of cache ports available each cycle. */ 367 int cachePorts; 368 369 /** The number of used cache ports in this cycle. */ 370 int usedPorts; 371 372 /** Is the LSQ switched out. */ 373 bool switchedOut; 374 375 //list<InstSeqNum> mshrSeqNums; 376 377 /** Wire to read information from the issue stage time queue. */ 378 typename TimeBuffer<IssueStruct>::wire fromIssue; 379 380 /** Whether or not the LSQ is stalled. */ 381 bool stalled; 382 /** The store that causes the stall due to partial store to load 383 * forwarding. 384 */ 385 InstSeqNum stallingStoreIsn; 386 /** The index of the above store. */ 387 int stallingLoadIdx; 388 389 /** The packet that needs to be retried. */ 390 PacketPtr retryPkt; 391 392 /** Whehter or not a store is blocked due to the memory system. */ 393 bool isStoreBlocked; 394 395 /** Whether or not a load is blocked due to the memory system. */ 396 bool isLoadBlocked; 397 398 /** Has the blocked load been handled. */ 399 bool loadBlockedHandled; 400 401 /** The sequence number of the blocked load. */ 402 InstSeqNum blockedLoadSeqNum; 403 404 /** The oldest load that caused a memory ordering violation. */ 405 DynInstPtr memDepViolator; 406 407 // Will also need how many read/write ports the Dcache has. Or keep track 408 // of that in stage that is one level up, and only call executeLoad/Store 409 // the appropriate number of times. 410 411 /** Total number of loads forwaded from LSQ stores. */ 412 Stats::Scalar<> lsqForwLoads; 413 414 /** Total number of loads ignored due to invalid addresses. */ 415 Stats::Scalar<> invAddrLoads; 416 417 /** Total number of squashed loads. */ 418 Stats::Scalar<> lsqSquashedLoads; 419 420 /** Total number of responses from the memory system that are 421 * ignored due to the instruction already being squashed. */ 422 Stats::Scalar<> lsqIgnoredResponses; 423 424 /** Total number of squashed stores. */ 425 Stats::Scalar<> lsqSquashedStores; 426 427 /** Total number of software prefetches ignored due to invalid addresses. */ 428 Stats::Scalar<> invAddrSwpfs; 429 430 /** Ready loads blocked due to partial store-forwarding. */ 431 Stats::Scalar<> lsqBlockedLoads; 432 433 /** Number of loads that were rescheduled. */ 434 Stats::Scalar<> lsqRescheduledLoads; 435 436 /** Number of times the LSQ is blocked due to the cache. */ 437 Stats::Scalar<> lsqCacheBlocked; 438 439 public: 440 /** Executes the load at the given index. */ 441 template <class T> 442 Fault read(Request *req, T &data, int load_idx); 443 444 /** Executes the store at the given index. */ 445 template <class T> 446 Fault write(Request *req, T &data, int store_idx); 447 448 /** Returns the index of the head load instruction. */ 449 int getLoadHead() { return loadHead; } 450 /** Returns the sequence number of the head load instruction. */ 451 InstSeqNum getLoadHeadSeqNum() 452 { 453 if (loadQueue[loadHead]) { 454 return loadQueue[loadHead]->seqNum; 455 } else { 456 return 0; 457 } 458 459 } 460 461 /** Returns the index of the head store instruction. */ 462 int getStoreHead() { return storeHead; } 463 /** Returns the sequence number of the head store instruction. */ 464 InstSeqNum getStoreHeadSeqNum() 465 { 466 if (storeQueue[storeHead].inst) { 467 return storeQueue[storeHead].inst->seqNum; 468 } else { 469 return 0; 470 } 471 472 } 473 474 /** Returns whether or not the LSQ unit is stalled. */ 475 bool isStalled() { return stalled; } 476}; 477 478template <class Impl> 479template <class T> 480Fault 481LSQUnit<Impl>::read(Request *req, T &data, int load_idx) 482{ 483 DynInstPtr load_inst = loadQueue[load_idx]; 484 485 assert(load_inst); 486 487 assert(!load_inst->isExecuted()); 488 489 // Make sure this isn't an uncacheable access 490 // A bit of a hackish way to get uncached accesses to work only if they're 491 // at the head of the LSQ and are ready to commit (at the head of the ROB 492 // too). 493 if (req->getFlags() & UNCACHEABLE && 494 (load_idx != loadHead || !load_inst->isAtCommit())) { 495 iewStage->rescheduleMemInst(load_inst); 496 ++lsqRescheduledLoads; 497 return TheISA::genMachineCheckFault(); 498 } 499 500 // Check the SQ for any previous stores that might lead to forwarding 501 int store_idx = load_inst->sqIdx; 502 503 int store_size = 0; 504 505 DPRINTF(LSQUnit, "Read called, load idx: %i, store idx: %i, " 506 "storeHead: %i addr: %#x\n", 507 load_idx, store_idx, storeHead, req->getPaddr()); 508 509#if FULL_SYSTEM 510 if (req->getFlags() & LOCKED) { 511 cpu->lockAddr = req->getPaddr(); 512 cpu->lockFlag = true; 513 } 514#endif 515 516 while (store_idx != -1) { 517 // End once we've reached the top of the LSQ 518 if (store_idx == storeWBIdx) { 519 break; 520 } 521 522 // Move the index to one younger 523 if (--store_idx < 0) 524 store_idx += SQEntries; 525 526 assert(storeQueue[store_idx].inst); 527 528 store_size = storeQueue[store_idx].size; 529 530 if (store_size == 0) 531 continue; 532 533 // Check if the store data is within the lower and upper bounds of 534 // addresses that the request needs. 535 bool store_has_lower_limit = 536 req->getVaddr() >= storeQueue[store_idx].inst->effAddr; 537 bool store_has_upper_limit = 538 (req->getVaddr() + req->getSize()) <= 539 (storeQueue[store_idx].inst->effAddr + store_size); 540 bool lower_load_has_store_part = 541 req->getVaddr() < (storeQueue[store_idx].inst->effAddr + 542 store_size); 543 bool upper_load_has_store_part = 544 (req->getVaddr() + req->getSize()) > 545 storeQueue[store_idx].inst->effAddr; 546 547 // If the store's data has all of the data needed, we can forward. 548 if (store_has_lower_limit && store_has_upper_limit) { 549 // Get shift amount for offset into the store's data. 550 int shift_amt = req->getVaddr() & (store_size - 1); 551 // @todo: Magic number, assumes byte addressing 552 shift_amt = shift_amt << 3; 553 554 // Cast this to type T? 555 data = storeQueue[store_idx].data >> shift_amt; 556 557 assert(!load_inst->memData); 558 load_inst->memData = new uint8_t[64]; 559 560 memcpy(load_inst->memData, &data, req->getSize()); 561 562 DPRINTF(LSQUnit, "Forwarding from store idx %i to load to " 563 "addr %#x, data %#x\n", 564 store_idx, req->getVaddr(), data); 565 566 PacketPtr data_pkt = new Packet(req, Packet::ReadReq, Packet::Broadcast); 567 data_pkt->dataStatic(load_inst->memData); 568 569 WritebackEvent *wb = new WritebackEvent(load_inst, data_pkt, this); 570 571 // We'll say this has a 1 cycle load-store forwarding latency 572 // for now. 573 // @todo: Need to make this a parameter. 574 wb->schedule(curTick); 575 576 ++lsqForwLoads; 577 return NoFault; 578 } else if ((store_has_lower_limit && lower_load_has_store_part) || 579 (store_has_upper_limit && upper_load_has_store_part) || 580 (lower_load_has_store_part && upper_load_has_store_part)) { 581 // This is the partial store-load forwarding case where a store 582 // has only part of the load's data. 583 584 // If it's already been written back, then don't worry about 585 // stalling on it. 586 if (storeQueue[store_idx].completed) { 587 continue; 588 } 589 590 // Must stall load and force it to retry, so long as it's the oldest 591 // load that needs to do so. 592 if (!stalled || 593 (stalled && 594 load_inst->seqNum < 595 loadQueue[stallingLoadIdx]->seqNum)) { 596 stalled = true; 597 stallingStoreIsn = storeQueue[store_idx].inst->seqNum; 598 stallingLoadIdx = load_idx; 599 } 600 601 // Tell IQ/mem dep unit that this instruction will need to be 602 // rescheduled eventually 603 iewStage->rescheduleMemInst(load_inst); 604 iewStage->decrWb(load_inst->seqNum); 605 ++lsqRescheduledLoads; 606 607 // Do not generate a writeback event as this instruction is not 608 // complete. 609 DPRINTF(LSQUnit, "Load-store forwarding mis-match. " 610 "Store idx %i to load addr %#x\n", 611 store_idx, req->getVaddr()); 612 613 ++lsqBlockedLoads; 614 return NoFault; 615 } 616 } 617 618 // If there's no forwarding case, then go access memory 619 DPRINTF(LSQUnit, "Doing memory access for inst [sn:%lli] PC %#x\n", 620 load_inst->seqNum, load_inst->readPC()); 621 622 assert(!load_inst->memData); 623 load_inst->memData = new uint8_t[64]; 624 625 ++usedPorts; 626 627 PacketPtr data_pkt = new Packet(req, Packet::ReadReq, Packet::Broadcast); 628 data_pkt->dataStatic(load_inst->memData); 629 630 LSQSenderState *state = new LSQSenderState; 631 state->isLoad = true; 632 state->idx = load_idx; 633 state->inst = load_inst; 634 data_pkt->senderState = state; 635 636 // if we the cache is not blocked, do cache access 637 if (!lsq->cacheBlocked()) { 638 if (!dcachePort->sendTiming(data_pkt)) { 639 // If the access didn't succeed, tell the LSQ by setting 640 // the retry thread id. 641 lsq->setRetryTid(lsqID); 642 } 643 } 644 645 // If the cache was blocked, or has become blocked due to the access, 646 // handle it. 647 if (lsq->cacheBlocked()) { 648 ++lsqCacheBlocked; 649 // There's an older load that's already going to squash. 650 if (isLoadBlocked && blockedLoadSeqNum < load_inst->seqNum) 651 return NoFault; 652 653 // Record that the load was blocked due to memory. This 654 // load will squash all instructions after it, be 655 // refetched, and re-executed. 656 isLoadBlocked = true; 657 loadBlockedHandled = false; 658 blockedLoadSeqNum = load_inst->seqNum; 659 // No fault occurred, even though the interface is blocked. 660 return NoFault; 661 } 662 663 if (data_pkt->result != Packet::Success) { 664 DPRINTF(LSQUnit, "LSQUnit: D-cache miss!\n"); 665 DPRINTF(Activity, "Activity: ld accessing mem miss [sn:%lli]\n", 666 load_inst->seqNum); 667 } else { 668 DPRINTF(LSQUnit, "LSQUnit: D-cache hit!\n"); 669 DPRINTF(Activity, "Activity: ld accessing mem hit [sn:%lli]\n", 670 load_inst->seqNum); 671 } 672 673 return NoFault; 674} 675 676template <class Impl> 677template <class T> 678Fault 679LSQUnit<Impl>::write(Request *req, T &data, int store_idx) 680{ 681 assert(storeQueue[store_idx].inst); 682 683 DPRINTF(LSQUnit, "Doing write to store idx %i, addr %#x data %#x" 684 " | storeHead:%i [sn:%i]\n", 685 store_idx, req->getPaddr(), data, storeHead, 686 storeQueue[store_idx].inst->seqNum); 687 688 storeQueue[store_idx].req = req; 689 storeQueue[store_idx].size = sizeof(T); 690 storeQueue[store_idx].data = data; 691 692 // This function only writes the data to the store queue, so no fault 693 // can happen here. 694 return NoFault; 695} 696 697#endif // __CPU_O3_LSQ_UNIT_HH__ 698