DescriptionSubzero. ARM32. Implements the Availability Optimization.
Implements the Availability optimization:
a = b
x = f(a, c)
becomes
a = b
x = f(b, c)
This only triggers if b is an infinite-weight temporary, and it
prevents a potential spill at the cost of higher register pressure.
BUG= https://code.google.com/p/nativeclient/issues/detail?id=4076
R=stichnot@chromium.org
Committed: https://gerrit.chromium.org/gerrit/gitweb?p=native_client/pnacl-subzero.git;a=commit;h=562233c890ea6d2a834962edf3ccf9db14356683
Patch Set 1 #
Messages
Total messages: 6 (3 generated)
|