| 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 60 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 71 V(Arm64Poke) \ | 71 V(Arm64Poke) \ |
| 72 V(Arm64PokePairZero) \ | 72 V(Arm64PokePairZero) \ |
| 73 V(Arm64PokePair) \ | 73 V(Arm64PokePair) \ |
| 74 V(Arm64Float64Cmp) \ | 74 V(Arm64Float64Cmp) \ |
| 75 V(Arm64Float64Add) \ | 75 V(Arm64Float64Add) \ |
| 76 V(Arm64Float64Sub) \ | 76 V(Arm64Float64Sub) \ |
| 77 V(Arm64Float64Mul) \ | 77 V(Arm64Float64Mul) \ |
| 78 V(Arm64Float64Div) \ | 78 V(Arm64Float64Div) \ |
| 79 V(Arm64Float64Mod) \ | 79 V(Arm64Float64Mod) \ |
| 80 V(Arm64Float64Sqrt) \ | 80 V(Arm64Float64Sqrt) \ |
| 81 V(Arm64Float64Floor) \ |
| 82 V(Arm64Float64Ceil) \ |
| 83 V(Arm64Float64RoundTruncate) \ |
| 84 V(Arm64Float64RoundTiesAway) \ |
| 81 V(Arm64Float32ToFloat64) \ | 85 V(Arm64Float32ToFloat64) \ |
| 82 V(Arm64Float64ToFloat32) \ | 86 V(Arm64Float64ToFloat32) \ |
| 83 V(Arm64Float64ToInt32) \ | 87 V(Arm64Float64ToInt32) \ |
| 84 V(Arm64Float64ToUint32) \ | 88 V(Arm64Float64ToUint32) \ |
| 85 V(Arm64Int32ToFloat64) \ | 89 V(Arm64Int32ToFloat64) \ |
| 86 V(Arm64Uint32ToFloat64) \ | 90 V(Arm64Uint32ToFloat64) \ |
| 87 V(Arm64LdrS) \ | 91 V(Arm64LdrS) \ |
| 88 V(Arm64StrS) \ | 92 V(Arm64StrS) \ |
| 89 V(Arm64LdrD) \ | 93 V(Arm64LdrD) \ |
| 90 V(Arm64StrD) \ | 94 V(Arm64StrD) \ |
| (...skipping 29 matching lines...) Expand all Loading... |
| 120 V(Operand2_R_LSL_I) /* %r0 LSL K */ \ | 124 V(Operand2_R_LSL_I) /* %r0 LSL K */ \ |
| 121 V(Operand2_R_LSR_I) /* %r0 LSR K */ \ | 125 V(Operand2_R_LSR_I) /* %r0 LSR K */ \ |
| 122 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ | 126 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ |
| 123 V(Operand2_R_ROR_I) /* %r0 ROR K */ | 127 V(Operand2_R_ROR_I) /* %r0 ROR K */ |
| 124 | 128 |
| 125 } // namespace internal | 129 } // namespace internal |
| 126 } // namespace compiler | 130 } // namespace compiler |
| 127 } // namespace v8 | 131 } // namespace v8 |
| 128 | 132 |
| 129 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ | 133 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
| OLD | NEW |