Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(510)

Issue 1185633003: cps-ir: Support foreign code. (Closed)

Created:
5 years, 6 months ago by karlklose
Modified:
5 years, 6 months ago
CC:
reviews_dartlang.org
Base URL:
https://github.com/dart-lang/sdk.git@master
Target Ref:
refs/heads/master
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : Remove commented code. #

Patch Set 3 : Revert changes in SSA and add comment. #

Patch Set 4 : Type propagation uses TypeMasks now. #

Patch Set 5 : Status file updates. #

Total comments: 21

Patch Set 6 : Rebase #

Patch Set 7 : Address comments. #

Patch Set 8 : Rebase #

Patch Set 9 : Check for cases with no continuation and include more functions in the fallback. #

Patch Set 10 : Update test expectations. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+3791 lines, -507 lines) Patch
M pkg/compiler/lib/src/cps_ir/cps_ir_builder.dart View 1 2 3 4 5 6 7 2 chunks +25 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart View 1 2 3 4 5 6 7 5 chunks +243 lines, -10 lines 0 comments Download
M pkg/compiler/lib/src/cps_ir/cps_ir_nodes.dart View 1 2 3 4 5 6 7 8 4 chunks +39 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/cps_ir/cps_ir_nodes_sexpr.dart View 1 2 3 4 5 6 1 chunk +8 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/cps_ir/cps_ir_tracer.dart View 1 2 3 4 5 6 7 2 chunks +37 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/cps_ir/shrinking_reductions.dart View 1 2 3 4 5 6 7 8 1 chunk +7 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/cps_ir/type_propagation.dart View 1 2 3 4 5 6 7 8 2 chunks +14 lines, -1 line 0 comments Download
M pkg/compiler/lib/src/js_backend/codegen/codegen.dart View 1 2 3 4 5 6 7 2 chunks +16 lines, -1 line 0 comments Download
M pkg/compiler/lib/src/js_backend/codegen/js_tree_builder.dart View 1 2 3 4 5 6 1 chunk +20 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/js_backend/codegen/task.dart View 1 2 3 4 5 6 7 8 1 chunk +28 lines, -9 lines 0 comments Download
M pkg/compiler/lib/src/tree_ir/optimization/pull_into_initializers.dart View 1 2 3 4 5 1 chunk +7 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/tree_ir/optimization/statement_rewriter.dart View 1 2 3 4 5 1 chunk +12 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/tree_ir/tree_ir_builder.dart View 1 2 3 4 5 1 chunk +5 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/tree_ir/tree_ir_nodes.dart View 1 2 3 4 5 6 7 8 chunks +79 lines, -1 line 0 comments Download
M pkg/compiler/lib/src/tree_ir/tree_ir_tracer.dart View 1 2 3 4 5 3 chunks +15 lines, -0 lines 0 comments Download
M pkg/compiler/lib/src/types/type_mask.dart View 1 2 3 4 5 6 7 1 chunk +2 lines, -2 lines 0 comments Download
M pkg/pkg.status View 1 2 3 4 5 6 7 8 9 3 chunks +7 lines, -5 lines 0 comments Download
M samples/samples.status View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M tests/benchmark_smoke/benchmark_smoke.status View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download
M tests/co19/co19-dart2js.status View 1 2 3 4 5 6 7 8 9 4 chunks +1993 lines, -12 lines 0 comments Download
M tests/compiler/dart2js_extra/dart2js_extra.status View 1 2 3 4 5 6 7 8 9 1 chunk +60 lines, -11 lines 0 comments Download
M tests/compiler/dart2js_native/dart2js_native.status View 1 2 3 4 5 6 7 8 9 1 chunk +23 lines, -97 lines 0 comments Download
M tests/corelib/corelib.status View 1 2 3 4 5 6 7 8 9 1 chunk +123 lines, -18 lines 0 comments Download
M tests/html/html.status View 1 2 3 4 5 6 7 8 9 2 chunks +88 lines, -87 lines 0 comments Download
M tests/isolate/isolate.status View 1 2 3 4 5 6 7 8 9 1 chunk +56 lines, -27 lines 0 comments Download
M tests/language/language_dart2js.status View 1 2 3 4 5 6 7 8 9 16 chunks +267 lines, -72 lines 0 comments Download
M tests/lib/lib.status View 1 2 3 4 5 6 7 8 9 1 chunk +429 lines, -133 lines 0 comments Download
M tests/standalone/standalone.status View 1 2 3 4 5 6 7 8 9 1 chunk +185 lines, -18 lines 0 comments Download
M tests/utils/utils.status View 1 2 3 4 5 6 7 8 9 1 chunk +1 line, -1 line 0 comments Download

Messages

Total messages: 14 (5 generated)
karlklose
Code changes in patch set 4, status file updates in patch set 5.
5 years, 6 months ago (2015-06-12 11:01:46 UTC) #2
Kevin Millikin (Google)
https://codereview.chromium.org/1185633003/diff/80001/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart File pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart (right): https://codereview.chromium.org/1185633003/diff/80001/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart#newcode2829 pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart:2829: for (Link<ast.Node> arguments = argumentNodes; I'd make argumentNodes a ...
5 years, 6 months ago (2015-06-16 11:23:10 UTC) #3
karlklose
dd
5 years, 6 months ago (2015-06-17 11:38:46 UTC) #4
Kevin Millikin (Google)
LGTM.
5 years, 6 months ago (2015-06-18 09:27:53 UTC) #5
karlklose
https://codereview.chromium.org/1185633003/diff/80001/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart File pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart (right): https://codereview.chromium.org/1185633003/diff/80001/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart#newcode2829 pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart:2829: for (Link<ast.Node> arguments = argumentNodes; On 2015/06/16 11:23:10, Kevin ...
5 years, 6 months ago (2015-06-18 09:38:15 UTC) #6
karlklose
Committed patchset #7 (id:120001) manually as a120ee7c9071b60edccff066dcdade078f601377 (presubmit successful).
5 years, 6 months ago (2015-06-18 11:09:55 UTC) #7
karlklose
PTAL at patch set 9.
5 years, 6 months ago (2015-06-19 07:48:29 UTC) #12
Kevin Millikin (Google)
LGTM.
5 years, 6 months ago (2015-06-19 11:43:26 UTC) #13
karlklose
5 years, 6 months ago (2015-06-19 11:45:03 UTC) #14
Message was sent while issue was closed.
Committed patchset #10 (id:250001) manually as
3f46181244ded29edb399ad4d77b8686095cde19 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698