blob: eb0ca8a324aa1cbc45350356ed8435afcd8212cb [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;
557 int32_t imm32 = (i << 12) | (imm3 << 8) | imm8;
558 switch (op3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700559 case 0x0: opcode << "and"; break;
560 case 0x1: opcode << "bic"; break;
561 case 0x2: opcode << "orr"; break;
562 case 0x3: opcode << "orn"; break;
563 case 0x4: opcode << "eor"; break;
564 case 0x8: opcode << "add"; break;
565 case 0xA: opcode << "adc"; break;
566 case 0xB: opcode << "sbc"; break;
567 case 0xD: opcode << "sub"; break;
568 case 0xE: opcode << "rsb"; break;
569 default: opcode << "UNKNOWN DPMI-" << op3; break;
Ian Rogers40627db2012-03-04 17:31:09 -0800570 }
571 if (S == 1) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700572 opcode << "s";
Ian Rogers40627db2012-03-04 17:31:09 -0800573 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700574 args << Rd << ", " << Rn << ", ThumbExpand(" << imm32 << ")";
Ian Rogers40627db2012-03-04 17:31:09 -0800575 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
576 // Data-processing (plain binary immediate)
577 // |111|11|10|00000|0000|1|111110000000000|
578 // |5 3|21|09|87654|3 0|5|4 0 5 0|
579 // |---|--|--|-----|----|-|---------------|
580 // |332|22|22|22222|1111|1|111110000000000|
581 // |1 9|87|65|43210|9 6|5|4 0 5 0|
582 // |---|--|--|-----|----|-|---------------|
583 // |111|10|x1| op3 | Rn |0|xxxxxxxxxxxxxxx|
584 uint32_t op3 = (instr >> 20) & 0x1F;
Ian Rogers40627db2012-03-04 17:31:09 -0800585 switch (op3) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700586 case 0x00: {
587 ArmRegister Rd(instr, 8);
588 ArmRegister Rn(instr, 16);
589 uint32_t i = (instr >> 26) & 1;
590 uint32_t imm3 = (instr >> 12) & 0x7;
591 uint32_t imm8 = instr & 0xFF;
592 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
593 if (Rn.r != 0xF) {
594 opcode << "addw";
595 args << Rd << ", " << Rn << ", #" << imm12;
596 } else {
597 opcode << "adr";
598 args << Rd << ", ";
599 DumpBranchTarget(args, instr_ptr + 4, imm12);
600 }
601 break;
602 }
Ian Rogers40627db2012-03-04 17:31:09 -0800603 case 0x04: {
604 // MOVW Rd, #imm16 - 111 10 i0 0010 0 iiii 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700605 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800606 uint32_t i = (instr >> 26) & 1;
607 uint32_t imm3 = (instr >> 12) & 0x7;
608 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700609 uint32_t Rn = (instr >> 16) & 0xF;
Ian Rogers40627db2012-03-04 17:31:09 -0800610 uint32_t imm16 = (Rn << 12) | (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700611 opcode << "movw";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700612 args << Rd << ", #" << imm16;
Ian Rogers40627db2012-03-04 17:31:09 -0800613 break;
614 }
615 case 0x0A: {
616 // SUB.W Rd, Rn #imm12 - 111 10 i1 0101 0 nnnn 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700617 ArmRegister Rd(instr, 8);
618 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800619 uint32_t i = (instr >> 26) & 1;
620 uint32_t imm3 = (instr >> 12) & 0x7;
621 uint32_t imm8 = instr & 0xFF;
622 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700623 opcode << "sub.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700624 args << Rd << ", " << Rn << ", #" << imm12;
Ian Rogers40627db2012-03-04 17:31:09 -0800625 break;
626 }
jeffhaoeae26912013-01-28 16:29:54 -0800627 case 0x16: {
628 // BFI Rd, Rn, #lsb, #width - 111 10 0 11 011 0 nnnn 0 iii dddd ii 0 iiiii
629 ArmRegister Rd(instr, 8);
630 ArmRegister Rn(instr, 16);
631 uint32_t msb = instr & 0x1F;
632 uint32_t imm2 = (instr >> 6) & 0x3;
633 uint32_t imm3 = (instr >> 12) & 0x7;
634 uint32_t lsb = (imm3 << 2) | imm2;
635 uint32_t width = msb - lsb + 1;
636 if (Rn.r != 0xF) {
637 opcode << "bfi";
638 args << Rd << ", " << Rn << ", #" << lsb << ", #" << width;
639 } else {
640 opcode << "bfc";
641 args << Rd << ", #" << lsb << ", #" << width;
642 }
643 break;
644 }
Ian Rogers40627db2012-03-04 17:31:09 -0800645 default:
646 break;
647 }
648 } else {
649 // Branches and miscellaneous control
650 // |111|11|1000000|0000|1|111|1100|00000000|
651 // |5 3|21|0987654|3 0|5|4 2|10 8|7 5 0|
652 // |---|--|-------|----|-|---|----|--------|
653 // |332|22|2222222|1111|1|111|1100|00000000|
654 // |1 9|87|6543210|9 6|5|4 2|10 8|7 5 0|
655 // |---|--|-------|----|-|---|----|--------|
656 // |111|10| op2 | |1|op3|op4 | |
657
658 uint32_t op3 = (instr >> 12) & 7;
659 //uint32_t op4 = (instr >> 8) & 0xF;
660 switch (op3) {
661 case 0:
662 if ((op2 & 0x38) != 0x38) {
663 // Conditional branch
664 // |111|11|1|0000|000000|1|1|1 |1|1 |10000000000|
665 // |5 3|21|0|9876|543 0|5|4|3 |2|1 |0 5 0|
666 // |---|--|-|----|------|-|-|--|-|--|-----------|
667 // |332|22|2|2222|221111|1|1|1 |1|1 |10000000000|
668 // |1 9|87|6|5432|109 6|5|4|3 |2|1 |0 5 0|
669 // |---|--|-|----|------|-|-|--|-|--|-----------|
670 // |111|10|S|cond| imm6 |1|0|J1|0|J2| imm11 |
671 uint32_t S = (instr >> 26) & 1;
672 uint32_t J2 = (instr >> 11) & 1;
673 uint32_t J1 = (instr >> 13) & 1;
674 uint32_t imm6 = (instr >> 16) & 0x3F;
675 uint32_t imm11 = instr & 0x7FF;
676 uint32_t cond = (instr >> 22) & 0xF;
677 int32_t imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
678 imm32 = (imm32 << 11) >> 11; // sign extend 21bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -0700679 opcode << "b";
680 DumpCond(opcode, cond);
681 opcode << ".w";
682 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers9af89402012-09-07 11:29:35 -0700683 } else if (op2 == 0x3B) {
684 // Miscellaneous control instructions
685 uint32_t op5 = (instr >> 4) & 0xF;
686 switch (op5) {
687 case 4: opcode << "dsb"; break;
688 case 5: opcode << "dmb"; break;
689 case 6: opcode << "isb"; break;
690 }
Ian Rogers40627db2012-03-04 17:31:09 -0800691 }
692 break;
693 case 2:
694 case 1: case 3:
695 break;
696 case 4: case 6: case 5: case 7: {
697 // BL, BLX (immediate)
698 // |111|11|1|0000000000|11|1 |1|1 |10000000000|
699 // |5 3|21|0|9876543 0|54|3 |2|1 |0 5 0|
700 // |---|--|-|----------|--|--|-|--|-----------|
701 // |332|22|2|2222221111|11|1 |1|1 |10000000000|
702 // |1 9|87|6|5 0 6|54|3 |2|1 |0 5 0|
703 // |---|--|-|----------|--|--|-|--|-----------|
704 // |111|10|S| imm10 |11|J1|L|J2| imm11 |
705 uint32_t S = (instr >> 26) & 1;
706 uint32_t J2 = (instr >> 11) & 1;
707 uint32_t L = (instr >> 12) & 1;
708 uint32_t J1 = (instr >> 13) & 1;
709 uint32_t imm10 = (instr >> 16) & 0x3FF;
710 uint32_t imm11 = instr & 0x7FF;
711 if (L == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700712 opcode << "bx";
Ian Rogers40627db2012-03-04 17:31:09 -0800713 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700714 opcode << "blx";
Ian Rogers40627db2012-03-04 17:31:09 -0800715 }
716 uint32_t I1 = ~(J1 ^ S);
717 uint32_t I2 = ~(J2 ^ S);
718 int32_t imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
719 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
Elliott Hughescbf0b612012-03-15 16:23:47 -0700720 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800721 break;
722 }
723 }
724 }
725 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800726 case 3:
727 switch (op2) {
728 case 0x00: case 0x02: case 0x04: case 0x06: // 000xxx0
729 case 0x08: case 0x0A: case 0x0C: case 0x0E: {
730 // Store single data item
Ian Rogers40627db2012-03-04 17:31:09 -0800731 // |111|11|100|000|0|0000|1111|110000|000000|
732 // |5 3|21|098|765|4|3 0|5 2|10 6|5 0|
733 // |---|--|---|---|-|----|----|------|------|
734 // |332|22|222|222|2|1111|1111|110000|000000|
735 // |1 9|87|654|321|0|9 6|5 2|10 6|5 0|
736 // |---|--|---|---|-|----|----|------|------|
737 // |111|11|000|op3|0| | | op4 | |
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800738 uint32_t op3 = (instr >> 21) & 7;
739 //uint32_t op4 = (instr >> 6) & 0x3F;
740 switch (op3) {
Ian Rogers087b2412012-03-21 01:30:32 -0700741 case 0x0: case 0x4: {
742 // STRB Rt,[Rn,#+/-imm8] - 111 11 00 0 0 00 0 nnnn tttt 1 PUWii ii iiii
743 // 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 -0700744 ArmRegister Rn(instr, 16);
745 ArmRegister Rt(instr, 12);
Ian Rogers087b2412012-03-21 01:30:32 -0700746 opcode << "strb";
747 if ((instr & 0x800) != 0) {
748 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700749 args << Rt << ", [" << Rn << ",#" << imm8 << "]";
Ian Rogers087b2412012-03-21 01:30:32 -0700750 } else {
751 uint32_t imm2 = (instr >> 4) & 3;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700752 ArmRegister Rm(instr, 0);
753 args << Rt << ", [" << Rn << ", " << Rm;
Ian Rogers087b2412012-03-21 01:30:32 -0700754 if (imm2 != 0) {
755 args << ", " << "lsl #" << imm2;
756 }
757 args << "]";
758 }
759 break;
760 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800761 case 0x2: case 0x6: {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700762 ArmRegister Rn(instr, 16);
763 ArmRegister Rt(instr, 12);
Ian Rogers40627db2012-03-04 17:31:09 -0800764 if (op3 == 2) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700765 if ((instr & 0x800) != 0) {
766 // STR Rt, [Rn, #imm8] - 111 11 000 010 0 nnnn tttt 1PUWiiiiiiii
767 uint32_t P = (instr >> 10) & 1;
768 uint32_t U = (instr >> 9) & 1;
769 uint32_t W = (instr >> 8) & 1;
770 uint32_t imm8 = instr & 0xFF;
771 int32_t imm32 = (imm8 << 24) >> 24; // sign-extend imm8
772 if (Rn.r == 13 && P == 1 && U == 0 && W == 1 && imm32 == 4) {
773 opcode << "push";
774 args << Rt;
775 } else if (Rn.r == 15 || (P == 0 && W == 0)) {
776 opcode << "UNDEFINED";
Ian Rogers40627db2012-03-04 17:31:09 -0800777 } else {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700778 if (P == 1 && U == 1 && W == 0) {
779 opcode << "strt";
780 } else {
781 opcode << "str";
782 }
783 args << Rt << ", [" << Rn;
784 if (P == 0 && W == 1) {
785 args << "], #" << imm32;
786 } else {
787 args << ", #" << imm32 << "]";
788 if (W == 1) {
789 args << "!";
790 }
Ian Rogers40627db2012-03-04 17:31:09 -0800791 }
792 }
Ian Rogers66a3fca2012-04-09 19:51:34 -0700793 } else {
794 // STR Rt, [Rn, Rm, LSL #imm2] - 111 11 000 010 0 nnnn tttt 000000iimmmm
795 ArmRegister Rn(instr, 16);
796 ArmRegister Rt(instr, 12);
797 ArmRegister Rm(instr, 0);
798 uint32_t imm2 = (instr >> 4) & 3;
799 opcode << "str.w";
800 args << Rt << ", [" << Rn << ", " << Rm;
801 if (imm2 != 0) {
802 args << ", lsl #" << imm2;
803 }
804 args << "]";
Ian Rogers40627db2012-03-04 17:31:09 -0800805 }
806 } else if (op3 == 6) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700807 // STR.W Rt, [Rn, #imm12] - 111 11 000 110 0 nnnn tttt iiiiiiiiiiii
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800808 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700809 opcode << "str.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700810 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800811 }
Ian Rogers40627db2012-03-04 17:31:09 -0800812 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800813 }
814 }
815
816 break;
817 }
jeffhaoeae26912013-01-28 16:29:54 -0800818 case 0x03: case 0x0B: case 0x13: case 0x1B: { // 00xx011
819 // Load halfword
820 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
821 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
822 // |---|--|--|---|--|-|----|----|------|------|
823 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
824 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
825 // |---|--|--|---|--|-|----|----|------|------|
826 // |111|11|00|op3|01|1| Rn | Rt | op4 | |
827 // |111|11| op2 | | | imm12 |
828 uint32_t op3 = (instr >> 23) & 3;
829 ArmRegister Rn(instr, 16);
830 ArmRegister Rt(instr, 12);
831 if (Rt.r != 15) {
832 if (op3 == 1) {
833 // LDRH.W Rt, [Rn, #imm12] - 111 11 00 01 011 nnnn tttt iiiiiiiiiiii
834 uint32_t imm12 = instr & 0xFFF;
835 opcode << "ldrh.w";
836 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
837 if (Rn.r == 9) {
838 args << " ; ";
839 Thread::DumpThreadOffset(args, imm12, 4);
840 } else if (Rn.r == 15) {
841 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
842 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
843 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
844 }
845 } else if (op3 == 3) {
846 // LDRSH.W Rt, [Rn, #imm12] - 111 11 00 11 011 nnnn tttt iiiiiiiiiiii
847 uint32_t imm12 = instr & 0xFFF;
848 opcode << "ldrsh.w";
849 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
850 if (Rn.r == 9) {
851 args << " ; ";
852 Thread::DumpThreadOffset(args, imm12, 4);
853 } else if (Rn.r == 15) {
854 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
855 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
856 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
857 }
858 }
859 }
860 break;
861 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800862 case 0x05: case 0x0D: case 0x15: case 0x1D: { // 00xx101
863 // Load word
864 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
865 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
866 // |---|--|--|---|--|-|----|----|------|------|
867 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
868 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
869 // |---|--|--|---|--|-|----|----|------|------|
870 // |111|11|00|op3|10|1| Rn | Rt | op4 | |
871 // |111|11| op2 | | | imm12 |
872 uint32_t op3 = (instr >> 23) & 3;
873 uint32_t op4 = (instr >> 6) & 0x3F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700874 ArmRegister Rn(instr, 16);
875 ArmRegister Rt(instr, 12);
876 if (op3 == 1 || Rn.r == 15) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800877 // LDR.W Rt, [Rn, #imm12] - 111 11 00 00 101 nnnn tttt iiiiiiiiiiii
878 // LDR.W Rt, [PC, #imm12] - 111 11 00 0x 101 1111 tttt iiiiiiiiiiii
879 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700880 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700881 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700882 if (Rn.r == 9) {
883 args << " ; ";
884 Thread::DumpThreadOffset(args, imm12, 4);
Ian Rogers5b9b1bc2012-04-09 22:51:43 -0700885 } else if (Rn.r == 15) {
886 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
887 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
888 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700889 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800890 } else if (op4 == 0) {
891 // LDR.W Rt, [Rn, Rm{, LSL #imm2}] - 111 11 00 00 101 nnnn tttt 000000iimmmm
892 uint32_t imm2 = (instr >> 4) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700893 ArmRegister rm(instr, 0);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700894 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700895 args << Rt << ", [" << Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800896 if (imm2 != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700897 args << ", lsl #" << imm2;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800898 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700899 args << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800900 } else {
901 // LDRT Rt, [Rn, #imm8] - 111 11 00 00 101 nnnn tttt 1110iiiiiiii
902 uint32_t imm8 = instr & 0xFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700903 opcode << "ldrt";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700904 args << Rt << ", [" << Rn << ", #" << imm8 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800905 }
906 break;
907 }
908 }
909 default:
910 break;
911 }
Ian Rogers9af89402012-09-07 11:29:35 -0700912
913 // Apply any IT-block conditions to the opcode if necessary.
914 if (!it_conditions_.empty()) {
915 opcode << it_conditions_.back();
916 it_conditions_.pop_back();
917 }
918
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800919 os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800920 return 4;
921}
922
923size_t DisassemblerArm::DumpThumb16(std::ostream& os, const uint8_t* instr_ptr) {
924 uint16_t instr = ReadU16(instr_ptr);
925 bool is_32bit = ((instr & 0xF000) == 0xF000) || ((instr & 0xF800) == 0xE800);
926 if (is_32bit) {
927 return DumpThumb32(os, instr_ptr);
928 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700929 std::ostringstream opcode;
930 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800931 uint16_t opcode1 = instr >> 10;
932 if (opcode1 < 0x10) {
933 // shift (immediate), add, subtract, move, and compare
934 uint16_t opcode2 = instr >> 9;
935 switch (opcode2) {
936 case 0x0: case 0x1: case 0x2: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
937 case 0x8: case 0x9: case 0xA: case 0xB: {
938 // Logical shift left - 00 000xx xxxxxxxxx
939 // Logical shift right - 00 001xx xxxxxxxxx
940 // Arithmetic shift right - 00 010xx xxxxxxxxx
941 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700942 ThumbRegister rm(instr, 3);
943 ThumbRegister Rd(instr, 7);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800944 if (opcode2 <= 3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700945 opcode << "lsls";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800946 } else if (opcode2 <= 7) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700947 opcode << "lsrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800948 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700949 opcode << "asrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800950 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700951 args << Rd << ", " << rm << ", #" << imm5;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800952 break;
953 }
954 case 0xC: case 0xD: case 0xE: case 0xF: {
955 // Add register - 00 01100 mmm nnn ddd
956 // Sub register - 00 01101 mmm nnn ddd
957 // Add 3-bit immediate - 00 01110 iii nnn ddd
958 // Sub 3-bit immediate - 00 01111 iii nnn ddd
959 uint16_t imm3_or_Rm = (instr >> 6) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700960 ThumbRegister Rn(instr, 3);
961 ThumbRegister Rd(instr, 0);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800962 if ((opcode2 & 2) != 0 && imm3_or_Rm == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700963 opcode << "mov";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800964 } else {
965 if ((opcode2 & 1) == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700966 opcode << "adds";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800967 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700968 opcode << "subs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800969 }
970 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700971 args << Rd << ", " << Rn;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800972 if ((opcode2 & 2) == 0) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700973 ArmRegister Rm(imm3_or_Rm);
974 args << ", " << Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800975 } else if (imm3_or_Rm != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700976 args << ", #" << imm3_or_Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800977 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800978 break;
979 }
980 case 0x10: case 0x11: case 0x12: case 0x13:
981 case 0x14: case 0x15: case 0x16: case 0x17:
982 case 0x18: case 0x19: case 0x1A: case 0x1B:
983 case 0x1C: case 0x1D: case 0x1E: case 0x1F: {
984 // MOVS Rd, #imm8 - 00100 ddd iiiiiiii
985 // CMP Rn, #imm8 - 00101 nnn iiiiiiii
986 // ADDS Rn, #imm8 - 00110 nnn iiiiiiii
987 // SUBS Rn, #imm8 - 00111 nnn iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700988 ThumbRegister Rn(instr, 8);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800989 uint16_t imm8 = instr & 0xFF;
990 switch (opcode2 >> 2) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700991 case 4: opcode << "movs"; break;
992 case 5: opcode << "cmp"; break;
993 case 6: opcode << "adds"; break;
994 case 7: opcode << "subs"; break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800995 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700996 args << Rn << ", #" << imm8;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800997 break;
998 }
999 default:
1000 break;
1001 }
Ian Rogersad03ef52012-03-18 19:34:47 -07001002 } else if (opcode1 == 0x10) {
1003 // Data-processing
1004 uint16_t opcode2 = (instr >> 6) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001005 ThumbRegister rm(instr, 3);
1006 ThumbRegister rdn(instr, 0);
Ian Rogersad03ef52012-03-18 19:34:47 -07001007 opcode << kThumbDataProcessingOperations[opcode2];
Elliott Hughes630e77d2012-03-22 19:20:56 -07001008 args << rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001009 } else if (opcode1 == 0x11) {
1010 // Special data instructions and branch and exchange
1011 uint16_t opcode2 = (instr >> 6) & 0x0F;
1012 switch (opcode2) {
1013 case 0x0: case 0x1: case 0x2: case 0x3: {
1014 // Add low registers - 010001 0000 xxxxxx
1015 // Add high registers - 010001 0001/001x xxxxxx
1016 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001017 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001018 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001019 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001020 opcode << "add";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001021 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001022 break;
1023 }
1024 case 0x8: case 0x9: case 0xA: case 0xB: {
1025 // Move low registers - 010001 1000 xxxxxx
1026 // Move high registers - 010001 1001/101x xxxxxx
1027 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001028 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001029 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001030 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001031 opcode << "mov";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001032 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001033 break;
1034 }
1035 case 0x5: case 0x6: case 0x7: {
1036 // Compare high registers - 010001 0101/011x xxxxxx
1037 uint16_t N = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001038 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001039 uint16_t Rn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001040 ArmRegister N_Rn((N << 3) | Rn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001041 opcode << "cmp";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001042 args << N_Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001043 break;
1044 }
1045 case 0xC: case 0xD: case 0xE: case 0xF: {
1046 // Branch and exchange - 010001 110x xxxxxx
1047 // Branch with link and exchange - 010001 111x xxxxxx
Elliott Hughes630e77d2012-03-22 19:20:56 -07001048 ArmRegister rm(instr, 3);
1049 opcode << ((opcode2 & 0x2) == 0 ? "bx" : "blx");
1050 args << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001051 break;
1052 }
1053 default:
1054 break;
1055 }
jeffhaoeae26912013-01-28 16:29:54 -08001056 } else if (opcode1 == 0x12 || opcode1 == 0x13) { // 01001x
1057 ThumbRegister Rt(instr, 8);
1058 uint16_t imm8 = instr & 0xFF;
1059 opcode << "ldr";
1060 args << Rt << ", [pc, #" << (imm8 << 2) << "]";
Ian Rogersd83bc362012-09-07 17:43:13 -07001061 } else if ((opcode1 >= 0x14 && opcode1 <= 0x17) || // 0101xx
1062 (opcode1 >= 0x18 && opcode1 <= 0x1f) || // 011xxx
1063 (opcode1 >= 0x20 && opcode1 <= 0x27)) { // 100xxx
1064 // Load/store single data item
1065 uint16_t opA = (instr >> 12) & 0xF;
1066 if (opA == 0x5) {
1067 uint16_t opB = (instr >> 9) & 0x7;
1068 ThumbRegister Rm(instr, 6);
1069 ThumbRegister Rn(instr, 3);
1070 ThumbRegister Rt(instr, 0);
1071 switch(opB) {
1072 case 0: opcode << "str"; break;
1073 case 1: opcode << "strh"; break;
1074 case 2: opcode << "strb"; break;
1075 case 3: opcode << "ldrsb"; break;
1076 case 4: opcode << "ldr"; break;
1077 case 5: opcode << "ldrh"; break;
1078 case 6: opcode << "ldrb"; break;
1079 case 7: opcode << "ldrsh"; break;
1080 }
1081 args << Rt << ", [" << Rn << ", " << Rm << "]";
1082 } else if (opA == 9) {
1083 uint16_t opB = (instr >> 11) & 1;
1084 ThumbRegister Rt(instr, 8);
1085 uint16_t imm8 = instr & 0xFF;
1086 opcode << (opB == 0 ? "str" : "ldr");
Ian Rogers137e88f2012-10-08 17:46:47 -07001087 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogersd83bc362012-09-07 17:43:13 -07001088 } else {
1089 uint16_t imm5 = (instr >> 6) & 0x1F;
1090 uint16_t opB = (instr >> 11) & 1;
1091 ThumbRegister Rn(instr, 3);
1092 ThumbRegister Rt(instr, 0);
1093 switch(opA) {
1094 case 6:
1095 imm5 <<= 2;
1096 opcode << (opB == 0 ? "str" : "ldr");
1097 break;
1098 case 7:
1099 imm5 <<= 0;
1100 opcode << (opB == 0 ? "strb" : "ldrb");
1101 break;
1102 case 8:
1103 imm5 <<= 1;
1104 opcode << (opB == 0 ? "strh" : "ldrh");
1105 break;
1106 }
1107 args << Rt << ", [" << Rn << ", #" << imm5 << "]";
1108 }
jeffhaoeae26912013-01-28 16:29:54 -08001109 } else if (opcode1 >= 0x34 && opcode1 <= 0x37) { // 1101xx
1110 uint32_t imm8 = instr & 0xFF;
1111 uint32_t cond = (instr >> 8) & 0xF;
1112 opcode << "b";
1113 DumpCond(opcode, cond);
1114 DumpBranchTarget(args, instr_ptr + 4, (imm8 << 1));
Ian Rogers9af89402012-09-07 11:29:35 -07001115 } else if ((instr & 0xF800) == 0xA800) {
1116 // Generate SP-relative address
1117 ThumbRegister rd(instr, 8);
1118 int imm8 = instr & 0xFF;
1119 opcode << "add";
1120 args << rd << ", sp, #" << (imm8 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001121 } else if ((instr & 0xF000) == 0xB000) {
1122 // Miscellaneous 16-bit instructions
1123 uint16_t opcode2 = (instr >> 5) & 0x7F;
1124 switch (opcode2) {
1125 case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: {
1126 // Add immediate to SP - 1011 00000 ii iiiii
1127 // Subtract immediate from SP - 1011 00001 ii iiiii
1128 int imm7 = instr & 0x7F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001129 opcode << ((opcode2 & 4) == 0 ? "add" : "sub");
Elliott Hughescbf0b612012-03-15 16:23:47 -07001130 args << "sp, sp, #" << (imm7 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001131 break;
1132 }
Ian Rogers087b2412012-03-21 01:30:32 -07001133 case 0x08: case 0x09: case 0x0A: case 0x0B: // 0001xxx
Ian Rogersebbc5772012-04-11 17:00:08 -07001134 case 0x0C: case 0x0D: case 0x0E: case 0x0F:
1135 case 0x48: case 0x49: case 0x4A: case 0x4B: // 1001xxx
1136 case 0x4C: case 0x4D: case 0x4E: case 0x4F: {
Ian Rogers087b2412012-03-21 01:30:32 -07001137 // CBNZ, CBZ
1138 uint16_t op = (instr >> 11) & 1;
1139 uint16_t i = (instr >> 9) & 1;
1140 uint16_t imm5 = (instr >> 3) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001141 ThumbRegister Rn(instr, 0);
Ian Rogers087b2412012-03-21 01:30:32 -07001142 opcode << (op != 0 ? "cbnz" : "cbz");
1143 uint32_t imm32 = (i << 7) | (imm5 << 1);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001144 args << Rn << ", ";
Ian Rogers087b2412012-03-21 01:30:32 -07001145 DumpBranchTarget(args, instr_ptr + 4, imm32);
1146 break;
1147 }
Ian Rogers40627db2012-03-04 17:31:09 -08001148 case 0x78: case 0x79: case 0x7A: case 0x7B: // 1111xxx
1149 case 0x7C: case 0x7D: case 0x7E: case 0x7F: {
1150 // If-Then, and hints
1151 uint16_t opA = (instr >> 4) & 0xF;
1152 uint16_t opB = instr & 0xF;
1153 if (opB == 0) {
1154 switch (opA) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001155 case 0: opcode << "nop"; break;
1156 case 1: opcode << "yield"; break;
1157 case 2: opcode << "wfe"; break;
1158 case 3: opcode << "sev"; break;
Ian Rogers40627db2012-03-04 17:31:09 -08001159 default: break;
1160 }
1161 } else {
Elliott Hughes105afd22012-04-10 15:04:25 -07001162 uint32_t first_cond = opA;
1163 uint32_t mask = opB;
Elliott Hughescbf0b612012-03-15 16:23:47 -07001164 opcode << "it";
Elliott Hughes105afd22012-04-10 15:04:25 -07001165
1166 // Flesh out the base "it" opcode with the specific collection of 't's and 'e's,
1167 // and store up the actual condition codes we'll want to add to the next few opcodes.
1168 size_t count = 3 - CTZ(mask);
1169 it_conditions_.resize(count + 2); // Plus the implicit 't', plus the "" for the IT itself.
1170 for (size_t i = 0; i < count; ++i) {
1171 bool positive_cond = ((first_cond & 1) != 0);
1172 bool positive_mask = ((mask & (1 << (3 - i))) != 0);
1173 if (positive_mask == positive_cond) {
1174 opcode << 't';
1175 it_conditions_[i] = kConditionCodeNames[first_cond];
1176 } else {
1177 opcode << 'e';
1178 it_conditions_[i] = kConditionCodeNames[first_cond ^ 1];
1179 }
1180 }
1181 it_conditions_[count] = kConditionCodeNames[first_cond]; // The implicit 't'.
1182
1183 it_conditions_[count + 1] = ""; // No condition code for the IT itself...
1184 DumpCond(args, first_cond); // ...because it's considered an argument.
Ian Rogers40627db2012-03-04 17:31:09 -08001185 }
1186 break;
1187 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001188 default:
1189 break;
1190 }
1191 } else if (((instr & 0xF000) == 0x5000) || ((instr & 0xE000) == 0x6000) ||
1192 ((instr & 0xE000) == 0x8000)) {
1193 // Load/store single data item
1194 uint16_t opA = instr >> 12;
1195 //uint16_t opB = (instr >> 9) & 7;
1196 switch (opA) {
1197 case 0x6: {
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001198 // STR Rt, [Rn, #imm] - 01100 iiiii nnn ttt
1199 // LDR Rt, [Rn, #imm] - 01101 iiiii nnn ttt
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001200 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001201 ThumbRegister Rn(instr, 3);
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001202 ThumbRegister Rt(instr, 0);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001203 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1204 args << Rt << ", [" << Rn << ", #" << (imm5 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001205 break;
1206 }
1207 case 0x9: {
1208 // STR Rt, [SP, #imm] - 01100 ttt iiiiiiii
1209 // LDR Rt, [SP, #imm] - 01101 ttt iiiiiiii
1210 uint16_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001211 ThumbRegister Rt(instr, 8);
1212 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1213 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001214 break;
1215 }
1216 default:
1217 break;
1218 }
Ian Rogers40627db2012-03-04 17:31:09 -08001219 } else if (opcode1 == 0x38 || opcode1 == 0x39) {
1220 uint16_t imm11 = instr & 0x7FFF;
1221 int32_t imm32 = imm11 << 1;
1222 imm32 = (imm32 << 20) >> 20; // sign extend 12 bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -07001223 opcode << "b";
1224 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001225 }
Elliott Hughes105afd22012-04-10 15:04:25 -07001226
1227 // Apply any IT-block conditions to the opcode if necessary.
1228 if (!it_conditions_.empty()) {
1229 opcode << it_conditions_.back();
1230 it_conditions_.pop_back();
1231 }
1232
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001233 os << StringPrintf("%p: %04x \t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001234 }
1235 return 2;
1236}
1237
1238} // namespace arm
1239} // namespace art