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

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

Issue 2252863003: [turbofan] Add Float32(Max|Min) machine operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Type is number now. Created 4 years, 4 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 40 matching lines...) Expand 10 before | Expand all | Expand 10 after
51 V(SSEFloat32Abs) \ 51 V(SSEFloat32Abs) \
52 V(SSEFloat32Neg) \ 52 V(SSEFloat32Neg) \
53 V(SSEFloat32Sqrt) \ 53 V(SSEFloat32Sqrt) \
54 V(SSEFloat32Round) \ 54 V(SSEFloat32Round) \
55 V(SSEFloat64Cmp) \ 55 V(SSEFloat64Cmp) \
56 V(SSEFloat64Add) \ 56 V(SSEFloat64Add) \
57 V(SSEFloat64Sub) \ 57 V(SSEFloat64Sub) \
58 V(SSEFloat64Mul) \ 58 V(SSEFloat64Mul) \
59 V(SSEFloat64Div) \ 59 V(SSEFloat64Div) \
60 V(SSEFloat64Mod) \ 60 V(SSEFloat64Mod) \
61 V(SSEFloat32Max) \
61 V(SSEFloat64Max) \ 62 V(SSEFloat64Max) \
63 V(SSEFloat32Min) \
62 V(SSEFloat64Min) \ 64 V(SSEFloat64Min) \
63 V(SSEFloat64Abs) \ 65 V(SSEFloat64Abs) \
64 V(SSEFloat64Neg) \ 66 V(SSEFloat64Neg) \
65 V(SSEFloat64Sqrt) \ 67 V(SSEFloat64Sqrt) \
66 V(SSEFloat64Round) \ 68 V(SSEFloat64Round) \
67 V(SSEFloat32ToFloat64) \ 69 V(SSEFloat32ToFloat64) \
68 V(SSEFloat64ToFloat32) \ 70 V(SSEFloat64ToFloat32) \
69 V(SSEFloat32ToInt32) \ 71 V(SSEFloat32ToInt32) \
70 V(SSEFloat32ToUint32) \ 72 V(SSEFloat32ToUint32) \
71 V(SSEFloat64ToInt32) \ 73 V(SSEFloat64ToInt32) \
(...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after
144 V(M2I) /* [ %r2*2 + K] */ \ 146 V(M2I) /* [ %r2*2 + K] */ \
145 V(M4I) /* [ %r2*4 + K] */ \ 147 V(M4I) /* [ %r2*4 + K] */ \
146 V(M8I) /* [ %r2*8 + K] */ \ 148 V(M8I) /* [ %r2*8 + K] */ \
147 V(MI) /* [ K] */ 149 V(MI) /* [ K] */
148 150
149 } // namespace compiler 151 } // namespace compiler
150 } // namespace internal 152 } // namespace internal
151 } // namespace v8 153 } // namespace v8
152 154
153 #endif // V8_COMPILER_IA32_INSTRUCTION_CODES_IA32_H_ 155 #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