rocprofiler-sdk/callback_tracing.h Source File#
Rocprofiler SDK Developer API 0.4.0
ROCm Profiling API and tools
|
callback_tracing.h
Go to the documentation of this file.
56 HSA_VEN_AMD_LOADER_CODE_OBJECT_STORAGE_TYPE_MEMORY,
202 * before the function is invoked and once after the function is invoked. The external correlation
203 * id value within the record is assigned the value at the top of the external correlation id stack.
204 * It is permissible to invoke @ref rocprofiler_push_external_correlation_id within the enter phase;
205 * when a new external correlation id is pushed during the enter phase, rocprofiler will use that
206 * external correlation id for any async events and provide the new external correlation id during
208 * callback will result in that external correlation id value in the exit callback (which may or may
209 * not be different from the external correlation id value in the enter callback). If a tool pushes
214 * @param [in,out] user_data This paramter can be used to retain information in between the enter
248 * @param [in] arg_indirection_count the total number of indirection levels for the argument, e.g.
253 * @param [in] arg_dereference_count the number of times the argument was dereferenced when it was
270 * @brief Configure Callback Tracing Service. The callback tracing service provides two synchronous
271 * callbacks around an API function on the same thread as the application which is invoking the API
274 * once for the HIP API, and so on but it will fail if it is invoked for the HSA API twice. Please
276 * arguments into the record. If you are willing to let rocprofiler record the timestamps, do not
277 * require synchronous notifications of the API calls, and want to lowest possible overhead, use the
292 * @retval ::ROCPROFILER_STATUS_ERROR_CONTEXT_NOT_FOUND The provided context is not valid/registered
295 * other words, we do not support overriding or combining the operations in separate function calls.
307 * @brief Query the name of the callback tracing kind. The name retrieved from this function is a
315 * @param [out] name_len If non-null, this will be assigned the length of the name (regardless of
325 * @brief Query the name of the callback tracing kind. The name retrieved from this function is a
330 * @param [in] operation Enumeration id value which maps to a specific API function or event type
334 * @param [out] name_len If non-null, this will be assigned the length of the name (regardless of
348 * @brief Iterate over all the mappings of the callback tracing kinds and get a callback for each
384 * It is recommended to use this function when the record phase is ::ROCPROFILER_CALLBACK_PHASE_EXIT
385 * or ::ROCPROFILER_CALLBACK_PHASE_NONE. When the phase is ::ROCPROFILER_CALLBACK_PHASE_ENTER, the
386 * function may have output parameters which have not set. In the case of an output parameter with
388 * parameter is either null or, in the worst case scenario, pointing to an uninitialized value which
389 * will result in garbage values to be stringified. However, if the output parameter has more than
429 * parameters which have not been set. When the output parameter has multiple levels of indirection,
430 * it may be invalid to dereference the output parameter more than once and doing so may result in a
431 * segmentation fault. Thus, it is recommended to set this parameter to a maximum value of 1 when
432 * the phase is ::ROCPROFILER_CALLBACK_PHASE_ENTER to ensure that output parameters which point to
uint32_t rocprofiler_tracing_operation_t
Tracing Operation ID. Depending on the kind, operations can be determined. If the value is equal to z...
Definition fwd.h:448
uint32_t group_segment_size
Size of static group segment memory required by the kernel (per work-group), in bytes....
Definition callback_tracing.h:148
rocprofiler_agent_id_t rocp_agent
The agent on which this loaded code object is loaded.
Definition callback_tracing.h:97
rocprofiler_hip_api_retval_t retval
Definition callback_tracing.h:77
hsa_amd_tool_event_kind_t args_kind
Definition callback_tracing.h:196
rocprofiler_hsa_api_retval_t retval
Definition callback_tracing.h:67
rocprofiler_hip_api_args_t args
Definition callback_tracing.h:76
uint32_t arch_vgpr_count
Architecture vector general purpose register count.
Definition callback_tracing.h:154
rocprofiler_scratch_alloc_flag_t flags
Definition callback_tracing.h:195
uint32_t kernarg_segment_alignment
Alignment (in bytes) of the buffer used to pass arguments to the kernel.
Definition callback_tracing.h:146
rocprofiler_queue_id_t queue_id
Definition callback_tracing.h:194
uint32_t accum_vgpr_count
Accum vector general purpose register count.
Definition callback_tracing.h:155
rocprofiler_code_object_storage_type_t storage_type
storage type of the code object reader used to load the loaded code object
Definition callback_tracing.h:109
hsa_agent_t hsa_agent
The agent on which this loaded code object is loaded.
Definition callback_tracing.h:98
uint64_t load_base
The base memory address at which the code object is loaded. This is the base address of the allocatio...
Definition callback_tracing.h:100
uint32_t kernarg_segment_size
size of memory (in bytes) allocated for kernel arguments. Will be multiple of 16
Definition callback_tracing.h:144
uint64_t load_size
The byte size of the loaded code objects contiguous memory allocation.
Definition callback_tracing.h:104
rocprofiler_marker_api_args_t args
Definition callback_tracing.h:86
uint32_t private_segment_size
Size of static private, spill, and arg segment memory required by this kernel (per work-item),...
Definition callback_tracing.h:150
rocprofiler_marker_api_retval_t retval
Definition callback_tracing.h:87
rocprofiler_scratch_memory_args_t args
Definition callback_tracing.h:197
rocprofiler_hsa_api_args_t args
Definition callback_tracing.h:66
rocprofiler_agent_id_t agent_id
Definition callback_tracing.h:193
uint64_t kernel_object
kernel object handle, used in the kernel dispatch packet
Definition callback_tracing.h:143
int64_t load_delta
The signed byte address difference of the memory address at which the code object is loaded minus the...
Definition callback_tracing.h:105
int(* rocprofiler_callback_tracing_operation_args_cb_t)(rocprofiler_callback_tracing_kind_t kind, uint32_t operation, uint32_t arg_number, const void *const arg_value_addr, int32_t arg_indirection_count, const char *arg_type, const char *arg_name, const char *arg_value_str, int32_t arg_dereference_count, void *data)
Callback function for iterating over the function arguments to a traced function. This function will ...
Definition callback_tracing.h:257
rocprofiler_status_t rocprofiler_configure_callback_tracing_service(rocprofiler_context_id_t context_id, rocprofiler_callback_tracing_kind_t kind, rocprofiler_tracing_operation_t *operations, unsigned long operations_count, rocprofiler_callback_tracing_cb_t callback, void *callback_args)
Configure Callback Tracing Service. The callback tracing service provides two synchronous callbacks a...
rocprofiler_status_t rocprofiler_iterate_callback_tracing_kind_operation_args(rocprofiler_callback_tracing_record_t record, rocprofiler_callback_tracing_operation_args_cb_t callback, int32_t max_dereference_count, void *user_data)
rocprofiler_status_t rocprofiler_query_callback_tracing_kind_operation_name(rocprofiler_callback_tracing_kind_t kind, uint32_t operation, const char **name, uint64_t *name_len)
Query the name of the callback tracing kind. The name retrieved from this function is a string litera...
int(* rocprofiler_callback_tracing_kind_cb_t)(rocprofiler_callback_tracing_kind_t kind, void *data)
Callback function for mapping rocprofiler_callback_tracing_kind_t ids to string names.
Definition callback_tracing.h:226
rocprofiler_status_t rocprofiler_query_callback_tracing_kind_name(rocprofiler_callback_tracing_kind_t kind, const char **name, uint64_t *name_len)
Query the name of the callback tracing kind. The name retrieved from this function is a string litera...
rocprofiler_code_object_storage_type_t
ROCProfiler Enumeration for code object storage types (identical values to hsa_ven_amd_loader_code_ob...
Definition callback_tracing.h:52
rocprofiler_status_t rocprofiler_iterate_callback_tracing_kind_operations(rocprofiler_callback_tracing_kind_t kind, rocprofiler_callback_tracing_kind_operation_cb_t callback, void *data)
Iterates over all the mappings of the operations for a given rocprofiler_callback_tracing_kind_t and ...
int(* rocprofiler_callback_tracing_kind_operation_cb_t)(rocprofiler_callback_tracing_kind_t kind, uint32_t operation, void *data)
Callback function for mapping the operations of a given rocprofiler_callback_tracing_kind_t to string...
Definition callback_tracing.h:234
rocprofiler_status_t rocprofiler_iterate_callback_tracing_kinds(rocprofiler_callback_tracing_kind_cb_t callback, void *data)
Iterate over all the mappings of the callback tracing kinds and get a callback for each kind.
void(* rocprofiler_callback_tracing_cb_t)(rocprofiler_callback_tracing_record_t record, rocprofiler_user_data_t *user_data, void *callback_data)
API Tracing callback function. This function is invoked twice per API function: once before the funct...
Definition callback_tracing.h:218
@ ROCPROFILER_CODE_OBJECT_STORAGE_TYPE_NONE
Definition callback_tracing.h:53
@ ROCPROFILER_CODE_OBJECT_STORAGE_TYPE_MEMORY
Definition callback_tracing.h:55
@ ROCPROFILER_CODE_OBJECT_STORAGE_TYPE_FILE
Definition callback_tracing.h:54
@ ROCPROFILER_CODE_OBJECT_STORAGE_TYPE_LAST
Definition callback_tracing.h:57
ROCProfiler Code Object Kernel Symbol Tracer Callback Record.
Definition callback_tracing.h:138
ROCProfiler Code Object Load Tracer Callback Record.
Definition callback_tracing.h:94
ROCProfiler HIP runtime and compiler API Tracer Callback Data.
Definition callback_tracing.h:74
ROCProfiler HSA API Callback Data.
Definition callback_tracing.h:64
ROCProfiler Kernel Dispatch Callback Tracer Record.
Definition callback_tracing.h:164
ROCProfiler Marker Tracer Callback Data.
Definition callback_tracing.h:84
ROCProfiler Memory Copy Callback Tracer Record.
Definition callback_tracing.h:178
ROCProfiler Scratch Memory Callback Data.
Definition callback_tracing.h:191
Definition api_args.h:65
Definition api_args.h:49
Definition api_args.h:71
Definition api_args.h:45
Definition api_args.h:51
Definition api_args.h:44
Generated by 1.9.8