Home
last modified time | relevance | path

Searched defs:cfg_hooks (Results 1 – 2 of 2) sorted by relevance

/openbsd-src/gnu/gcc/gcc/
H A Dcfghooks.h25 struct cfg_hooks struct
28 const char *name;
31 int (*verify_flow_info) (void);
32 void (*dump_bb) (basic_block, FILE *, int);
37 basic_block (*create_basic_block) (void *head, void *end, basic_block after);
43 edge (*redirect_edge_and_branch) (edge e, basic_block b);
48 basic_block (*redirect_edge_and_branch_force) (edge, basic_block);
51 void (*delete_basic_block) (basic_block);
55 basic_block (*split_block) (basic_block b, void * i);
58 bool (*move_block_after) (basic_block b, basic_block a);
[all …]
H A Dcfghooks.c34 static struct cfg_hooks *cfg_hooks; variable