Global data flow analysis in compiler design
Answers
Answered by
0
To efficiently optimize the code compiler collects all the information about the program and distribute this information to each block of the flow graph. This process is known as data-flow graph analysis.Certain optimization can only be achieved by examining the entire program. It can't be achieve by examining just a portion of the program.
Data flow analysis is used to discover this kind of property. The data flow analysis can be performed on the program's control flow graph (CFG).
Data flow analysis is used to discover this kind of property. The data flow analysis can be performed on the program's control flow graph (CFG).
Similar questions