2006-04-23 00:26:48 +02:00
|
|
|
/*
|
2006-05-19 21:53:17 +02:00
|
|
|
* Copyright (c) 2004-2006 The Regents of The University of Michigan
|
2006-04-23 00:26:48 +02:00
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions are
|
|
|
|
* met: redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer;
|
|
|
|
* redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution;
|
|
|
|
* neither the name of the copyright holders nor the names of its
|
|
|
|
* contributors may be used to endorse or promote products derived from
|
|
|
|
* this software without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CPU_O3_LSQ_UNIT_HH__
|
|
|
|
#define __CPU_O3_LSQ_UNIT_HH__
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
#include <algorithm>
|
2006-04-23 00:26:48 +02:00
|
|
|
#include <map>
|
|
|
|
#include <queue>
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
#include "arch/faults.hh"
|
2006-04-23 00:26:48 +02:00
|
|
|
#include "config/full_system.hh"
|
|
|
|
#include "base/hashmap.hh"
|
|
|
|
#include "cpu/inst_seq.hh"
|
2006-06-03 00:15:20 +02:00
|
|
|
#include "mem/packet.hh"
|
|
|
|
#include "mem/port.hh"
|
2006-04-23 00:26:48 +02:00
|
|
|
//#include "mem/page_table.hh"
|
2006-05-19 21:53:17 +02:00
|
|
|
//#include "sim/debug.hh"
|
|
|
|
//#include "sim/sim_object.hh"
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
/**
|
2006-05-19 21:53:17 +02:00
|
|
|
* Class that implements the actual LQ and SQ for each specific
|
|
|
|
* thread. Both are circular queues; load entries are freed upon
|
|
|
|
* committing, while store entries are freed once they writeback. The
|
|
|
|
* LSQUnit tracks if there are memory ordering violations, and also
|
|
|
|
* detects partial load to store forwarding cases (a store only has
|
|
|
|
* part of a load's data) that requires the load to wait until the
|
|
|
|
* store writes back. In the former case it holds onto the instruction
|
|
|
|
* until the dependence unit looks at it, and in the latter it stalls
|
|
|
|
* the LSQ until the store writes back. At that point the load is
|
|
|
|
* replayed.
|
2006-04-23 00:26:48 +02:00
|
|
|
*/
|
|
|
|
template <class Impl>
|
|
|
|
class LSQUnit {
|
|
|
|
protected:
|
|
|
|
typedef TheISA::IntReg IntReg;
|
|
|
|
public:
|
|
|
|
typedef typename Impl::Params Params;
|
|
|
|
typedef typename Impl::FullCPU FullCPU;
|
|
|
|
typedef typename Impl::DynInstPtr DynInstPtr;
|
|
|
|
typedef typename Impl::CPUPol::IEW IEW;
|
|
|
|
typedef typename Impl::CPUPol::IssueStruct IssueStruct;
|
|
|
|
|
|
|
|
public:
|
|
|
|
/** Constructs an LSQ unit. init() must be called prior to use. */
|
|
|
|
LSQUnit();
|
|
|
|
|
|
|
|
/** Initializes the LSQ unit with the specified number of entries. */
|
|
|
|
void init(Params *params, unsigned maxLQEntries,
|
|
|
|
unsigned maxSQEntries, unsigned id);
|
|
|
|
|
|
|
|
/** Returns the name of the LSQ unit. */
|
|
|
|
std::string name() const;
|
|
|
|
|
|
|
|
/** Sets the CPU pointer. */
|
2006-06-03 00:15:20 +02:00
|
|
|
void setCPU(FullCPU *cpu_ptr);
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
/** Sets the IEW stage pointer. */
|
|
|
|
void setIEW(IEW *iew_ptr)
|
|
|
|
{ iewStage = iew_ptr; }
|
|
|
|
|
|
|
|
/** Sets the page table pointer. */
|
|
|
|
// void setPageTable(PageTable *pt_ptr);
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Switches out LSQ unit. */
|
2006-05-04 17:36:20 +02:00
|
|
|
void switchOut();
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Takes over from another CPU's thread. */
|
2006-05-04 17:36:20 +02:00
|
|
|
void takeOverFrom();
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Returns if the LSQ is switched out. */
|
2006-05-04 17:36:20 +02:00
|
|
|
bool isSwitchedOut() { return switchedOut; }
|
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
/** Ticks the LSQ unit, which in this case only resets the number of
|
|
|
|
* used cache ports.
|
|
|
|
* @todo: Move the number of used ports up to the LSQ level so it can
|
|
|
|
* be shared by all LSQ units.
|
|
|
|
*/
|
|
|
|
void tick() { usedPorts = 0; }
|
|
|
|
|
|
|
|
/** Inserts an instruction. */
|
|
|
|
void insert(DynInstPtr &inst);
|
|
|
|
/** Inserts a load instruction. */
|
|
|
|
void insertLoad(DynInstPtr &load_inst);
|
|
|
|
/** Inserts a store instruction. */
|
|
|
|
void insertStore(DynInstPtr &store_inst);
|
|
|
|
|
|
|
|
/** Executes a load instruction. */
|
|
|
|
Fault executeLoad(DynInstPtr &inst);
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
Fault executeLoad(int lq_idx) { panic("Not implemented"); return NoFault; }
|
2006-04-23 00:26:48 +02:00
|
|
|
/** Executes a store instruction. */
|
|
|
|
Fault executeStore(DynInstPtr &inst);
|
|
|
|
|
|
|
|
/** Commits the head load. */
|
|
|
|
void commitLoad();
|
|
|
|
/** Commits loads older than a specific sequence number. */
|
|
|
|
void commitLoads(InstSeqNum &youngest_inst);
|
|
|
|
|
|
|
|
/** Commits stores older than a specific sequence number. */
|
|
|
|
void commitStores(InstSeqNum &youngest_inst);
|
|
|
|
|
|
|
|
/** Writes back stores. */
|
|
|
|
void writebackStores();
|
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
void completeDataAccess(PacketPtr pkt);
|
|
|
|
|
|
|
|
void completeStoreDataAccess(DynInstPtr &inst);
|
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
// @todo: Include stats in the LSQ unit.
|
|
|
|
//void regStats();
|
|
|
|
|
|
|
|
/** Clears all the entries in the LQ. */
|
|
|
|
void clearLQ();
|
|
|
|
|
|
|
|
/** Clears all the entries in the SQ. */
|
|
|
|
void clearSQ();
|
|
|
|
|
|
|
|
/** Resizes the LQ to a given size. */
|
|
|
|
void resizeLQ(unsigned size);
|
|
|
|
|
|
|
|
/** Resizes the SQ to a given size. */
|
|
|
|
void resizeSQ(unsigned size);
|
|
|
|
|
|
|
|
/** Squashes all instructions younger than a specific sequence number. */
|
|
|
|
void squash(const InstSeqNum &squashed_num);
|
|
|
|
|
|
|
|
/** Returns if there is a memory ordering violation. Value is reset upon
|
|
|
|
* call to getMemDepViolator().
|
|
|
|
*/
|
|
|
|
bool violation() { return memDepViolator; }
|
|
|
|
|
|
|
|
/** Returns the memory ordering violator. */
|
|
|
|
DynInstPtr getMemDepViolator();
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
/** Returns if a load became blocked due to the memory system. */
|
2006-04-23 00:26:48 +02:00
|
|
|
bool loadBlocked()
|
|
|
|
{ return isLoadBlocked; }
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Clears the signal that a load became blocked. */
|
2006-04-23 00:26:48 +02:00
|
|
|
void clearLoadBlocked()
|
|
|
|
{ isLoadBlocked = false; }
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Returns if the blocked load was handled. */
|
2006-04-23 00:26:48 +02:00
|
|
|
bool isLoadBlockedHandled()
|
|
|
|
{ return loadBlockedHandled; }
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Records the blocked load as being handled. */
|
2006-04-23 00:26:48 +02:00
|
|
|
void setLoadBlockedHandled()
|
|
|
|
{ loadBlockedHandled = true; }
|
|
|
|
|
|
|
|
/** Returns the number of free entries (min of free LQ and SQ entries). */
|
|
|
|
unsigned numFreeEntries();
|
|
|
|
|
|
|
|
/** Returns the number of loads ready to execute. */
|
|
|
|
int numLoadsReady();
|
|
|
|
|
|
|
|
/** Returns the number of loads in the LQ. */
|
|
|
|
int numLoads() { return loads; }
|
|
|
|
|
|
|
|
/** Returns the number of stores in the SQ. */
|
|
|
|
int numStores() { return stores; }
|
|
|
|
|
|
|
|
/** Returns if either the LQ or SQ is full. */
|
|
|
|
bool isFull() { return lqFull() || sqFull(); }
|
|
|
|
|
|
|
|
/** Returns if the LQ is full. */
|
|
|
|
bool lqFull() { return loads >= (LQEntries - 1); }
|
|
|
|
|
|
|
|
/** Returns if the SQ is full. */
|
|
|
|
bool sqFull() { return stores >= (SQEntries - 1); }
|
|
|
|
|
|
|
|
/** Returns the number of instructions in the LSQ. */
|
|
|
|
unsigned getCount() { return loads + stores; }
|
|
|
|
|
|
|
|
/** Returns if there are any stores to writeback. */
|
|
|
|
bool hasStoresToWB() { return storesToWB; }
|
|
|
|
|
|
|
|
/** Returns the number of stores to writeback. */
|
|
|
|
int numStoresToWB() { return storesToWB; }
|
|
|
|
|
|
|
|
/** Returns if the LSQ unit will writeback on this cycle. */
|
|
|
|
bool willWB() { return storeQueue[storeWBIdx].canWB &&
|
2006-06-03 00:15:20 +02:00
|
|
|
!storeQueue[storeWBIdx].completed/* &&
|
|
|
|
!dcacheInterface->isBlocked()*/; }
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
/** Completes the store at the specified index. */
|
|
|
|
void completeStore(int store_idx);
|
|
|
|
|
|
|
|
/** Increments the given store index (circular queue). */
|
|
|
|
inline void incrStIdx(int &store_idx);
|
|
|
|
/** Decrements the given store index (circular queue). */
|
|
|
|
inline void decrStIdx(int &store_idx);
|
|
|
|
/** Increments the given load index (circular queue). */
|
|
|
|
inline void incrLdIdx(int &load_idx);
|
|
|
|
/** Decrements the given load index (circular queue). */
|
|
|
|
inline void decrLdIdx(int &load_idx);
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
public:
|
|
|
|
/** Debugging function to dump instructions in the LSQ. */
|
|
|
|
void dumpInsts();
|
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
private:
|
|
|
|
/** Pointer to the CPU. */
|
|
|
|
FullCPU *cpu;
|
|
|
|
|
|
|
|
/** Pointer to the IEW stage. */
|
|
|
|
IEW *iewStage;
|
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
MemObject *mem;
|
|
|
|
|
|
|
|
class DcachePort : public Port
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
FullCPU *cpu;
|
|
|
|
LSQUnit *lsq;
|
|
|
|
|
|
|
|
public:
|
|
|
|
DcachePort(FullCPU *_cpu, LSQUnit *_lsq)
|
|
|
|
: Port(_lsq->name() + "-dport"), cpu(_cpu), lsq(_lsq)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual Tick recvAtomic(PacketPtr pkt);
|
|
|
|
|
|
|
|
virtual void recvFunctional(PacketPtr pkt);
|
|
|
|
|
|
|
|
virtual void recvStatusChange(Status status);
|
|
|
|
|
|
|
|
virtual void getDeviceAddressRanges(AddrRangeList &resp,
|
|
|
|
AddrRangeList &snoop)
|
|
|
|
{ resp.clear(); snoop.clear(); }
|
|
|
|
|
|
|
|
virtual bool recvTiming(PacketPtr pkt);
|
|
|
|
|
|
|
|
virtual void recvRetry();
|
|
|
|
};
|
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
/** Pointer to the D-cache. */
|
2006-06-03 00:15:20 +02:00
|
|
|
DcachePort *dcachePort;
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
/** Pointer to the page table. */
|
|
|
|
// PageTable *pTable;
|
|
|
|
|
|
|
|
public:
|
|
|
|
struct SQEntry {
|
|
|
|
/** Constructs an empty store queue entry. */
|
|
|
|
SQEntry()
|
|
|
|
: inst(NULL), req(NULL), size(0), data(0),
|
|
|
|
canWB(0), committed(0), completed(0)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/** Constructs a store queue entry for a given instruction. */
|
|
|
|
SQEntry(DynInstPtr &_inst)
|
|
|
|
: inst(_inst), req(NULL), size(0), data(0),
|
|
|
|
canWB(0), committed(0), completed(0)
|
|
|
|
{ }
|
|
|
|
|
|
|
|
/** The store instruction. */
|
|
|
|
DynInstPtr inst;
|
2006-06-03 00:15:20 +02:00
|
|
|
/** The request for the store. */
|
|
|
|
RequestPtr req;
|
2006-04-23 00:26:48 +02:00
|
|
|
/** The size of the store. */
|
|
|
|
int size;
|
|
|
|
/** The store data. */
|
|
|
|
IntReg data;
|
|
|
|
/** Whether or not the store can writeback. */
|
|
|
|
bool canWB;
|
|
|
|
/** Whether or not the store is committed. */
|
|
|
|
bool committed;
|
|
|
|
/** Whether or not the store is completed. */
|
|
|
|
bool completed;
|
|
|
|
};
|
2006-05-19 21:53:17 +02:00
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
private:
|
|
|
|
/** The LSQUnit thread id. */
|
|
|
|
unsigned lsqID;
|
|
|
|
|
|
|
|
/** The store queue. */
|
|
|
|
std::vector<SQEntry> storeQueue;
|
|
|
|
|
|
|
|
/** The load queue. */
|
|
|
|
std::vector<DynInstPtr> loadQueue;
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
/** The number of LQ entries, plus a sentinel entry (circular queue).
|
|
|
|
* @todo: Consider having var that records the true number of LQ entries.
|
|
|
|
*/
|
2006-04-23 00:26:48 +02:00
|
|
|
unsigned LQEntries;
|
2006-05-19 21:53:17 +02:00
|
|
|
/** The number of SQ entries, plus a sentinel entry (circular queue).
|
|
|
|
* @todo: Consider having var that records the true number of SQ entries.
|
|
|
|
*/
|
2006-04-23 00:26:48 +02:00
|
|
|
unsigned SQEntries;
|
|
|
|
|
|
|
|
/** The number of load instructions in the LQ. */
|
|
|
|
int loads;
|
2006-05-19 21:53:17 +02:00
|
|
|
/** The number of store instructions in the SQ. */
|
2006-04-23 00:26:48 +02:00
|
|
|
int stores;
|
|
|
|
/** The number of store instructions in the SQ waiting to writeback. */
|
|
|
|
int storesToWB;
|
|
|
|
|
|
|
|
/** The index of the head instruction in the LQ. */
|
|
|
|
int loadHead;
|
|
|
|
/** The index of the tail instruction in the LQ. */
|
|
|
|
int loadTail;
|
|
|
|
|
|
|
|
/** The index of the head instruction in the SQ. */
|
|
|
|
int storeHead;
|
2006-05-19 21:53:17 +02:00
|
|
|
/** The index of the first instruction that may be ready to be
|
|
|
|
* written back, and has not yet been written back.
|
2006-04-23 00:26:48 +02:00
|
|
|
*/
|
|
|
|
int storeWBIdx;
|
|
|
|
/** The index of the tail instruction in the SQ. */
|
|
|
|
int storeTail;
|
|
|
|
|
|
|
|
/// @todo Consider moving to a more advanced model with write vs read ports
|
|
|
|
/** The number of cache ports available each cycle. */
|
|
|
|
int cachePorts;
|
|
|
|
|
|
|
|
/** The number of used cache ports in this cycle. */
|
|
|
|
int usedPorts;
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Is the LSQ switched out. */
|
2006-05-04 17:36:20 +02:00
|
|
|
bool switchedOut;
|
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
//list<InstSeqNum> mshrSeqNums;
|
|
|
|
|
|
|
|
/** Wire to read information from the issue stage time queue. */
|
|
|
|
typename TimeBuffer<IssueStruct>::wire fromIssue;
|
|
|
|
|
|
|
|
/** Whether or not the LSQ is stalled. */
|
|
|
|
bool stalled;
|
|
|
|
/** The store that causes the stall due to partial store to load
|
|
|
|
* forwarding.
|
|
|
|
*/
|
|
|
|
InstSeqNum stallingStoreIsn;
|
|
|
|
/** The index of the above store. */
|
|
|
|
int stallingLoadIdx;
|
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
/** Whether or not a load is blocked due to the memory system. */
|
2006-04-23 00:26:48 +02:00
|
|
|
bool isLoadBlocked;
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** Has the blocked load been handled. */
|
2006-04-23 00:26:48 +02:00
|
|
|
bool loadBlockedHandled;
|
|
|
|
|
2006-05-31 17:45:02 +02:00
|
|
|
/** The sequence number of the blocked load. */
|
2006-04-23 00:26:48 +02:00
|
|
|
InstSeqNum blockedLoadSeqNum;
|
|
|
|
|
|
|
|
/** The oldest load that caused a memory ordering violation. */
|
|
|
|
DynInstPtr memDepViolator;
|
|
|
|
|
|
|
|
// Will also need how many read/write ports the Dcache has. Or keep track
|
|
|
|
// of that in stage that is one level up, and only call executeLoad/Store
|
|
|
|
// the appropriate number of times.
|
2006-05-04 17:36:20 +02:00
|
|
|
/*
|
|
|
|
// total number of loads forwaded from LSQ stores
|
|
|
|
Stats::Vector<> lsq_forw_loads;
|
|
|
|
|
|
|
|
// total number of loads ignored due to invalid addresses
|
|
|
|
Stats::Vector<> inv_addr_loads;
|
|
|
|
|
|
|
|
// total number of software prefetches ignored due to invalid addresses
|
|
|
|
Stats::Vector<> inv_addr_swpfs;
|
|
|
|
|
|
|
|
// total non-speculative bogus addresses seen (debug var)
|
|
|
|
Counter sim_invalid_addrs;
|
|
|
|
Stats::Vector<> fu_busy; //cumulative fu busy
|
2006-04-23 00:26:48 +02:00
|
|
|
|
2006-05-04 17:36:20 +02:00
|
|
|
// ready loads blocked due to memory disambiguation
|
|
|
|
Stats::Vector<> lsq_blocked_loads;
|
|
|
|
|
|
|
|
Stats::Scalar<> lsqInversion;
|
|
|
|
*/
|
2006-04-23 00:26:48 +02:00
|
|
|
public:
|
|
|
|
/** Executes the load at the given index. */
|
|
|
|
template <class T>
|
2006-06-03 00:15:20 +02:00
|
|
|
Fault read(Request *req, T &data, int load_idx);
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
/** Executes the store at the given index. */
|
|
|
|
template <class T>
|
2006-06-03 00:15:20 +02:00
|
|
|
Fault write(Request *req, T &data, int store_idx);
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
/** Returns the index of the head load instruction. */
|
|
|
|
int getLoadHead() { return loadHead; }
|
|
|
|
/** Returns the sequence number of the head load instruction. */
|
|
|
|
InstSeqNum getLoadHeadSeqNum()
|
|
|
|
{
|
|
|
|
if (loadQueue[loadHead]) {
|
|
|
|
return loadQueue[loadHead]->seqNum;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns the index of the head store instruction. */
|
|
|
|
int getStoreHead() { return storeHead; }
|
|
|
|
/** Returns the sequence number of the head store instruction. */
|
|
|
|
InstSeqNum getStoreHeadSeqNum()
|
|
|
|
{
|
|
|
|
if (storeQueue[storeHead].inst) {
|
|
|
|
return storeQueue[storeHead].inst->seqNum;
|
|
|
|
} else {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Returns whether or not the LSQ unit is stalled. */
|
|
|
|
bool isStalled() { return stalled; }
|
|
|
|
};
|
|
|
|
|
|
|
|
template <class Impl>
|
|
|
|
template <class T>
|
|
|
|
Fault
|
2006-06-03 00:15:20 +02:00
|
|
|
LSQUnit<Impl>::read(Request *req, T &data, int load_idx)
|
2006-04-23 00:26:48 +02:00
|
|
|
{
|
2006-06-03 00:15:20 +02:00
|
|
|
DynInstPtr load_inst = loadQueue[load_idx];
|
|
|
|
|
|
|
|
assert(load_inst);
|
2006-04-23 00:26:48 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
assert(!load_inst->isExecuted());
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
// Make sure this isn't an uncacheable access
|
|
|
|
// A bit of a hackish way to get uncached accesses to work only if they're
|
|
|
|
// at the head of the LSQ and are ready to commit (at the head of the ROB
|
|
|
|
// too).
|
2006-06-03 00:15:20 +02:00
|
|
|
if (req->getFlags() & UNCACHEABLE &&
|
|
|
|
(load_idx != loadHead || !load_inst->reachedCommit)) {
|
|
|
|
iewStage->rescheduleMemInst(load_inst);
|
2006-04-23 00:26:48 +02:00
|
|
|
return TheISA::genMachineCheckFault();
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check the SQ for any previous stores that might lead to forwarding
|
2006-06-03 00:15:20 +02:00
|
|
|
int store_idx = load_inst->sqIdx;
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
int store_size = 0;
|
|
|
|
|
|
|
|
DPRINTF(LSQUnit, "Read called, load idx: %i, store idx: %i, "
|
|
|
|
"storeHead: %i addr: %#x\n",
|
2006-06-03 00:15:20 +02:00
|
|
|
load_idx, store_idx, storeHead, req->getPaddr());
|
2006-04-23 00:26:48 +02:00
|
|
|
|
2006-05-19 21:53:17 +02:00
|
|
|
#if 0
|
2006-06-03 00:15:20 +02:00
|
|
|
if (req->getFlags() & LOCKED) {
|
|
|
|
cpu->lockAddr = req->getPaddr();
|
2006-04-23 00:26:48 +02:00
|
|
|
cpu->lockFlag = true;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
while (store_idx != -1) {
|
|
|
|
// End once we've reached the top of the LSQ
|
|
|
|
if (store_idx == storeWBIdx) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Move the index to one younger
|
|
|
|
if (--store_idx < 0)
|
|
|
|
store_idx += SQEntries;
|
|
|
|
|
|
|
|
assert(storeQueue[store_idx].inst);
|
|
|
|
|
|
|
|
store_size = storeQueue[store_idx].size;
|
|
|
|
|
|
|
|
if (store_size == 0)
|
|
|
|
continue;
|
|
|
|
|
|
|
|
// Check if the store data is within the lower and upper bounds of
|
|
|
|
// addresses that the request needs.
|
|
|
|
bool store_has_lower_limit =
|
2006-06-03 00:15:20 +02:00
|
|
|
req->getVaddr() >= storeQueue[store_idx].inst->effAddr;
|
2006-04-23 00:26:48 +02:00
|
|
|
bool store_has_upper_limit =
|
2006-06-03 00:15:20 +02:00
|
|
|
(req->getVaddr() + req->getSize()) <=
|
|
|
|
(storeQueue[store_idx].inst->effAddr + store_size);
|
2006-04-23 00:26:48 +02:00
|
|
|
bool lower_load_has_store_part =
|
2006-06-03 00:15:20 +02:00
|
|
|
req->getVaddr() < (storeQueue[store_idx].inst->effAddr +
|
2006-04-23 00:26:48 +02:00
|
|
|
store_size);
|
|
|
|
bool upper_load_has_store_part =
|
2006-06-03 00:15:20 +02:00
|
|
|
(req->getVaddr() + req->getSize()) >
|
|
|
|
storeQueue[store_idx].inst->effAddr;
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
// If the store's data has all of the data needed, we can forward.
|
|
|
|
if (store_has_lower_limit && store_has_upper_limit) {
|
2006-05-19 21:53:17 +02:00
|
|
|
// Get shift amount for offset into the store's data.
|
2006-06-03 00:15:20 +02:00
|
|
|
int shift_amt = req->getVaddr() & (store_size - 1);
|
2006-05-19 21:53:17 +02:00
|
|
|
// @todo: Magic number, assumes byte addressing
|
2006-04-23 00:26:48 +02:00
|
|
|
shift_amt = shift_amt << 3;
|
|
|
|
|
|
|
|
// Cast this to type T?
|
|
|
|
data = storeQueue[store_idx].data >> shift_amt;
|
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
assert(!load_inst->memData);
|
|
|
|
load_inst->memData = new uint8_t[64];
|
2006-04-23 00:26:48 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
memcpy(load_inst->memData, &data, req->getSize());
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
DPRINTF(LSQUnit, "Forwarding from store idx %i to load to "
|
|
|
|
"addr %#x, data %#x\n",
|
2006-06-03 00:15:20 +02:00
|
|
|
store_idx, req->getVaddr(), *(load_inst->memData));
|
|
|
|
/*
|
|
|
|
typename LdWritebackEvent *wb =
|
|
|
|
new typename LdWritebackEvent(load_inst,
|
|
|
|
iewStage);
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
// We'll say this has a 1 cycle load-store forwarding latency
|
|
|
|
// for now.
|
|
|
|
// @todo: Need to make this a parameter.
|
|
|
|
wb->schedule(curTick);
|
2006-06-03 00:15:20 +02:00
|
|
|
*/
|
2006-04-23 00:26:48 +02:00
|
|
|
// Should keep track of stat for forwarded data
|
|
|
|
return NoFault;
|
|
|
|
} else if ((store_has_lower_limit && lower_load_has_store_part) ||
|
|
|
|
(store_has_upper_limit && upper_load_has_store_part) ||
|
|
|
|
(lower_load_has_store_part && upper_load_has_store_part)) {
|
|
|
|
// This is the partial store-load forwarding case where a store
|
|
|
|
// has only part of the load's data.
|
|
|
|
|
|
|
|
// If it's already been written back, then don't worry about
|
|
|
|
// stalling on it.
|
|
|
|
if (storeQueue[store_idx].completed) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Must stall load and force it to retry, so long as it's the oldest
|
|
|
|
// load that needs to do so.
|
|
|
|
if (!stalled ||
|
|
|
|
(stalled &&
|
2006-06-03 00:15:20 +02:00
|
|
|
load_inst->seqNum <
|
2006-04-23 00:26:48 +02:00
|
|
|
loadQueue[stallingLoadIdx]->seqNum)) {
|
|
|
|
stalled = true;
|
|
|
|
stallingStoreIsn = storeQueue[store_idx].inst->seqNum;
|
|
|
|
stallingLoadIdx = load_idx;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Tell IQ/mem dep unit that this instruction will need to be
|
|
|
|
// rescheduled eventually
|
2006-06-03 00:15:20 +02:00
|
|
|
iewStage->rescheduleMemInst(load_inst);
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
// Do not generate a writeback event as this instruction is not
|
|
|
|
// complete.
|
|
|
|
DPRINTF(LSQUnit, "Load-store forwarding mis-match. "
|
|
|
|
"Store idx %i to load addr %#x\n",
|
2006-06-03 00:15:20 +02:00
|
|
|
store_idx, req->getVaddr());
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
return NoFault;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// If there's no forwarding case, then go access memory
|
2006-05-19 21:53:17 +02:00
|
|
|
DPRINTF(LSQUnit, "Doing functional access for inst [sn:%lli] PC %#x\n",
|
2006-06-03 00:15:20 +02:00
|
|
|
load_inst->seqNum, load_inst->readPC());
|
2006-05-19 21:53:17 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
assert(!load_inst->memData);
|
|
|
|
load_inst->memData = new uint8_t[64];
|
2006-04-23 00:26:48 +02:00
|
|
|
|
|
|
|
++usedPorts;
|
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
DPRINTF(LSQUnit, "Doing timing access for inst PC %#x\n",
|
|
|
|
load_inst->readPC());
|
2006-05-19 21:53:17 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
PacketPtr data_pkt = new Packet(req, Packet::ReadReq, Packet::Broadcast);
|
|
|
|
data_pkt->dataStatic(load_inst->memData);
|
2006-05-19 21:53:17 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
// if we have a cache, do cache access too
|
|
|
|
if (!dcachePort->sendTiming(data_pkt)) {
|
|
|
|
// There's an older load that's already going to squash.
|
|
|
|
if (isLoadBlocked && blockedLoadSeqNum < load_inst->seqNum)
|
|
|
|
return NoFault;
|
2006-04-23 00:26:48 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
// Record that the load was blocked due to memory. This
|
|
|
|
// load will squash all instructions after it, be
|
|
|
|
// refetched, and re-executed.
|
|
|
|
isLoadBlocked = true;
|
|
|
|
loadBlockedHandled = false;
|
|
|
|
blockedLoadSeqNum = load_inst->seqNum;
|
|
|
|
// No fault occurred, even though the interface is blocked.
|
|
|
|
return NoFault;
|
|
|
|
}
|
2006-04-23 00:26:48 +02:00
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
if (data_pkt->result != Packet::Success) {
|
|
|
|
DPRINTF(LSQUnit, "LSQUnit: D-cache miss!\n");
|
|
|
|
DPRINTF(Activity, "Activity: ld accessing mem miss [sn:%lli]\n",
|
|
|
|
load_inst->seqNum);
|
|
|
|
} else {
|
|
|
|
DPRINTF(LSQUnit, "LSQUnit: D-cache hit!\n");
|
|
|
|
DPRINTF(Activity, "Activity: ld accessing mem hit [sn:%lli]\n",
|
|
|
|
load_inst->seqNum);
|
2006-04-23 00:26:48 +02:00
|
|
|
}
|
|
|
|
|
2006-06-03 00:15:20 +02:00
|
|
|
return NoFault;
|
2006-04-23 00:26:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
template <class Impl>
|
|
|
|
template <class T>
|
|
|
|
Fault
|
2006-06-03 00:15:20 +02:00
|
|
|
LSQUnit<Impl>::write(Request *req, T &data, int store_idx)
|
2006-04-23 00:26:48 +02:00
|
|
|
{
|
|
|
|
assert(storeQueue[store_idx].inst);
|
|
|
|
|
|
|
|
DPRINTF(LSQUnit, "Doing write to store idx %i, addr %#x data %#x"
|
|
|
|
" | storeHead:%i [sn:%i]\n",
|
2006-06-03 00:15:20 +02:00
|
|
|
store_idx, req->getPaddr(), data, storeHead,
|
2006-04-23 00:26:48 +02:00
|
|
|
storeQueue[store_idx].inst->seqNum);
|
2006-05-19 21:53:17 +02:00
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
storeQueue[store_idx].req = req;
|
|
|
|
storeQueue[store_idx].size = sizeof(T);
|
|
|
|
storeQueue[store_idx].data = data;
|
2006-05-19 21:53:17 +02:00
|
|
|
|
2006-04-23 00:26:48 +02:00
|
|
|
// This function only writes the data to the store queue, so no fault
|
|
|
|
// can happen here.
|
|
|
|
return NoFault;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // __CPU_O3_LSQ_UNIT_HH__
|