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"
44class __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
116 F_NONCACHEABLE = 1 << 1,
120 F_LLSC_RESP = 1 << 4,
123 F_TRANSACTION = 1 << 6
154 addrs.push_back(addr);
169 addrs.push_back(addr);
186 addrs.push_back(addr);
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];
283 static std::atomic<id_t> main_id;
Base class for Events - Items sent across links to communicate between components.
Definition: event.h:35
Represents both memory requests and responses.
Definition: simpleMem.h:87
std::vector< uint8_t > dataVec
Type of the payload or data.
Definition: simpleMem.h:127
void setVirtualAddress(const Addr newVA)
Set the virtual address associated with the operation.
Definition: simpleMem.h:229
void setInstructionPointer(const Addr newIP)
Sets the instruction pointer associated with the operation.
Definition: simpleMem.h:240
uint64_t getVirtualAddress()
Definition: simpleMem.h:234
uint32_t custOpc
Definition: simpleMem.h:140
Command cmd
Definition: simpleMem.h:129
size_t size
Definition: simpleMem.h:132
Addr getInstructionPointer()
Definition: simpleMem.h:245
void setPayload(uint8_t *data_in, size_t len)
Set the contents of the payload / data field.
Definition: simpleMem.h:217
Command
Commands and responses possible with a Request object.
Definition: simpleMem.h:95
@ FlushLineResp
Definition: simpleMem.h:102
@ Read
Definition: simpleMem.h:96
@ WriteResp
Definition: simpleMem.h:99
@ FlushLine
Definition: simpleMem.h:100
@ FlushLineInv
Definition: simpleMem.h:101
@ ReadResp
Definition: simpleMem.h:98
@ TxEnd
Definition: simpleMem.h:105
@ Inv
Definition: simpleMem.h:103
@ TxBegin
Definition: simpleMem.h:104
@ Write
Definition: simpleMem.h:97
void clearMemFlags(void)
Clears the memory flags associated with the operation.
Definition: simpleMem.h:265
Request(Command cmd, Addr addr, size_t size, uint32_t Opc, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:191
uint32_t flags_t
Definition: simpleMem.h:90
std::vector< Addr > addrs
Definition: simpleMem.h:130
flags_t flags
Definition: simpleMem.h:134
void setMemFlags(flags_t inValue)
Definition: simpleMem.h:270
uint64_t id_t
Definition: simpleMem.h:89
Addr instrPtr
Definition: simpleMem.h:138
void clearFlags(void)
Clears the flags associated with the operation.
Definition: simpleMem.h:250
flags_t getMemFlags(void)
Definition: simpleMem.h:275
Addr addr
Definition: simpleMem.h:131
void setFlags(flags_t inValue)
Definition: simpleMem.h:255
id_t id
Definition: simpleMem.h:137
Request(Command cmd, Addr addr, size_t size, dataVec &data, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:143
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
flags_t getFlags(void)
Definition: simpleMem.h:260
flags_t memFlags
Definition: simpleMem.h:136
Addr virtualAddr
Definition: simpleMem.h:139
uint32_t getCustomOpc(void)
Definition: simpleMem.h:280
dataVec data
Definition: simpleMem.h:133
void setPayload(const std::vector< uint8_t > &data_in)
Set the contents of the payload / data field.
Definition: simpleMem.h:211
Request(Command cmd, Addr addr, size_t size, flags_t flags=0, flags_t memFlags=0)
Constructor.
Definition: simpleMem.h:159
Simplified, generic interface to Memory models.
Definition: simpleMem.h:47
virtual SST::Link * getLink(void) const =0
Returns a handle to the underlying SST::Link.
virtual Addr getLineSize()
Get cache/memory line size from the memory system.
Definition: simpleMem.h:348
virtual void sendInitData(SST::Event *ev)
Sends a generic Event during the init() phase (Mostly acts as a passthrough)
Definition: simpleMem.h:305
virtual SST::Event * recvInitData()
Receive any data during the init() phase.
Definition: simpleMem.h:311
virtual void sendInitData(Request *req)=0
Sends a memory-based request during the init() phase.
virtual Request * recvResponse(void)=0
Receive a Request response from the side of the link.
DISABLE_WARN_DEPRECATED_DECLARATION REENABLE_WARNING typedef uint64_t Addr
All Addresses can be 64-bit.
Definition: simpleMem.h:81
virtual bool initialize(const std::string &linkName, HandlerBase *handler=nullptr)=0
Second half of building the interface.
SimpleMem(SST::ComponentId_t id, Params &UNUSED(params))
Constructor, designed to be used via 'loadUserSubComponent and loadAnonymousSubComponent'.
Definition: simpleMem.h:287
virtual void sendRequest(Request *req)=0
Send a Request to the other side of the link.
Link between two components.
Definition: link.h:38
Parameter store.
Definition: params.h:56
Handlers with 1 handler defined argument to callback from caller.
Definition: ssthandler.h:171
Handler class with user-data argument.
Definition: ssthandler.h:220
SubComponent is a class loadable through the factory which allows dynamic functionality to be added t...
Definition: subcomponent.h:29
A class to convert between a component's view of time and the core's view of time.
Definition: timeConverter.h:27