| OLD | NEW |
| 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 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 498 F(ObjectEquals, 2, 1) \ | 498 F(ObjectEquals, 2, 1) \ |
| 499 F(RandomHeapNumber, 0, 1) \ | 499 F(RandomHeapNumber, 0, 1) \ |
| 500 F(IsObject, 1, 1) \ | 500 F(IsObject, 1, 1) \ |
| 501 F(IsFunction, 1, 1) \ | 501 F(IsFunction, 1, 1) \ |
| 502 F(IsUndetectableObject, 1, 1) \ | 502 F(IsUndetectableObject, 1, 1) \ |
| 503 F(IsSpecObject, 1, 1) \ | 503 F(IsSpecObject, 1, 1) \ |
| 504 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ | 504 F(IsStringWrapperSafeForDefaultValueOf, 1, 1) \ |
| 505 F(MathPow, 2, 1) \ | 505 F(MathPow, 2, 1) \ |
| 506 F(MathSin, 1, 1) \ | 506 F(MathSin, 1, 1) \ |
| 507 F(MathCos, 1, 1) \ | 507 F(MathCos, 1, 1) \ |
| 508 F(MathTan, 1, 1) \ |
| 508 F(MathSqrt, 1, 1) \ | 509 F(MathSqrt, 1, 1) \ |
| 509 F(MathLog, 1, 1) \ | 510 F(MathLog, 1, 1) \ |
| 510 F(IsRegExpEquivalent, 2, 1) \ | 511 F(IsRegExpEquivalent, 2, 1) \ |
| 511 F(HasCachedArrayIndex, 1, 1) \ | 512 F(HasCachedArrayIndex, 1, 1) \ |
| 512 F(GetCachedArrayIndex, 1, 1) \ | 513 F(GetCachedArrayIndex, 1, 1) \ |
| 513 F(FastAsciiArrayJoin, 2, 1) | 514 F(FastAsciiArrayJoin, 2, 1) |
| 514 | 515 |
| 515 | 516 |
| 516 // ---------------------------------------------------------------------------- | 517 // ---------------------------------------------------------------------------- |
| 517 // INLINE_AND_RUNTIME_FUNCTION_LIST defines all inlined functions accessed | 518 // INLINE_AND_RUNTIME_FUNCTION_LIST defines all inlined functions accessed |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 684 //--------------------------------------------------------------------------- | 685 //--------------------------------------------------------------------------- |
| 685 // Constants used by interface to runtime functions. | 686 // Constants used by interface to runtime functions. |
| 686 | 687 |
| 687 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 688 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 688 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 689 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 689 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 690 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 690 | 691 |
| 691 } } // namespace v8::internal | 692 } } // namespace v8::internal |
| 692 | 693 |
| 693 #endif // V8_RUNTIME_H_ | 694 #endif // V8_RUNTIME_H_ |
| OLD | NEW |