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

Side by Side Diff: src/compiler/ia32/instruction-codes-ia32.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
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_IA32_INSTRUCTION_CODES_IA32_H_ 5 #ifndef V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 6 #define V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 44 matching lines...) Expand 10 before | Expand all | Expand 10 after
55 V(SSEFloat64Abs) \ 55 V(SSEFloat64Abs) \
56 V(SSEFloat64Neg) \ 56 V(SSEFloat64Neg) \
57 V(SSEFloat64Sqrt) \ 57 V(SSEFloat64Sqrt) \
58 V(SSEFloat64Round) \ 58 V(SSEFloat64Round) \
59 V(SSEFloat32ToFloat64) \ 59 V(SSEFloat32ToFloat64) \
60 V(SSEFloat64ToFloat32) \ 60 V(SSEFloat64ToFloat32) \
61 V(SSEFloat32ToInt32) \ 61 V(SSEFloat32ToInt32) \
62 V(SSEFloat64ToInt32) \ 62 V(SSEFloat64ToInt32) \
63 V(SSEFloat64ToUint32) \ 63 V(SSEFloat64ToUint32) \
64 V(SSEInt32ToFloat32) \ 64 V(SSEInt32ToFloat32) \
65 V(SSEUint32ToFloat32) \
65 V(SSEInt32ToFloat64) \ 66 V(SSEInt32ToFloat64) \
66 V(SSEUint32ToFloat64) \ 67 V(SSEUint32ToFloat64) \
67 V(SSEFloat64ExtractLowWord32) \ 68 V(SSEFloat64ExtractLowWord32) \
68 V(SSEFloat64ExtractHighWord32) \ 69 V(SSEFloat64ExtractHighWord32) \
69 V(SSEFloat64InsertLowWord32) \ 70 V(SSEFloat64InsertLowWord32) \
70 V(SSEFloat64InsertHighWord32) \ 71 V(SSEFloat64InsertHighWord32) \
71 V(SSEFloat64LoadLowWord32) \ 72 V(SSEFloat64LoadLowWord32) \
72 V(AVXFloat32Add) \ 73 V(AVXFloat32Add) \
73 V(AVXFloat32Sub) \ 74 V(AVXFloat32Sub) \
74 V(AVXFloat32Mul) \ 75 V(AVXFloat32Mul) \
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
135 V(M2I) /* [ %r2*2 + K] */ \ 136 V(M2I) /* [ %r2*2 + K] */ \
136 V(M4I) /* [ %r2*4 + K] */ \ 137 V(M4I) /* [ %r2*4 + K] */ \
137 V(M8I) /* [ %r2*8 + K] */ \ 138 V(M8I) /* [ %r2*8 + K] */ \
138 V(MI) /* [ K] */ 139 V(MI) /* [ K] */
139 140
140 } // namespace compiler 141 } // namespace compiler
141 } // namespace internal 142 } // namespace internal
142 } // namespace v8 143 } // namespace v8
143 144
144 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 145 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_
OLDNEW
« no previous file with comments | « src/compiler/ia32/code-generator-ia32.cc ('k') | src/compiler/ia32/instruction-scheduler-ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698