2009-02-11 00:49:29 +01:00
|
|
|
/*
|
2012-02-24 17:42:00 +01:00
|
|
|
* Copyright (c) 2012 ARM Limited
|
|
|
|
* All rights reserved
|
|
|
|
*
|
|
|
|
* The license below extends only to copyright in the software and shall
|
|
|
|
* not be construed as granting a license to any other intellectual
|
|
|
|
* property including but not limited to intellectual property relating
|
|
|
|
* to a hardware implementation of the functionality of the software
|
|
|
|
* licensed hereunder. You may use the software subject to the license
|
|
|
|
* terms below provided that you ensure that this notice is replicated
|
|
|
|
* unmodified and in its entirety in all distributions of the software,
|
|
|
|
* modified or unmodified, in source code or in binary form.
|
|
|
|
*
|
2009-02-11 00:49:29 +01:00
|
|
|
* Copyright (c) 2007 MIPS Technologies, Inc.
|
|
|
|
* 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.
|
|
|
|
*
|
|
|
|
* Authors: Korey Sewell
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __CPU_INORDER_RESOURCE_POOL_HH__
|
|
|
|
#define __CPU_INORDER_RESOURCE_POOL_HH__
|
|
|
|
|
|
|
|
#include <string>
|
2011-04-15 19:44:06 +02:00
|
|
|
#include <vector>
|
2009-02-11 00:49:29 +01:00
|
|
|
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "cpu/inorder/cpu.hh"
|
2009-02-11 00:49:29 +01:00
|
|
|
#include "cpu/inorder/inorder_dyn_inst.hh"
|
2011-04-15 19:44:06 +02:00
|
|
|
#include "cpu/inorder/pipeline_traits.hh"
|
|
|
|
#include "cpu/inorder/resource.hh"
|
|
|
|
#include "cpu/inst_seq.hh"
|
2009-02-11 00:49:29 +01:00
|
|
|
#include "params/InOrderCPU.hh"
|
|
|
|
#include "sim/eventq.hh"
|
|
|
|
#include "sim/sim_object.hh"
|
|
|
|
|
2012-02-24 17:42:00 +01:00
|
|
|
class CacheUnit;
|
2009-02-11 00:49:29 +01:00
|
|
|
class Event;
|
2012-02-24 17:42:00 +01:00
|
|
|
class FetchUnit;
|
2009-02-11 00:49:29 +01:00
|
|
|
class ResourceEvent;
|
|
|
|
|
|
|
|
class ResourcePool {
|
|
|
|
public:
|
|
|
|
typedef InOrderDynInst::DynInstPtr DynInstPtr;
|
|
|
|
|
|
|
|
public:
|
|
|
|
// List of Resource Pool Events that extends
|
|
|
|
// the list started by the CPU
|
|
|
|
// NOTE(1): Resource Pool also uses event list
|
|
|
|
// CPUEventType defined in inorder/cpu.hh
|
|
|
|
enum ResPoolEventType {
|
|
|
|
InstGraduated = InOrderCPU::NumCPUEvents,
|
|
|
|
SquashAll,
|
2010-02-01 00:27:49 +01:00
|
|
|
UpdateAfterContextSwitch,
|
2009-02-11 00:49:29 +01:00
|
|
|
Default
|
|
|
|
};
|
|
|
|
|
2011-06-20 03:43:36 +02:00
|
|
|
enum ResPoolEventPri {
|
2011-06-20 03:43:37 +02:00
|
|
|
ResPool_Pri = InOrderCPU::InOrderCPU_Pri - 5,
|
|
|
|
ResGrad_Pri,
|
|
|
|
ResSquash_Pri
|
2011-06-20 03:43:36 +02:00
|
|
|
};
|
|
|
|
|
2009-02-11 00:49:29 +01:00
|
|
|
class ResPoolEvent : public Event
|
|
|
|
{
|
|
|
|
protected:
|
|
|
|
/** Resource Pool */
|
|
|
|
ResourcePool *resPool;
|
|
|
|
|
|
|
|
public:
|
|
|
|
InOrderCPU::CPUEventType eventType;
|
|
|
|
|
|
|
|
DynInstPtr inst;
|
|
|
|
|
|
|
|
InstSeqNum seqNum;
|
|
|
|
|
|
|
|
int stageNum;
|
|
|
|
|
2009-05-26 18:23:13 +02:00
|
|
|
ThreadID tid;
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
public:
|
2009-05-12 21:01:16 +02:00
|
|
|
/** Constructs a resource event. */
|
|
|
|
ResPoolEvent(ResourcePool *_resPool,
|
|
|
|
InOrderCPU::CPUEventType e_type,
|
|
|
|
DynInstPtr _inst,
|
|
|
|
int stage_num,
|
|
|
|
InstSeqNum seq_num,
|
2011-06-20 03:43:37 +02:00
|
|
|
ThreadID _tid,
|
|
|
|
ResPoolEventPri res_pri = ResPool_Pri);
|
2009-05-12 21:01:16 +02:00
|
|
|
|
2009-02-11 00:49:29 +01:00
|
|
|
/** Set Type of Event To Be Scheduled */
|
|
|
|
void setEvent(InOrderCPU::CPUEventType e_type,
|
|
|
|
DynInstPtr _inst,
|
|
|
|
int stage_num,
|
|
|
|
InstSeqNum seq_num,
|
2009-05-26 18:23:13 +02:00
|
|
|
ThreadID _tid)
|
2009-02-11 00:49:29 +01:00
|
|
|
{
|
|
|
|
eventType = e_type;
|
|
|
|
inst = _inst;
|
|
|
|
seqNum = seq_num;
|
|
|
|
stageNum = stage_num;
|
|
|
|
tid = _tid;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** Processes a resource event. */
|
2010-06-24 21:34:19 +02:00
|
|
|
void process();
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** Returns the description of the resource event. */
|
2012-01-31 18:05:52 +01:00
|
|
|
const char *description() const;
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** Schedule Event */
|
2012-08-28 20:30:33 +02:00
|
|
|
void scheduleEvent(Cycles delay);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** Unschedule This Event */
|
|
|
|
void unscheduleEvent();
|
|
|
|
};
|
|
|
|
|
|
|
|
public:
|
2010-02-01 00:26:13 +01:00
|
|
|
ResourcePool(InOrderCPU *_cpu, ThePipeline::Params *params);
|
2011-06-07 09:24:49 +02:00
|
|
|
virtual ~ResourcePool();
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
std::string name();
|
|
|
|
|
|
|
|
std::string name(int res_idx) { return resources[res_idx]->name(); }
|
|
|
|
|
|
|
|
void init();
|
|
|
|
|
2011-02-12 16:14:45 +01:00
|
|
|
void print();
|
|
|
|
|
2009-02-11 00:49:29 +01:00
|
|
|
/** Register Statistics in All Resources */
|
|
|
|
void regStats();
|
|
|
|
|
2009-05-12 21:01:13 +02:00
|
|
|
/** Returns a specific resource. */
|
2010-02-01 00:30:35 +01:00
|
|
|
unsigned getResIdx(const ThePipeline::ResourceId &res_id);
|
2009-05-12 21:01:13 +02:00
|
|
|
|
|
|
|
/** Returns a pointer to a resource */
|
2009-02-11 00:49:29 +01:00
|
|
|
Resource* getResource(int res_idx) { return resources[res_idx]; }
|
|
|
|
|
|
|
|
/** Request usage of this resource. Returns -1 if not granted and
|
|
|
|
* a positive request tag if granted.
|
|
|
|
*/
|
|
|
|
ResReqPtr request(int res_idx, DynInstPtr inst);
|
|
|
|
|
|
|
|
/** Squash The Resource */
|
2009-05-26 18:23:13 +02:00
|
|
|
void squash(DynInstPtr inst, int res_idx, InstSeqNum done_seq_num,
|
|
|
|
ThreadID tid);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** Squash All Resources in Pool after Done Seq. Num */
|
|
|
|
void squashAll(DynInstPtr inst, int stage_num,
|
2009-05-26 18:23:13 +02:00
|
|
|
InstSeqNum done_seq_num, ThreadID tid);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
2010-02-01 00:26:13 +01:00
|
|
|
/** Squash Resources in Pool after a memory stall
|
|
|
|
* NOTE: Only use during Switch-On-Miss Thread model
|
|
|
|
*/
|
|
|
|
void squashDueToMemStall(DynInstPtr inst, int stage_num,
|
|
|
|
InstSeqNum done_seq_num, ThreadID tid);
|
|
|
|
|
2009-02-11 00:49:29 +01:00
|
|
|
/** Activate Thread in all resources */
|
2011-06-20 03:43:38 +02:00
|
|
|
void activateThread(ThreadID tid);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** De-Activate Thread in all resources */
|
2011-06-20 03:43:38 +02:00
|
|
|
void deactivateThread(ThreadID tid);
|
2010-02-01 00:27:02 +01:00
|
|
|
|
2011-06-20 03:43:38 +02:00
|
|
|
/** Suspend Thread in all resources */
|
|
|
|
void suspendThread(ThreadID tid);
|
2010-02-01 00:27:49 +01:00
|
|
|
|
|
|
|
/** Broadcast Context Switch Update to all resources */
|
|
|
|
void updateAfterContextSwitch(DynInstPtr inst, ThreadID tid);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** Broadcast graduation to all resources */
|
2009-05-26 18:23:13 +02:00
|
|
|
void instGraduated(InstSeqNum seq_num, ThreadID tid);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
2011-06-20 03:43:36 +02:00
|
|
|
/** Broadcast trap to all resources */
|
|
|
|
void trap(Fault fault, ThreadID tid, DynInstPtr inst);
|
|
|
|
|
2009-02-11 00:49:29 +01:00
|
|
|
/** The number of instructions available that a resource can
|
|
|
|
* can still process.
|
|
|
|
*/
|
|
|
|
int slotsAvail(int res_idx);
|
|
|
|
|
|
|
|
/** The number of instructions using a resource */
|
|
|
|
int slotsInUse(int res_idx);
|
|
|
|
|
|
|
|
/** Schedule resource event, regardless of its current state. */
|
|
|
|
void scheduleEvent(InOrderCPU::CPUEventType e_type, DynInstPtr inst = NULL,
|
2012-08-28 20:30:33 +02:00
|
|
|
Cycles delay = Cycles(0), int res_idx = 0,
|
|
|
|
ThreadID tid = 0);
|
2009-02-11 00:49:29 +01:00
|
|
|
|
|
|
|
/** UnSchedule resource event, regardless of its current state. */
|
|
|
|
void unscheduleEvent(int res_idx, DynInstPtr inst);
|
|
|
|
|
|
|
|
/** Tasks to perform when simulation starts */
|
|
|
|
virtual void startup() { }
|
|
|
|
|
|
|
|
/** The CPU(s) that this resource interacts with */
|
|
|
|
InOrderCPU *cpu;
|
|
|
|
|
|
|
|
DynInstPtr dummyInst[ThePipeline::MaxThreads];
|
|
|
|
|
2012-02-24 17:42:00 +01:00
|
|
|
/**
|
|
|
|
* Get a pointer to the (always present) instruction fetch unit.
|
|
|
|
*
|
|
|
|
* @return the instruction unit
|
|
|
|
*/
|
|
|
|
FetchUnit *getInstUnit() const { return instUnit; }
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get a pointer to the (always present) data load/store unit.
|
|
|
|
*
|
|
|
|
* @return the data cache unit
|
|
|
|
*/
|
|
|
|
CacheUnit *getDataUnit() const { return dataUnit; }
|
|
|
|
|
2009-02-11 00:49:29 +01:00
|
|
|
private:
|
|
|
|
|
2012-02-24 17:42:00 +01:00
|
|
|
/** The instruction fetch unit. */
|
|
|
|
FetchUnit *instUnit;
|
|
|
|
|
|
|
|
/** The data load/store unit. */
|
|
|
|
CacheUnit *dataUnit;
|
|
|
|
|
|
|
|
std::vector<Resource *> resources;
|
2009-02-11 00:49:29 +01:00
|
|
|
|
2011-06-20 03:43:38 +02:00
|
|
|
/** Resources that need to be updated on an inst. graduation */
|
|
|
|
std::vector<int> gradObjects;
|
2009-02-11 00:49:29 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //__CPU_INORDER_RESOURCE_HH__
|