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