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

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

Issue 2811333002: [builtins] HasOwnProperty: handle non-internalized string keys (Closed)
Patch Set: rebased (noop) Created 3 years, 8 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/compiler/code-assembler.cc ('k') | src/flag-definitions.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 219 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(), 230 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(),
231 "f64_mod_wrapper"); 231 "f64_mod_wrapper");
232 Add(ExternalReference::wasm_call_trap_callback_for_testing(isolate).address(), 232 Add(ExternalReference::wasm_call_trap_callback_for_testing(isolate).address(),
233 "wasm::call_trap_callback_for_testing"); 233 "wasm::call_trap_callback_for_testing");
234 Add(ExternalReference::libc_memchr_function(isolate).address(), 234 Add(ExternalReference::libc_memchr_function(isolate).address(),
235 "libc_memchr"); 235 "libc_memchr");
236 Add(ExternalReference::libc_memcpy_function(isolate).address(), 236 Add(ExternalReference::libc_memcpy_function(isolate).address(),
237 "libc_memcpy"); 237 "libc_memcpy");
238 Add(ExternalReference::libc_memset_function(isolate).address(), 238 Add(ExternalReference::libc_memset_function(isolate).address(),
239 "libc_memset"); 239 "libc_memset");
240 Add(ExternalReference::try_internalize_string_function(isolate).address(),
241 "try_internalize_string_function");
240 Add(ExternalReference::log_enter_external_function(isolate).address(), 242 Add(ExternalReference::log_enter_external_function(isolate).address(),
241 "Logger::EnterExternal"); 243 "Logger::EnterExternal");
242 Add(ExternalReference::log_leave_external_function(isolate).address(), 244 Add(ExternalReference::log_leave_external_function(isolate).address(),
243 "Logger::LeaveExternal"); 245 "Logger::LeaveExternal");
244 Add(ExternalReference::address_of_minus_one_half().address(), 246 Add(ExternalReference::address_of_minus_one_half().address(),
245 "double_constants.minus_one_half"); 247 "double_constants.minus_one_half");
246 Add(ExternalReference::stress_deopt_count(isolate).address(), 248 Add(ExternalReference::stress_deopt_count(isolate).address(),
247 "Isolate::stress_deopt_count_address()"); 249 "Isolate::stress_deopt_count_address()");
248 Add(ExternalReference::runtime_function_table_address(isolate).address(), 250 Add(ExternalReference::runtime_function_table_address(isolate).address(),
249 "Runtime::runtime_function_table_address()"); 251 "Runtime::runtime_function_table_address()");
(...skipping 194 matching lines...) Expand 10 before | Expand all | Expand 10 after
444 while (*api_external_references != 0) { 446 while (*api_external_references != 0) {
445 Address address = reinterpret_cast<Address>(*api_external_references); 447 Address address = reinterpret_cast<Address>(*api_external_references);
446 Add(address, ResolveSymbol(address)); 448 Add(address, ResolveSymbol(address));
447 api_external_references++; 449 api_external_references++;
448 } 450 }
449 } 451 }
450 } 452 }
451 453
452 } // namespace internal 454 } // namespace internal
453 } // namespace v8 455 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/code-assembler.cc ('k') | src/flag-definitions.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698