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

Side by Side Diff: src/compiler/x64/instruction-codes-x64.h

Issue 1424333002: [turbofan] Added the RoundInt64ToFloat64 instruction to TurboFan. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@BufferedRawMachineAssemblerTester
Patch Set: Fixed the type of RoundInt64ToFloat64 Created 5 years, 1 month 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-selector-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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after
69 V(SSEFloat64Abs) \ 69 V(SSEFloat64Abs) \
70 V(SSEFloat64Neg) \ 70 V(SSEFloat64Neg) \
71 V(SSEFloat64Sqrt) \ 71 V(SSEFloat64Sqrt) \
72 V(SSEFloat64Round) \ 72 V(SSEFloat64Round) \
73 V(SSEFloat64Max) \ 73 V(SSEFloat64Max) \
74 V(SSEFloat64Min) \ 74 V(SSEFloat64Min) \
75 V(SSEFloat64ToFloat32) \ 75 V(SSEFloat64ToFloat32) \
76 V(SSEFloat64ToInt32) \ 76 V(SSEFloat64ToInt32) \
77 V(SSEFloat64ToUint32) \ 77 V(SSEFloat64ToUint32) \
78 V(SSEInt32ToFloat64) \ 78 V(SSEInt32ToFloat64) \
79 V(SSEInt64ToFloat64) \
79 V(SSEUint32ToFloat64) \ 80 V(SSEUint32ToFloat64) \
80 V(SSEFloat64ExtractLowWord32) \ 81 V(SSEFloat64ExtractLowWord32) \
81 V(SSEFloat64ExtractHighWord32) \ 82 V(SSEFloat64ExtractHighWord32) \
82 V(SSEFloat64InsertLowWord32) \ 83 V(SSEFloat64InsertLowWord32) \
83 V(SSEFloat64InsertHighWord32) \ 84 V(SSEFloat64InsertHighWord32) \
84 V(SSEFloat64LoadLowWord32) \ 85 V(SSEFloat64LoadLowWord32) \
85 V(AVXFloat32Cmp) \ 86 V(AVXFloat32Cmp) \
86 V(AVXFloat32Add) \ 87 V(AVXFloat32Add) \
87 V(AVXFloat32Sub) \ 88 V(AVXFloat32Sub) \
88 V(AVXFloat32Mul) \ 89 V(AVXFloat32Mul) \
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
155 V(M1I) /* [ %r2*1 + K] */ \ 156 V(M1I) /* [ %r2*1 + K] */ \
156 V(M2I) /* [ %r2*2 + K] */ \ 157 V(M2I) /* [ %r2*2 + K] */ \
157 V(M4I) /* [ %r2*4 + K] */ \ 158 V(M4I) /* [ %r2*4 + K] */ \
158 V(M8I) /* [ %r2*8 + K] */ 159 V(M8I) /* [ %r2*8 + K] */
159 160
160 } // namespace compiler 161 } // namespace compiler
161 } // namespace internal 162 } // namespace internal
162 } // namespace v8 163 } // namespace v8
163 164
164 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 165 #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-selector-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698