| commit | eac545a00da71f1d48a70c1da2720c8badf7356c | [log] [tgz] |
|---|---|---|
| author | Vyacheslav Egorov <vegorov@google.com> | Thu Apr 16 22:59:03 2020 +0000 |
| committer | commit-bot@chromium.org <commit-bot@chromium.org> | Thu Apr 16 22:59:03 2020 +0000 |
| tree | c121a3a56c4ed33d0e765ea16933106e60320106 | |
| parent | f551795651a199f9f6b42fa1fae87d0f84d741c9 [diff] |
[vm/compiler] Fix non-convergence in constant propagator. Given cyclic phi which participates in strict or equality comparison with its own argument y <- phi(x, y); z <- y == x CP pass would sometimes fail to converge because it would mark the phi as unwrapped and then add it to the worklist, which would cause the phi uses to be revisited: equality would mark the phi again and then phi will be visited as its own use, which would add it to the worklist because it is marked and so on. The fix is to only add marked phis to worklist when reachability of one of the predecessor blocks changes and that affects whether phi can be unwrapped or not. Test is included in a separate CL to make this fix easy to cherry pick. Fixes https://github.com/flutter/flutter/issues/53903 Change-Id: I9e09a155d7109b7e19ba3ae5aff3fab57dc67fb8 Reviewed-on: https://dart-review.googlesource.com/c/sdk/+/143581 Reviewed-by: Martin Kustermann <kustermann@google.com> Reviewed-by: Alexander Markov <alexmarkov@google.com>
Dart is:
Optimized for UI: Develop with a programming language specialized around the needs of user interface creation
Productive: Make changes iteratively: use hot reload to see the result instantly in your running app
Fast on all platforms: Compile to ARM & x64 machine code for mobile, desktop, and backend. Or compile to JavaScript for the web
Dart's flexible compiler technology lets you run Dart code in different ways, depending on your target platform and goals:
Dart Native: For programs targeting devices (mobile, desktop, server, and more), Dart Native includes both a Dart VM with JIT (just-in-time) compilation and an AOT (ahead-of-time) compiler for producing machine code.
Dart Web: For programs targeting the web, Dart Web includes both a development time compiler (dartdevc) and a production time compiler (dart2js).
Dart is free and open source.
See LICENSE and PATENT_GRANT.
Visit the dart.dev to learn more about the language, tools, getting started, and more.
Browse pub.dev for more packages and libraries contributed by the community and the Dart team.
If you want to build Dart yourself, here is a guide to getting the source, preparing your machine to build the SDK, and building.
There are more documents on our wiki.
The easiest way to contribute to Dart is to file issues.
You can also contribute patches, as described in Contributing.