| 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 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 70 V(Arm64Sxth32) \ | 70 V(Arm64Sxth32) \ |
| 71 V(Arm64Sxtw) \ | 71 V(Arm64Sxtw) \ |
| 72 V(Arm64Ubfx) \ | 72 V(Arm64Ubfx) \ |
| 73 V(Arm64Ubfx32) \ | 73 V(Arm64Ubfx32) \ |
| 74 V(Arm64Bfi) \ | 74 V(Arm64Bfi) \ |
| 75 V(Arm64TestAndBranch32) \ | 75 V(Arm64TestAndBranch32) \ |
| 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(Arm64PokePairZero) \ | |
| 81 V(Arm64PokePair) \ | 80 V(Arm64PokePair) \ |
| 82 V(Arm64Float64Cmp) \ | 81 V(Arm64Float64Cmp) \ |
| 83 V(Arm64Float64Add) \ | 82 V(Arm64Float64Add) \ |
| 84 V(Arm64Float64Sub) \ | 83 V(Arm64Float64Sub) \ |
| 85 V(Arm64Float64Mul) \ | 84 V(Arm64Float64Mul) \ |
| 86 V(Arm64Float64Div) \ | 85 V(Arm64Float64Div) \ |
| 87 V(Arm64Float64Mod) \ | 86 V(Arm64Float64Mod) \ |
| 88 V(Arm64Float64Sqrt) \ | 87 V(Arm64Float64Sqrt) \ |
| 89 V(Arm64Float64RoundDown) \ | 88 V(Arm64Float64RoundDown) \ |
| 90 V(Arm64Float64RoundTiesAway) \ | 89 V(Arm64Float64RoundTiesAway) \ |
| (...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ | 140 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ |
| 142 V(Operand2_R_ROR_I) /* %r0 ROR K */ \ | 141 V(Operand2_R_ROR_I) /* %r0 ROR K */ \ |
| 143 V(Operand2_R_UXTB) /* %r0 UXTB (unsigned extend byte) */ \ | 142 V(Operand2_R_UXTB) /* %r0 UXTB (unsigned extend byte) */ \ |
| 144 V(Operand2_R_UXTH) /* %r0 UXTH (unsigned extend halfword) */ | 143 V(Operand2_R_UXTH) /* %r0 UXTH (unsigned extend halfword) */ |
| 145 | 144 |
| 146 } // namespace internal | 145 } // namespace internal |
| 147 } // namespace compiler | 146 } // namespace compiler |
| 148 } // namespace v8 | 147 } // namespace v8 |
| 149 | 148 |
| 150 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ | 149 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
| OLD | NEW |