2e0ede4761
* [0/N] git submodules
* [1/N] Update cmake, gitignore, external
- clang-tidy file
- update .gitignore
- update main CMakeLists.txt
- update external/CMakeLists.txt
- update rocprofiler_config_interfaces.cmake
- update rocprofiler_formatting.cmake
- update rocprofiler_interfaces.cmake
- update rocprofiler_linting.cmake
- update rocprofiler_options.cmake
- update rocprofiler_utilities.cmake
* [2/N] Update rocprofiler/config.h
- update to work with new rocprofiler.h
* [3/N] Update source/lib/rocprofiler/hsa
- hsa-types.h: static asserts
- hsa.cpp: copyTables scope
- hsa.gen.cpp: ACTIVITY_DOMAIN_HSA_API -> ROCPROFILER_TRACER_ACTIVITY_DOMAIN_HSA_API
- rename some files
- add rocprofiler_ prefix to types and enums
- HSA_API_TABLE_LOOKUP_DEFINITION macro
- get_saved_table() -> get_table()
* [4/N] Update source/lib/common
- CMake: change target_link_libraries
- defines.hpp: remove ppdefs defined in include/rocprofiler/defines.h
* [5/N] Update source/lib/rocprofiler
- updates due to changes in rocprofiler.h
- rocprofiler_config.cpp: remove unions which are now defined in include/rocprofiler
- CMakeLists.txt: rocprofiler.cpp and public hsa-runtime and hip libraries
- rocprofiler.cpp: dummy implementations for:
- rocprofiler_query_available_agents
- rocprofiler_create_context
- rocprofiler_start_context
- rocprofiler_stop_context
- rocprofiler_flush_buffer
- rocprofiler_destroy_buffer
* [6/N] Update license
- replace stale LBNL license
* [7/N] CMake format
[ROCm/rocprofiler-sdk commit: 351d825a8d]
65 baris
2.9 KiB
C++
65 baris
2.9 KiB
C++
// Copyright (c) 2018-2023 Advanced Micro Devices, Inc.
|
|
//
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
// of this software and associated documentation files (the "Software"), to deal
|
|
// in the Software without restriction, including without limitation the rights
|
|
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
// copies of the Software, and to permit persons to whom the Software is
|
|
// furnished to do so, subject to the following conditions:
|
|
//
|
|
// The above copyright notice and this permission notice shall be included in
|
|
// all copies or substantial portions of the Software.
|
|
//
|
|
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
// THE SOFTWARE.
|
|
|
|
#pragma once
|
|
|
|
#include <rocprofiler/defines.h>
|
|
|
|
#define ROCPROFILER_VISIBILITY(MODE) ROCPROFILER_ATTRIBUTE(visibility(MODE))
|
|
#define ROCPROFILER_INTERNAL_API ROCPROFILER_VISIBILITY("internal")
|
|
#define ROCPROFILER_INLINE ROCPROFILER_ATTRIBUTE(always_inline) inline
|
|
#define ROCPROFILER_NOINLINE ROCPROFILER_ATTRIBUTE(noinline)
|
|
#define ROCPROFILER_HOT ROCPROFILER_ATTRIBUTE(hot)
|
|
#define ROCPROFILER_COLD ROCPROFILER_ATTRIBUTE(cold)
|
|
#define ROCPROFILER_CONST ROCPROFILER_ATTRIBUTE(const)
|
|
#define ROCPROFILER_PURE ROCPROFILER_ATTRIBUTE(pure)
|
|
#define ROCPROFILER_WEAK ROCPROFILER_ATTRIBUTE(weak)
|
|
#define ROCPROFILER_PACKED ROCPROFILER_ATTRIBUTE(__packed__)
|
|
#define ROCPROFILER_PACKED_ALIGN(VAL) ROCPROFILER_PACKED ROCPROFILER_ATTRIBUTE(__aligned__(VAL))
|
|
#define ROCPROFILER_LIKELY(...) __builtin_expect((__VA_ARGS__), 1)
|
|
#define ROCPROFILER_UNLIKELY(...) __builtin_expect((__VA_ARGS__), 0)
|
|
|
|
#if defined(ROCPROFILER_CI) && ROCPROFILER_CI > 0
|
|
# if defined(NDEBUG)
|
|
# undef NDEBUG
|
|
# endif
|
|
# if !defined(DEBUG)
|
|
# define DEBUG 1
|
|
# endif
|
|
# if defined(__cplusplus)
|
|
# include <cassert>
|
|
# else
|
|
# include <assert.h>
|
|
# endif
|
|
#endif
|
|
|
|
#define ROCPROFILER_STRINGIZE(X) ROCPROFILER_STRINGIZE2(X)
|
|
#define ROCPROFILER_STRINGIZE2(X) #X
|
|
#define ROCPROFILER_VAR_NAME_COMBINE(X, Y) X##Y
|
|
#define ROCPROFILER_VARIABLE(X, Y) ROCPROFILER_VAR_NAME_COMBINE(X, Y)
|
|
#define ROCPROFILER_LINESTR ROCPROFILER_STRINGIZE(__LINE__)
|
|
#define ROCPROFILER_ESC(...) __VA_ARGS__
|
|
|
|
#if defined(__cplusplus)
|
|
# if !defined(ROCPROFILER_FOLD_EXPRESSION)
|
|
# define ROCPROFILER_FOLD_EXPRESSION(...) ((__VA_ARGS__), ...)
|
|
# endif
|
|
#endif
|