2018-06-23 03:03:58 +00:00
|
|
|
/*
|
|
|
|
* Mr. 4th Dimention - Allen Webster
|
|
|
|
*
|
|
|
|
* 22.06.2018
|
|
|
|
*
|
|
|
|
* Dynamic variable system
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
// TOP
|
|
|
|
|
|
|
|
#if !defined(FRED_DYNAMIC_VARIABLES_H)
|
|
|
|
#define FRED_DYNAMIC_VARIABLES_H
|
|
|
|
|
2018-09-07 22:39:33 +00:00
|
|
|
union Managed_Object_Standard_Header{
|
2018-09-04 00:37:54 +00:00
|
|
|
u64 eight_byte_alignment__;
|
|
|
|
struct{
|
2018-09-07 22:39:33 +00:00
|
|
|
Managed_Object_Type type;
|
|
|
|
u32 item_size;
|
|
|
|
u32 count;
|
2018-09-04 00:37:54 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-09-07 22:39:33 +00:00
|
|
|
struct Managed_Memory_Header{
|
|
|
|
Managed_Object_Standard_Header std_header;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Managed_Buffer_Markers_Header{
|
|
|
|
Managed_Object_Standard_Header std_header;
|
|
|
|
Managed_Buffer_Markers_Header *next;
|
|
|
|
Managed_Buffer_Markers_Header *prev;
|
|
|
|
Buffer_ID buffer_id;
|
2018-09-22 00:29:32 +00:00
|
|
|
Managed_Buffer_Markers_Type marker_type;
|
|
|
|
u32 color;
|
|
|
|
u32 text_color;
|
|
|
|
View_ID key_view_id;
|
2018-09-04 00:37:54 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
global_const i32 managed_header_type_sizes[ManagedObjectType_COUNT] = {
|
|
|
|
0,
|
|
|
|
sizeof(Managed_Memory_Header),
|
|
|
|
sizeof(Managed_Buffer_Markers_Header),
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Managed_Buffer_Markers_Header_List{
|
|
|
|
Managed_Buffer_Markers_Header *first;
|
|
|
|
Managed_Buffer_Markers_Header *last;
|
|
|
|
i32 count;
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2018-06-23 03:03:58 +00:00
|
|
|
struct Dynamic_Variable_Slot{
|
|
|
|
Dynamic_Variable_Slot *next;
|
|
|
|
Dynamic_Variable_Slot *prev;
|
|
|
|
String name;
|
|
|
|
u64 default_value;
|
|
|
|
i32 location;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Dynamic_Variable_Layout{
|
|
|
|
Dynamic_Variable_Slot sentinel;
|
|
|
|
i32 location_counter;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Dynamic_Variable_Block{
|
|
|
|
u64 *val_array;
|
|
|
|
i32 count;
|
|
|
|
i32 max;
|
|
|
|
};
|
|
|
|
|
2018-08-11 05:42:00 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
2018-08-18 08:16:52 +00:00
|
|
|
struct Dynamic_Memory_Header{
|
|
|
|
Dynamic_Memory_Header *next;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Dynamic_Memory_Bank{
|
|
|
|
Heap heap;
|
|
|
|
Dynamic_Memory_Header *first;
|
|
|
|
Dynamic_Memory_Header *last;
|
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
struct Dynamic_Workspace{
|
|
|
|
Dynamic_Variable_Block var_block;
|
|
|
|
Dynamic_Memory_Bank mem_bank;
|
2018-08-26 09:55:12 +00:00
|
|
|
u32_Ptr_Table object_id_to_object_ptr;
|
|
|
|
u32 object_id_counter;
|
2018-09-07 22:39:33 +00:00
|
|
|
u32 scope_id;
|
2018-08-26 09:55:12 +00:00
|
|
|
i32 user_type;
|
|
|
|
void *user_back_ptr;
|
2018-09-04 00:37:54 +00:00
|
|
|
Managed_Buffer_Markers_Header_List buffer_markers_list;
|
2018-08-12 06:33:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
////////////////////////////////
|
|
|
|
|
2018-08-12 03:45:09 +00:00
|
|
|
global_const i32 lifetime_key_reference_per_node = 32;
|
|
|
|
|
|
|
|
struct Lifetime_Key_Ref_Node{
|
|
|
|
Lifetime_Key_Ref_Node *next;
|
|
|
|
Lifetime_Key_Ref_Node *prev;
|
|
|
|
struct Lifetime_Key *keys[lifetime_key_reference_per_node];
|
2018-08-11 05:42:00 +00:00
|
|
|
};
|
|
|
|
|
2018-08-12 03:45:09 +00:00
|
|
|
struct Lifetime_Object{
|
|
|
|
union{
|
|
|
|
struct{
|
|
|
|
Lifetime_Object *next;
|
|
|
|
Lifetime_Object *prev;
|
|
|
|
};
|
|
|
|
struct{
|
|
|
|
Lifetime_Key_Ref_Node *key_node_first;
|
|
|
|
Lifetime_Key_Ref_Node *key_node_last;
|
|
|
|
i32 key_count;
|
2018-08-26 21:23:12 +00:00
|
|
|
Dynamic_Workspace workspace;
|
2018-08-12 03:45:09 +00:00
|
|
|
};
|
2018-08-11 05:42:00 +00:00
|
|
|
};
|
2018-08-12 03:45:09 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Lifetime_Key{
|
|
|
|
union{
|
|
|
|
struct{
|
|
|
|
Lifetime_Key *next;
|
|
|
|
Lifetime_Key *prev;
|
|
|
|
};
|
|
|
|
struct{
|
|
|
|
struct Lifetime_Object **members;
|
|
|
|
i32 count;
|
2018-08-18 08:16:52 +00:00
|
|
|
Dynamic_Workspace dynamic_workspace;
|
2018-08-12 03:45:09 +00:00
|
|
|
};
|
2018-08-11 05:42:00 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-08-12 03:45:09 +00:00
|
|
|
global_const u64 LifetimeKeyHash_Empty = 0&(~bit_63);
|
|
|
|
global_const u64 LifetimeKeyHash_Deleted = max_u64&(~bit_63);
|
|
|
|
|
|
|
|
struct Lifetime_Key_Table{
|
|
|
|
void *mem_ptr;
|
|
|
|
u64 *hashes;
|
|
|
|
Lifetime_Key **keys;
|
|
|
|
u32 count;
|
|
|
|
u32 max;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Lifetime_Key_Ref_Node_List{
|
|
|
|
Lifetime_Key_Ref_Node *first;
|
|
|
|
Lifetime_Key_Ref_Node *last;
|
|
|
|
i32 count;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Lifetime_Object_List{
|
|
|
|
Lifetime_Object *first;
|
|
|
|
Lifetime_Object *last;
|
|
|
|
i32 count;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Lifetime_Key_List{
|
|
|
|
Lifetime_Key *first;
|
|
|
|
Lifetime_Key *last;
|
|
|
|
i32 count;
|
|
|
|
};
|
|
|
|
|
2018-08-11 05:42:00 +00:00
|
|
|
struct Lifetime_Allocator{
|
2018-08-12 03:45:09 +00:00
|
|
|
Lifetime_Key_Ref_Node_List free_key_references;
|
|
|
|
Lifetime_Object_List free_objects;
|
|
|
|
Lifetime_Key_List free_keys;
|
|
|
|
Lifetime_Key_Table key_table;
|
2018-08-26 09:55:12 +00:00
|
|
|
Ptr_Table key_check_table;
|
2018-09-07 22:39:33 +00:00
|
|
|
u32_Ptr_Table scope_id_to_scope_ptr_table;
|
2018-08-26 09:55:12 +00:00
|
|
|
u32 scope_id_counter;
|
2018-08-12 06:33:52 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
struct Lifetime_Key_With_Opaque_ID{
|
|
|
|
Lifetime_Key *key;
|
|
|
|
u64 opaque_id;
|
2018-08-11 05:42:00 +00:00
|
|
|
};
|
|
|
|
|
2018-09-07 22:39:33 +00:00
|
|
|
////////////////////////////////
|
|
|
|
|
|
|
|
struct Managed_Object_Ptr_And_Workspace{
|
|
|
|
Dynamic_Workspace *workspace;
|
|
|
|
Managed_Object_Standard_Header *header;
|
|
|
|
};
|
|
|
|
|
2018-06-23 03:03:58 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
// BOTTOM
|
|
|
|
|