14 #ifndef CORE_INTERFACES_SIMPLEMEM_H_ 15 #define CORE_INTERFACES_SIMPLEMEM_H_ 22 #include <sst/core/sst_types.h> 23 #include <sst/core/warnmacros.h> 24 #include <sst/core/subcomponent.h> 25 #include <sst/core/params.h> 26 #include <sst/core/link.h> 33 namespace Interfaces {
97 Request(Command cmd, Addr addr,
size_t size, dataVec &data, flags_t flags = 0, flags_t memFlags = 0) :
98 cmd(cmd), addr(addr), size(size), data(data), flags(flags), memFlags(memFlags),
99 instrPtr(0), virtualAddr(0)
101 addrs.push_back(addr);
106 Request(Command cmd, Addr addr,
size_t size, flags_t flags = 0, flags_t memFlags = 0) :
107 cmd(cmd), addr(addr), size(size), flags(flags), memFlags(memFlags),
108 instrPtr(0), virtualAddr(0)
110 addrs.push_back(addr);
114 void addAddress(Addr addr)
116 addrs.push_back(addr);
134 for (
size_t i = 0 ; i < len ; i++ ) {
135 data[i] = data_in[i];
180 flags = flags | inValue;
201 memFlags = memFlags | inValue;
213 static std::atomic<id_t> main_id;
221 virtual void operator()(
Request*) = 0;
230 template <
typename classT,
typename argT =
void>
233 typedef void (classT::*PtrMember)(
Request*, argT);
235 const PtrMember member;
244 Handler( classT*
const object, PtrMember member, argT data ) :
251 return (object->*member)(req,
data);
258 template <
typename classT>
261 typedef void (classT::*PtrMember)(
Request*);
263 const PtrMember member;
270 Handler( classT*
const object, PtrMember member ) :
276 return (object->*member)(req);
Definition: simpleMem.h:59
virtual SST::Event * recvInitData()
Receive any data during the init() phase.
Definition: simpleMem.h:308
Definition: simpleMem.h:64
size_t size
Definition: simpleMem.h:88
uint32_t flags_t
Definition: simpleMem.h:50
Addr getInstructionPointer()
Definition: simpleMem.h:165
Command
Commands and responses possible with a Request object.
Definition: simpleMem.h:55
Represents both memory requests and responses.
Definition: simpleMem.h:47
virtual void sendRequest(Request *req)=0
Send a Request to the other side of the link.
std::vector< Addr > addrs
Definition: simpleMem.h:86
virtual SST::Link * getLink(void) const =0
Returns a handle to the underlying SST::Link.
Definition: simpleMem.h:78
Definition: simpleMem.h:63
uint64_t getVirtualAddress()
Definition: simpleMem.h:150
Command cmd
Definition: simpleMem.h:85
Main component object for the simulation.
Definition: component.h:32
Definition: simpleMem.h:62
Definition: simpleMem.h:60
Handler(classT *const object, PtrMember member, argT data)
Constructor.
Definition: simpleMem.h:244
dataVec data
Definition: simpleMem.h:89
Definition: simpleMem.h:58
void setFlags(flags_t inValue)
Definition: simpleMem.h:179
std::vector< uint8_t > dataVec
Type of the payload or data.
Definition: simpleMem.h:83
void setInstructionPointer(const Addr newIP)
Sets the instruction pointer associated with the operation.
Definition: simpleMem.h:158
void setPayload(const std::vector< uint8_t > &data_in)
Set the contents of the payload / data field.
Definition: simpleMem.h:123
void operator()(Request *req)
Function called when Handler is invoked.
Definition: simpleMem.h:275
Functor classes for Clock handling.
Definition: simpleMem.h:218
virtual void sendInitData(Request *req)=0
Sends a memory-based request during the init() phase.
flags_t flags
Definition: simpleMem.h:90
Event * recvInitData()
Receive an event (if any) during the init() phase.
Definition: link.cc:173
Simplified, generic interface to Memory models.
Definition: simpleMem.h:38
Definition: simpleMem.h:75
void operator()(Request *req)
Function called when Handler is invoked.
Definition: simpleMem.h:250
flags_t getMemFlags(void)
Definition: simpleMem.h:207
Handler(classT *const object, PtrMember member)
Constructor.
Definition: simpleMem.h:270
Definition: simpleMem.h:57
void sendInitData(Event *init_data)
Send data during the init() phase.
Definition: link.cc:147
void clearFlags(void)
Clears the flags associated with the operation.
Definition: simpleMem.h:172
Addr instrPtr
Definition: simpleMem.h:93
Request(Command cmd, Addr addr, size_t size, dataVec &data, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:97
Definition: simpleMem.h:61
Addr virtualAddr
Definition: simpleMem.h:94
flags_t getFlags(void)
Definition: simpleMem.h:186
Event Handler class with user-data argument.
Definition: simpleMem.h:231
virtual void sendInitData(SST::Event *ev)
Sends a generic Event during the init() phase (Mostly acts as a passthrough)
Definition: simpleMem.h:302
Definition: simpleMem.h:74
void setMemFlags(flags_t inValue)
Definition: simpleMem.h:200
virtual bool initialize(const std::string &linkName, HandlerBase *handler=NULL)=0
Second half of building the interface.
Definition: simpleMem.h:56
Parameter store.
Definition: params.h:45
uint64_t Addr
All Addresses can be 64-bit.
Definition: simpleMem.h:42
void setVirtualAddress(const Addr newVA)
Set the virtual address associated with the operation.
Definition: simpleMem.h:143
Flags
Flags to specify conditions on a Request.
Definition: simpleMem.h:73
void setPayload(uint8_t *data_in, size_t len)
Set the contents of the payload / data field.
Definition: simpleMem.h:132
Base class for Events - Items sent across links to communicate between components.
Definition: event.h:31
SimpleMem(SST::Component *comp, Params &UNUSED(params))
Constructor, designed to be used via 'loadSubComponent'.
Definition: simpleMem.h:282
Addr addr
Definition: simpleMem.h:87
SubComponent is a class loadable through the factory which allows dynamic functionality to be added t...
Definition: subcomponent.h:29
Link between two components.
Definition: link.h:33
uint64_t id_t
Definition: simpleMem.h:49
id_t id
Definition: simpleMem.h:92
virtual Request * recvResponse(void)=0
Receive a Request response from the side of the link.
void clearMemFlags(void)
Clears the memory flags associated with the operation.
Definition: simpleMem.h:193
Request(Command cmd, Addr addr, size_t size, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:106
flags_t memFlags
Definition: simpleMem.h:91