88 lines
3.0 KiB
C++
88 lines
3.0 KiB
C++
// MIT License
|
|
//
|
|
// Copyright (c) 2022-2025 Advanced Micro Devices, Inc. All Rights Reserved.
|
|
//
|
|
// 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 "core/common.hpp"
|
|
#include "core/defines.hpp"
|
|
#include "core/timemory.hpp"
|
|
|
|
#include <timemory/components/gotcha/backends.hpp>
|
|
#include <timemory/mpl/macros.hpp>
|
|
|
|
#include <array>
|
|
#include <cstddef>
|
|
#include <string>
|
|
|
|
namespace rocprofsys
|
|
{
|
|
namespace causal
|
|
{
|
|
namespace component
|
|
{
|
|
struct unblocking_gotcha : comp::base<unblocking_gotcha, void>
|
|
{
|
|
static constexpr size_t gotcha_capacity = 9;
|
|
|
|
enum indexes
|
|
{
|
|
pthread_barrier_wait_idx = 7,
|
|
kill_idx = 8,
|
|
indexes_max = gotcha_capacity,
|
|
};
|
|
|
|
template <size_t Idx>
|
|
using gotcha_index = std::integral_constant<size_t, Idx>;
|
|
|
|
ROCPROFSYS_DEFAULT_OBJECT(unblocking_gotcha)
|
|
|
|
// string id for component
|
|
static std::string label();
|
|
static std::string description();
|
|
static void preinit();
|
|
|
|
// generate the gotcha wrappers
|
|
static void configure();
|
|
static void shutdown();
|
|
|
|
template <size_t Idx, typename Ret, typename... Args>
|
|
std::enable_if_t<(Idx < kill_idx), Ret> operator()(gotcha_index<Idx>,
|
|
Ret (*)(Args...),
|
|
Args...) const noexcept;
|
|
|
|
int operator()(gotcha_index<kill_idx>, int (*)(pid_t, int), pid_t,
|
|
int) const noexcept;
|
|
};
|
|
|
|
using unblocking_gotcha_t =
|
|
comp::gotcha<unblocking_gotcha::gotcha_capacity, tim::type_list<>, unblocking_gotcha>;
|
|
} // namespace component
|
|
} // namespace causal
|
|
} // namespace rocprofsys
|
|
|
|
ROCPROFSYS_DEFINE_CONCRETE_TRAIT(prevent_reentry, causal::component::unblocking_gotcha_t,
|
|
false_type)
|
|
ROCPROFSYS_DEFINE_CONCRETE_TRAIT(static_data, causal::component::unblocking_gotcha_t,
|
|
false_type)
|
|
ROCPROFSYS_DEFINE_CONCRETE_TRAIT(fast_gotcha, causal::component::unblocking_gotcha_t,
|
|
true_type)
|