Files
sdk/pkg
Asger Feldthaus 41412aaa70 dart2js 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

Review URL: https://codereview.chromium.org/1573693002 .
2016-01-11 10:06:40 -08:00
..
2016-01-05 17:41:53 -08:00
2015-01-22 10:02:20 +00:00
2015-12-17 18:15:17 +01:00
2015-09-29 13:49:53 +02:00
2015-12-14 13:50:11 -08:00
2015-11-19 14:06:01 -08:00