use set/unset breakpoint events to build bp entities in ctrl entity tree

This commit is contained in:
Ryan Fleury
2025-04-12 15:32:27 -07:00
parent 7ba027e841
commit 8a857b2154
5 changed files with 85 additions and 52 deletions
+4 -2
View File
@@ -4,7 +4,7 @@
//- GENERATED CODE
C_LINKAGE_BEGIN
String8 ctrl_entity_kind_code_name_table[9] =
String8 ctrl_entity_kind_code_name_table[10] =
{
{0},
str8_lit_comp("root"),
@@ -15,9 +15,10 @@ str8_lit_comp("module"),
str8_lit_comp("entry_point"),
str8_lit_comp("debug_info_path"),
str8_lit_comp("pending_thread_name"),
str8_lit_comp("breakpoint"),
};
String8 ctrl_entity_kind_display_string_table[9] =
String8 ctrl_entity_kind_display_string_table[10] =
{
{0},
str8_lit_comp("Root"),
@@ -28,6 +29,7 @@ str8_lit_comp("Module"),
str8_lit_comp("EntryPoint"),
str8_lit_comp("DebugInfoPath"),
str8_lit_comp("PendingThreadName"),
str8_lit_comp("Breakpoint"),
};
U32 ctrl_exception_code_kind_code_table[38] =
+3 -2
View File
@@ -17,6 +17,7 @@ CTRL_EntityKind_Module,
CTRL_EntityKind_EntryPoint,
CTRL_EntityKind_DebugInfoPath,
CTRL_EntityKind_PendingThreadName,
CTRL_EntityKind_Breakpoint,
CTRL_EntityKind_COUNT,
} CTRL_EntityKind;
@@ -64,8 +65,8 @@ CTRL_ExceptionCodeKind_COUNT,
} CTRL_ExceptionCodeKind;
C_LINKAGE_BEGIN
extern String8 ctrl_entity_kind_code_name_table[9];
extern String8 ctrl_entity_kind_display_string_table[9];
extern String8 ctrl_entity_kind_code_name_table[10];
extern String8 ctrl_entity_kind_display_string_table[10];
extern U32 ctrl_exception_code_kind_code_table[38];
extern String8 ctrl_exception_code_kind_display_string_table[38];
extern String8 ctrl_exception_code_kind_lowercase_code_string_table[38];