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

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

Issue 2424433002: [ic] Delete old KeyedLoadIC code (Closed)
Patch Set: fix failing test Created 4 years, 2 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/deoptimize-reason.h ('k') | src/field-index.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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 Add(ExternalReference::address_of_stack_limit(isolate).address(), 49 Add(ExternalReference::address_of_stack_limit(isolate).address(),
50 "StackGuard::address_of_jslimit()"); 50 "StackGuard::address_of_jslimit()");
51 Add(ExternalReference::address_of_real_stack_limit(isolate).address(), 51 Add(ExternalReference::address_of_real_stack_limit(isolate).address(),
52 "StackGuard::address_of_real_jslimit()"); 52 "StackGuard::address_of_real_jslimit()");
53 Add(ExternalReference::new_space_allocation_limit_address(isolate).address(), 53 Add(ExternalReference::new_space_allocation_limit_address(isolate).address(),
54 "Heap::NewSpaceAllocationLimitAddress()"); 54 "Heap::NewSpaceAllocationLimitAddress()");
55 Add(ExternalReference::new_space_allocation_top_address(isolate).address(), 55 Add(ExternalReference::new_space_allocation_top_address(isolate).address(),
56 "Heap::NewSpaceAllocationTopAddress()"); 56 "Heap::NewSpaceAllocationTopAddress()");
57 Add(ExternalReference::mod_two_doubles_operation(isolate).address(), 57 Add(ExternalReference::mod_two_doubles_operation(isolate).address(),
58 "mod_two_doubles"); 58 "mod_two_doubles");
59 // Keyed lookup cache.
60 Add(ExternalReference::keyed_lookup_cache_keys(isolate).address(),
61 "KeyedLookupCache::keys()");
62 Add(ExternalReference::keyed_lookup_cache_field_offsets(isolate).address(),
63 "KeyedLookupCache::field_offsets()");
64 Add(ExternalReference::handle_scope_next_address(isolate).address(), 59 Add(ExternalReference::handle_scope_next_address(isolate).address(),
65 "HandleScope::next"); 60 "HandleScope::next");
66 Add(ExternalReference::handle_scope_limit_address(isolate).address(), 61 Add(ExternalReference::handle_scope_limit_address(isolate).address(),
67 "HandleScope::limit"); 62 "HandleScope::limit");
68 Add(ExternalReference::handle_scope_level_address(isolate).address(), 63 Add(ExternalReference::handle_scope_level_address(isolate).address(),
69 "HandleScope::level"); 64 "HandleScope::level");
70 Add(ExternalReference::new_deoptimizer_function(isolate).address(), 65 Add(ExternalReference::new_deoptimizer_function(isolate).address(),
71 "Deoptimizer::New()"); 66 "Deoptimizer::New()");
72 Add(ExternalReference::compute_output_frames_function(isolate).address(), 67 Add(ExternalReference::compute_output_frames_function(isolate).address(),
73 "Deoptimizer::ComputeOutputFrames()"); 68 "Deoptimizer::ComputeOutputFrames()");
(...skipping 371 matching lines...) Expand 10 before | Expand all | Expand 10 after
445 if (api_external_references != nullptr) { 440 if (api_external_references != nullptr) {
446 while (*api_external_references != 0) { 441 while (*api_external_references != 0) {
447 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); 442 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>");
448 api_external_references++; 443 api_external_references++;
449 } 444 }
450 } 445 }
451 } 446 }
452 447
453 } // namespace internal 448 } // namespace internal
454 } // namespace v8 449 } // namespace v8
OLDNEW
« no previous file with comments | « src/deoptimize-reason.h ('k') | src/field-index.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698