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

Side by Side Diff: tests/compiler/dart2js/value_range_test.dart

Issue 11413139: Put back optimization on fixed-size array. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years 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 | Annotate | Revision Log
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/optimize.dart ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2012, 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 4
5 import 'compiler_helper.dart'; 5 import 'compiler_helper.dart';
6 6
7 const int REMOVED = 0; 7 const int REMOVED = 0;
8 const int ABOVE_ZERO = 1; 8 const int ABOVE_ZERO = 1;
9 const int BELOW_LENGTH = 2; 9 const int BELOW_LENGTH = 2;
10 const int KEPT = 3; 10 const int KEPT = 3;
(...skipping 193 matching lines...) Expand 10 before | Expand all | Expand 10 after
204 const String DEFAULT_CORELIB_WITH_LIST_INTERFACE = r''' 204 const String DEFAULT_CORELIB_WITH_LIST_INTERFACE = r'''
205 print(var obj) {} 205 print(var obj) {}
206 abstract class num {} 206 abstract class num {}
207 abstract class int extends num { } 207 abstract class int extends num { }
208 abstract class double extends num { } 208 abstract class double extends num { }
209 class bool {} 209 class bool {}
210 class String {} 210 class String {}
211 class Object {} 211 class Object {}
212 class Type {} 212 class Type {}
213 class Function {} 213 class Function {}
214 interface List default ListImplementation { List([length]);} 214 class List { List([length]); }
215 class ListImplementation { factory List([length]) => null; }
216 abstract class Map {} 215 abstract class Map {}
217 class Closure {} 216 class Closure {}
218 class Null {} 217 class Null {}
219 class Dynamic_ {} 218 class Dynamic_ {}
220 bool identical(Object a, Object b) {}'''; 219 bool identical(Object a, Object b) {}''';
221 220
222 expect(String code, int kind) { 221 expect(String code, int kind) {
223 String generated = 222 String generated =
224 compile(code, coreSource: DEFAULT_CORELIB_WITH_LIST_INTERFACE); 223 compile(code, coreSource: DEFAULT_CORELIB_WITH_LIST_INTERFACE);
225 switch (kind) { 224 switch (kind) {
(...skipping 29 matching lines...) Expand all
255 break; 254 break;
256 } 255 }
257 } 256 }
258 257
259 258
260 main() { 259 main() {
261 for (int i = 0; i < TESTS.length; i += 2) { 260 for (int i = 0; i < TESTS.length; i += 2) {
262 expect(TESTS[i], TESTS[i + 1]); 261 expect(TESTS[i], TESTS[i + 1]);
263 } 262 }
264 } 263 }
OLDNEW
« no previous file with comments | « sdk/lib/_internal/compiler/implementation/ssa/optimize.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698