2018-03-25 08:50:39 +02:00
|
|
|
// Matrix Construct
|
|
|
|
//
|
|
|
|
// Copyright (C) Matrix Construct Developers, Authors & Contributors
|
|
|
|
// Copyright (C) 2016-2018 Jason Volk <jason@zemos.net>
|
|
|
|
//
|
|
|
|
// Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
// purpose with or without fee is hereby granted, provided that the above
|
|
|
|
// copyright notice and this permission notice is present in all copies. The
|
|
|
|
// full license for this software is available in the LICENSE file.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_CTX_THIS_CTX_H
|
|
|
|
|
|
|
|
/// Interface to the currently running context
|
2020-02-28 18:11:06 +01:00
|
|
|
namespace ircd::ctx { inline namespace this_ctx
|
2018-03-25 08:50:39 +02:00
|
|
|
{
|
2019-08-06 01:15:56 +02:00
|
|
|
struct ctx &cur() noexcept; ///< Assumptional reference to *current
|
2019-08-14 04:42:31 +02:00
|
|
|
const uint64_t &id() noexcept; // Unique ID for cur ctx
|
|
|
|
string_view name() noexcept; // Optional label for cur ctx
|
2019-08-06 01:15:56 +02:00
|
|
|
ulong cycles() noexcept; // misc profiling related
|
|
|
|
bool interruption_requested() noexcept; // interruption(cur())
|
2019-08-14 04:42:31 +02:00
|
|
|
void interruption_point(); // throws if interruption_requested()
|
2018-11-11 23:13:37 +01:00
|
|
|
void yield(); // Allow other contexts to run before returning.
|
2018-03-25 08:50:39 +02:00
|
|
|
}}
|
|
|
|
|
2018-03-27 01:20:47 +02:00
|
|
|
namespace ircd::ctx
|
|
|
|
{
|
|
|
|
/// Points to the currently running context or null for main stack (do not modify)
|
2020-02-11 21:17:59 +01:00
|
|
|
extern thread_local ctx *current;
|
2018-03-27 01:20:47 +02:00
|
|
|
}
|
|
|
|
|
2019-08-11 17:00:17 +02:00
|
|
|
namespace ircd
|
|
|
|
{
|
|
|
|
namespace this_ctx = ctx::this_ctx;
|
|
|
|
}
|
|
|
|
|
2019-08-14 04:42:31 +02:00
|
|
|
/// View the name of the currently running context, or "*" if no context is
|
|
|
|
/// currently running.
|
|
|
|
inline ircd::string_view
|
|
|
|
ircd::ctx::this_ctx::name()
|
|
|
|
noexcept
|
|
|
|
{
|
|
|
|
return current? name(cur()) : "*"_sv;
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Calculate the current TSC (reference cycle count) accumulated for this
|
|
|
|
/// context only. This is done by first calculating a cycle count for the
|
|
|
|
/// current slice/epoch (see: ctx/prof.h) which is where the RDTSC sample
|
|
|
|
/// occurs. This count is added to an accumulator value saved in the ctx
|
|
|
|
/// structure. The accumulator value is updated at the end of each execution
|
|
|
|
/// slice, thus giving us the cycle count for this ctx only, up to this point.
|
|
|
|
extern inline ulong
|
|
|
|
__attribute__((flatten, always_inline, gnu_inline, artificial))
|
2019-07-24 01:21:22 +02:00
|
|
|
ircd::ctx::this_ctx::cycles()
|
2019-08-06 01:15:56 +02:00
|
|
|
noexcept
|
2019-07-24 01:21:22 +02:00
|
|
|
{
|
2019-08-14 04:42:31 +02:00
|
|
|
const auto slice(prof::cur_slice_cycles());
|
|
|
|
const auto accumulated(cycles(cur()));
|
|
|
|
return accumulated + slice;
|
2019-07-24 01:21:22 +02:00
|
|
|
}
|
|
|
|
|
2018-03-25 08:50:39 +02:00
|
|
|
/// Reference to the currently running context. Call if you expect to be in a
|
|
|
|
/// context. Otherwise use the ctx::current pointer.
|
|
|
|
inline ircd::ctx::ctx &
|
2019-08-14 04:42:31 +02:00
|
|
|
__attribute__((always_inline))
|
2018-03-25 08:50:39 +02:00
|
|
|
ircd::ctx::this_ctx::cur()
|
2019-08-06 01:15:56 +02:00
|
|
|
noexcept
|
2018-03-25 08:50:39 +02:00
|
|
|
{
|
|
|
|
assert(current);
|
|
|
|
return *current;
|
|
|
|
}
|