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

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

Issue 2161513002: [x64] add Absps/d and Negps/d macro (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add Abspd and Negpd, and move constants to external reference Created 4 years, 5 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
« no previous file with comments | « src/assembler.cc ('k') | src/x64/assembler-x64.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 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
215 "Isolate::stress_deopt_count_address()"); 215 "Isolate::stress_deopt_count_address()");
216 Add(ExternalReference::virtual_handler_register(isolate).address(), 216 Add(ExternalReference::virtual_handler_register(isolate).address(),
217 "Isolate::virtual_handler_register()"); 217 "Isolate::virtual_handler_register()");
218 Add(ExternalReference::virtual_slot_register(isolate).address(), 218 Add(ExternalReference::virtual_slot_register(isolate).address(),
219 "Isolate::virtual_slot_register()"); 219 "Isolate::virtual_slot_register()");
220 Add(ExternalReference::runtime_function_table_address(isolate).address(), 220 Add(ExternalReference::runtime_function_table_address(isolate).address(),
221 "Runtime::runtime_function_table_address()"); 221 "Runtime::runtime_function_table_address()");
222 Add(ExternalReference::is_tail_call_elimination_enabled_address(isolate) 222 Add(ExternalReference::is_tail_call_elimination_enabled_address(isolate)
223 .address(), 223 .address(),
224 "Isolate::is_tail_call_elimination_enabled_address()"); 224 "Isolate::is_tail_call_elimination_enabled_address()");
225 Add(ExternalReference::address_of_float_abs_constant().address(),
226 "float_absolute_constant");
227 Add(ExternalReference::address_of_float_neg_constant().address(),
228 "float_negate_constant");
229 Add(ExternalReference::address_of_double_abs_constant().address(),
230 "double_absolute_constant");
231 Add(ExternalReference::address_of_double_neg_constant().address(),
232 "double_negate_constant");
225 233
226 // Debug addresses 234 // Debug addresses
227 Add(ExternalReference::debug_after_break_target_address(isolate).address(), 235 Add(ExternalReference::debug_after_break_target_address(isolate).address(),
228 "Debug::after_break_target_address()"); 236 "Debug::after_break_target_address()");
229 Add(ExternalReference::debug_is_active_address(isolate).address(), 237 Add(ExternalReference::debug_is_active_address(isolate).address(),
230 "Debug::is_active_address()"); 238 "Debug::is_active_address()");
231 Add(ExternalReference::debug_last_step_action_address(isolate).address(), 239 Add(ExternalReference::debug_last_step_action_address(isolate).address(),
232 "Debug::step_in_enabled_address()"); 240 "Debug::step_in_enabled_address()");
233 Add(ExternalReference::debug_suspended_generator_address(isolate).address(), 241 Add(ExternalReference::debug_suspended_generator_address(isolate).address(),
234 "Debug::step_suspended_generator_address()"); 242 "Debug::step_suspended_generator_address()");
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 if (api_external_references != nullptr) { 447 if (api_external_references != nullptr) {
440 while (*api_external_references != 0) { 448 while (*api_external_references != 0) {
441 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); 449 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>");
442 api_external_references++; 450 api_external_references++;
443 } 451 }
444 } 452 }
445 } 453 }
446 454
447 } // namespace internal 455 } // namespace internal
448 } // namespace v8 456 } // namespace v8
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698