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 936 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
947 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); | 947 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); |
948 static ExternalReference f64_mod_wrapper_function(Isolate* isolate); | 948 static ExternalReference f64_mod_wrapper_function(Isolate* isolate); |
949 | 949 |
950 // Log support. | 950 // Log support. |
951 static ExternalReference log_enter_external_function(Isolate* isolate); | 951 static ExternalReference log_enter_external_function(Isolate* isolate); |
952 static ExternalReference log_leave_external_function(Isolate* isolate); | 952 static ExternalReference log_leave_external_function(Isolate* isolate); |
953 | 953 |
954 // Static variable Heap::roots_array_start() | 954 // Static variable Heap::roots_array_start() |
955 static ExternalReference roots_array_start(Isolate* isolate); | 955 static ExternalReference roots_array_start(Isolate* isolate); |
956 | 956 |
| 957 // Static variable Heap::native_contexts_list_address() |
| 958 static ExternalReference native_contexts_list_address(Isolate* isolate); |
| 959 |
957 // Static variable Heap::allocation_sites_list_address() | 960 // Static variable Heap::allocation_sites_list_address() |
958 static ExternalReference allocation_sites_list_address(Isolate* isolate); | 961 static ExternalReference allocation_sites_list_address(Isolate* isolate); |
959 | 962 |
960 // Static variable StackGuard::address_of_jslimit() | 963 // Static variable StackGuard::address_of_jslimit() |
961 V8_EXPORT_PRIVATE static ExternalReference address_of_stack_limit( | 964 V8_EXPORT_PRIVATE static ExternalReference address_of_stack_limit( |
962 Isolate* isolate); | 965 Isolate* isolate); |
963 | 966 |
964 // Static variable StackGuard::address_of_real_jslimit() | 967 // Static variable StackGuard::address_of_real_jslimit() |
965 static ExternalReference address_of_real_stack_limit(Isolate* isolate); | 968 static ExternalReference address_of_real_stack_limit(Isolate* isolate); |
966 | 969 |
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1280 std::vector<ConstantPoolEntry> shared_entries; | 1283 std::vector<ConstantPoolEntry> shared_entries; |
1281 }; | 1284 }; |
1282 | 1285 |
1283 Label emitted_label_; // Records pc_offset of emitted pool | 1286 Label emitted_label_; // Records pc_offset of emitted pool |
1284 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1287 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1285 }; | 1288 }; |
1286 | 1289 |
1287 } // namespace internal | 1290 } // namespace internal |
1288 } // namespace v8 | 1291 } // namespace v8 |
1289 #endif // V8_ASSEMBLER_H_ | 1292 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |