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

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

Issue 2566483002: [promisehook] Add is_promisehook_enabled (Closed)
Patch Set: rename var Created 4 years 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
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/isolate.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 231 matching lines...) Expand 10 before | Expand all | Expand 10 after
242 .address(), 242 .address(),
243 "Isolate::is_tail_call_elimination_enabled_address()"); 243 "Isolate::is_tail_call_elimination_enabled_address()");
244 Add(ExternalReference::address_of_float_abs_constant().address(), 244 Add(ExternalReference::address_of_float_abs_constant().address(),
245 "float_absolute_constant"); 245 "float_absolute_constant");
246 Add(ExternalReference::address_of_float_neg_constant().address(), 246 Add(ExternalReference::address_of_float_neg_constant().address(),
247 "float_negate_constant"); 247 "float_negate_constant");
248 Add(ExternalReference::address_of_double_abs_constant().address(), 248 Add(ExternalReference::address_of_double_abs_constant().address(),
249 "double_absolute_constant"); 249 "double_absolute_constant");
250 Add(ExternalReference::address_of_double_neg_constant().address(), 250 Add(ExternalReference::address_of_double_neg_constant().address(),
251 "double_negate_constant"); 251 "double_negate_constant");
252 Add(ExternalReference::is_promisehook_enabled_address(isolate).address(),
253 "Isolate::is_promisehook_enabled_address()");
252 254
253 // Debug addresses 255 // Debug addresses
254 Add(ExternalReference::debug_after_break_target_address(isolate).address(), 256 Add(ExternalReference::debug_after_break_target_address(isolate).address(),
255 "Debug::after_break_target_address()"); 257 "Debug::after_break_target_address()");
256 Add(ExternalReference::debug_is_active_address(isolate).address(), 258 Add(ExternalReference::debug_is_active_address(isolate).address(),
257 "Debug::is_active_address()"); 259 "Debug::is_active_address()");
258 Add(ExternalReference::debug_last_step_action_address(isolate).address(), 260 Add(ExternalReference::debug_last_step_action_address(isolate).address(),
259 "Debug::step_in_enabled_address()"); 261 "Debug::step_in_enabled_address()");
260 Add(ExternalReference::debug_suspended_generator_address(isolate).address(), 262 Add(ExternalReference::debug_suspended_generator_address(isolate).address(),
261 "Debug::step_suspended_generator_address()"); 263 "Debug::step_suspended_generator_address()");
(...skipping 177 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 while (*api_external_references != 0) { 441 while (*api_external_references != 0) {
440 Address address = reinterpret_cast<Address>(*api_external_references); 442 Address address = reinterpret_cast<Address>(*api_external_references);
441 Add(address, ResolveSymbol(address)); 443 Add(address, ResolveSymbol(address));
442 api_external_references++; 444 api_external_references++;
443 } 445 }
444 } 446 }
445 } 447 }
446 448
447 } // namespace internal 449 } // namespace internal
448 } // namespace v8 450 } // namespace v8
OLDNEW
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/isolate.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698