| 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 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 77 V(Arm64Poke) \ | 77 V(Arm64Poke) \ |
| 78 V(Arm64PokePairZero) \ | 78 V(Arm64PokePairZero) \ |
| 79 V(Arm64PokePair) \ | 79 V(Arm64PokePair) \ |
| 80 V(Arm64Float64Cmp) \ | 80 V(Arm64Float64Cmp) \ |
| 81 V(Arm64Float64Add) \ | 81 V(Arm64Float64Add) \ |
| 82 V(Arm64Float64Sub) \ | 82 V(Arm64Float64Sub) \ |
| 83 V(Arm64Float64Mul) \ | 83 V(Arm64Float64Mul) \ |
| 84 V(Arm64Float64Div) \ | 84 V(Arm64Float64Div) \ |
| 85 V(Arm64Float64Mod) \ | 85 V(Arm64Float64Mod) \ |
| 86 V(Arm64Float64Sqrt) \ | 86 V(Arm64Float64Sqrt) \ |
| 87 V(Arm64Float64Floor) \ | 87 V(Arm64Float64RoundDown) \ |
| 88 V(Arm64Float64Ceil) \ | 88 V(Arm64Float64RoundTiesAway) \ |
| 89 V(Arm64Float64RoundTruncate) \ | 89 V(Arm64Float64RoundTruncate) \ |
| 90 V(Arm64Float64RoundTiesAway) \ | 90 V(Arm64Float64RoundUp) \ |
| 91 V(Arm64Float32ToFloat64) \ | 91 V(Arm64Float32ToFloat64) \ |
| 92 V(Arm64Float64ToFloat32) \ | 92 V(Arm64Float64ToFloat32) \ |
| 93 V(Arm64Float64ToInt32) \ | 93 V(Arm64Float64ToInt32) \ |
| 94 V(Arm64Float64ToUint32) \ | 94 V(Arm64Float64ToUint32) \ |
| 95 V(Arm64Int32ToFloat64) \ | 95 V(Arm64Int32ToFloat64) \ |
| 96 V(Arm64Uint32ToFloat64) \ | 96 V(Arm64Uint32ToFloat64) \ |
| 97 V(Arm64Float64ExtractLowWord32) \ | 97 V(Arm64Float64ExtractLowWord32) \ |
| 98 V(Arm64Float64ExtractHighWord32) \ | 98 V(Arm64Float64ExtractHighWord32) \ |
| 99 V(Arm64Float64InsertLowWord32) \ | 99 V(Arm64Float64InsertLowWord32) \ |
| 100 V(Arm64Float64InsertHighWord32) \ | 100 V(Arm64Float64InsertHighWord32) \ |
| (...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 134 V(Operand2_R_LSL_I) /* %r0 LSL K */ \ | 134 V(Operand2_R_LSL_I) /* %r0 LSL K */ \ |
| 135 V(Operand2_R_LSR_I) /* %r0 LSR K */ \ | 135 V(Operand2_R_LSR_I) /* %r0 LSR K */ \ |
| 136 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ | 136 V(Operand2_R_ASR_I) /* %r0 ASR K */ \ |
| 137 V(Operand2_R_ROR_I) /* %r0 ROR K */ | 137 V(Operand2_R_ROR_I) /* %r0 ROR K */ |
| 138 | 138 |
| 139 } // namespace internal | 139 } // namespace internal |
| 140 } // namespace compiler | 140 } // namespace compiler |
| 141 } // namespace v8 | 141 } // namespace v8 |
| 142 | 142 |
| 143 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ | 143 #endif // V8_COMPILER_ARM64_INSTRUCTION_CODES_ARM64_H_ |
| OLD | NEW |