2015-01-07 20:29:31 +01:00
|
|
|
#ifndef memory_hh_INCLUDED
|
|
|
|
#define memory_hh_INCLUDED
|
|
|
|
|
2015-01-12 21:03:52 +01:00
|
|
|
#include <cstddef>
|
2015-01-14 00:54:58 +01:00
|
|
|
#include <new>
|
2015-01-13 23:56:51 +01:00
|
|
|
#include <utility>
|
2015-01-07 20:29:31 +01:00
|
|
|
|
|
|
|
#include "assert.hh"
|
2017-05-26 08:59:18 +02:00
|
|
|
#include "meta.hh"
|
2015-01-07 20:29:31 +01:00
|
|
|
|
|
|
|
namespace Kakoune
|
|
|
|
{
|
|
|
|
|
|
|
|
enum class MemoryDomain
|
|
|
|
{
|
|
|
|
Undefined,
|
|
|
|
String,
|
2015-01-15 14:54:38 +01:00
|
|
|
SharedString,
|
2015-01-07 20:29:31 +01:00
|
|
|
BufferContent,
|
|
|
|
BufferMeta,
|
2015-01-12 14:24:30 +01:00
|
|
|
Options,
|
|
|
|
Highlight,
|
2018-10-08 13:09:50 +02:00
|
|
|
Regions,
|
2015-01-21 14:35:46 +01:00
|
|
|
Display,
|
2015-01-12 14:45:44 +01:00
|
|
|
Mapping,
|
|
|
|
Commands,
|
|
|
|
Hooks,
|
2015-01-14 20:16:32 +01:00
|
|
|
Aliases,
|
|
|
|
EnvVars,
|
|
|
|
Faces,
|
|
|
|
Values,
|
|
|
|
Registers,
|
|
|
|
Client,
|
2015-01-12 20:46:40 +01:00
|
|
|
WordDB,
|
2015-01-16 14:58:21 +01:00
|
|
|
Selections,
|
2015-01-28 23:33:29 +01:00
|
|
|
History,
|
2016-08-31 20:33:02 +02:00
|
|
|
Remote,
|
2016-11-28 14:59:55 +01:00
|
|
|
Events,
|
|
|
|
Completion,
|
2017-10-15 03:23:57 +02:00
|
|
|
Regex,
|
2015-01-12 20:46:40 +01:00
|
|
|
Count
|
2015-01-07 20:29:31 +01:00
|
|
|
};
|
|
|
|
|
2015-01-12 20:46:40 +01:00
|
|
|
inline const char* domain_name(MemoryDomain domain)
|
2015-01-07 20:29:31 +01:00
|
|
|
{
|
2015-01-12 20:46:40 +01:00
|
|
|
switch (domain)
|
|
|
|
{
|
|
|
|
case MemoryDomain::Undefined: return "Undefined";
|
|
|
|
case MemoryDomain::String: return "String";
|
2015-01-15 14:54:38 +01:00
|
|
|
case MemoryDomain::SharedString: return "SharedString";
|
2015-01-12 20:46:40 +01:00
|
|
|
case MemoryDomain::BufferContent: return "BufferContent";
|
|
|
|
case MemoryDomain::BufferMeta: return "BufferMeta";
|
|
|
|
case MemoryDomain::Options: return "Options";
|
|
|
|
case MemoryDomain::Highlight: return "Highlight";
|
2018-10-08 13:09:50 +02:00
|
|
|
case MemoryDomain::Regions: return "Regions";
|
2015-01-21 14:35:46 +01:00
|
|
|
case MemoryDomain::Display: return "Display";
|
2015-01-12 20:46:40 +01:00
|
|
|
case MemoryDomain::Mapping: return "Mapping";
|
|
|
|
case MemoryDomain::Commands: return "Commands";
|
|
|
|
case MemoryDomain::Hooks: return "Hooks";
|
|
|
|
case MemoryDomain::WordDB: return "WordDB";
|
2015-01-14 20:16:32 +01:00
|
|
|
case MemoryDomain::Aliases: return "Aliases";
|
|
|
|
case MemoryDomain::EnvVars: return "EnvVars";
|
|
|
|
case MemoryDomain::Faces: return "Faces";
|
|
|
|
case MemoryDomain::Values: return "Values";
|
|
|
|
case MemoryDomain::Registers: return "Registers";
|
|
|
|
case MemoryDomain::Client: return "Client";
|
2015-01-16 14:58:21 +01:00
|
|
|
case MemoryDomain::Selections: return "Selections";
|
2015-01-28 23:33:29 +01:00
|
|
|
case MemoryDomain::History: return "History";
|
2016-08-31 20:33:02 +02:00
|
|
|
case MemoryDomain::Remote: return "Remote";
|
2016-11-28 14:59:55 +01:00
|
|
|
case MemoryDomain::Events: return "Events";
|
|
|
|
case MemoryDomain::Completion: return "Completion";
|
2017-10-15 03:23:57 +02:00
|
|
|
case MemoryDomain::Regex: return "Regex";
|
2015-01-12 20:46:40 +01:00
|
|
|
case MemoryDomain::Count: break;
|
|
|
|
}
|
|
|
|
kak_assert(false);
|
|
|
|
return "";
|
|
|
|
}
|
2015-01-07 20:29:31 +01:00
|
|
|
|
2019-03-21 10:35:22 +01:00
|
|
|
struct MemoryStats
|
|
|
|
{
|
|
|
|
size_t allocated_bytes;
|
|
|
|
size_t allocation_count;
|
|
|
|
size_t total_allocation_count;
|
|
|
|
};
|
|
|
|
|
|
|
|
extern MemoryStats memory_stats[(size_t)MemoryDomain::Count];
|
2015-01-07 20:29:31 +01:00
|
|
|
|
2015-01-18 19:49:32 +01:00
|
|
|
inline void on_alloc(MemoryDomain domain, size_t size)
|
|
|
|
{
|
2019-03-21 10:35:22 +01:00
|
|
|
auto& stats = memory_stats[(int)domain];
|
|
|
|
stats.allocated_bytes += size;
|
|
|
|
++stats.allocation_count;
|
|
|
|
++stats.total_allocation_count;
|
2015-01-18 19:49:32 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
inline void on_dealloc(MemoryDomain domain, size_t size)
|
|
|
|
{
|
2019-03-21 10:35:22 +01:00
|
|
|
auto& stats = memory_stats[(int)domain];
|
|
|
|
kak_assert(stats.allocated_bytes >= size);
|
|
|
|
stats.allocated_bytes -= size;
|
|
|
|
--stats.allocation_count;
|
2015-01-18 19:49:32 +01:00
|
|
|
}
|
|
|
|
|
2015-01-07 20:29:31 +01:00
|
|
|
template<typename T, MemoryDomain domain>
|
|
|
|
struct Allocator
|
|
|
|
{
|
|
|
|
using value_type = T;
|
|
|
|
|
|
|
|
Allocator() = default;
|
|
|
|
template<typename U>
|
|
|
|
Allocator(const Allocator<U, domain>&) {}
|
|
|
|
|
|
|
|
template<typename U>
|
|
|
|
struct rebind { using other = Allocator<U, domain>; };
|
|
|
|
|
|
|
|
T* allocate(size_t n)
|
|
|
|
{
|
|
|
|
size_t size = sizeof(T) * n;
|
2015-01-18 19:49:32 +01:00
|
|
|
on_alloc(domain, size);
|
|
|
|
return reinterpret_cast<T*>(::operator new(size));
|
2015-01-07 20:29:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void deallocate(T* ptr, size_t n)
|
|
|
|
{
|
|
|
|
size_t size = sizeof(T) * n;
|
2015-01-18 19:49:32 +01:00
|
|
|
on_dealloc(domain, size);
|
|
|
|
::operator delete(ptr);
|
2015-01-07 20:29:31 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<typename T1, MemoryDomain d1, typename T2, MemoryDomain d2>
|
2017-08-12 10:49:38 +02:00
|
|
|
constexpr bool operator==(const Allocator<T1, d1>&, const Allocator<T2, d2>&)
|
2015-01-07 20:29:31 +01:00
|
|
|
{
|
|
|
|
return d1 == d2;
|
|
|
|
}
|
|
|
|
|
|
|
|
template<typename T1, MemoryDomain d1, typename T2, MemoryDomain d2>
|
2017-08-12 10:49:38 +02:00
|
|
|
constexpr bool operator!=(const Allocator<T1, d1>&, const Allocator<T2, d2>&)
|
2015-01-07 20:29:31 +01:00
|
|
|
{
|
|
|
|
return d1 != d2;
|
|
|
|
}
|
|
|
|
|
2017-05-26 08:59:18 +02:00
|
|
|
|
|
|
|
constexpr MemoryDomain memory_domain(Meta::AnyType) { return MemoryDomain::Undefined; }
|
|
|
|
|
2015-01-16 14:58:21 +01:00
|
|
|
template<typename T>
|
2017-05-26 08:59:18 +02:00
|
|
|
constexpr decltype(T::Domain) memory_domain(Meta::Type<T>) { return T::Domain; }
|
2015-01-16 14:58:21 +01:00
|
|
|
|
2015-01-18 19:49:32 +01:00
|
|
|
template<MemoryDomain d>
|
|
|
|
struct UseMemoryDomain
|
|
|
|
{
|
2015-01-21 14:35:23 +01:00
|
|
|
static constexpr MemoryDomain Domain = d;
|
2015-01-18 19:49:32 +01:00
|
|
|
static void* operator new(size_t size)
|
|
|
|
{
|
2015-01-21 14:35:23 +01:00
|
|
|
on_alloc(Domain, size);
|
2015-01-18 19:49:32 +01:00
|
|
|
return ::operator new(size);
|
|
|
|
}
|
|
|
|
|
2015-01-21 14:35:23 +01:00
|
|
|
static void* operator new(size_t size, void* ptr)
|
|
|
|
{
|
|
|
|
return ::operator new(size, ptr);
|
|
|
|
}
|
|
|
|
|
2015-01-18 19:49:32 +01:00
|
|
|
static void operator delete(void* ptr, size_t size)
|
|
|
|
{
|
2015-01-21 14:35:23 +01:00
|
|
|
on_dealloc(Domain, size);
|
2015-01-18 19:49:32 +01:00
|
|
|
::operator delete(ptr);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2015-01-07 20:29:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#endif // memory_hh_INCLUDED
|