Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(94)

Side by Side Diff: src/external-reference-table.cc

Issue 2636913002: [liveedit] reimplement frame restarting. (Closed)
Patch Set: Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after
250 Add(ExternalReference::address_of_float_neg_constant().address(), 250 Add(ExternalReference::address_of_float_neg_constant().address(),
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_address(isolate).address(), 256 Add(ExternalReference::promise_hook_address(isolate).address(),
257 "Isolate::promise_hook_address()"); 257 "Isolate::promise_hook_address()");
258 258
259 // Debug addresses 259 // Debug addresses
260 Add(ExternalReference::debug_after_break_target_address(isolate).address(),
261 "Debug::after_break_target_address()");
262 Add(ExternalReference::debug_is_active_address(isolate).address(), 260 Add(ExternalReference::debug_is_active_address(isolate).address(),
263 "Debug::is_active_address()"); 261 "Debug::is_active_address()");
264 Add(ExternalReference::debug_hook_on_function_call_address(isolate).address(), 262 Add(ExternalReference::debug_hook_on_function_call_address(isolate).address(),
265 "Debug::hook_on_function_call_address()"); 263 "Debug::hook_on_function_call_address()");
266 Add(ExternalReference::debug_last_step_action_address(isolate).address(), 264 Add(ExternalReference::debug_last_step_action_address(isolate).address(),
267 "Debug::step_in_enabled_address()"); 265 "Debug::step_in_enabled_address()");
268 Add(ExternalReference::debug_suspended_generator_address(isolate).address(), 266 Add(ExternalReference::debug_suspended_generator_address(isolate).address(),
269 "Debug::step_suspended_generator_address()"); 267 "Debug::step_suspended_generator_address()");
268 Add(ExternalReference::debug_new_fp_address(isolate).address(),
269 "Debug::new_fp_address()");
270 270
271 #ifndef V8_INTERPRETED_REGEXP 271 #ifndef V8_INTERPRETED_REGEXP
272 Add(ExternalReference::re_case_insensitive_compare_uc16(isolate).address(), 272 Add(ExternalReference::re_case_insensitive_compare_uc16(isolate).address(),
273 "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()"); 273 "NativeRegExpMacroAssembler::CaseInsensitiveCompareUC16()");
274 Add(ExternalReference::re_check_stack_guard_state(isolate).address(), 274 Add(ExternalReference::re_check_stack_guard_state(isolate).address(),
275 "RegExpMacroAssembler*::CheckStackGuardState()"); 275 "RegExpMacroAssembler*::CheckStackGuardState()");
276 Add(ExternalReference::re_grow_stack(isolate).address(), 276 Add(ExternalReference::re_grow_stack(isolate).address(),
277 "NativeRegExpMacroAssembler::GrowStack()"); 277 "NativeRegExpMacroAssembler::GrowStack()");
278 Add(ExternalReference::re_word_character_map().address(), 278 Add(ExternalReference::re_word_character_map().address(),
279 "NativeRegExpMacroAssembler::word_character_map"); 279 "NativeRegExpMacroAssembler::word_character_map");
(...skipping 167 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 while (*api_external_references != 0) { 447 while (*api_external_references != 0) {
448 Address address = reinterpret_cast<Address>(*api_external_references); 448 Address address = reinterpret_cast<Address>(*api_external_references);
449 Add(address, ResolveSymbol(address)); 449 Add(address, ResolveSymbol(address));
450 api_external_references++; 450 api_external_references++;
451 } 451 }
452 } 452 }
453 } 453 }
454 454
455 } // namespace internal 455 } // namespace internal
456 } // namespace v8 456 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698