|
|
|
|
|
by thedigitalengel
4711 days ago
|
|
A "false" register dependency is a Write-after-read (WAR) [1]. As far as three address code making register renaming easier, I'm not sure what the author had in mind -- isn't `add $5, %rax` essentially a condensed form of `add $5, %rax, %rax` (which is a 3AC)? In fact, 3AC is _more_ general and should make register renaming harder if anything at all. [1] http://en.wikipedia.org/wiki/Register_renaming |
|
It's not a general or optimal solution, though.