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

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

Issue 2244373002: s390: Allow larger Operands/Displacements/Offsets in s390 (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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 148 matching lines...) Expand 10 before | Expand all | Expand 10 after
159 // 159 //
160 // We use the following local notation for addressing modes: 160 // We use the following local notation for addressing modes:
161 // 161 //
162 // R = register 162 // R = register
163 // O = register or stack slot 163 // O = register or stack slot
164 // D = double register 164 // D = double register
165 // I = immediate (handle, external, int32) 165 // I = immediate (handle, external, int32)
166 // MRI = [register + immediate] 166 // MRI = [register + immediate]
167 // MRR = [register + register] 167 // MRR = [register + register]
168 #define TARGET_ADDRESSING_MODE_LIST(V) \ 168 #define TARGET_ADDRESSING_MODE_LIST(V) \
169 V(MRI) /* [%r0 + K] */ \ 169 V(MR) /* [%r0 ] */ \
170 V(MRR) /* [%r0 + %r1] */ 170 V(MRI) /* [%r0 + K] */ \
171 V(MRR) /* [%r0 + %r1 ] */ \
172 V(MRRI) /* [%r0 + %r1 + K] */
171 173
172 } // namespace compiler 174 } // namespace compiler
173 } // namespace internal 175 } // namespace internal
174 } // namespace v8 176 } // namespace v8
175 177
176 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ 178 #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-selector-s390.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698