| 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 932 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 943 static ExternalReference wasm_float64_pow(Isolate* isolate); | 943 static ExternalReference wasm_float64_pow(Isolate* isolate); |
| 944 | 944 |
| 945 static ExternalReference f64_acos_wrapper_function(Isolate* isolate); | 945 static ExternalReference f64_acos_wrapper_function(Isolate* isolate); |
| 946 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); | 946 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); |
| 947 static ExternalReference f64_mod_wrapper_function(Isolate* isolate); | 947 static ExternalReference f64_mod_wrapper_function(Isolate* isolate); |
| 948 | 948 |
| 949 // Log support. | 949 // Log support. |
| 950 static ExternalReference log_enter_external_function(Isolate* isolate); | 950 static ExternalReference log_enter_external_function(Isolate* isolate); |
| 951 static ExternalReference log_leave_external_function(Isolate* isolate); | 951 static ExternalReference log_leave_external_function(Isolate* isolate); |
| 952 | 952 |
| 953 // Static data in the keyed lookup cache. | |
| 954 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); | |
| 955 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); | |
| 956 | |
| 957 // Static variable Heap::roots_array_start() | 953 // Static variable Heap::roots_array_start() |
| 958 static ExternalReference roots_array_start(Isolate* isolate); | 954 static ExternalReference roots_array_start(Isolate* isolate); |
| 959 | 955 |
| 960 // Static variable Heap::allocation_sites_list_address() | 956 // Static variable Heap::allocation_sites_list_address() |
| 961 static ExternalReference allocation_sites_list_address(Isolate* isolate); | 957 static ExternalReference allocation_sites_list_address(Isolate* isolate); |
| 962 | 958 |
| 963 // Static variable StackGuard::address_of_jslimit() | 959 // Static variable StackGuard::address_of_jslimit() |
| 964 static ExternalReference address_of_stack_limit(Isolate* isolate); | 960 static ExternalReference address_of_stack_limit(Isolate* isolate); |
| 965 | 961 |
| 966 // Static variable StackGuard::address_of_real_jslimit() | 962 // Static variable StackGuard::address_of_real_jslimit() |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1281 std::vector<ConstantPoolEntry> shared_entries; | 1277 std::vector<ConstantPoolEntry> shared_entries; |
| 1282 }; | 1278 }; |
| 1283 | 1279 |
| 1284 Label emitted_label_; // Records pc_offset of emitted pool | 1280 Label emitted_label_; // Records pc_offset of emitted pool |
| 1285 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1281 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
| 1286 }; | 1282 }; |
| 1287 | 1283 |
| 1288 } // namespace internal | 1284 } // namespace internal |
| 1289 } // namespace v8 | 1285 } // namespace v8 |
| 1290 #endif // V8_ASSEMBLER_H_ | 1286 #endif // V8_ASSEMBLER_H_ |
| OLD | NEW |