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

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

Issue 2060233002: [turbofan] Prevent storing signalling NaNs into holey double arrays. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix spelling, rebase Created 4 years, 6 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 84 matching lines...) Expand 10 before | Expand all | Expand 10 after
95 V(SSEInt64ToFloat64) \ 95 V(SSEInt64ToFloat64) \
96 V(SSEUint64ToFloat32) \ 96 V(SSEUint64ToFloat32) \
97 V(SSEUint64ToFloat64) \ 97 V(SSEUint64ToFloat64) \
98 V(SSEUint32ToFloat64) \ 98 V(SSEUint32ToFloat64) \
99 V(SSEUint32ToFloat32) \ 99 V(SSEUint32ToFloat32) \
100 V(SSEFloat64ExtractLowWord32) \ 100 V(SSEFloat64ExtractLowWord32) \
101 V(SSEFloat64ExtractHighWord32) \ 101 V(SSEFloat64ExtractHighWord32) \
102 V(SSEFloat64InsertLowWord32) \ 102 V(SSEFloat64InsertLowWord32) \
103 V(SSEFloat64InsertHighWord32) \ 103 V(SSEFloat64InsertHighWord32) \
104 V(SSEFloat64LoadLowWord32) \ 104 V(SSEFloat64LoadLowWord32) \
105 V(SSEFloat64SilenceNaN) \
105 V(AVXFloat32Cmp) \ 106 V(AVXFloat32Cmp) \
106 V(AVXFloat32Add) \ 107 V(AVXFloat32Add) \
107 V(AVXFloat32Sub) \ 108 V(AVXFloat32Sub) \
108 V(AVXFloat32Mul) \ 109 V(AVXFloat32Mul) \
109 V(AVXFloat32Div) \ 110 V(AVXFloat32Div) \
110 V(AVXFloat32Max) \ 111 V(AVXFloat32Max) \
111 V(AVXFloat32Min) \ 112 V(AVXFloat32Min) \
112 V(AVXFloat64Cmp) \ 113 V(AVXFloat64Cmp) \
113 V(AVXFloat64Add) \ 114 V(AVXFloat64Add) \
114 V(AVXFloat64Sub) \ 115 V(AVXFloat64Sub) \
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after
176 V(M1I) /* [ %r2*1 + K] */ \ 177 V(M1I) /* [ %r2*1 + K] */ \
177 V(M2I) /* [ %r2*2 + K] */ \ 178 V(M2I) /* [ %r2*2 + K] */ \
178 V(M4I) /* [ %r2*4 + K] */ \ 179 V(M4I) /* [ %r2*4 + K] */ \
179 V(M8I) /* [ %r2*8 + K] */ 180 V(M8I) /* [ %r2*8 + K] */
180 181
181 } // namespace compiler 182 } // namespace compiler
182 } // namespace internal 183 } // namespace internal
183 } // namespace v8 184 } // namespace v8
184 185
185 #endif // V8_COMPILER_X64_INSTRUCTION_CODES_X64_H_ 186 #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