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

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

Issue 2107733002: [wasm] Use the new Float64Pow TF operator to implement F64Pow. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@bmeurer-float64pow
Patch Set: Rebase. Created 4 years, 5 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/wasm-compiler.cc ('k') | no next file » | 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 152 matching lines...) Expand 10 before | Expand all | Expand 10 after
163 Add(ExternalReference::wasm_word64_ctz(isolate).address(), 163 Add(ExternalReference::wasm_word64_ctz(isolate).address(),
164 "wasm::word64_ctz"); 164 "wasm::word64_ctz");
165 Add(ExternalReference::wasm_word32_popcnt(isolate).address(), 165 Add(ExternalReference::wasm_word32_popcnt(isolate).address(),
166 "wasm::word32_popcnt"); 166 "wasm::word32_popcnt");
167 Add(ExternalReference::wasm_word64_popcnt(isolate).address(), 167 Add(ExternalReference::wasm_word64_popcnt(isolate).address(),
168 "wasm::word64_popcnt"); 168 "wasm::word64_popcnt");
169 Add(ExternalReference::f64_acos_wrapper_function(isolate).address(), 169 Add(ExternalReference::f64_acos_wrapper_function(isolate).address(),
170 "f64_acos_wrapper"); 170 "f64_acos_wrapper");
171 Add(ExternalReference::f64_asin_wrapper_function(isolate).address(), 171 Add(ExternalReference::f64_asin_wrapper_function(isolate).address(),
172 "f64_asin_wrapper"); 172 "f64_asin_wrapper");
173 Add(ExternalReference::f64_pow_wrapper_function(isolate).address(),
174 "f64_pow_wrapper");
175 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(), 173 Add(ExternalReference::f64_mod_wrapper_function(isolate).address(),
176 "f64_mod_wrapper"); 174 "f64_mod_wrapper");
177 Add(ExternalReference::log_enter_external_function(isolate).address(), 175 Add(ExternalReference::log_enter_external_function(isolate).address(),
178 "Logger::EnterExternal"); 176 "Logger::EnterExternal");
179 Add(ExternalReference::log_leave_external_function(isolate).address(), 177 Add(ExternalReference::log_leave_external_function(isolate).address(),
180 "Logger::LeaveExternal"); 178 "Logger::LeaveExternal");
181 Add(ExternalReference::address_of_minus_one_half().address(), 179 Add(ExternalReference::address_of_minus_one_half().address(),
182 "double_constants.minus_one_half"); 180 "double_constants.minus_one_half");
183 Add(ExternalReference::stress_deopt_count(isolate).address(), 181 Add(ExternalReference::stress_deopt_count(isolate).address(),
184 "Isolate::stress_deopt_count_address()"); 182 "Isolate::stress_deopt_count_address()");
(...skipping 197 matching lines...) Expand 10 before | Expand all | Expand 10 after
382 if (api_external_references != nullptr) { 380 if (api_external_references != nullptr) {
383 while (*api_external_references != 0) { 381 while (*api_external_references != 0) {
384 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); 382 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>");
385 api_external_references++; 383 api_external_references++;
386 } 384 }
387 } 385 }
388 } 386 }
389 387
390 } // namespace internal 388 } // namespace internal
391 } // namespace v8 389 } // namespace v8
OLDNEW
« no previous file with comments | « src/compiler/wasm-compiler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698