OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/external-reference-table.h" | 5 #include "src/external-reference-table.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/builtins/builtins.h" | 9 #include "src/builtins/builtins.h" |
10 #include "src/counters.h" | 10 #include "src/counters.h" |
(...skipping 219 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
230 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(), | 230 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(), |
231 "f64_mod_wrapper"); | 231 "f64_mod_wrapper"); |
232 Add(ExternalReference::wasm_call_trap_callback_for_testing(isolate).address(), | 232 Add(ExternalReference::wasm_call_trap_callback_for_testing(isolate).address(), |
233 "wasm::call_trap_callback_for_testing"); | 233 "wasm::call_trap_callback_for_testing"); |
234 Add(ExternalReference::libc_memchr_function(isolate).address(), | 234 Add(ExternalReference::libc_memchr_function(isolate).address(), |
235 "libc_memchr"); | 235 "libc_memchr"); |
236 Add(ExternalReference::libc_memcpy_function(isolate).address(), | 236 Add(ExternalReference::libc_memcpy_function(isolate).address(), |
237 "libc_memcpy"); | 237 "libc_memcpy"); |
238 Add(ExternalReference::libc_memset_function(isolate).address(), | 238 Add(ExternalReference::libc_memset_function(isolate).address(), |
239 "libc_memset"); | 239 "libc_memset"); |
| 240 Add(ExternalReference::try_internalize_string_function(isolate).address(), |
| 241 "try_internalize_string_function"); |
240 Add(ExternalReference::log_enter_external_function(isolate).address(), | 242 Add(ExternalReference::log_enter_external_function(isolate).address(), |
241 "Logger::EnterExternal"); | 243 "Logger::EnterExternal"); |
242 Add(ExternalReference::log_leave_external_function(isolate).address(), | 244 Add(ExternalReference::log_leave_external_function(isolate).address(), |
243 "Logger::LeaveExternal"); | 245 "Logger::LeaveExternal"); |
244 Add(ExternalReference::address_of_minus_one_half().address(), | 246 Add(ExternalReference::address_of_minus_one_half().address(), |
245 "double_constants.minus_one_half"); | 247 "double_constants.minus_one_half"); |
246 Add(ExternalReference::stress_deopt_count(isolate).address(), | 248 Add(ExternalReference::stress_deopt_count(isolate).address(), |
247 "Isolate::stress_deopt_count_address()"); | 249 "Isolate::stress_deopt_count_address()"); |
248 Add(ExternalReference::runtime_function_table_address(isolate).address(), | 250 Add(ExternalReference::runtime_function_table_address(isolate).address(), |
249 "Runtime::runtime_function_table_address()"); | 251 "Runtime::runtime_function_table_address()"); |
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
444 while (*api_external_references != 0) { | 446 while (*api_external_references != 0) { |
445 Address address = reinterpret_cast<Address>(*api_external_references); | 447 Address address = reinterpret_cast<Address>(*api_external_references); |
446 Add(address, ResolveSymbol(address)); | 448 Add(address, ResolveSymbol(address)); |
447 api_external_references++; | 449 api_external_references++; |
448 } | 450 } |
449 } | 451 } |
450 } | 452 } |
451 | 453 |
452 } // namespace internal | 454 } // namespace internal |
453 } // namespace v8 | 455 } // namespace v8 |
OLD | NEW |