| 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 731 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 742 static ExternalReference math_tan_double_function(Isolate* isolate); | 742 static ExternalReference math_tan_double_function(Isolate* isolate); |
| 743 static ExternalReference math_log_double_function(Isolate* isolate); | 743 static ExternalReference math_log_double_function(Isolate* isolate); |
| 744 | 744 |
| 745 static ExternalReference math_exp_constants(int constant_index); | 745 static ExternalReference math_exp_constants(int constant_index); |
| 746 static ExternalReference math_exp_log_table(); | 746 static ExternalReference math_exp_log_table(); |
| 747 | 747 |
| 748 static ExternalReference page_flags(Page* page); | 748 static ExternalReference page_flags(Page* page); |
| 749 | 749 |
| 750 static ExternalReference ForDeoptEntry(Address entry); | 750 static ExternalReference ForDeoptEntry(Address entry); |
| 751 | 751 |
| 752 static ExternalReference cpu_features(); |
| 753 |
| 752 Address address() const {return reinterpret_cast<Address>(address_);} | 754 Address address() const {return reinterpret_cast<Address>(address_);} |
| 753 | 755 |
| 754 #ifdef ENABLE_DEBUGGER_SUPPORT | 756 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 755 // Function Debug::Break() | 757 // Function Debug::Break() |
| 756 static ExternalReference debug_break(Isolate* isolate); | 758 static ExternalReference debug_break(Isolate* isolate); |
| 757 | 759 |
| 758 // Used to check if single stepping is enabled in generated code. | 760 // Used to check if single stepping is enabled in generated code. |
| 759 static ExternalReference debug_step_in_fp_address(Isolate* isolate); | 761 static ExternalReference debug_step_in_fp_address(Isolate* isolate); |
| 760 #endif | 762 #endif |
| 761 | 763 |
| (...skipping 207 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 969 public: | 971 public: |
| 970 NullCallWrapper() { } | 972 NullCallWrapper() { } |
| 971 virtual ~NullCallWrapper() { } | 973 virtual ~NullCallWrapper() { } |
| 972 virtual void BeforeCall(int call_size) const { } | 974 virtual void BeforeCall(int call_size) const { } |
| 973 virtual void AfterCall() const { } | 975 virtual void AfterCall() const { } |
| 974 }; | 976 }; |
| 975 | 977 |
| 976 } } // namespace v8::internal | 978 } } // namespace v8::internal |
| 977 | 979 |
| 978 #endif // V8_ASSEMBLER_H_ | 980 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |