ctrl flow analysis -> dasm layer

This commit is contained in:
Ryan Fleury
2024-08-29 10:58:16 -07:00
parent 5907783a2e
commit 9bba4f224c
4 changed files with 93 additions and 101 deletions
-45
View File
@@ -128,46 +128,6 @@ typedef enum D_RunKind
}
D_RunKind;
////////////////////////////////
//~ rjf: Control Flow Analysis Types
typedef U32 D_CtrlFlowFlags;
enum
{
D_CtrlFlowFlag_StackPointerChangesVariably = (1<<0),
};
typedef struct D_CtrlFlowPoint D_CtrlFlowPoint;
struct D_CtrlFlowPoint
{
U64 vaddr;
U64 jump_dest_vaddr;
DASM_InstFlags inst_flags;
};
typedef struct D_CtrlFlowPointNode D_CtrlFlowPointNode;
struct D_CtrlFlowPointNode
{
D_CtrlFlowPointNode *next;
D_CtrlFlowPoint v;
};
typedef struct D_CtrlFlowPointList D_CtrlFlowPointList;
struct D_CtrlFlowPointList
{
D_CtrlFlowPointNode *first;
D_CtrlFlowPointNode *last;
U64 count;
};
typedef struct D_CtrlFlowInfo D_CtrlFlowInfo;
struct D_CtrlFlowInfo
{
D_CtrlFlowFlags flags;
D_CtrlFlowPointList exit_points;
U64 total_size;
};
////////////////////////////////
//~ rjf: View Rule Hook Types
@@ -1198,11 +1158,6 @@ internal D_CfgVal *d_cfg_val_from_string(D_CfgTable *table, String8 string);
internal D_LineList d_line_list_copy(Arena *arena, D_LineList *list);
////////////////////////////////
//~ rjf: Control Flow Analysis Pure Functions
internal D_CtrlFlowInfo d_ctrl_flow_info_from_arch_vaddr_code(Arena *arena, DASM_InstFlags exit_points_mask, Architecture arch, U64 vaddr, String8 code);
////////////////////////////////
//~ rjf: Command Type Pure Functions