Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2014 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_UTILS_ARM_ASSEMBLER_THUMB2_H_ |
| 18 | #define ART_COMPILER_UTILS_ARM_ASSEMBLER_THUMB2_H_ |
| 19 | |
| 20 | #include <vector> |
| 21 | |
| 22 | #include "base/logging.h" |
| 23 | #include "constants_arm.h" |
| 24 | #include "utils/arm/managed_register_arm.h" |
| 25 | #include "utils/arm/assembler_arm.h" |
| 26 | #include "offsets.h" |
| 27 | #include "utils.h" |
| 28 | |
| 29 | namespace art { |
| 30 | namespace arm { |
| 31 | |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 32 | class Thumb2Assembler FINAL : public ArmAssembler { |
| 33 | public: |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 34 | explicit Thumb2Assembler(bool can_relocate_branches = true) |
| 35 | : can_relocate_branches_(can_relocate_branches), |
Nicolas Geoffray | 8d48673 | 2014-07-16 16:23:40 +0100 | [diff] [blame] | 36 | force_32bit_(false), |
| 37 | it_cond_index_(kNoItCondition), |
| 38 | next_condition_(AL) { |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 39 | } |
| 40 | |
| 41 | virtual ~Thumb2Assembler() { |
| 42 | for (auto& branch : branches_) { |
| 43 | delete branch; |
| 44 | } |
| 45 | } |
| 46 | |
| 47 | bool IsThumb() const OVERRIDE { |
| 48 | return true; |
| 49 | } |
| 50 | |
| 51 | bool IsForced32Bit() const { |
| 52 | return force_32bit_; |
| 53 | } |
| 54 | |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 55 | bool CanRelocateBranches() const { |
| 56 | return can_relocate_branches_; |
Nicolas Geoffray | 8d48673 | 2014-07-16 16:23:40 +0100 | [diff] [blame] | 57 | } |
| 58 | |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 59 | void FinalizeInstructions(const MemoryRegion& region) OVERRIDE { |
| 60 | EmitBranches(); |
| 61 | Assembler::FinalizeInstructions(region); |
| 62 | } |
| 63 | |
| 64 | // Data-processing instructions. |
| 65 | void and_(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 66 | |
| 67 | void eor(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 68 | |
| 69 | void sub(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 70 | void subs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 71 | |
| 72 | void rsb(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 73 | void rsbs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 74 | |
| 75 | void add(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 76 | |
| 77 | void adds(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 78 | |
| 79 | void adc(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 80 | |
| 81 | void sbc(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 82 | |
| 83 | void rsc(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 84 | |
| 85 | void tst(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 86 | |
| 87 | void teq(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 88 | |
| 89 | void cmp(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 90 | |
| 91 | void cmn(Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 92 | |
| 93 | void orr(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 94 | void orrs(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 95 | |
| 96 | void mov(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 97 | void movs(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 98 | |
| 99 | void bic(Register rd, Register rn, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 100 | |
| 101 | void mvn(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 102 | void mvns(Register rd, const ShifterOperand& so, Condition cond = AL) OVERRIDE; |
| 103 | |
| 104 | // Miscellaneous data-processing instructions. |
| 105 | void clz(Register rd, Register rm, Condition cond = AL) OVERRIDE; |
| 106 | void movw(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE; |
| 107 | void movt(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE; |
| 108 | |
| 109 | // Multiply instructions. |
| 110 | void mul(Register rd, Register rn, Register rm, Condition cond = AL) OVERRIDE; |
| 111 | void mla(Register rd, Register rn, Register rm, Register ra, |
| 112 | Condition cond = AL) OVERRIDE; |
| 113 | void mls(Register rd, Register rn, Register rm, Register ra, |
| 114 | Condition cond = AL) OVERRIDE; |
Zheng Xu | c666710 | 2015-05-15 16:08:45 +0800 | [diff] [blame] | 115 | void smull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 116 | Condition cond = AL) OVERRIDE; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 117 | void umull(Register rd_lo, Register rd_hi, Register rn, Register rm, |
| 118 | Condition cond = AL) OVERRIDE; |
| 119 | |
| 120 | void sdiv(Register rd, Register rn, Register rm, Condition cond = AL) OVERRIDE; |
| 121 | void udiv(Register rd, Register rn, Register rm, Condition cond = AL) OVERRIDE; |
| 122 | |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 123 | // Bit field extract instructions. |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 124 | void sbfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond = AL) OVERRIDE; |
Roland Levillain | 981e454 | 2014-11-14 11:47:14 +0000 | [diff] [blame] | 125 | void ubfx(Register rd, Register rn, uint32_t lsb, uint32_t width, Condition cond = AL) OVERRIDE; |
Roland Levillain | 51d3fc4 | 2014-11-13 14:11:42 +0000 | [diff] [blame] | 126 | |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 127 | // Load/store instructions. |
| 128 | void ldr(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 129 | void str(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 130 | |
| 131 | void ldrb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 132 | void strb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 133 | |
| 134 | void ldrh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 135 | void strh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 136 | |
| 137 | void ldrsb(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 138 | void ldrsh(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 139 | |
Roland Levillain | 4af147e | 2015-04-07 13:54:49 +0100 | [diff] [blame] | 140 | // Load/store register dual instructions using registers `rd` and `rd` + 1. |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 141 | void ldrd(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 142 | void strd(Register rd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 143 | |
Roland Levillain | 4af147e | 2015-04-07 13:54:49 +0100 | [diff] [blame] | 144 | // Load/store register dual instructions using registers `rd` and `rd2`. |
| 145 | // Note that contrary to the ARM A1 encoding, the Thumb-2 T1 encoding |
| 146 | // does not require `rd` to be even, nor `rd2' to be equal to `rd` + 1. |
| 147 | void ldrd(Register rd, Register rd2, const Address& ad, Condition cond); |
| 148 | void strd(Register rd, Register rd2, const Address& ad, Condition cond); |
| 149 | |
| 150 | |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 151 | void ldm(BlockAddressMode am, Register base, |
| 152 | RegList regs, Condition cond = AL) OVERRIDE; |
| 153 | void stm(BlockAddressMode am, Register base, |
| 154 | RegList regs, Condition cond = AL) OVERRIDE; |
| 155 | |
| 156 | void ldrex(Register rd, Register rn, Condition cond = AL) OVERRIDE; |
| 157 | void strex(Register rd, Register rt, Register rn, Condition cond = AL) OVERRIDE; |
| 158 | |
| 159 | void ldrex(Register rd, Register rn, uint16_t imm, Condition cond = AL); |
| 160 | void strex(Register rd, Register rt, Register rn, uint16_t imm, Condition cond = AL); |
| 161 | |
Calin Juravle | 52c4896 | 2014-12-16 17:02:57 +0000 | [diff] [blame] | 162 | void ldrexd(Register rt, Register rt2, Register rn, Condition cond = AL) OVERRIDE; |
| 163 | void strexd(Register rd, Register rt, Register rt2, Register rn, Condition cond = AL) OVERRIDE; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 164 | |
| 165 | // Miscellaneous instructions. |
| 166 | void clrex(Condition cond = AL) OVERRIDE; |
| 167 | void nop(Condition cond = AL) OVERRIDE; |
| 168 | |
| 169 | void bkpt(uint16_t imm16) OVERRIDE; |
| 170 | void svc(uint32_t imm24) OVERRIDE; |
| 171 | |
| 172 | // If-then |
| 173 | void it(Condition firstcond, ItState i1 = kItOmitted, |
| 174 | ItState i2 = kItOmitted, ItState i3 = kItOmitted) OVERRIDE; |
| 175 | |
| 176 | void cbz(Register rn, Label* target) OVERRIDE; |
| 177 | void cbnz(Register rn, Label* target) OVERRIDE; |
| 178 | |
| 179 | // Floating point instructions (VFPv3-D16 and VFPv3-D32 profiles). |
| 180 | void vmovsr(SRegister sn, Register rt, Condition cond = AL) OVERRIDE; |
| 181 | void vmovrs(Register rt, SRegister sn, Condition cond = AL) OVERRIDE; |
| 182 | void vmovsrr(SRegister sm, Register rt, Register rt2, Condition cond = AL) OVERRIDE; |
| 183 | void vmovrrs(Register rt, Register rt2, SRegister sm, Condition cond = AL) OVERRIDE; |
| 184 | void vmovdrr(DRegister dm, Register rt, Register rt2, Condition cond = AL) OVERRIDE; |
| 185 | void vmovrrd(Register rt, Register rt2, DRegister dm, Condition cond = AL) OVERRIDE; |
| 186 | void vmovs(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 187 | void vmovd(DRegister dd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 188 | |
| 189 | // Returns false if the immediate cannot be encoded. |
| 190 | bool vmovs(SRegister sd, float s_imm, Condition cond = AL) OVERRIDE; |
| 191 | bool vmovd(DRegister dd, double d_imm, Condition cond = AL) OVERRIDE; |
| 192 | |
| 193 | void vldrs(SRegister sd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 194 | void vstrs(SRegister sd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 195 | void vldrd(DRegister dd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 196 | void vstrd(DRegister dd, const Address& ad, Condition cond = AL) OVERRIDE; |
| 197 | |
| 198 | void vadds(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE; |
| 199 | void vaddd(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL) OVERRIDE; |
| 200 | void vsubs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE; |
| 201 | void vsubd(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL) OVERRIDE; |
| 202 | void vmuls(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE; |
| 203 | void vmuld(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL) OVERRIDE; |
| 204 | void vmlas(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE; |
| 205 | void vmlad(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL) OVERRIDE; |
| 206 | void vmlss(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE; |
| 207 | void vmlsd(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL) OVERRIDE; |
| 208 | void vdivs(SRegister sd, SRegister sn, SRegister sm, Condition cond = AL) OVERRIDE; |
| 209 | void vdivd(DRegister dd, DRegister dn, DRegister dm, Condition cond = AL) OVERRIDE; |
| 210 | |
| 211 | void vabss(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 212 | void vabsd(DRegister dd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 213 | void vnegs(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 214 | void vnegd(DRegister dd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 215 | void vsqrts(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 216 | void vsqrtd(DRegister dd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 217 | |
| 218 | void vcvtsd(SRegister sd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 219 | void vcvtds(DRegister dd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 220 | void vcvtis(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 221 | void vcvtid(SRegister sd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 222 | void vcvtsi(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 223 | void vcvtdi(DRegister dd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 224 | void vcvtus(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 225 | void vcvtud(SRegister sd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 226 | void vcvtsu(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 227 | void vcvtdu(DRegister dd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 228 | |
| 229 | void vcmps(SRegister sd, SRegister sm, Condition cond = AL) OVERRIDE; |
| 230 | void vcmpd(DRegister dd, DRegister dm, Condition cond = AL) OVERRIDE; |
| 231 | void vcmpsz(SRegister sd, Condition cond = AL) OVERRIDE; |
| 232 | void vcmpdz(DRegister dd, Condition cond = AL) OVERRIDE; |
| 233 | void vmstat(Condition cond = AL) OVERRIDE; // VMRS APSR_nzcv, FPSCR |
| 234 | |
| 235 | void vpushs(SRegister reg, int nregs, Condition cond = AL) OVERRIDE; |
| 236 | void vpushd(DRegister reg, int nregs, Condition cond = AL) OVERRIDE; |
| 237 | void vpops(SRegister reg, int nregs, Condition cond = AL) OVERRIDE; |
| 238 | void vpopd(DRegister reg, int nregs, Condition cond = AL) OVERRIDE; |
| 239 | |
| 240 | // Branch instructions. |
| 241 | void b(Label* label, Condition cond = AL); |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 242 | void b(NearLabel* label, Condition cond = AL); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 243 | void bl(Label* label, Condition cond = AL); |
| 244 | void blx(Label* label); |
| 245 | void blx(Register rm, Condition cond = AL) OVERRIDE; |
| 246 | void bx(Register rm, Condition cond = AL) OVERRIDE; |
| 247 | |
Dave Allison | 45fdb93 | 2014-06-25 12:37:10 -0700 | [diff] [blame] | 248 | void Lsl(Register rd, Register rm, uint32_t shift_imm, bool setcc = false, |
| 249 | Condition cond = AL) OVERRIDE; |
| 250 | void Lsr(Register rd, Register rm, uint32_t shift_imm, bool setcc = false, |
| 251 | Condition cond = AL) OVERRIDE; |
| 252 | void Asr(Register rd, Register rm, uint32_t shift_imm, bool setcc = false, |
| 253 | Condition cond = AL) OVERRIDE; |
| 254 | void Ror(Register rd, Register rm, uint32_t shift_imm, bool setcc = false, |
| 255 | Condition cond = AL) OVERRIDE; |
| 256 | void Rrx(Register rd, Register rm, bool setcc = false, |
| 257 | Condition cond = AL) OVERRIDE; |
| 258 | |
| 259 | void Lsl(Register rd, Register rm, Register rn, bool setcc = false, |
| 260 | Condition cond = AL) OVERRIDE; |
| 261 | void Lsr(Register rd, Register rm, Register rn, bool setcc = false, |
| 262 | Condition cond = AL) OVERRIDE; |
| 263 | void Asr(Register rd, Register rm, Register rn, bool setcc = false, |
| 264 | Condition cond = AL) OVERRIDE; |
| 265 | void Ror(Register rd, Register rm, Register rn, bool setcc = false, |
| 266 | Condition cond = AL) OVERRIDE; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 267 | |
| 268 | void Push(Register rd, Condition cond = AL) OVERRIDE; |
| 269 | void Pop(Register rd, Condition cond = AL) OVERRIDE; |
| 270 | |
| 271 | void PushList(RegList regs, Condition cond = AL) OVERRIDE; |
| 272 | void PopList(RegList regs, Condition cond = AL) OVERRIDE; |
| 273 | |
| 274 | void Mov(Register rd, Register rm, Condition cond = AL) OVERRIDE; |
| 275 | |
| 276 | void CompareAndBranchIfZero(Register r, Label* label) OVERRIDE; |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 277 | void CompareAndBranchIfZero(Register r, NearLabel* label) OVERRIDE; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 278 | void CompareAndBranchIfNonZero(Register r, Label* label) OVERRIDE; |
| 279 | |
Nicolas Geoffray | 19a19cf | 2014-10-22 16:07:05 +0100 | [diff] [blame] | 280 | // Memory barriers. |
| 281 | void dmb(DmbOptions flavor) OVERRIDE; |
| 282 | |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 283 | // Macros. |
| 284 | // Add signed constant value to rd. May clobber IP. |
| 285 | void AddConstant(Register rd, int32_t value, Condition cond = AL) OVERRIDE; |
| 286 | void AddConstant(Register rd, Register rn, int32_t value, |
| 287 | Condition cond = AL) OVERRIDE; |
| 288 | void AddConstantSetFlags(Register rd, Register rn, int32_t value, |
| 289 | Condition cond = AL) OVERRIDE; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 290 | |
| 291 | // Load and Store. May clobber IP. |
| 292 | void LoadImmediate(Register rd, int32_t value, Condition cond = AL) OVERRIDE; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 293 | void MarkExceptionHandler(Label* label) OVERRIDE; |
| 294 | void LoadFromOffset(LoadOperandType type, |
| 295 | Register reg, |
| 296 | Register base, |
| 297 | int32_t offset, |
| 298 | Condition cond = AL) OVERRIDE; |
| 299 | void StoreToOffset(StoreOperandType type, |
| 300 | Register reg, |
| 301 | Register base, |
| 302 | int32_t offset, |
| 303 | Condition cond = AL) OVERRIDE; |
| 304 | void LoadSFromOffset(SRegister reg, |
| 305 | Register base, |
| 306 | int32_t offset, |
| 307 | Condition cond = AL) OVERRIDE; |
| 308 | void StoreSToOffset(SRegister reg, |
| 309 | Register base, |
| 310 | int32_t offset, |
| 311 | Condition cond = AL) OVERRIDE; |
| 312 | void LoadDFromOffset(DRegister reg, |
| 313 | Register base, |
| 314 | int32_t offset, |
| 315 | Condition cond = AL) OVERRIDE; |
| 316 | void StoreDToOffset(DRegister reg, |
| 317 | Register base, |
| 318 | int32_t offset, |
| 319 | Condition cond = AL) OVERRIDE; |
| 320 | |
Nicolas Geoffray | 3bcc8ea | 2014-11-28 15:00:02 +0000 | [diff] [blame] | 321 | bool ShifterOperandCanHold(Register rd, |
| 322 | Register rn, |
| 323 | Opcode opcode, |
| 324 | uint32_t immediate, |
| 325 | ShifterOperand* shifter_op) OVERRIDE; |
| 326 | |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 327 | |
Ian Rogers | 1373595 | 2014-10-08 12:43:28 -0700 | [diff] [blame] | 328 | static bool IsInstructionForExceptionHandling(uintptr_t pc); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 329 | |
| 330 | // Emit data (e.g. encoded instruction or immediate) to the. |
| 331 | // instruction stream. |
| 332 | void Emit32(int32_t value); // Emit a 32 bit instruction in thumb format. |
| 333 | void Emit16(int16_t value); // Emit a 16 bit instruction in little endian format. |
| 334 | void Bind(Label* label) OVERRIDE; |
| 335 | |
| 336 | void MemoryBarrier(ManagedRegister scratch) OVERRIDE; |
| 337 | |
| 338 | // Force the assembler to generate 32 bit instructions. |
| 339 | void Force32Bit() { |
| 340 | force_32bit_ = true; |
| 341 | } |
| 342 | |
| 343 | private: |
| 344 | // Emit a single 32 or 16 bit data processing instruction. |
| 345 | void EmitDataProcessing(Condition cond, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 346 | Opcode opcode, |
| 347 | bool set_cc, |
| 348 | Register rn, |
| 349 | Register rd, |
| 350 | const ShifterOperand& so); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 351 | |
| 352 | // Must the instruction be 32 bits or can it possibly be encoded |
| 353 | // in 16 bits? |
| 354 | bool Is32BitDataProcessing(Condition cond, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 355 | Opcode opcode, |
| 356 | bool set_cc, |
| 357 | Register rn, |
| 358 | Register rd, |
| 359 | const ShifterOperand& so); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 360 | |
| 361 | // Emit a 32 bit data processing instruction. |
| 362 | void Emit32BitDataProcessing(Condition cond, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 363 | Opcode opcode, |
| 364 | bool set_cc, |
| 365 | Register rn, |
| 366 | Register rd, |
| 367 | const ShifterOperand& so); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 368 | |
| 369 | // Emit a 16 bit data processing instruction. |
| 370 | void Emit16BitDataProcessing(Condition cond, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 371 | Opcode opcode, |
| 372 | bool set_cc, |
| 373 | Register rn, |
| 374 | Register rd, |
| 375 | const ShifterOperand& so); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 376 | |
| 377 | void Emit16BitAddSub(Condition cond, |
| 378 | Opcode opcode, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 379 | bool set_cc, |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 380 | Register rn, |
| 381 | Register rd, |
| 382 | const ShifterOperand& so); |
| 383 | |
| 384 | uint16_t EmitCompareAndBranch(Register rn, uint16_t prev, bool n); |
| 385 | |
| 386 | void EmitLoadStore(Condition cond, |
Ian Rogers | 6a3c1fc | 2014-10-31 00:33:20 -0700 | [diff] [blame] | 387 | bool load, |
| 388 | bool byte, |
| 389 | bool half, |
| 390 | bool is_signed, |
| 391 | Register rd, |
| 392 | const Address& ad); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 393 | |
| 394 | void EmitMemOpAddressMode3(Condition cond, |
| 395 | int32_t mode, |
| 396 | Register rd, |
| 397 | const Address& ad); |
| 398 | |
| 399 | void EmitMultiMemOp(Condition cond, |
| 400 | BlockAddressMode am, |
| 401 | bool load, |
| 402 | Register base, |
| 403 | RegList regs); |
| 404 | |
| 405 | void EmitMulOp(Condition cond, |
| 406 | int32_t opcode, |
| 407 | Register rd, |
| 408 | Register rn, |
| 409 | Register rm, |
| 410 | Register rs); |
| 411 | |
| 412 | void EmitVFPsss(Condition cond, |
| 413 | int32_t opcode, |
| 414 | SRegister sd, |
| 415 | SRegister sn, |
| 416 | SRegister sm); |
| 417 | |
| 418 | void EmitVFPddd(Condition cond, |
| 419 | int32_t opcode, |
| 420 | DRegister dd, |
| 421 | DRegister dn, |
| 422 | DRegister dm); |
| 423 | |
| 424 | void EmitVFPsd(Condition cond, |
| 425 | int32_t opcode, |
| 426 | SRegister sd, |
| 427 | DRegister dm); |
| 428 | |
| 429 | void EmitVFPds(Condition cond, |
| 430 | int32_t opcode, |
| 431 | DRegister dd, |
| 432 | SRegister sm); |
| 433 | |
| 434 | void EmitVPushPop(uint32_t reg, int nregs, bool push, bool dbl, Condition cond); |
| 435 | |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 436 | void EmitBranch(Condition cond, Label* label, bool link, bool x, bool is_near = false); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 437 | static int32_t EncodeBranchOffset(int32_t offset, int32_t inst); |
| 438 | static int DecodeBranchOffset(int32_t inst); |
| 439 | int32_t EncodeTstOffset(int offset, int32_t inst); |
| 440 | int DecodeTstOffset(int32_t inst); |
Dave Allison | 45fdb93 | 2014-06-25 12:37:10 -0700 | [diff] [blame] | 441 | void EmitShift(Register rd, Register rm, Shift shift, uint8_t amount, bool setcc = false); |
| 442 | void EmitShift(Register rd, Register rn, Shift shift, Register rm, bool setcc = false); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 443 | |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 444 | // Whether the assembler can relocate branches. If false, unresolved branches will be |
| 445 | // emitted on 32bits. |
| 446 | bool can_relocate_branches_; |
| 447 | |
| 448 | // Force the assembler to use 32 bit thumb2 instructions. |
| 449 | bool force_32bit_; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 450 | |
| 451 | // IfThen conditions. Used to check that conditional instructions match the preceding IT. |
| 452 | Condition it_conditions_[4]; |
| 453 | uint8_t it_cond_index_; |
| 454 | Condition next_condition_; |
| 455 | |
| 456 | void SetItCondition(ItState s, Condition cond, uint8_t index); |
| 457 | |
| 458 | void CheckCondition(Condition cond) { |
| 459 | CHECK_EQ(cond, next_condition_); |
| 460 | |
| 461 | // Move to the next condition if there is one. |
| 462 | if (it_cond_index_ < 3) { |
| 463 | ++it_cond_index_; |
| 464 | next_condition_ = it_conditions_[it_cond_index_]; |
| 465 | } else { |
| 466 | next_condition_ = AL; |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | void CheckConditionLastIt(Condition cond) { |
| 471 | if (it_cond_index_ < 3) { |
| 472 | // Check that the next condition is AL. This means that the |
| 473 | // current condition is the last in the IT block. |
| 474 | CHECK_EQ(it_conditions_[it_cond_index_ + 1], AL); |
| 475 | } |
| 476 | CheckCondition(cond); |
| 477 | } |
| 478 | |
| 479 | // Branches. |
| 480 | // |
| 481 | // The thumb2 architecture allows branches to be either 16 or 32 bit instructions. This |
| 482 | // depends on both the type of branch and the offset to which it is branching. When |
| 483 | // generating code for branches we don't know the size before hand (if the branch is |
| 484 | // going forward, because we haven't seen the target address yet), so we need to assume |
| 485 | // that it is going to be one of 16 or 32 bits. When we know the target (the label is 'bound') |
| 486 | // we can determine the actual size of the branch. However, if we had guessed wrong before |
| 487 | // we knew the target there will be no room in the instruction sequence for the new |
| 488 | // instruction (assume that we never decrease the size of a branch). |
| 489 | // |
| 490 | // To handle this, we keep a record of every branch in the program. The actual instruction |
| 491 | // encoding for these is delayed until we know the final size of every branch. When we |
| 492 | // bind a label to a branch (we then know the target address) we determine if the branch |
| 493 | // has changed size. If it has we need to move all the instructions in the buffer after |
| 494 | // the branch point forward by the change in size of the branch. This will create a gap |
| 495 | // in the code big enough for the new branch encoding. However, since we have moved |
| 496 | // a chunk of code we need to relocate the branches in that code to their new address. |
| 497 | // |
| 498 | // Creating a hole in the code for the new branch encoding might cause another branch that was |
| 499 | // 16 bits to become 32 bits, so we need to find this in another pass. |
| 500 | // |
| 501 | // We also need to deal with a cbz/cbnz instruction that becomes too big for its offset |
| 502 | // range. We do this by converting it to two instructions: |
| 503 | // cmp Rn, #0 |
| 504 | // b<cond> target |
| 505 | // But we also need to handle the case where the conditional branch is out of range and |
| 506 | // becomes a 32 bit conditional branch. |
| 507 | // |
| 508 | // All branches have a 'branch id' which is a 16 bit unsigned number used to identify |
| 509 | // the branch. Unresolved labels use the branch id to link to the next unresolved branch. |
| 510 | |
| 511 | class Branch { |
| 512 | public: |
| 513 | // Branch type. |
| 514 | enum Type { |
| 515 | kUnconditional, // B. |
| 516 | kConditional, // B<cond>. |
| 517 | kCompareAndBranchZero, // cbz. |
| 518 | kCompareAndBranchNonZero, // cbnz. |
| 519 | kUnconditionalLink, // BL. |
| 520 | kUnconditionalLinkX, // BLX. |
| 521 | kUnconditionalX // BX. |
| 522 | }; |
| 523 | |
| 524 | // Calculated size of branch instruction based on type and offset. |
| 525 | enum Size { |
| 526 | k16Bit, |
| 527 | k32Bit |
| 528 | }; |
| 529 | |
| 530 | // Unresolved branch possibly with a condition. |
| 531 | Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, Condition cond = AL) : |
| 532 | assembler_(assembler), type_(type), location_(location), |
| 533 | target_(kUnresolved), |
| 534 | cond_(cond), rn_(R0) { |
| 535 | CHECK(!IsCompareAndBranch()); |
| 536 | size_ = CalculateSize(); |
| 537 | } |
| 538 | |
| 539 | // Unresolved compare-and-branch instruction with a register. |
| 540 | Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, Register rn) : |
| 541 | assembler_(assembler), type_(type), location_(location), |
| 542 | target_(kUnresolved), cond_(AL), rn_(rn) { |
| 543 | CHECK(IsCompareAndBranch()); |
| 544 | size_ = CalculateSize(); |
| 545 | } |
| 546 | |
| 547 | // Resolved branch (can't be compare-and-branch) with a target and possibly a condition. |
| 548 | Branch(const Thumb2Assembler* assembler, Type type, uint32_t location, uint32_t target, |
| 549 | Condition cond = AL) : |
| 550 | assembler_(assembler), type_(type), location_(location), |
| 551 | target_(target), cond_(cond), rn_(R0) { |
| 552 | CHECK(!IsCompareAndBranch()); |
| 553 | // Resolved branch. |
| 554 | size_ = CalculateSize(); |
| 555 | } |
| 556 | |
| 557 | bool IsCompareAndBranch() const { |
| 558 | return type_ == kCompareAndBranchNonZero || type_ == kCompareAndBranchZero; |
| 559 | } |
| 560 | |
| 561 | // Resolve a branch when the target is known. If this causes the |
| 562 | // size of the branch to change return true. Otherwise return false. |
| 563 | bool Resolve(uint32_t target) { |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 564 | uint32_t old_target = target_; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 565 | target_ = target; |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 566 | if (assembler_->CanRelocateBranches()) { |
| 567 | Size new_size = CalculateSize(); |
| 568 | if (size_ != new_size) { |
| 569 | size_ = new_size; |
| 570 | return true; |
| 571 | } |
| 572 | return false; |
| 573 | } else { |
| 574 | if (kIsDebugBuild) { |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 575 | if (old_target == kUnresolved) { |
| 576 | // Check that the size has not increased. |
| 577 | DCHECK(!(CalculateSize() == k32Bit && size_ == k16Bit)); |
| 578 | } else { |
| 579 | DCHECK(CalculateSize() == size_); |
| 580 | } |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 581 | } |
| 582 | return false; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 583 | } |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 584 | } |
| 585 | |
| 586 | // Move a cbz/cbnz branch. This is always forward. |
| 587 | void Move(int32_t delta) { |
| 588 | CHECK(IsCompareAndBranch()); |
| 589 | CHECK_GT(delta, 0); |
| 590 | location_ += delta; |
| 591 | target_ += delta; |
| 592 | } |
| 593 | |
| 594 | // Relocate a branch by a given delta. This changed the location and |
| 595 | // target if they need to be changed. It also recalculates the |
| 596 | // size of the branch instruction. It returns true if the branch |
| 597 | // has changed size. |
| 598 | bool Relocate(uint32_t oldlocation, int32_t delta) { |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 599 | DCHECK(assembler_->CanRelocateBranches()); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 600 | if (location_ > oldlocation) { |
| 601 | location_ += delta; |
| 602 | } |
| 603 | if (target_ != kUnresolved) { |
| 604 | if (target_ > oldlocation) { |
| 605 | target_ += delta; |
| 606 | } |
| 607 | } else { |
| 608 | return false; // Don't know the size yet. |
| 609 | } |
| 610 | |
| 611 | // Calculate the new size. |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 612 | Size new_size = CalculateSize(); |
| 613 | if (size_ != new_size) { |
| 614 | size_ = new_size; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 615 | return true; |
| 616 | } |
| 617 | return false; |
| 618 | } |
| 619 | |
| 620 | Size GetSize() const { |
| 621 | return size_; |
| 622 | } |
| 623 | |
| 624 | Type GetType() const { |
| 625 | return type_; |
| 626 | } |
| 627 | |
| 628 | uint32_t GetLocation() const { |
| 629 | return location_; |
| 630 | } |
| 631 | |
| 632 | // Emit the branch instruction into the assembler buffer. This does the |
| 633 | // encoding into the thumb instruction. |
| 634 | void Emit(AssemblerBuffer* buffer) const; |
| 635 | |
| 636 | // Reset the type and condition to those given. This used for |
| 637 | // cbz/cbnz instructions when they are converted to cmp/b<cond> |
| 638 | void ResetTypeAndCondition(Type type, Condition cond) { |
| 639 | CHECK(IsCompareAndBranch()); |
| 640 | CHECK(cond == EQ || cond == NE); |
| 641 | type_ = type; |
| 642 | cond_ = cond; |
| 643 | } |
| 644 | |
| 645 | Register GetRegister() const { |
| 646 | return rn_; |
| 647 | } |
| 648 | |
| 649 | void ResetSize(Size size) { |
| 650 | size_ = size; |
| 651 | } |
| 652 | |
| 653 | private: |
| 654 | // Calculate the size of the branch instruction based on its type and offset. |
| 655 | Size CalculateSize() const { |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 656 | if (target_ == kUnresolved) { |
| 657 | if (assembler_->IsForced32Bit() && (type_ == kUnconditional || type_ == kConditional)) { |
| 658 | return k32Bit; |
| 659 | } |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 660 | if (IsCompareAndBranch()) { |
| 661 | // Compare and branch instructions can only be encoded on 16 bits. |
| 662 | return k16Bit; |
| 663 | } |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 664 | return assembler_->CanRelocateBranches() ? k16Bit : k32Bit; |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 665 | } |
Nicolas Geoffray | d126ba1 | 2015-05-20 11:25:27 +0100 | [diff] [blame] | 666 | // When the target is resolved, we know the best encoding for it. |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 667 | int32_t delta = target_ - location_ - 4; |
| 668 | if (delta < 0) { |
| 669 | delta = -delta; |
| 670 | } |
| 671 | switch (type_) { |
| 672 | case kUnconditional: |
| 673 | if (assembler_->IsForced32Bit() || delta >= (1 << 11)) { |
| 674 | return k32Bit; |
| 675 | } else { |
| 676 | return k16Bit; |
| 677 | } |
| 678 | case kConditional: |
| 679 | if (assembler_->IsForced32Bit() || delta >= (1 << 8)) { |
| 680 | return k32Bit; |
| 681 | } else { |
| 682 | return k16Bit; |
| 683 | } |
| 684 | case kCompareAndBranchZero: |
| 685 | case kCompareAndBranchNonZero: |
| 686 | if (delta >= (1 << 7)) { |
| 687 | return k32Bit; // Will cause this branch to become invalid. |
| 688 | } |
| 689 | return k16Bit; |
| 690 | |
| 691 | case kUnconditionalX: |
| 692 | case kUnconditionalLinkX: |
| 693 | return k16Bit; |
| 694 | case kUnconditionalLink: |
| 695 | return k32Bit; |
| 696 | } |
| 697 | LOG(FATAL) << "Cannot reach"; |
| 698 | return k16Bit; |
| 699 | } |
| 700 | |
| 701 | static constexpr uint32_t kUnresolved = 0xffffffff; // Value for target_ for unresolved. |
| 702 | const Thumb2Assembler* assembler_; |
| 703 | Type type_; |
| 704 | uint32_t location_; // Offset into assembler buffer in bytes. |
| 705 | uint32_t target_; // Offset into assembler buffer in bytes. |
| 706 | Size size_; |
| 707 | Condition cond_; |
| 708 | const Register rn_; |
| 709 | }; |
| 710 | |
| 711 | std::vector<Branch*> branches_; |
| 712 | |
| 713 | // Add a resolved branch and return its size. |
| 714 | Branch::Size AddBranch(Branch::Type type, uint32_t location, uint32_t target, |
| 715 | Condition cond = AL) { |
| 716 | branches_.push_back(new Branch(this, type, location, target, cond)); |
| 717 | return branches_[branches_.size()-1]->GetSize(); |
| 718 | } |
| 719 | |
| 720 | // Add a compare and branch (with a register) and return its id. |
| 721 | uint16_t AddBranch(Branch::Type type, uint32_t location, Register rn) { |
| 722 | branches_.push_back(new Branch(this, type, location, rn)); |
| 723 | return branches_.size() - 1; |
| 724 | } |
| 725 | |
| 726 | // Add an unresolved branch and return its id. |
Nicolas Geoffray | d56376c | 2015-05-21 12:32:34 +0000 | [diff] [blame^] | 727 | uint16_t AddBranch(Branch::Type type, |
| 728 | uint32_t location, |
| 729 | Condition cond = AL, |
| 730 | bool is_near = false) { |
| 731 | Branch* branch = new Branch(this, type, location, cond); |
| 732 | if (is_near) { |
| 733 | branch->ResetSize(Branch::k16Bit); |
| 734 | } |
| 735 | branches_.push_back(branch); |
Dave Allison | 65fcc2c | 2014-04-28 13:45:27 -0700 | [diff] [blame] | 736 | return branches_.size() - 1; |
| 737 | } |
| 738 | |
| 739 | Branch* GetBranch(uint16_t branchid) { |
| 740 | if (branchid >= branches_.size()) { |
| 741 | return nullptr; |
| 742 | } |
| 743 | return branches_[branchid]; |
| 744 | } |
| 745 | |
| 746 | void EmitBranches(); |
| 747 | void MakeHoleForBranch(uint32_t location, uint32_t size); |
| 748 | }; |
| 749 | |
| 750 | } // namespace arm |
| 751 | } // namespace art |
| 752 | |
| 753 | #endif // ART_COMPILER_UTILS_ARM_ASSEMBLER_THUMB2_H_ |