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

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

Issue 17203: Periodic merge from bleeding_edge to experimental code generator... (Closed) Base URL: http://v8.googlecode.com/svn/branches/experimental/toiger/
Patch Set: Created 11 years, 11 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/cctest/test-api.cc ('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 2008 the V8 project authors. All rights reserved. 1 // Copyright 2008 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 105 matching lines...) Expand 10 before | Expand all | Expand 10 after
116 "EnableAccessChecks": true, 116 "EnableAccessChecks": true,
117 117
118 // These functions should not be callable as runtime functions. 118 // These functions should not be callable as runtime functions.
119 "NewContext": true, 119 "NewContext": true,
120 "NewArgumentsFast": true, 120 "NewArgumentsFast": true,
121 "PushContext": true, 121 "PushContext": true,
122 "LazyCompile": true, 122 "LazyCompile": true,
123 "CreateObjectLiteralBoilerplate": true, 123 "CreateObjectLiteralBoilerplate": true,
124 "CloneObjectLiteralBoilerplate": true, 124 "CloneObjectLiteralBoilerplate": true,
125 "IS_VAR": true, 125 "IS_VAR": true,
126 "ResolvePossiblyDirectEval": true 126 "ResolvePossiblyDirectEval": true,
127 "Log": true
127 }; 128 };
128 129
129 var currentlyUncallable = { 130 var currentlyUncallable = {
130 // We need to find a way to test this without breaking the system. 131 // We need to find a way to test this without breaking the system.
131 "SystemBreak": true 132 "SystemBreak": true
132 }; 133 };
133 134
134 function testNatives() { 135 function testNatives() {
135 var allNatives = %ListNatives(); 136 var allNatives = %ListNatives();
136 for (var i = 0; i < allNatives.length; i++) { 137 for (var i = 0; i < allNatives.length; i++) {
137 var nativeInfo = allNatives[i]; 138 var nativeInfo = allNatives[i];
138 var name = nativeInfo[0]; 139 var name = nativeInfo[0];
139 if (name in knownProblems || name in currentlyUncallable) 140 if (name in knownProblems || name in currentlyUncallable)
140 continue; 141 continue;
141 print(name); 142 print(name);
142 var argc = nativeInfo[1]; 143 var argc = nativeInfo[1];
143 testArgumentCount(name); 144 testArgumentCount(name);
144 testArgumentTypes(name, argc); 145 testArgumentTypes(name, argc);
145 } 146 }
146 } 147 }
147 148
148 testNatives(); 149 testNatives();
OLDNEW
« no previous file with comments | « test/cctest/test-api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698