blob: f3a142472a7def21e27deab0bcc44f9117024b76 [file] [log] [blame]
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001/*
2 * Copyright (C) 2012 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 "disassembler_arm.h"
18
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080019#include <iostream>
20
Elliott Hughes07ed66b2012-12-12 18:34:25 -080021#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080022#include "base/stringprintf.h"
Elliott Hughes28fa76d2012-04-09 17:31:46 -070023#include "thread.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070024
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080025namespace art {
26namespace arm {
27
28DisassemblerArm::DisassemblerArm() {
29}
30
Ian Rogersb23a7722012-10-09 16:54:26 -070031size_t DisassemblerArm::Dump(std::ostream& os, const uint8_t* begin) {
32 if ((reinterpret_cast<intptr_t>(begin) & 1) == 0) {
33 DumpArm(os, begin);
34 return 4;
35 } else {
36 // remove thumb specifier bits
37 begin = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(begin) & ~1);
38 return DumpThumb16(os, begin);
39 }
40}
41
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080042void DisassemblerArm::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) {
43 if ((reinterpret_cast<intptr_t>(begin) & 1) == 0) {
44 for (const uint8_t* cur = begin; cur < end; cur += 4) {
45 DumpArm(os, cur);
46 }
47 } else {
48 // remove thumb specifier bits
49 begin = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(begin) & ~1);
50 end = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(end) & ~1);
51 for (const uint8_t* cur = begin; cur < end;) {
52 cur += DumpThumb16(os, cur);
53 }
54 }
55}
56
Elliott Hughes77405792012-03-15 15:22:12 -070057static const char* kConditionCodeNames[] = {
Elliott Hughescbf0b612012-03-15 16:23:47 -070058 "eq", // 0000 - equal
59 "ne", // 0001 - not-equal
60 "cs", // 0010 - carry-set, greater than, equal or unordered
61 "cc", // 0011 - carry-clear, less than
62 "mi", // 0100 - minus, negative
63 "pl", // 0101 - plus, positive or zero
64 "vs", // 0110 - overflow
65 "vc", // 0111 - no overflow
66 "hi", // 1000 - unsigned higher
67 "ls", // 1001 - unsigned lower or same
68 "ge", // 1010 - signed greater than or equal
69 "lt", // 1011 - signed less than
70 "gt", // 1100 - signed greater than
71 "le", // 1101 - signed less than or equal
72 "", // 1110 - always
73 "nv", // 1111 - never (mostly obsolete, but might be a clue that we're mistranslating)
Ian Rogers40627db2012-03-04 17:31:09 -080074};
75
76void DisassemblerArm::DumpCond(std::ostream& os, uint32_t cond) {
77 if (cond < 15) {
Elliott Hughes77405792012-03-15 15:22:12 -070078 os << kConditionCodeNames[cond];
Ian Rogers40627db2012-03-04 17:31:09 -080079 } else {
80 os << "Unexpected condition: " << cond;
81 }
82}
83
Ian Rogers40627db2012-03-04 17:31:09 -080084void DisassemblerArm::DumpBranchTarget(std::ostream& os, const uint8_t* instr_ptr, int32_t imm32) {
Elliott Hughes1ca98492012-04-12 17:21:02 -070085 os << StringPrintf("%+d (%p)", imm32, instr_ptr + imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080086}
87
88static uint32_t ReadU16(const uint8_t* ptr) {
89 return ptr[0] | (ptr[1] << 8);
90}
91
92static uint32_t ReadU32(const uint8_t* ptr) {
93 return ptr[0] | (ptr[1] << 8) | (ptr[2] << 16) | (ptr[3] << 24);
94}
95
Elliott Hughes77405792012-03-15 15:22:12 -070096static const char* kDataProcessingOperations[] = {
Elliott Hughescbf0b612012-03-15 16:23:47 -070097 "and", "eor", "sub", "rsb", "add", "adc", "sbc", "rsc",
98 "tst", "teq", "cmp", "cmn", "orr", "mov", "bic", "mvn",
Elliott Hughes77405792012-03-15 15:22:12 -070099};
100
Ian Rogersad03ef52012-03-18 19:34:47 -0700101static const char* kThumbDataProcessingOperations[] = {
102 "and", "eor", "lsl", "lsr", "asr", "adc", "sbc", "ror",
103 "tst", "rsb", "cmp", "cmn", "orr", "mul", "bic", "mvn",
104};
105
Elliott Hughes77405792012-03-15 15:22:12 -0700106struct ArmRegister {
Elliott Hughes74847412012-06-20 18:10:21 -0700107 explicit ArmRegister(uint32_t r) : r(r) { CHECK_LE(r, 15U); }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700108 ArmRegister(uint32_t instruction, uint32_t at_bit) : r((instruction >> at_bit) & 0xf) { CHECK_LE(r, 15U); }
Elliott Hughes77405792012-03-15 15:22:12 -0700109 uint32_t r;
110};
111std::ostream& operator<<(std::ostream& os, const ArmRegister& r) {
112 if (r.r == 13) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700113 os << "sp";
Elliott Hughes77405792012-03-15 15:22:12 -0700114 } else if (r.r == 14) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700115 os << "lr";
Elliott Hughes77405792012-03-15 15:22:12 -0700116 } else if (r.r == 15) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700117 os << "pc";
Elliott Hughes77405792012-03-15 15:22:12 -0700118 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700119 os << "r" << r.r;
Elliott Hughes77405792012-03-15 15:22:12 -0700120 }
121 return os;
122}
123
Elliott Hughes630e77d2012-03-22 19:20:56 -0700124struct ThumbRegister : ArmRegister {
125 ThumbRegister(uint16_t instruction, uint16_t at_bit) : ArmRegister((instruction >> at_bit) & 0x7) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700126};
127
128struct Rm {
Elliott Hughes74847412012-06-20 18:10:21 -0700129 explicit Rm(uint32_t instruction) : shift((instruction >> 4) & 0xff), rm(instruction & 0xf) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700130 uint32_t shift;
131 ArmRegister rm;
132};
133std::ostream& operator<<(std::ostream& os, const Rm& r) {
134 os << r.rm;
135 if (r.shift != 0) {
136 os << "-shift-" << r.shift; // TODO
137 }
138 return os;
139}
140
Elliott Hughes1ca98492012-04-12 17:21:02 -0700141struct ShiftedImmediate {
Elliott Hughes74847412012-06-20 18:10:21 -0700142 explicit ShiftedImmediate(uint32_t instruction) {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700143 uint32_t rotate = ((instruction >> 8) & 0xf);
144 uint32_t imm = (instruction & 0xff);
145 value = (imm >> (2 * rotate)) | (imm << (32 - (2 * rotate)));
146 }
147 uint32_t value;
Elliott Hughes77405792012-03-15 15:22:12 -0700148};
Elliott Hughes1ca98492012-04-12 17:21:02 -0700149std::ostream& operator<<(std::ostream& os, const ShiftedImmediate& rhs) {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700150 os << "#" << rhs.value;
Elliott Hughes77405792012-03-15 15:22:12 -0700151 return os;
152}
153
154struct RegisterList {
Elliott Hughes74847412012-06-20 18:10:21 -0700155 explicit RegisterList(uint32_t instruction) : register_list(instruction & 0xffff) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700156 uint32_t register_list;
157};
158std::ostream& operator<<(std::ostream& os, const RegisterList& rhs) {
159 if (rhs.register_list == 0) {
160 os << "<no register list?>";
161 return os;
162 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700163 os << "{";
Elliott Hughes77405792012-03-15 15:22:12 -0700164 bool first = true;
165 for (size_t i = 0; i < 16; i++) {
166 if ((rhs.register_list & (1 << i)) != 0) {
167 if (first) {
Elliott Hughes77405792012-03-15 15:22:12 -0700168 first = false;
169 } else {
170 os << ", ";
171 }
172 os << ArmRegister(i);
173 }
174 }
175 os << "}";
176 return os;
177}
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800178
179void DisassemblerArm::DumpArm(std::ostream& os, const uint8_t* instr_ptr) {
Elliott Hughes77405792012-03-15 15:22:12 -0700180 uint32_t instruction = ReadU32(instr_ptr);
181 uint32_t cond = (instruction >> 28) & 0xf;
182 uint32_t op1 = (instruction >> 25) & 0x7;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700183 std::string opcode;
184 std::string suffixes;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700185 std::ostringstream args;
Elliott Hughes77405792012-03-15 15:22:12 -0700186 switch (op1) {
187 case 0:
188 case 1: // Data processing instructions.
189 {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700190 if ((instruction & 0x0ff000f0) == 0x01200070) { // BKPT
191 opcode = "bkpt";
192 uint32_t imm12 = (instruction >> 8) & 0xfff;
193 uint32_t imm4 = (instruction & 0xf);
194 args << '#' << ((imm12 << 4) | imm4);
195 break;
196 }
Elliott Hughes77405792012-03-15 15:22:12 -0700197 if ((instruction & 0x0fffffd0) == 0x012fff10) { // BX and BLX (register)
Elliott Hughes3d71d072012-04-10 18:28:35 -0700198 opcode = (((instruction >> 5) & 1) ? "blx" : "bx");
Elliott Hughescbf0b612012-03-15 16:23:47 -0700199 args << ArmRegister(instruction & 0xf);
Elliott Hughes77405792012-03-15 15:22:12 -0700200 break;
201 }
202 bool i = (instruction & (1 << 25)) != 0;
203 bool s = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700204 uint32_t op = (instruction >> 21) & 0xf;
205 opcode = kDataProcessingOperations[op];
206 bool implicit_s = ((op & ~3) == 8); // TST, TEQ, CMP, and CMN.
207 if (implicit_s) {
208 // Rd is unused (and not shown), and we don't show the 's' suffix either.
209 } else {
210 if (s) {
211 suffixes += 's';
212 }
213 args << ArmRegister(instruction, 12) << ", ";
214 }
Elliott Hughes77405792012-03-15 15:22:12 -0700215 if (i) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700216 args << ArmRegister(instruction, 16) << ", " << ShiftedImmediate(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700217 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700218 args << Rm(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700219 }
220 }
221 break;
222 case 2: // Load/store word and unsigned byte.
223 {
224 bool p = (instruction & (1 << 24)) != 0;
225 bool b = (instruction & (1 << 22)) != 0;
226 bool w = (instruction & (1 << 21)) != 0;
227 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700228 opcode = StringPrintf("%s%s", (l ? "ldr" : "str"), (b ? "b" : ""));
Elliott Hughes630e77d2012-03-22 19:20:56 -0700229 args << ArmRegister(instruction, 12) << ", ";
230 ArmRegister rn(instruction, 16);
231 if (rn.r == 0xf) {
Elliott Hughes77405792012-03-15 15:22:12 -0700232 UNIMPLEMENTED(FATAL) << "literals";
233 } else {
234 bool wback = !p || w;
Elliott Hughes1ca98492012-04-12 17:21:02 -0700235 uint32_t offset = (instruction & 0xfff);
Elliott Hughes77405792012-03-15 15:22:12 -0700236 if (p && !wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700237 args << "[" << rn << ", #" << offset << "]";
Elliott Hughes77405792012-03-15 15:22:12 -0700238 } else if (p && wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700239 args << "[" << rn << ", #" << offset << "]!";
Elliott Hughes77405792012-03-15 15:22:12 -0700240 } else if (!p && wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700241 args << "[" << rn << "], #" << offset;
Elliott Hughes77405792012-03-15 15:22:12 -0700242 } else {
243 LOG(FATAL) << p << " " << w;
244 }
Elliott Hughes3d71d072012-04-10 18:28:35 -0700245 if (rn.r == 9) {
246 args << " ; ";
Elliott Hughes1ca98492012-04-12 17:21:02 -0700247 Thread::DumpThreadOffset(args, offset, 4);
Elliott Hughes3d71d072012-04-10 18:28:35 -0700248 }
Elliott Hughes77405792012-03-15 15:22:12 -0700249 }
250 }
251 break;
252 case 4: // Load/store multiple.
253 {
254 bool p = (instruction & (1 << 24)) != 0;
255 bool u = (instruction & (1 << 23)) != 0;
256 bool w = (instruction & (1 << 21)) != 0;
257 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700258 opcode = StringPrintf("%s%c%c", (l ? "ldm" : "stm"), (u ? 'i' : 'd'), (p ? 'b' : 'a'));
Elliott Hughes630e77d2012-03-22 19:20:56 -0700259 args << ArmRegister(instruction, 16) << (w ? "!" : "") << ", " << RegisterList(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700260 }
261 break;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700262 case 5: // Branch/branch with link.
263 {
264 bool bl = (instruction & (1 << 24)) != 0;
265 opcode = (bl ? "bl" : "b");
Elliott Hughesd86261e2012-04-11 11:23:23 -0700266 int32_t imm26 = (instruction & 0xffffff) << 2;
267 int32_t imm32 = (imm26 << 6) >> 6; // Sign extend.
Elliott Hughes3d71d072012-04-10 18:28:35 -0700268 DumpBranchTarget(args, instr_ptr + 8, imm32);
269 }
270 break;
Elliott Hughes77405792012-03-15 15:22:12 -0700271 default:
Elliott Hughes3d71d072012-04-10 18:28:35 -0700272 opcode = "???";
Elliott Hughes77405792012-03-15 15:22:12 -0700273 break;
274 }
Elliott Hughes3d71d072012-04-10 18:28:35 -0700275 opcode += kConditionCodeNames[cond];
276 opcode += suffixes;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700277 // TODO: a more complete ARM disassembler could generate wider opcodes.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800278 os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instruction, opcode.c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800279}
280
281size_t DisassemblerArm::DumpThumb32(std::ostream& os, const uint8_t* instr_ptr) {
282 uint32_t instr = (ReadU16(instr_ptr) << 16) | ReadU16(instr_ptr + 2);
283 // |111|1 1|1000000|0000|1111110000000000|
284 // |5 3|2 1|0987654|3 0|5 0 5 0|
285 // |---|---|-------|----|----------------|
286 // |332|2 2|2222222|1111|1111110000000000|
287 // |1 9|8 7|6543210|9 6|5 0 5 0|
288 // |---|---|-------|----|----------------|
289 // |111|op1| op2 | | |
290 uint32_t op1 = (instr >> 27) & 3;
Elliott Hughes77405792012-03-15 15:22:12 -0700291 if (op1 == 0) {
292 return DumpThumb16(os, instr_ptr);
293 }
294
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800295 uint32_t op2 = (instr >> 20) & 0x7F;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700296 std::ostringstream opcode;
297 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800298 switch (op1) {
299 case 0:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800300 break;
301 case 1:
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700302 if ((op2 & 0x64) == 0) { // 00x x0xx
303 // |111|11|10|00|0|00|0000|1111110000000000|
304 // |5 3|21|09|87|6|54|3 0|5 0 5 0|
305 // |---|--|--|--|-|--|----|----------------|
306 // |332|22|22|22|2|22|1111|1111110000000000|
307 // |1 9|87|65|43|2|10|9 6|5 0 5 0|
308 // |---|--|--|--|-|--|----|----------------|
309 // |111|01|00|op|0|WL| Rn | |
310 // |111|01| op2 | | |
311 // STM - 111 01 00-01-0-W0 nnnn rrrrrrrrrrrrrrrr
312 // LDM - 111 01 00-01-0-W1 nnnn rrrrrrrrrrrrrrrr
313 // PUSH- 111 01 00-01-0-10 1101 0M0rrrrrrrrrrrrr
314 // POP - 111 01 00-01-0-11 1101 PM0rrrrrrrrrrrrr
315 uint32_t op = (instr >> 23) & 3;
316 uint32_t W = (instr >> 21) & 1;
317 uint32_t L = (instr >> 20) & 1;
318 ArmRegister Rn(instr, 16);
319 if (op == 1 || op == 2) {
320 if (op == 1) {
321 if (L == 0) {
322 opcode << "stm";
323 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800324 } else {
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700325 if (Rn.r != 13) {
326 opcode << "ldm";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700327 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700328 } else {
329 opcode << "pop";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800330 }
331 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700332 } else {
333 if (L == 0) {
334 if (Rn.r != 13) {
335 opcode << "stmdb";
336 args << Rn << (W == 0 ? "" : "!") << ", ";
337 } else {
338 opcode << "push";
339 }
340 } else {
341 opcode << "ldmdb";
342 args << Rn << (W == 0 ? "" : "!") << ", ";
343 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800344 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700345 args << RegisterList(instr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800346 }
Ian Rogers9af89402012-09-07 11:29:35 -0700347 } else if ((op2 & 0x64) == 4) { // 00x x1xx
348 uint32_t op3 = (instr >> 23) & 3;
349 uint32_t op4 = (instr >> 20) & 3;
350 //uint32_t op5 = (instr >> 4) & 0xF;
351 ArmRegister Rn(instr, 16);
352 ArmRegister Rt(instr, 12);
353 uint32_t imm8 = instr & 0xFF;
354 if (op3 == 0 && op4 == 0) { // STREX
355 ArmRegister Rd(instr, 8);
356 opcode << "strex";
357 args << Rd << ", " << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
358 } else if (op3 == 0 && op4 == 1) { // LDREX
359 opcode << "ldrex";
360 args << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
361 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700362 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx
363 // Data-processing (shifted register)
364 // |111|1110|0000|0|0000|1111|1100|0000|0000|
365 // |5 3|2109|8765|4|3 0|5 |10 8|7 5 |3 0|
366 // |---|----|----|-|----|----|----|----|----|
367 // |332|2222|2222|2|1111|1111|1100|0000|0000|
368 // |1 9|8765|4321|0|9 6|5 |10 8|7 5 |3 0|
369 // |---|----|----|-|----|----|----|----|----|
370 // |111|0101| op3|S| Rn | | Rd | | Rm |
371 uint32_t op3 = (instr >> 21) & 0xF;
372 uint32_t S = (instr >> 20) & 1;
373 uint32_t Rn = (instr >> 16) & 0xF;
374 ArmRegister Rd(instr, 8);
375 ArmRegister Rm(instr, 0);
376 switch (op3) {
377 case 0x0:
378 if (Rn != 0xF) {
379 opcode << "and";
380 } else {
381 opcode << "tst";
382 S = 0; // don't print 's'
383 }
384 break;
385 case 0x1: opcode << "bic"; break;
386 case 0x2:
387 if (Rn != 0xF) {
388 opcode << "orr";
389 } else {
390 opcode << "mov";
391 }
392 break;
393 case 0x3:
394 if (Rn != 0xF) {
395 opcode << "orn";
396 } else {
397 opcode << "mvn";
398 }
399 break;
400 case 0x4:
401 if (Rn != 0xF) {
402 opcode << "eor";
403 } else {
404 opcode << "teq";
405 S = 0; // don't print 's'
406 }
407 break;
408 case 0x6: opcode << "pkh"; break;
409 case 0x8:
410 if (Rn != 0xF) {
411 opcode << "add";
412 } else {
413 opcode << "cmn";
414 S = 0; // don't print 's'
415 }
416 break;
417 case 0xA: opcode << "adc"; break;
418 case 0xB: opcode << "sbc"; break;
419 }
Ian Rogers087b2412012-03-21 01:30:32 -0700420
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700421 if (S == 1) {
422 opcode << "s";
Ian Rogers087b2412012-03-21 01:30:32 -0700423 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700424 opcode << ".w";
425 args << Rd << ", " << Rm;
426 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx
427 // Co-processor instructions
428 // |111|1|11|000000|0000|1111|1100|000|0 |0000|
429 // |5 3|2|10|987654|3 0|54 2|10 8|7 5|4 | 0|
430 // |---|-|--|------|----|----|----|---|---|----|
431 // |332|2|22|222222|1111|1111|1100|000|0 |0000|
432 // |1 9|8|76|543210|9 6|54 2|10 8|7 5|4 | 0|
433 // |---|-|--|------|----|----|----|---|---|----|
434 // |111| |11| op3 | Rn | |copr| |op4| |
435 uint32_t op3 = (instr >> 20) & 0x3F;
436 uint32_t coproc = (instr >> 8) & 0xF;
437 uint32_t op4 = (instr >> 4) & 0x1;
Ian Rogers9af89402012-09-07 11:29:35 -0700438 if ((op3 == 2 || op3 == 2 || op3 == 6 || op3 == 7) || // 00x1x
439 (op3 >= 8 && op3 <= 15) || (op3 >= 16 && op3 <= 31)) { // 001xxx, 01xxxx
440 // Extension register load/store instructions
441 // |111|1|110|00000|0000|1111|110|000000000|
442 // |5 3|2|109|87654|3 0|54 2|10 |87 54 0|
443 // |---|-|---|-----|----|----|---|---------|
444 // |332|2|222|22222|1111|1111|110|000000000|
445 // |1 9|8|765|43210|9 6|54 2|10 |87 54 0|
446 // |---|-|---|-----|----|----|---|---------|
447 // |111|T|110| op3 | Rn | |101| |
448 // 111 0 110 01001 0011 0000 101 000000011 - ec930a03
449 if (op3 == 9 || op3 == 0xD) { // VLDM
450 // 1110 110 PUDW1 nnnn dddd 101S iiii iiii
451 uint32_t P = (instr >> 24) & 1;
452 uint32_t U = (instr >> 23) & 1;
453 uint32_t D = (instr >> 22) & 1;
454 uint32_t W = (instr >> 21) & 1;
455 uint32_t S = (instr >> 8) & 1;
456 ArmRegister Rn(instr, 16);
457 uint32_t Vd = (instr >> 12) & 0xF;
458 uint32_t imm8 = instr & 0xFF;
459 uint32_t d = (S == 0 ? ((Vd << 1) | D) : (Vd | (D << 4)));
460 if (P == 0 && U == 0 && W == 0) {
461 // TODO: 64bit transfers between ARM core and extension registers.
462 } else if (P == 0 && U == 1 && Rn.r == 13) { // VPOP
463 opcode << "vpop" << (S == 0 ? ".f64" : ".f32");
464 args << d << " .. " << (d + imm8);
465 } else if (P == 1 && W == 0) { // VLDR
466 opcode << "vldr" << (S == 0 ? ".f64" : ".f32");
467 args << d << ", [" << Rn << ", #" << imm8 << "]";
468 } else { // VLDM
469 opcode << "vldm" << (S == 0 ? ".f64" : ".f32");
470 args << Rn << ", " << d << " .. " << (d + imm8);
471 }
472 }
Ian Rogers0183dd72012-09-17 23:06:51 -0700473 } else if ((op3 & 0x30) == 0x20 && op4 == 0) { // 10 xxxx ... 0
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700474 if ((coproc & 0xE) == 0xA) {
475 // VFP data-processing instructions
476 // |111|1|1100|0000|0000|1111|110|0|00 |0|0|0000|
477 // |5 3|2|1098|7654|3 0|54 2|10 |8|76 |5|4|3 0|
478 // |---|-|----|----|----|----|---|-|----|-|-|----|
479 // |332|2|2222|2222|1111|1111|110|0|00 |0|0|0000|
480 // |1 9|8|7654|3210|9 6|54 2|109|8|76 |5|4|3 0|
481 // |---|-|----|----|----|----|---|-|----|-|-|----|
482 // |111|T|1110|opc1|opc2| |101| |opc3| | | |
483 // 111 0 1110|1111 0100 1110 101 0 01 1 0 1001 - eef4ea69
484 uint32_t opc1 = (instr >> 20) & 0xF;
485 uint32_t opc2 = (instr >> 16) & 0xF;
Ian Rogers0183dd72012-09-17 23:06:51 -0700486 uint32_t opc3 = (instr >> 6) & 0x3;
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700487 if ((opc1 & 0xB) == 0xB) { // 1x11
488 // Other VFP data-processing instructions.
Ian Rogers0183dd72012-09-17 23:06:51 -0700489 uint32_t D = (instr >> 22) & 0x1;
490 uint32_t Vd = (instr >> 12) & 0xF;
491 uint32_t sz = (instr >> 8) & 1;
492 uint32_t M = (instr >> 5) & 1;
493 uint32_t Vm = instr & 0xF;
494 bool dp_operation = sz == 1;
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700495 switch (opc2) {
Ian Rogers0183dd72012-09-17 23:06:51 -0700496 case 0x1: // Vneg/Vsqrt
497 // 1110 11101 D 11 0001 dddd 101s o1M0 mmmm
498 opcode << (opc3 == 1 ? "vneg" : "vsqrt") << (dp_operation ? ".f64" : ".f32");
499 if (dp_operation) {
500 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
501 } else {
502 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
503 }
504 break;
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700505 case 0x4: case 0x5: { // Vector compare
506 // 1110 11101 D 11 0100 dddd 101 sE1M0 mmmm
Ian Rogers0183dd72012-09-17 23:06:51 -0700507 opcode << (opc3 == 1 ? "vcmp" : "vcmpe") << (dp_operation ? ".f64" : ".f32");
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700508 if (dp_operation) {
509 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
510 } else {
511 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
512 }
513 break;
514 }
515 }
516 }
517 }
Ian Rogers0183dd72012-09-17 23:06:51 -0700518 } else if ((op3 & 0x30) == 0x30) { // 11 xxxx
519 // Advanced SIMD
520 if ((instr & 0xFFBF0ED0) == 0xeeb10ac0) { // Vsqrt
521 // 1110 11101 D 11 0001 dddd 101S 11M0 mmmm
522 // 1110 11101 0 11 0001 1101 1011 1100 1000 - eeb1dbc8
523 uint32_t D = (instr >> 22) & 1;
524 uint32_t Vd = (instr >> 12) & 0xF;
525 uint32_t sz = (instr >> 8) & 1;
526 uint32_t M = (instr >> 5) & 1;
527 uint32_t Vm = instr & 0xF;
528 bool dp_operation = sz == 1;
529 opcode << "vsqrt" << (dp_operation ? ".f64" : ".f32");
530 if (dp_operation) {
531 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
532 } else {
533 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
534 }
535 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700536 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800537 }
538 break;
Ian Rogers40627db2012-03-04 17:31:09 -0800539 case 2:
540 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) {
541 // Data-processing (modified immediate)
542 // |111|11|10|0000|0|0000|1|111|1100|00000000|
543 // |5 3|21|09|8765|4|3 0|5|4 2|10 8|7 5 0|
544 // |---|--|--|----|-|----|-|---|----|--------|
545 // |332|22|22|2222|2|1111|1|111|1100|00000000|
546 // |1 9|87|65|4321|0|9 6|5|4 2|10 8|7 5 0|
547 // |---|--|--|----|-|----|-|---|----|--------|
548 // |111|10|i0| op3|S| Rn |0|iii| Rd |iiiiiiii|
549 // 111 10 x0 xxxx x xxxx opxxx xxxx xxxxxxxx
Ian Rogers40627db2012-03-04 17:31:09 -0800550 uint32_t i = (instr >> 26) & 1;
551 uint32_t op3 = (instr >> 21) & 0xF;
552 uint32_t S = (instr >> 20) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700553 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800554 uint32_t imm3 = (instr >> 12) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700555 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800556 uint32_t imm8 = instr & 0xFF;
Jeff Hao7cb0f9c2013-02-04 16:15:27 -0800557 int32_t imm32 = (i << 11) | (imm3 << 8) | imm8;
558 if (Rn.r == 0xF && (op3 == 0x2 || op3 == 0x3)) {
559 if (op3 == 0x2) {
560 opcode << "mov";
561 if (S == 1) {
562 opcode << "s";
563 }
564 opcode << ".w";
565 } else {
566 opcode << "mvn";
567 if (S == 1) {
568 opcode << "s";
569 }
570 }
571 args << Rd << ", ThumbExpand(" << imm32 << ")";
572 } else if (Rd.r == 0xF && S == 1 &&
573 (op3 == 0x0 || op3 == 0x4 || op3 == 0x8 || op3 == 0xD)) {
574 if (op3 == 0x0) {
575 opcode << "tst";
576 } else if (op3 == 0x4) {
577 opcode << "teq";
578 } else if (op3 == 0x8) {
579 opcode << "cmw";
580 } else {
581 opcode << "cmp.w";
582 }
583 args << Rn << ", ThumbExpand(" << imm32 << ")";
584 } else {
585 switch (op3) {
586 case 0x0: opcode << "and"; break;
587 case 0x1: opcode << "bic"; break;
588 case 0x2: opcode << "orr"; break;
589 case 0x3: opcode << "orn"; break;
590 case 0x4: opcode << "eor"; break;
591 case 0x8: opcode << "add"; break;
592 case 0xA: opcode << "adc"; break;
593 case 0xB: opcode << "sbc"; break;
594 case 0xD: opcode << "sub"; break;
595 case 0xE: opcode << "rsb"; break;
596 default: opcode << "UNKNOWN DPMI-" << op3; break;
597 }
598 if (S == 1) {
599 opcode << "s";
600 }
601 args << Rd << ", " << Rn << ", ThumbExpand(" << imm32 << ")";
Ian Rogers40627db2012-03-04 17:31:09 -0800602 }
Ian Rogers40627db2012-03-04 17:31:09 -0800603 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
604 // Data-processing (plain binary immediate)
605 // |111|11|10|00000|0000|1|111110000000000|
606 // |5 3|21|09|87654|3 0|5|4 0 5 0|
607 // |---|--|--|-----|----|-|---------------|
608 // |332|22|22|22222|1111|1|111110000000000|
609 // |1 9|87|65|43210|9 6|5|4 0 5 0|
610 // |---|--|--|-----|----|-|---------------|
611 // |111|10|x1| op3 | Rn |0|xxxxxxxxxxxxxxx|
612 uint32_t op3 = (instr >> 20) & 0x1F;
Ian Rogers40627db2012-03-04 17:31:09 -0800613 switch (op3) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700614 case 0x00: {
615 ArmRegister Rd(instr, 8);
616 ArmRegister Rn(instr, 16);
617 uint32_t i = (instr >> 26) & 1;
618 uint32_t imm3 = (instr >> 12) & 0x7;
619 uint32_t imm8 = instr & 0xFF;
620 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
621 if (Rn.r != 0xF) {
622 opcode << "addw";
623 args << Rd << ", " << Rn << ", #" << imm12;
624 } else {
625 opcode << "adr";
626 args << Rd << ", ";
627 DumpBranchTarget(args, instr_ptr + 4, imm12);
628 }
629 break;
630 }
Ian Rogers40627db2012-03-04 17:31:09 -0800631 case 0x04: {
632 // MOVW Rd, #imm16 - 111 10 i0 0010 0 iiii 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700633 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800634 uint32_t i = (instr >> 26) & 1;
635 uint32_t imm3 = (instr >> 12) & 0x7;
636 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700637 uint32_t Rn = (instr >> 16) & 0xF;
Ian Rogers40627db2012-03-04 17:31:09 -0800638 uint32_t imm16 = (Rn << 12) | (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700639 opcode << "movw";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700640 args << Rd << ", #" << imm16;
Ian Rogers40627db2012-03-04 17:31:09 -0800641 break;
642 }
643 case 0x0A: {
644 // SUB.W Rd, Rn #imm12 - 111 10 i1 0101 0 nnnn 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700645 ArmRegister Rd(instr, 8);
646 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800647 uint32_t i = (instr >> 26) & 1;
648 uint32_t imm3 = (instr >> 12) & 0x7;
649 uint32_t imm8 = instr & 0xFF;
650 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700651 opcode << "sub.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700652 args << Rd << ", " << Rn << ", #" << imm12;
Ian Rogers40627db2012-03-04 17:31:09 -0800653 break;
654 }
jeffhaoeae26912013-01-28 16:29:54 -0800655 case 0x16: {
656 // BFI Rd, Rn, #lsb, #width - 111 10 0 11 011 0 nnnn 0 iii dddd ii 0 iiiii
657 ArmRegister Rd(instr, 8);
658 ArmRegister Rn(instr, 16);
659 uint32_t msb = instr & 0x1F;
660 uint32_t imm2 = (instr >> 6) & 0x3;
661 uint32_t imm3 = (instr >> 12) & 0x7;
662 uint32_t lsb = (imm3 << 2) | imm2;
663 uint32_t width = msb - lsb + 1;
664 if (Rn.r != 0xF) {
665 opcode << "bfi";
666 args << Rd << ", " << Rn << ", #" << lsb << ", #" << width;
667 } else {
668 opcode << "bfc";
669 args << Rd << ", #" << lsb << ", #" << width;
670 }
671 break;
672 }
Ian Rogers40627db2012-03-04 17:31:09 -0800673 default:
674 break;
675 }
676 } else {
677 // Branches and miscellaneous control
678 // |111|11|1000000|0000|1|111|1100|00000000|
679 // |5 3|21|0987654|3 0|5|4 2|10 8|7 5 0|
680 // |---|--|-------|----|-|---|----|--------|
681 // |332|22|2222222|1111|1|111|1100|00000000|
682 // |1 9|87|6543210|9 6|5|4 2|10 8|7 5 0|
683 // |---|--|-------|----|-|---|----|--------|
684 // |111|10| op2 | |1|op3|op4 | |
685
686 uint32_t op3 = (instr >> 12) & 7;
687 //uint32_t op4 = (instr >> 8) & 0xF;
688 switch (op3) {
689 case 0:
690 if ((op2 & 0x38) != 0x38) {
691 // Conditional branch
692 // |111|11|1|0000|000000|1|1|1 |1|1 |10000000000|
693 // |5 3|21|0|9876|543 0|5|4|3 |2|1 |0 5 0|
694 // |---|--|-|----|------|-|-|--|-|--|-----------|
695 // |332|22|2|2222|221111|1|1|1 |1|1 |10000000000|
696 // |1 9|87|6|5432|109 6|5|4|3 |2|1 |0 5 0|
697 // |---|--|-|----|------|-|-|--|-|--|-----------|
698 // |111|10|S|cond| imm6 |1|0|J1|0|J2| imm11 |
699 uint32_t S = (instr >> 26) & 1;
700 uint32_t J2 = (instr >> 11) & 1;
701 uint32_t J1 = (instr >> 13) & 1;
702 uint32_t imm6 = (instr >> 16) & 0x3F;
703 uint32_t imm11 = instr & 0x7FF;
704 uint32_t cond = (instr >> 22) & 0xF;
705 int32_t imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
706 imm32 = (imm32 << 11) >> 11; // sign extend 21bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -0700707 opcode << "b";
708 DumpCond(opcode, cond);
709 opcode << ".w";
710 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers9af89402012-09-07 11:29:35 -0700711 } else if (op2 == 0x3B) {
712 // Miscellaneous control instructions
713 uint32_t op5 = (instr >> 4) & 0xF;
714 switch (op5) {
715 case 4: opcode << "dsb"; break;
716 case 5: opcode << "dmb"; break;
717 case 6: opcode << "isb"; break;
718 }
Ian Rogers40627db2012-03-04 17:31:09 -0800719 }
720 break;
721 case 2:
722 case 1: case 3:
723 break;
724 case 4: case 6: case 5: case 7: {
725 // BL, BLX (immediate)
726 // |111|11|1|0000000000|11|1 |1|1 |10000000000|
727 // |5 3|21|0|9876543 0|54|3 |2|1 |0 5 0|
728 // |---|--|-|----------|--|--|-|--|-----------|
729 // |332|22|2|2222221111|11|1 |1|1 |10000000000|
730 // |1 9|87|6|5 0 6|54|3 |2|1 |0 5 0|
731 // |---|--|-|----------|--|--|-|--|-----------|
732 // |111|10|S| imm10 |11|J1|L|J2| imm11 |
733 uint32_t S = (instr >> 26) & 1;
734 uint32_t J2 = (instr >> 11) & 1;
735 uint32_t L = (instr >> 12) & 1;
736 uint32_t J1 = (instr >> 13) & 1;
737 uint32_t imm10 = (instr >> 16) & 0x3FF;
738 uint32_t imm11 = instr & 0x7FF;
739 if (L == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700740 opcode << "bx";
Ian Rogers40627db2012-03-04 17:31:09 -0800741 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700742 opcode << "blx";
Ian Rogers40627db2012-03-04 17:31:09 -0800743 }
744 uint32_t I1 = ~(J1 ^ S);
745 uint32_t I2 = ~(J2 ^ S);
746 int32_t imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
747 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
Elliott Hughescbf0b612012-03-15 16:23:47 -0700748 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800749 break;
750 }
751 }
752 }
753 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800754 case 3:
755 switch (op2) {
756 case 0x00: case 0x02: case 0x04: case 0x06: // 000xxx0
757 case 0x08: case 0x0A: case 0x0C: case 0x0E: {
758 // Store single data item
Ian Rogers40627db2012-03-04 17:31:09 -0800759 // |111|11|100|000|0|0000|1111|110000|000000|
760 // |5 3|21|098|765|4|3 0|5 2|10 6|5 0|
761 // |---|--|---|---|-|----|----|------|------|
762 // |332|22|222|222|2|1111|1111|110000|000000|
763 // |1 9|87|654|321|0|9 6|5 2|10 6|5 0|
764 // |---|--|---|---|-|----|----|------|------|
765 // |111|11|000|op3|0| | | op4 | |
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800766 uint32_t op3 = (instr >> 21) & 7;
767 //uint32_t op4 = (instr >> 6) & 0x3F;
768 switch (op3) {
Ian Rogers087b2412012-03-21 01:30:32 -0700769 case 0x0: case 0x4: {
770 // STRB Rt,[Rn,#+/-imm8] - 111 11 00 0 0 00 0 nnnn tttt 1 PUWii ii iiii
771 // STRB Rt,[Rn,Rm,lsl #imm2] - 111 11 00 0 0 00 0 nnnn tttt 0 00000 ii mmmm
Elliott Hughes630e77d2012-03-22 19:20:56 -0700772 ArmRegister Rn(instr, 16);
773 ArmRegister Rt(instr, 12);
Ian Rogers087b2412012-03-21 01:30:32 -0700774 opcode << "strb";
775 if ((instr & 0x800) != 0) {
776 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700777 args << Rt << ", [" << Rn << ",#" << imm8 << "]";
Ian Rogers087b2412012-03-21 01:30:32 -0700778 } else {
779 uint32_t imm2 = (instr >> 4) & 3;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700780 ArmRegister Rm(instr, 0);
781 args << Rt << ", [" << Rn << ", " << Rm;
Ian Rogers087b2412012-03-21 01:30:32 -0700782 if (imm2 != 0) {
783 args << ", " << "lsl #" << imm2;
784 }
785 args << "]";
786 }
787 break;
788 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800789 case 0x2: case 0x6: {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700790 ArmRegister Rn(instr, 16);
791 ArmRegister Rt(instr, 12);
Ian Rogers40627db2012-03-04 17:31:09 -0800792 if (op3 == 2) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700793 if ((instr & 0x800) != 0) {
794 // STR Rt, [Rn, #imm8] - 111 11 000 010 0 nnnn tttt 1PUWiiiiiiii
795 uint32_t P = (instr >> 10) & 1;
796 uint32_t U = (instr >> 9) & 1;
797 uint32_t W = (instr >> 8) & 1;
798 uint32_t imm8 = instr & 0xFF;
799 int32_t imm32 = (imm8 << 24) >> 24; // sign-extend imm8
800 if (Rn.r == 13 && P == 1 && U == 0 && W == 1 && imm32 == 4) {
801 opcode << "push";
802 args << Rt;
803 } else if (Rn.r == 15 || (P == 0 && W == 0)) {
804 opcode << "UNDEFINED";
Ian Rogers40627db2012-03-04 17:31:09 -0800805 } else {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700806 if (P == 1 && U == 1 && W == 0) {
807 opcode << "strt";
808 } else {
809 opcode << "str";
810 }
811 args << Rt << ", [" << Rn;
812 if (P == 0 && W == 1) {
813 args << "], #" << imm32;
814 } else {
815 args << ", #" << imm32 << "]";
816 if (W == 1) {
817 args << "!";
818 }
Ian Rogers40627db2012-03-04 17:31:09 -0800819 }
820 }
Ian Rogers66a3fca2012-04-09 19:51:34 -0700821 } else {
822 // STR Rt, [Rn, Rm, LSL #imm2] - 111 11 000 010 0 nnnn tttt 000000iimmmm
823 ArmRegister Rn(instr, 16);
824 ArmRegister Rt(instr, 12);
825 ArmRegister Rm(instr, 0);
826 uint32_t imm2 = (instr >> 4) & 3;
827 opcode << "str.w";
828 args << Rt << ", [" << Rn << ", " << Rm;
829 if (imm2 != 0) {
830 args << ", lsl #" << imm2;
831 }
832 args << "]";
Ian Rogers40627db2012-03-04 17:31:09 -0800833 }
834 } else if (op3 == 6) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700835 // STR.W Rt, [Rn, #imm12] - 111 11 000 110 0 nnnn tttt iiiiiiiiiiii
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800836 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700837 opcode << "str.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700838 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800839 }
Ian Rogers40627db2012-03-04 17:31:09 -0800840 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800841 }
842 }
843
844 break;
845 }
jeffhaoeae26912013-01-28 16:29:54 -0800846 case 0x03: case 0x0B: case 0x13: case 0x1B: { // 00xx011
847 // Load halfword
848 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
849 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
850 // |---|--|--|---|--|-|----|----|------|------|
851 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
852 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
853 // |---|--|--|---|--|-|----|----|------|------|
854 // |111|11|00|op3|01|1| Rn | Rt | op4 | |
855 // |111|11| op2 | | | imm12 |
856 uint32_t op3 = (instr >> 23) & 3;
857 ArmRegister Rn(instr, 16);
858 ArmRegister Rt(instr, 12);
859 if (Rt.r != 15) {
860 if (op3 == 1) {
861 // LDRH.W Rt, [Rn, #imm12] - 111 11 00 01 011 nnnn tttt iiiiiiiiiiii
862 uint32_t imm12 = instr & 0xFFF;
863 opcode << "ldrh.w";
864 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
865 if (Rn.r == 9) {
866 args << " ; ";
867 Thread::DumpThreadOffset(args, imm12, 4);
868 } else if (Rn.r == 15) {
869 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
870 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
871 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
872 }
873 } else if (op3 == 3) {
874 // LDRSH.W Rt, [Rn, #imm12] - 111 11 00 11 011 nnnn tttt iiiiiiiiiiii
875 uint32_t imm12 = instr & 0xFFF;
876 opcode << "ldrsh.w";
877 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
878 if (Rn.r == 9) {
879 args << " ; ";
880 Thread::DumpThreadOffset(args, imm12, 4);
881 } else if (Rn.r == 15) {
882 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
883 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
884 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
885 }
886 }
887 }
888 break;
889 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800890 case 0x05: case 0x0D: case 0x15: case 0x1D: { // 00xx101
891 // Load word
892 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
893 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
894 // |---|--|--|---|--|-|----|----|------|------|
895 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
896 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
897 // |---|--|--|---|--|-|----|----|------|------|
898 // |111|11|00|op3|10|1| Rn | Rt | op4 | |
899 // |111|11| op2 | | | imm12 |
900 uint32_t op3 = (instr >> 23) & 3;
901 uint32_t op4 = (instr >> 6) & 0x3F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700902 ArmRegister Rn(instr, 16);
903 ArmRegister Rt(instr, 12);
904 if (op3 == 1 || Rn.r == 15) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800905 // LDR.W Rt, [Rn, #imm12] - 111 11 00 00 101 nnnn tttt iiiiiiiiiiii
906 // LDR.W Rt, [PC, #imm12] - 111 11 00 0x 101 1111 tttt iiiiiiiiiiii
907 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700908 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700909 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700910 if (Rn.r == 9) {
911 args << " ; ";
912 Thread::DumpThreadOffset(args, imm12, 4);
Ian Rogers5b9b1bc2012-04-09 22:51:43 -0700913 } else if (Rn.r == 15) {
914 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
915 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
916 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700917 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800918 } else if (op4 == 0) {
919 // LDR.W Rt, [Rn, Rm{, LSL #imm2}] - 111 11 00 00 101 nnnn tttt 000000iimmmm
920 uint32_t imm2 = (instr >> 4) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700921 ArmRegister rm(instr, 0);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700922 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700923 args << Rt << ", [" << Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800924 if (imm2 != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700925 args << ", lsl #" << imm2;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800926 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700927 args << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800928 } else {
929 // LDRT Rt, [Rn, #imm8] - 111 11 00 00 101 nnnn tttt 1110iiiiiiii
930 uint32_t imm8 = instr & 0xFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700931 opcode << "ldrt";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700932 args << Rt << ", [" << Rn << ", #" << imm8 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800933 }
934 break;
935 }
936 }
937 default:
938 break;
939 }
Ian Rogers9af89402012-09-07 11:29:35 -0700940
941 // Apply any IT-block conditions to the opcode if necessary.
942 if (!it_conditions_.empty()) {
943 opcode << it_conditions_.back();
944 it_conditions_.pop_back();
945 }
946
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800947 os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800948 return 4;
949}
950
951size_t DisassemblerArm::DumpThumb16(std::ostream& os, const uint8_t* instr_ptr) {
952 uint16_t instr = ReadU16(instr_ptr);
953 bool is_32bit = ((instr & 0xF000) == 0xF000) || ((instr & 0xF800) == 0xE800);
954 if (is_32bit) {
955 return DumpThumb32(os, instr_ptr);
956 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700957 std::ostringstream opcode;
958 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800959 uint16_t opcode1 = instr >> 10;
960 if (opcode1 < 0x10) {
961 // shift (immediate), add, subtract, move, and compare
962 uint16_t opcode2 = instr >> 9;
963 switch (opcode2) {
964 case 0x0: case 0x1: case 0x2: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
965 case 0x8: case 0x9: case 0xA: case 0xB: {
966 // Logical shift left - 00 000xx xxxxxxxxx
967 // Logical shift right - 00 001xx xxxxxxxxx
968 // Arithmetic shift right - 00 010xx xxxxxxxxx
969 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700970 ThumbRegister rm(instr, 3);
971 ThumbRegister Rd(instr, 7);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800972 if (opcode2 <= 3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700973 opcode << "lsls";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800974 } else if (opcode2 <= 7) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700975 opcode << "lsrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800976 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700977 opcode << "asrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800978 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700979 args << Rd << ", " << rm << ", #" << imm5;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800980 break;
981 }
982 case 0xC: case 0xD: case 0xE: case 0xF: {
983 // Add register - 00 01100 mmm nnn ddd
984 // Sub register - 00 01101 mmm nnn ddd
985 // Add 3-bit immediate - 00 01110 iii nnn ddd
986 // Sub 3-bit immediate - 00 01111 iii nnn ddd
987 uint16_t imm3_or_Rm = (instr >> 6) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700988 ThumbRegister Rn(instr, 3);
989 ThumbRegister Rd(instr, 0);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800990 if ((opcode2 & 2) != 0 && imm3_or_Rm == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700991 opcode << "mov";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800992 } else {
993 if ((opcode2 & 1) == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700994 opcode << "adds";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800995 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700996 opcode << "subs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800997 }
998 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700999 args << Rd << ", " << Rn;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001000 if ((opcode2 & 2) == 0) {
Elliott Hughes630e77d2012-03-22 19:20:56 -07001001 ArmRegister Rm(imm3_or_Rm);
1002 args << ", " << Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001003 } else if (imm3_or_Rm != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001004 args << ", #" << imm3_or_Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001005 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001006 break;
1007 }
1008 case 0x10: case 0x11: case 0x12: case 0x13:
1009 case 0x14: case 0x15: case 0x16: case 0x17:
1010 case 0x18: case 0x19: case 0x1A: case 0x1B:
1011 case 0x1C: case 0x1D: case 0x1E: case 0x1F: {
1012 // MOVS Rd, #imm8 - 00100 ddd iiiiiiii
1013 // CMP Rn, #imm8 - 00101 nnn iiiiiiii
1014 // ADDS Rn, #imm8 - 00110 nnn iiiiiiii
1015 // SUBS Rn, #imm8 - 00111 nnn iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -07001016 ThumbRegister Rn(instr, 8);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001017 uint16_t imm8 = instr & 0xFF;
1018 switch (opcode2 >> 2) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001019 case 4: opcode << "movs"; break;
1020 case 5: opcode << "cmp"; break;
1021 case 6: opcode << "adds"; break;
1022 case 7: opcode << "subs"; break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001023 }
Elliott Hughes630e77d2012-03-22 19:20:56 -07001024 args << Rn << ", #" << imm8;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001025 break;
1026 }
1027 default:
1028 break;
1029 }
Ian Rogersad03ef52012-03-18 19:34:47 -07001030 } else if (opcode1 == 0x10) {
1031 // Data-processing
1032 uint16_t opcode2 = (instr >> 6) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001033 ThumbRegister rm(instr, 3);
1034 ThumbRegister rdn(instr, 0);
Ian Rogersad03ef52012-03-18 19:34:47 -07001035 opcode << kThumbDataProcessingOperations[opcode2];
Elliott Hughes630e77d2012-03-22 19:20:56 -07001036 args << rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001037 } else if (opcode1 == 0x11) {
1038 // Special data instructions and branch and exchange
1039 uint16_t opcode2 = (instr >> 6) & 0x0F;
1040 switch (opcode2) {
1041 case 0x0: case 0x1: case 0x2: case 0x3: {
1042 // Add low registers - 010001 0000 xxxxxx
1043 // Add high registers - 010001 0001/001x xxxxxx
1044 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001045 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001046 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001047 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001048 opcode << "add";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001049 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001050 break;
1051 }
1052 case 0x8: case 0x9: case 0xA: case 0xB: {
1053 // Move low registers - 010001 1000 xxxxxx
1054 // Move high registers - 010001 1001/101x xxxxxx
1055 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001056 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001057 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001058 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001059 opcode << "mov";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001060 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001061 break;
1062 }
1063 case 0x5: case 0x6: case 0x7: {
1064 // Compare high registers - 010001 0101/011x xxxxxx
1065 uint16_t N = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001066 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001067 uint16_t Rn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001068 ArmRegister N_Rn((N << 3) | Rn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001069 opcode << "cmp";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001070 args << N_Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001071 break;
1072 }
1073 case 0xC: case 0xD: case 0xE: case 0xF: {
1074 // Branch and exchange - 010001 110x xxxxxx
1075 // Branch with link and exchange - 010001 111x xxxxxx
Elliott Hughes630e77d2012-03-22 19:20:56 -07001076 ArmRegister rm(instr, 3);
1077 opcode << ((opcode2 & 0x2) == 0 ? "bx" : "blx");
1078 args << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001079 break;
1080 }
1081 default:
1082 break;
1083 }
jeffhaoeae26912013-01-28 16:29:54 -08001084 } else if (opcode1 == 0x12 || opcode1 == 0x13) { // 01001x
1085 ThumbRegister Rt(instr, 8);
1086 uint16_t imm8 = instr & 0xFF;
1087 opcode << "ldr";
1088 args << Rt << ", [pc, #" << (imm8 << 2) << "]";
Ian Rogersd83bc362012-09-07 17:43:13 -07001089 } else if ((opcode1 >= 0x14 && opcode1 <= 0x17) || // 0101xx
1090 (opcode1 >= 0x18 && opcode1 <= 0x1f) || // 011xxx
1091 (opcode1 >= 0x20 && opcode1 <= 0x27)) { // 100xxx
1092 // Load/store single data item
1093 uint16_t opA = (instr >> 12) & 0xF;
1094 if (opA == 0x5) {
1095 uint16_t opB = (instr >> 9) & 0x7;
1096 ThumbRegister Rm(instr, 6);
1097 ThumbRegister Rn(instr, 3);
1098 ThumbRegister Rt(instr, 0);
1099 switch(opB) {
1100 case 0: opcode << "str"; break;
1101 case 1: opcode << "strh"; break;
1102 case 2: opcode << "strb"; break;
1103 case 3: opcode << "ldrsb"; break;
1104 case 4: opcode << "ldr"; break;
1105 case 5: opcode << "ldrh"; break;
1106 case 6: opcode << "ldrb"; break;
1107 case 7: opcode << "ldrsh"; break;
1108 }
1109 args << Rt << ", [" << Rn << ", " << Rm << "]";
1110 } else if (opA == 9) {
1111 uint16_t opB = (instr >> 11) & 1;
1112 ThumbRegister Rt(instr, 8);
1113 uint16_t imm8 = instr & 0xFF;
1114 opcode << (opB == 0 ? "str" : "ldr");
Ian Rogers137e88f2012-10-08 17:46:47 -07001115 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogersd83bc362012-09-07 17:43:13 -07001116 } else {
1117 uint16_t imm5 = (instr >> 6) & 0x1F;
1118 uint16_t opB = (instr >> 11) & 1;
1119 ThumbRegister Rn(instr, 3);
1120 ThumbRegister Rt(instr, 0);
1121 switch(opA) {
1122 case 6:
1123 imm5 <<= 2;
1124 opcode << (opB == 0 ? "str" : "ldr");
1125 break;
1126 case 7:
1127 imm5 <<= 0;
1128 opcode << (opB == 0 ? "strb" : "ldrb");
1129 break;
1130 case 8:
1131 imm5 <<= 1;
1132 opcode << (opB == 0 ? "strh" : "ldrh");
1133 break;
1134 }
1135 args << Rt << ", [" << Rn << ", #" << imm5 << "]";
1136 }
jeffhaoeae26912013-01-28 16:29:54 -08001137 } else if (opcode1 >= 0x34 && opcode1 <= 0x37) { // 1101xx
1138 uint32_t imm8 = instr & 0xFF;
1139 uint32_t cond = (instr >> 8) & 0xF;
1140 opcode << "b";
1141 DumpCond(opcode, cond);
1142 DumpBranchTarget(args, instr_ptr + 4, (imm8 << 1));
Ian Rogers9af89402012-09-07 11:29:35 -07001143 } else if ((instr & 0xF800) == 0xA800) {
1144 // Generate SP-relative address
1145 ThumbRegister rd(instr, 8);
1146 int imm8 = instr & 0xFF;
1147 opcode << "add";
1148 args << rd << ", sp, #" << (imm8 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001149 } else if ((instr & 0xF000) == 0xB000) {
1150 // Miscellaneous 16-bit instructions
1151 uint16_t opcode2 = (instr >> 5) & 0x7F;
1152 switch (opcode2) {
1153 case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: {
1154 // Add immediate to SP - 1011 00000 ii iiiii
1155 // Subtract immediate from SP - 1011 00001 ii iiiii
1156 int imm7 = instr & 0x7F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001157 opcode << ((opcode2 & 4) == 0 ? "add" : "sub");
Elliott Hughescbf0b612012-03-15 16:23:47 -07001158 args << "sp, sp, #" << (imm7 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001159 break;
1160 }
Ian Rogers087b2412012-03-21 01:30:32 -07001161 case 0x08: case 0x09: case 0x0A: case 0x0B: // 0001xxx
Ian Rogersebbc5772012-04-11 17:00:08 -07001162 case 0x0C: case 0x0D: case 0x0E: case 0x0F:
1163 case 0x48: case 0x49: case 0x4A: case 0x4B: // 1001xxx
1164 case 0x4C: case 0x4D: case 0x4E: case 0x4F: {
Ian Rogers087b2412012-03-21 01:30:32 -07001165 // CBNZ, CBZ
1166 uint16_t op = (instr >> 11) & 1;
1167 uint16_t i = (instr >> 9) & 1;
1168 uint16_t imm5 = (instr >> 3) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001169 ThumbRegister Rn(instr, 0);
Ian Rogers087b2412012-03-21 01:30:32 -07001170 opcode << (op != 0 ? "cbnz" : "cbz");
1171 uint32_t imm32 = (i << 7) | (imm5 << 1);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001172 args << Rn << ", ";
Ian Rogers087b2412012-03-21 01:30:32 -07001173 DumpBranchTarget(args, instr_ptr + 4, imm32);
1174 break;
1175 }
Ian Rogers40627db2012-03-04 17:31:09 -08001176 case 0x78: case 0x79: case 0x7A: case 0x7B: // 1111xxx
1177 case 0x7C: case 0x7D: case 0x7E: case 0x7F: {
1178 // If-Then, and hints
1179 uint16_t opA = (instr >> 4) & 0xF;
1180 uint16_t opB = instr & 0xF;
1181 if (opB == 0) {
1182 switch (opA) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001183 case 0: opcode << "nop"; break;
1184 case 1: opcode << "yield"; break;
1185 case 2: opcode << "wfe"; break;
1186 case 3: opcode << "sev"; break;
Ian Rogers40627db2012-03-04 17:31:09 -08001187 default: break;
1188 }
1189 } else {
Elliott Hughes105afd22012-04-10 15:04:25 -07001190 uint32_t first_cond = opA;
1191 uint32_t mask = opB;
Elliott Hughescbf0b612012-03-15 16:23:47 -07001192 opcode << "it";
Elliott Hughes105afd22012-04-10 15:04:25 -07001193
1194 // Flesh out the base "it" opcode with the specific collection of 't's and 'e's,
1195 // and store up the actual condition codes we'll want to add to the next few opcodes.
1196 size_t count = 3 - CTZ(mask);
1197 it_conditions_.resize(count + 2); // Plus the implicit 't', plus the "" for the IT itself.
1198 for (size_t i = 0; i < count; ++i) {
1199 bool positive_cond = ((first_cond & 1) != 0);
1200 bool positive_mask = ((mask & (1 << (3 - i))) != 0);
1201 if (positive_mask == positive_cond) {
1202 opcode << 't';
1203 it_conditions_[i] = kConditionCodeNames[first_cond];
1204 } else {
1205 opcode << 'e';
1206 it_conditions_[i] = kConditionCodeNames[first_cond ^ 1];
1207 }
1208 }
1209 it_conditions_[count] = kConditionCodeNames[first_cond]; // The implicit 't'.
1210
1211 it_conditions_[count + 1] = ""; // No condition code for the IT itself...
1212 DumpCond(args, first_cond); // ...because it's considered an argument.
Ian Rogers40627db2012-03-04 17:31:09 -08001213 }
1214 break;
1215 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001216 default:
1217 break;
1218 }
1219 } else if (((instr & 0xF000) == 0x5000) || ((instr & 0xE000) == 0x6000) ||
1220 ((instr & 0xE000) == 0x8000)) {
1221 // Load/store single data item
1222 uint16_t opA = instr >> 12;
1223 //uint16_t opB = (instr >> 9) & 7;
1224 switch (opA) {
1225 case 0x6: {
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001226 // STR Rt, [Rn, #imm] - 01100 iiiii nnn ttt
1227 // LDR Rt, [Rn, #imm] - 01101 iiiii nnn ttt
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001228 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001229 ThumbRegister Rn(instr, 3);
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001230 ThumbRegister Rt(instr, 0);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001231 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1232 args << Rt << ", [" << Rn << ", #" << (imm5 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001233 break;
1234 }
1235 case 0x9: {
1236 // STR Rt, [SP, #imm] - 01100 ttt iiiiiiii
1237 // LDR Rt, [SP, #imm] - 01101 ttt iiiiiiii
1238 uint16_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001239 ThumbRegister Rt(instr, 8);
1240 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1241 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001242 break;
1243 }
1244 default:
1245 break;
1246 }
Ian Rogers40627db2012-03-04 17:31:09 -08001247 } else if (opcode1 == 0x38 || opcode1 == 0x39) {
1248 uint16_t imm11 = instr & 0x7FFF;
1249 int32_t imm32 = imm11 << 1;
1250 imm32 = (imm32 << 20) >> 20; // sign extend 12 bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -07001251 opcode << "b";
1252 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001253 }
Elliott Hughes105afd22012-04-10 15:04:25 -07001254
1255 // Apply any IT-block conditions to the opcode if necessary.
1256 if (!it_conditions_.empty()) {
1257 opcode << it_conditions_.back();
1258 it_conditions_.pop_back();
1259 }
1260
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001261 os << StringPrintf("%p: %04x \t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001262 }
1263 return 2;
1264}
1265
1266} // namespace arm
1267} // namespace art