rocprofiler-sdk/hsa/scratch_memory_args.h Source File

rocprofiler-sdk/hsa/scratch_memory_args.h Source File#

ROCprofiler-SDK developer API: rocprofiler-sdk/hsa/scratch_memory_args.h Source File
ROCprofiler-SDK developer API 1.0.0
ROCm Profiling API and tools
scratch_memory_args.h
1// MIT License
2//
3// Copyright (c) 2023-2025 Advanced Micro Devices, Inc. All rights reserved.
4//
5// Permission is hereby granted, free of charge, to any person obtaining a copy
6// of this software and associated documentation files (the "Software"), to deal
7// in the Software without restriction, including without limitation the rights
8// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9// copies of the Software, and to permit persons to whom the Software is
10// furnished to do so, subject to the following conditions:
11//
12// The above copyright notice and this permission notice shall be included in
13// all copies or substantial portions of the Software.
14//
15// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21// THE SOFTWARE.
22
23#pragma once
24
25#include <rocprofiler-sdk/defines.h>
26
27#include <stddef.h>
28#include <stdint.h>
29
30ROCPROFILER_EXTERN_C_INIT
31
32// Empty struct has a size of 0 in C but size of 1 in C++.
33// This struct is added to the union members which represent
34// functions with no arguments to ensure ABI compatibility
35typedef struct rocprofiler_scratch_memory_no_args
36{
37 char empty;
38} rocprofiler_scratch_memory_no_args;
39
40typedef union rocprofiler_scratch_memory_args_t
41{
42 struct
43 {
44 uint64_t dispatch_id;
45 } alloc_start;
46 struct
47 {
48 uint64_t dispatch_id;
49 size_t size;
50 size_t num_slots;
51 } alloc_end;
52 struct
53 {
54 rocprofiler_scratch_memory_no_args no_args;
55 } free_start;
56 struct
57 {
58 rocprofiler_scratch_memory_no_args no_args;
59 } free_end;
60 struct
61 {
62 rocprofiler_scratch_memory_no_args no_args;
63 } async_reclaim_start;
64 struct
65 {
66 rocprofiler_scratch_memory_no_args no_args;
67 } async_reclaim_end;
68} rocprofiler_scratch_memory_args_t;
69
70ROCPROFILER_EXTERN_C_FINI