| 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 856 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 867 static ExternalReference new_space_allocation_top_address(Isolate* isolate); | 867 static ExternalReference new_space_allocation_top_address(Isolate* isolate); |
| 868 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); | 868 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); |
| 869 static ExternalReference old_pointer_space_allocation_top_address( | 869 static ExternalReference old_pointer_space_allocation_top_address( |
| 870 Isolate* isolate); | 870 Isolate* isolate); |
| 871 static ExternalReference old_pointer_space_allocation_limit_address( | 871 static ExternalReference old_pointer_space_allocation_limit_address( |
| 872 Isolate* isolate); | 872 Isolate* isolate); |
| 873 static ExternalReference old_data_space_allocation_top_address( | 873 static ExternalReference old_data_space_allocation_top_address( |
| 874 Isolate* isolate); | 874 Isolate* isolate); |
| 875 static ExternalReference old_data_space_allocation_limit_address( | 875 static ExternalReference old_data_space_allocation_limit_address( |
| 876 Isolate* isolate); | 876 Isolate* isolate); |
| 877 static ExternalReference new_space_high_promotion_mode_active_address( | |
| 878 Isolate* isolate); | |
| 879 | 877 |
| 880 static ExternalReference mod_two_doubles_operation(Isolate* isolate); | 878 static ExternalReference mod_two_doubles_operation(Isolate* isolate); |
| 881 static ExternalReference power_double_double_function(Isolate* isolate); | 879 static ExternalReference power_double_double_function(Isolate* isolate); |
| 882 static ExternalReference power_double_int_function(Isolate* isolate); | 880 static ExternalReference power_double_int_function(Isolate* isolate); |
| 883 | 881 |
| 884 static ExternalReference handle_scope_next_address(Isolate* isolate); | 882 static ExternalReference handle_scope_next_address(Isolate* isolate); |
| 885 static ExternalReference handle_scope_limit_address(Isolate* isolate); | 883 static ExternalReference handle_scope_limit_address(Isolate* isolate); |
| 886 static ExternalReference handle_scope_level_address(Isolate* isolate); | 884 static ExternalReference handle_scope_level_address(Isolate* isolate); |
| 887 | 885 |
| 888 static ExternalReference scheduled_exception_address(Isolate* isolate); | 886 static ExternalReference scheduled_exception_address(Isolate* isolate); |
| (...skipping 262 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1151 | 1149 |
| 1152 private: | 1150 private: |
| 1153 int32_t multiplier_; | 1151 int32_t multiplier_; |
| 1154 int32_t shift_; | 1152 int32_t shift_; |
| 1155 }; | 1153 }; |
| 1156 | 1154 |
| 1157 | 1155 |
| 1158 } } // namespace v8::internal | 1156 } } // namespace v8::internal |
| 1159 | 1157 |
| 1160 #endif // V8_ASSEMBLER_H_ | 1158 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |