| OLD | NEW |
| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 V(PPC_Div32) \ | 50 V(PPC_Div32) \ |
| 51 V(PPC_Div64) \ | 51 V(PPC_Div64) \ |
| 52 V(PPC_DivU32) \ | 52 V(PPC_DivU32) \ |
| 53 V(PPC_DivU64) \ | 53 V(PPC_DivU64) \ |
| 54 V(PPC_DivDouble) \ | 54 V(PPC_DivDouble) \ |
| 55 V(PPC_Mod32) \ | 55 V(PPC_Mod32) \ |
| 56 V(PPC_Mod64) \ | 56 V(PPC_Mod64) \ |
| 57 V(PPC_ModU32) \ | 57 V(PPC_ModU32) \ |
| 58 V(PPC_ModU64) \ | 58 V(PPC_ModU64) \ |
| 59 V(PPC_ModDouble) \ | 59 V(PPC_ModDouble) \ |
| 60 V(PPC_LogDouble) \ | |
| 61 V(PPC_Neg) \ | 60 V(PPC_Neg) \ |
| 62 V(PPC_NegDouble) \ | 61 V(PPC_NegDouble) \ |
| 63 V(PPC_SqrtDouble) \ | 62 V(PPC_SqrtDouble) \ |
| 64 V(PPC_FloorDouble) \ | 63 V(PPC_FloorDouble) \ |
| 65 V(PPC_CeilDouble) \ | 64 V(PPC_CeilDouble) \ |
| 66 V(PPC_TruncateDouble) \ | 65 V(PPC_TruncateDouble) \ |
| 67 V(PPC_RoundDouble) \ | 66 V(PPC_RoundDouble) \ |
| 68 V(PPC_MaxDouble) \ | 67 V(PPC_MaxDouble) \ |
| 69 V(PPC_MinDouble) \ | 68 V(PPC_MinDouble) \ |
| 70 V(PPC_AbsDouble) \ | 69 V(PPC_AbsDouble) \ |
| (...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 139 // MRR = [register + register] | 138 // MRR = [register + register] |
| 140 #define TARGET_ADDRESSING_MODE_LIST(V) \ | 139 #define TARGET_ADDRESSING_MODE_LIST(V) \ |
| 141 V(MRI) /* [%r0 + K] */ \ | 140 V(MRI) /* [%r0 + K] */ \ |
| 142 V(MRR) /* [%r0 + %r1] */ | 141 V(MRR) /* [%r0 + %r1] */ |
| 143 | 142 |
| 144 } // namespace compiler | 143 } // namespace compiler |
| 145 } // namespace internal | 144 } // namespace internal |
| 146 } // namespace v8 | 145 } // namespace v8 |
| 147 | 146 |
| 148 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ | 147 #endif // V8_COMPILER_PPC_INSTRUCTION_CODES_PPC_H_ |
| OLD | NEW |