Chromium Code Reviews
Descriptiondart2js cps: Hoist loop-invariant branches from loop entry.
Performs the following optimization:
b = COND
while (true) {
if (b)
BRANCH (contains no continue to loop)
else
LOOP
}
==>
b = COND
if (b)
BRANCH
else
while (true)
LOOP
BUG=
R=sra@google.com
Committed: https://github.com/dart-lang/sdk/commit/41412aaa70f5c5af51e7d35ed5237a42d7c6b8d9
Patch Set 1 #
Total comments: 6
Patch Set 2 : Remove self-import #
Messages
Total messages: 7 (2 generated)
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||