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

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

Issue 1916143002: S390X: [turbofan] Word32 loads should be unsigned. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: remove previous patchset Created 4 years, 7 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 108 matching lines...) Expand 10 before | Expand all | Expand 10 after
119 V(S390_DoubleConstruct) \ 119 V(S390_DoubleConstruct) \
120 V(S390_BitcastInt32ToFloat32) \ 120 V(S390_BitcastInt32ToFloat32) \
121 V(S390_BitcastFloat32ToInt32) \ 121 V(S390_BitcastFloat32ToInt32) \
122 V(S390_BitcastInt64ToDouble) \ 122 V(S390_BitcastInt64ToDouble) \
123 V(S390_BitcastDoubleToInt64) \ 123 V(S390_BitcastDoubleToInt64) \
124 V(S390_LoadWordS8) \ 124 V(S390_LoadWordS8) \
125 V(S390_LoadWordU8) \ 125 V(S390_LoadWordU8) \
126 V(S390_LoadWordS16) \ 126 V(S390_LoadWordS16) \
127 V(S390_LoadWordU16) \ 127 V(S390_LoadWordU16) \
128 V(S390_LoadWordS32) \ 128 V(S390_LoadWordS32) \
129 V(S390_LoadWordU32) \
129 V(S390_LoadWord64) \ 130 V(S390_LoadWord64) \
130 V(S390_LoadFloat32) \ 131 V(S390_LoadFloat32) \
131 V(S390_LoadDouble) \ 132 V(S390_LoadDouble) \
132 V(S390_StoreWord8) \ 133 V(S390_StoreWord8) \
133 V(S390_StoreWord16) \ 134 V(S390_StoreWord16) \
134 V(S390_StoreWord32) \ 135 V(S390_StoreWord32) \
135 V(S390_StoreWord64) \ 136 V(S390_StoreWord64) \
136 V(S390_StoreFloat32) \ 137 V(S390_StoreFloat32) \
137 V(S390_StoreDouble) 138 V(S390_StoreDouble)
138 139
(...skipping 12 matching lines...) Expand all
151 // MRR = [register + register] 152 // MRR = [register + register]
152 #define TARGET_ADDRESSING_MODE_LIST(V) \ 153 #define TARGET_ADDRESSING_MODE_LIST(V) \
153 V(MRI) /* [%r0 + K] */ \ 154 V(MRI) /* [%r0 + K] */ \
154 V(MRR) /* [%r0 + %r1] */ 155 V(MRR) /* [%r0 + %r1] */
155 156
156 } // namespace compiler 157 } // namespace compiler
157 } // namespace internal 158 } // namespace internal
158 } // namespace v8 159 } // namespace v8
159 160
160 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ 161 #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