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

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

Issue 1803113002: PPC: [wasm] Int64Lowering of Int64Add. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 9 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
« no previous file with comments | « src/compiler/ppc/code-generator-ppc.cc ('k') | src/compiler/ppc/instruction-scheduler-ppc.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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_PPC_INSTRUCTION_CODES_PPC_H_ 5 #ifndef V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_
6 #define V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ 6 #define V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_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(PPC_ShiftRightAlgPair) \ 28 V(PPC_ShiftRightAlgPair) \
29 V(PPC_RotRight32) \ 29 V(PPC_RotRight32) \
30 V(PPC_RotRight64) \ 30 V(PPC_RotRight64) \
31 V(PPC_Not) \ 31 V(PPC_Not) \
32 V(PPC_RotLeftAndMask32) \ 32 V(PPC_RotLeftAndMask32) \
33 V(PPC_RotLeftAndClear64) \ 33 V(PPC_RotLeftAndClear64) \
34 V(PPC_RotLeftAndClearLeft64) \ 34 V(PPC_RotLeftAndClearLeft64) \
35 V(PPC_RotLeftAndClearRight64) \ 35 V(PPC_RotLeftAndClearRight64) \
36 V(PPC_Add) \ 36 V(PPC_Add) \
37 V(PPC_AddWithOverflow32) \ 37 V(PPC_AddWithOverflow32) \
38 V(PPC_AddPair) \
38 V(PPC_AddDouble) \ 39 V(PPC_AddDouble) \
39 V(PPC_Sub) \ 40 V(PPC_Sub) \
40 V(PPC_SubWithOverflow32) \ 41 V(PPC_SubWithOverflow32) \
41 V(PPC_SubDouble) \ 42 V(PPC_SubDouble) \
42 V(PPC_Mul32) \ 43 V(PPC_Mul32) \
43 V(PPC_Mul64) \ 44 V(PPC_Mul64) \
44 V(PPC_MulHigh32) \ 45 V(PPC_MulHigh32) \
45 V(PPC_MulHighU32) \ 46 V(PPC_MulHighU32) \
46 V(PPC_MulDouble) \ 47 V(PPC_MulDouble) \
47 V(PPC_Div32) \ 48 V(PPC_Div32) \
(...skipping 86 matching lines...) Expand 10 before | Expand all | Expand 10 after
134 // MRR = [register + register] 135 // MRR = [register + register]
135 #define TARGET_ADDRESSING_MODE_LIST(V) \ 136 #define TARGET_ADDRESSING_MODE_LIST(V) \
136 V(MRI) /* [%r0 + K] */ \ 137 V(MRI) /* [%r0 + K] */ \
137 V(MRR) /* [%r0 + %r1] */ 138 V(MRR) /* [%r0 + %r1] */
138 139
139 } // namespace compiler 140 } // namespace compiler
140 } // namespace internal 141 } // namespace internal
141 } // namespace v8 142 } // namespace v8
142 143
143 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ 144 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_
OLDNEW
« no previous file with comments | « src/compiler/ppc/code-generator-ppc.cc ('k') | src/compiler/ppc/instruction-scheduler-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698