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

Side by Side Diff: pkg/compiler/lib/src/cps_ir/builtin_operator.dart

Issue 1285173002: dart2js cps: Rewrite more List operations into JS array operations. (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: receiverIsNotNull -> optional param Created 5 years, 4 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 unified diff | Download patch
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file
2 // for details. All rights reserved. Use of this source code is governed by a 2 // for details. All rights reserved. Use of this source code is governed by a
3 // BSD-style license that can be found in the LICENSE file. 3 // BSD-style license that can be found in the LICENSE file.
4 library builtin_operator; 4 library builtin_operator;
5 // This is shared by the CPS and Tree IRs. 5 // This is shared by the CPS and Tree IRs.
6 // Both cps_ir_nodes and tree_ir_nodes import and re-export this file. 6 // Both cps_ir_nodes and tree_ir_nodes import and re-export this file.
7 7
8 /// An operator supported natively in the CPS and Tree IRs using the 8 /// An operator supported natively in the CPS and Tree IRs using the
9 /// `ApplyBuiltinOperator` instructions. 9 /// `ApplyBuiltinOperator` instructions.
10 /// 10 ///
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
97 /// Compiles to `Math.floor(x) === x` 97 /// Compiles to `Math.floor(x) === x`
98 IsFloor, 98 IsFloor,
99 99
100 /// Returns true if the argument is an integer. 100 /// Returns true if the argument is an integer.
101 /// 101 ///
102 /// The argument must be repeated 3 times. 102 /// The argument must be repeated 3 times.
103 /// 103 ///
104 /// Compiles to `typeof x === 'number' && Math.floor(x) === x` 104 /// Compiles to `typeof x === 'number' && Math.floor(x) === x`
105 IsNumberAndFloor, 105 IsNumberAndFloor,
106 } 106 }
107
108 /// A method supported natively in the CPS and Tree IRs using the
109 /// `ApplyBuiltinMethod` instructions.
110 ///
111 /// These methods all operate on a distinguished 'object' argument, and
112 /// take zero or more additional arguments.
113 ///
114 /// These methods may mutate and depend on the state of the object argument,
115 /// but may not depend on or mutate any other state. An exception is thrown
116 /// if the object is null, but otherwise they cannot throw or diverge.
117 enum BuiltinMethod {
118 /// Add an item to a native list.
119 ///
120 /// Takes any number of arguments, each argument will be added to the
121 /// list on the order given (as per the JS `push` method).
122 ///
123 /// Compiles to `object.push(x1, ..., xN)`.
124 Push,
125
126 /// Remove and return the last item from a native list.
127 ///
128 /// Takes no arguments.
129 ///
130 /// Compiles to `object.pop()`.
131 Pop,
132 }
OLDNEW
« no previous file with comments | « no previous file | pkg/compiler/lib/src/cps_ir/cps_fragment.dart » ('j') | pkg/compiler/lib/src/cps_ir/type_propagation.dart » ('J')

Powered by Google App Engine
This is Rietveld 408576698