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

Side by Side Diff: test/mjsunit/fuzz-natives.js

Issue 8318014: Make _CallFunction proxy-aware. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Kevin's comment. Created 9 years, 1 month 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 | « src/x64/lithium-x64.cc ('k') | test/mjsunit/harmony/proxies-function.js » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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
(...skipping 145 matching lines...) Expand 10 before | Expand all | Expand 10 after
156 "CloneShallowLiteralBoilerplate": true, 156 "CloneShallowLiteralBoilerplate": true,
157 "CreateArrayLiteralBoilerplate": true, 157 "CreateArrayLiteralBoilerplate": true,
158 "IS_VAR": true, 158 "IS_VAR": true,
159 "ResolvePossiblyDirectEval": true, 159 "ResolvePossiblyDirectEval": true,
160 "Log": true, 160 "Log": true,
161 "DeclareGlobals": true, 161 "DeclareGlobals": true,
162 162
163 "PromoteScheduledException": true, 163 "PromoteScheduledException": true,
164 "DeleteHandleScopeExtensions": true, 164 "DeleteHandleScopeExtensions": true,
165 165
166 // Vararg with minimum number > 0.
167 "Call": true,
168
166 // Requires integer arguments to be non-negative. 169 // Requires integer arguments to be non-negative.
167 "Apply": true, 170 "Apply": true,
168 171
169 // That can only be invoked on Array.prototype. 172 // That can only be invoked on Array.prototype.
170 "FinishArrayPrototypeSetup": true, 173 "FinishArrayPrototypeSetup": true,
171 174
172 "_SwapElements": true, 175 "_SwapElements": true,
173 176
174 // Performance critical functions which cannot afford type checks. 177 // Performance critical functions which cannot afford type checks.
175 "_IsNativeOrStrictMode": true, 178 "_IsNativeOrStrictMode": true,
(...skipping 30 matching lines...) Expand all
206 if (name in knownProblems || name in currentlyUncallable) 209 if (name in knownProblems || name in currentlyUncallable)
207 continue; 210 continue;
208 print(name); 211 print(name);
209 var argc = nativeInfo[1]; 212 var argc = nativeInfo[1];
210 testArgumentCount(name, argc); 213 testArgumentCount(name, argc);
211 testArgumentTypes(name, argc); 214 testArgumentTypes(name, argc);
212 } 215 }
213 } 216 }
214 217
215 testNatives(); 218 testNatives();
OLDNEW
« no previous file with comments | « src/x64/lithium-x64.cc ('k') | test/mjsunit/harmony/proxies-function.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698