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 192 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
203 /* Dates */ \ | 203 /* Dates */ \ |
204 F(DateCurrentTime, 0, 1) \ | 204 F(DateCurrentTime, 0, 1) \ |
205 F(DateParseString, 2, 1) \ | 205 F(DateParseString, 2, 1) \ |
206 F(DateLocalTimezone, 1, 1) \ | 206 F(DateLocalTimezone, 1, 1) \ |
207 F(DateLocalTimeOffset, 0, 1) \ | 207 F(DateLocalTimeOffset, 0, 1) \ |
208 F(DateDaylightSavingsOffset, 1, 1) \ | 208 F(DateDaylightSavingsOffset, 1, 1) \ |
209 F(DateMakeDay, 3, 1) \ | 209 F(DateMakeDay, 3, 1) \ |
210 F(DateYMDFromTime, 2, 1) \ | 210 F(DateYMDFromTime, 2, 1) \ |
211 \ | 211 \ |
212 /* Numbers */ \ | 212 /* Numbers */ \ |
213 F(NumberIsFinite, 1, 1) \ | |
214 \ | 213 \ |
215 /* Globals */ \ | 214 /* Globals */ \ |
216 F(CompileString, 2, 1) \ | 215 F(CompileString, 2, 1) \ |
217 F(GlobalPrint, 1, 1) \ | 216 F(GlobalPrint, 1, 1) \ |
218 \ | 217 \ |
219 /* Eval */ \ | 218 /* Eval */ \ |
220 F(GlobalReceiver, 1, 1) \ | 219 F(GlobalReceiver, 1, 1) \ |
221 F(ResolvePossiblyDirectEval, 3, 2) \ | 220 F(ResolvePossiblyDirectEval, 3, 2) \ |
222 \ | 221 \ |
223 F(SetProperty, -1 /* 3 or 4 */, 1) \ | 222 F(SetProperty, -1 /* 3 or 4 */, 1) \ |
(...skipping 213 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
437 int position); | 436 int position); |
438 | 437 |
439 // Helper functions used stubs. | 438 // Helper functions used stubs. |
440 static void PerformGC(Object* result); | 439 static void PerformGC(Object* result); |
441 }; | 440 }; |
442 | 441 |
443 | 442 |
444 } } // namespace v8::internal | 443 } } // namespace v8::internal |
445 | 444 |
446 #endif // V8_RUNTIME_H_ | 445 #endif // V8_RUNTIME_H_ |
OLD | NEW |