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

Side by Side Diff: src/assembler.cc

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. 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/assembler.h ('k') | src/bootstrapper.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 (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 1670 matching lines...) Expand 10 before | Expand all | Expand 10 after
1681 1681
1682 1682
1683 ExternalReference ExternalReference::power_double_double_function( 1683 ExternalReference ExternalReference::power_double_double_function(
1684 Isolate* isolate) { 1684 Isolate* isolate) {
1685 return ExternalReference(Redirect(isolate, 1685 return ExternalReference(Redirect(isolate,
1686 FUNCTION_ADDR(power_double_double), 1686 FUNCTION_ADDR(power_double_double),
1687 BUILTIN_FP_FP_CALL)); 1687 BUILTIN_FP_FP_CALL));
1688 } 1688 }
1689 1689
1690 1690
1691 ExternalReference ExternalReference::power_double_int_function(
1692 Isolate* isolate) {
1693 return ExternalReference(Redirect(isolate,
1694 FUNCTION_ADDR(power_double_int),
1695 BUILTIN_FP_INT_CALL));
1696 }
1697
1698
1699 ExternalReference ExternalReference::mod_two_doubles_operation( 1691 ExternalReference ExternalReference::mod_two_doubles_operation(
1700 Isolate* isolate) { 1692 Isolate* isolate) {
1701 return ExternalReference(Redirect(isolate, 1693 return ExternalReference(Redirect(isolate,
1702 FUNCTION_ADDR(modulo), 1694 FUNCTION_ADDR(modulo),
1703 BUILTIN_FP_FP_CALL)); 1695 BUILTIN_FP_FP_CALL));
1704 } 1696 }
1705 1697
1706 ExternalReference ExternalReference::debug_last_step_action_address( 1698 ExternalReference ExternalReference::debug_last_step_action_address(
1707 Isolate* isolate) { 1699 Isolate* isolate) {
1708 return ExternalReference(isolate->debug()->last_step_action_address()); 1700 return ExternalReference(isolate->debug()->last_step_action_address());
(...skipping 312 matching lines...) Expand 10 before | Expand all | Expand 10 after
2021 2013
2022 2014
2023 void Assembler::DataAlign(int m) { 2015 void Assembler::DataAlign(int m) {
2024 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m)); 2016 DCHECK(m >= 2 && base::bits::IsPowerOfTwo32(m));
2025 while ((pc_offset() & (m - 1)) != 0) { 2017 while ((pc_offset() & (m - 1)) != 0) {
2026 db(0); 2018 db(0);
2027 } 2019 }
2028 } 2020 }
2029 } // namespace internal 2021 } // namespace internal
2030 } // namespace v8 2022 } // namespace v8
OLDNEW
« no previous file with comments | « src/assembler.h ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698