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

Issue 23003031: Extract interceptor calls from raw is-checks. (Closed)

Created:
7 years, 4 months ago by Johnni Winther
Modified:
7 years, 3 months ago
Reviewers:
karlklose, ngeoffray
CC:
reviews_dartlang.org
Visibility:
Public.

Description

Patch Set 1 #

Patch Set 2 : #

Patch Set 3 : Avoid generating an interceptor when unused. #

Total comments: 8

Patch Set 4 : Rebase #

Patch Set 5 : Updated cf. comments. #

Patch Set 6 : Fix optimization of interceptors for HIs. #

Total comments: 8

Patch Set 7 : Rebased #

Patch Set 8 : Updated cf. comments. #

Patch Set 9 : Populate interceptedClasses dynamically #

Total comments: 4

Patch Set 10 : Rebased #

Patch Set 11 : Updated cf. comments. #

Unified diffs Side-by-side diffs Delta from patch set Stats (+146 lines, -114 lines) Patch
M sdk/lib/_internal/compiler/implementation/js_backend/backend.dart View 1 2 3 4 5 6 7 8 9 10 6 chunks +28 lines, -7 lines 0 comments Download
M sdk/lib/_internal/compiler/implementation/js_backend/emitter.dart View 1 2 3 4 5 6 7 8 3 chunks +5 lines, -4 lines 0 comments Download
M sdk/lib/_internal/compiler/implementation/ssa/builder.dart View 1 2 3 4 5 6 7 6 chunks +58 lines, -58 lines 0 comments Download
M sdk/lib/_internal/compiler/implementation/ssa/codegen.dart View 1 2 3 4 5 6 7 8 10 chunks +24 lines, -40 lines 0 comments Download
M sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart View 1 2 3 4 5 6 7 2 chunks +5 lines, -1 line 0 comments Download
M sdk/lib/_internal/compiler/implementation/ssa/nodes.dart View 1 2 3 4 3 chunks +26 lines, -4 lines 0 comments Download

Messages

Total messages: 12 (0 generated)
Johnni Winther
7 years, 4 months ago (2013-08-23 13:18:31 UTC) #1
ngeoffray
LGTM! https://codereview.chromium.org/23003031/diff/8001/sdk/lib/_internal/compiler/implementation/ssa/builder.dart File sdk/lib/_internal/compiler/implementation/ssa/builder.dart (right): https://codereview.chromium.org/23003031/diff/8001/sdk/lib/_internal/compiler/implementation/ssa/builder.dart#newcode34 sdk/lib/_internal/compiler/implementation/ssa/builder.dart:34: return compiler.withCurrentElement(element, () { Since the build method ...
7 years, 4 months ago (2013-08-24 11:16:25 UTC) #2
Johnni Winther
Committed patchset #5 manually as r26620 (presubmit successful).
7 years, 3 months ago (2013-08-26 07:11:18 UTC) #3
Johnni Winther
https://codereview.chromium.org/23003031/diff/8001/sdk/lib/_internal/compiler/implementation/ssa/builder.dart File sdk/lib/_internal/compiler/implementation/ssa/builder.dart (right): https://codereview.chromium.org/23003031/diff/8001/sdk/lib/_internal/compiler/implementation/ssa/builder.dart#newcode34 sdk/lib/_internal/compiler/implementation/ssa/builder.dart:34: return compiler.withCurrentElement(element, () { On 2013/08/24 11:16:26, ngeoffray wrote: ...
7 years, 3 months ago (2013-08-26 07:34:00 UTC) #4
Johnni Winther
@ngeoffray: PTAL at the latest patch
7 years, 3 months ago (2013-08-26 08:56:57 UTC) #5
ngeoffray
LGTM! https://codereview.chromium.org/23003031/diff/20001/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart File sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart (right): https://codereview.chromium.org/23003031/diff/20001/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart#newcode194 sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart:194: if (user is HIs) { Add a comment. ...
7 years, 3 months ago (2013-08-26 09:10:23 UTC) #6
Johnni Winther
Committed patchset #8 manually as r26626 (presubmit successful).
7 years, 3 months ago (2013-08-26 09:30:14 UTC) #7
Johnni Winther
https://codereview.chromium.org/23003031/diff/20001/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart File sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart (right): https://codereview.chromium.org/23003031/diff/20001/sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart#newcode194 sdk/lib/_internal/compiler/implementation/ssa/interceptor_simplifier.dart:194: if (user is HIs) { On 2013/08/26 09:10:23, ngeoffray ...
7 years, 3 months ago (2013-08-27 08:45:44 UTC) #8
Johnni Winther
@ngeoffray: PTAL at latest patch
7 years, 3 months ago (2013-08-27 08:50:45 UTC) #9
ngeoffray
LGTM https://codereview.chromium.org/23003031/diff/51001/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart File sdk/lib/_internal/compiler/implementation/js_backend/backend.dart (right): https://codereview.chromium.org/23003031/diff/51001/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart#newcode710 sdk/lib/_internal/compiler/implementation/js_backend/backend.dart:710: addInterceptors(jsInterceptorClass, enqueuer, elements); Maybe move the registration of ...
7 years, 3 months ago (2013-08-27 08:55:02 UTC) #10
Johnni Winther
https://codereview.chromium.org/23003031/diff/51001/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart File sdk/lib/_internal/compiler/implementation/js_backend/backend.dart (right): https://codereview.chromium.org/23003031/diff/51001/sdk/lib/_internal/compiler/implementation/js_backend/backend.dart#newcode710 sdk/lib/_internal/compiler/implementation/js_backend/backend.dart:710: addInterceptors(jsInterceptorClass, enqueuer, elements); On 2013/08/27 08:55:02, ngeoffray wrote: > ...
7 years, 3 months ago (2013-08-27 10:20:10 UTC) #11
Johnni Winther
7 years, 3 months ago (2013-08-27 10:29:25 UTC) #12
Message was sent while issue was closed.
Committed patchset #11 manually as r26701 (presubmit successful).

Powered by Google App Engine
This is Rietveld 408576698