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

Side by Side Diff: test/mjsunit/array-constructor-feedback.js

Issue 16944006: HCheckFunction is needed to protect new array constructors in (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 6 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 | Annotate | Revision Log
« no previous file with comments | « test/mjsunit/allocation-site-info.js ('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 2013 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
11 // with the distribution. 11 // with the distribution.
(...skipping 18 matching lines...) Expand all
30 30
31 // Test element kind of objects. 31 // Test element kind of objects.
32 // Since --smi-only-arrays affects builtins, its default setting at compile 32 // Since --smi-only-arrays affects builtins, its default setting at compile
33 // time sticks if built with snapshot. If --smi-only-arrays is deactivated 33 // time sticks if built with snapshot. If --smi-only-arrays is deactivated
34 // by default, only a no-snapshot build actually has smi-only arrays enabled 34 // by default, only a no-snapshot build actually has smi-only arrays enabled
35 // in this test case. Depending on whether smi-only arrays are actually 35 // in this test case. Depending on whether smi-only arrays are actually
36 // enabled, this test takes the appropriate code path to check smi-only arrays. 36 // enabled, this test takes the appropriate code path to check smi-only arrays.
37 37
38 // support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6,7,8)); 38 // support_smi_only_arrays = %HasFastSmiElements(new Array(1,2,3,4,5,6,7,8));
39 support_smi_only_arrays = true; 39 support_smi_only_arrays = true;
40 optimize_constructed_arrays = true;
40 41
41 if (support_smi_only_arrays) { 42 if (support_smi_only_arrays) {
42 print("Tests include smi-only arrays."); 43 print("Tests include smi-only arrays.");
43 } else { 44 } else {
44 print("Tests do NOT include smi-only arrays."); 45 print("Tests do NOT include smi-only arrays.");
45 } 46 }
46 47
48 if (optimize_constructed_arrays) {
49 print("Tests include constructed array optimizations.");
50 } else {
51 print("Tests do NOT include constructed array optimizations.");
52 }
53
54 var elements_kind = {
55 fast_smi_only : 'fast smi only elements',
56 fast : 'fast elements',
57 fast_double : 'fast double elements',
58 dictionary : 'dictionary elements',
59 external_byte : 'external byte elements',
60 external_unsigned_byte : 'external unsigned byte elements',
61 external_short : 'external short elements',
62 external_unsigned_short : 'external unsigned short elements',
63 external_int : 'external int elements',
64 external_unsigned_int : 'external unsigned int elements',
65 external_float : 'external float elements',
66 external_double : 'external double elements',
67 external_pixel : 'external pixel elements'
68 }
69
70 function getKind(obj) {
71 if (%HasFastSmiElements(obj)) return elements_kind.fast_smi_only;
72 if (%HasFastObjectElements(obj)) return elements_kind.fast;
73 if (%HasFastDoubleElements(obj)) return elements_kind.fast_double;
74 if (%HasDictionaryElements(obj)) return elements_kind.dictionary;
75 }
76
47 function isHoley(obj) { 77 function isHoley(obj) {
48 if (%HasFastHoleyElements(obj)) return true; 78 if (%HasFastHoleyElements(obj)) return true;
49 return false; 79 return false;
50 } 80 }
51 81
52 function assertHoley(obj, name_opt) { 82 function assertKind(expected, obj, name_opt) {
53 assertEquals(true, isHoley(obj), name_opt); 83 if (!support_smi_only_arrays &&
84 expected == elements_kind.fast_smi_only) {
85 expected = elements_kind.fast;
86 }
87 assertEquals(expected, getKind(obj), name_opt);
54 } 88 }
55 89
56 function assertNotHoley(obj, name_opt) { 90 if (support_smi_only_arrays && optimize_constructed_arrays) {
57 assertEquals(false, isHoley(obj), name_opt); 91 function bar0(t) {
58 } 92 return new t();
59
60 if (support_smi_only_arrays) {
61 function create_array(arg) {
62 return new Array(arg);
63 } 93 }
64 94
65 obj = create_array(0); 95 a = bar0(Array);
66 assertNotHoley(obj); 96 a[0] = 3.5;
67 create_array(0); 97 b = bar0(Array);
68 %OptimizeFunctionOnNextCall(create_array); 98 assertKind(elements_kind.fast_double, b);
69 obj = create_array(10); 99 %OptimizeFunctionOnNextCall(bar0);
70 assertHoley(obj); 100 b = bar0(Array);
101 assertKind(elements_kind.fast_double, b);
102 assertTrue(2 != %GetOptimizationStatus(bar0));
103 // bar0 should deopt
104 b = bar0(Object);
105 assertTrue(1 != %GetOptimizationStatus(bar0));
71 } 106 }
72
73 // The code below would assert in debug or crash in release
74 function f(length) {
75 return new Array(length)
76 }
77
78 f(0);
79 f(0);
80 %OptimizeFunctionOnNextCall(f);
81 var a = f(10);
82
83 function g(a) {
84 return a[0];
85 }
86
87 var b = [0];
88 g(b);
89 g(b);
90 assertEquals(undefined, g(a));
OLDNEW
« no previous file with comments | « test/mjsunit/allocation-site-info.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698