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 240 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
251 "float_negate_constant"); | 251 "float_negate_constant"); |
252 Add(ExternalReference::address_of_double_abs_constant().address(), | 252 Add(ExternalReference::address_of_double_abs_constant().address(), |
253 "double_absolute_constant"); | 253 "double_absolute_constant"); |
254 Add(ExternalReference::address_of_double_neg_constant().address(), | 254 Add(ExternalReference::address_of_double_neg_constant().address(), |
255 "double_negate_constant"); | 255 "double_negate_constant"); |
256 Add(ExternalReference::promise_hook_or_debug_is_active_address(isolate) | 256 Add(ExternalReference::promise_hook_or_debug_is_active_address(isolate) |
257 .address(), | 257 .address(), |
258 "Isolate::promise_hook_or_debug_is_active_address()"); | 258 "Isolate::promise_hook_or_debug_is_active_address()"); |
259 | 259 |
260 // Debug addresses | 260 // Debug addresses |
261 Add(ExternalReference::debug_after_break_target_address(isolate).address(), | |
262 "Debug::after_break_target_address()"); | |
263 Add(ExternalReference::debug_is_active_address(isolate).address(), | 261 Add(ExternalReference::debug_is_active_address(isolate).address(), |
264 "Debug::is_active_address()"); | 262 "Debug::is_active_address()"); |
265 Add(ExternalReference::debug_hook_on_function_call_address(isolate).address(), | 263 Add(ExternalReference::debug_hook_on_function_call_address(isolate).address(), |
266 "Debug::hook_on_function_call_address()"); | 264 "Debug::hook_on_function_call_address()"); |
267 Add(ExternalReference::debug_last_step_action_address(isolate).address(), | 265 Add(ExternalReference::debug_last_step_action_address(isolate).address(), |
268 "Debug::step_in_enabled_address()"); | 266 "Debug::step_in_enabled_address()"); |
269 Add(ExternalReference::debug_suspended_generator_address(isolate).address(), | 267 Add(ExternalReference::debug_suspended_generator_address(isolate).address(), |
270 "Debug::step_suspended_generator_address()"); | 268 "Debug::step_suspended_generator_address()"); |
| 269 Add(ExternalReference::debug_restart_fp_address(isolate).address(), |
| 270 "Debug::restart_fp_address()"); |
271 | 271 |
272 #ifndef V8_INTERPRETED_REGEXP | 272 #ifndef V8_INTERPRETED_REGEXP |
273 Add(ExternalReference::re_case_insensitive_compare_uc16(isolate).address(), | 273 Add(ExternalReference::re_case_insensitive_compare_uc16(isolate).address(), |
274 "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()"); | 274 "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()"); |
275 Add(ExternalReference::re_check_stack_guard_state(isolate).address(), | 275 Add(ExternalReference::re_check_stack_guard_state(isolate).address(), |
276 "RegExpMacroAssembler*::CheckStackGuardState()"); | 276 "RegExpMacroAssembler*::CheckStackGuardState()"); |
277 Add(ExternalReference::re_grow_stack(isolate).address(), | 277 Add(ExternalReference::re_grow_stack(isolate).address(), |
278 "NativeRegExpMacroAssembler::GrowStack()"); | 278 "NativeRegExpMacroAssembler::GrowStack()"); |
279 Add(ExternalReference::re_word_character_map().address(), | 279 Add(ExternalReference::re_word_character_map().address(), |
280 "NativeRegExpMacroAssembler::word_character_map"); | 280 "NativeRegExpMacroAssembler::word_character_map"); |
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
448 while (*api_external_references != 0) { | 448 while (*api_external_references != 0) { |
449 Address address = reinterpret_cast<Address>(*api_external_references); | 449 Address address = reinterpret_cast<Address>(*api_external_references); |
450 Add(address, ResolveSymbol(address)); | 450 Add(address, ResolveSymbol(address)); |
451 api_external_references++; | 451 api_external_references++; |
452 } | 452 } |
453 } | 453 } |
454 } | 454 } |
455 | 455 |
456 } // namespace internal | 456 } // namespace internal |
457 } // namespace v8 | 457 } // namespace v8 |
OLD | NEW |