1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
#pragma once
#include "deep.h"
#include "macros_and_utils.h"
// forwards
class Universe;
// ################################################################################################
#ifdef _DEBUG
void luaG_dump(lua_State* L);
#endif // _DEBUG
// ################################################################################################
void push_registry_subtable_mode(lua_State* L, UniqueKey key_, const char* mode_);
void push_registry_subtable(lua_State* L, UniqueKey key_);
enum class VT
{
NORMAL,
KEY,
METATABLE
};
enum class InterCopyResult
{
Success,
NotEnoughValues,
Error
};
// ################################################################################################
using CacheIndex = Unique<int>;
using SourceIndex = Unique<int>;
struct InterCopyContext
{
Universe* const U;
Dest const L2;
Source const L1;
CacheIndex const L2_cache_i;
SourceIndex L1_i; // that one can change when we reuse the context
VT vt; // that one can change when we reuse the context
LookupMode const mode;
char const* name; // that one can change when we reuse the context
[[nodiscard]] bool inter_copy_one() const;
private:
[[nodiscard]] bool inter_copy_userdata() const;
[[nodiscard]] bool inter_copy_function() const;
[[nodiscard]] bool inter_copy_table() const;
[[nodiscard]] bool copyclone() const;
[[nodiscard]] bool copydeep() const;
[[nodiscard]] bool push_cached_metatable() const;
void copy_func() const;
void copy_cached_func() const;
void inter_copy_keyvaluepair() const;
};
// ################################################################################################
[[nodiscard]] InterCopyResult luaG_inter_copy_package(Universe* U, Source L, Dest L2, int package_idx_, LookupMode mode_);
[[nodiscard]] InterCopyResult luaG_inter_copy(Universe* U, Source L, Dest L2, int n, LookupMode mode_);
[[nodiscard]] InterCopyResult luaG_inter_move(Universe* U, Source L, Dest L2, int n, LookupMode mode_);
[[nodiscard]] int luaG_nameof(lua_State* L);
void populate_func_lookup_table(lua_State* L, int _i, char const* _name);
void initialize_allocator_function(Universe* U, lua_State* L);
// ################################################################################################
// crc64/we of string "CONFIG_REGKEY" generated at http://www.nitrxgen.net/hashgen/
static constexpr UniqueKey CONFIG_REGKEY{ 0x31cd24894eae8624ull }; // registry key to access the configuration
// crc64/we of string "LOOKUP_REGKEY" generated at http://www.nitrxgen.net/hashgen/
static constexpr UniqueKey LOOKUP_REGKEY{ 0x5051ed67ee7b51a1ull }; // registry key to access the lookup database
|