| OLD | NEW |
| 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. | 1 // Copyright (c) 1994-2006 Sun Microsystems Inc. |
| 2 // All Rights Reserved. | 2 // All Rights Reserved. |
| 3 // | 3 // |
| 4 // Redistribution and use in source and binary forms, with or without | 4 // Redistribution and use in source and binary forms, with or without |
| 5 // modification, are permitted provided that the following conditions are | 5 // modification, are permitted provided that the following conditions are |
| 6 // met: | 6 // met: |
| 7 // | 7 // |
| 8 // - Redistributions of source code must retain the above copyright notice, | 8 // - Redistributions of source code must retain the above copyright notice, |
| 9 // this list of conditions and the following disclaimer. | 9 // this list of conditions and the following disclaimer. |
| 10 // | 10 // |
| (...skipping 638 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 649 static ExternalReference address_of_uint8_max_value(); | 649 static ExternalReference address_of_uint8_max_value(); |
| 650 static ExternalReference address_of_negative_infinity(); | 650 static ExternalReference address_of_negative_infinity(); |
| 651 static ExternalReference address_of_canonical_non_hole_nan(); | 651 static ExternalReference address_of_canonical_non_hole_nan(); |
| 652 static ExternalReference address_of_the_hole_nan(); | 652 static ExternalReference address_of_the_hole_nan(); |
| 653 | 653 |
| 654 static ExternalReference math_sin_double_function(Isolate* isolate); | 654 static ExternalReference math_sin_double_function(Isolate* isolate); |
| 655 static ExternalReference math_cos_double_function(Isolate* isolate); | 655 static ExternalReference math_cos_double_function(Isolate* isolate); |
| 656 static ExternalReference math_tan_double_function(Isolate* isolate); | 656 static ExternalReference math_tan_double_function(Isolate* isolate); |
| 657 static ExternalReference math_log_double_function(Isolate* isolate); | 657 static ExternalReference math_log_double_function(Isolate* isolate); |
| 658 | 658 |
| 659 static ExternalReference page_flags(Page* page); |
| 660 |
| 659 Address address() const {return reinterpret_cast<Address>(address_);} | 661 Address address() const {return reinterpret_cast<Address>(address_);} |
| 660 | 662 |
| 661 #ifdef ENABLE_DEBUGGER_SUPPORT | 663 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 662 // Function Debug::Break() | 664 // Function Debug::Break() |
| 663 static ExternalReference debug_break(Isolate* isolate); | 665 static ExternalReference debug_break(Isolate* isolate); |
| 664 | 666 |
| 665 // Used to check if single stepping is enabled in generated code. | 667 // Used to check if single stepping is enabled in generated code. |
| 666 static ExternalReference debug_step_in_fp_address(Isolate* isolate); | 668 static ExternalReference debug_step_in_fp_address(Isolate* isolate); |
| 667 #endif | 669 #endif |
| 668 | 670 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 876 public: | 878 public: |
| 877 NullCallWrapper() { } | 879 NullCallWrapper() { } |
| 878 virtual ~NullCallWrapper() { } | 880 virtual ~NullCallWrapper() { } |
| 879 virtual void BeforeCall(int call_size) const { } | 881 virtual void BeforeCall(int call_size) const { } |
| 880 virtual void AfterCall() const { } | 882 virtual void AfterCall() const { } |
| 881 }; | 883 }; |
| 882 | 884 |
| 883 } } // namespace v8::internal | 885 } } // namespace v8::internal |
| 884 | 886 |
| 885 #endif // V8_ASSEMBLER_H_ | 887 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |