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_ARM64_INSTRUCTION_CODES_ARM64_H_ | 5 #ifndef V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
6 #define V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ | 6 #define V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
7 | 7 |
8 namespace v8 { | 8 namespace v8 { |
9 namespace internal { | 9 namespace internal { |
10 namespace compiler { | 10 namespace compiler { |
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
76 V(Arm64TestAndBranch) \ | 76 V(Arm64TestAndBranch) \ |
77 V(Arm64CompareAndBranch32) \ | 77 V(Arm64CompareAndBranch32) \ |
78 V(Arm64Claim) \ | 78 V(Arm64Claim) \ |
79 V(Arm64Poke) \ | 79 V(Arm64Poke) \ |
80 V(Arm64PokePair) \ | 80 V(Arm64PokePair) \ |
81 V(Arm64Float32Cmp) \ | 81 V(Arm64Float32Cmp) \ |
82 V(Arm64Float32Add) \ | 82 V(Arm64Float32Add) \ |
83 V(Arm64Float32Sub) \ | 83 V(Arm64Float32Sub) \ |
84 V(Arm64Float32Mul) \ | 84 V(Arm64Float32Mul) \ |
85 V(Arm64Float32Div) \ | 85 V(Arm64Float32Div) \ |
86 V(Arm64Float32Max) \ | 86 V(Arm64Float32TernaryMax) \ |
Benedikt Meurer
2015/10/27 19:02:59
Nit: I'd prefer to keep the FloatXX(Min|Max) names
jbramley
2015/10/28 09:42:10
Acknowledged.
| |
87 V(Arm64Float32Min) \ | 87 V(Arm64Float32TernaryMin) \ |
88 V(Arm64Float32Abs) \ | 88 V(Arm64Float32Abs) \ |
89 V(Arm64Float32Sqrt) \ | 89 V(Arm64Float32Sqrt) \ |
90 V(Arm64Float64Cmp) \ | 90 V(Arm64Float64Cmp) \ |
91 V(Arm64Float64Add) \ | 91 V(Arm64Float64Add) \ |
92 V(Arm64Float64Sub) \ | 92 V(Arm64Float64Sub) \ |
93 V(Arm64Float64Mul) \ | 93 V(Arm64Float64Mul) \ |
94 V(Arm64Float64Div) \ | 94 V(Arm64Float64Div) \ |
95 V(Arm64Float64Mod) \ | 95 V(Arm64Float64Mod) \ |
96 V(Arm64Float64Max) \ | 96 V(Arm64Float64TernaryMax) \ |
97 V(Arm64Float64Min) \ | 97 V(Arm64Float64TernaryMin) \ |
98 V(Arm64Float64Abs) \ | 98 V(Arm64Float64Abs) \ |
99 V(Arm64Float64Neg) \ | 99 V(Arm64Float64Neg) \ |
100 V(Arm64Float64Sqrt) \ | 100 V(Arm64Float64Sqrt) \ |
101 V(Arm64Float64RoundDown) \ | 101 V(Arm64Float64RoundDown) \ |
102 V(Arm64Float64RoundTiesAway) \ | 102 V(Arm64Float64RoundTiesAway) \ |
103 V(Arm64Float64RoundTruncate) \ | 103 V(Arm64Float64RoundTruncate) \ |
104 V(Arm64Float64RoundUp) \ | 104 V(Arm64Float64RoundUp) \ |
105 V(Arm64Float32ToFloat64) \ | 105 V(Arm64Float32ToFloat64) \ |
106 V(Arm64Float64ToFloat32) \ | 106 V(Arm64Float64ToFloat32) \ |
107 V(Arm64Float64ToInt32) \ | 107 V(Arm64Float64ToInt32) \ |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
154 V(Operand2_R_UXTB) /* %r0 UXTB (unsigned extend byte) */ \ | 154 V(Operand2_R_UXTB) /* %r0 UXTB (unsigned extend byte) */ \ |
155 V(Operand2_R_UXTH) /* %r0 UXTH (unsigned extend halfword) */ \ | 155 V(Operand2_R_UXTH) /* %r0 UXTH (unsigned extend halfword) */ \ |
156 V(Operand2_R_SXTB) /* %r0 SXTB (signed extend byte) */ \ | 156 V(Operand2_R_SXTB) /* %r0 SXTB (signed extend byte) */ \ |
157 V(Operand2_R_SXTH) /* %r0 SXTH (signed extend halfword) */ | 157 V(Operand2_R_SXTH) /* %r0 SXTH (signed extend halfword) */ |
158 | 158 |
159 } // namespace compiler | 159 } // namespace compiler |
160 } // namespace internal | 160 } // namespace internal |
161 } // namespace v8 | 161 } // namespace v8 |
162 | 162 |
163 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ | 163 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
OLD | NEW |