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

Side by Side Diff: tests/standalone/pair_location_remaping_test.dart

Issue 811823002: Support remaping of pair location inside materializations for slow paths. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 6 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
OLDNEW
(Empty)
1 // Copyright (c) 2014, the Dart project authors. Please see the AUTHORS file
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.
4 // Test that pair locations are remaped in slow path environments.
5 // VMOptions=--optimization_counter_threshold=10 --no-use-osr
6
7 import "package:expect/expect.dart";
8
9 class A {
10 final f;
11 A(this.f);
12 }
13
14 foo(i) {
15 var j = 0x7fffffffffffffff + i;
16 var c = new A(j); // allocation will be sunk
17 var r = 0;
18 for (var k = 0; k < 10; k++) {
19 if ((j & (1 << k)) != 0) {
20 r++;
21 }
22 }
23 return c.f - r;
24 }
25
26 main() {
27 for (var i = 0; i < 1000; i++) {
28 Expect.equals(0x7fffffffffffffff - 10, foo(0));
29 }
30 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698