4a7dfd2da3
Review URL: https://codereview.chromium.org//11783009 git-svn-id: https://dart.googlecode.com/svn/branches/bleeding_edge/dart@16687 260f80e4-7a28-3924-810f-c04153c831b5
98 lines
2.0 KiB
Dart
98 lines
2.0 KiB
Dart
// Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file
|
|
// for details. All rights reserved. Use of this source code is governed by a
|
|
// BSD-style license that can be found in the LICENSE file.
|
|
// Test various optimizations and deoptimizations of optimizing compiler..
|
|
|
|
addThem(a, b) {
|
|
return a + b;
|
|
}
|
|
|
|
isItInt(a) {
|
|
return a is int;
|
|
}
|
|
|
|
doNeg(a) {
|
|
return -a;
|
|
}
|
|
|
|
doNeg2(a) {
|
|
return -a;
|
|
}
|
|
|
|
doNot(a) {
|
|
return !a;
|
|
}
|
|
|
|
doBitNot(a) {
|
|
return ~a;
|
|
}
|
|
|
|
doStore1(a, v) {
|
|
a[1] = v;
|
|
}
|
|
|
|
doStore2(a, v) {
|
|
a[2] = v;
|
|
}
|
|
|
|
class StringPlus {
|
|
const StringPlus(String this._val);
|
|
operator + (right) => new StringPlus("${_val}${right}");
|
|
toString() => _val;
|
|
|
|
final String _val;
|
|
}
|
|
|
|
main() {
|
|
for (int i = 0; i < 2000; i++) {
|
|
Expect.stringEquals("HI 5", addThem(const StringPlus("HI "), 5).toString());
|
|
Expect.equals(true, isItInt(5));
|
|
}
|
|
Expect.equals(8, addThem(3, 5));
|
|
for (int i = 0; i < 2000; i++) {
|
|
Expect.stringEquals("HI 5", addThem(const StringPlus("HI "), 5).toString());
|
|
Expect.equals(8, addThem(3, 5));
|
|
}
|
|
for (int i = -500; i < 500; i++) {
|
|
var r = doNeg(i);
|
|
var p = doNeg(r);
|
|
Expect.equals(i, p);
|
|
}
|
|
var maxSmi = (1 << 30) - 1;
|
|
Expect.equals(maxSmi, doNeg(doNeg(maxSmi)));
|
|
// Deoptimize because of overflow.
|
|
var minInt = -(1 << 30);
|
|
Expect.equals(minInt, doNeg(doNeg(minInt)));
|
|
|
|
for (int i = 0; i < 1000; i++) {
|
|
Expect.equals(false, doNot(true));
|
|
Expect.equals(true, doNot(doNot(true)));
|
|
}
|
|
for (int i = 0; i < 1000; i++) {
|
|
Expect.equals(-57, doBitNot(56));
|
|
Expect.equals(55, doBitNot(-56));
|
|
}
|
|
|
|
for (int i = 0; i < 2000; i++) {
|
|
Expect.equals(-2.2, doNeg2(2.2));
|
|
}
|
|
// Deoptimize.
|
|
Expect.equals(-5, doNeg2(5));
|
|
|
|
var fixed = new List.fixedLength(10);
|
|
var growable = [1, 2, 3, 4, 5];
|
|
|
|
for (int i = 0; i < 2000; i++) {
|
|
doStore1(fixed, 7);
|
|
Expect.equals(7, fixed[1]);
|
|
doStore2(growable, 12);
|
|
Expect.equals(12, growable[2]);
|
|
}
|
|
|
|
// Deoptimize.
|
|
doStore1(growable, 8);
|
|
Expect.equals(8, growable[1]);
|
|
doStore2(fixed, 101);
|
|
Expect.equals(101, fixed[2]);
|
|
}
|