28 #ifndef __SIM_WORKLOAD_HH__ 29 #define __SIM_WORKLOAD_HH__ 33 #include "params/Workload.hh" 68 template <
class T,
typename... Args>
71 const std::string &desc, Args... args)
77 std::forward<Args>(args)...);
87 return addFuncEvent<T>(
symtab, lbl, lbl);
90 template <
class T,
typename... Args>
95 T *
e = addFuncEvent<T>(
symtab, lbl, std::forward<Args>(args)...);
96 panic_if(!e,
"Failed to find symbol '%s'", lbl);
102 #endif // __SIM_WORKLOAD_HH__ bool findAddress(const std::string &symbol, Addr &address) const
T * addFuncEventOrPanic(const Loader::SymbolTable *symtab, const char *lbl, Args... args)
virtual const Loader::SymbolTable * symtab(ThreadContext *tc)=0
ThreadContext is the external interface to all thread state for anything outside of the CPU...
virtual Loader::Arch getArch() const =0
virtual bool insertSymbol(Addr address, const std::string &symbol)=0
virtual Addr fixFuncEventAddr(Addr addr) const
uint64_t Addr
Address type This will probably be moved somewhere else in the near future.
T * addFuncEvent(const Loader::SymbolTable *symtab, const char *lbl)
virtual Addr getEntry() const =0
SimObject(const Params *_params)
T * addFuncEvent(const Loader::SymbolTable *symtab, const char *lbl, const std::string &desc, Args... args)
Add a function-based event to the given function, to be looked up in the specified symbol table...
#define panic_if(cond,...)
Conditional panic macro that checks the supplied condition and only panics if the condition is true a...
Abstract superclass for simulation objects.