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

Side by Side Diff: src/arm/assembler-arm.h

Issue 1628133002: [turbofan] Add RoundUint32ToFloat32 operator to Turbofan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add arm/arm64 implementation Created 4 years, 10 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 | « no previous file | src/arm/assembler-arm.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 5 // modification, are permitted provided that the following conditions
6 // are met: 6 // are 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 1107 matching lines...) Expand 10 before | Expand all | Expand 10 after
1118 VFPConversionMode mode = kDefaultRoundToZero, 1118 VFPConversionMode mode = kDefaultRoundToZero,
1119 const Condition cond = al); 1119 const Condition cond = al);
1120 void vcvt_f32_s32(const SwVfpRegister dst, 1120 void vcvt_f32_s32(const SwVfpRegister dst,
1121 const SwVfpRegister src, 1121 const SwVfpRegister src,
1122 VFPConversionMode mode = kDefaultRoundToZero, 1122 VFPConversionMode mode = kDefaultRoundToZero,
1123 const Condition cond = al); 1123 const Condition cond = al);
1124 void vcvt_f64_u32(const DwVfpRegister dst, 1124 void vcvt_f64_u32(const DwVfpRegister dst,
1125 const SwVfpRegister src, 1125 const SwVfpRegister src,
1126 VFPConversionMode mode = kDefaultRoundToZero, 1126 VFPConversionMode mode = kDefaultRoundToZero,
1127 const Condition cond = al); 1127 const Condition cond = al);
1128 void vcvt_f32_u32(const SwVfpRegister dst,
1129 const SwVfpRegister src,
1130 VFPConversionMode mode = kDefaultRoundToZero,
1131 const Condition cond = al);
1128 void vcvt_s32_f32(const SwVfpRegister dst, 1132 void vcvt_s32_f32(const SwVfpRegister dst,
1129 const SwVfpRegister src, 1133 const SwVfpRegister src,
1130 VFPConversionMode mode = kDefaultRoundToZero, 1134 VFPConversionMode mode = kDefaultRoundToZero,
1131 const Condition cond = al); 1135 const Condition cond = al);
1132 void vcvt_s32_f64(const SwVfpRegister dst, 1136 void vcvt_s32_f64(const SwVfpRegister dst,
1133 const DwVfpRegister src, 1137 const DwVfpRegister src,
1134 VFPConversionMode mode = kDefaultRoundToZero, 1138 VFPConversionMode mode = kDefaultRoundToZero,
1135 const Condition cond = al); 1139 const Condition cond = al);
1136 void vcvt_u32_f64(const SwVfpRegister dst, 1140 void vcvt_u32_f64(const SwVfpRegister dst,
1137 const DwVfpRegister src, 1141 const DwVfpRegister src,
(...skipping 493 matching lines...) Expand 10 before | Expand all | Expand 10 after
1631 explicit EnsureSpace(Assembler* assembler) { 1635 explicit EnsureSpace(Assembler* assembler) {
1632 assembler->CheckBuffer(); 1636 assembler->CheckBuffer();
1633 } 1637 }
1634 }; 1638 };
1635 1639
1636 1640
1637 } // namespace internal 1641 } // namespace internal
1638 } // namespace v8 1642 } // namespace v8
1639 1643
1640 #endif // V8_ARM_ASSEMBLER_ARM_H_ 1644 #endif // V8_ARM_ASSEMBLER_ARM_H_
OLDNEW
« no previous file with comments | « no previous file | src/arm/assembler-arm.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698