14 #ifndef SST_CORE_INTERFACES_SIMPLEMEM_H
15 #define SST_CORE_INTERFACES_SIMPLEMEM_H
22 #include "sst/core/link.h"
23 #include "sst/core/params.h"
24 #include "sst/core/sst_types.h"
25 #include "sst/core/ssthandler.h"
26 #include "sst/core/subcomponent.h"
27 #include "sst/core/warnmacros.h"
39 namespace Interfaces {
44 class __attribute__((deprecated(
45 "The
SimpleMem interface is deprecated in favor of the
StandardMem interface (sst/core/interfaces/stdMem.h). "
46 "Please switch interfaces. This interface will be removed in SST 13.")))
SimpleMem :
public SubComponent
73 template <
typename classT,
typename dataT =
void>
76 DISABLE_WARN_DEPRECATED_DECLARATION
81 typedef uint64_t Addr;
116 F_NONCACHEABLE = 1 << 1,
120 F_LLSC_RESP = 1 << 4,
123 F_TRANSACTION = 1 << 6
143 Request(
Command cmd, Addr addr,
size_t size, dataVec& data, flags_t flags = 0, flags_t memFlags = 0) :
154 addrs.push_back(addr);
159 Request(
Command cmd, Addr addr,
size_t size, flags_t flags = 0, flags_t memFlags = 0) :
169 addrs.push_back(addr);
175 Command cmd, Addr addr,
size_t size, dataVec& data, uint32_t Opc, flags_t flags = 0, flags_t memFlags = 0) :
186 addrs.push_back(addr);
191 Request(
Command cmd, Addr addr,
size_t size, uint32_t Opc, flags_t flags = 0, flags_t memFlags = 0) :
201 addrs.push_back(addr);
205 void addAddress(Addr addr) { addrs.push_back(addr); }
211 void setPayload(
const std::vector<uint8_t>& data_in) { data = data_in; }
220 for (
size_t i = 0; i < len; i++ ) {
221 data[i] = data_in[i];
255 void setFlags(flags_t inValue) { flags = flags | inValue; }
270 void setMemFlags(flags_t inValue) { memFlags = memFlags | inValue; }
283 static std::atomic<id_t> main_id;
293 virtual bool initialize(
const std::string& linkName, HandlerBase* handler =
nullptr) = 0;
298 virtual void sendInitData(Request* req) = 0;
316 virtual SST::Link* getLink(
void)
const = 0;
321 virtual void sendRequest(Request* req) = 0;
332 virtual Request* recvResponse(
void) = 0;
354 #endif // SST_CORE_INTERFACES_SIMPLEMEM_H
Definition: simpleMem.h:99
virtual SST::Event * recvInitData()
Receive any data during the init() phase.
Definition: simpleMem.h:311
Definition: simpleMem.h:105
size_t size
Definition: simpleMem.h:132
uint32_t flags_t
Definition: simpleMem.h:90
Request(Command cmd, Addr addr, size_t size, uint32_t Opc, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:191
Addr getInstructionPointer()
Definition: simpleMem.h:245
Definition: ssthandler.h:100
Command
Commands and responses possible with a Request object.
Definition: simpleMem.h:95
Represents both memory requests and responses.
Definition: simpleMem.h:86
std::vector< Addr > addrs
Definition: simpleMem.h:130
Definition: simpleMem.h:104
Event Handler class with user-data argument.
Definition: ssthandler.h:115
A class to convert between a component's view of time and the core's view of time.
Definition: timeConverter.h:26
uint64_t getVirtualAddress()
Definition: simpleMem.h:234
Command cmd
Definition: simpleMem.h:129
Definition: simpleMem.h:102
Definition: simpleMem.h:100
dataVec data
Definition: simpleMem.h:133
Definition: simpleMem.h:98
void setFlags(flags_t inValue)
Definition: simpleMem.h:255
std::vector< uint8_t > dataVec
Type of the payload or data.
Definition: simpleMem.h:127
Request(Command cmd, Addr addr, size_t size, dataVec &data, uint32_t Opc, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:174
void setInstructionPointer(const Addr newIP)
Sets the instruction pointer associated with the operation.
Definition: simpleMem.h:240
Generic interface to Memory models.
Definition: stdMem.h:69
void setPayload(const std::vector< uint8_t > &data_in)
Set the contents of the payload / data field.
Definition: simpleMem.h:211
Definition: simpleMem.h:103
flags_t flags
Definition: simpleMem.h:134
Simplified, generic interface to Memory models.
Definition: simpleMem.h:44
flags_t getMemFlags(void)
Definition: simpleMem.h:275
Definition: simpleMem.h:97
void clearFlags(void)
Clears the flags associated with the operation.
Definition: simpleMem.h:250
Addr instrPtr
Definition: simpleMem.h:138
Request(Command cmd, Addr addr, size_t size, dataVec &data, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:143
Definition: simpleMem.h:101
virtual Addr getLineSize()
Get cache/memory line size from the memory system.
Definition: simpleMem.h:348
Addr virtualAddr
Definition: simpleMem.h:139
flags_t getFlags(void)
Definition: simpleMem.h:260
virtual void sendInitData(SST::Event *ev)
Sends a generic Event during the init() phase (Mostly acts as a passthrough)
Definition: simpleMem.h:305
void setMemFlags(flags_t inValue)
Definition: simpleMem.h:270
Definition: simpleMem.h:96
Parameter store.
Definition: params.h:55
void setVirtualAddress(const Addr newVA)
Set the virtual address associated with the operation.
Definition: simpleMem.h:229
uint32_t getCustomOpc(void)
Definition: simpleMem.h:280
void setPayload(uint8_t *data_in, size_t len)
Set the contents of the payload / data field.
Definition: simpleMem.h:217
Base class for Events - Items sent across links to communicate between components.
Definition: event.h:34
SimpleMem(SST::ComponentId_t id, Params &UNUSED(params))
Constructor, designed to be used via 'loadUserSubComponent and loadAnonymousSubComponent'.
Definition: simpleMem.h:287
uint32_t custOpc
Definition: simpleMem.h:140
Addr addr
Definition: simpleMem.h:131
SubComponent is a class loadable through the factory which allows dynamic functionality to be added t...
Definition: subcomponent.h:28
Link between two components.
Definition: link.h:32
uint64_t id_t
Definition: simpleMem.h:89
id_t id
Definition: simpleMem.h:137
void clearMemFlags(void)
Clears the memory flags associated with the operation.
Definition: simpleMem.h:265
Request(Command cmd, Addr addr, size_t size, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:159
flags_t memFlags
Definition: simpleMem.h:136