blob: f987367772de37b94e0efb1eef3dc5e874651c32 [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 Hughes0f3c5532012-03-30 14:51:51 -070021#include "logging.h"
22#include "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 Rogers3a5c1ce2012-02-29 10:06:46 -080031void DisassemblerArm::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) {
32 if ((reinterpret_cast<intptr_t>(begin) & 1) == 0) {
33 for (const uint8_t* cur = begin; cur < end; cur += 4) {
34 DumpArm(os, cur);
35 }
36 } else {
37 // remove thumb specifier bits
38 begin = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(begin) & ~1);
39 end = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(end) & ~1);
40 for (const uint8_t* cur = begin; cur < end;) {
41 cur += DumpThumb16(os, cur);
42 }
43 }
44}
45
Elliott Hughes77405792012-03-15 15:22:12 -070046static const char* kConditionCodeNames[] = {
Elliott Hughescbf0b612012-03-15 16:23:47 -070047 "eq", // 0000 - equal
48 "ne", // 0001 - not-equal
49 "cs", // 0010 - carry-set, greater than, equal or unordered
50 "cc", // 0011 - carry-clear, less than
51 "mi", // 0100 - minus, negative
52 "pl", // 0101 - plus, positive or zero
53 "vs", // 0110 - overflow
54 "vc", // 0111 - no overflow
55 "hi", // 1000 - unsigned higher
56 "ls", // 1001 - unsigned lower or same
57 "ge", // 1010 - signed greater than or equal
58 "lt", // 1011 - signed less than
59 "gt", // 1100 - signed greater than
60 "le", // 1101 - signed less than or equal
61 "", // 1110 - always
62 "nv", // 1111 - never (mostly obsolete, but might be a clue that we're mistranslating)
Ian Rogers40627db2012-03-04 17:31:09 -080063};
64
65void DisassemblerArm::DumpCond(std::ostream& os, uint32_t cond) {
66 if (cond < 15) {
Elliott Hughes77405792012-03-15 15:22:12 -070067 os << kConditionCodeNames[cond];
Ian Rogers40627db2012-03-04 17:31:09 -080068 } else {
69 os << "Unexpected condition: " << cond;
70 }
71}
72
Ian Rogers40627db2012-03-04 17:31:09 -080073void DisassemblerArm::DumpBranchTarget(std::ostream& os, const uint8_t* instr_ptr, int32_t imm32) {
Elliott Hughes1ca98492012-04-12 17:21:02 -070074 os << StringPrintf("%+d (%p)", imm32, instr_ptr + imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080075}
76
77static uint32_t ReadU16(const uint8_t* ptr) {
78 return ptr[0] | (ptr[1] << 8);
79}
80
81static uint32_t ReadU32(const uint8_t* ptr) {
82 return ptr[0] | (ptr[1] << 8) | (ptr[2] << 16) | (ptr[3] << 24);
83}
84
Elliott Hughes77405792012-03-15 15:22:12 -070085static const char* kDataProcessingOperations[] = {
Elliott Hughescbf0b612012-03-15 16:23:47 -070086 "and", "eor", "sub", "rsb", "add", "adc", "sbc", "rsc",
87 "tst", "teq", "cmp", "cmn", "orr", "mov", "bic", "mvn",
Elliott Hughes77405792012-03-15 15:22:12 -070088};
89
Ian Rogersad03ef52012-03-18 19:34:47 -070090static const char* kThumbDataProcessingOperations[] = {
91 "and", "eor", "lsl", "lsr", "asr", "adc", "sbc", "ror",
92 "tst", "rsb", "cmp", "cmn", "orr", "mul", "bic", "mvn",
93};
94
Elliott Hughes77405792012-03-15 15:22:12 -070095struct ArmRegister {
Elliott Hughes74847412012-06-20 18:10:21 -070096 explicit ArmRegister(uint32_t r) : r(r) { CHECK_LE(r, 15U); }
Elliott Hughes630e77d2012-03-22 19:20:56 -070097 ArmRegister(uint32_t instruction, uint32_t at_bit) : r((instruction >> at_bit) & 0xf) { CHECK_LE(r, 15U); }
Elliott Hughes77405792012-03-15 15:22:12 -070098 uint32_t r;
99};
100std::ostream& operator<<(std::ostream& os, const ArmRegister& r) {
101 if (r.r == 13) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700102 os << "sp";
Elliott Hughes77405792012-03-15 15:22:12 -0700103 } else if (r.r == 14) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700104 os << "lr";
Elliott Hughes77405792012-03-15 15:22:12 -0700105 } else if (r.r == 15) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700106 os << "pc";
Elliott Hughes77405792012-03-15 15:22:12 -0700107 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700108 os << "r" << r.r;
Elliott Hughes77405792012-03-15 15:22:12 -0700109 }
110 return os;
111}
112
Elliott Hughes630e77d2012-03-22 19:20:56 -0700113struct ThumbRegister : ArmRegister {
114 ThumbRegister(uint16_t instruction, uint16_t at_bit) : ArmRegister((instruction >> at_bit) & 0x7) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700115};
116
117struct Rm {
Elliott Hughes74847412012-06-20 18:10:21 -0700118 explicit Rm(uint32_t instruction) : shift((instruction >> 4) & 0xff), rm(instruction & 0xf) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700119 uint32_t shift;
120 ArmRegister rm;
121};
122std::ostream& operator<<(std::ostream& os, const Rm& r) {
123 os << r.rm;
124 if (r.shift != 0) {
125 os << "-shift-" << r.shift; // TODO
126 }
127 return os;
128}
129
Elliott Hughes1ca98492012-04-12 17:21:02 -0700130struct ShiftedImmediate {
Elliott Hughes74847412012-06-20 18:10:21 -0700131 explicit ShiftedImmediate(uint32_t instruction) {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700132 uint32_t rotate = ((instruction >> 8) & 0xf);
133 uint32_t imm = (instruction & 0xff);
134 value = (imm >> (2 * rotate)) | (imm << (32 - (2 * rotate)));
135 }
136 uint32_t value;
Elliott Hughes77405792012-03-15 15:22:12 -0700137};
Elliott Hughes1ca98492012-04-12 17:21:02 -0700138std::ostream& operator<<(std::ostream& os, const ShiftedImmediate& rhs) {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700139 os << "#" << rhs.value;
Elliott Hughes77405792012-03-15 15:22:12 -0700140 return os;
141}
142
143struct RegisterList {
Elliott Hughes74847412012-06-20 18:10:21 -0700144 explicit RegisterList(uint32_t instruction) : register_list(instruction & 0xffff) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700145 uint32_t register_list;
146};
147std::ostream& operator<<(std::ostream& os, const RegisterList& rhs) {
148 if (rhs.register_list == 0) {
149 os << "<no register list?>";
150 return os;
151 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700152 os << "{";
Elliott Hughes77405792012-03-15 15:22:12 -0700153 bool first = true;
154 for (size_t i = 0; i < 16; i++) {
155 if ((rhs.register_list & (1 << i)) != 0) {
156 if (first) {
Elliott Hughes77405792012-03-15 15:22:12 -0700157 first = false;
158 } else {
159 os << ", ";
160 }
161 os << ArmRegister(i);
162 }
163 }
164 os << "}";
165 return os;
166}
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800167
168void DisassemblerArm::DumpArm(std::ostream& os, const uint8_t* instr_ptr) {
Elliott Hughes77405792012-03-15 15:22:12 -0700169 uint32_t instruction = ReadU32(instr_ptr);
170 uint32_t cond = (instruction >> 28) & 0xf;
171 uint32_t op1 = (instruction >> 25) & 0x7;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700172 std::string opcode;
173 std::string suffixes;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700174 std::ostringstream args;
Elliott Hughes77405792012-03-15 15:22:12 -0700175 switch (op1) {
176 case 0:
177 case 1: // Data processing instructions.
178 {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700179 if ((instruction & 0x0ff000f0) == 0x01200070) { // BKPT
180 opcode = "bkpt";
181 uint32_t imm12 = (instruction >> 8) & 0xfff;
182 uint32_t imm4 = (instruction & 0xf);
183 args << '#' << ((imm12 << 4) | imm4);
184 break;
185 }
Elliott Hughes77405792012-03-15 15:22:12 -0700186 if ((instruction & 0x0fffffd0) == 0x012fff10) { // BX and BLX (register)
Elliott Hughes3d71d072012-04-10 18:28:35 -0700187 opcode = (((instruction >> 5) & 1) ? "blx" : "bx");
Elliott Hughescbf0b612012-03-15 16:23:47 -0700188 args << ArmRegister(instruction & 0xf);
Elliott Hughes77405792012-03-15 15:22:12 -0700189 break;
190 }
191 bool i = (instruction & (1 << 25)) != 0;
192 bool s = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700193 uint32_t op = (instruction >> 21) & 0xf;
194 opcode = kDataProcessingOperations[op];
195 bool implicit_s = ((op & ~3) == 8); // TST, TEQ, CMP, and CMN.
196 if (implicit_s) {
197 // Rd is unused (and not shown), and we don't show the 's' suffix either.
198 } else {
199 if (s) {
200 suffixes += 's';
201 }
202 args << ArmRegister(instruction, 12) << ", ";
203 }
Elliott Hughes77405792012-03-15 15:22:12 -0700204 if (i) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700205 args << ArmRegister(instruction, 16) << ", " << ShiftedImmediate(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700206 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700207 args << Rm(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700208 }
209 }
210 break;
211 case 2: // Load/store word and unsigned byte.
212 {
213 bool p = (instruction & (1 << 24)) != 0;
214 bool b = (instruction & (1 << 22)) != 0;
215 bool w = (instruction & (1 << 21)) != 0;
216 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700217 opcode = StringPrintf("%s%s", (l ? "ldr" : "str"), (b ? "b" : ""));
Elliott Hughes630e77d2012-03-22 19:20:56 -0700218 args << ArmRegister(instruction, 12) << ", ";
219 ArmRegister rn(instruction, 16);
220 if (rn.r == 0xf) {
Elliott Hughes77405792012-03-15 15:22:12 -0700221 UNIMPLEMENTED(FATAL) << "literals";
222 } else {
223 bool wback = !p || w;
Elliott Hughes1ca98492012-04-12 17:21:02 -0700224 uint32_t offset = (instruction & 0xfff);
Elliott Hughes77405792012-03-15 15:22:12 -0700225 if (p && !wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700226 args << "[" << rn << ", #" << offset << "]";
Elliott Hughes77405792012-03-15 15:22:12 -0700227 } else if (p && wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700228 args << "[" << rn << ", #" << offset << "]!";
Elliott Hughes77405792012-03-15 15:22:12 -0700229 } else if (!p && wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700230 args << "[" << rn << "], #" << offset;
Elliott Hughes77405792012-03-15 15:22:12 -0700231 } else {
232 LOG(FATAL) << p << " " << w;
233 }
Elliott Hughes3d71d072012-04-10 18:28:35 -0700234 if (rn.r == 9) {
235 args << " ; ";
Elliott Hughes1ca98492012-04-12 17:21:02 -0700236 Thread::DumpThreadOffset(args, offset, 4);
Elliott Hughes3d71d072012-04-10 18:28:35 -0700237 }
Elliott Hughes77405792012-03-15 15:22:12 -0700238 }
239 }
240 break;
241 case 4: // Load/store multiple.
242 {
243 bool p = (instruction & (1 << 24)) != 0;
244 bool u = (instruction & (1 << 23)) != 0;
245 bool w = (instruction & (1 << 21)) != 0;
246 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700247 opcode = StringPrintf("%s%c%c", (l ? "ldm" : "stm"), (u ? 'i' : 'd'), (p ? 'b' : 'a'));
Elliott Hughes630e77d2012-03-22 19:20:56 -0700248 args << ArmRegister(instruction, 16) << (w ? "!" : "") << ", " << RegisterList(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700249 }
250 break;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700251 case 5: // Branch/branch with link.
252 {
253 bool bl = (instruction & (1 << 24)) != 0;
254 opcode = (bl ? "bl" : "b");
Elliott Hughesd86261e2012-04-11 11:23:23 -0700255 int32_t imm26 = (instruction & 0xffffff) << 2;
256 int32_t imm32 = (imm26 << 6) >> 6; // Sign extend.
Elliott Hughes3d71d072012-04-10 18:28:35 -0700257 DumpBranchTarget(args, instr_ptr + 8, imm32);
258 }
259 break;
Elliott Hughes77405792012-03-15 15:22:12 -0700260 default:
Elliott Hughes3d71d072012-04-10 18:28:35 -0700261 opcode = "???";
Elliott Hughes77405792012-03-15 15:22:12 -0700262 break;
263 }
Elliott Hughes3d71d072012-04-10 18:28:35 -0700264 opcode += kConditionCodeNames[cond];
265 opcode += suffixes;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700266 // TODO: a more complete ARM disassembler could generate wider opcodes.
Elliott Hughes3d71d072012-04-10 18:28:35 -0700267 os << StringPrintf("\t\t\t%p: %08x\t%-7s ", instr_ptr, instruction, opcode.c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800268}
269
270size_t DisassemblerArm::DumpThumb32(std::ostream& os, const uint8_t* instr_ptr) {
271 uint32_t instr = (ReadU16(instr_ptr) << 16) | ReadU16(instr_ptr + 2);
272 // |111|1 1|1000000|0000|1111110000000000|
273 // |5 3|2 1|0987654|3 0|5 0 5 0|
274 // |---|---|-------|----|----------------|
275 // |332|2 2|2222222|1111|1111110000000000|
276 // |1 9|8 7|6543210|9 6|5 0 5 0|
277 // |---|---|-------|----|----------------|
278 // |111|op1| op2 | | |
279 uint32_t op1 = (instr >> 27) & 3;
Elliott Hughes77405792012-03-15 15:22:12 -0700280 if (op1 == 0) {
281 return DumpThumb16(os, instr_ptr);
282 }
283
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800284 uint32_t op2 = (instr >> 20) & 0x7F;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700285 std::ostringstream opcode;
286 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800287 switch (op1) {
288 case 0:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800289 break;
290 case 1:
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700291 if ((op2 & 0x64) == 0) { // 00x x0xx
292 // |111|11|10|00|0|00|0000|1111110000000000|
293 // |5 3|21|09|87|6|54|3 0|5 0 5 0|
294 // |---|--|--|--|-|--|----|----------------|
295 // |332|22|22|22|2|22|1111|1111110000000000|
296 // |1 9|87|65|43|2|10|9 6|5 0 5 0|
297 // |---|--|--|--|-|--|----|----------------|
298 // |111|01|00|op|0|WL| Rn | |
299 // |111|01| op2 | | |
300 // STM - 111 01 00-01-0-W0 nnnn rrrrrrrrrrrrrrrr
301 // LDM - 111 01 00-01-0-W1 nnnn rrrrrrrrrrrrrrrr
302 // PUSH- 111 01 00-01-0-10 1101 0M0rrrrrrrrrrrrr
303 // POP - 111 01 00-01-0-11 1101 PM0rrrrrrrrrrrrr
304 uint32_t op = (instr >> 23) & 3;
305 uint32_t W = (instr >> 21) & 1;
306 uint32_t L = (instr >> 20) & 1;
307 ArmRegister Rn(instr, 16);
308 if (op == 1 || op == 2) {
309 if (op == 1) {
310 if (L == 0) {
311 opcode << "stm";
312 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800313 } else {
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700314 if (Rn.r != 13) {
315 opcode << "ldm";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700316 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700317 } else {
318 opcode << "pop";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800319 }
320 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700321 } else {
322 if (L == 0) {
323 if (Rn.r != 13) {
324 opcode << "stmdb";
325 args << Rn << (W == 0 ? "" : "!") << ", ";
326 } else {
327 opcode << "push";
328 }
329 } else {
330 opcode << "ldmdb";
331 args << Rn << (W == 0 ? "" : "!") << ", ";
332 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800333 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700334 args << RegisterList(instr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800335 }
Ian Rogers9af89402012-09-07 11:29:35 -0700336 } else if ((op2 & 0x64) == 4) { // 00x x1xx
337 uint32_t op3 = (instr >> 23) & 3;
338 uint32_t op4 = (instr >> 20) & 3;
339 //uint32_t op5 = (instr >> 4) & 0xF;
340 ArmRegister Rn(instr, 16);
341 ArmRegister Rt(instr, 12);
342 uint32_t imm8 = instr & 0xFF;
343 if (op3 == 0 && op4 == 0) { // STREX
344 ArmRegister Rd(instr, 8);
345 opcode << "strex";
346 args << Rd << ", " << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
347 } else if (op3 == 0 && op4 == 1) { // LDREX
348 opcode << "ldrex";
349 args << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
350 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700351 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx
352 // Data-processing (shifted register)
353 // |111|1110|0000|0|0000|1111|1100|0000|0000|
354 // |5 3|2109|8765|4|3 0|5 |10 8|7 5 |3 0|
355 // |---|----|----|-|----|----|----|----|----|
356 // |332|2222|2222|2|1111|1111|1100|0000|0000|
357 // |1 9|8765|4321|0|9 6|5 |10 8|7 5 |3 0|
358 // |---|----|----|-|----|----|----|----|----|
359 // |111|0101| op3|S| Rn | | Rd | | Rm |
360 uint32_t op3 = (instr >> 21) & 0xF;
361 uint32_t S = (instr >> 20) & 1;
362 uint32_t Rn = (instr >> 16) & 0xF;
363 ArmRegister Rd(instr, 8);
364 ArmRegister Rm(instr, 0);
365 switch (op3) {
366 case 0x0:
367 if (Rn != 0xF) {
368 opcode << "and";
369 } else {
370 opcode << "tst";
371 S = 0; // don't print 's'
372 }
373 break;
374 case 0x1: opcode << "bic"; break;
375 case 0x2:
376 if (Rn != 0xF) {
377 opcode << "orr";
378 } else {
379 opcode << "mov";
380 }
381 break;
382 case 0x3:
383 if (Rn != 0xF) {
384 opcode << "orn";
385 } else {
386 opcode << "mvn";
387 }
388 break;
389 case 0x4:
390 if (Rn != 0xF) {
391 opcode << "eor";
392 } else {
393 opcode << "teq";
394 S = 0; // don't print 's'
395 }
396 break;
397 case 0x6: opcode << "pkh"; break;
398 case 0x8:
399 if (Rn != 0xF) {
400 opcode << "add";
401 } else {
402 opcode << "cmn";
403 S = 0; // don't print 's'
404 }
405 break;
406 case 0xA: opcode << "adc"; break;
407 case 0xB: opcode << "sbc"; break;
408 }
Ian Rogers087b2412012-03-21 01:30:32 -0700409
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700410 if (S == 1) {
411 opcode << "s";
Ian Rogers087b2412012-03-21 01:30:32 -0700412 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700413 opcode << ".w";
414 args << Rd << ", " << Rm;
415 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx
416 // Co-processor instructions
417 // |111|1|11|000000|0000|1111|1100|000|0 |0000|
418 // |5 3|2|10|987654|3 0|54 2|10 8|7 5|4 | 0|
419 // |---|-|--|------|----|----|----|---|---|----|
420 // |332|2|22|222222|1111|1111|1100|000|0 |0000|
421 // |1 9|8|76|543210|9 6|54 2|10 8|7 5|4 | 0|
422 // |---|-|--|------|----|----|----|---|---|----|
423 // |111| |11| op3 | Rn | |copr| |op4| |
424 uint32_t op3 = (instr >> 20) & 0x3F;
425 uint32_t coproc = (instr >> 8) & 0xF;
426 uint32_t op4 = (instr >> 4) & 0x1;
Ian Rogers9af89402012-09-07 11:29:35 -0700427 if ((op3 == 2 || op3 == 2 || op3 == 6 || op3 == 7) || // 00x1x
428 (op3 >= 8 && op3 <= 15) || (op3 >= 16 && op3 <= 31)) { // 001xxx, 01xxxx
429 // Extension register load/store instructions
430 // |111|1|110|00000|0000|1111|110|000000000|
431 // |5 3|2|109|87654|3 0|54 2|10 |87 54 0|
432 // |---|-|---|-----|----|----|---|---------|
433 // |332|2|222|22222|1111|1111|110|000000000|
434 // |1 9|8|765|43210|9 6|54 2|10 |87 54 0|
435 // |---|-|---|-----|----|----|---|---------|
436 // |111|T|110| op3 | Rn | |101| |
437 // 111 0 110 01001 0011 0000 101 000000011 - ec930a03
438 if (op3 == 9 || op3 == 0xD) { // VLDM
439 // 1110 110 PUDW1 nnnn dddd 101S iiii iiii
440 uint32_t P = (instr >> 24) & 1;
441 uint32_t U = (instr >> 23) & 1;
442 uint32_t D = (instr >> 22) & 1;
443 uint32_t W = (instr >> 21) & 1;
444 uint32_t S = (instr >> 8) & 1;
445 ArmRegister Rn(instr, 16);
446 uint32_t Vd = (instr >> 12) & 0xF;
447 uint32_t imm8 = instr & 0xFF;
448 uint32_t d = (S == 0 ? ((Vd << 1) | D) : (Vd | (D << 4)));
449 if (P == 0 && U == 0 && W == 0) {
450 // TODO: 64bit transfers between ARM core and extension registers.
451 } else if (P == 0 && U == 1 && Rn.r == 13) { // VPOP
452 opcode << "vpop" << (S == 0 ? ".f64" : ".f32");
453 args << d << " .. " << (d + imm8);
454 } else if (P == 1 && W == 0) { // VLDR
455 opcode << "vldr" << (S == 0 ? ".f64" : ".f32");
456 args << d << ", [" << Rn << ", #" << imm8 << "]";
457 } else { // VLDM
458 opcode << "vldm" << (S == 0 ? ".f64" : ".f32");
459 args << Rn << ", " << d << " .. " << (d + imm8);
460 }
461 }
462 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700463 if ((op3 & 0x30) == 0x20 && op4 == 0) { // 10 xxxx ... 0
464 if ((coproc & 0xE) == 0xA) {
465 // VFP data-processing instructions
466 // |111|1|1100|0000|0000|1111|110|0|00 |0|0|0000|
467 // |5 3|2|1098|7654|3 0|54 2|10 |8|76 |5|4|3 0|
468 // |---|-|----|----|----|----|---|-|----|-|-|----|
469 // |332|2|2222|2222|1111|1111|110|0|00 |0|0|0000|
470 // |1 9|8|7654|3210|9 6|54 2|109|8|76 |5|4|3 0|
471 // |---|-|----|----|----|----|---|-|----|-|-|----|
472 // |111|T|1110|opc1|opc2| |101| |opc3| | | |
473 // 111 0 1110|1111 0100 1110 101 0 01 1 0 1001 - eef4ea69
474 uint32_t opc1 = (instr >> 20) & 0xF;
475 uint32_t opc2 = (instr >> 16) & 0xF;
476 //uint32_t opc3 = (instr >> 6) & 0x3;
477 if ((opc1 & 0xB) == 0xB) { // 1x11
478 // Other VFP data-processing instructions.
479 switch (opc2) {
480 case 0x4: case 0x5: { // Vector compare
481 // 1110 11101 D 11 0100 dddd 101 sE1M0 mmmm
482 uint32_t D = (instr >> 22) & 0x1;
483 uint32_t Vd = (instr >> 12) & 0xF;
484 uint32_t sz = (instr >> 8) & 1;
485 uint32_t E = (instr >> 7) & 1;
486 uint32_t M = (instr >> 5) & 1;
487 uint32_t Vm = instr & 0xF;
488 bool dp_operation = sz == 1;
489 opcode << (E == 0 ? "vcmp" : "vcmpe");
490 opcode << (dp_operation ? ".f64" : ".f32");
491 if (dp_operation) {
492 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
493 } else {
494 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
495 }
496 break;
497 }
498 }
499 }
500 }
501 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800502 }
503 break;
Ian Rogers40627db2012-03-04 17:31:09 -0800504 case 2:
505 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) {
506 // Data-processing (modified immediate)
507 // |111|11|10|0000|0|0000|1|111|1100|00000000|
508 // |5 3|21|09|8765|4|3 0|5|4 2|10 8|7 5 0|
509 // |---|--|--|----|-|----|-|---|----|--------|
510 // |332|22|22|2222|2|1111|1|111|1100|00000000|
511 // |1 9|87|65|4321|0|9 6|5|4 2|10 8|7 5 0|
512 // |---|--|--|----|-|----|-|---|----|--------|
513 // |111|10|i0| op3|S| Rn |0|iii| Rd |iiiiiiii|
514 // 111 10 x0 xxxx x xxxx opxxx xxxx xxxxxxxx
Ian Rogers40627db2012-03-04 17:31:09 -0800515 uint32_t i = (instr >> 26) & 1;
516 uint32_t op3 = (instr >> 21) & 0xF;
517 uint32_t S = (instr >> 20) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700518 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800519 uint32_t imm3 = (instr >> 12) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700520 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800521 uint32_t imm8 = instr & 0xFF;
522 int32_t imm32 = (i << 12) | (imm3 << 8) | imm8;
523 switch (op3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700524 case 0x0: opcode << "and"; break;
525 case 0x1: opcode << "bic"; break;
526 case 0x2: opcode << "orr"; break;
527 case 0x3: opcode << "orn"; break;
528 case 0x4: opcode << "eor"; break;
529 case 0x8: opcode << "add"; break;
530 case 0xA: opcode << "adc"; break;
531 case 0xB: opcode << "sbc"; break;
532 case 0xD: opcode << "sub"; break;
533 case 0xE: opcode << "rsb"; break;
534 default: opcode << "UNKNOWN DPMI-" << op3; break;
Ian Rogers40627db2012-03-04 17:31:09 -0800535 }
536 if (S == 1) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700537 opcode << "s";
Ian Rogers40627db2012-03-04 17:31:09 -0800538 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700539 args << Rd << ", " << Rn << ", ThumbExpand(" << imm32 << ")";
Ian Rogers40627db2012-03-04 17:31:09 -0800540 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
541 // Data-processing (plain binary immediate)
542 // |111|11|10|00000|0000|1|111110000000000|
543 // |5 3|21|09|87654|3 0|5|4 0 5 0|
544 // |---|--|--|-----|----|-|---------------|
545 // |332|22|22|22222|1111|1|111110000000000|
546 // |1 9|87|65|43210|9 6|5|4 0 5 0|
547 // |---|--|--|-----|----|-|---------------|
548 // |111|10|x1| op3 | Rn |0|xxxxxxxxxxxxxxx|
549 uint32_t op3 = (instr >> 20) & 0x1F;
Ian Rogers40627db2012-03-04 17:31:09 -0800550 switch (op3) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700551 case 0x00: {
552 ArmRegister Rd(instr, 8);
553 ArmRegister Rn(instr, 16);
554 uint32_t i = (instr >> 26) & 1;
555 uint32_t imm3 = (instr >> 12) & 0x7;
556 uint32_t imm8 = instr & 0xFF;
557 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
558 if (Rn.r != 0xF) {
559 opcode << "addw";
560 args << Rd << ", " << Rn << ", #" << imm12;
561 } else {
562 opcode << "adr";
563 args << Rd << ", ";
564 DumpBranchTarget(args, instr_ptr + 4, imm12);
565 }
566 break;
567 }
Ian Rogers40627db2012-03-04 17:31:09 -0800568 case 0x04: {
569 // MOVW Rd, #imm16 - 111 10 i0 0010 0 iiii 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700570 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800571 uint32_t i = (instr >> 26) & 1;
572 uint32_t imm3 = (instr >> 12) & 0x7;
573 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700574 uint32_t Rn = (instr >> 16) & 0xF;
Ian Rogers40627db2012-03-04 17:31:09 -0800575 uint32_t imm16 = (Rn << 12) | (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700576 opcode << "movw";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700577 args << Rd << ", #" << imm16;
Ian Rogers40627db2012-03-04 17:31:09 -0800578 break;
579 }
580 case 0x0A: {
581 // SUB.W Rd, Rn #imm12 - 111 10 i1 0101 0 nnnn 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700582 ArmRegister Rd(instr, 8);
583 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800584 uint32_t i = (instr >> 26) & 1;
585 uint32_t imm3 = (instr >> 12) & 0x7;
586 uint32_t imm8 = instr & 0xFF;
587 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700588 opcode << "sub.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700589 args << Rd << ", " << Rn << ", #" << imm12;
Ian Rogers40627db2012-03-04 17:31:09 -0800590 break;
591 }
592 default:
593 break;
594 }
595 } else {
596 // Branches and miscellaneous control
597 // |111|11|1000000|0000|1|111|1100|00000000|
598 // |5 3|21|0987654|3 0|5|4 2|10 8|7 5 0|
599 // |---|--|-------|----|-|---|----|--------|
600 // |332|22|2222222|1111|1|111|1100|00000000|
601 // |1 9|87|6543210|9 6|5|4 2|10 8|7 5 0|
602 // |---|--|-------|----|-|---|----|--------|
603 // |111|10| op2 | |1|op3|op4 | |
604
605 uint32_t op3 = (instr >> 12) & 7;
606 //uint32_t op4 = (instr >> 8) & 0xF;
607 switch (op3) {
608 case 0:
609 if ((op2 & 0x38) != 0x38) {
610 // Conditional branch
611 // |111|11|1|0000|000000|1|1|1 |1|1 |10000000000|
612 // |5 3|21|0|9876|543 0|5|4|3 |2|1 |0 5 0|
613 // |---|--|-|----|------|-|-|--|-|--|-----------|
614 // |332|22|2|2222|221111|1|1|1 |1|1 |10000000000|
615 // |1 9|87|6|5432|109 6|5|4|3 |2|1 |0 5 0|
616 // |---|--|-|----|------|-|-|--|-|--|-----------|
617 // |111|10|S|cond| imm6 |1|0|J1|0|J2| imm11 |
618 uint32_t S = (instr >> 26) & 1;
619 uint32_t J2 = (instr >> 11) & 1;
620 uint32_t J1 = (instr >> 13) & 1;
621 uint32_t imm6 = (instr >> 16) & 0x3F;
622 uint32_t imm11 = instr & 0x7FF;
623 uint32_t cond = (instr >> 22) & 0xF;
624 int32_t imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
625 imm32 = (imm32 << 11) >> 11; // sign extend 21bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -0700626 opcode << "b";
627 DumpCond(opcode, cond);
628 opcode << ".w";
629 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers9af89402012-09-07 11:29:35 -0700630 } else if (op2 == 0x3B) {
631 // Miscellaneous control instructions
632 uint32_t op5 = (instr >> 4) & 0xF;
633 switch (op5) {
634 case 4: opcode << "dsb"; break;
635 case 5: opcode << "dmb"; break;
636 case 6: opcode << "isb"; break;
637 }
Ian Rogers40627db2012-03-04 17:31:09 -0800638 }
639 break;
640 case 2:
641 case 1: case 3:
642 break;
643 case 4: case 6: case 5: case 7: {
644 // BL, BLX (immediate)
645 // |111|11|1|0000000000|11|1 |1|1 |10000000000|
646 // |5 3|21|0|9876543 0|54|3 |2|1 |0 5 0|
647 // |---|--|-|----------|--|--|-|--|-----------|
648 // |332|22|2|2222221111|11|1 |1|1 |10000000000|
649 // |1 9|87|6|5 0 6|54|3 |2|1 |0 5 0|
650 // |---|--|-|----------|--|--|-|--|-----------|
651 // |111|10|S| imm10 |11|J1|L|J2| imm11 |
652 uint32_t S = (instr >> 26) & 1;
653 uint32_t J2 = (instr >> 11) & 1;
654 uint32_t L = (instr >> 12) & 1;
655 uint32_t J1 = (instr >> 13) & 1;
656 uint32_t imm10 = (instr >> 16) & 0x3FF;
657 uint32_t imm11 = instr & 0x7FF;
658 if (L == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700659 opcode << "bx";
Ian Rogers40627db2012-03-04 17:31:09 -0800660 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700661 opcode << "blx";
Ian Rogers40627db2012-03-04 17:31:09 -0800662 }
663 uint32_t I1 = ~(J1 ^ S);
664 uint32_t I2 = ~(J2 ^ S);
665 int32_t imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
666 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
Elliott Hughescbf0b612012-03-15 16:23:47 -0700667 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800668 break;
669 }
670 }
671 }
672 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800673 case 3:
674 switch (op2) {
675 case 0x00: case 0x02: case 0x04: case 0x06: // 000xxx0
676 case 0x08: case 0x0A: case 0x0C: case 0x0E: {
677 // Store single data item
Ian Rogers40627db2012-03-04 17:31:09 -0800678 // |111|11|100|000|0|0000|1111|110000|000000|
679 // |5 3|21|098|765|4|3 0|5 2|10 6|5 0|
680 // |---|--|---|---|-|----|----|------|------|
681 // |332|22|222|222|2|1111|1111|110000|000000|
682 // |1 9|87|654|321|0|9 6|5 2|10 6|5 0|
683 // |---|--|---|---|-|----|----|------|------|
684 // |111|11|000|op3|0| | | op4 | |
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800685 uint32_t op3 = (instr >> 21) & 7;
686 //uint32_t op4 = (instr >> 6) & 0x3F;
687 switch (op3) {
Ian Rogers087b2412012-03-21 01:30:32 -0700688 case 0x0: case 0x4: {
689 // STRB Rt,[Rn,#+/-imm8] - 111 11 00 0 0 00 0 nnnn tttt 1 PUWii ii iiii
690 // 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 -0700691 ArmRegister Rn(instr, 16);
692 ArmRegister Rt(instr, 12);
Ian Rogers087b2412012-03-21 01:30:32 -0700693 opcode << "strb";
694 if ((instr & 0x800) != 0) {
695 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700696 args << Rt << ", [" << Rn << ",#" << imm8 << "]";
Ian Rogers087b2412012-03-21 01:30:32 -0700697 } else {
698 uint32_t imm2 = (instr >> 4) & 3;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700699 ArmRegister Rm(instr, 0);
700 args << Rt << ", [" << Rn << ", " << Rm;
Ian Rogers087b2412012-03-21 01:30:32 -0700701 if (imm2 != 0) {
702 args << ", " << "lsl #" << imm2;
703 }
704 args << "]";
705 }
706 break;
707 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800708 case 0x2: case 0x6: {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700709 ArmRegister Rn(instr, 16);
710 ArmRegister Rt(instr, 12);
Ian Rogers40627db2012-03-04 17:31:09 -0800711 if (op3 == 2) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700712 if ((instr & 0x800) != 0) {
713 // STR Rt, [Rn, #imm8] - 111 11 000 010 0 nnnn tttt 1PUWiiiiiiii
714 uint32_t P = (instr >> 10) & 1;
715 uint32_t U = (instr >> 9) & 1;
716 uint32_t W = (instr >> 8) & 1;
717 uint32_t imm8 = instr & 0xFF;
718 int32_t imm32 = (imm8 << 24) >> 24; // sign-extend imm8
719 if (Rn.r == 13 && P == 1 && U == 0 && W == 1 && imm32 == 4) {
720 opcode << "push";
721 args << Rt;
722 } else if (Rn.r == 15 || (P == 0 && W == 0)) {
723 opcode << "UNDEFINED";
Ian Rogers40627db2012-03-04 17:31:09 -0800724 } else {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700725 if (P == 1 && U == 1 && W == 0) {
726 opcode << "strt";
727 } else {
728 opcode << "str";
729 }
730 args << Rt << ", [" << Rn;
731 if (P == 0 && W == 1) {
732 args << "], #" << imm32;
733 } else {
734 args << ", #" << imm32 << "]";
735 if (W == 1) {
736 args << "!";
737 }
Ian Rogers40627db2012-03-04 17:31:09 -0800738 }
739 }
Ian Rogers66a3fca2012-04-09 19:51:34 -0700740 } else {
741 // STR Rt, [Rn, Rm, LSL #imm2] - 111 11 000 010 0 nnnn tttt 000000iimmmm
742 ArmRegister Rn(instr, 16);
743 ArmRegister Rt(instr, 12);
744 ArmRegister Rm(instr, 0);
745 uint32_t imm2 = (instr >> 4) & 3;
746 opcode << "str.w";
747 args << Rt << ", [" << Rn << ", " << Rm;
748 if (imm2 != 0) {
749 args << ", lsl #" << imm2;
750 }
751 args << "]";
Ian Rogers40627db2012-03-04 17:31:09 -0800752 }
753 } else if (op3 == 6) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700754 // STR.W Rt, [Rn, #imm12] - 111 11 000 110 0 nnnn tttt iiiiiiiiiiii
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800755 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700756 opcode << "str.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700757 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800758 }
Ian Rogers40627db2012-03-04 17:31:09 -0800759 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800760 }
761 }
762
763 break;
764 }
765 case 0x05: case 0x0D: case 0x15: case 0x1D: { // 00xx101
766 // Load word
767 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
768 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
769 // |---|--|--|---|--|-|----|----|------|------|
770 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
771 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
772 // |---|--|--|---|--|-|----|----|------|------|
773 // |111|11|00|op3|10|1| Rn | Rt | op4 | |
774 // |111|11| op2 | | | imm12 |
775 uint32_t op3 = (instr >> 23) & 3;
776 uint32_t op4 = (instr >> 6) & 0x3F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700777 ArmRegister Rn(instr, 16);
778 ArmRegister Rt(instr, 12);
779 if (op3 == 1 || Rn.r == 15) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800780 // LDR.W Rt, [Rn, #imm12] - 111 11 00 00 101 nnnn tttt iiiiiiiiiiii
781 // LDR.W Rt, [PC, #imm12] - 111 11 00 0x 101 1111 tttt iiiiiiiiiiii
782 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700783 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700784 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700785 if (Rn.r == 9) {
786 args << " ; ";
787 Thread::DumpThreadOffset(args, imm12, 4);
Ian Rogers5b9b1bc2012-04-09 22:51:43 -0700788 } else if (Rn.r == 15) {
789 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
790 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
791 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700792 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800793 } else if (op4 == 0) {
794 // LDR.W Rt, [Rn, Rm{, LSL #imm2}] - 111 11 00 00 101 nnnn tttt 000000iimmmm
795 uint32_t imm2 = (instr >> 4) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700796 ArmRegister rm(instr, 0);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700797 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700798 args << Rt << ", [" << Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800799 if (imm2 != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700800 args << ", lsl #" << imm2;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800801 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700802 args << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800803 } else {
804 // LDRT Rt, [Rn, #imm8] - 111 11 00 00 101 nnnn tttt 1110iiiiiiii
805 uint32_t imm8 = instr & 0xFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700806 opcode << "ldrt";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700807 args << Rt << ", [" << Rn << ", #" << imm8 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800808 }
809 break;
810 }
811 }
812 default:
813 break;
814 }
Ian Rogers9af89402012-09-07 11:29:35 -0700815
816 // Apply any IT-block conditions to the opcode if necessary.
817 if (!it_conditions_.empty()) {
818 opcode << it_conditions_.back();
819 it_conditions_.pop_back();
820 }
821
Elliott Hughescbf0b612012-03-15 16:23:47 -0700822 os << StringPrintf("\t\t\t%p: %08x\t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800823 return 4;
824}
825
826size_t DisassemblerArm::DumpThumb16(std::ostream& os, const uint8_t* instr_ptr) {
827 uint16_t instr = ReadU16(instr_ptr);
828 bool is_32bit = ((instr & 0xF000) == 0xF000) || ((instr & 0xF800) == 0xE800);
829 if (is_32bit) {
830 return DumpThumb32(os, instr_ptr);
831 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700832 std::ostringstream opcode;
833 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800834 uint16_t opcode1 = instr >> 10;
835 if (opcode1 < 0x10) {
836 // shift (immediate), add, subtract, move, and compare
837 uint16_t opcode2 = instr >> 9;
838 switch (opcode2) {
839 case 0x0: case 0x1: case 0x2: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
840 case 0x8: case 0x9: case 0xA: case 0xB: {
841 // Logical shift left - 00 000xx xxxxxxxxx
842 // Logical shift right - 00 001xx xxxxxxxxx
843 // Arithmetic shift right - 00 010xx xxxxxxxxx
844 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700845 ThumbRegister rm(instr, 3);
846 ThumbRegister Rd(instr, 7);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800847 if (opcode2 <= 3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700848 opcode << "lsls";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800849 } else if (opcode2 <= 7) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700850 opcode << "lsrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800851 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700852 opcode << "asrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800853 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700854 args << Rd << ", " << rm << ", #" << imm5;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800855 break;
856 }
857 case 0xC: case 0xD: case 0xE: case 0xF: {
858 // Add register - 00 01100 mmm nnn ddd
859 // Sub register - 00 01101 mmm nnn ddd
860 // Add 3-bit immediate - 00 01110 iii nnn ddd
861 // Sub 3-bit immediate - 00 01111 iii nnn ddd
862 uint16_t imm3_or_Rm = (instr >> 6) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700863 ThumbRegister Rn(instr, 3);
864 ThumbRegister Rd(instr, 0);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800865 if ((opcode2 & 2) != 0 && imm3_or_Rm == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700866 opcode << "mov";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800867 } else {
868 if ((opcode2 & 1) == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700869 opcode << "adds";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800870 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700871 opcode << "subs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800872 }
873 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700874 args << Rd << ", " << Rn;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800875 if ((opcode2 & 2) == 0) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700876 ArmRegister Rm(imm3_or_Rm);
877 args << ", " << Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800878 } else if (imm3_or_Rm != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700879 args << ", #" << imm3_or_Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800880 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800881 break;
882 }
883 case 0x10: case 0x11: case 0x12: case 0x13:
884 case 0x14: case 0x15: case 0x16: case 0x17:
885 case 0x18: case 0x19: case 0x1A: case 0x1B:
886 case 0x1C: case 0x1D: case 0x1E: case 0x1F: {
887 // MOVS Rd, #imm8 - 00100 ddd iiiiiiii
888 // CMP Rn, #imm8 - 00101 nnn iiiiiiii
889 // ADDS Rn, #imm8 - 00110 nnn iiiiiiii
890 // SUBS Rn, #imm8 - 00111 nnn iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700891 ThumbRegister Rn(instr, 8);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800892 uint16_t imm8 = instr & 0xFF;
893 switch (opcode2 >> 2) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700894 case 4: opcode << "movs"; break;
895 case 5: opcode << "cmp"; break;
896 case 6: opcode << "adds"; break;
897 case 7: opcode << "subs"; break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800898 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700899 args << Rn << ", #" << imm8;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800900 break;
901 }
902 default:
903 break;
904 }
Ian Rogersad03ef52012-03-18 19:34:47 -0700905 } else if (opcode1 == 0x10) {
906 // Data-processing
907 uint16_t opcode2 = (instr >> 6) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700908 ThumbRegister rm(instr, 3);
909 ThumbRegister rdn(instr, 0);
Ian Rogersad03ef52012-03-18 19:34:47 -0700910 opcode << kThumbDataProcessingOperations[opcode2];
Elliott Hughes630e77d2012-03-22 19:20:56 -0700911 args << rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800912 } else if (opcode1 == 0x11) {
913 // Special data instructions and branch and exchange
914 uint16_t opcode2 = (instr >> 6) & 0x0F;
915 switch (opcode2) {
916 case 0x0: case 0x1: case 0x2: case 0x3: {
917 // Add low registers - 010001 0000 xxxxxx
918 // Add high registers - 010001 0001/001x xxxxxx
919 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700920 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800921 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700922 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700923 opcode << "add";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700924 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800925 break;
926 }
927 case 0x8: case 0x9: case 0xA: case 0xB: {
928 // Move low registers - 010001 1000 xxxxxx
929 // Move high registers - 010001 1001/101x xxxxxx
930 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700931 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800932 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700933 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700934 opcode << "mov";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700935 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800936 break;
937 }
938 case 0x5: case 0x6: case 0x7: {
939 // Compare high registers - 010001 0101/011x xxxxxx
940 uint16_t N = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700941 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800942 uint16_t Rn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700943 ArmRegister N_Rn((N << 3) | Rn);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700944 opcode << "cmp";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700945 args << N_Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800946 break;
947 }
948 case 0xC: case 0xD: case 0xE: case 0xF: {
949 // Branch and exchange - 010001 110x xxxxxx
950 // Branch with link and exchange - 010001 111x xxxxxx
Elliott Hughes630e77d2012-03-22 19:20:56 -0700951 ArmRegister rm(instr, 3);
952 opcode << ((opcode2 & 0x2) == 0 ? "bx" : "blx");
953 args << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800954 break;
955 }
956 default:
957 break;
958 }
Ian Rogersd83bc362012-09-07 17:43:13 -0700959 } else if ((opcode1 >= 0x14 && opcode1 <= 0x17) || // 0101xx
960 (opcode1 >= 0x18 && opcode1 <= 0x1f) || // 011xxx
961 (opcode1 >= 0x20 && opcode1 <= 0x27)) { // 100xxx
962 // Load/store single data item
963 uint16_t opA = (instr >> 12) & 0xF;
964 if (opA == 0x5) {
965 uint16_t opB = (instr >> 9) & 0x7;
966 ThumbRegister Rm(instr, 6);
967 ThumbRegister Rn(instr, 3);
968 ThumbRegister Rt(instr, 0);
969 switch(opB) {
970 case 0: opcode << "str"; break;
971 case 1: opcode << "strh"; break;
972 case 2: opcode << "strb"; break;
973 case 3: opcode << "ldrsb"; break;
974 case 4: opcode << "ldr"; break;
975 case 5: opcode << "ldrh"; break;
976 case 6: opcode << "ldrb"; break;
977 case 7: opcode << "ldrsh"; break;
978 }
979 args << Rt << ", [" << Rn << ", " << Rm << "]";
980 } else if (opA == 9) {
981 uint16_t opB = (instr >> 11) & 1;
982 ThumbRegister Rt(instr, 8);
983 uint16_t imm8 = instr & 0xFF;
984 opcode << (opB == 0 ? "str" : "ldr");
985 args << Rt << ", [ sp, #" << (imm8 << 2) << "]";
986 } else {
987 uint16_t imm5 = (instr >> 6) & 0x1F;
988 uint16_t opB = (instr >> 11) & 1;
989 ThumbRegister Rn(instr, 3);
990 ThumbRegister Rt(instr, 0);
991 switch(opA) {
992 case 6:
993 imm5 <<= 2;
994 opcode << (opB == 0 ? "str" : "ldr");
995 break;
996 case 7:
997 imm5 <<= 0;
998 opcode << (opB == 0 ? "strb" : "ldrb");
999 break;
1000 case 8:
1001 imm5 <<= 1;
1002 opcode << (opB == 0 ? "strh" : "ldrh");
1003 break;
1004 }
1005 args << Rt << ", [" << Rn << ", #" << imm5 << "]";
1006 }
Ian Rogers9af89402012-09-07 11:29:35 -07001007 } else if ((instr & 0xF800) == 0xA800) {
1008 // Generate SP-relative address
1009 ThumbRegister rd(instr, 8);
1010 int imm8 = instr & 0xFF;
1011 opcode << "add";
1012 args << rd << ", sp, #" << (imm8 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001013 } else if ((instr & 0xF000) == 0xB000) {
1014 // Miscellaneous 16-bit instructions
1015 uint16_t opcode2 = (instr >> 5) & 0x7F;
1016 switch (opcode2) {
1017 case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: {
1018 // Add immediate to SP - 1011 00000 ii iiiii
1019 // Subtract immediate from SP - 1011 00001 ii iiiii
1020 int imm7 = instr & 0x7F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001021 opcode << ((opcode2 & 4) == 0 ? "add" : "sub");
Elliott Hughescbf0b612012-03-15 16:23:47 -07001022 args << "sp, sp, #" << (imm7 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001023 break;
1024 }
Ian Rogers087b2412012-03-21 01:30:32 -07001025 case 0x08: case 0x09: case 0x0A: case 0x0B: // 0001xxx
Ian Rogersebbc5772012-04-11 17:00:08 -07001026 case 0x0C: case 0x0D: case 0x0E: case 0x0F:
1027 case 0x48: case 0x49: case 0x4A: case 0x4B: // 1001xxx
1028 case 0x4C: case 0x4D: case 0x4E: case 0x4F: {
Ian Rogers087b2412012-03-21 01:30:32 -07001029 // CBNZ, CBZ
1030 uint16_t op = (instr >> 11) & 1;
1031 uint16_t i = (instr >> 9) & 1;
1032 uint16_t imm5 = (instr >> 3) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001033 ThumbRegister Rn(instr, 0);
Ian Rogers087b2412012-03-21 01:30:32 -07001034 opcode << (op != 0 ? "cbnz" : "cbz");
1035 uint32_t imm32 = (i << 7) | (imm5 << 1);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001036 args << Rn << ", ";
Ian Rogers087b2412012-03-21 01:30:32 -07001037 DumpBranchTarget(args, instr_ptr + 4, imm32);
1038 break;
1039 }
Ian Rogers40627db2012-03-04 17:31:09 -08001040 case 0x78: case 0x79: case 0x7A: case 0x7B: // 1111xxx
1041 case 0x7C: case 0x7D: case 0x7E: case 0x7F: {
1042 // If-Then, and hints
1043 uint16_t opA = (instr >> 4) & 0xF;
1044 uint16_t opB = instr & 0xF;
1045 if (opB == 0) {
1046 switch (opA) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001047 case 0: opcode << "nop"; break;
1048 case 1: opcode << "yield"; break;
1049 case 2: opcode << "wfe"; break;
1050 case 3: opcode << "sev"; break;
Ian Rogers40627db2012-03-04 17:31:09 -08001051 default: break;
1052 }
1053 } else {
Elliott Hughes105afd22012-04-10 15:04:25 -07001054 uint32_t first_cond = opA;
1055 uint32_t mask = opB;
Elliott Hughescbf0b612012-03-15 16:23:47 -07001056 opcode << "it";
Elliott Hughes105afd22012-04-10 15:04:25 -07001057
1058 // Flesh out the base "it" opcode with the specific collection of 't's and 'e's,
1059 // and store up the actual condition codes we'll want to add to the next few opcodes.
1060 size_t count = 3 - CTZ(mask);
1061 it_conditions_.resize(count + 2); // Plus the implicit 't', plus the "" for the IT itself.
1062 for (size_t i = 0; i < count; ++i) {
1063 bool positive_cond = ((first_cond & 1) != 0);
1064 bool positive_mask = ((mask & (1 << (3 - i))) != 0);
1065 if (positive_mask == positive_cond) {
1066 opcode << 't';
1067 it_conditions_[i] = kConditionCodeNames[first_cond];
1068 } else {
1069 opcode << 'e';
1070 it_conditions_[i] = kConditionCodeNames[first_cond ^ 1];
1071 }
1072 }
1073 it_conditions_[count] = kConditionCodeNames[first_cond]; // The implicit 't'.
1074
1075 it_conditions_[count + 1] = ""; // No condition code for the IT itself...
1076 DumpCond(args, first_cond); // ...because it's considered an argument.
Ian Rogers40627db2012-03-04 17:31:09 -08001077 }
1078 break;
1079 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001080 default:
1081 break;
1082 }
1083 } else if (((instr & 0xF000) == 0x5000) || ((instr & 0xE000) == 0x6000) ||
1084 ((instr & 0xE000) == 0x8000)) {
1085 // Load/store single data item
1086 uint16_t opA = instr >> 12;
1087 //uint16_t opB = (instr >> 9) & 7;
1088 switch (opA) {
1089 case 0x6: {
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001090 // STR Rt, [Rn, #imm] - 01100 iiiii nnn ttt
1091 // LDR Rt, [Rn, #imm] - 01101 iiiii nnn ttt
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001092 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001093 ThumbRegister Rn(instr, 3);
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001094 ThumbRegister Rt(instr, 0);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001095 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1096 args << Rt << ", [" << Rn << ", #" << (imm5 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001097 break;
1098 }
1099 case 0x9: {
1100 // STR Rt, [SP, #imm] - 01100 ttt iiiiiiii
1101 // LDR Rt, [SP, #imm] - 01101 ttt iiiiiiii
1102 uint16_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001103 ThumbRegister Rt(instr, 8);
1104 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1105 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001106 break;
1107 }
1108 default:
1109 break;
1110 }
Ian Rogers40627db2012-03-04 17:31:09 -08001111 } else if (opcode1 == 0x38 || opcode1 == 0x39) {
1112 uint16_t imm11 = instr & 0x7FFF;
1113 int32_t imm32 = imm11 << 1;
1114 imm32 = (imm32 << 20) >> 20; // sign extend 12 bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -07001115 opcode << "b";
1116 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001117 }
Elliott Hughes105afd22012-04-10 15:04:25 -07001118
1119 // Apply any IT-block conditions to the opcode if necessary.
1120 if (!it_conditions_.empty()) {
1121 opcode << it_conditions_.back();
1122 it_conditions_.pop_back();
1123 }
1124
Elliott Hughescbf0b612012-03-15 16:23:47 -07001125 os << StringPrintf("\t\t\t%p: %04x \t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001126 }
1127 return 2;
1128}
1129
1130} // namespace arm
1131} // namespace art