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

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

Issue 2053893003: [builtins] Introduce proper base::ieee754::log. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: BUILD.gn Created 4 years, 6 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/crankshaft/x64/lithium-x64.cc ('k') | src/profiler/sampling-heap-profiler.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/counters.h" 9 #include "src/counters.h"
10 #include "src/deoptimizer.h" 10 #include "src/deoptimizer.h"
(...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after
60 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(), 60 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(),
61 "Interpreter::dispatch_table_address"); 61 "Interpreter::dispatch_table_address");
62 Add(ExternalReference::interpreter_dispatch_counters(isolate).address(), 62 Add(ExternalReference::interpreter_dispatch_counters(isolate).address(),
63 "Interpreter::interpreter_dispatch_counters"); 63 "Interpreter::interpreter_dispatch_counters");
64 Add(ExternalReference::address_of_negative_infinity().address(), 64 Add(ExternalReference::address_of_negative_infinity().address(),
65 "LDoubleConstant::negative_infinity"); 65 "LDoubleConstant::negative_infinity");
66 Add(ExternalReference::power_double_double_function(isolate).address(), 66 Add(ExternalReference::power_double_double_function(isolate).address(),
67 "power_double_double_function"); 67 "power_double_double_function");
68 Add(ExternalReference::power_double_int_function(isolate).address(), 68 Add(ExternalReference::power_double_int_function(isolate).address(),
69 "power_double_int_function"); 69 "power_double_int_function");
70 Add(ExternalReference::math_log_double_function(isolate).address(), 70 Add(ExternalReference::ieee754_log_function(isolate).address(),
71 "std::log"); 71 "base::ieee754::log");
72 Add(ExternalReference::store_buffer_top(isolate).address(), 72 Add(ExternalReference::store_buffer_top(isolate).address(),
73 "store_buffer_top"); 73 "store_buffer_top");
74 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan"); 74 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan");
75 Add(ExternalReference::get_date_field_function(isolate).address(), 75 Add(ExternalReference::get_date_field_function(isolate).address(),
76 "JSDate::GetField"); 76 "JSDate::GetField");
77 Add(ExternalReference::date_cache_stamp(isolate).address(), 77 Add(ExternalReference::date_cache_stamp(isolate).address(),
78 "date_cache_stamp"); 78 "date_cache_stamp");
79 Add(ExternalReference::address_of_pending_message_obj(isolate).address(), 79 Add(ExternalReference::address_of_pending_message_obj(isolate).address(),
80 "address_of_pending_message_obj"); 80 "address_of_pending_message_obj");
81 Add(ExternalReference::get_make_code_young_function(isolate).address(), 81 Add(ExternalReference::get_make_code_young_function(isolate).address(),
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
363 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) { 363 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) {
364 Address address = Deoptimizer::GetDeoptimizationEntry( 364 Address address = Deoptimizer::GetDeoptimizationEntry(
365 isolate, entry, Deoptimizer::LAZY, 365 isolate, entry, Deoptimizer::LAZY,
366 Deoptimizer::CALCULATE_ENTRY_ADDRESS); 366 Deoptimizer::CALCULATE_ENTRY_ADDRESS);
367 Add(address, "lazy_deopt"); 367 Add(address, "lazy_deopt");
368 } 368 }
369 } 369 }
370 370
371 } // namespace internal 371 } // namespace internal
372 } // namespace v8 372 } // namespace v8
OLDNEW
« no previous file with comments | « src/crankshaft/x64/lithium-x64.cc ('k') | src/profiler/sampling-heap-profiler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698