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

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

Issue 2060743002: [builtins] Introduce proper Float64Log1p operator. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@Math_Log
Patch Set: REBASE 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
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 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
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::ieee754_log_function(isolate).address(), 70 Add(ExternalReference::ieee754_log_function(isolate).address(),
71 "base::ieee754::log"); 71 "base::ieee754::log");
72 Add(ExternalReference::ieee754_log1p_function(isolate).address(),
73 "base::ieee754::log1p");
72 Add(ExternalReference::store_buffer_top(isolate).address(), 74 Add(ExternalReference::store_buffer_top(isolate).address(),
73 "store_buffer_top"); 75 "store_buffer_top");
74 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan"); 76 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan");
75 Add(ExternalReference::get_date_field_function(isolate).address(), 77 Add(ExternalReference::get_date_field_function(isolate).address(),
76 "JSDate::GetField"); 78 "JSDate::GetField");
77 Add(ExternalReference::date_cache_stamp(isolate).address(), 79 Add(ExternalReference::date_cache_stamp(isolate).address(),
78 "date_cache_stamp"); 80 "date_cache_stamp");
79 Add(ExternalReference::address_of_pending_message_obj(isolate).address(), 81 Add(ExternalReference::address_of_pending_message_obj(isolate).address(),
80 "address_of_pending_message_obj"); 82 "address_of_pending_message_obj");
81 Add(ExternalReference::get_make_code_young_function(isolate).address(), 83 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) { 365 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) {
364 Address address = Deoptimizer::GetDeoptimizationEntry( 366 Address address = Deoptimizer::GetDeoptimizationEntry(
365 isolate, entry, Deoptimizer::LAZY, 367 isolate, entry, Deoptimizer::LAZY,
366 Deoptimizer::CALCULATE_ENTRY_ADDRESS); 368 Deoptimizer::CALCULATE_ENTRY_ADDRESS);
367 Add(address, "lazy_deopt"); 369 Add(address, "lazy_deopt");
368 } 370 }
369 } 371 }
370 372
371 } // namespace internal 373 } // namespace internal
372 } // namespace v8 374 } // namespace v8
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698