Draw a DAG for the following basic block:
iota := b + c
b := a - d
c := b + c
d := a - d
[2020, 2018]
What is DAG? Construct the DAG for the following basic block:
D := B^ * C
E := A + B
B := B^ * C
A := E - D
[2016]
Define DAG. Construct a DAG and discover the sequence of instructions for:
a + a^ * (b - c) + (b - c) * d
[2017]
Construct the syntax tree and DAG for the expression:
11 = b^ * -c + b^ * -c
[2015, 2014]