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

Side by Side Diff: src/compiler/x64/instruction-codes-x64.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 | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-scheduler-x64.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 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 5 #ifndef V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 6 #define V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after
84 V(SSEFloat64ToInt64) \ 84 V(SSEFloat64ToInt64) \
85 V(SSEFloat32ToUint64) \ 85 V(SSEFloat32ToUint64) \
86 V(SSEFloat64ToUint64) \ 86 V(SSEFloat64ToUint64) \
87 V(SSEInt32ToFloat64) \ 87 V(SSEInt32ToFloat64) \
88 V(SSEInt32ToFloat32) \ 88 V(SSEInt32ToFloat32) \
89 V(SSEInt64ToFloat32) \ 89 V(SSEInt64ToFloat32) \
90 V(SSEInt64ToFloat64) \ 90 V(SSEInt64ToFloat64) \
91 V(SSEUint64ToFloat32) \ 91 V(SSEUint64ToFloat32) \
92 V(SSEUint64ToFloat64) \ 92 V(SSEUint64ToFloat64) \
93 V(SSEUint32ToFloat64) \ 93 V(SSEUint32ToFloat64) \
94 V(SSEUint32ToFloat32) \
94 V(SSEFloat64ExtractLowWord32) \ 95 V(SSEFloat64ExtractLowWord32) \
95 V(SSEFloat64ExtractHighWord32) \ 96 V(SSEFloat64ExtractHighWord32) \
96 V(SSEFloat64InsertLowWord32) \ 97 V(SSEFloat64InsertLowWord32) \
97 V(SSEFloat64InsertHighWord32) \ 98 V(SSEFloat64InsertHighWord32) \
98 V(SSEFloat64LoadLowWord32) \ 99 V(SSEFloat64LoadLowWord32) \
99 V(AVXFloat32Cmp) \ 100 V(AVXFloat32Cmp) \
100 V(AVXFloat32Add) \ 101 V(AVXFloat32Add) \
101 V(AVXFloat32Sub) \ 102 V(AVXFloat32Sub) \
102 V(AVXFloat32Mul) \ 103 V(AVXFloat32Mul) \
103 V(AVXFloat32Div) \ 104 V(AVXFloat32Div) \
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
168 V(M1I) /* [ %r2*1 + K] */ \ 169 V(M1I) /* [ %r2*1 + K] */ \
169 V(M2I) /* [ %r2*2 + K] */ \ 170 V(M2I) /* [ %r2*2 + K] */ \
170 V(M4I) /* [ %r2*4 + K] */ \ 171 V(M4I) /* [ %r2*4 + K] */ \
171 V(M8I) /* [ %r2*8 + K] */ 172 V(M8I) /* [ %r2*8 + K] */
172 173
173 } // namespace compiler 174 } // namespace compiler
174 } // namespace internal 175 } // namespace internal
175 } // namespace v8 176 } // namespace v8
176 177
177 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 178 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_
OLDNEW
« no previous file with comments | « src/compiler/x64/code-generator-x64.cc ('k') | src/compiler/x64/instruction-scheduler-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698