| 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 893 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 904 | 904 |
| 905 static ExternalReference math_exp_constants(int constant_index); | 905 static ExternalReference math_exp_constants(int constant_index); |
| 906 static ExternalReference math_exp_log_table(); | 906 static ExternalReference math_exp_log_table(); |
| 907 | 907 |
| 908 static ExternalReference page_flags(Page* page); | 908 static ExternalReference page_flags(Page* page); |
| 909 | 909 |
| 910 static ExternalReference ForDeoptEntry(Address entry); | 910 static ExternalReference ForDeoptEntry(Address entry); |
| 911 | 911 |
| 912 static ExternalReference cpu_features(); | 912 static ExternalReference cpu_features(); |
| 913 | 913 |
| 914 static ExternalReference debug_is_active_address(Isolate* isolate); |
| 914 static ExternalReference debug_after_break_target_address(Isolate* isolate); | 915 static ExternalReference debug_after_break_target_address(Isolate* isolate); |
| 915 static ExternalReference debug_restarter_frame_function_pointer_address( | 916 static ExternalReference debug_restarter_frame_function_pointer_address( |
| 916 Isolate* isolate); | 917 Isolate* isolate); |
| 917 | 918 |
| 918 static ExternalReference is_profiling_address(Isolate* isolate); | 919 static ExternalReference is_profiling_address(Isolate* isolate); |
| 919 static ExternalReference invoke_function_callback(Isolate* isolate); | 920 static ExternalReference invoke_function_callback(Isolate* isolate); |
| 920 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); | 921 static ExternalReference invoke_accessor_getter_callback(Isolate* isolate); |
| 921 | 922 |
| 922 Address address() const { return reinterpret_cast<Address>(address_); } | 923 Address address() const { return reinterpret_cast<Address>(address_); } |
| 923 | 924 |
| (...skipping 225 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1149 | 1150 |
| 1150 private: | 1151 private: |
| 1151 int32_t multiplier_; | 1152 int32_t multiplier_; |
| 1152 int32_t shift_; | 1153 int32_t shift_; |
| 1153 }; | 1154 }; |
| 1154 | 1155 |
| 1155 | 1156 |
| 1156 } } // namespace v8::internal | 1157 } } // namespace v8::internal |
| 1157 | 1158 |
| 1158 #endif // V8_ASSEMBLER_H_ | 1159 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |