Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2015 The Android Open Source Project |
| 3 | * |
| 4 | * Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | * you may not use this file except in compliance with the License. |
| 6 | * You may obtain a copy of the License at |
| 7 | * |
| 8 | * http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | * |
| 10 | * Unless required by applicable law or agreed to in writing, software |
| 11 | * distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | * See the License for the specific language governing permissions and |
| 14 | * limitations under the License. |
| 15 | */ |
| 16 | |
| 17 | #ifndef ART_COMPILER_OPTIMIZING_COMMON_ARM64_H_ |
| 18 | #define ART_COMPILER_OPTIMIZING_COMMON_ARM64_H_ |
| 19 | |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 20 | #include "code_generator.h" |
Anton Kirilov | 74234da | 2017-01-13 14:42:47 +0000 | [diff] [blame] | 21 | #include "instruction_simplifier_shared.h" |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 22 | #include "locations.h" |
| 23 | #include "nodes.h" |
| 24 | #include "utils/arm64/assembler_arm64.h" |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 25 | |
Artem Serov | af4e42a | 2016-08-08 15:11:24 +0100 | [diff] [blame] | 26 | // TODO(VIXL): Make VIXL compile with -Wshadow. |
| 27 | #pragma GCC diagnostic push |
| 28 | #pragma GCC diagnostic ignored "-Wshadow" |
| 29 | #include "aarch64/disasm-aarch64.h" |
| 30 | #include "aarch64/macro-assembler-aarch64.h" |
| 31 | #include "aarch64/simulator-aarch64.h" |
| 32 | #pragma GCC diagnostic pop |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 33 | |
Vladimir Marko | 0a51605 | 2019-10-14 13:00:44 +0000 | [diff] [blame] | 34 | namespace art { |
Anton Kirilov | 74234da | 2017-01-13 14:42:47 +0000 | [diff] [blame] | 35 | |
| 36 | using helpers::CanFitInShifterOperand; |
| 37 | using helpers::HasShifterOperand; |
| 38 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 39 | namespace arm64 { |
| 40 | namespace helpers { |
| 41 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 42 | // Convenience helpers to ease conversion to and from VIXL operands. |
| 43 | static_assert((SP == 31) && (WSP == 31) && (XZR == 32) && (WZR == 32), |
| 44 | "Unexpected values for register codes."); |
| 45 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 46 | inline int VIXLRegCodeFromART(int code) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 47 | if (code == SP) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 48 | return vixl::aarch64::kSPRegInternalCode; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 49 | } |
| 50 | if (code == XZR) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 51 | return vixl::aarch64::kZeroRegCode; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 52 | } |
| 53 | return code; |
| 54 | } |
| 55 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 56 | inline int ARTRegCodeFromVIXL(int code) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 57 | if (code == vixl::aarch64::kSPRegInternalCode) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 58 | return SP; |
| 59 | } |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 60 | if (code == vixl::aarch64::kZeroRegCode) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 61 | return XZR; |
| 62 | } |
| 63 | return code; |
| 64 | } |
| 65 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 66 | inline vixl::aarch64::Register XRegisterFrom(Location location) { |
Roland Levillain | 3a448e4 | 2016-04-01 18:37:46 +0100 | [diff] [blame] | 67 | DCHECK(location.IsRegister()) << location; |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 68 | return vixl::aarch64::Register::GetXRegFromCode(VIXLRegCodeFromART(location.reg())); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 69 | } |
| 70 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 71 | inline vixl::aarch64::Register WRegisterFrom(Location location) { |
Roland Levillain | 3a448e4 | 2016-04-01 18:37:46 +0100 | [diff] [blame] | 72 | DCHECK(location.IsRegister()) << location; |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 73 | return vixl::aarch64::Register::GetWRegFromCode(VIXLRegCodeFromART(location.reg())); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 74 | } |
| 75 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 76 | inline vixl::aarch64::Register RegisterFrom(Location location, DataType::Type type) { |
| 77 | DCHECK(type != DataType::Type::kVoid && !DataType::IsFloatingPointType(type)) << type; |
| 78 | return type == DataType::Type::kInt64 ? XRegisterFrom(location) : WRegisterFrom(location); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 79 | } |
| 80 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 81 | inline vixl::aarch64::Register OutputRegister(HInstruction* instr) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 82 | return RegisterFrom(instr->GetLocations()->Out(), instr->GetType()); |
| 83 | } |
| 84 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 85 | inline vixl::aarch64::Register InputRegisterAt(HInstruction* instr, int input_index) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 86 | return RegisterFrom(instr->GetLocations()->InAt(input_index), |
| 87 | instr->InputAt(input_index)->GetType()); |
| 88 | } |
| 89 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 90 | inline vixl::aarch64::VRegister DRegisterFrom(Location location) { |
Roland Levillain | 3a448e4 | 2016-04-01 18:37:46 +0100 | [diff] [blame] | 91 | DCHECK(location.IsFpuRegister()) << location; |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 92 | return vixl::aarch64::VRegister::GetDRegFromCode(location.reg()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 93 | } |
| 94 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 95 | inline vixl::aarch64::VRegister QRegisterFrom(Location location) { |
Artem Serov | d4bccf1 | 2017-04-03 18:47:32 +0100 | [diff] [blame] | 96 | DCHECK(location.IsFpuRegister()) << location; |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 97 | return vixl::aarch64::VRegister::GetQRegFromCode(location.reg()); |
Artem Serov | d4bccf1 | 2017-04-03 18:47:32 +0100 | [diff] [blame] | 98 | } |
| 99 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 100 | inline vixl::aarch64::VRegister VRegisterFrom(Location location) { |
Artem Serov | b31f91f | 2017-04-05 11:31:19 +0100 | [diff] [blame] | 101 | DCHECK(location.IsFpuRegister()) << location; |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 102 | return vixl::aarch64::VRegister::GetVRegFromCode(location.reg()); |
Artem Serov | b31f91f | 2017-04-05 11:31:19 +0100 | [diff] [blame] | 103 | } |
| 104 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 105 | inline vixl::aarch64::VRegister SRegisterFrom(Location location) { |
Roland Levillain | 3a448e4 | 2016-04-01 18:37:46 +0100 | [diff] [blame] | 106 | DCHECK(location.IsFpuRegister()) << location; |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 107 | return vixl::aarch64::VRegister::GetSRegFromCode(location.reg()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 108 | } |
| 109 | |
Roland Levillain | 4f2e088 | 2019-12-01 09:57:10 +0000 | [diff] [blame] | 110 | inline vixl::aarch64::VRegister HRegisterFrom(Location location) { |
Usama Arif | 457e9fa | 2019-11-11 15:29:59 +0000 | [diff] [blame] | 111 | DCHECK(location.IsFpuRegister()) << location; |
Roland Levillain | 4f2e088 | 2019-12-01 09:57:10 +0000 | [diff] [blame] | 112 | return vixl::aarch64::VRegister::GetHRegFromCode(location.reg()); |
Usama Arif | 457e9fa | 2019-11-11 15:29:59 +0000 | [diff] [blame] | 113 | } |
| 114 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 115 | inline vixl::aarch64::VRegister FPRegisterFrom(Location location, DataType::Type type) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 116 | DCHECK(DataType::IsFloatingPointType(type)) << type; |
| 117 | return type == DataType::Type::kFloat64 ? DRegisterFrom(location) : SRegisterFrom(location); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 118 | } |
| 119 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 120 | inline vixl::aarch64::VRegister OutputFPRegister(HInstruction* instr) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 121 | return FPRegisterFrom(instr->GetLocations()->Out(), instr->GetType()); |
| 122 | } |
| 123 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 124 | inline vixl::aarch64::VRegister InputFPRegisterAt(HInstruction* instr, int input_index) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 125 | return FPRegisterFrom(instr->GetLocations()->InAt(input_index), |
| 126 | instr->InputAt(input_index)->GetType()); |
| 127 | } |
| 128 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 129 | inline vixl::aarch64::CPURegister CPURegisterFrom(Location location, DataType::Type type) { |
| 130 | return DataType::IsFloatingPointType(type) |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 131 | ? vixl::aarch64::CPURegister(FPRegisterFrom(location, type)) |
| 132 | : vixl::aarch64::CPURegister(RegisterFrom(location, type)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 133 | } |
| 134 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 135 | inline vixl::aarch64::CPURegister OutputCPURegister(HInstruction* instr) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 136 | return DataType::IsFloatingPointType(instr->GetType()) |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 137 | ? static_cast<vixl::aarch64::CPURegister>(OutputFPRegister(instr)) |
| 138 | : static_cast<vixl::aarch64::CPURegister>(OutputRegister(instr)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 139 | } |
| 140 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 141 | inline vixl::aarch64::CPURegister InputCPURegisterAt(HInstruction* instr, int index) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 142 | return DataType::IsFloatingPointType(instr->InputAt(index)->GetType()) |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 143 | ? static_cast<vixl::aarch64::CPURegister>(InputFPRegisterAt(instr, index)) |
| 144 | : static_cast<vixl::aarch64::CPURegister>(InputRegisterAt(instr, index)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 145 | } |
| 146 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 147 | inline vixl::aarch64::CPURegister InputCPURegisterOrZeroRegAt(HInstruction* instr, |
Alexandre Rames | be919d9 | 2016-08-23 18:33:36 +0100 | [diff] [blame] | 148 | int index) { |
| 149 | HInstruction* input = instr->InputAt(index); |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 150 | DataType::Type input_type = input->GetType(); |
Alexandre Rames | be919d9 | 2016-08-23 18:33:36 +0100 | [diff] [blame] | 151 | if (input->IsConstant() && input->AsConstant()->IsZeroBitPattern()) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 152 | return (DataType::Size(input_type) >= vixl::aarch64::kXRegSizeInBytes) |
Scott Wakeling | 79db997 | 2017-01-19 14:08:42 +0000 | [diff] [blame] | 153 | ? vixl::aarch64::Register(vixl::aarch64::xzr) |
| 154 | : vixl::aarch64::Register(vixl::aarch64::wzr); |
Alexandre Rames | be919d9 | 2016-08-23 18:33:36 +0100 | [diff] [blame] | 155 | } |
| 156 | return InputCPURegisterAt(instr, index); |
| 157 | } |
| 158 | |
Evgeny Astigeevich | f9e9054 | 2018-06-25 13:43:53 +0100 | [diff] [blame] | 159 | inline int64_t Int64FromLocation(Location location) { |
| 160 | return Int64FromConstant(location.GetConstant()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 161 | } |
| 162 | |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 163 | inline vixl::aarch64::Operand OperandFrom(Location location, DataType::Type type) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 164 | if (location.IsRegister()) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 165 | return vixl::aarch64::Operand(RegisterFrom(location, type)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 166 | } else { |
Evgeny Astigeevich | f9e9054 | 2018-06-25 13:43:53 +0100 | [diff] [blame] | 167 | return vixl::aarch64::Operand(Int64FromLocation(location)); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 168 | } |
| 169 | } |
| 170 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 171 | inline vixl::aarch64::Operand InputOperandAt(HInstruction* instr, int input_index) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 172 | return OperandFrom(instr->GetLocations()->InAt(input_index), |
| 173 | instr->InputAt(input_index)->GetType()); |
| 174 | } |
| 175 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 176 | inline vixl::aarch64::MemOperand StackOperandFrom(Location location) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 177 | return vixl::aarch64::MemOperand(vixl::aarch64::sp, location.GetStackIndex()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 178 | } |
| 179 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 180 | inline vixl::aarch64::MemOperand HeapOperand(const vixl::aarch64::Register& base, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 181 | size_t offset = 0) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 182 | // A heap reference must be 32bit, so fit in a W register. |
| 183 | DCHECK(base.IsW()); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 184 | return vixl::aarch64::MemOperand(base.X(), offset); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 185 | } |
| 186 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 187 | inline vixl::aarch64::MemOperand HeapOperand(const vixl::aarch64::Register& base, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 188 | const vixl::aarch64::Register& regoffset, |
| 189 | vixl::aarch64::Shift shift = vixl::aarch64::LSL, |
| 190 | unsigned shift_amount = 0) { |
Alexandre Rames | 82000b0 | 2015-07-07 11:34:16 +0100 | [diff] [blame] | 191 | // A heap reference must be 32bit, so fit in a W register. |
| 192 | DCHECK(base.IsW()); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 193 | return vixl::aarch64::MemOperand(base.X(), regoffset, shift, shift_amount); |
Alexandre Rames | 82000b0 | 2015-07-07 11:34:16 +0100 | [diff] [blame] | 194 | } |
| 195 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 196 | inline vixl::aarch64::MemOperand HeapOperand(const vixl::aarch64::Register& base, |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 197 | Offset offset) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 198 | return HeapOperand(base, offset.SizeValue()); |
| 199 | } |
| 200 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 201 | inline vixl::aarch64::MemOperand HeapOperandFrom(Location location, Offset offset) { |
Vladimir Marko | 0ebe0d8 | 2017-09-21 22:50:39 +0100 | [diff] [blame] | 202 | return HeapOperand(RegisterFrom(location, DataType::Type::kReference), offset); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 203 | } |
| 204 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 205 | inline Location LocationFrom(const vixl::aarch64::Register& reg) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 206 | return Location::RegisterLocation(ARTRegCodeFromVIXL(reg.GetCode())); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 207 | } |
| 208 | |
Evgeny Astigeevich | 7d48dcd | 2019-10-16 12:46:28 +0100 | [diff] [blame] | 209 | inline Location LocationFrom(const vixl::aarch64::VRegister& fpreg) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 210 | return Location::FpuRegisterLocation(fpreg.GetCode()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 211 | } |
| 212 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 213 | inline vixl::aarch64::Operand OperandFromMemOperand( |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 214 | const vixl::aarch64::MemOperand& mem_op) { |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 215 | if (mem_op.IsImmediateOffset()) { |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 216 | return vixl::aarch64::Operand(mem_op.GetOffset()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 217 | } else { |
| 218 | DCHECK(mem_op.IsRegisterOffset()); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 219 | if (mem_op.GetExtend() != vixl::aarch64::NO_EXTEND) { |
| 220 | return vixl::aarch64::Operand(mem_op.GetRegisterOffset(), |
| 221 | mem_op.GetExtend(), |
| 222 | mem_op.GetShiftAmount()); |
| 223 | } else if (mem_op.GetShift() != vixl::aarch64::NO_SHIFT) { |
| 224 | return vixl::aarch64::Operand(mem_op.GetRegisterOffset(), |
| 225 | mem_op.GetShift(), |
| 226 | mem_op.GetShiftAmount()); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 227 | } else { |
| 228 | LOG(FATAL) << "Should not reach here"; |
| 229 | UNREACHABLE(); |
| 230 | } |
| 231 | } |
| 232 | } |
| 233 | |
Petre-Ionut Tudor | 2227fe4 | 2018-04-20 17:12:05 +0100 | [diff] [blame] | 234 | inline bool AddSubCanEncodeAsImmediate(int64_t value) { |
| 235 | // If `value` does not fit but `-value` does, VIXL will automatically use |
| 236 | // the 'opposite' instruction. |
| 237 | return vixl::aarch64::Assembler::IsImmAddSub(value) |
| 238 | || vixl::aarch64::Assembler::IsImmAddSub(-value); |
| 239 | } |
| 240 | |
Artem Serov | 8dfe746 | 2017-06-01 14:28:48 +0100 | [diff] [blame] | 241 | inline bool Arm64CanEncodeConstantAsImmediate(HConstant* constant, HInstruction* instr) { |
| 242 | int64_t value = CodeGenerator::GetInt64ValueOf(constant); |
| 243 | |
| 244 | // TODO: Improve this when IsSIMDConstantEncodable method is implemented in VIXL. |
| 245 | if (instr->IsVecReplicateScalar()) { |
| 246 | if (constant->IsLongConstant()) { |
| 247 | return false; |
| 248 | } else if (constant->IsFloatConstant()) { |
| 249 | return vixl::aarch64::Assembler::IsImmFP32(constant->AsFloatConstant()->GetValue()); |
| 250 | } else if (constant->IsDoubleConstant()) { |
| 251 | return vixl::aarch64::Assembler::IsImmFP64(constant->AsDoubleConstant()->GetValue()); |
| 252 | } |
| 253 | return IsUint<8>(value); |
| 254 | } |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 255 | |
Petre-Ionut Tudor | 2227fe4 | 2018-04-20 17:12:05 +0100 | [diff] [blame] | 256 | // Code generation for Min/Max: |
| 257 | // Cmp left_op, right_op |
| 258 | // Csel dst, left_op, right_op, cond |
| 259 | if (instr->IsMin() || instr->IsMax()) { |
| 260 | if (constant->GetUses().HasExactlyOneElement()) { |
| 261 | // If value can be encoded as immediate for the Cmp, then let VIXL handle |
| 262 | // the constant generation for the Csel. |
| 263 | return AddSubCanEncodeAsImmediate(value); |
| 264 | } |
| 265 | // These values are encodable as immediates for Cmp and VIXL will use csinc and csinv |
| 266 | // with the zr register as right_op, hence no constant generation is required. |
| 267 | return constant->IsZeroBitPattern() || constant->IsOne() || constant->IsMinusOne(); |
| 268 | } |
| 269 | |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 270 | // For single uses we let VIXL handle the constant generation since it will |
| 271 | // use registers that are not managed by the register allocator (wip0, wip1). |
Vladimir Marko | 46817b8 | 2016-03-29 12:21:58 +0100 | [diff] [blame] | 272 | if (constant->GetUses().HasExactlyOneElement()) { |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 273 | return true; |
| 274 | } |
| 275 | |
Scott Wakeling | 40a04bf | 2015-12-11 09:50:36 +0000 | [diff] [blame] | 276 | // Our code generator ensures shift distances are within an encodable range. |
| 277 | if (instr->IsRor()) { |
| 278 | return true; |
| 279 | } |
| 280 | |
Alexandre Rames | e6dbf48 | 2015-10-19 10:10:41 +0100 | [diff] [blame] | 281 | if (instr->IsAnd() || instr->IsOr() || instr->IsXor()) { |
| 282 | // Uses logical operations. |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 283 | return vixl::aarch64::Assembler::IsImmLogical(value, vixl::aarch64::kXRegSize); |
Alexandre Rames | e6dbf48 | 2015-10-19 10:10:41 +0100 | [diff] [blame] | 284 | } else if (instr->IsNeg()) { |
| 285 | // Uses mov -immediate. |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 286 | return vixl::aarch64::Assembler::IsImmMovn(value, vixl::aarch64::kXRegSize); |
Alexandre Rames | e6dbf48 | 2015-10-19 10:10:41 +0100 | [diff] [blame] | 287 | } else { |
| 288 | DCHECK(instr->IsAdd() || |
Artem Serov | 328429f | 2016-07-06 16:23:04 +0100 | [diff] [blame] | 289 | instr->IsIntermediateAddress() || |
Alexandre Rames | e6dbf48 | 2015-10-19 10:10:41 +0100 | [diff] [blame] | 290 | instr->IsBoundsCheck() || |
| 291 | instr->IsCompare() || |
| 292 | instr->IsCondition() || |
Roland Levillain | 22c4922 | 2016-03-18 14:04:28 +0000 | [diff] [blame] | 293 | instr->IsSub()) |
| 294 | << instr->DebugName(); |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 295 | // Uses aliases of ADD/SUB instructions. |
Petre-Ionut Tudor | 2227fe4 | 2018-04-20 17:12:05 +0100 | [diff] [blame] | 296 | return AddSubCanEncodeAsImmediate(value); |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 297 | } |
| 298 | } |
| 299 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 300 | inline Location ARM64EncodableConstantOrRegister(HInstruction* constant, |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 301 | HInstruction* instr) { |
| 302 | if (constant->IsConstant() |
Artem Serov | 8dfe746 | 2017-06-01 14:28:48 +0100 | [diff] [blame] | 303 | && Arm64CanEncodeConstantAsImmediate(constant->AsConstant(), instr)) { |
Serban Constantinescu | 2d35d9d | 2015-02-22 22:08:01 +0000 | [diff] [blame] | 304 | return Location::ConstantLocation(constant->AsConstant()); |
| 305 | } |
| 306 | |
| 307 | return Location::RequiresRegister(); |
| 308 | } |
| 309 | |
Zheng Xu | da40309 | 2015-04-24 17:35:39 +0800 | [diff] [blame] | 310 | // Check if registers in art register set have the same register code in vixl. If the register |
| 311 | // codes are same, we can initialize vixl register list simply by the register masks. Currently, |
| 312 | // only SP/WSP and ZXR/WZR codes are different between art and vixl. |
| 313 | // Note: This function is only used for debug checks. |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 314 | inline bool ArtVixlRegCodeCoherentForRegSet(uint32_t art_core_registers, |
Vladimir Marko | 804b03f | 2016-09-14 16:26:36 +0100 | [diff] [blame] | 315 | size_t num_core, |
| 316 | uint32_t art_fpu_registers, |
| 317 | size_t num_fpu) { |
Zheng Xu | da40309 | 2015-04-24 17:35:39 +0800 | [diff] [blame] | 318 | // The register masks won't work if the number of register is larger than 32. |
| 319 | DCHECK_GE(sizeof(art_core_registers) * 8, num_core); |
| 320 | DCHECK_GE(sizeof(art_fpu_registers) * 8, num_fpu); |
| 321 | for (size_t art_reg_code = 0; art_reg_code < num_core; ++art_reg_code) { |
| 322 | if (RegisterSet::Contains(art_core_registers, art_reg_code)) { |
| 323 | if (art_reg_code != static_cast<size_t>(VIXLRegCodeFromART(art_reg_code))) { |
| 324 | return false; |
| 325 | } |
| 326 | } |
| 327 | } |
| 328 | // There is no register code translation for float registers. |
| 329 | return true; |
| 330 | } |
| 331 | |
Anton Kirilov | 74234da | 2017-01-13 14:42:47 +0000 | [diff] [blame] | 332 | inline vixl::aarch64::Shift ShiftFromOpKind(HDataProcWithShifterOp::OpKind op_kind) { |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 333 | switch (op_kind) { |
Anton Kirilov | 74234da | 2017-01-13 14:42:47 +0000 | [diff] [blame] | 334 | case HDataProcWithShifterOp::kASR: return vixl::aarch64::ASR; |
| 335 | case HDataProcWithShifterOp::kLSL: return vixl::aarch64::LSL; |
| 336 | case HDataProcWithShifterOp::kLSR: return vixl::aarch64::LSR; |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 337 | default: |
| 338 | LOG(FATAL) << "Unexpected op kind " << op_kind; |
| 339 | UNREACHABLE(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 340 | return vixl::aarch64::NO_SHIFT; |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 341 | } |
| 342 | } |
| 343 | |
Anton Kirilov | 74234da | 2017-01-13 14:42:47 +0000 | [diff] [blame] | 344 | inline vixl::aarch64::Extend ExtendFromOpKind(HDataProcWithShifterOp::OpKind op_kind) { |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 345 | switch (op_kind) { |
Anton Kirilov | 74234da | 2017-01-13 14:42:47 +0000 | [diff] [blame] | 346 | case HDataProcWithShifterOp::kUXTB: return vixl::aarch64::UXTB; |
| 347 | case HDataProcWithShifterOp::kUXTH: return vixl::aarch64::UXTH; |
| 348 | case HDataProcWithShifterOp::kUXTW: return vixl::aarch64::UXTW; |
| 349 | case HDataProcWithShifterOp::kSXTB: return vixl::aarch64::SXTB; |
| 350 | case HDataProcWithShifterOp::kSXTH: return vixl::aarch64::SXTH; |
| 351 | case HDataProcWithShifterOp::kSXTW: return vixl::aarch64::SXTW; |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 352 | default: |
| 353 | LOG(FATAL) << "Unexpected op kind " << op_kind; |
| 354 | UNREACHABLE(); |
Scott Wakeling | 97c72b7 | 2016-06-24 16:19:36 +0100 | [diff] [blame] | 355 | return vixl::aarch64::NO_EXTEND; |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 356 | } |
| 357 | } |
| 358 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 359 | inline bool ShifterOperandSupportsExtension(HInstruction* instruction) { |
Vladimir Marko | 33bff25 | 2017-11-01 14:35:42 +0000 | [diff] [blame] | 360 | DCHECK(HasShifterOperand(instruction, InstructionSet::kArm64)); |
Alexandre Rames | 8626b74 | 2015-11-25 16:28:08 +0000 | [diff] [blame] | 361 | // Although the `neg` instruction is an alias of the `sub` instruction, `HNeg` |
| 362 | // does *not* support extension. This is because the `extended register` form |
| 363 | // of the `sub` instruction interprets the left register with code 31 as the |
| 364 | // stack pointer and not the zero register. (So does the `immediate` form.) In |
| 365 | // the other form `shifted register, the register with code 31 is interpreted |
| 366 | // as the zero register. |
| 367 | return instruction->IsAdd() || instruction->IsSub(); |
| 368 | } |
| 369 | |
Alexandre Rames | badf2b2 | 2016-08-24 17:08:49 +0100 | [diff] [blame] | 370 | inline bool IsConstantZeroBitPattern(const HInstruction* instruction) { |
Alexandre Rames | be919d9 | 2016-08-23 18:33:36 +0100 | [diff] [blame] | 371 | return instruction->IsConstant() && instruction->AsConstant()->IsZeroBitPattern(); |
| 372 | } |
| 373 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 374 | } // namespace helpers |
| 375 | } // namespace arm64 |
| 376 | } // namespace art |
| 377 | |
| 378 | #endif // ART_COMPILER_OPTIMIZING_COMMON_ARM64_H_ |