OLD | NEW |
1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-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 184 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
195 \ | 195 \ |
196 /* Numbers */ \ | 196 /* Numbers */ \ |
197 F(NumberIsFinite, 1, 1) \ | 197 F(NumberIsFinite, 1, 1) \ |
198 \ | 198 \ |
199 /* Globals */ \ | 199 /* Globals */ \ |
200 F(CompileString, 2, 1) \ | 200 F(CompileString, 2, 1) \ |
201 F(GlobalPrint, 1, 1) \ | 201 F(GlobalPrint, 1, 1) \ |
202 \ | 202 \ |
203 /* Eval */ \ | 203 /* Eval */ \ |
204 F(GlobalReceiver, 1, 1) \ | 204 F(GlobalReceiver, 1, 1) \ |
205 F(ResolvePossiblyDirectEval, 3, 1) \ | 205 F(ResolvePossiblyDirectEval, 3, 2) \ |
206 \ | 206 \ |
207 F(SetProperty, -1 /* 3 or 4 */, 1) \ | 207 F(SetProperty, -1 /* 3 or 4 */, 1) \ |
208 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ | 208 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ |
209 \ | 209 \ |
210 /* Arrays */ \ | 210 /* Arrays */ \ |
211 F(RemoveArrayHoles, 2, 1) \ | 211 F(RemoveArrayHoles, 2, 1) \ |
212 F(GetArrayKeys, 2, 1) \ | 212 F(GetArrayKeys, 2, 1) \ |
213 F(MoveArrayContents, 2, 1) \ | 213 F(MoveArrayContents, 2, 1) \ |
214 F(EstimateNumberOfElements, 1, 1) \ | 214 F(EstimateNumberOfElements, 1, 1) \ |
215 \ | 215 \ |
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
420 int position); | 420 int position); |
421 | 421 |
422 // Helper functions used stubs. | 422 // Helper functions used stubs. |
423 static void PerformGC(Object* result); | 423 static void PerformGC(Object* result); |
424 }; | 424 }; |
425 | 425 |
426 | 426 |
427 } } // namespace v8::internal | 427 } } // namespace v8::internal |
428 | 428 |
429 #endif // V8_RUNTIME_H_ | 429 #endif // V8_RUNTIME_H_ |
OLD | NEW |