OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 399 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 F(RandomHeapNumber, 0, 1) \ | 410 F(RandomHeapNumber, 0, 1) \ |
411 F(IsObject, 1, 1) \ | 411 F(IsObject, 1, 1) \ |
412 F(IsFunction, 1, 1) \ | 412 F(IsFunction, 1, 1) \ |
413 F(IsUndetectableObject, 1, 1) \ | 413 F(IsUndetectableObject, 1, 1) \ |
414 F(IsSpecObject, 1, 1) \ | 414 F(IsSpecObject, 1, 1) \ |
415 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ | 415 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ |
416 F(MathPow, 2, 1) \ | 416 F(MathPow, 2, 1) \ |
417 F(MathSin, 1, 1) \ | 417 F(MathSin, 1, 1) \ |
418 F(MathCos, 1, 1) \ | 418 F(MathCos, 1, 1) \ |
419 F(MathSqrt, 1, 1) \ | 419 F(MathSqrt, 1, 1) \ |
| 420 F(MathLog, 1, 1) \ |
420 F(IsRegExpEquivalent, 2, 1) \ | 421 F(IsRegExpEquivalent, 2, 1) \ |
421 F(HasCachedArrayIndex, 1, 1) \ | 422 F(HasCachedArrayIndex, 1, 1) \ |
422 F(GetCachedArrayIndex, 1, 1) \ | 423 F(GetCachedArrayIndex, 1, 1) \ |
423 F(FastAsciiArrayJoin, 2, 1) | 424 F(FastAsciiArrayJoin, 2, 1) |
424 | 425 |
425 | 426 |
426 // ---------------------------------------------------------------------------- | 427 // ---------------------------------------------------------------------------- |
427 // INLINE_AND_RUNTIME_FUNCTION_LIST defines all inlined functions accessed | 428 // INLINE_AND_RUNTIME_FUNCTION_LIST defines all inlined functions accessed |
428 // with a native call of the form %_name from within JS code that also have | 429 // with a native call of the form %_name from within JS code that also have |
429 // a corresponding runtime function, that is called for slow cases. | 430 // a corresponding runtime function, that is called for slow cases. |
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
536 int position); | 537 int position); |
537 | 538 |
538 // Helper functions used stubs. | 539 // Helper functions used stubs. |
539 static void PerformGC(Object* result); | 540 static void PerformGC(Object* result); |
540 }; | 541 }; |
541 | 542 |
542 | 543 |
543 } } // namespace v8::internal | 544 } } // namespace v8::internal |
544 | 545 |
545 #endif // V8_RUNTIME_H_ | 546 #endif // V8_RUNTIME_H_ |
OLD | NEW |