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

Side by Side Diff: src/compiler/ia32/instruction-codes-ia32.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
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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 V(SSEFloat64ToUint32) \ 74 V(SSEFloat64ToUint32) \
75 V(SSEInt32ToFloat32) \ 75 V(SSEInt32ToFloat32) \
76 V(SSEUint32ToFloat32) \ 76 V(SSEUint32ToFloat32) \
77 V(SSEInt32ToFloat64) \ 77 V(SSEInt32ToFloat64) \
78 V(SSEUint32ToFloat64) \ 78 V(SSEUint32ToFloat64) \
79 V(SSEFloat64ExtractLowWord32) \ 79 V(SSEFloat64ExtractLowWord32) \
80 V(SSEFloat64ExtractHighWord32) \ 80 V(SSEFloat64ExtractHighWord32) \
81 V(SSEFloat64InsertLowWord32) \ 81 V(SSEFloat64InsertLowWord32) \
82 V(SSEFloat64InsertHighWord32) \ 82 V(SSEFloat64InsertHighWord32) \
83 V(SSEFloat64LoadLowWord32) \ 83 V(SSEFloat64LoadLowWord32) \
84 V(SSEFloat64SilenceNaN) \
84 V(AVXFloat32Add) \ 85 V(AVXFloat32Add) \
85 V(AVXFloat32Sub) \ 86 V(AVXFloat32Sub) \
86 V(AVXFloat32Mul) \ 87 V(AVXFloat32Mul) \
87 V(AVXFloat32Div) \ 88 V(AVXFloat32Div) \
88 V(AVXFloat32Max) \ 89 V(AVXFloat32Max) \
89 V(AVXFloat32Min) \ 90 V(AVXFloat32Min) \
90 V(AVXFloat64Add) \ 91 V(AVXFloat64Add) \
91 V(AVXFloat64Sub) \ 92 V(AVXFloat64Sub) \
92 V(AVXFloat64Mul) \ 93 V(AVXFloat64Mul) \
93 V(AVXFloat64Div) \ 94 V(AVXFloat64Div) \
(...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
149 V(M2I) /* [ %r2*2 + K] */ \ 150 V(M2I) /* [ %r2*2 + K] */ \
150 V(M4I) /* [ %r2*4 + K] */ \ 151 V(M4I) /* [ %r2*4 + K] */ \
151 V(M8I) /* [ %r2*8 + K] */ \ 152 V(M8I) /* [ %r2*8 + K] */ \
152 V(MI) /* [ K] */ 153 V(MI) /* [ K] */
153 154
154 } // namespace compiler 155 } // namespace compiler
155 } // namespace internal 156 } // namespace internal
156 } // namespace v8 157 } // namespace v8
157 158
158 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 159 #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