blob: f796b809bf5a9d4f567b45e94a176786faf44b74 [file] [log] [blame]
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +00001// Copyright 2011 the V8 project authors. All rights reserved.
ager@chromium.orgc27e4e72008-09-04 13:52:27 +00002// Redistribution and use in source and binary forms, with or without
3// modification, are permitted provided that the following conditions are
4// met:
5//
6// * Redistributions of source code must retain the above copyright
7// notice, this list of conditions and the following disclaimer.
8// * Redistributions in binary form must reproduce the above
9// copyright notice, this list of conditions and the following
10// disclaimer in the documentation and/or other materials provided
11// with the distribution.
12// * Neither the name of Google Inc. nor the names of its
13// contributors may be used to endorse or promote products derived
14// from this software without specific prior written permission.
15//
16// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27
ager@chromium.org5f0c45f2010-12-17 08:51:21 +000028// Flags: --allow-natives-syntax
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000029
ager@chromium.org5c838252010-02-19 08:53:10 +000030var RUN_WITH_ALL_ARGUMENT_ENTRIES = false;
31var kOnManyArgumentsRemove = 5;
32
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000033function makeArguments() {
34 var result = [ ];
35 result.push(17);
36 result.push(-31);
kasperl@chromium.org7be3c992009-03-12 07:19:55 +000037 result.push(new Array(100));
38 result.push(new Array(100003));
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000039 result.push(Number.MIN_VALUE);
40 result.push("whoops");
41 result.push("x");
42 result.push({"x": 1, "y": 2});
43 var slowCaseObj = {"a": 3, "b": 4, "c": 5};
44 delete slowCaseObj.c;
45 result.push(slowCaseObj);
46 result.push(function () { return 8; });
47 return result;
48}
49
50var kArgObjects = makeArguments().length;
51
52function makeFunction(name, argc) {
53 var args = [];
54 for (var i = 0; i < argc; i++)
55 args.push("x" + i);
56 var argsStr = args.join(", ");
57 return new Function(args.join(", "), "return %" + name + "(" + argsStr + ");");
58}
59
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000060function testArgumentCount(name, argc) {
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000061 for (var i = 0; i < 10; i++) {
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000062 var func = null;
63 try {
64 func = makeFunction(name, i);
65 } catch (e) {
erik.corry@gmail.com4a2e25e2010-07-07 12:22:46 +000066 if (e != "SyntaxError: Illegal access") throw e;
vegorov@chromium.orgf8372902010-03-15 10:26:20 +000067 }
68 if (func === null && i == argc) {
69 throw "unexpected exception";
70 }
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000071 var args = [ ];
72 for (var j = 0; j < i; j++)
73 args.push(0);
74 try {
75 func.apply(void 0, args);
76 } catch (e) {
77 // we don't care what happens as long as we don't crash
78 }
79 }
80}
81
82function testArgumentTypes(name, argc) {
83 var type = 0;
84 var hasMore = true;
85 var func = makeFunction(name, argc);
86 while (hasMore) {
87 var argPool = makeArguments();
ager@chromium.org5c838252010-02-19 08:53:10 +000088 // When we have 5 or more arguments we lower the amount of tests cases
89 // by randomly removing kOnManyArgumentsRemove entries
90 var numArguments = RUN_WITH_ALL_ARGUMENT_ENTRIES ?
91 kArgObjects : kArgObjects-kOnManyArgumentsRemove;
92 if (argc >= 5 && !RUN_WITH_ALL_ARGUMENT_ENTRIES) {
93 for (var i = 0; i < kOnManyArgumentsRemove; i++) {
94 var rand = Math.floor(Math.random() * (kArgObjects - i));
95 argPool.splice(rand,1);
96 }
97 }
ager@chromium.orgc27e4e72008-09-04 13:52:27 +000098 var current = type;
99 var hasMore = false;
100 var argList = [ ];
101 for (var i = 0; i < argc; i++) {
ager@chromium.org5c838252010-02-19 08:53:10 +0000102 var index = current % numArguments;
103 current = (current / numArguments) << 0;
104 if (index != (numArguments - 1))
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000105 hasMore = true;
106 argList.push(argPool[index]);
107 }
108 try {
109 func.apply(void 0, argList);
110 } catch (e) {
111 // we don't care what happens as long as we don't crash
112 }
113 type++;
114 }
115}
116
117var knownProblems = {
118 "Abort": true,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000119
120 // Avoid calling the concat operation, because weird lengths
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +0000121 // may lead to out-of-memory. Ditto for StringBuilderJoin.
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000122 "StringBuilderConcat": true,
kmillikin@chromium.org49edbdf2011-02-16 12:32:18 +0000123 "StringBuilderJoin": true,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000124
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000125 // These functions use pseudo-stack-pointers and are not robust
126 // to unexpected integer values.
127 "DebugEvaluate": true,
128
129 // These functions do nontrivial error checking in recursive calls,
130 // which means that we have to propagate errors back.
131 "SetFunctionBreakPoint": true,
132 "SetScriptBreakPoint": true,
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000133 "PrepareStep": true,
ager@chromium.org870a0b62008-11-04 11:43:05 +0000134
135 // Too slow.
136 "DebugReferencedBy": true,
137
138 // Calling disable/enable access checks may interfere with the
139 // the rest of the tests.
140 "DisableAccessChecks": true,
141 "EnableAccessChecks": true,
fschneider@chromium.org0c20e672010-01-14 15:28:53 +0000142
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000143 // These functions should not be callable as runtime functions.
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000144 "NewFunctionContext": true,
kasperl@chromium.org41044eb2008-10-06 08:24:46 +0000145 "NewArgumentsFast": true,
whesse@chromium.org7b260152011-06-20 15:33:18 +0000146 "NewStrictArgumentsFast": true,
svenpanne@chromium.org6d786c92011-06-15 10:58:27 +0000147 "PushWithContext": true,
148 "PushCatchContext": true,
whesse@chromium.org4acdc2c2011-08-15 13:01:23 +0000149 "PushBlockContext": true,
ulan@chromium.org8e8d8822012-11-23 14:36:46 +0000150 "PushModuleContext": true,
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000151 "LazyCompile": true,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000152 "LazyRecompile": true,
rossberg@chromium.org92597162013-08-23 13:28:00 +0000153 "ConcurrentRecompile": true,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000154 "NotifyDeoptimized": true,
jkummerow@chromium.org93a47f42013-07-02 14:43:41 +0000155 "NotifyStubFailure": true,
kasperl@chromium.orga5551262010-12-07 12:49:48 +0000156 "NotifyOSR": true,
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000157 "CreateObjectLiteralBoilerplate": true,
ager@chromium.orgbb29dc92009-03-24 13:25:23 +0000158 "CloneLiteralBoilerplate": true,
159 "CloneShallowLiteralBoilerplate": true,
160 "CreateArrayLiteralBoilerplate": true,
ager@chromium.orga74f0da2008-12-03 16:05:52 +0000161 "IS_VAR": true,
christian.plesner.hansen@gmail.com37abdec2009-01-06 14:43:28 +0000162 "ResolvePossiblyDirectEval": true,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000163 "Log": true,
ager@chromium.org3811b432009-10-28 14:53:37 +0000164 "DeclareGlobals": true,
ulan@chromium.orgdfe53072013-06-06 14:14:51 +0000165 "ArrayConstructor": true,
166 "InternalArrayConstructor": true,
jkummerow@chromium.org1e8da742013-08-26 17:13:35 +0000167 "SetAccessorProperty": true,
kasperl@chromium.org86f77b72009-07-06 08:21:57 +0000168
ager@chromium.orgc4c92722009-11-18 14:12:51 +0000169 "PromoteScheduledException": true,
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000170 "DeleteHandleScopeExtensions": true,
171
danno@chromium.orgc612e022011-11-10 11:38:15 +0000172 // Vararg with minimum number > 0.
173 "Call": true,
174
lrn@chromium.org34e60782011-09-15 07:25:40 +0000175 // Requires integer arguments to be non-negative.
176 "Apply": true,
177
ager@chromium.orgce5e87b2010-03-10 10:24:18 +0000178 // That can only be invoked on Array.prototype.
179 "FinishArrayPrototypeSetup": true,
180
kmillikin@chromium.org4111b802010-05-03 10:34:42 +0000181 "_SwapElements": true,
182
ricow@chromium.org4f693d62011-07-04 14:01:31 +0000183 // Performance critical functions which cannot afford type checks.
184 "_IsNativeOrStrictMode": true,
ager@chromium.org357bf652010-04-12 11:30:10 +0000185 "_CallFunction": true,
186
whesse@chromium.orgb6e43bb2010-04-14 09:36:28 +0000187 // Tries to allocate based on argument, and (correctly) throws
188 // out-of-memory if the request is too large. In practice, the
189 // size will be the number of captures of a RegExp.
190 "RegExpConstructResult": true,
191 "_RegExpConstructResult": true,
192
svenpanne@chromium.org4efbdb12012-03-12 08:18:42 +0000193 // This functions perform some checks compile time (they require one of their
194 // arguments to be a compile time smi).
195 "_DateField": true,
ricow@chromium.orgc9c80822010-04-21 08:22:37 +0000196 "_GetFromCache": true,
ager@chromium.orgea4f62e2010-08-16 16:28:43 +0000197
198 // This function expects its first argument to be a non-smi.
ricow@chromium.orgd236f4d2010-09-01 06:52:08 +0000199 "_IsStringWrapperSafeForDefaultValueOf" : true,
200
201 // Only applicable to strings.
202 "_HasCachedArrayIndex": true,
mstarzinger@chromium.org32280cf2012-12-06 17:32:37 +0000203 "_GetCachedArrayIndex": true,
204 "_OneByteSeqStringSetChar": true,
205 "_TwoByteSeqStringSetChar": true,
verwaest@chromium.org8a00e822013-06-10 15:11:22 +0000206
207 // Only applicable to generators.
208 "_GeneratorNext": true,
209 "_GeneratorThrow": true,
mstarzinger@chromium.org1510d582013-06-28 14:00:48 +0000210
211 // Only applicable to DataViews.
machenbach@chromium.orgaf9cfcb2013-11-19 11:05:18 +0000212 "DataViewInitialize": true,
mstarzinger@chromium.org1510d582013-06-28 14:00:48 +0000213 "DataViewGetBuffer": true,
214 "DataViewGetByteLength": true,
215 "DataViewGetByteOffset": true
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000216};
217
218var currentlyUncallable = {
219 // We need to find a way to test this without breaking the system.
jkummerow@chromium.org93a47f42013-07-02 14:43:41 +0000220 "SystemBreak": true,
221 // Inserts an int3/stop instruction when run with --always-opt.
222 "_DebugBreakInOptimizedCode": true
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000223};
224
225function testNatives() {
226 var allNatives = %ListNatives();
verwaest@chromium.org33e09c82012-10-10 17:07:22 +0000227 var start = allNatives.length >> 2;
228 var stop = (allNatives.length >> 2)*2;
229 for (var i = start; i < stop; i++) {
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000230 var nativeInfo = allNatives[i];
231 var name = nativeInfo[0];
232 if (name in knownProblems || name in currentlyUncallable)
233 continue;
234 print(name);
235 var argc = nativeInfo[1];
vegorov@chromium.orgf8372902010-03-15 10:26:20 +0000236 testArgumentCount(name, argc);
ager@chromium.orgc27e4e72008-09-04 13:52:27 +0000237 testArgumentTypes(name, argc);
238 }
239}
240
241testNatives();