Displaying 1 result from an estimated 1 matches for "0049598e".
Did you mean:
0.495983
2016 Oct 14
2
Generate Register Indirect mode instruction
> If I understand correctly:
>
> %v1 = load i32, i32* %a
> %v2 = load i32, i32* %b
> %v3 = add i32 %v1, %v2
> store i32 %v3, i32* %c
>
> maps to (using invented mnemonics):
>
> ASSIGN R0, %a
> ASSIGN R1, %b
> ASSIGN R2, %c
> ADD *R2, *R0, *R1
>
> I.e. pattern
> (store %c, (add (load %a), (load %b)))
> becomes
> (ADD (ASSIGN R2, %c), (ASSIGN