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