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

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

Issue 2220313002: S390: Decouple Add/Sub/Neg to 32/64 Bit Op (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Neg32 to use lcr 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 17 matching lines...) Expand all
28 V(S390_ShiftRightArith64) \ 28 V(S390_ShiftRightArith64) \
29 V(S390_ShiftRightArithPair) \ 29 V(S390_ShiftRightArithPair) \
30 V(S390_RotRight32) \ 30 V(S390_RotRight32) \
31 V(S390_RotRight64) \ 31 V(S390_RotRight64) \
32 V(S390_Not32) \ 32 V(S390_Not32) \
33 V(S390_Not64) \ 33 V(S390_Not64) \
34 V(S390_RotLeftAndMask32) \ 34 V(S390_RotLeftAndMask32) \
35 V(S390_RotLeftAndClear64) \ 35 V(S390_RotLeftAndClear64) \
36 V(S390_RotLeftAndClearLeft64) \ 36 V(S390_RotLeftAndClearLeft64) \
37 V(S390_RotLeftAndClearRight64) \ 37 V(S390_RotLeftAndClearRight64) \
38 V(S390_Add) \ 38 V(S390_Add32) \
39 V(S390_AddWithOverflow32) \ 39 V(S390_Add64) \
40 V(S390_AddPair) \ 40 V(S390_AddPair) \
41 V(S390_AddFloat) \ 41 V(S390_AddFloat) \
42 V(S390_AddDouble) \ 42 V(S390_AddDouble) \
43 V(S390_Sub) \ 43 V(S390_Sub32) \
44 V(S390_SubWithOverflow32) \ 44 V(S390_Sub64) \
45 V(S390_SubFloat) \ 45 V(S390_SubFloat) \
46 V(S390_SubDouble) \ 46 V(S390_SubDouble) \
47 V(S390_SubPair) \ 47 V(S390_SubPair) \
48 V(S390_MulPair) \ 48 V(S390_MulPair) \
49 V(S390_Mul32) \ 49 V(S390_Mul32) \
50 V(S390_Mul32WithHigh32) \ 50 V(S390_Mul32WithHigh32) \
51 V(S390_Mul64) \ 51 V(S390_Mul64) \
52 V(S390_MulHigh32) \ 52 V(S390_MulHigh32) \
53 V(S390_MulHighU32) \ 53 V(S390_MulHighU32) \
54 V(S390_MulFloat) \ 54 V(S390_MulFloat) \
55 V(S390_MulDouble) \ 55 V(S390_MulDouble) \
56 V(S390_Div32) \ 56 V(S390_Div32) \
57 V(S390_Div64) \ 57 V(S390_Div64) \
58 V(S390_DivU32) \ 58 V(S390_DivU32) \
59 V(S390_DivU64) \ 59 V(S390_DivU64) \
60 V(S390_DivFloat) \ 60 V(S390_DivFloat) \
61 V(S390_DivDouble) \ 61 V(S390_DivDouble) \
62 V(S390_Mod32) \ 62 V(S390_Mod32) \
63 V(S390_Mod64) \ 63 V(S390_Mod64) \
64 V(S390_ModU32) \ 64 V(S390_ModU32) \
65 V(S390_ModU64) \ 65 V(S390_ModU64) \
66 V(S390_ModDouble) \ 66 V(S390_ModDouble) \
67 V(S390_Neg) \ 67 V(S390_Neg32) \
68 V(S390_Neg64) \
68 V(S390_NegDouble) \ 69 V(S390_NegDouble) \
69 V(S390_SqrtFloat) \ 70 V(S390_SqrtFloat) \
70 V(S390_FloorFloat) \ 71 V(S390_FloorFloat) \
71 V(S390_CeilFloat) \ 72 V(S390_CeilFloat) \
72 V(S390_TruncateFloat) \ 73 V(S390_TruncateFloat) \
73 V(S390_AbsFloat) \ 74 V(S390_AbsFloat) \
74 V(S390_SqrtDouble) \ 75 V(S390_SqrtDouble) \
75 V(S390_FloorDouble) \ 76 V(S390_FloorDouble) \
76 V(S390_CeilDouble) \ 77 V(S390_CeilDouble) \
77 V(S390_TruncateDouble) \ 78 V(S390_TruncateDouble) \
(...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after
165 // MRR = [register + register] 166 // MRR = [register + register]
166 #define TARGET_ADDRESSING_MODE_LIST(V) \ 167 #define TARGET_ADDRESSING_MODE_LIST(V) \
167 V(MRI) /* [%r0 + K] */ \ 168 V(MRI) /* [%r0 + K] */ \
168 V(MRR) /* [%r0 + %r1] */ 169 V(MRR) /* [%r0 + %r1] */
169 170
170 } // namespace compiler 171 } // namespace compiler
171 } // namespace internal 172 } // namespace internal
172 } // namespace v8 173 } // namespace v8
173 174
174 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ 175 #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