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

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

Issue 1072963002: PPC: [turbofan] Add new Float32Abs and Float64Abs operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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
« no previous file with comments | « src/compiler/ppc/code-generator-ppc.cc ('k') | src/compiler/ppc/instruction-selector-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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 V(PPC_ModDouble) \ 53 V(PPC_ModDouble) \
54 V(PPC_Neg) \ 54 V(PPC_Neg) \
55 V(PPC_NegDouble) \ 55 V(PPC_NegDouble) \
56 V(PPC_SqrtDouble) \ 56 V(PPC_SqrtDouble) \
57 V(PPC_FloorDouble) \ 57 V(PPC_FloorDouble) \
58 V(PPC_CeilDouble) \ 58 V(PPC_CeilDouble) \
59 V(PPC_TruncateDouble) \ 59 V(PPC_TruncateDouble) \
60 V(PPC_RoundDouble) \ 60 V(PPC_RoundDouble) \
61 V(PPC_MaxDouble) \ 61 V(PPC_MaxDouble) \
62 V(PPC_MinDouble) \ 62 V(PPC_MinDouble) \
63 V(PPC_AbsDouble) \
63 V(PPC_Cntlz32) \ 64 V(PPC_Cntlz32) \
64 V(PPC_Cmp32) \ 65 V(PPC_Cmp32) \
65 V(PPC_Cmp64) \ 66 V(PPC_Cmp64) \
66 V(PPC_CmpDouble) \ 67 V(PPC_CmpDouble) \
67 V(PPC_Tst32) \ 68 V(PPC_Tst32) \
68 V(PPC_Tst64) \ 69 V(PPC_Tst64) \
69 V(PPC_Push) \ 70 V(PPC_Push) \
70 V(PPC_ExtendSignWord8) \ 71 V(PPC_ExtendSignWord8) \
71 V(PPC_ExtendSignWord16) \ 72 V(PPC_ExtendSignWord16) \
72 V(PPC_ExtendSignWord32) \ 73 V(PPC_ExtendSignWord32) \
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 // MRR = [register + register] 116 // MRR = [register + register]
116 #define TARGET_ADDRESSING_MODE_LIST(V) \ 117 #define TARGET_ADDRESSING_MODE_LIST(V) \
117 V(MRI) /* [%r0 + K] */ \ 118 V(MRI) /* [%r0 + K] */ \
118 V(MRR) /* [%r0 + %r1] */ 119 V(MRR) /* [%r0 + %r1] */
119 120
120 } // namespace compiler 121 } // namespace compiler
121 } // namespace internal 122 } // namespace internal
122 } // namespace v8 123 } // namespace v8
123 124
124 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ 125 #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-selector-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698