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

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

Issue 1849543003: S390: [wasm] Int64Lowering of Int64Mul on ia32 and arm. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Re-implement using msgr Created 4 years, 8 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 25 matching lines...) Expand all
36 V(S390_Add) \ 36 V(S390_Add) \
37 V(S390_AddWithOverflow32) \ 37 V(S390_AddWithOverflow32) \
38 V(S390_AddPair) \ 38 V(S390_AddPair) \
39 V(S390_AddFloat) \ 39 V(S390_AddFloat) \
40 V(S390_AddDouble) \ 40 V(S390_AddDouble) \
41 V(S390_Sub) \ 41 V(S390_Sub) \
42 V(S390_SubWithOverflow32) \ 42 V(S390_SubWithOverflow32) \
43 V(S390_SubFloat) \ 43 V(S390_SubFloat) \
44 V(S390_SubDouble) \ 44 V(S390_SubDouble) \
45 V(S390_SubPair) \ 45 V(S390_SubPair) \
46 V(S390_MulPair) \
46 V(S390_Mul32) \ 47 V(S390_Mul32) \
47 V(S390_Mul64) \ 48 V(S390_Mul64) \
48 V(S390_MulHigh32) \ 49 V(S390_MulHigh32) \
49 V(S390_MulHighU32) \ 50 V(S390_MulHighU32) \
50 V(S390_MulFloat) \ 51 V(S390_MulFloat) \
51 V(S390_MulDouble) \ 52 V(S390_MulDouble) \
52 V(S390_Div32) \ 53 V(S390_Div32) \
53 V(S390_Div64) \ 54 V(S390_Div64) \
54 V(S390_DivU32) \ 55 V(S390_DivU32) \
55 V(S390_DivU64) \ 56 V(S390_DivU64) \
(...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 // MRR = [register + register] 151 // MRR = [register + register]
151 #define TARGET_ADDRESSING_MODE_LIST(V) \ 152 #define TARGET_ADDRESSING_MODE_LIST(V) \
152 V(MRI) /* [%r0 + K] */ \ 153 V(MRI) /* [%r0 + K] */ \
153 V(MRR) /* [%r0 + %r1] */ 154 V(MRR) /* [%r0 + %r1] */
154 155
155 } // namespace compiler 156 } // namespace compiler
156 } // namespace internal 157 } // namespace internal
157 } // namespace v8 158 } // namespace v8
158 159
159 #endif // V8_COMPILER_S390_INSTRUCTION_CODES_S390_H_ 160 #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