Control Flow Graph

Creator
Creator
Seonglae Cho
Created
Created
2022 Dec 3 10:7
Editor
Edited
Edited
2022 Dec 3 19:26
Refs
Refs

CFG

A graph representing possible execution flows of a function
  • nodes: basic blocks (BB)
    • A maximal-length segment of straight-line code, where either all the statements are executed, or none of them are executed.
  • edges: control flows
Extended basic block (EBB)
 
 
 
 
 
 
 

Recommendations