Files
sdk/runtime
Florian Schneider b043314bce VM: Fix illegal code motion.
Without tracking dependencies more explicitly we can't propagate the
cid of values whose cid is guarded by a CheckClassId:

The CheckClassId c may not be hoisted by LICM because it is guarded
by a Redefinition r. However, after constant propagation and branch simplification
code that was not previously dominated by c (and r) may become dominated by c and r.

This code won't be using the redefined value r, but the original value and therefore
LICM can illegally eliminated checks / hoist dependent loads.

BUG=
R=vegorov@google.com

Review URL: https://codereview.chromium.org/1928633002 .
2016-04-27 19:05:19 +02:00
..
2016-04-19 19:06:53 +02:00
2016-03-22 14:31:54 -07:00
2016-04-27 19:05:19 +02:00