|
|
| SST_ELI_DOCUMENT_PARAMS ({ "level", "Level at which to track profile (global, type, component, subcomponent)", "type" }, { "track_ports", "Controls whether to track by individual ports", "false" }, { "profile_sends", "Controls whether sends are profiled (due to location of profiling point in the code, turning on send profiling will incur relatively high overhead)", "false" }, { "profile_receives", "Controls whether receives are profiled", "true" },) enum class Profile_Level |
| |
|
| EventHandlerProfileTool (const std::string &name, Params ¶ms) |
| |
|
bool | profileSends () |
| |
|
bool | profileReceives () |
| |
|
void | beforeHandler (uintptr_t UNUSED(key), const Event *UNUSED(event)) override |
| |
|
void | afterHandler (uintptr_t UNUSED(key)) override |
| |
|
void | eventSent (uintptr_t UNUSED(key), Event *&UNUSED(ev)) override |
| |
|
std::string | getName () |
| |
|
virtual void | outputData (FILE *fp)=0 |
| |
Public Member Functions inherited from SST::SSTHandlerBase< returnT, argT >::AttachPoint |
| virtual uintptr_t | registerHandler (const AttachPointMetaData &mdata)=0 |
| | Function that will be called when a handler is registered with the tool implementing the attach point. More...
|
| |
| virtual void | beforeHandler (uintptr_t key, std::conditional_t< std::is_pointer_v< argT >, const std::remove_pointer_t< argT > *, const argT &> arg)=0 |
| | Function to be called before the handler is called. More...
|
| |
| virtual void | afterHandler (uintptr_t key, std::conditional_t< std::is_pointer_v< returnT >, const std::remove_pointer_t< returnT > *, const returnT &> ret_value)=0 |
| | Function to be called after the handler is called. More...
|
| |
| virtual void | serializeHandlerAttachPointKey (SST::Core::Serialization::serializer &UNUSED(ser), uintptr_t &UNUSED(key)) |
| | Function that will be called to handle the key returned from registerHandler, if the AttachPoint tool is serializable. More...
|
| |
| virtual uintptr_t | registerLinkAttachTool (const AttachPointMetaData &mdata)=0 |
| | Function that will be called when an attach point is registered with the tool implementing the attach point. More...
|
| |
| virtual void | eventSent (uintptr_t key, Event *&ev)=0 |
| | Function that will be called when an event is sent on a link with registered attach points. More...
|
| |
| virtual void | serializeEventAttachPointKey (SST::Core::Serialization::serializer &ser, uintptr_t &key) |
| | Function that will be called to handle the key returned from registerLinkAttachTool, if the AttachPoint tool is serializable. More...
|
| |