2018-02-04 03:22:01 +01: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.
|
2016-09-26 00:46:54 +02:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
#define HAVE_IRCD_CTX_PROF_H
|
|
|
|
|
2017-09-01 02:42:15 +02:00
|
|
|
namespace ircd::ctx
|
|
|
|
{
|
|
|
|
size_t stack_usage_here(const ctx &) __attribute__((noinline));
|
|
|
|
size_t stack_usage_here() __attribute__((noinline));
|
|
|
|
}
|
|
|
|
|
2017-09-09 16:30:45 +02:00
|
|
|
/// Profiling for the context system.
|
|
|
|
///
|
|
|
|
/// These facilities provide tools and statistics. The primary purpose here is
|
|
|
|
/// to alert developers of unwanted context behavior, in addition to optimizing
|
|
|
|
/// the overall performance of the context system.
|
|
|
|
///
|
|
|
|
/// The original use case is for the embedded database backend. Function calls
|
|
|
|
/// are made which may conduct blocking I/O before returning. This will hang the
|
|
|
|
/// current userspace context while it is running and thus BLOCK EVERY CONTEXT
|
|
|
|
/// in the entire IRCd. Since this is still an asynchronous system, it just
|
|
|
|
/// doesn't have callbacks: we do not do I/O without a cooperative yield.
|
|
|
|
/// Fortunately there are mechanisms to mitigate this -- but we have to know
|
|
|
|
/// for sure. A database call which has been passed over for mitigation may
|
|
|
|
/// start doing some blocking flush under load, etc. The profiler will alert
|
|
|
|
/// us of this so it doesn't silently degrade performance.
|
|
|
|
///
|
2017-08-28 23:51:22 +02:00
|
|
|
namespace ircd::ctx::prof
|
2016-09-26 00:46:54 +02:00
|
|
|
{
|
2017-08-28 23:51:22 +02:00
|
|
|
enum class event;
|
|
|
|
struct settings extern settings;
|
2016-09-26 00:46:54 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
void mark(const event &);
|
2016-09-26 00:46:54 +02:00
|
|
|
}
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
enum class ircd::ctx::prof::event
|
2016-09-26 00:46:54 +02:00
|
|
|
{
|
|
|
|
SPAWN, // Context spawn requested
|
|
|
|
JOIN, // Context join requested
|
|
|
|
JOINED, // Context join completed
|
|
|
|
CUR_ENTER, // Current context entered
|
|
|
|
CUR_LEAVE, // Current context leaving
|
|
|
|
CUR_YIELD, // Current context yielding
|
|
|
|
CUR_CONTINUE, // Current context continuing
|
|
|
|
CUR_INTERRUPT, // Current context detects interruption
|
|
|
|
};
|
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
struct ircd::ctx::prof::settings
|
|
|
|
{
|
|
|
|
double stack_usage_warning; // percentage
|
|
|
|
double stack_usage_assertion; // percentage
|
2016-09-26 00:46:54 +02:00
|
|
|
|
2017-08-28 23:51:22 +02:00
|
|
|
microseconds slice_warning; // Warn when the yield-to-yield time exceeds
|
|
|
|
microseconds slice_interrupt; // Interrupt exception when exceeded (not a signal)
|
|
|
|
microseconds slice_assertion; // abort() when exceeded (not a signal, must yield)
|
|
|
|
};
|