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 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
69 V(Arm64Sxth32) \ | 69 V(Arm64Sxth32) \ |
70 V(Arm64Sxtw) \ | 70 V(Arm64Sxtw) \ |
71 V(Arm64Sbfx32) \ | 71 V(Arm64Sbfx32) \ |
72 V(Arm64Ubfx) \ | 72 V(Arm64Ubfx) \ |
73 V(Arm64Ubfx32) \ | 73 V(Arm64Ubfx32) \ |
74 V(Arm64Ubfiz32) \ | 74 V(Arm64Ubfiz32) \ |
75 V(Arm64Bfi) \ | 75 V(Arm64Bfi) \ |
76 V(Arm64TestAndBranch32) \ | 76 V(Arm64TestAndBranch32) \ |
77 V(Arm64TestAndBranch) \ | 77 V(Arm64TestAndBranch) \ |
78 V(Arm64CompareAndBranch32) \ | 78 V(Arm64CompareAndBranch32) \ |
79 V(Arm64ClaimForCallArguments) \ | 79 V(Arm64ClaimCSP) \ |
80 V(Arm64Poke) \ | 80 V(Arm64ClaimJSSP) \ |
| 81 V(Arm64PokeCSP) \ |
| 82 V(Arm64PokeJSSP) \ |
81 V(Arm64PokePair) \ | 83 V(Arm64PokePair) \ |
82 V(Arm64Float32Cmp) \ | 84 V(Arm64Float32Cmp) \ |
83 V(Arm64Float32Add) \ | 85 V(Arm64Float32Add) \ |
84 V(Arm64Float32Sub) \ | 86 V(Arm64Float32Sub) \ |
85 V(Arm64Float32Mul) \ | 87 V(Arm64Float32Mul) \ |
86 V(Arm64Float32Div) \ | 88 V(Arm64Float32Div) \ |
87 V(Arm64Float32Max) \ | 89 V(Arm64Float32Max) \ |
88 V(Arm64Float32Min) \ | 90 V(Arm64Float32Min) \ |
89 V(Arm64Float32Abs) \ | 91 V(Arm64Float32Abs) \ |
90 V(Arm64Float32Sqrt) \ | 92 V(Arm64Float32Sqrt) \ |
(...skipping 73 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
164 V(MRR) /* [%r0 + %r1] */ \ | 166 V(MRR) /* [%r0 + %r1] */ \ |
165 V(Operand2_R_LSL_I) /* %r0 LSL K */ \ | 167 V(Operand2_R_LSL_I) /* %r0 LSL K */ \ |
166 V(Operand2_R_LSR_I) /* %r0 LSR K */ \ | 168 V(Operand2_R_LSR_I) /* %r0 LSR K */ \ |
167 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ | 169 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ |
168 V(Operand2_R_ROR_I) /* %r0 ROR K */ \ | 170 V(Operand2_R_ROR_I) /* %r0 ROR K */ \ |
169 V(Operand2_R_UXTB) /* %r0 UXTB (unsigned extend byte) */ \ | 171 V(Operand2_R_UXTB) /* %r0 UXTB (unsigned extend byte) */ \ |
170 V(Operand2_R_UXTH) /* %r0 UXTH (unsigned extend halfword) */ \ | 172 V(Operand2_R_UXTH) /* %r0 UXTH (unsigned extend halfword) */ \ |
171 V(Operand2_R_SXTB) /* %r0 SXTB (signed extend byte) */ \ | 173 V(Operand2_R_SXTB) /* %r0 SXTB (signed extend byte) */ \ |
172 V(Operand2_R_SXTH) /* %r0 SXTH (signed extend halfword) */ | 174 V(Operand2_R_SXTH) /* %r0 SXTH (signed extend halfword) */ |
173 | 175 |
| 176 enum ResetJSSPAfterCall { kNoResetJSSP, kResetJSSP }; |
| 177 |
174 } // namespace compiler | 178 } // namespace compiler |
175 } // namespace internal | 179 } // namespace internal |
176 } // namespace v8 | 180 } // namespace v8 |
177 | 181 |
178 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ | 182 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
OLD | NEW |