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

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

Issue 2263383002: PPC/s390: [turbofan] Add Float32(Max|Min) machine operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: fixed formating warning 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 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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_S390_INSTRUCTION_CODES_S390_H_ 5 #ifndef V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_
6 #define V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ 6 #define V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_
7 7
8 namespace v8 { 8 namespace v8 {
9 namespace internal { 9 namespace internal {
10 namespace compiler { 10 namespace compiler {
(...skipping 60 matching lines...) Expand 10 before | Expand all | Expand 10 after
71 V(S390_SqrtFloat) \ 71 V(S390_SqrtFloat) \
72 V(S390_FloorFloat) \ 72 V(S390_FloorFloat) \
73 V(S390_CeilFloat) \ 73 V(S390_CeilFloat) \
74 V(S390_TruncateFloat) \ 74 V(S390_TruncateFloat) \
75 V(S390_AbsFloat) \ 75 V(S390_AbsFloat) \
76 V(S390_SqrtDouble) \ 76 V(S390_SqrtDouble) \
77 V(S390_FloorDouble) \ 77 V(S390_FloorDouble) \
78 V(S390_CeilDouble) \ 78 V(S390_CeilDouble) \
79 V(S390_TruncateDouble) \ 79 V(S390_TruncateDouble) \
80 V(S390_RoundDouble) \ 80 V(S390_RoundDouble) \
81 V(S390_MaxFloat) \
81 V(S390_MaxDouble) \ 82 V(S390_MaxDouble) \
83 V(S390_MinFloat) \
82 V(S390_MinDouble) \ 84 V(S390_MinDouble) \
83 V(S390_AbsDouble) \ 85 V(S390_AbsDouble) \
84 V(S390_Cntlz32) \ 86 V(S390_Cntlz32) \
85 V(S390_Cntlz64) \ 87 V(S390_Cntlz64) \
86 V(S390_Popcnt32) \ 88 V(S390_Popcnt32) \
87 V(S390_Popcnt64) \ 89 V(S390_Popcnt64) \
88 V(S390_Cmp32) \ 90 V(S390_Cmp32) \
89 V(S390_Cmp64) \ 91 V(S390_Cmp64) \
90 V(S390_CmpFloat) \ 92 V(S390_CmpFloat) \
91 V(S390_CmpDouble) \ 93 V(S390_CmpDouble) \
(...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after
169 V(MR) /* [%r0 ] */ \ 171 V(MR) /* [%r0 ] */ \
170 V(MRI) /* [%r0 + K] */ \ 172 V(MRI) /* [%r0 + K] */ \
171 V(MRR) /* [%r0 + %r1 ] */ \ 173 V(MRR) /* [%r0 + %r1 ] */ \
172 V(MRRI) /* [%r0 + %r1 + K] */ 174 V(MRRI) /* [%r0 + %r1 + K] */
173 175
174 } // namespace compiler 176 } // namespace compiler
175 } // namespace internal 177 } // namespace internal
176 } // namespace v8 178 } // namespace v8
177 179
178 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ 180 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_
OLDNEW
« no previous file with comments | « src/compiler/s390/code-generator-s390.cc ('k') | src/compiler/s390/instruction-scheduler-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698