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

Unified Diff: pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart

Issue 1222913003: dart2js cps: Support JS_CURRENT_ISOLATE. (Closed) Base URL: https://github.com/dart-lang/sdk.git@master
Patch Set: Status file changes after change. Created 5 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | pkg/pkg.status » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
diff --git a/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart b/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
index 90bc77245a06f4cd30138aa6ff50da25dcf6faad..acb7d20a514d91bdf5eee6e21bedefbfbffb509a 100644
--- a/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
+++ b/pkg/compiler/lib/src/cps_ir/cps_ir_builder_task.dart
@@ -3182,13 +3182,19 @@ class JsIrBuilderVisitor extends IrBuilderVisitor {
if (!compiler.hasIsolateSupport) {
// If the isolate library is not used, we just generate code
// to fetch the current isolate.
- String name = backend.namer.currentIsolate;
- return irBuilder.buildForeignCode(js.js.parseForeignJS(name),
- const <ir.Primitive>[], NativeBehavior.PURE);
+ continue GET_CURRENT_ISOLATE;
}
return buildIsolateHelperInvocation('_currentIsolate',
CallStructure.NO_ARGS);
+ GET_CURRENT_ISOLATE: case 'JS_CURRENT_ISOLATE':
+ validateArgumentCount(exactly: 0);
+
+ return irBuilder.buildForeignCode(
+ js.js.parseForeignJS(backend.namer.currentIsolate),
+ const <ir.Primitive>[],
+ NativeBehavior.PURE);
+
case 'JS_CALL_IN_ISOLATE':
validateArgumentCount(exactly: 2);
« no previous file with comments | « no previous file | pkg/pkg.status » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698