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

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

Issue 2063693002: [builtins] Introduce proper Float64Log2 and Float64Log10 operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: More precise log10. 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/compiler/x64/code-generator-x64.cc ('k') | src/objects.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/counters.h" 9 #include "src/counters.h"
10 #include "src/deoptimizer.h" 10 #include "src/deoptimizer.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
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_atan_function(isolate).address(), 70 Add(ExternalReference::ieee754_atan_function(isolate).address(),
71 "base::ieee754::atan"); 71 "base::ieee754::atan");
72 Add(ExternalReference::ieee754_atan2_function(isolate).address(), 72 Add(ExternalReference::ieee754_atan2_function(isolate).address(),
73 "base::ieee754::atan2"); 73 "base::ieee754::atan2");
74 Add(ExternalReference::ieee754_log_function(isolate).address(), 74 Add(ExternalReference::ieee754_log_function(isolate).address(),
75 "base::ieee754::log"); 75 "base::ieee754::log");
76 Add(ExternalReference::ieee754_log1p_function(isolate).address(), 76 Add(ExternalReference::ieee754_log1p_function(isolate).address(),
77 "base::ieee754::log1p"); 77 "base::ieee754::log1p");
78 Add(ExternalReference::ieee754_log2_function(isolate).address(),
79 "base::ieee754::log2");
80 Add(ExternalReference::ieee754_log10_function(isolate).address(),
81 "base::ieee754::log10");
78 Add(ExternalReference::store_buffer_top(isolate).address(), 82 Add(ExternalReference::store_buffer_top(isolate).address(),
79 "store_buffer_top"); 83 "store_buffer_top");
80 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan"); 84 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan");
81 Add(ExternalReference::get_date_field_function(isolate).address(), 85 Add(ExternalReference::get_date_field_function(isolate).address(),
82 "JSDate::GetField"); 86 "JSDate::GetField");
83 Add(ExternalReference::date_cache_stamp(isolate).address(), 87 Add(ExternalReference::date_cache_stamp(isolate).address(),
84 "date_cache_stamp"); 88 "date_cache_stamp");
85 Add(ExternalReference::address_of_pending_message_obj(isolate).address(), 89 Add(ExternalReference::address_of_pending_message_obj(isolate).address(),
86 "address_of_pending_message_obj"); 90 "address_of_pending_message_obj");
87 Add(ExternalReference::get_make_code_young_function(isolate).address(), 91 Add(ExternalReference::get_make_code_young_function(isolate).address(),
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after
365 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) { 369 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) {
366 Address address = Deoptimizer::GetDeoptimizationEntry( 370 Address address = Deoptimizer::GetDeoptimizationEntry(
367 isolate, entry, Deoptimizer::LAZY, 371 isolate, entry, Deoptimizer::LAZY,
368 Deoptimizer::CALCULATE_ENTRY_ADDRESS); 372 Deoptimizer::CALCULATE_ENTRY_ADDRESS);
369 Add(address, "lazy_deopt"); 373 Add(address, "lazy_deopt");
370 } 374 }
371 } 375 }
372 376
373 } // namespace internal 377 } // namespace internal
374 } // namespace v8 378 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/objects.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698