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

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

Issue 2357323003: [ic][ia32][x87] Don't push/pop value/slot/vector in store handlers. (Closed)
Patch Set: Created 4 years, 3 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/ia32/code-stubs-ia32.cc » ('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 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
208 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(), 208 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(),
209 "f64_mod_wrapper"); 209 "f64_mod_wrapper");
210 Add(ExternalReference::log_enter_external_function(isolate).address(), 210 Add(ExternalReference::log_enter_external_function(isolate).address(),
211 "Logger::EnterExternal"); 211 "Logger::EnterExternal");
212 Add(ExternalReference::log_leave_external_function(isolate).address(), 212 Add(ExternalReference::log_leave_external_function(isolate).address(),
213 "Logger::LeaveExternal"); 213 "Logger::LeaveExternal");
214 Add(ExternalReference::address_of_minus_one_half().address(), 214 Add(ExternalReference::address_of_minus_one_half().address(),
215 "double_constants.minus_one_half"); 215 "double_constants.minus_one_half");
216 Add(ExternalReference::stress_deopt_count(isolate).address(), 216 Add(ExternalReference::stress_deopt_count(isolate).address(),
217 "Isolate::stress_deopt_count_address()"); 217 "Isolate::stress_deopt_count_address()");
218 Add(ExternalReference::virtual_handler_register(isolate).address(),
219 "Isolate::virtual_handler_register()");
220 Add(ExternalReference::virtual_slot_register(isolate).address(),
221 "Isolate::virtual_slot_register()");
222 Add(ExternalReference::runtime_function_table_address(isolate).address(), 218 Add(ExternalReference::runtime_function_table_address(isolate).address(),
223 "Runtime::runtime_function_table_address()"); 219 "Runtime::runtime_function_table_address()");
224 Add(ExternalReference::is_tail_call_elimination_enabled_address(isolate) 220 Add(ExternalReference::is_tail_call_elimination_enabled_address(isolate)
225 .address(), 221 .address(),
226 "Isolate::is_tail_call_elimination_enabled_address()"); 222 "Isolate::is_tail_call_elimination_enabled_address()");
227 Add(ExternalReference::address_of_float_abs_constant().address(), 223 Add(ExternalReference::address_of_float_abs_constant().address(),
228 "float_absolute_constant"); 224 "float_absolute_constant");
229 Add(ExternalReference::address_of_float_neg_constant().address(), 225 Add(ExternalReference::address_of_float_neg_constant().address(),
230 "float_negate_constant"); 226 "float_negate_constant");
231 Add(ExternalReference::address_of_double_abs_constant().address(), 227 Add(ExternalReference::address_of_double_abs_constant().address(),
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after
449 if (api_external_references != nullptr) { 445 if (api_external_references != nullptr) {
450 while (*api_external_references != 0) { 446 while (*api_external_references != 0) {
451 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); 447 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>");
452 api_external_references++; 448 api_external_references++;
453 } 449 }
454 } 450 }
455 } 451 }
456 452
457 } // namespace internal 453 } // namespace internal
458 } // namespace v8 454 } // namespace v8
OLDNEW
« no previous file with comments | « src/assembler.cc ('k') | src/ia32/code-stubs-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698