| 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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1010 static ExternalReference store_buffer_top(Isolate* isolate); | 1010 static ExternalReference store_buffer_top(Isolate* isolate); |
| 1011 | 1011 |
| 1012 // Used for fast allocation in generated code. | 1012 // Used for fast allocation in generated code. |
| 1013 static ExternalReference new_space_allocation_top_address(Isolate* isolate); | 1013 static ExternalReference new_space_allocation_top_address(Isolate* isolate); |
| 1014 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); | 1014 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); |
| 1015 static ExternalReference old_space_allocation_top_address(Isolate* isolate); | 1015 static ExternalReference old_space_allocation_top_address(Isolate* isolate); |
| 1016 static ExternalReference old_space_allocation_limit_address(Isolate* isolate); | 1016 static ExternalReference old_space_allocation_limit_address(Isolate* isolate); |
| 1017 | 1017 |
| 1018 static ExternalReference mod_two_doubles_operation(Isolate* isolate); | 1018 static ExternalReference mod_two_doubles_operation(Isolate* isolate); |
| 1019 static ExternalReference power_double_double_function(Isolate* isolate); | 1019 static ExternalReference power_double_double_function(Isolate* isolate); |
| 1020 static ExternalReference power_double_int_function(Isolate* isolate); | |
| 1021 | 1020 |
| 1022 static ExternalReference handle_scope_next_address(Isolate* isolate); | 1021 static ExternalReference handle_scope_next_address(Isolate* isolate); |
| 1023 static ExternalReference handle_scope_limit_address(Isolate* isolate); | 1022 static ExternalReference handle_scope_limit_address(Isolate* isolate); |
| 1024 static ExternalReference handle_scope_level_address(Isolate* isolate); | 1023 static ExternalReference handle_scope_level_address(Isolate* isolate); |
| 1025 | 1024 |
| 1026 static ExternalReference scheduled_exception_address(Isolate* isolate); | 1025 static ExternalReference scheduled_exception_address(Isolate* isolate); |
| 1027 static ExternalReference address_of_pending_message_obj(Isolate* isolate); | 1026 static ExternalReference address_of_pending_message_obj(Isolate* isolate); |
| 1028 | 1027 |
| 1029 // Static variables containing common double constants. | 1028 // Static variables containing common double constants. |
| 1030 static ExternalReference address_of_min_int(); | 1029 static ExternalReference address_of_min_int(); |
| (...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1337 std::vector<ConstantPoolEntry> shared_entries; | 1336 std::vector<ConstantPoolEntry> shared_entries; |
| 1338 }; | 1337 }; |
| 1339 | 1338 |
| 1340 Label emitted_label_; // Records pc_offset of emitted pool | 1339 Label emitted_label_; // Records pc_offset of emitted pool |
| 1341 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1340 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
| 1342 }; | 1341 }; |
| 1343 | 1342 |
| 1344 } // namespace internal | 1343 } // namespace internal |
| 1345 } // namespace v8 | 1344 } // namespace v8 |
| 1346 #endif // V8_ASSEMBLER_H_ | 1345 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |