blob: 703d68e0b3a62a66168d41b837e3f3c552271d76 [file] [log] [blame]
Dave Allison65fcc2c2014-04-28 13:45:27 -07001/*
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#include "assembler_thumb2.h"
18
19#include "base/logging.h"
20#include "entrypoints/quick/quick_entrypoints.h"
21#include "offsets.h"
22#include "thread.h"
23#include "utils.h"
24
25namespace art {
26namespace arm {
27
28void Thumb2Assembler::and_(Register rd, Register rn, const ShifterOperand& so,
29 Condition cond) {
30 EmitDataProcessing(cond, AND, 0, rn, rd, so);
31}
32
33
34void Thumb2Assembler::eor(Register rd, Register rn, const ShifterOperand& so,
35 Condition cond) {
36 EmitDataProcessing(cond, EOR, 0, rn, rd, so);
37}
38
39
40void Thumb2Assembler::sub(Register rd, Register rn, const ShifterOperand& so,
41 Condition cond) {
42 EmitDataProcessing(cond, SUB, 0, rn, rd, so);
43}
44
45
46void Thumb2Assembler::rsb(Register rd, Register rn, const ShifterOperand& so,
47 Condition cond) {
48 EmitDataProcessing(cond, RSB, 0, rn, rd, so);
49}
50
51
52void Thumb2Assembler::rsbs(Register rd, Register rn, const ShifterOperand& so,
53 Condition cond) {
54 EmitDataProcessing(cond, RSB, 1, rn, rd, so);
55}
56
57
58void Thumb2Assembler::add(Register rd, Register rn, const ShifterOperand& so,
59 Condition cond) {
60 EmitDataProcessing(cond, ADD, 0, rn, rd, so);
61}
62
63
64void Thumb2Assembler::adds(Register rd, Register rn, const ShifterOperand& so,
65 Condition cond) {
66 EmitDataProcessing(cond, ADD, 1, rn, rd, so);
67}
68
69
70void Thumb2Assembler::subs(Register rd, Register rn, const ShifterOperand& so,
71 Condition cond) {
72 EmitDataProcessing(cond, SUB, 1, rn, rd, so);
73}
74
75
76void Thumb2Assembler::adc(Register rd, Register rn, const ShifterOperand& so,
77 Condition cond) {
78 EmitDataProcessing(cond, ADC, 0, rn, rd, so);
79}
80
81
82void Thumb2Assembler::sbc(Register rd, Register rn, const ShifterOperand& so,
83 Condition cond) {
84 EmitDataProcessing(cond, SBC, 0, rn, rd, so);
85}
86
87
88void Thumb2Assembler::rsc(Register rd, Register rn, const ShifterOperand& so,
89 Condition cond) {
90 EmitDataProcessing(cond, RSC, 0, rn, rd, so);
91}
92
93
94void Thumb2Assembler::tst(Register rn, const ShifterOperand& so, Condition cond) {
95 CHECK_NE(rn, PC); // Reserve tst pc instruction for exception handler marker.
96 EmitDataProcessing(cond, TST, 1, rn, R0, so);
97}
98
99
100void Thumb2Assembler::teq(Register rn, const ShifterOperand& so, Condition cond) {
101 CHECK_NE(rn, PC); // Reserve teq pc instruction for exception handler marker.
102 EmitDataProcessing(cond, TEQ, 1, rn, R0, so);
103}
104
105
106void Thumb2Assembler::cmp(Register rn, const ShifterOperand& so, Condition cond) {
107 EmitDataProcessing(cond, CMP, 1, rn, R0, so);
108}
109
110
111void Thumb2Assembler::cmn(Register rn, const ShifterOperand& so, Condition cond) {
112 EmitDataProcessing(cond, CMN, 1, rn, R0, so);
113}
114
115
116void Thumb2Assembler::orr(Register rd, Register rn,
117 const ShifterOperand& so, Condition cond) {
118 EmitDataProcessing(cond, ORR, 0, rn, rd, so);
119}
120
121
122void Thumb2Assembler::orrs(Register rd, Register rn,
123 const ShifterOperand& so, Condition cond) {
124 EmitDataProcessing(cond, ORR, 1, rn, rd, so);
125}
126
127
128void Thumb2Assembler::mov(Register rd, const ShifterOperand& so, Condition cond) {
129 EmitDataProcessing(cond, MOV, 0, R0, rd, so);
130}
131
132
133void Thumb2Assembler::movs(Register rd, const ShifterOperand& so, Condition cond) {
134 EmitDataProcessing(cond, MOV, 1, R0, rd, so);
135}
136
137
138void Thumb2Assembler::bic(Register rd, Register rn, const ShifterOperand& so,
139 Condition cond) {
140 EmitDataProcessing(cond, BIC, 0, rn, rd, so);
141}
142
143
144void Thumb2Assembler::mvn(Register rd, const ShifterOperand& so, Condition cond) {
145 EmitDataProcessing(cond, MVN, 0, R0, rd, so);
146}
147
148
149void Thumb2Assembler::mvns(Register rd, const ShifterOperand& so, Condition cond) {
150 EmitDataProcessing(cond, MVN, 1, R0, rd, so);
151}
152
153
154void Thumb2Assembler::mul(Register rd, Register rn, Register rm, Condition cond) {
155 if (rd == rm && !IsHighRegister(rd) && !IsHighRegister(rn) && !force_32bit_) {
156 // 16 bit.
157 int16_t encoding = B14 | B9 | B8 | B6 |
158 rn << 3 | rd;
159 Emit16(encoding);
160 } else {
161 // 32 bit.
162 uint32_t op1 = 0b000;
163 uint32_t op2 = 0b00;
164 int32_t encoding = B31 | B30 | B29 | B28 | B27 | B25 | B24 |
165 op1 << 20 |
166 B15 | B14 | B13 | B12 |
167 op2 << 4 |
168 static_cast<uint32_t>(rd) << 8 |
169 static_cast<uint32_t>(rn) << 16 |
170 static_cast<uint32_t>(rm);
171
172 Emit32(encoding);
173 }
174}
175
176
177void Thumb2Assembler::mla(Register rd, Register rn, Register rm, Register ra,
178 Condition cond) {
179 uint32_t op1 = 0b000;
180 uint32_t op2 = 0b00;
181 int32_t encoding = B31 | B30 | B29 | B28 | B27 | B25 | B24 |
182 op1 << 20 |
183 op2 << 4 |
184 static_cast<uint32_t>(rd) << 8 |
185 static_cast<uint32_t>(ra) << 12 |
186 static_cast<uint32_t>(rn) << 16 |
187 static_cast<uint32_t>(rm);
188
189 Emit32(encoding);
190}
191
192
193void Thumb2Assembler::mls(Register rd, Register rn, Register rm, Register ra,
194 Condition cond) {
195 uint32_t op1 = 0b000;
196 uint32_t op2 = 0b01;
197 int32_t encoding = B31 | B30 | B29 | B28 | B27 | B25 | B24 |
198 op1 << 20 |
199 op2 << 4 |
200 static_cast<uint32_t>(rd) << 8 |
201 static_cast<uint32_t>(ra) << 12 |
202 static_cast<uint32_t>(rn) << 16 |
203 static_cast<uint32_t>(rm);
204
205 Emit32(encoding);
206}
207
208
209void Thumb2Assembler::umull(Register rd_lo, Register rd_hi, Register rn,
210 Register rm, Condition cond) {
211 uint32_t op1 = 0b010;
212 uint32_t op2 = 0b0000;
213 int32_t encoding = B31 | B30 | B29 | B28 | B27 | B25 | B24 | B23 |
214 op1 << 20 |
215 op2 << 4 |
216 static_cast<uint32_t>(rd_lo) << 12 |
217 static_cast<uint32_t>(rd_hi) << 8 |
218 static_cast<uint32_t>(rn) << 16 |
219 static_cast<uint32_t>(rm);
220
221 Emit32(encoding);
222}
223
224
225void Thumb2Assembler::sdiv(Register rd, Register rn, Register rm, Condition cond) {
226 uint32_t op1 = 0b001;
227 uint32_t op2 = 0b1111;
228 int32_t encoding = B31 | B30 | B29 | B28 | B27 | B25 | B24 | B23 | B20 |
229 op1 << 20 |
230 op2 << 4 |
231 0xf << 12 |
232 static_cast<uint32_t>(rd) << 8 |
233 static_cast<uint32_t>(rn) << 16 |
234 static_cast<uint32_t>(rm);
235
236 Emit32(encoding);
237}
238
239
240void Thumb2Assembler::udiv(Register rd, Register rn, Register rm, Condition cond) {
241 uint32_t op1 = 0b001;
242 uint32_t op2 = 0b1111;
243 int32_t encoding = B31 | B30 | B29 | B28 | B27 | B25 | B24 | B23 | B21 | B20 |
244 op1 << 20 |
245 op2 << 4 |
246 0xf << 12 |
247 static_cast<uint32_t>(rd) << 8 |
248 static_cast<uint32_t>(rn) << 16 |
249 static_cast<uint32_t>(rm);
250
251 Emit32(encoding);
252}
253
254
255void Thumb2Assembler::ldr(Register rd, const Address& ad, Condition cond) {
256 EmitLoadStore(cond, true, false, false, false, rd, ad);
257}
258
259
260void Thumb2Assembler::str(Register rd, const Address& ad, Condition cond) {
261 EmitLoadStore(cond, false, false, false, false, rd, ad);
262}
263
264
265void Thumb2Assembler::ldrb(Register rd, const Address& ad, Condition cond) {
266 EmitLoadStore(cond, true, true, false, false, rd, ad);
267}
268
269
270void Thumb2Assembler::strb(Register rd, const Address& ad, Condition cond) {
271 EmitLoadStore(cond, false, true, false, false, rd, ad);
272}
273
274
275void Thumb2Assembler::ldrh(Register rd, const Address& ad, Condition cond) {
276 EmitLoadStore(cond, true, false, true, false, rd, ad);
277}
278
279
280void Thumb2Assembler::strh(Register rd, const Address& ad, Condition cond) {
281 EmitLoadStore(cond, false, false, true, false, rd, ad);
282}
283
284
285void Thumb2Assembler::ldrsb(Register rd, const Address& ad, Condition cond) {
286 EmitLoadStore(cond, true, true, false, true, rd, ad);
287}
288
289
290void Thumb2Assembler::ldrsh(Register rd, const Address& ad, Condition cond) {
291 EmitLoadStore(cond, true, false, true, true, rd, ad);
292}
293
294
295void Thumb2Assembler::ldrd(Register rd, const Address& ad, Condition cond) {
296 CHECK_EQ(rd % 2, 0);
297 // This is different from other loads. The encoding is like ARM.
298 int32_t encoding = B31 | B30 | B29 | B27 | B22 | B20 |
299 static_cast<int32_t>(rd) << 12 |
300 (static_cast<int32_t>(rd) + 1) << 8 |
301 ad.encodingThumbLdrdStrd();
302 Emit32(encoding);
303}
304
305
306void Thumb2Assembler::strd(Register rd, const Address& ad, Condition cond) {
307 CHECK_EQ(rd % 2, 0);
308 // This is different from other loads. The encoding is like ARM.
309 int32_t encoding = B31 | B30 | B29 | B27 | B22 |
310 static_cast<int32_t>(rd) << 12 |
311 (static_cast<int32_t>(rd) + 1) << 8 |
312 ad.encodingThumbLdrdStrd();
313 Emit32(encoding);
314}
315
316
317void Thumb2Assembler::ldm(BlockAddressMode am,
318 Register base,
319 RegList regs,
320 Condition cond) {
321 if (__builtin_popcount(regs) == 1) {
322 // Thumb doesn't support one reg in the list.
323 // Find the register number.
324 int reg = 0;
325 while (reg < 16) {
326 if ((regs & (1 << reg)) != 0) {
327 break;
328 }
329 ++reg;
330 }
331 CHECK_LT(reg, 16);
332 CHECK(am == DB_W); // Only writeback is supported.
333 ldr(static_cast<Register>(reg), Address(base, kRegisterSize, Address::PostIndex), cond);
334 } else {
335 EmitMultiMemOp(cond, am, true, base, regs);
336 }
337}
338
339
340void Thumb2Assembler::stm(BlockAddressMode am,
341 Register base,
342 RegList regs,
343 Condition cond) {
344 if (__builtin_popcount(regs) == 1) {
345 // Thumb doesn't support one reg in the list.
346 // Find the register number.
347 int reg = 0;
348 while (reg < 16) {
349 if ((regs & (1 << reg)) != 0) {
350 break;
351 }
352 ++reg;
353 }
354 CHECK_LT(reg, 16);
355 CHECK(am == IA || am == IA_W);
356 Address::Mode strmode = am == IA ? Address::PreIndex : Address::Offset;
357 str(static_cast<Register>(reg), Address(base, -kRegisterSize, strmode), cond);
358 } else {
359 EmitMultiMemOp(cond, am, false, base, regs);
360 }
361}
362
363
364bool Thumb2Assembler::vmovs(SRegister sd, float s_imm, Condition cond) {
365 uint32_t imm32 = bit_cast<uint32_t, float>(s_imm);
366 if (((imm32 & ((1 << 19) - 1)) == 0) &&
367 ((((imm32 >> 25) & ((1 << 6) - 1)) == (1 << 5)) ||
368 (((imm32 >> 25) & ((1 << 6) - 1)) == ((1 << 5) -1)))) {
369 uint8_t imm8 = ((imm32 >> 31) << 7) | (((imm32 >> 29) & 1) << 6) |
370 ((imm32 >> 19) & ((1 << 6) -1));
371 EmitVFPsss(cond, B23 | B21 | B20 | ((imm8 >> 4)*B16) | (imm8 & 0xf),
372 sd, S0, S0);
373 return true;
374 }
375 return false;
376}
377
378
379bool Thumb2Assembler::vmovd(DRegister dd, double d_imm, Condition cond) {
380 uint64_t imm64 = bit_cast<uint64_t, double>(d_imm);
381 if (((imm64 & ((1LL << 48) - 1)) == 0) &&
382 ((((imm64 >> 54) & ((1 << 9) - 1)) == (1 << 8)) ||
383 (((imm64 >> 54) & ((1 << 9) - 1)) == ((1 << 8) -1)))) {
384 uint8_t imm8 = ((imm64 >> 63) << 7) | (((imm64 >> 61) & 1) << 6) |
385 ((imm64 >> 48) & ((1 << 6) -1));
386 EmitVFPddd(cond, B23 | B21 | B20 | ((imm8 >> 4)*B16) | B8 | (imm8 & 0xf),
387 dd, D0, D0);
388 return true;
389 }
390 return false;
391}
392
393
394void Thumb2Assembler::vmovs(SRegister sd, SRegister sm, Condition cond) {
395 EmitVFPsss(cond, B23 | B21 | B20 | B6, sd, S0, sm);
396}
397
398
399void Thumb2Assembler::vmovd(DRegister dd, DRegister dm, Condition cond) {
400 EmitVFPddd(cond, B23 | B21 | B20 | B6, dd, D0, dm);
401}
402
403
404void Thumb2Assembler::vadds(SRegister sd, SRegister sn, SRegister sm,
405 Condition cond) {
406 EmitVFPsss(cond, B21 | B20, sd, sn, sm);
407}
408
409
410void Thumb2Assembler::vaddd(DRegister dd, DRegister dn, DRegister dm,
411 Condition cond) {
412 EmitVFPddd(cond, B21 | B20, dd, dn, dm);
413}
414
415
416void Thumb2Assembler::vsubs(SRegister sd, SRegister sn, SRegister sm,
417 Condition cond) {
418 EmitVFPsss(cond, B21 | B20 | B6, sd, sn, sm);
419}
420
421
422void Thumb2Assembler::vsubd(DRegister dd, DRegister dn, DRegister dm,
423 Condition cond) {
424 EmitVFPddd(cond, B21 | B20 | B6, dd, dn, dm);
425}
426
427
428void Thumb2Assembler::vmuls(SRegister sd, SRegister sn, SRegister sm,
429 Condition cond) {
430 EmitVFPsss(cond, B21, sd, sn, sm);
431}
432
433
434void Thumb2Assembler::vmuld(DRegister dd, DRegister dn, DRegister dm,
435 Condition cond) {
436 EmitVFPddd(cond, B21, dd, dn, dm);
437}
438
439
440void Thumb2Assembler::vmlas(SRegister sd, SRegister sn, SRegister sm,
441 Condition cond) {
442 EmitVFPsss(cond, 0, sd, sn, sm);
443}
444
445
446void Thumb2Assembler::vmlad(DRegister dd, DRegister dn, DRegister dm,
447 Condition cond) {
448 EmitVFPddd(cond, 0, dd, dn, dm);
449}
450
451
452void Thumb2Assembler::vmlss(SRegister sd, SRegister sn, SRegister sm,
453 Condition cond) {
454 EmitVFPsss(cond, B6, sd, sn, sm);
455}
456
457
458void Thumb2Assembler::vmlsd(DRegister dd, DRegister dn, DRegister dm,
459 Condition cond) {
460 EmitVFPddd(cond, B6, dd, dn, dm);
461}
462
463
464void Thumb2Assembler::vdivs(SRegister sd, SRegister sn, SRegister sm,
465 Condition cond) {
466 EmitVFPsss(cond, B23, sd, sn, sm);
467}
468
469
470void Thumb2Assembler::vdivd(DRegister dd, DRegister dn, DRegister dm,
471 Condition cond) {
472 EmitVFPddd(cond, B23, dd, dn, dm);
473}
474
475
476void Thumb2Assembler::vabss(SRegister sd, SRegister sm, Condition cond) {
477 EmitVFPsss(cond, B23 | B21 | B20 | B7 | B6, sd, S0, sm);
478}
479
480
481void Thumb2Assembler::vabsd(DRegister dd, DRegister dm, Condition cond) {
482 EmitVFPddd(cond, B23 | B21 | B20 | B7 | B6, dd, D0, dm);
483}
484
485
486void Thumb2Assembler::vnegs(SRegister sd, SRegister sm, Condition cond) {
487 EmitVFPsss(cond, B23 | B21 | B20 | B16 | B6, sd, S0, sm);
488}
489
490
491void Thumb2Assembler::vnegd(DRegister dd, DRegister dm, Condition cond) {
492 EmitVFPddd(cond, B23 | B21 | B20 | B16 | B6, dd, D0, dm);
493}
494
495
496void Thumb2Assembler::vsqrts(SRegister sd, SRegister sm, Condition cond) {
497 EmitVFPsss(cond, B23 | B21 | B20 | B16 | B7 | B6, sd, S0, sm);
498}
499
500void Thumb2Assembler::vsqrtd(DRegister dd, DRegister dm, Condition cond) {
501 EmitVFPddd(cond, B23 | B21 | B20 | B16 | B7 | B6, dd, D0, dm);
502}
503
504
505void Thumb2Assembler::vcvtsd(SRegister sd, DRegister dm, Condition cond) {
506 EmitVFPsd(cond, B23 | B21 | B20 | B18 | B17 | B16 | B8 | B7 | B6, sd, dm);
507}
508
509
510void Thumb2Assembler::vcvtds(DRegister dd, SRegister sm, Condition cond) {
511 EmitVFPds(cond, B23 | B21 | B20 | B18 | B17 | B16 | B7 | B6, dd, sm);
512}
513
514
515void Thumb2Assembler::vcvtis(SRegister sd, SRegister sm, Condition cond) {
516 EmitVFPsss(cond, B23 | B21 | B20 | B19 | B18 | B16 | B7 | B6, sd, S0, sm);
517}
518
519
520void Thumb2Assembler::vcvtid(SRegister sd, DRegister dm, Condition cond) {
521 EmitVFPsd(cond, B23 | B21 | B20 | B19 | B18 | B16 | B8 | B7 | B6, sd, dm);
522}
523
524
525void Thumb2Assembler::vcvtsi(SRegister sd, SRegister sm, Condition cond) {
526 EmitVFPsss(cond, B23 | B21 | B20 | B19 | B7 | B6, sd, S0, sm);
527}
528
529
530void Thumb2Assembler::vcvtdi(DRegister dd, SRegister sm, Condition cond) {
531 EmitVFPds(cond, B23 | B21 | B20 | B19 | B8 | B7 | B6, dd, sm);
532}
533
534
535void Thumb2Assembler::vcvtus(SRegister sd, SRegister sm, Condition cond) {
536 EmitVFPsss(cond, B23 | B21 | B20 | B19 | B18 | B7 | B6, sd, S0, sm);
537}
538
539
540void Thumb2Assembler::vcvtud(SRegister sd, DRegister dm, Condition cond) {
541 EmitVFPsd(cond, B23 | B21 | B20 | B19 | B18 | B8 | B7 | B6, sd, dm);
542}
543
544
545void Thumb2Assembler::vcvtsu(SRegister sd, SRegister sm, Condition cond) {
546 EmitVFPsss(cond, B23 | B21 | B20 | B19 | B6, sd, S0, sm);
547}
548
549
550void Thumb2Assembler::vcvtdu(DRegister dd, SRegister sm, Condition cond) {
551 EmitVFPds(cond, B23 | B21 | B20 | B19 | B8 | B6, dd, sm);
552}
553
554
555void Thumb2Assembler::vcmps(SRegister sd, SRegister sm, Condition cond) {
556 EmitVFPsss(cond, B23 | B21 | B20 | B18 | B6, sd, S0, sm);
557}
558
559
560void Thumb2Assembler::vcmpd(DRegister dd, DRegister dm, Condition cond) {
561 EmitVFPddd(cond, B23 | B21 | B20 | B18 | B6, dd, D0, dm);
562}
563
564
565void Thumb2Assembler::vcmpsz(SRegister sd, Condition cond) {
566 EmitVFPsss(cond, B23 | B21 | B20 | B18 | B16 | B6, sd, S0, S0);
567}
568
569
570void Thumb2Assembler::vcmpdz(DRegister dd, Condition cond) {
571 EmitVFPddd(cond, B23 | B21 | B20 | B18 | B16 | B6, dd, D0, D0);
572}
573
574void Thumb2Assembler::b(Label* label, Condition cond) {
575 EmitBranch(cond, label, false, false);
576}
577
578
579void Thumb2Assembler::bl(Label* label, Condition cond) {
580 CheckCondition(cond);
581 EmitBranch(cond, label, true, false);
582}
583
584
585void Thumb2Assembler::blx(Label* label) {
586 EmitBranch(AL, label, true, true);
587}
588
589
590void Thumb2Assembler::MarkExceptionHandler(Label* label) {
591 EmitDataProcessing(AL, TST, 1, PC, R0, ShifterOperand(0));
592 Label l;
593 b(&l);
594 EmitBranch(AL, label, false, false);
595 Bind(&l);
596}
597
598
599void Thumb2Assembler::Emit32(int32_t value) {
600 AssemblerBuffer::EnsureCapacity ensured(&buffer_);
601 buffer_.Emit<int16_t>(value >> 16);
602 buffer_.Emit<int16_t>(value & 0xffff);
603}
604
605
606void Thumb2Assembler::Emit16(int16_t value) {
607 AssemblerBuffer::EnsureCapacity ensured(&buffer_);
608 buffer_.Emit<int16_t>(value);
609}
610
611
612bool Thumb2Assembler::Is32BitDataProcessing(Condition cond,
613 Opcode opcode,
614 int set_cc,
615 Register rn,
616 Register rd,
617 const ShifterOperand& so) {
618 if (force_32bit_) {
619 return true;
620 }
621
622 bool can_contain_high_register = opcode == MOV || opcode == ADD || opcode == SUB;
623
624 if (IsHighRegister(rd) || IsHighRegister(rn)) {
625 if (can_contain_high_register) {
626 // There are high register instructions available for this opcode.
627 // However, there is no RRX available.
628 if (so.IsShift() && so.GetShift() == RRX) {
629 return true;
630 }
631
632 // Check special case for SP relative ADD and SUB immediate.
633 if ((opcode == ADD || opcode == SUB) && so.IsImmediate()) {
634 // If rn is SP and rd is a high register we need to use a 32 bit encoding.
635 if (rn == SP && rd != SP && IsHighRegister(rd)) {
636 return true;
637 }
638
639 uint32_t imm = so.GetImmediate();
640 // If the immediates are out of range use 32 bit.
641 if (rd == SP && rn == SP) {
642 if (imm > (1 << 9)) { // 9 bit immediate.
643 return true;
644 }
645 } else if (opcode == ADD && rd != SP && rn == SP) { // 10 bit immediate.
646 if (imm > (1 << 10)) {
647 return true;
648 }
649 } else if (opcode == SUB && rd != SP && rn == SP) {
650 // SUB rd, SP, #imm is always 32 bit.
651 return true;
652 }
653 }
654 }
655
656 // The ADD,SUB and MOV instructions that work with high registers don't have
657 // immediate variants.
658 if (so.IsImmediate()) {
659 return true;
660 }
661 }
662
663 if (so.IsRegister() && IsHighRegister(so.GetRegister()) && !can_contain_high_register) {
664 return true;
665 }
666
667 // Check for MOV with an ROR.
668 if (opcode == MOV && so.IsRegister() && so.IsShift() && so.GetShift() == ROR) {
669 if (so.GetImmediate() != 0) {
670 return true;
671 }
672 }
673
674 bool rn_is_valid = true;
675
676 // Check for single operand instructions and ADD/SUB.
677 switch (opcode) {
678 case CMP:
679 case MOV:
680 case TST:
681 case MVN:
682 rn_is_valid = false; // There is no Rn for these instructions.
683 break;
684 case TEQ:
685 return true;
686 break;
687 case ADD:
688 case SUB:
689 break;
690 default:
691 if (so.IsRegister() && rd != rn) {
692 return true;
693 }
694 }
695
696 if (so.IsImmediate()) {
697 if (rn_is_valid && rn != rd) {
698 // The only thumb1 instruction with a register and an immediate are ADD and SUB. The
699 // immediate must be 3 bits.
700 if (opcode != ADD && opcode != SUB) {
701 return true;
702 } else {
703 // Check that the immediate is 3 bits for ADD and SUB.
704 if (so.GetImmediate() >= 8) {
705 return true;
706 }
707 }
708 } else {
709 // ADD, SUB, CMP and MOV may be thumb1 only if the immediate is 8 bits.
710 if (!(opcode == ADD || opcode == SUB || opcode == MOV || opcode == CMP)) {
711 return true;
712 } else {
713 if (so.GetImmediate() > 255) {
714 return true;
715 }
716 }
717 }
718 }
719
720 // The instruction can be encoded in 16 bits.
721 return false;
722}
723
724
725void Thumb2Assembler::Emit32BitDataProcessing(Condition cond,
726 Opcode opcode,
727 int set_cc,
728 Register rn,
729 Register rd,
730 const ShifterOperand& so) {
731 uint8_t thumb_opcode = 0b11111111;
732 switch (opcode) {
733 case AND: thumb_opcode = 0b0000; break;
734 case EOR: thumb_opcode = 0b0100; break;
735 case SUB: thumb_opcode = 0b1101; break;
736 case RSB: thumb_opcode = 0b1110; break;
737 case ADD: thumb_opcode = 0b1000; break;
738 case ADC: thumb_opcode = 0b1010; break;
739 case SBC: thumb_opcode = 0b1011; break;
740 case RSC: break;
741 case TST: thumb_opcode = 0b0000; set_cc = true; rd = PC; break;
742 case TEQ: thumb_opcode = 0b0100; set_cc = true; rd = PC; break;
743 case CMP: thumb_opcode = 0b1101; set_cc = true; rd = PC; break;
744 case CMN: thumb_opcode = 0b1000; set_cc = true; rd = PC; break;
745 case ORR: thumb_opcode = 0b0010; break;
746 case MOV: thumb_opcode = 0b0010; rn = PC; break;
747 case BIC: thumb_opcode = 0b0001; break;
748 case MVN: thumb_opcode = 0b0011; rn = PC; break;
749 default:
750 break;
751 }
752
753 if (thumb_opcode == 0b11111111) {
754 LOG(FATAL) << "Invalid thumb2 opcode " << opcode;
755 }
756
757 int32_t encoding = 0;
758 if (so.IsImmediate()) {
759 // Check special cases.
760 if ((opcode == SUB || opcode == ADD) && rn == SP) {
761 // There are special ADD/SUB rd, SP, #imm12 instructions.
762 if (opcode == SUB) {
763 thumb_opcode = 0b0101;
764 } else {
765 thumb_opcode = 0;
766 }
767 uint32_t imm = so.GetImmediate();
768 CHECK_LT(imm, (1u << 12));
769
770 uint32_t i = (imm >> 11) & 1;
771 uint32_t imm3 = (imm >> 8) & 0b111;
772 uint32_t imm8 = imm & 0xff;
773
774 encoding = B31 | B30 | B29 | B28 | B25 |
775 B19 | B18 | B16 |
776 thumb_opcode << 21 |
777 rd << 8 |
778 i << 26 |
779 imm3 << 12 |
780 imm8;
781 } else {
782 // Modified immediate.
783 uint32_t imm = ModifiedImmediate(so.encodingThumb(2));
784 if (imm == kInvalidModifiedImmediate) {
785 LOG(FATAL) << "Immediate value cannot fit in thumb2 modified immediate";
786 }
787 encoding = B31 | B30 | B29 | B28 |
788 thumb_opcode << 21 |
789 set_cc << 20 |
790 rn << 16 |
791 rd << 8 |
792 imm;
793 }
794 } else if (so.IsRegister()) {
795 // Register (possibly shifted)
796 encoding = B31 | B30 | B29 | B27 | B25 |
797 thumb_opcode << 21 |
798 set_cc << 20 |
799 rn << 16 |
800 rd << 8 |
801 so.encodingThumb(2);
802 }
803 Emit32(encoding);
804}
805
806
807void Thumb2Assembler::Emit16BitDataProcessing(Condition cond,
808 Opcode opcode,
809 int set_cc,
810 Register rn,
811 Register rd,
812 const ShifterOperand& so) {
813 if (opcode == ADD || opcode == SUB) {
814 Emit16BitAddSub(cond, opcode, set_cc, rn, rd, so);
815 return;
816 }
817 uint8_t thumb_opcode = 0b11111111;
818 // Thumb1.
819 uint8_t dp_opcode = 0b01;
820 uint8_t opcode_shift = 6;
821 uint8_t rd_shift = 0;
822 uint8_t rn_shift = 3;
823 uint8_t immediate_shift = 0;
824 bool use_immediate = false;
825 uint8_t immediate = 0;
826
827 if (opcode == MOV && so.IsRegister() && so.IsShift()) {
828 // Convert shifted mov operand2 into 16 bit opcodes.
829 dp_opcode = 0;
830 opcode_shift = 11;
831
832 use_immediate = true;
833 immediate = so.GetImmediate();
834 immediate_shift = 6;
835
836 rn = so.GetRegister();
837
838 switch (so.GetShift()) {
839 case LSL: thumb_opcode = 0b00; break;
840 case LSR: thumb_opcode = 0b01; break;
841 case ASR: thumb_opcode = 0b10; break;
842 case ROR:
843 // ROR doesn't allow immediates.
844 thumb_opcode = 0b111;
845 dp_opcode = 0b01;
846 opcode_shift = 6;
847 use_immediate = false;
848 break;
849 case RRX: break;
850 default:
851 break;
852 }
853 } else {
854 if (so.IsImmediate()) {
855 use_immediate = true;
856 immediate = so.GetImmediate();
857 }
858
859 switch (opcode) {
860 case AND: thumb_opcode = 0b0000; break;
861 case EOR: thumb_opcode = 0b0001; break;
862 case SUB: break;
863 case RSB: thumb_opcode = 0b1001; break;
864 case ADD: break;
865 case ADC: thumb_opcode = 0b0101; break;
866 case SBC: thumb_opcode = 0b0110; break;
867 case RSC: break;
868 case TST: thumb_opcode = 0b1000; rn = so.GetRegister(); break;
869 case TEQ: break;
870 case CMP:
871 if (use_immediate) {
872 // T2 encoding.
873 dp_opcode = 0;
874 opcode_shift = 11;
875 thumb_opcode = 0b101;
876 rd_shift = 8;
877 rn_shift = 8;
878 } else {
879 thumb_opcode = 0b1010;
880 rn = so.GetRegister();
881 }
882
883 break;
884 case CMN: thumb_opcode = 0b1011; rn = so.GetRegister(); break;
885 case ORR: thumb_opcode = 0b1100; break;
886 case MOV:
887 dp_opcode = 0;
888 if (use_immediate) {
889 // T2 encoding.
890 opcode_shift = 11;
891 thumb_opcode = 0b100;
892 rd_shift = 8;
893 rn_shift = 8;
894 } else {
895 rn = so.GetRegister();
896 if (IsHighRegister(rn) || IsHighRegister(rd)) {
897 // Special mov for high registers.
898 dp_opcode = 0b01;
899 opcode_shift = 7;
900 // Put the top bit of rd into the bottom bit of the opcode.
901 thumb_opcode = 0b0001100 | static_cast<uint32_t>(rd) >> 3;
902 rd = static_cast<Register>(static_cast<uint32_t>(rd) & 0b111);
903 } else {
904 thumb_opcode = 0;
905 }
906 }
907 break;
908 case BIC: thumb_opcode = 0b1110; break;
909 case MVN: thumb_opcode = 0b1111; rn = so.GetRegister(); break;
910 default:
911 break;
912 }
913 }
914
915 if (thumb_opcode == 0b11111111) {
916 LOG(FATAL) << "Invalid thumb1 opcode " << opcode;
917 }
918
919 int16_t encoding = dp_opcode << 14 |
920 (thumb_opcode << opcode_shift) |
921 rd << rd_shift |
922 rn << rn_shift |
923 (use_immediate ? (immediate << immediate_shift) : 0);
924
925 Emit16(encoding);
926}
927
928
929// ADD and SUB are complex enough to warrant their own emitter.
930void Thumb2Assembler::Emit16BitAddSub(Condition cond,
931 Opcode opcode,
932 int set_cc,
933 Register rn,
934 Register rd,
935 const ShifterOperand& so) {
936 uint8_t dp_opcode = 0;
937 uint8_t opcode_shift = 6;
938 uint8_t rd_shift = 0;
939 uint8_t rn_shift = 3;
940 uint8_t immediate_shift = 0;
941 bool use_immediate = false;
942 uint8_t immediate = 0;
943 uint8_t thumb_opcode;;
944
945 if (so.IsImmediate()) {
946 use_immediate = true;
947 immediate = so.GetImmediate();
948 }
949
950 switch (opcode) {
951 case ADD:
952 if (so.IsRegister()) {
953 Register rm = so.GetRegister();
954 if (rn == rd) {
955 // Can use T2 encoding (allows 4 bit registers)
956 dp_opcode = 0b01;
957 opcode_shift = 10;
958 thumb_opcode = 0b0001;
959 // Make Rn also contain the top bit of rd.
960 rn = static_cast<Register>(static_cast<uint32_t>(rm) |
961 (static_cast<uint32_t>(rd) & 0b1000) << 1);
962 rd = static_cast<Register>(static_cast<uint32_t>(rd) & 0b111);
963 } else {
964 // T1.
965 opcode_shift = 9;
966 thumb_opcode = 0b01100;
967 immediate = static_cast<uint32_t>(so.GetRegister());
968 use_immediate = true;
969 immediate_shift = 6;
970 }
971 } else {
972 // Immediate.
973 if (rd == SP && rn == SP) {
974 // ADD sp, sp, #imm
975 dp_opcode = 0b10;
976 thumb_opcode = 0b11;
977 opcode_shift = 12;
978 CHECK_LT(immediate, (1 << 9));
979 CHECK_EQ((immediate & 0b11), 0);
980
981 // Remove rd and rn from instruction by orring it with immed and clearing bits.
982 rn = R0;
983 rd = R0;
984 rd_shift = 0;
985 rn_shift = 0;
986 immediate >>= 2;
987 } else if (rd != SP && rn == SP) {
988 // ADD rd, SP, #imm
989 dp_opcode = 0b10;
990 thumb_opcode = 0b101;
991 opcode_shift = 11;
992 CHECK_LT(immediate, (1 << 10));
993 CHECK_EQ((immediate & 0b11), 0);
994
995 // Remove rn from instruction.
996 rn = R0;
997 rn_shift = 0;
998 rd_shift = 8;
999 immediate >>= 2;
1000 } else if (rn != rd) {
1001 // Must use T1.
1002 opcode_shift = 9;
1003 thumb_opcode = 0b01110;
1004 immediate_shift = 6;
1005 } else {
1006 // T2 encoding.
1007 opcode_shift = 11;
1008 thumb_opcode = 0b110;
1009 rd_shift = 8;
1010 rn_shift = 8;
1011 }
1012 }
1013 break;
1014
1015 case SUB:
1016 if (so.IsRegister()) {
1017 // T1.
1018 opcode_shift = 9;
1019 thumb_opcode = 0b01101;
1020 immediate = static_cast<uint32_t>(so.GetRegister());
1021 use_immediate = true;
1022 immediate_shift = 6;
1023 } else {
1024 if (rd == SP && rn == SP) {
1025 // SUB sp, sp, #imm
1026 dp_opcode = 0b10;
1027 thumb_opcode = 0b1100001;
1028 opcode_shift = 7;
1029 CHECK_LT(immediate, (1 << 9));
1030 CHECK_EQ((immediate & 0b11), 0);
1031
1032 // Remove rd and rn from instruction by orring it with immed and clearing bits.
1033 rn = R0;
1034 rd = R0;
1035 rd_shift = 0;
1036 rn_shift = 0;
1037 immediate >>= 2;
1038 } else if (rn != rd) {
1039 // Must use T1.
1040 opcode_shift = 9;
1041 thumb_opcode = 0b01111;
1042 immediate_shift = 6;
1043 } else {
1044 // T2 encoding.
1045 opcode_shift = 11;
1046 thumb_opcode = 0b111;
1047 rd_shift = 8;
1048 rn_shift = 8;
1049 }
1050 }
1051 break;
1052 default:
1053 LOG(FATAL) << "This opcode is not an ADD or SUB: " << opcode;
1054 return;
1055 }
1056
1057 int16_t encoding = dp_opcode << 14 |
1058 (thumb_opcode << opcode_shift) |
1059 rd << rd_shift |
1060 rn << rn_shift |
1061 (use_immediate ? (immediate << immediate_shift) : 0);
1062
1063 Emit16(encoding);
1064}
1065
1066
1067void Thumb2Assembler::EmitDataProcessing(Condition cond,
1068 Opcode opcode,
1069 int set_cc,
1070 Register rn,
1071 Register rd,
1072 const ShifterOperand& so) {
1073 CHECK_NE(rd, kNoRegister);
1074 CheckCondition(cond);
1075
1076 if (Is32BitDataProcessing(cond, opcode, set_cc, rn, rd, so)) {
1077 Emit32BitDataProcessing(cond, opcode, set_cc, rn, rd, so);
1078 } else {
1079 Emit16BitDataProcessing(cond, opcode, set_cc, rn, rd, so);
1080 }
1081}
1082
1083
1084void Thumb2Assembler::Branch::Emit(AssemblerBuffer* buffer) const {
1085 bool link = type_ == kUnconditionalLinkX || type_ == kUnconditionalLink;
1086 bool x = type_ == kUnconditionalX || type_ == kUnconditionalLinkX;
1087 int32_t offset = target_ - location_;
1088
1089 if (size_ == k32Bit) {
1090 int32_t encoding = B31 | B30 | B29 | B28 | B15;
1091 if (link) {
1092 // BL or BLX immediate.
1093 encoding |= B14;
1094 if (!x) {
1095 encoding |= B12;
1096 } else {
1097 // Bottom bit of offset must be 0.
1098 CHECK_EQ((offset & 1), 0);
1099 }
1100 } else {
1101 if (x) {
1102 LOG(FATAL) << "Invalid use of BX";
1103 } else {
1104 if (cond_ == AL) {
1105 // Can use the T4 encoding allowing a 24 bit offset.
1106 if (!x) {
1107 encoding |= B12;
1108 }
1109 } else {
1110 // Must be T3 encoding with a 20 bit offset.
1111 encoding |= cond_ << 22;
1112 }
1113 }
1114 }
1115 encoding = Thumb2Assembler::EncodeBranchOffset(offset, encoding);
1116 buffer->Store<int16_t>(location_, static_cast<int16_t>(encoding >> 16));
1117 buffer->Store<int16_t>(location_+2, static_cast<int16_t>(encoding & 0xffff));
1118 } else {
1119 if (IsCompareAndBranch()) {
1120 offset -= 4;
1121 uint16_t i = (offset >> 6) & 1;
1122 uint16_t imm5 = (offset >> 1) & 0b11111;
1123 int16_t encoding = B15 | B13 | B12 |
1124 (type_ == kCompareAndBranchNonZero ? B11 : 0) |
1125 static_cast<uint32_t>(rn_) |
1126 B8 |
1127 i << 9 |
1128 imm5 << 3;
1129 buffer->Store<int16_t>(location_, encoding);
1130 } else {
1131 offset -= 4; // Account for PC offset.
1132 int16_t encoding;
1133 // 16 bit.
1134 if (cond_ == AL) {
1135 encoding = B15 | B14 | B13 |
1136 ((offset >> 1) & 0x7ff);
1137 } else {
1138 encoding = B15 | B14 | B12 |
1139 cond_ << 8 | ((offset >> 1) & 0xff);
1140 }
1141 buffer->Store<int16_t>(location_, encoding);
1142 }
1143 }
1144}
1145
1146
1147uint16_t Thumb2Assembler::EmitCompareAndBranch(Register rn, uint16_t prev, bool n) {
1148 uint32_t location = buffer_.Size();
1149
1150 // This is always unresolved as it must be a forward branch.
1151 Emit16(prev); // Previous link.
1152 return AddBranch(n ? Branch::kCompareAndBranchNonZero : Branch::kCompareAndBranchZero,
1153 location, rn);
1154}
1155
1156
1157// NOTE: this only support immediate offsets, not [rx,ry].
1158// TODO: support [rx,ry] instructions.
1159void Thumb2Assembler::EmitLoadStore(Condition cond,
1160 bool load,
1161 bool byte,
1162 bool half,
1163 bool is_signed,
1164 Register rd,
1165 const Address& ad) {
1166 CHECK_NE(rd, kNoRegister);
1167 CheckCondition(cond);
1168 bool must_be_32bit = force_32bit_;
1169 if (IsHighRegister(rd)) {
1170 must_be_32bit = true;
1171 }
1172
1173 Register rn = ad.GetRegister();
1174 if (IsHighRegister(rn) && rn != SP) {
1175 must_be_32bit = true;
1176 }
1177
1178 if (is_signed || ad.GetOffset() < 0 || ad.GetMode() != Address::Offset) {
1179 must_be_32bit = true;
1180 }
1181
1182 int32_t offset = ad.GetOffset();
1183
1184 // The 16 bit SP relative instruction can only have a 10 bit offset.
1185 if (rn == SP && offset > 1024) {
1186 must_be_32bit = true;
1187 }
1188
1189 if (byte) {
1190 // 5 bit offset, no shift.
1191 if (offset > 32) {
1192 must_be_32bit = true;
1193 }
1194 } else if (half) {
1195 // 6 bit offset, shifted by 1.
1196 if (offset > 64) {
1197 must_be_32bit = true;
1198 }
1199 } else {
1200 // 7 bit offset, shifted by 2.
1201 if (offset > 128) {
1202 must_be_32bit = true;
1203 }
1204 }
1205
1206 if (must_be_32bit) {
1207 int32_t encoding = B31 | B30 | B29 | B28 | B27 |
1208 (load ? B20 : 0) |
1209 (is_signed ? B24 : 0) |
1210 static_cast<uint32_t>(rd) << 12 |
1211 ad.encodingThumb(2) |
1212 (byte ? 0 : half ? B21 : B22);
1213 Emit32(encoding);
1214 } else {
1215 // 16 bit thumb1.
1216 uint8_t opA = 0;
1217 bool sp_relative = false;
1218
1219 if (byte) {
1220 opA = 0b0111;
1221 } else if (half) {
1222 opA = 0b1000;
1223 } else {
1224 if (rn == SP) {
1225 opA = 0b1001;
1226 sp_relative = true;
1227 } else {
1228 opA = 0b0110;
1229 }
1230 }
1231 int16_t encoding = opA << 12 |
1232 (load ? B11 : 0);
1233
1234 CHECK_GE(offset, 0);
1235 if (sp_relative) {
1236 // SP relative, 10 bit offset.
1237 CHECK_LT(offset, 1024);
1238 CHECK_EQ((offset & 0b11), 0);
1239 encoding |= rd << 8 | offset >> 2;
1240 } else {
1241 // No SP relative. The offset is shifted right depending on
1242 // the size of the load/store.
1243 encoding |= static_cast<uint32_t>(rd);
1244
1245 if (byte) {
1246 // 5 bit offset, no shift.
1247 CHECK_LT(offset, 32);
1248 } else if (half) {
1249 // 6 bit offset, shifted by 1.
1250 CHECK_LT(offset, 64);
1251 CHECK_EQ((offset & 0b1), 0);
1252 offset >>= 1;
1253 } else {
1254 // 7 bit offset, shifted by 2.
1255 CHECK_LT(offset, 128);
1256 CHECK_EQ((offset & 0b11), 0);
1257 offset >>= 2;
1258 }
1259 encoding |= rn << 3 | offset << 6;
1260 }
1261
1262 Emit16(encoding);
1263 }
1264}
1265
1266
1267void Thumb2Assembler::EmitMultiMemOp(Condition cond,
1268 BlockAddressMode am,
1269 bool load,
1270 Register base,
1271 RegList regs) {
1272 CHECK_NE(base, kNoRegister);
1273 CheckCondition(cond);
1274 bool must_be_32bit = force_32bit_;
1275
1276 if ((regs & 0xff00) != 0) {
1277 must_be_32bit = true;
1278 }
1279
1280 uint32_t w_bit = am == IA_W || am == DB_W || am == DA_W || am == IB_W;
1281 // 16 bit always uses writeback.
1282 if (!w_bit) {
1283 must_be_32bit = true;
1284 }
1285
1286 if (must_be_32bit) {
1287 uint32_t op = 0;
1288 switch (am) {
1289 case IA:
1290 case IA_W:
1291 op = 0b01;
1292 break;
1293 case DB:
1294 case DB_W:
1295 op = 0b10;
1296 break;
1297 case DA:
1298 case IB:
1299 case DA_W:
1300 case IB_W:
1301 LOG(FATAL) << "LDM/STM mode not supported on thumb: " << am;
1302 }
1303 if (load) {
1304 // Cannot have SP in the list.
1305 CHECK_EQ((regs & (1 << SP)), 0);
1306 } else {
1307 // Cannot have PC or SP in the list.
1308 CHECK_EQ((regs & (1 << PC | 1 << SP)), 0);
1309 }
1310 int32_t encoding = B31 | B30 | B29 | B27 |
1311 (op << 23) |
1312 (load ? B20 : 0) |
1313 base << 16 |
1314 regs |
1315 (w_bit << 21);
1316 Emit32(encoding);
1317 } else {
1318 int16_t encoding = B15 | B14 |
1319 (load ? B11 : 0) |
1320 base << 8 |
1321 regs;
1322 Emit16(encoding);
1323 }
1324}
1325
1326
1327void Thumb2Assembler::EmitBranch(Condition cond, Label* label, bool link, bool x) {
1328 uint32_t pc = buffer_.Size();
1329 Branch::Type branch_type;
1330 if (cond == AL) {
1331 if (link) {
1332 if (x) {
1333 branch_type = Branch::kUnconditionalLinkX; // BLX.
1334 } else {
1335 branch_type = Branch::kUnconditionalLink; // BX.
1336 }
1337 } else {
1338 branch_type = Branch::kUnconditional; // B.
1339 }
1340 } else {
1341 branch_type = Branch::kConditional; // B<cond>.
1342 }
1343
1344 if (label->IsBound()) {
1345 Branch::Size size = AddBranch(branch_type, pc, label->Position(), cond); // Resolved branch.
1346
1347 // The branch is to a bound label which means that it's a backwards branch. We know the
1348 // current size of it so we can emit the appropriate space. Note that if it's a 16 bit
1349 // branch the size may change if it so happens that other branches change size that change
1350 // the distance to the target and that distance puts this branch over the limit for 16 bits.
1351 if (size == Branch::k16Bit) {
1352 Emit16(0); // Space for a 16 bit branch.
1353 } else {
1354 Emit32(0); // Space for a 32 bit branch.
1355 }
1356 } else {
1357 // Branch is to an unbound label. Emit space for it.
1358 uint16_t branch_id = AddBranch(branch_type, pc, cond); // Unresolved branch.
1359 if (force_32bit_) {
1360 Emit16(static_cast<uint16_t>(label->position_)); // Emit current label link.
1361 Emit16(0); // another 16 bits.
1362 } else {
1363 Emit16(static_cast<uint16_t>(label->position_)); // Emit current label link.
1364 }
1365 label->LinkTo(branch_id); // Link to the branch ID.
1366 }
1367}
1368
1369
1370void Thumb2Assembler::clz(Register rd, Register rm, Condition cond) {
1371 CHECK_NE(rd, kNoRegister);
1372 CHECK_NE(rm, kNoRegister);
1373 CheckCondition(cond);
1374 CHECK_NE(rd, PC);
1375 CHECK_NE(rm, PC);
1376 int32_t encoding = B31 | B30 | B29 | B28 | B27 |
1377 B25 | B23 | B21 | B20 |
1378 static_cast<uint32_t>(rm) << 16 |
1379 0xf << 12 |
1380 static_cast<uint32_t>(rd) << 8 |
1381 B7 |
1382 static_cast<uint32_t>(rm);
1383 Emit32(encoding);
1384}
1385
1386
1387void Thumb2Assembler::movw(Register rd, uint16_t imm16, Condition cond) {
1388 CheckCondition(cond);
1389 bool must_be_32bit = force_32bit_;
1390 if (IsHighRegister(rd)|| imm16 >= 256u) {
1391 must_be_32bit = true;
1392 }
1393
1394 if (must_be_32bit) {
1395 // Use encoding T3.
1396 uint32_t imm4 = (imm16 >> 12) & 0b1111;
1397 uint32_t i = (imm16 >> 11) & 0b1;
1398 uint32_t imm3 = (imm16 >> 8) & 0b111;
1399 uint32_t imm8 = imm16 & 0xff;
1400 int32_t encoding = B31 | B30 | B29 | B28 |
1401 B25 | B22 |
1402 static_cast<uint32_t>(rd) << 8 |
1403 i << 26 |
1404 imm4 << 16 |
1405 imm3 << 12 |
1406 imm8;
1407 Emit32(encoding);
1408 } else {
1409 int16_t encoding = B13 | static_cast<uint16_t>(rd) << 8 |
1410 imm16;
1411 Emit16(encoding);
1412 }
1413}
1414
1415
1416void Thumb2Assembler::movt(Register rd, uint16_t imm16, Condition cond) {
1417 CheckCondition(cond);
1418 // Always 32 bits.
1419 uint32_t imm4 = (imm16 >> 12) & 0b1111;
1420 uint32_t i = (imm16 >> 11) & 0b1;
1421 uint32_t imm3 = (imm16 >> 8) & 0b111;
1422 uint32_t imm8 = imm16 & 0xff;
1423 int32_t encoding = B31 | B30 | B29 | B28 |
1424 B25 | B23 | B22 |
1425 static_cast<uint32_t>(rd) << 8 |
1426 i << 26 |
1427 imm4 << 16 |
1428 imm3 << 12 |
1429 imm8;
1430 Emit32(encoding);
1431}
1432
1433
1434void Thumb2Assembler::ldrex(Register rt, Register rn, uint16_t imm, Condition cond) {
1435 CHECK_NE(rn, kNoRegister);
1436 CHECK_NE(rt, kNoRegister);
1437 CheckCondition(cond);
1438 CHECK_NE(rn, kNoRegister);
1439 CHECK_NE(rt, kNoRegister);
1440 CheckCondition(cond);
1441 CHECK_LT(imm, (1u << 10));
1442
1443 int32_t encoding = B31 | B30 | B29 | B27 | B22 | B20 |
1444 static_cast<uint32_t>(rn) << 16 |
1445 static_cast<uint32_t>(rt) << 12 |
1446 0xf << 8 |
1447 imm >> 2;
1448 Emit32(encoding);
1449}
1450
1451
1452void Thumb2Assembler::ldrex(Register rt, Register rn, Condition cond) {
1453 ldrex(rt, rn, 0, cond);
1454}
1455
1456
1457void Thumb2Assembler::strex(Register rd,
1458 Register rt,
1459 Register rn,
1460 uint16_t imm,
1461 Condition cond) {
1462 CHECK_NE(rn, kNoRegister);
1463 CHECK_NE(rd, kNoRegister);
1464 CHECK_NE(rt, kNoRegister);
1465 CheckCondition(cond);
1466 CHECK_LT(imm, (1u << 10));
1467
1468 int32_t encoding = B31 | B30 | B29 | B27 | B22 |
1469 static_cast<uint32_t>(rn) << 16 |
1470 static_cast<uint32_t>(rt) << 12 |
1471 static_cast<uint32_t>(rd) << 8 |
1472 imm >> 2;
1473 Emit32(encoding);
1474}
1475
1476
1477void Thumb2Assembler::strex(Register rd,
1478 Register rt,
1479 Register rn,
1480 Condition cond) {
1481 strex(rd, rt, rn, 0, cond);
1482}
1483
1484
1485void Thumb2Assembler::clrex(Condition cond) {
1486 CheckCondition(cond);
1487 int32_t encoding = B31 | B30 | B29 | B27 | B28 | B25 | B24 | B23 |
1488 B21 | B20 |
1489 0xf << 16 |
1490 B15 |
1491 0xf << 8 |
1492 B5 |
1493 0xf;
1494 Emit32(encoding);
1495}
1496
1497
1498void Thumb2Assembler::nop(Condition cond) {
1499 CheckCondition(cond);
1500 int16_t encoding = B15 | B13 | B12 |
1501 B11 | B10 | B9 | B8;
1502 Emit16(encoding);
1503}
1504
1505
1506void Thumb2Assembler::vmovsr(SRegister sn, Register rt, Condition cond) {
1507 CHECK_NE(sn, kNoSRegister);
1508 CHECK_NE(rt, kNoRegister);
1509 CHECK_NE(rt, SP);
1510 CHECK_NE(rt, PC);
1511 CheckCondition(cond);
1512 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1513 B27 | B26 | B25 |
1514 ((static_cast<int32_t>(sn) >> 1)*B16) |
1515 (static_cast<int32_t>(rt)*B12) | B11 | B9 |
1516 ((static_cast<int32_t>(sn) & 1)*B7) | B4;
1517 Emit32(encoding);
1518}
1519
1520
1521void Thumb2Assembler::vmovrs(Register rt, SRegister sn, Condition cond) {
1522 CHECK_NE(sn, kNoSRegister);
1523 CHECK_NE(rt, kNoRegister);
1524 CHECK_NE(rt, SP);
1525 CHECK_NE(rt, PC);
1526 CheckCondition(cond);
1527 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1528 B27 | B26 | B25 | B20 |
1529 ((static_cast<int32_t>(sn) >> 1)*B16) |
1530 (static_cast<int32_t>(rt)*B12) | B11 | B9 |
1531 ((static_cast<int32_t>(sn) & 1)*B7) | B4;
1532 Emit32(encoding);
1533}
1534
1535
1536void Thumb2Assembler::vmovsrr(SRegister sm, Register rt, Register rt2,
1537 Condition cond) {
1538 CHECK_NE(sm, kNoSRegister);
1539 CHECK_NE(sm, S31);
1540 CHECK_NE(rt, kNoRegister);
1541 CHECK_NE(rt, SP);
1542 CHECK_NE(rt, PC);
1543 CHECK_NE(rt2, kNoRegister);
1544 CHECK_NE(rt2, SP);
1545 CHECK_NE(rt2, PC);
1546 CheckCondition(cond);
1547 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1548 B27 | B26 | B22 |
1549 (static_cast<int32_t>(rt2)*B16) |
1550 (static_cast<int32_t>(rt)*B12) | B11 | B9 |
1551 ((static_cast<int32_t>(sm) & 1)*B5) | B4 |
1552 (static_cast<int32_t>(sm) >> 1);
1553 Emit32(encoding);
1554}
1555
1556
1557void Thumb2Assembler::vmovrrs(Register rt, Register rt2, SRegister sm,
1558 Condition cond) {
1559 CHECK_NE(sm, kNoSRegister);
1560 CHECK_NE(sm, S31);
1561 CHECK_NE(rt, kNoRegister);
1562 CHECK_NE(rt, SP);
1563 CHECK_NE(rt, PC);
1564 CHECK_NE(rt2, kNoRegister);
1565 CHECK_NE(rt2, SP);
1566 CHECK_NE(rt2, PC);
1567 CHECK_NE(rt, rt2);
1568 CheckCondition(cond);
1569 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1570 B27 | B26 | B22 | B20 |
1571 (static_cast<int32_t>(rt2)*B16) |
1572 (static_cast<int32_t>(rt)*B12) | B11 | B9 |
1573 ((static_cast<int32_t>(sm) & 1)*B5) | B4 |
1574 (static_cast<int32_t>(sm) >> 1);
1575 Emit32(encoding);
1576}
1577
1578
1579void Thumb2Assembler::vmovdrr(DRegister dm, Register rt, Register rt2,
1580 Condition cond) {
1581 CHECK_NE(dm, kNoDRegister);
1582 CHECK_NE(rt, kNoRegister);
1583 CHECK_NE(rt, SP);
1584 CHECK_NE(rt, PC);
1585 CHECK_NE(rt2, kNoRegister);
1586 CHECK_NE(rt2, SP);
1587 CHECK_NE(rt2, PC);
1588 CheckCondition(cond);
1589 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1590 B27 | B26 | B22 |
1591 (static_cast<int32_t>(rt2)*B16) |
1592 (static_cast<int32_t>(rt)*B12) | B11 | B9 | B8 |
1593 ((static_cast<int32_t>(dm) >> 4)*B5) | B4 |
1594 (static_cast<int32_t>(dm) & 0xf);
1595 Emit32(encoding);
1596}
1597
1598
1599void Thumb2Assembler::vmovrrd(Register rt, Register rt2, DRegister dm,
1600 Condition cond) {
1601 CHECK_NE(dm, kNoDRegister);
1602 CHECK_NE(rt, kNoRegister);
1603 CHECK_NE(rt, SP);
1604 CHECK_NE(rt, PC);
1605 CHECK_NE(rt2, kNoRegister);
1606 CHECK_NE(rt2, SP);
1607 CHECK_NE(rt2, PC);
1608 CHECK_NE(rt, rt2);
1609 CheckCondition(cond);
1610 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1611 B27 | B26 | B22 | B20 |
1612 (static_cast<int32_t>(rt2)*B16) |
1613 (static_cast<int32_t>(rt)*B12) | B11 | B9 | B8 |
1614 ((static_cast<int32_t>(dm) >> 4)*B5) | B4 |
1615 (static_cast<int32_t>(dm) & 0xf);
1616 Emit32(encoding);
1617}
1618
1619
1620void Thumb2Assembler::vldrs(SRegister sd, const Address& ad, Condition cond) {
1621 const Address& addr = static_cast<const Address&>(ad);
1622 CHECK_NE(sd, kNoSRegister);
1623 CheckCondition(cond);
1624 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1625 B27 | B26 | B24 | B20 |
1626 ((static_cast<int32_t>(sd) & 1)*B22) |
1627 ((static_cast<int32_t>(sd) >> 1)*B12) |
1628 B11 | B9 | addr.vencoding();
1629 Emit32(encoding);
1630}
1631
1632
1633void Thumb2Assembler::vstrs(SRegister sd, const Address& ad, Condition cond) {
1634 const Address& addr = static_cast<const Address&>(ad);
1635 CHECK_NE(static_cast<Register>(addr.encodingArm() & (0xf << kRnShift)), PC);
1636 CHECK_NE(sd, kNoSRegister);
1637 CheckCondition(cond);
1638 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1639 B27 | B26 | B24 |
1640 ((static_cast<int32_t>(sd) & 1)*B22) |
1641 ((static_cast<int32_t>(sd) >> 1)*B12) |
1642 B11 | B9 | addr.vencoding();
1643 Emit32(encoding);
1644}
1645
1646
1647void Thumb2Assembler::vldrd(DRegister dd, const Address& ad, Condition cond) {
1648 const Address& addr = static_cast<const Address&>(ad);
1649 CHECK_NE(dd, kNoDRegister);
1650 CheckCondition(cond);
1651 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1652 B27 | B26 | B24 | B20 |
1653 ((static_cast<int32_t>(dd) >> 4)*B22) |
1654 ((static_cast<int32_t>(dd) & 0xf)*B12) |
1655 B11 | B9 | B8 | addr.vencoding();
1656 Emit32(encoding);
1657}
1658
1659
1660void Thumb2Assembler::vstrd(DRegister dd, const Address& ad, Condition cond) {
1661 const Address& addr = static_cast<const Address&>(ad);
1662 CHECK_NE(static_cast<Register>(addr.encodingArm() & (0xf << kRnShift)), PC);
1663 CHECK_NE(dd, kNoDRegister);
1664 CheckCondition(cond);
1665 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1666 B27 | B26 | B24 |
1667 ((static_cast<int32_t>(dd) >> 4)*B22) |
1668 ((static_cast<int32_t>(dd) & 0xf)*B12) |
1669 B11 | B9 | B8 | addr.vencoding();
1670 Emit32(encoding);
1671}
1672
1673
1674void Thumb2Assembler::vpushs(SRegister reg, int nregs, Condition cond) {
1675 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, false, cond);
1676}
1677
1678
1679void Thumb2Assembler::vpushd(DRegister reg, int nregs, Condition cond) {
1680 EmitVPushPop(static_cast<uint32_t>(reg), nregs, true, true, cond);
1681}
1682
1683
1684void Thumb2Assembler::vpops(SRegister reg, int nregs, Condition cond) {
1685 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, false, cond);
1686}
1687
1688
1689void Thumb2Assembler::vpopd(DRegister reg, int nregs, Condition cond) {
1690 EmitVPushPop(static_cast<uint32_t>(reg), nregs, false, true, cond);
1691}
1692
1693
1694void Thumb2Assembler::EmitVPushPop(uint32_t reg, int nregs, bool push, bool dbl, Condition cond) {
1695 CheckCondition(cond);
1696
1697 uint32_t D;
1698 uint32_t Vd;
1699 if (dbl) {
1700 // Encoded as D:Vd.
1701 D = (reg >> 4) & 1;
1702 Vd = reg & 0b1111;
1703 } else {
1704 // Encoded as Vd:D.
1705 D = reg & 1;
1706 Vd = (reg >> 1) & 0b1111;
1707 }
1708 int32_t encoding = B27 | B26 | B21 | B19 | B18 | B16 |
1709 B11 | B9 |
1710 (dbl ? B8 : 0) |
1711 (push ? B24 : (B23 | B20)) |
1712 0b1110 << 28 |
1713 nregs << (dbl ? 1 : 0) |
1714 D << 22 |
1715 Vd << 12;
1716 Emit32(encoding);
1717}
1718
1719
1720void Thumb2Assembler::EmitVFPsss(Condition cond, int32_t opcode,
1721 SRegister sd, SRegister sn, SRegister sm) {
1722 CHECK_NE(sd, kNoSRegister);
1723 CHECK_NE(sn, kNoSRegister);
1724 CHECK_NE(sm, kNoSRegister);
1725 CheckCondition(cond);
1726 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1727 B27 | B26 | B25 | B11 | B9 | opcode |
1728 ((static_cast<int32_t>(sd) & 1)*B22) |
1729 ((static_cast<int32_t>(sn) >> 1)*B16) |
1730 ((static_cast<int32_t>(sd) >> 1)*B12) |
1731 ((static_cast<int32_t>(sn) & 1)*B7) |
1732 ((static_cast<int32_t>(sm) & 1)*B5) |
1733 (static_cast<int32_t>(sm) >> 1);
1734 Emit32(encoding);
1735}
1736
1737
1738void Thumb2Assembler::EmitVFPddd(Condition cond, int32_t opcode,
1739 DRegister dd, DRegister dn, DRegister dm) {
1740 CHECK_NE(dd, kNoDRegister);
1741 CHECK_NE(dn, kNoDRegister);
1742 CHECK_NE(dm, kNoDRegister);
1743 CheckCondition(cond);
1744 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1745 B27 | B26 | B25 | B11 | B9 | B8 | opcode |
1746 ((static_cast<int32_t>(dd) >> 4)*B22) |
1747 ((static_cast<int32_t>(dn) & 0xf)*B16) |
1748 ((static_cast<int32_t>(dd) & 0xf)*B12) |
1749 ((static_cast<int32_t>(dn) >> 4)*B7) |
1750 ((static_cast<int32_t>(dm) >> 4)*B5) |
1751 (static_cast<int32_t>(dm) & 0xf);
1752 Emit32(encoding);
1753}
1754
1755
1756void Thumb2Assembler::EmitVFPsd(Condition cond, int32_t opcode,
1757 SRegister sd, DRegister dm) {
1758 CHECK_NE(sd, kNoSRegister);
1759 CHECK_NE(dm, kNoDRegister);
1760 CheckCondition(cond);
1761 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1762 B27 | B26 | B25 | B11 | B9 | opcode |
1763 ((static_cast<int32_t>(sd) & 1)*B22) |
1764 ((static_cast<int32_t>(sd) >> 1)*B12) |
1765 ((static_cast<int32_t>(dm) >> 4)*B5) |
1766 (static_cast<int32_t>(dm) & 0xf);
1767 Emit32(encoding);
1768}
1769
1770
1771void Thumb2Assembler::EmitVFPds(Condition cond, int32_t opcode,
1772 DRegister dd, SRegister sm) {
1773 CHECK_NE(dd, kNoDRegister);
1774 CHECK_NE(sm, kNoSRegister);
1775 CheckCondition(cond);
1776 int32_t encoding = (static_cast<int32_t>(cond) << kConditionShift) |
1777 B27 | B26 | B25 | B11 | B9 | opcode |
1778 ((static_cast<int32_t>(dd) >> 4)*B22) |
1779 ((static_cast<int32_t>(dd) & 0xf)*B12) |
1780 ((static_cast<int32_t>(sm) & 1)*B5) |
1781 (static_cast<int32_t>(sm) >> 1);
1782 Emit32(encoding);
1783}
1784
1785
1786void Thumb2Assembler::vmstat(Condition cond) { // VMRS APSR_nzcv, FPSCR.
1787 CheckCondition(cond);
1788 UNIMPLEMENTED(FATAL) << "Unimplemented thumb instruction";
1789}
1790
1791
1792void Thumb2Assembler::svc(uint32_t imm8) {
1793 CHECK(IsUint(8, imm8)) << imm8;
1794 int16_t encoding = B15 | B14 | B12 |
1795 B11 | B10 | B9 | B8 |
1796 imm8;
1797 Emit16(encoding);
1798}
1799
1800
1801void Thumb2Assembler::bkpt(uint16_t imm8) {
1802 CHECK(IsUint(8, imm8)) << imm8;
1803 int16_t encoding = B15 | B13 | B12 |
1804 B11 | B10 | B9 |
1805 imm8;
1806 Emit16(encoding);
1807}
1808
1809// Convert the given IT state to a mask bit given bit 0 of the first
1810// condition and a shift position.
1811static uint8_t ToItMask(ItState s, uint8_t firstcond0, uint8_t shift) {
1812 switch (s) {
1813 case kItOmitted: return 1 << shift;
1814 case kItThen: return firstcond0 << shift;
1815 case kItElse: return !firstcond0 << shift;
1816 }
1817 return 0;
1818}
1819
1820
1821// Set the IT condition in the given position for the given state. This is used
1822// to check that conditional instructions match the preceding IT statement.
1823void Thumb2Assembler::SetItCondition(ItState s, Condition cond, uint8_t index) {
1824 switch (s) {
1825 case kItOmitted: it_conditions_[index] = AL; break;
1826 case kItThen: it_conditions_[index] = cond; break;
1827 case kItElse:
1828 it_conditions_[index] = static_cast<Condition>(static_cast<uint8_t>(cond) ^ 1);
1829 break;
1830 }
1831}
1832
1833
1834void Thumb2Assembler::it(Condition firstcond, ItState i1, ItState i2, ItState i3) {
1835 CheckCondition(AL); // Not allowed in IT block.
1836 uint8_t firstcond0 = static_cast<uint8_t>(firstcond) & 1;
1837
1838 // All conditions to AL.
1839 for (uint8_t i = 0; i < 4; ++i) {
1840 it_conditions_[i] = AL;
1841 }
1842
1843 SetItCondition(kItThen, firstcond, 0);
1844 uint8_t mask = ToItMask(i1, firstcond0, 3);
1845 SetItCondition(i1, firstcond, 1);
1846
1847 if (i1 != kItOmitted) {
1848 mask |= ToItMask(i2, firstcond0, 2);
1849 SetItCondition(i2, firstcond, 2);
1850 if (i2 != kItOmitted) {
1851 mask |= ToItMask(i3, firstcond0, 1);
1852 SetItCondition(i3, firstcond, 3);
1853 if (i3 != kItOmitted) {
1854 mask |= 0b0001;
1855 }
1856 }
1857 }
1858
1859 // Start at first condition.
1860 it_cond_index_ = 0;
1861 next_condition_ = it_conditions_[0];
1862 uint16_t encoding = B15 | B13 | B12 |
1863 B11 | B10 | B9 | B8 |
1864 firstcond << 4 |
1865 mask;
1866 Emit16(encoding);
1867}
1868
1869
1870void Thumb2Assembler::cbz(Register rn, Label* label) {
1871 CheckCondition(AL);
1872 if (label->IsBound()) {
1873 LOG(FATAL) << "cbz can only be used to branch forwards";
1874 } else {
1875 uint16_t branchid = EmitCompareAndBranch(rn, static_cast<uint16_t>(label->position_), false);
1876 label->LinkTo(branchid);
1877 }
1878}
1879
1880
1881void Thumb2Assembler::cbnz(Register rn, Label* label) {
1882 CheckCondition(AL);
1883 if (label->IsBound()) {
1884 LOG(FATAL) << "cbnz can only be used to branch forwards";
1885 } else {
1886 uint16_t branchid = EmitCompareAndBranch(rn, static_cast<uint16_t>(label->position_), true);
1887 label->LinkTo(branchid);
1888 }
1889}
1890
1891
1892void Thumb2Assembler::blx(Register rm, Condition cond) {
1893 CHECK_NE(rm, kNoRegister);
1894 CheckCondition(cond);
1895 int16_t encoding = B14 | B10 | B9 | B8 | B7 | static_cast<int16_t>(rm) << 3;
1896 Emit16(encoding);
1897}
1898
1899
1900void Thumb2Assembler::bx(Register rm, Condition cond) {
1901 CHECK_NE(rm, kNoRegister);
1902 CheckCondition(cond);
1903 int16_t encoding = B14 | B10 | B9 | B8 | static_cast<int16_t>(rm) << 3;
1904 Emit16(encoding);
1905}
1906
1907
1908void Thumb2Assembler::Push(Register rd, Condition cond) {
1909 str(rd, Address(SP, -kRegisterSize, Address::PreIndex), cond);
1910}
1911
1912
1913void Thumb2Assembler::Pop(Register rd, Condition cond) {
1914 ldr(rd, Address(SP, kRegisterSize, Address::PostIndex), cond);
1915}
1916
1917
1918void Thumb2Assembler::PushList(RegList regs, Condition cond) {
1919 stm(DB_W, SP, regs, cond);
1920}
1921
1922
1923void Thumb2Assembler::PopList(RegList regs, Condition cond) {
1924 ldm(IA_W, SP, regs, cond);
1925}
1926
1927
1928void Thumb2Assembler::Mov(Register rd, Register rm, Condition cond) {
1929 if (cond != AL || rd != rm) {
1930 mov(rd, ShifterOperand(rm), cond);
1931 }
1932}
1933
1934
1935// A branch has changed size. Make a hole for it.
1936void Thumb2Assembler::MakeHoleForBranch(uint32_t location, uint32_t delta) {
1937 // Move the contents of the buffer using: Move(newposition, oldposition)
1938 AssemblerBuffer::EnsureCapacity ensured(&buffer_);
1939 buffer_.Move(location + delta, location);
1940}
1941
1942
1943void Thumb2Assembler::Bind(Label* label) {
1944 CHECK(!label->IsBound());
1945 uint32_t bound_pc = buffer_.Size();
1946 std::vector<Branch*> changed_branches;
1947
1948 while (label->IsLinked()) {
1949 uint16_t position = label->Position(); // Branch id for linked branch.
1950 Branch* branch = GetBranch(position); // Get the branch at this id.
1951 bool changed = branch->Resolve(bound_pc); // Branch can be resolved now.
1952 uint32_t branch_location = branch->GetLocation();
1953 uint16_t next = buffer_.Load<uint16_t>(branch_location); // Get next in chain.
1954 if (changed) {
1955 MakeHoleForBranch(branch->GetLocation(), 2);
1956 if (branch->IsCompareAndBranch()) {
1957 // A cbz/cbnz instruction has changed size. There is no valid encoding for
1958 // a 32 bit cbz/cbnz so we need to change this to an instruction pair:
1959 // cmp rn, #0
1960 // b<eq|ne> target
1961 bool n = branch->GetType() == Branch::kCompareAndBranchNonZero;
1962 Condition cond = n ? NE : EQ;
1963 branch->Move(2); // Move the branch forward by 2 bytes.
1964 branch->ResetTypeAndCondition(Branch::kConditional, cond);
1965 branch->ResetSize(Branch::k16Bit);
1966
1967 // Now add a compare instruction in the place the branch was.
1968 int16_t cmp = B13 | B11 | static_cast<int16_t>(branch->GetRegister()) << 8;
1969 buffer_.Store<int16_t>(branch_location, cmp);
1970
1971 // Since have moved made a hole in the code we need to reload the
1972 // current pc.
1973 bound_pc = buffer_.Size();
1974
1975 // Now resolve the newly added branch.
1976 changed = branch->Resolve(bound_pc);
1977 if (changed) {
1978 MakeHoleForBranch(branch->GetLocation(), 2);
1979 changed_branches.push_back(branch);
1980 }
1981 } else {
1982 changed_branches.push_back(branch);
1983 }
1984 }
1985 label->position_ = next; // Move to next.
1986 }
1987 label->BindTo(bound_pc);
1988
1989 // Now relocate any changed branches. Do this until there are no more changes.
1990 std::vector<Branch*> branches_to_process = changed_branches;
1991 while (branches_to_process.size() != 0) {
1992 changed_branches.clear();
1993 for (auto& changed_branch : branches_to_process) {
1994 for (auto& branch : branches_) {
1995 bool changed = branch->Relocate(changed_branch->GetLocation(), 2);
1996 if (changed) {
1997 changed_branches.push_back(branch);
1998 }
1999 }
2000 branches_to_process = changed_branches;
2001 }
2002 }
2003}
2004
2005
2006void Thumb2Assembler::EmitBranches() {
2007 for (auto& branch : branches_) {
2008 branch->Emit(&buffer_);
2009 }
2010}
2011
2012
2013void Thumb2Assembler::Lsl(Register rd, Register rm, uint32_t shift_imm,
2014 Condition cond) {
2015 CHECK_NE(shift_imm, 0u); // Do not use Lsl if no shift is wanted.
2016 mov(rd, ShifterOperand(rm, LSL, shift_imm), cond);
2017}
2018
2019
2020void Thumb2Assembler::Lsr(Register rd, Register rm, uint32_t shift_imm,
2021 Condition cond) {
2022 CHECK_NE(shift_imm, 0u); // Do not use Lsr if no shift is wanted.
2023 if (shift_imm == 32) shift_imm = 0; // Comply to UAL syntax.
2024 mov(rd, ShifterOperand(rm, LSR, shift_imm), cond);
2025}
2026
2027
2028void Thumb2Assembler::Asr(Register rd, Register rm, uint32_t shift_imm,
2029 Condition cond) {
2030 CHECK_NE(shift_imm, 0u); // Do not use Asr if no shift is wanted.
2031 if (shift_imm == 32) shift_imm = 0; // Comply to UAL syntax.
2032 mov(rd, ShifterOperand(rm, ASR, shift_imm), cond);
2033}
2034
2035
2036void Thumb2Assembler::Ror(Register rd, Register rm, uint32_t shift_imm,
2037 Condition cond) {
2038 CHECK_NE(shift_imm, 0u); // Use Rrx instruction.
2039 mov(rd, ShifterOperand(rm, ROR, shift_imm), cond);
2040}
2041
2042
2043void Thumb2Assembler::Rrx(Register rd, Register rm, Condition cond) {
2044 mov(rd, ShifterOperand(rm, ROR, 0), cond);
2045}
2046
2047
2048int32_t Thumb2Assembler::EncodeBranchOffset(int32_t offset, int32_t inst) {
2049 // The offset is off by 4 due to the way the ARM CPUs read PC.
2050 offset -= 4;
2051 offset >>= 1;
2052
2053 uint32_t value = 0;
2054 // There are two different encodings depending on the value of bit 12. In one case
2055 // intermediate values are calculated using the sign bit.
2056 if ((inst & B12) == B12) {
2057 // 25 bits of offset.
2058 uint32_t signbit = (offset >> 31) & 0x1;
2059 uint32_t i1 = (offset >> 22) & 0x1;
2060 uint32_t i2 = (offset >> 21) & 0x1;
2061 uint32_t imm10 = (offset >> 11) & 0x03ff;
2062 uint32_t imm11 = offset & 0x07ff;
2063 uint32_t j1 = (i1 ^ signbit) ? 0 : 1;
2064 uint32_t j2 = (i2 ^ signbit) ? 0 : 1;
2065 value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm10 << 16) |
2066 imm11;
2067 // Remove the offset from the current encoding.
2068 inst &= ~(0x3ff << 16 | 0x7ff);
2069 } else {
2070 uint32_t signbit = (offset >> 31) & 0x1;
2071 uint32_t imm6 = (offset >> 11) & 0x03f;
2072 uint32_t imm11 = offset & 0x07ff;
2073 uint32_t j1 = (offset >> 19) & 1;
2074 uint32_t j2 = (offset >> 17) & 1;
2075 value = (signbit << 26) | (j1 << 13) | (j2 << 11) | (imm6 << 16) |
2076 imm11;
2077 // Remove the offset from the current encoding.
2078 inst &= ~(0x3f << 16 | 0x7ff);
2079 }
2080 // Mask out offset bits in current instruction.
2081 inst &= ~(B26 | B13 | B11);
2082 inst |= value;
2083 return inst;
2084}
2085
2086
2087int Thumb2Assembler::DecodeBranchOffset(int32_t instr) {
2088 int32_t imm32;
2089 if ((instr & B12) == B12) {
2090 uint32_t S = (instr >> 26) & 1;
2091 uint32_t J2 = (instr >> 11) & 1;
2092 uint32_t J1 = (instr >> 13) & 1;
2093 uint32_t imm10 = (instr >> 16) & 0x3FF;
2094 uint32_t imm11 = instr & 0x7FF;
2095
2096 uint32_t I1 = ~(J1 ^ S) & 1;
2097 uint32_t I2 = ~(J2 ^ S) & 1;
2098 imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
2099 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
2100 } else {
2101 uint32_t S = (instr >> 26) & 1;
2102 uint32_t J2 = (instr >> 11) & 1;
2103 uint32_t J1 = (instr >> 13) & 1;
2104 uint32_t imm6 = (instr >> 16) & 0x3F;
2105 uint32_t imm11 = instr & 0x7FF;
2106
2107 imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
2108 imm32 = (imm32 << 11) >> 11; // sign extend 21 bit immediate.
2109 }
2110 imm32 += 4;
2111 return imm32;
2112}
2113
2114
2115void Thumb2Assembler::AddConstant(Register rd, int32_t value, Condition cond) {
2116 AddConstant(rd, rd, value, cond);
2117}
2118
2119
2120void Thumb2Assembler::AddConstant(Register rd, Register rn, int32_t value,
2121 Condition cond) {
2122 if (value == 0) {
2123 if (rd != rn) {
2124 mov(rd, ShifterOperand(rn), cond);
2125 }
2126 return;
2127 }
2128 // We prefer to select the shorter code sequence rather than selecting add for
2129 // positive values and sub for negatives ones, which would slightly improve
2130 // the readability of generated code for some constants.
2131 ShifterOperand shifter_op;
2132 if (ShifterOperand::CanHoldThumb(rd, rn, ADD, value, &shifter_op)) {
2133 add(rd, rn, shifter_op, cond);
2134 } else if (ShifterOperand::CanHoldThumb(rd, rn, SUB, -value, &shifter_op)) {
2135 sub(rd, rn, shifter_op, cond);
2136 } else {
2137 CHECK(rn != IP);
2138 if (ShifterOperand::CanHoldThumb(rd, rn, MVN, ~value, &shifter_op)) {
2139 mvn(IP, shifter_op, cond);
2140 add(rd, rn, ShifterOperand(IP), cond);
2141 } else if (ShifterOperand::CanHoldThumb(rd, rn, MVN, ~(-value), &shifter_op)) {
2142 mvn(IP, shifter_op, cond);
2143 sub(rd, rn, ShifterOperand(IP), cond);
2144 } else {
2145 movw(IP, Low16Bits(value), cond);
2146 uint16_t value_high = High16Bits(value);
2147 if (value_high != 0) {
2148 movt(IP, value_high, cond);
2149 }
2150 add(rd, rn, ShifterOperand(IP), cond);
2151 }
2152 }
2153}
2154
2155
2156void Thumb2Assembler::AddConstantSetFlags(Register rd, Register rn, int32_t value,
2157 Condition cond) {
2158 ShifterOperand shifter_op;
2159 if (ShifterOperand::CanHoldThumb(rd, rn, ADD, value, &shifter_op)) {
2160 adds(rd, rn, shifter_op, cond);
2161 } else if (ShifterOperand::CanHoldThumb(rd, rn, ADD, -value, &shifter_op)) {
2162 subs(rd, rn, shifter_op, cond);
2163 } else {
2164 CHECK(rn != IP);
2165 if (ShifterOperand::CanHoldThumb(rd, rn, MVN, ~value, &shifter_op)) {
2166 mvn(IP, shifter_op, cond);
2167 adds(rd, rn, ShifterOperand(IP), cond);
2168 } else if (ShifterOperand::CanHoldThumb(rd, rn, MVN, ~(-value), &shifter_op)) {
2169 mvn(IP, shifter_op, cond);
2170 subs(rd, rn, ShifterOperand(IP), cond);
2171 } else {
2172 movw(IP, Low16Bits(value), cond);
2173 uint16_t value_high = High16Bits(value);
2174 if (value_high != 0) {
2175 movt(IP, value_high, cond);
2176 }
2177 adds(rd, rn, ShifterOperand(IP), cond);
2178 }
2179 }
2180}
2181
2182
2183void Thumb2Assembler::LoadImmediate(Register rd, int32_t value, Condition cond) {
2184 ShifterOperand shifter_op;
2185 if (ShifterOperand::CanHoldThumb(rd, R0, MOV, value, &shifter_op)) {
2186 mov(rd, shifter_op, cond);
2187 } else if (ShifterOperand::CanHoldThumb(rd, R0, MVN, ~value, &shifter_op)) {
2188 mvn(rd, shifter_op, cond);
2189 } else {
2190 movw(rd, Low16Bits(value), cond);
2191 uint16_t value_high = High16Bits(value);
2192 if (value_high != 0) {
2193 movt(rd, value_high, cond);
2194 }
2195 }
2196}
2197
2198// Implementation note: this method must emit at most one instruction when
2199// Address::CanHoldLoadOffsetThumb.
2200void Thumb2Assembler::LoadFromOffset(LoadOperandType type,
2201 Register reg,
2202 Register base,
2203 int32_t offset,
2204 Condition cond) {
2205 if (!Address::CanHoldLoadOffsetThumb(type, offset)) {
2206 CHECK(base != IP);
2207 LoadImmediate(IP, offset, cond);
2208 add(IP, IP, ShifterOperand(base), cond);
2209 base = IP;
2210 offset = 0;
2211 }
2212 CHECK(Address::CanHoldLoadOffsetThumb(type, offset));
2213 switch (type) {
2214 case kLoadSignedByte:
2215 ldrsb(reg, Address(base, offset), cond);
2216 break;
2217 case kLoadUnsignedByte:
2218 ldrb(reg, Address(base, offset), cond);
2219 break;
2220 case kLoadSignedHalfword:
2221 ldrsh(reg, Address(base, offset), cond);
2222 break;
2223 case kLoadUnsignedHalfword:
2224 ldrh(reg, Address(base, offset), cond);
2225 break;
2226 case kLoadWord:
2227 ldr(reg, Address(base, offset), cond);
2228 break;
2229 case kLoadWordPair:
2230 ldrd(reg, Address(base, offset), cond);
2231 break;
2232 default:
2233 LOG(FATAL) << "UNREACHABLE";
2234 }
2235}
2236
2237
2238// Implementation note: this method must emit at most one instruction when
2239// Address::CanHoldLoadOffsetThumb, as expected by JIT::GuardedLoadFromOffset.
2240void Thumb2Assembler::LoadSFromOffset(SRegister reg,
2241 Register base,
2242 int32_t offset,
2243 Condition cond) {
2244 if (!Address::CanHoldLoadOffsetThumb(kLoadSWord, offset)) {
2245 CHECK_NE(base, IP);
2246 LoadImmediate(IP, offset, cond);
2247 add(IP, IP, ShifterOperand(base), cond);
2248 base = IP;
2249 offset = 0;
2250 }
2251 CHECK(Address::CanHoldLoadOffsetThumb(kLoadSWord, offset));
2252 vldrs(reg, Address(base, offset), cond);
2253}
2254
2255
2256// Implementation note: this method must emit at most one instruction when
2257// Address::CanHoldLoadOffsetThumb, as expected by JIT::GuardedLoadFromOffset.
2258void Thumb2Assembler::LoadDFromOffset(DRegister reg,
2259 Register base,
2260 int32_t offset,
2261 Condition cond) {
2262 if (!Address::CanHoldLoadOffsetThumb(kLoadDWord, offset)) {
2263 CHECK_NE(base, IP);
2264 LoadImmediate(IP, offset, cond);
2265 add(IP, IP, ShifterOperand(base), cond);
2266 base = IP;
2267 offset = 0;
2268 }
2269 CHECK(Address::CanHoldLoadOffsetThumb(kLoadDWord, offset));
2270 vldrd(reg, Address(base, offset), cond);
2271}
2272
2273
2274// Implementation note: this method must emit at most one instruction when
2275// Address::CanHoldStoreOffsetThumb.
2276void Thumb2Assembler::StoreToOffset(StoreOperandType type,
2277 Register reg,
2278 Register base,
2279 int32_t offset,
2280 Condition cond) {
2281 if (!Address::CanHoldStoreOffsetThumb(type, offset)) {
2282 CHECK(reg != IP);
2283 CHECK(base != IP);
2284 LoadImmediate(IP, offset, cond);
2285 add(IP, IP, ShifterOperand(base), cond);
2286 base = IP;
2287 offset = 0;
2288 }
2289 CHECK(Address::CanHoldStoreOffsetThumb(type, offset));
2290 switch (type) {
2291 case kStoreByte:
2292 strb(reg, Address(base, offset), cond);
2293 break;
2294 case kStoreHalfword:
2295 strh(reg, Address(base, offset), cond);
2296 break;
2297 case kStoreWord:
2298 str(reg, Address(base, offset), cond);
2299 break;
2300 case kStoreWordPair:
2301 strd(reg, Address(base, offset), cond);
2302 break;
2303 default:
2304 LOG(FATAL) << "UNREACHABLE";
2305 }
2306}
2307
2308
2309// Implementation note: this method must emit at most one instruction when
2310// Address::CanHoldStoreOffsetThumb, as expected by JIT::GuardedStoreToOffset.
2311void Thumb2Assembler::StoreSToOffset(SRegister reg,
2312 Register base,
2313 int32_t offset,
2314 Condition cond) {
2315 if (!Address::CanHoldStoreOffsetThumb(kStoreSWord, offset)) {
2316 CHECK_NE(base, IP);
2317 LoadImmediate(IP, offset, cond);
2318 add(IP, IP, ShifterOperand(base), cond);
2319 base = IP;
2320 offset = 0;
2321 }
2322 CHECK(Address::CanHoldStoreOffsetThumb(kStoreSWord, offset));
2323 vstrs(reg, Address(base, offset), cond);
2324}
2325
2326
2327// Implementation note: this method must emit at most one instruction when
2328// Address::CanHoldStoreOffsetThumb, as expected by JIT::GuardedStoreSToOffset.
2329void Thumb2Assembler::StoreDToOffset(DRegister reg,
2330 Register base,
2331 int32_t offset,
2332 Condition cond) {
2333 if (!Address::CanHoldStoreOffsetThumb(kStoreDWord, offset)) {
2334 CHECK_NE(base, IP);
2335 LoadImmediate(IP, offset, cond);
2336 add(IP, IP, ShifterOperand(base), cond);
2337 base = IP;
2338 offset = 0;
2339 }
2340 CHECK(Address::CanHoldStoreOffsetThumb(kStoreDWord, offset));
2341 vstrd(reg, Address(base, offset), cond);
2342}
2343
2344
2345void Thumb2Assembler::MemoryBarrier(ManagedRegister mscratch) {
2346 CHECK_EQ(mscratch.AsArm().AsCoreRegister(), R12);
2347#if ANDROID_SMP != 0
2348 int32_t encoding = 0xf3bf8f5f; // dmb in T1 encoding.
2349 Emit32(encoding);
2350#endif
2351}
2352
2353
2354void Thumb2Assembler::CompareAndBranchIfZero(Register r, Label* label) {
2355 cbz(r, label);
2356}
2357
2358
2359void Thumb2Assembler::CompareAndBranchIfNonZero(Register r, Label* label) {
2360 cbnz(r, label);
2361}
2362} // namespace arm
2363} // namespace art