2022-01-26 23:25:00 -06:00
|
|
|
// MIT License
|
|
|
|
|
//
|
|
|
|
|
// Copyright (c) 2022 Advanced Micro Devices, Inc. All Rights Reserved.
|
2022-01-24 20:49:17 -06:00
|
|
|
//
|
|
|
|
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
// of this software and associated documentation files (the "Software"), to deal
|
2022-01-26 23:25:00 -06:00
|
|
|
// 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
|
2022-01-24 20:49:17 -06:00
|
|
|
// furnished to do so, subject to the following conditions:
|
|
|
|
|
//
|
2022-01-26 23:25:00 -06:00
|
|
|
// The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
// copies or substantial portions of the Software.
|
2022-01-24 20:49:17 -06:00
|
|
|
//
|
|
|
|
|
// 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
|
2022-01-26 23:25:00 -06:00
|
|
|
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
2022-01-24 20:49:17 -06:00
|
|
|
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
2022-01-26 23:25:00 -06:00
|
|
|
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
// SOFTWARE.
|
2022-01-24 20:49:17 -06:00
|
|
|
|
|
|
|
|
#include "library/components/pthread_gotcha.hpp"
|
2022-02-08 17:42:17 -06:00
|
|
|
#include "library/components/omnitrace.hpp"
|
|
|
|
|
#include "library/components/roctracer.hpp"
|
2022-01-24 20:49:17 -06:00
|
|
|
#include "library/config.hpp"
|
|
|
|
|
#include "library/debug.hpp"
|
|
|
|
|
#include "library/sampling.hpp"
|
|
|
|
|
|
2022-02-23 06:59:32 -06:00
|
|
|
#include <timemory/backends/threading.hpp>
|
2022-01-24 20:49:17 -06:00
|
|
|
#include <timemory/sampling/allocator.hpp>
|
|
|
|
|
#include <timemory/utility/types.hpp>
|
|
|
|
|
|
2022-02-23 06:59:32 -06:00
|
|
|
#include <ostream>
|
2022-01-24 20:49:17 -06:00
|
|
|
#include <pthread.h>
|
|
|
|
|
|
|
|
|
|
namespace omnitrace
|
|
|
|
|
{
|
|
|
|
|
namespace sampling
|
|
|
|
|
{
|
|
|
|
|
std::set<int>
|
|
|
|
|
setup();
|
|
|
|
|
std::set<int>
|
|
|
|
|
shutdown();
|
|
|
|
|
} // namespace sampling
|
|
|
|
|
|
2022-02-08 17:42:17 -06:00
|
|
|
namespace mpl = tim::mpl;
|
|
|
|
|
|
|
|
|
|
using bundle_t = tim::lightweight_tuple<comp::wall_clock, comp::roctracer_data>;
|
|
|
|
|
using wall_pw_t = mpl::piecewise_select<comp::wall_clock>; // only wall-clock
|
|
|
|
|
using main_pw_t = mpl::piecewise_ignore<comp::wall_clock>; // exclude wall-clock
|
|
|
|
|
using omni_pw_t = mpl::piecewise_select<>;
|
|
|
|
|
|
|
|
|
|
namespace
|
|
|
|
|
{
|
|
|
|
|
std::map<int64_t, std::shared_ptr<bundle_t>> bundles = {};
|
|
|
|
|
std::mutex bundles_mutex{};
|
|
|
|
|
|
|
|
|
|
inline void
|
|
|
|
|
start_bundle(bundle_t& _bundle)
|
|
|
|
|
{
|
|
|
|
|
if(comp::roctracer::is_setup())
|
|
|
|
|
{
|
|
|
|
|
_bundle.push(main_pw_t{});
|
|
|
|
|
_bundle.start();
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
_bundle.push(omni_pw_t{});
|
|
|
|
|
_bundle.start(omni_pw_t{});
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
inline void
|
|
|
|
|
stop_bundle(bundle_t& _bundle, int64_t _tid)
|
|
|
|
|
{
|
|
|
|
|
_bundle.stop(wall_pw_t{}); // stop wall-clock so we can get the value
|
|
|
|
|
// update roctracer_data
|
|
|
|
|
_bundle.store(std::plus<double>{},
|
|
|
|
|
_bundle.get<comp::wall_clock>()->get() * units::sec);
|
|
|
|
|
// stop all other components including roctracer_data after update
|
|
|
|
|
_bundle.stop(main_pw_t{});
|
|
|
|
|
// exclude popping wall-clock
|
|
|
|
|
_bundle.pop(main_pw_t{}, _tid);
|
|
|
|
|
}
|
|
|
|
|
} // namespace
|
|
|
|
|
|
2022-01-24 20:49:17 -06:00
|
|
|
pthread_gotcha::wrapper::wrapper(routine_t _routine, void* _arg, bool _enable_sampling,
|
2022-02-23 06:59:32 -06:00
|
|
|
int64_t _parent, promise_t* _p)
|
2022-01-24 20:49:17 -06:00
|
|
|
: m_enable_sampling{ _enable_sampling }
|
2022-02-23 06:59:32 -06:00
|
|
|
, m_parent_tid{ _parent }
|
2022-01-24 20:49:17 -06:00
|
|
|
, m_routine{ _routine }
|
|
|
|
|
, m_arg{ _arg }
|
|
|
|
|
, m_promise{ _p }
|
|
|
|
|
{}
|
|
|
|
|
|
|
|
|
|
void*
|
|
|
|
|
pthread_gotcha::wrapper::operator()() const
|
|
|
|
|
{
|
2022-02-08 17:42:17 -06:00
|
|
|
std::shared_ptr<bundle_t> _bundle{};
|
|
|
|
|
std::set<int> _signals{};
|
|
|
|
|
auto& _enable_sampling = pthread_gotcha::enable_sampling_on_child_threads();
|
|
|
|
|
auto _active = (get_state() == omnitrace::State::Active);
|
|
|
|
|
int64_t _tid = -1;
|
|
|
|
|
auto _is_sampling = false;
|
|
|
|
|
auto _dtor = scope::destructor{ [&]() {
|
|
|
|
|
if(_is_sampling)
|
|
|
|
|
{
|
|
|
|
|
sampling::block_signals(_signals);
|
|
|
|
|
sampling::shutdown();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(_bundle)
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::mutex> _lk{ bundles_mutex };
|
|
|
|
|
stop_bundle(*_bundle, _tid);
|
|
|
|
|
_bundle.reset();
|
|
|
|
|
bundles.erase(_tid);
|
|
|
|
|
}
|
|
|
|
|
} };
|
|
|
|
|
|
2022-02-23 06:59:32 -06:00
|
|
|
if(_active) get_cpu_cid_stack(threading::get_id(), m_parent_tid);
|
|
|
|
|
|
2022-02-08 17:42:17 -06:00
|
|
|
if(m_enable_sampling && _enable_sampling && _active)
|
2022-01-24 20:49:17 -06:00
|
|
|
{
|
2022-02-08 17:42:17 -06:00
|
|
|
_tid = threading::get_id();
|
|
|
|
|
threading::set_thread_name(TIMEMORY_JOIN(" ", "Thread", _tid).c_str());
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::mutex> _lk{ bundles_mutex };
|
|
|
|
|
if(comp::roctracer::is_setup())
|
|
|
|
|
_bundle =
|
|
|
|
|
bundles.emplace(_tid, std::make_shared<bundle_t>("start_thread"))
|
|
|
|
|
.first->second;
|
|
|
|
|
}
|
|
|
|
|
if(_bundle) start_bundle(*_bundle);
|
|
|
|
|
_is_sampling = true;
|
2022-01-24 20:49:17 -06:00
|
|
|
_enable_sampling = false;
|
|
|
|
|
_signals = sampling::setup();
|
|
|
|
|
_enable_sampling = true;
|
|
|
|
|
sampling::unblock_signals();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(m_promise) m_promise->set_value();
|
|
|
|
|
|
|
|
|
|
// execute the original function
|
2022-02-08 17:42:17 -06:00
|
|
|
return m_routine(m_arg);
|
2022-01-24 20:49:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void*
|
|
|
|
|
pthread_gotcha::wrapper::wrap(void* _arg)
|
|
|
|
|
{
|
|
|
|
|
if(_arg == nullptr) return nullptr;
|
|
|
|
|
|
|
|
|
|
// convert the argument
|
|
|
|
|
wrapper* _wrapper = static_cast<wrapper*>(_arg);
|
|
|
|
|
|
|
|
|
|
// execute the original function
|
|
|
|
|
return (*_wrapper)();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
pthread_gotcha::configure()
|
|
|
|
|
{
|
|
|
|
|
pthread_gotcha_t::get_initializer() = []() {
|
|
|
|
|
TIMEMORY_C_GOTCHA(pthread_gotcha_t, 0, pthread_create);
|
|
|
|
|
};
|
|
|
|
|
}
|
|
|
|
|
|
2022-02-08 17:42:17 -06:00
|
|
|
void
|
|
|
|
|
pthread_gotcha::shutdown()
|
|
|
|
|
{
|
|
|
|
|
std::unique_lock<std::mutex> _lk{ bundles_mutex };
|
|
|
|
|
unsigned long _ndangling = 0;
|
|
|
|
|
for(auto itr : bundles)
|
|
|
|
|
{
|
|
|
|
|
if(itr.second)
|
|
|
|
|
{
|
|
|
|
|
stop_bundle(*itr.second, itr.first);
|
|
|
|
|
++_ndangling;
|
|
|
|
|
}
|
|
|
|
|
itr.second.reset();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
OMNITRACE_CONDITIONAL_PRINT(
|
|
|
|
|
(get_verbose() > 0 || get_debug()) && _ndangling > 0,
|
|
|
|
|
"pthread_gotcha::shutdown() cleaned up %lu dangling bundles\n", _ndangling);
|
|
|
|
|
bundles.clear();
|
|
|
|
|
}
|
|
|
|
|
|
2022-01-24 20:49:17 -06:00
|
|
|
bool&
|
|
|
|
|
pthread_gotcha::enable_sampling_on_child_threads()
|
|
|
|
|
{
|
|
|
|
|
static thread_local bool _v = get_use_sampling();
|
|
|
|
|
return _v;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// pthread_create
|
|
|
|
|
int
|
|
|
|
|
pthread_gotcha::operator()(pthread_t* thread, const pthread_attr_t* attr,
|
|
|
|
|
void* (*start_routine)(void*), void* arg) const
|
|
|
|
|
{
|
2022-02-08 17:42:17 -06:00
|
|
|
bundle_t _bundle{ "pthread_create" };
|
|
|
|
|
auto _enable_sampling = enable_sampling_on_child_threads();
|
2022-02-23 06:59:32 -06:00
|
|
|
auto _active = (get_state() == omnitrace::State::Active);
|
|
|
|
|
int64_t _tid = (_active) ? threading::get_id() : 0;
|
|
|
|
|
|
|
|
|
|
// ensure that cpu cid stack exists on the parent thread if active
|
|
|
|
|
if(_active) get_cpu_cid_stack();
|
2022-01-24 20:49:17 -06:00
|
|
|
|
2022-02-08 17:42:17 -06:00
|
|
|
if(!get_use_sampling() || !_enable_sampling)
|
2022-01-24 20:49:17 -06:00
|
|
|
{
|
2022-02-08 17:42:17 -06:00
|
|
|
// if(!get_use_sampling()) start_bundle(_bundle);
|
2022-02-23 06:59:32 -06:00
|
|
|
auto* _obj = new wrapper(start_routine, arg, _enable_sampling, _tid, nullptr);
|
2022-01-24 20:49:17 -06:00
|
|
|
// create the thread
|
2022-02-08 17:42:17 -06:00
|
|
|
auto _ret =
|
|
|
|
|
pthread_create(thread, attr, &wrapper::wrap, static_cast<void*>(_obj));
|
|
|
|
|
// if(!get_use_sampling()) stop_bundle(_bundle, threading::get_id());
|
|
|
|
|
return _ret;
|
2022-01-24 20:49:17 -06:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// block the signals in entire process
|
|
|
|
|
OMNITRACE_DEBUG("blocking signals...\n");
|
|
|
|
|
tim::sampling::block_signals({ SIGALRM, SIGPROF },
|
|
|
|
|
tim::sampling::sigmask_scope::process);
|
|
|
|
|
|
2022-02-08 17:42:17 -06:00
|
|
|
start_bundle(_bundle);
|
|
|
|
|
|
2022-01-24 20:49:17 -06:00
|
|
|
// promise set by thread when signal handler is configured
|
|
|
|
|
auto _promise = std::promise<void>{};
|
|
|
|
|
auto _fut = _promise.get_future();
|
2022-02-23 06:59:32 -06:00
|
|
|
auto* _wrap = new wrapper(start_routine, arg, _enable_sampling, _tid, &_promise);
|
2022-01-24 20:49:17 -06:00
|
|
|
|
|
|
|
|
// create the thread
|
2022-02-08 17:42:17 -06:00
|
|
|
auto _ret = pthread_create(thread, attr, &wrapper::wrap, static_cast<void*>(_wrap));
|
2022-01-24 20:49:17 -06:00
|
|
|
|
|
|
|
|
// wait for thread to set promise
|
|
|
|
|
OMNITRACE_DEBUG("waiting for child to signal it is setup...\n");
|
|
|
|
|
_fut.wait();
|
|
|
|
|
|
2022-02-08 17:42:17 -06:00
|
|
|
stop_bundle(_bundle, threading::get_id());
|
|
|
|
|
|
2022-01-24 20:49:17 -06:00
|
|
|
// unblock the signals in the entire process
|
|
|
|
|
OMNITRACE_DEBUG("unblocking signals...\n");
|
|
|
|
|
tim::sampling::unblock_signals({ SIGALRM, SIGPROF },
|
|
|
|
|
tim::sampling::sigmask_scope::process);
|
|
|
|
|
|
|
|
|
|
OMNITRACE_DEBUG("returning success...\n");
|
|
|
|
|
return _ret;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
} // namespace omnitrace
|