Index: test/mjsunit/array-feedback.js |
diff --git a/test/mjsunit/array-feedback.js b/test/mjsunit/array-feedback.js |
index 3901564088addbb9d3af15d707ebb13858ed93f2..0471f65f40d039858197f5e73b23b5324969a896 100644 |
--- a/test/mjsunit/array-feedback.js |
+++ b/test/mjsunit/array-feedback.js |
@@ -90,66 +90,66 @@ if (support_smi_only_arrays) { |
// Verify that basic elements kind feedback works for non-constructor |
// array calls (as long as the call is made through an IC, and not |
// a CallStub). |
- (function (){ |
- function create0() { |
- return Array(); |
- } |
- |
- // Calls through ICs need warm up through uninitialized, then |
- // premonomorphic first. |
- create0(); |
- create0(); |
- a = create0(); |
- assertKind(elements_kind.fast_smi_only, a); |
- a[0] = 3.5; |
- b = create0(); |
- assertKind(elements_kind.fast_double, b); |
- |
- function create1(arg) { |
- return Array(arg); |
- } |
- |
- create1(0); |
- create1(0); |
- a = create1(0); |
- assertFalse(isHoley(a)); |
- assertKind(elements_kind.fast_smi_only, a); |
- a[0] = "hello"; |
- b = create1(10); |
- assertTrue(isHoley(b)); |
- assertKind(elements_kind.fast, b); |
- |
- a = create1(100000); |
- assertKind(elements_kind.dictionary, a); |
- |
- function create3(arg1, arg2, arg3) { |
- return Array(arg1, arg2, arg3); |
- } |
- |
- create3(); |
- create3(); |
- a = create3(1,2,3); |
- a[0] = 3.5; |
- b = create3(1,2,3); |
- assertKind(elements_kind.fast_double, b); |
- assertFalse(isHoley(b)); |
- })(); |
+ // (function (){ |
+ // function create0() { |
+ // return Array(); |
+ // } |
+ |
+ // // Calls through ICs need warm up through uninitialized, then |
+ // // premonomorphic first. |
+ // create0(); |
+ // create0(); |
+ // a = create0(); |
+ // assertKind(elements_kind.fast_smi_only, a); |
+ // a[0] = 3.5; |
+ // b = create0(); |
+ // assertKind(elements_kind.fast_double, b); |
+ |
+ // function create1(arg) { |
+ // return Array(arg); |
+ // } |
+ |
+ // create1(0); |
+ // create1(0); |
+ // a = create1(0); |
+ // assertFalse(isHoley(a)); |
+ // assertKind(elements_kind.fast_smi_only, a); |
+ // a[0] = "hello"; |
+ // b = create1(10); |
+ // assertTrue(isHoley(b)); |
+ // assertKind(elements_kind.fast, b); |
+ |
+ // a = create1(100000); |
+ // assertKind(elements_kind.dictionary, a); |
+ |
+ // function create3(arg1, arg2, arg3) { |
+ // return Array(arg1, arg2, arg3); |
+ // } |
+ |
+ // create3(); |
+ // create3(); |
+ // a = create3(1,2,3); |
+ // a[0] = 3.5; |
+ // b = create3(1,2,3); |
+ // assertKind(elements_kind.fast_double, b); |
+ // assertFalse(isHoley(b)); |
+ // })(); |
// Verify that keyed calls work |
- (function (){ |
- function create0(name) { |
- return this[name](); |
- } |
+ // (function (){ |
+ // function create0(name) { |
+ // return this[name](); |
+ // } |
- name = "Array"; |
- create0(name); |
- create0(name); |
- a = create0(name); |
- a[0] = 3.5; |
- b = create0(name); |
- assertKind(elements_kind.fast_double, b); |
- })(); |
+ // name = "Array"; |
+ // create0(name); |
+ // create0(name); |
+ // a = create0(name); |
+ // a[0] = 3.5; |
+ // b = create0(name); |
+ // assertKind(elements_kind.fast_double, b); |
+ // })(); |
// Verify that the IC can't be spoofed by patching |
@@ -173,28 +173,28 @@ if (support_smi_only_arrays) { |
// though the type information is reset. |
// TODO(mvstanton): instead, consume the type feedback gathered up |
// until crankshaft time. |
- (function (){ |
- function create0() { |
- return Array(); |
- } |
- |
- create0(); |
- create0(); |
- a = create0(); |
- a[0] = 3.5; |
- %OptimizeFunctionOnNextCall(create0); |
- create0(); |
- // This test only makes sense if crankshaft is allowed |
- if (4 != %GetOptimizationStatus(create0)) { |
- create0(); |
- b = create0(); |
- assertKind(elements_kind.fast_smi_only, b); |
- b[0] = 3.5; |
- c = create0(); |
- assertKind(elements_kind.fast_double, c); |
- assertOptimized(create0); |
- } |
- })(); |
+ // (function (){ |
+ // function create0() { |
+ // return Array(); |
+ // } |
+ |
+ // create0(); |
+ // create0(); |
+ // a = create0(); |
+ // a[0] = 3.5; |
+ // %OptimizeFunctionOnNextCall(create0); |
+ // create0(); |
+ // // This test only makes sense if crankshaft is allowed |
+ // if (4 != %GetOptimizationStatus(create0)) { |
+ // create0(); |
+ // b = create0(); |
+ // assertKind(elements_kind.fast_smi_only, b); |
+ // b[0] = 3.5; |
+ // c = create0(); |
+ // assertKind(elements_kind.fast_double, c); |
+ // assertOptimized(create0); |
+ // } |
+ // })(); |
// Verify that cross context calls work |