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 718 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
729 static ExternalReference math_sin_double_function(Isolate* isolate); | 729 static ExternalReference math_sin_double_function(Isolate* isolate); |
730 static ExternalReference math_cos_double_function(Isolate* isolate); | 730 static ExternalReference math_cos_double_function(Isolate* isolate); |
731 static ExternalReference math_tan_double_function(Isolate* isolate); | 731 static ExternalReference math_tan_double_function(Isolate* isolate); |
732 static ExternalReference math_log_double_function(Isolate* isolate); | 732 static ExternalReference math_log_double_function(Isolate* isolate); |
733 | 733 |
734 static ExternalReference math_exp_constants(int constant_index); | 734 static ExternalReference math_exp_constants(int constant_index); |
735 static ExternalReference math_exp_log_table(); | 735 static ExternalReference math_exp_log_table(); |
736 | 736 |
737 static ExternalReference page_flags(Page* page); | 737 static ExternalReference page_flags(Page* page); |
738 | 738 |
| 739 static ExternalReference ForDeoptEntry(Address entry); |
| 740 |
739 Address address() const {return reinterpret_cast<Address>(address_);} | 741 Address address() const {return reinterpret_cast<Address>(address_);} |
740 | 742 |
741 #ifdef ENABLE_DEBUGGER_SUPPORT | 743 #ifdef ENABLE_DEBUGGER_SUPPORT |
742 // Function Debug::Break() | 744 // Function Debug::Break() |
743 static ExternalReference debug_break(Isolate* isolate); | 745 static ExternalReference debug_break(Isolate* isolate); |
744 | 746 |
745 // Used to check if single stepping is enabled in generated code. | 747 // Used to check if single stepping is enabled in generated code. |
746 static ExternalReference debug_step_in_fp_address(Isolate* isolate); | 748 static ExternalReference debug_step_in_fp_address(Isolate* isolate); |
747 #endif | 749 #endif |
748 | 750 |
(...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
956 public: | 958 public: |
957 NullCallWrapper() { } | 959 NullCallWrapper() { } |
958 virtual ~NullCallWrapper() { } | 960 virtual ~NullCallWrapper() { } |
959 virtual void BeforeCall(int call_size) const { } | 961 virtual void BeforeCall(int call_size) const { } |
960 virtual void AfterCall() const { } | 962 virtual void AfterCall() const { } |
961 }; | 963 }; |
962 | 964 |
963 } } // namespace v8::internal | 965 } } // namespace v8::internal |
964 | 966 |
965 #endif // V8_ASSEMBLER_H_ | 967 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |