blob: 9a5ca75bace5845ab0cec5614032a535deaf65ff [file] [log] [blame]
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001/*
2 * Copyright (C) 2012 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "disassembler_arm.h"
18
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080019#include <iostream>
20
Elliott Hughes07ed66b2012-12-12 18:34:25 -080021#include "base/logging.h"
Elliott Hughese222ee02012-12-13 14:41:43 -080022#include "base/stringprintf.h"
Elliott Hughes28fa76d2012-04-09 17:31:46 -070023#include "thread.h"
Elliott Hughes0f3c5532012-03-30 14:51:51 -070024
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080025namespace art {
26namespace arm {
27
28DisassemblerArm::DisassemblerArm() {
29}
30
Ian Rogersb23a7722012-10-09 16:54:26 -070031size_t DisassemblerArm::Dump(std::ostream& os, const uint8_t* begin) {
32 if ((reinterpret_cast<intptr_t>(begin) & 1) == 0) {
33 DumpArm(os, begin);
34 return 4;
35 } else {
36 // remove thumb specifier bits
37 begin = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(begin) & ~1);
38 return DumpThumb16(os, begin);
39 }
40}
41
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080042void DisassemblerArm::Dump(std::ostream& os, const uint8_t* begin, const uint8_t* end) {
43 if ((reinterpret_cast<intptr_t>(begin) & 1) == 0) {
44 for (const uint8_t* cur = begin; cur < end; cur += 4) {
45 DumpArm(os, cur);
46 }
47 } else {
48 // remove thumb specifier bits
49 begin = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(begin) & ~1);
50 end = reinterpret_cast<const uint8_t*>(reinterpret_cast<uintptr_t>(end) & ~1);
51 for (const uint8_t* cur = begin; cur < end;) {
52 cur += DumpThumb16(os, cur);
53 }
54 }
55}
56
Elliott Hughes77405792012-03-15 15:22:12 -070057static const char* kConditionCodeNames[] = {
Elliott Hughescbf0b612012-03-15 16:23:47 -070058 "eq", // 0000 - equal
59 "ne", // 0001 - not-equal
60 "cs", // 0010 - carry-set, greater than, equal or unordered
61 "cc", // 0011 - carry-clear, less than
62 "mi", // 0100 - minus, negative
63 "pl", // 0101 - plus, positive or zero
64 "vs", // 0110 - overflow
65 "vc", // 0111 - no overflow
66 "hi", // 1000 - unsigned higher
67 "ls", // 1001 - unsigned lower or same
68 "ge", // 1010 - signed greater than or equal
69 "lt", // 1011 - signed less than
70 "gt", // 1100 - signed greater than
71 "le", // 1101 - signed less than or equal
72 "", // 1110 - always
73 "nv", // 1111 - never (mostly obsolete, but might be a clue that we're mistranslating)
Ian Rogers40627db2012-03-04 17:31:09 -080074};
75
76void DisassemblerArm::DumpCond(std::ostream& os, uint32_t cond) {
77 if (cond < 15) {
Elliott Hughes77405792012-03-15 15:22:12 -070078 os << kConditionCodeNames[cond];
Ian Rogers40627db2012-03-04 17:31:09 -080079 } else {
80 os << "Unexpected condition: " << cond;
81 }
82}
83
Ian Rogers40627db2012-03-04 17:31:09 -080084void DisassemblerArm::DumpBranchTarget(std::ostream& os, const uint8_t* instr_ptr, int32_t imm32) {
Elliott Hughes1ca98492012-04-12 17:21:02 -070085 os << StringPrintf("%+d (%p)", imm32, instr_ptr + imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -080086}
87
88static uint32_t ReadU16(const uint8_t* ptr) {
89 return ptr[0] | (ptr[1] << 8);
90}
91
92static uint32_t ReadU32(const uint8_t* ptr) {
93 return ptr[0] | (ptr[1] << 8) | (ptr[2] << 16) | (ptr[3] << 24);
94}
95
Elliott Hughes77405792012-03-15 15:22:12 -070096static const char* kDataProcessingOperations[] = {
Elliott Hughescbf0b612012-03-15 16:23:47 -070097 "and", "eor", "sub", "rsb", "add", "adc", "sbc", "rsc",
98 "tst", "teq", "cmp", "cmn", "orr", "mov", "bic", "mvn",
Elliott Hughes77405792012-03-15 15:22:12 -070099};
100
Ian Rogersad03ef52012-03-18 19:34:47 -0700101static const char* kThumbDataProcessingOperations[] = {
102 "and", "eor", "lsl", "lsr", "asr", "adc", "sbc", "ror",
103 "tst", "rsb", "cmp", "cmn", "orr", "mul", "bic", "mvn",
104};
105
Elliott Hughes77405792012-03-15 15:22:12 -0700106struct ArmRegister {
Elliott Hughes74847412012-06-20 18:10:21 -0700107 explicit ArmRegister(uint32_t r) : r(r) { CHECK_LE(r, 15U); }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700108 ArmRegister(uint32_t instruction, uint32_t at_bit) : r((instruction >> at_bit) & 0xf) { CHECK_LE(r, 15U); }
Elliott Hughes77405792012-03-15 15:22:12 -0700109 uint32_t r;
110};
111std::ostream& operator<<(std::ostream& os, const ArmRegister& r) {
112 if (r.r == 13) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700113 os << "sp";
Elliott Hughes77405792012-03-15 15:22:12 -0700114 } else if (r.r == 14) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700115 os << "lr";
Elliott Hughes77405792012-03-15 15:22:12 -0700116 } else if (r.r == 15) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700117 os << "pc";
Elliott Hughes77405792012-03-15 15:22:12 -0700118 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700119 os << "r" << r.r;
Elliott Hughes77405792012-03-15 15:22:12 -0700120 }
121 return os;
122}
123
Elliott Hughes630e77d2012-03-22 19:20:56 -0700124struct ThumbRegister : ArmRegister {
125 ThumbRegister(uint16_t instruction, uint16_t at_bit) : ArmRegister((instruction >> at_bit) & 0x7) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700126};
127
128struct Rm {
Elliott Hughes74847412012-06-20 18:10:21 -0700129 explicit Rm(uint32_t instruction) : shift((instruction >> 4) & 0xff), rm(instruction & 0xf) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700130 uint32_t shift;
131 ArmRegister rm;
132};
133std::ostream& operator<<(std::ostream& os, const Rm& r) {
134 os << r.rm;
135 if (r.shift != 0) {
136 os << "-shift-" << r.shift; // TODO
137 }
138 return os;
139}
140
Elliott Hughes1ca98492012-04-12 17:21:02 -0700141struct ShiftedImmediate {
Elliott Hughes74847412012-06-20 18:10:21 -0700142 explicit ShiftedImmediate(uint32_t instruction) {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700143 uint32_t rotate = ((instruction >> 8) & 0xf);
144 uint32_t imm = (instruction & 0xff);
145 value = (imm >> (2 * rotate)) | (imm << (32 - (2 * rotate)));
146 }
147 uint32_t value;
Elliott Hughes77405792012-03-15 15:22:12 -0700148};
Elliott Hughes1ca98492012-04-12 17:21:02 -0700149std::ostream& operator<<(std::ostream& os, const ShiftedImmediate& rhs) {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700150 os << "#" << rhs.value;
Elliott Hughes77405792012-03-15 15:22:12 -0700151 return os;
152}
153
154struct RegisterList {
Elliott Hughes74847412012-06-20 18:10:21 -0700155 explicit RegisterList(uint32_t instruction) : register_list(instruction & 0xffff) {}
Elliott Hughes77405792012-03-15 15:22:12 -0700156 uint32_t register_list;
157};
158std::ostream& operator<<(std::ostream& os, const RegisterList& rhs) {
159 if (rhs.register_list == 0) {
160 os << "<no register list?>";
161 return os;
162 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700163 os << "{";
Elliott Hughes77405792012-03-15 15:22:12 -0700164 bool first = true;
165 for (size_t i = 0; i < 16; i++) {
166 if ((rhs.register_list & (1 << i)) != 0) {
167 if (first) {
Elliott Hughes77405792012-03-15 15:22:12 -0700168 first = false;
169 } else {
170 os << ", ";
171 }
172 os << ArmRegister(i);
173 }
174 }
175 os << "}";
176 return os;
177}
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800178
179void DisassemblerArm::DumpArm(std::ostream& os, const uint8_t* instr_ptr) {
Elliott Hughes77405792012-03-15 15:22:12 -0700180 uint32_t instruction = ReadU32(instr_ptr);
181 uint32_t cond = (instruction >> 28) & 0xf;
182 uint32_t op1 = (instruction >> 25) & 0x7;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700183 std::string opcode;
184 std::string suffixes;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700185 std::ostringstream args;
Elliott Hughes77405792012-03-15 15:22:12 -0700186 switch (op1) {
187 case 0:
188 case 1: // Data processing instructions.
189 {
Elliott Hughes3d71d072012-04-10 18:28:35 -0700190 if ((instruction & 0x0ff000f0) == 0x01200070) { // BKPT
191 opcode = "bkpt";
192 uint32_t imm12 = (instruction >> 8) & 0xfff;
193 uint32_t imm4 = (instruction & 0xf);
194 args << '#' << ((imm12 << 4) | imm4);
195 break;
196 }
Elliott Hughes77405792012-03-15 15:22:12 -0700197 if ((instruction & 0x0fffffd0) == 0x012fff10) { // BX and BLX (register)
Elliott Hughes3d71d072012-04-10 18:28:35 -0700198 opcode = (((instruction >> 5) & 1) ? "blx" : "bx");
Elliott Hughescbf0b612012-03-15 16:23:47 -0700199 args << ArmRegister(instruction & 0xf);
Elliott Hughes77405792012-03-15 15:22:12 -0700200 break;
201 }
202 bool i = (instruction & (1 << 25)) != 0;
203 bool s = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700204 uint32_t op = (instruction >> 21) & 0xf;
205 opcode = kDataProcessingOperations[op];
206 bool implicit_s = ((op & ~3) == 8); // TST, TEQ, CMP, and CMN.
207 if (implicit_s) {
208 // Rd is unused (and not shown), and we don't show the 's' suffix either.
209 } else {
210 if (s) {
211 suffixes += 's';
212 }
213 args << ArmRegister(instruction, 12) << ", ";
214 }
Elliott Hughes77405792012-03-15 15:22:12 -0700215 if (i) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700216 args << ArmRegister(instruction, 16) << ", " << ShiftedImmediate(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700217 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700218 args << Rm(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700219 }
220 }
221 break;
222 case 2: // Load/store word and unsigned byte.
223 {
224 bool p = (instruction & (1 << 24)) != 0;
225 bool b = (instruction & (1 << 22)) != 0;
226 bool w = (instruction & (1 << 21)) != 0;
227 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700228 opcode = StringPrintf("%s%s", (l ? "ldr" : "str"), (b ? "b" : ""));
Elliott Hughes630e77d2012-03-22 19:20:56 -0700229 args << ArmRegister(instruction, 12) << ", ";
230 ArmRegister rn(instruction, 16);
231 if (rn.r == 0xf) {
Elliott Hughes77405792012-03-15 15:22:12 -0700232 UNIMPLEMENTED(FATAL) << "literals";
233 } else {
234 bool wback = !p || w;
Elliott Hughes1ca98492012-04-12 17:21:02 -0700235 uint32_t offset = (instruction & 0xfff);
Elliott Hughes77405792012-03-15 15:22:12 -0700236 if (p && !wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700237 args << "[" << rn << ", #" << offset << "]";
Elliott Hughes77405792012-03-15 15:22:12 -0700238 } else if (p && wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700239 args << "[" << rn << ", #" << offset << "]!";
Elliott Hughes77405792012-03-15 15:22:12 -0700240 } else if (!p && wback) {
Elliott Hughes1ca98492012-04-12 17:21:02 -0700241 args << "[" << rn << "], #" << offset;
Elliott Hughes77405792012-03-15 15:22:12 -0700242 } else {
243 LOG(FATAL) << p << " " << w;
244 }
Elliott Hughes3d71d072012-04-10 18:28:35 -0700245 if (rn.r == 9) {
246 args << " ; ";
Elliott Hughes1ca98492012-04-12 17:21:02 -0700247 Thread::DumpThreadOffset(args, offset, 4);
Elliott Hughes3d71d072012-04-10 18:28:35 -0700248 }
Elliott Hughes77405792012-03-15 15:22:12 -0700249 }
250 }
251 break;
252 case 4: // Load/store multiple.
253 {
254 bool p = (instruction & (1 << 24)) != 0;
255 bool u = (instruction & (1 << 23)) != 0;
256 bool w = (instruction & (1 << 21)) != 0;
257 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700258 opcode = StringPrintf("%s%c%c", (l ? "ldm" : "stm"), (u ? 'i' : 'd'), (p ? 'b' : 'a'));
Elliott Hughes630e77d2012-03-22 19:20:56 -0700259 args << ArmRegister(instruction, 16) << (w ? "!" : "") << ", " << RegisterList(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700260 }
261 break;
Elliott Hughes3d71d072012-04-10 18:28:35 -0700262 case 5: // Branch/branch with link.
263 {
264 bool bl = (instruction & (1 << 24)) != 0;
265 opcode = (bl ? "bl" : "b");
Elliott Hughesd86261e2012-04-11 11:23:23 -0700266 int32_t imm26 = (instruction & 0xffffff) << 2;
267 int32_t imm32 = (imm26 << 6) >> 6; // Sign extend.
Elliott Hughes3d71d072012-04-10 18:28:35 -0700268 DumpBranchTarget(args, instr_ptr + 8, imm32);
269 }
270 break;
Elliott Hughes77405792012-03-15 15:22:12 -0700271 default:
Elliott Hughes3d71d072012-04-10 18:28:35 -0700272 opcode = "???";
Elliott Hughes77405792012-03-15 15:22:12 -0700273 break;
274 }
Elliott Hughes3d71d072012-04-10 18:28:35 -0700275 opcode += kConditionCodeNames[cond];
276 opcode += suffixes;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700277 // TODO: a more complete ARM disassembler could generate wider opcodes.
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800278 os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instruction, opcode.c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800279}
280
281size_t DisassemblerArm::DumpThumb32(std::ostream& os, const uint8_t* instr_ptr) {
282 uint32_t instr = (ReadU16(instr_ptr) << 16) | ReadU16(instr_ptr + 2);
283 // |111|1 1|1000000|0000|1111110000000000|
284 // |5 3|2 1|0987654|3 0|5 0 5 0|
285 // |---|---|-------|----|----------------|
286 // |332|2 2|2222222|1111|1111110000000000|
287 // |1 9|8 7|6543210|9 6|5 0 5 0|
288 // |---|---|-------|----|----------------|
289 // |111|op1| op2 | | |
290 uint32_t op1 = (instr >> 27) & 3;
Elliott Hughes77405792012-03-15 15:22:12 -0700291 if (op1 == 0) {
292 return DumpThumb16(os, instr_ptr);
293 }
294
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800295 uint32_t op2 = (instr >> 20) & 0x7F;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700296 std::ostringstream opcode;
297 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800298 switch (op1) {
299 case 0:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800300 break;
301 case 1:
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700302 if ((op2 & 0x64) == 0) { // 00x x0xx
303 // |111|11|10|00|0|00|0000|1111110000000000|
304 // |5 3|21|09|87|6|54|3 0|5 0 5 0|
305 // |---|--|--|--|-|--|----|----------------|
306 // |332|22|22|22|2|22|1111|1111110000000000|
307 // |1 9|87|65|43|2|10|9 6|5 0 5 0|
308 // |---|--|--|--|-|--|----|----------------|
309 // |111|01|00|op|0|WL| Rn | |
310 // |111|01| op2 | | |
311 // STM - 111 01 00-01-0-W0 nnnn rrrrrrrrrrrrrrrr
312 // LDM - 111 01 00-01-0-W1 nnnn rrrrrrrrrrrrrrrr
313 // PUSH- 111 01 00-01-0-10 1101 0M0rrrrrrrrrrrrr
314 // POP - 111 01 00-01-0-11 1101 PM0rrrrrrrrrrrrr
315 uint32_t op = (instr >> 23) & 3;
316 uint32_t W = (instr >> 21) & 1;
317 uint32_t L = (instr >> 20) & 1;
318 ArmRegister Rn(instr, 16);
319 if (op == 1 || op == 2) {
320 if (op == 1) {
321 if (L == 0) {
322 opcode << "stm";
323 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800324 } else {
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700325 if (Rn.r != 13) {
326 opcode << "ldm";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700327 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700328 } else {
329 opcode << "pop";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800330 }
331 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700332 } else {
333 if (L == 0) {
334 if (Rn.r != 13) {
335 opcode << "stmdb";
336 args << Rn << (W == 0 ? "" : "!") << ", ";
337 } else {
338 opcode << "push";
339 }
340 } else {
341 opcode << "ldmdb";
342 args << Rn << (W == 0 ? "" : "!") << ", ";
343 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800344 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700345 args << RegisterList(instr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800346 }
Ian Rogers9af89402012-09-07 11:29:35 -0700347 } else if ((op2 & 0x64) == 4) { // 00x x1xx
348 uint32_t op3 = (instr >> 23) & 3;
349 uint32_t op4 = (instr >> 20) & 3;
350 //uint32_t op5 = (instr >> 4) & 0xF;
351 ArmRegister Rn(instr, 16);
352 ArmRegister Rt(instr, 12);
353 uint32_t imm8 = instr & 0xFF;
354 if (op3 == 0 && op4 == 0) { // STREX
355 ArmRegister Rd(instr, 8);
356 opcode << "strex";
357 args << Rd << ", " << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
358 } else if (op3 == 0 && op4 == 1) { // LDREX
359 opcode << "ldrex";
360 args << Rt << ", [" << Rn << ", #" << (imm8 << 2) << "]";
361 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700362 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx
363 // Data-processing (shifted register)
364 // |111|1110|0000|0|0000|1111|1100|0000|0000|
365 // |5 3|2109|8765|4|3 0|5 |10 8|7 5 |3 0|
366 // |---|----|----|-|----|----|----|----|----|
367 // |332|2222|2222|2|1111|1111|1100|0000|0000|
368 // |1 9|8765|4321|0|9 6|5 |10 8|7 5 |3 0|
369 // |---|----|----|-|----|----|----|----|----|
370 // |111|0101| op3|S| Rn | | Rd | | Rm |
371 uint32_t op3 = (instr >> 21) & 0xF;
372 uint32_t S = (instr >> 20) & 1;
373 uint32_t Rn = (instr >> 16) & 0xF;
374 ArmRegister Rd(instr, 8);
375 ArmRegister Rm(instr, 0);
376 switch (op3) {
377 case 0x0:
378 if (Rn != 0xF) {
379 opcode << "and";
380 } else {
381 opcode << "tst";
382 S = 0; // don't print 's'
383 }
384 break;
385 case 0x1: opcode << "bic"; break;
386 case 0x2:
387 if (Rn != 0xF) {
388 opcode << "orr";
389 } else {
390 opcode << "mov";
391 }
392 break;
393 case 0x3:
394 if (Rn != 0xF) {
395 opcode << "orn";
396 } else {
397 opcode << "mvn";
398 }
399 break;
400 case 0x4:
401 if (Rn != 0xF) {
402 opcode << "eor";
403 } else {
404 opcode << "teq";
405 S = 0; // don't print 's'
406 }
407 break;
408 case 0x6: opcode << "pkh"; break;
409 case 0x8:
410 if (Rn != 0xF) {
411 opcode << "add";
412 } else {
413 opcode << "cmn";
414 S = 0; // don't print 's'
415 }
416 break;
417 case 0xA: opcode << "adc"; break;
418 case 0xB: opcode << "sbc"; break;
419 }
Ian Rogers087b2412012-03-21 01:30:32 -0700420
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700421 if (S == 1) {
422 opcode << "s";
Ian Rogers087b2412012-03-21 01:30:32 -0700423 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700424 opcode << ".w";
425 args << Rd << ", " << Rm;
426 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx
427 // Co-processor instructions
428 // |111|1|11|000000|0000|1111|1100|000|0 |0000|
429 // |5 3|2|10|987654|3 0|54 2|10 8|7 5|4 | 0|
430 // |---|-|--|------|----|----|----|---|---|----|
431 // |332|2|22|222222|1111|1111|1100|000|0 |0000|
432 // |1 9|8|76|543210|9 6|54 2|10 8|7 5|4 | 0|
433 // |---|-|--|------|----|----|----|---|---|----|
434 // |111| |11| op3 | Rn | |copr| |op4| |
435 uint32_t op3 = (instr >> 20) & 0x3F;
436 uint32_t coproc = (instr >> 8) & 0xF;
437 uint32_t op4 = (instr >> 4) & 0x1;
Ian Rogers9af89402012-09-07 11:29:35 -0700438 if ((op3 == 2 || op3 == 2 || op3 == 6 || op3 == 7) || // 00x1x
439 (op3 >= 8 && op3 <= 15) || (op3 >= 16 && op3 <= 31)) { // 001xxx, 01xxxx
440 // Extension register load/store instructions
441 // |111|1|110|00000|0000|1111|110|000000000|
442 // |5 3|2|109|87654|3 0|54 2|10 |87 54 0|
443 // |---|-|---|-----|----|----|---|---------|
444 // |332|2|222|22222|1111|1111|110|000000000|
445 // |1 9|8|765|43210|9 6|54 2|10 |87 54 0|
446 // |---|-|---|-----|----|----|---|---------|
447 // |111|T|110| op3 | Rn | |101| |
448 // 111 0 110 01001 0011 0000 101 000000011 - ec930a03
449 if (op3 == 9 || op3 == 0xD) { // VLDM
450 // 1110 110 PUDW1 nnnn dddd 101S iiii iiii
451 uint32_t P = (instr >> 24) & 1;
452 uint32_t U = (instr >> 23) & 1;
453 uint32_t D = (instr >> 22) & 1;
454 uint32_t W = (instr >> 21) & 1;
455 uint32_t S = (instr >> 8) & 1;
456 ArmRegister Rn(instr, 16);
457 uint32_t Vd = (instr >> 12) & 0xF;
458 uint32_t imm8 = instr & 0xFF;
459 uint32_t d = (S == 0 ? ((Vd << 1) | D) : (Vd | (D << 4)));
460 if (P == 0 && U == 0 && W == 0) {
461 // TODO: 64bit transfers between ARM core and extension registers.
462 } else if (P == 0 && U == 1 && Rn.r == 13) { // VPOP
463 opcode << "vpop" << (S == 0 ? ".f64" : ".f32");
464 args << d << " .. " << (d + imm8);
465 } else if (P == 1 && W == 0) { // VLDR
466 opcode << "vldr" << (S == 0 ? ".f64" : ".f32");
467 args << d << ", [" << Rn << ", #" << imm8 << "]";
468 } else { // VLDM
469 opcode << "vldm" << (S == 0 ? ".f64" : ".f32");
470 args << Rn << ", " << d << " .. " << (d + imm8);
471 }
472 }
Ian Rogers0183dd72012-09-17 23:06:51 -0700473 } else if ((op3 & 0x30) == 0x20 && op4 == 0) { // 10 xxxx ... 0
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700474 if ((coproc & 0xE) == 0xA) {
475 // VFP data-processing instructions
476 // |111|1|1100|0000|0000|1111|110|0|00 |0|0|0000|
477 // |5 3|2|1098|7654|3 0|54 2|10 |8|76 |5|4|3 0|
478 // |---|-|----|----|----|----|---|-|----|-|-|----|
479 // |332|2|2222|2222|1111|1111|110|0|00 |0|0|0000|
480 // |1 9|8|7654|3210|9 6|54 2|109|8|76 |5|4|3 0|
481 // |---|-|----|----|----|----|---|-|----|-|-|----|
482 // |111|T|1110|opc1|opc2| |101| |opc3| | | |
483 // 111 0 1110|1111 0100 1110 101 0 01 1 0 1001 - eef4ea69
484 uint32_t opc1 = (instr >> 20) & 0xF;
485 uint32_t opc2 = (instr >> 16) & 0xF;
Ian Rogers0183dd72012-09-17 23:06:51 -0700486 uint32_t opc3 = (instr >> 6) & 0x3;
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700487 if ((opc1 & 0xB) == 0xB) { // 1x11
488 // Other VFP data-processing instructions.
Ian Rogers0183dd72012-09-17 23:06:51 -0700489 uint32_t D = (instr >> 22) & 0x1;
490 uint32_t Vd = (instr >> 12) & 0xF;
491 uint32_t sz = (instr >> 8) & 1;
492 uint32_t M = (instr >> 5) & 1;
493 uint32_t Vm = instr & 0xF;
494 bool dp_operation = sz == 1;
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700495 switch (opc2) {
Ian Rogers0183dd72012-09-17 23:06:51 -0700496 case 0x1: // Vneg/Vsqrt
497 // 1110 11101 D 11 0001 dddd 101s o1M0 mmmm
498 opcode << (opc3 == 1 ? "vneg" : "vsqrt") << (dp_operation ? ".f64" : ".f32");
499 if (dp_operation) {
500 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
501 } else {
502 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
503 }
504 break;
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700505 case 0x4: case 0x5: { // Vector compare
506 // 1110 11101 D 11 0100 dddd 101 sE1M0 mmmm
Ian Rogers0183dd72012-09-17 23:06:51 -0700507 opcode << (opc3 == 1 ? "vcmp" : "vcmpe") << (dp_operation ? ".f64" : ".f32");
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700508 if (dp_operation) {
509 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
510 } else {
511 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
512 }
513 break;
514 }
515 }
516 }
517 }
Ian Rogers0183dd72012-09-17 23:06:51 -0700518 } else if ((op3 & 0x30) == 0x30) { // 11 xxxx
519 // Advanced SIMD
520 if ((instr & 0xFFBF0ED0) == 0xeeb10ac0) { // Vsqrt
521 // 1110 11101 D 11 0001 dddd 101S 11M0 mmmm
522 // 1110 11101 0 11 0001 1101 1011 1100 1000 - eeb1dbc8
523 uint32_t D = (instr >> 22) & 1;
524 uint32_t Vd = (instr >> 12) & 0xF;
525 uint32_t sz = (instr >> 8) & 1;
526 uint32_t M = (instr >> 5) & 1;
527 uint32_t Vm = instr & 0xF;
528 bool dp_operation = sz == 1;
529 opcode << "vsqrt" << (dp_operation ? ".f64" : ".f32");
530 if (dp_operation) {
531 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
532 } else {
533 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
534 }
535 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700536 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800537 }
538 break;
Ian Rogers40627db2012-03-04 17:31:09 -0800539 case 2:
540 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) {
541 // Data-processing (modified immediate)
542 // |111|11|10|0000|0|0000|1|111|1100|00000000|
543 // |5 3|21|09|8765|4|3 0|5|4 2|10 8|7 5 0|
544 // |---|--|--|----|-|----|-|---|----|--------|
545 // |332|22|22|2222|2|1111|1|111|1100|00000000|
546 // |1 9|87|65|4321|0|9 6|5|4 2|10 8|7 5 0|
547 // |---|--|--|----|-|----|-|---|----|--------|
548 // |111|10|i0| op3|S| Rn |0|iii| Rd |iiiiiiii|
549 // 111 10 x0 xxxx x xxxx opxxx xxxx xxxxxxxx
Ian Rogers40627db2012-03-04 17:31:09 -0800550 uint32_t i = (instr >> 26) & 1;
551 uint32_t op3 = (instr >> 21) & 0xF;
552 uint32_t S = (instr >> 20) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700553 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800554 uint32_t imm3 = (instr >> 12) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700555 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800556 uint32_t imm8 = instr & 0xFF;
Jeff Hao7cb0f9c2013-02-04 16:15:27 -0800557 int32_t imm32 = (i << 11) | (imm3 << 8) | imm8;
558 if (Rn.r == 0xF && (op3 == 0x2 || op3 == 0x3)) {
559 if (op3 == 0x2) {
560 opcode << "mov";
561 if (S == 1) {
562 opcode << "s";
563 }
564 opcode << ".w";
565 } else {
566 opcode << "mvn";
567 if (S == 1) {
568 opcode << "s";
569 }
570 }
571 args << Rd << ", ThumbExpand(" << imm32 << ")";
572 } else if (Rd.r == 0xF && S == 1 &&
573 (op3 == 0x0 || op3 == 0x4 || op3 == 0x8 || op3 == 0xD)) {
574 if (op3 == 0x0) {
575 opcode << "tst";
576 } else if (op3 == 0x4) {
577 opcode << "teq";
578 } else if (op3 == 0x8) {
579 opcode << "cmw";
580 } else {
581 opcode << "cmp.w";
582 }
583 args << Rn << ", ThumbExpand(" << imm32 << ")";
584 } else {
585 switch (op3) {
586 case 0x0: opcode << "and"; break;
587 case 0x1: opcode << "bic"; break;
588 case 0x2: opcode << "orr"; break;
589 case 0x3: opcode << "orn"; break;
590 case 0x4: opcode << "eor"; break;
591 case 0x8: opcode << "add"; break;
592 case 0xA: opcode << "adc"; break;
593 case 0xB: opcode << "sbc"; break;
594 case 0xD: opcode << "sub"; break;
595 case 0xE: opcode << "rsb"; break;
596 default: opcode << "UNKNOWN DPMI-" << op3; break;
597 }
598 if (S == 1) {
599 opcode << "s";
600 }
601 args << Rd << ", " << Rn << ", ThumbExpand(" << imm32 << ")";
Ian Rogers40627db2012-03-04 17:31:09 -0800602 }
Ian Rogers40627db2012-03-04 17:31:09 -0800603 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
604 // Data-processing (plain binary immediate)
605 // |111|11|10|00000|0000|1|111110000000000|
606 // |5 3|21|09|87654|3 0|5|4 0 5 0|
607 // |---|--|--|-----|----|-|---------------|
608 // |332|22|22|22222|1111|1|111110000000000|
609 // |1 9|87|65|43210|9 6|5|4 0 5 0|
610 // |---|--|--|-----|----|-|---------------|
611 // |111|10|x1| op3 | Rn |0|xxxxxxxxxxxxxxx|
612 uint32_t op3 = (instr >> 20) & 0x1F;
Ian Rogers40627db2012-03-04 17:31:09 -0800613 switch (op3) {
Ian Rogers55019132013-02-08 01:05:23 -0800614 case 0x00: case 0x0A: {
615 // ADD/SUB.W Rd, Rn #imm12 - 111 10 i1 0101 0 nnnn 0 iii dddd iiiiiiii
Ian Rogers66a3fca2012-04-09 19:51:34 -0700616 ArmRegister Rd(instr, 8);
617 ArmRegister Rn(instr, 16);
618 uint32_t i = (instr >> 26) & 1;
619 uint32_t imm3 = (instr >> 12) & 0x7;
620 uint32_t imm8 = instr & 0xFF;
621 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
622 if (Rn.r != 0xF) {
Ian Rogers55019132013-02-08 01:05:23 -0800623 opcode << (op3 == 0 ? "addw" : "subw");
Ian Rogers66a3fca2012-04-09 19:51:34 -0700624 args << Rd << ", " << Rn << ", #" << imm12;
625 } else {
626 opcode << "adr";
627 args << Rd << ", ";
Ian Rogers55019132013-02-08 01:05:23 -0800628 DumpBranchTarget(args, instr_ptr + 4, (op3 == 0) ? imm12 : -imm12);
Ian Rogers66a3fca2012-04-09 19:51:34 -0700629 }
630 break;
631 }
Ian Rogers55019132013-02-08 01:05:23 -0800632 case 0x04: case 0x0C: {
633 // MOVW/T Rd, #imm16 - 111 10 i0 0010 0 iiii 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700634 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800635 uint32_t i = (instr >> 26) & 1;
636 uint32_t imm3 = (instr >> 12) & 0x7;
637 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700638 uint32_t Rn = (instr >> 16) & 0xF;
Ian Rogers40627db2012-03-04 17:31:09 -0800639 uint32_t imm16 = (Rn << 12) | (i << 11) | (imm3 << 8) | imm8;
Ian Rogers55019132013-02-08 01:05:23 -0800640 opcode << (op3 == 0x04 ? "movw" : "movt");
Elliott Hughes630e77d2012-03-22 19:20:56 -0700641 args << Rd << ", #" << imm16;
Ian Rogers40627db2012-03-04 17:31:09 -0800642 break;
643 }
jeffhaoeae26912013-01-28 16:29:54 -0800644 case 0x16: {
645 // BFI Rd, Rn, #lsb, #width - 111 10 0 11 011 0 nnnn 0 iii dddd ii 0 iiiii
646 ArmRegister Rd(instr, 8);
647 ArmRegister Rn(instr, 16);
648 uint32_t msb = instr & 0x1F;
649 uint32_t imm2 = (instr >> 6) & 0x3;
650 uint32_t imm3 = (instr >> 12) & 0x7;
651 uint32_t lsb = (imm3 << 2) | imm2;
652 uint32_t width = msb - lsb + 1;
653 if (Rn.r != 0xF) {
654 opcode << "bfi";
655 args << Rd << ", " << Rn << ", #" << lsb << ", #" << width;
656 } else {
657 opcode << "bfc";
658 args << Rd << ", #" << lsb << ", #" << width;
659 }
660 break;
661 }
Ian Rogers40627db2012-03-04 17:31:09 -0800662 default:
663 break;
664 }
665 } else {
666 // Branches and miscellaneous control
667 // |111|11|1000000|0000|1|111|1100|00000000|
668 // |5 3|21|0987654|3 0|5|4 2|10 8|7 5 0|
669 // |---|--|-------|----|-|---|----|--------|
670 // |332|22|2222222|1111|1|111|1100|00000000|
671 // |1 9|87|6543210|9 6|5|4 2|10 8|7 5 0|
672 // |---|--|-------|----|-|---|----|--------|
673 // |111|10| op2 | |1|op3|op4 | |
674
675 uint32_t op3 = (instr >> 12) & 7;
676 //uint32_t op4 = (instr >> 8) & 0xF;
677 switch (op3) {
678 case 0:
679 if ((op2 & 0x38) != 0x38) {
680 // Conditional branch
681 // |111|11|1|0000|000000|1|1|1 |1|1 |10000000000|
682 // |5 3|21|0|9876|543 0|5|4|3 |2|1 |0 5 0|
683 // |---|--|-|----|------|-|-|--|-|--|-----------|
684 // |332|22|2|2222|221111|1|1|1 |1|1 |10000000000|
685 // |1 9|87|6|5432|109 6|5|4|3 |2|1 |0 5 0|
686 // |---|--|-|----|------|-|-|--|-|--|-----------|
687 // |111|10|S|cond| imm6 |1|0|J1|0|J2| imm11 |
688 uint32_t S = (instr >> 26) & 1;
689 uint32_t J2 = (instr >> 11) & 1;
690 uint32_t J1 = (instr >> 13) & 1;
691 uint32_t imm6 = (instr >> 16) & 0x3F;
692 uint32_t imm11 = instr & 0x7FF;
693 uint32_t cond = (instr >> 22) & 0xF;
694 int32_t imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
695 imm32 = (imm32 << 11) >> 11; // sign extend 21bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -0700696 opcode << "b";
697 DumpCond(opcode, cond);
698 opcode << ".w";
699 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers9af89402012-09-07 11:29:35 -0700700 } else if (op2 == 0x3B) {
701 // Miscellaneous control instructions
702 uint32_t op5 = (instr >> 4) & 0xF;
703 switch (op5) {
704 case 4: opcode << "dsb"; break;
705 case 5: opcode << "dmb"; break;
706 case 6: opcode << "isb"; break;
707 }
Ian Rogers40627db2012-03-04 17:31:09 -0800708 }
709 break;
710 case 2:
Ian Rogersd0876a92013-02-08 11:30:38 -0800711 if ((op2 & 0x38) == 0x38) {
712 if (op2 == 0x7F) {
713 opcode << "udf";
714 }
715 break;
716 }
717 // Else deliberate fall-through to B.
718 case 1: case 3: {
719 // B
720 // |111|11|1|0000|000000|11|1 |1|1 |10000000000|
721 // |5 3|21|0|9876|543 0|54|3 |2|1 |0 5 0|
722 // |---|--|-|----|------|--|--|-|--|-----------|
723 // |332|22|2|2222|221111|11|1 |1|1 |10000000000|
724 // |1 9|87|6|5 2|10 6|54|3 |2|1 |0 5 0|
725 // |---|--|-|----|------|--|--|-|--|-----------|
726 // |111|10|S|cond| imm6 |10|J1|0|J2| imm11 |
727 // |111|10|S| imm10 |10|J1|1|J2| imm11 |
728 uint32_t S = (instr >> 26) & 1;
729 uint32_t cond = (instr >> 22) & 0xF;
730 uint32_t J2 = (instr >> 11) & 1;
731 uint32_t form = (instr >> 12) & 1;
732 uint32_t J1 = (instr >> 13) & 1;
733 uint32_t imm10 = (instr >> 16) & 0x3FF;
734 uint32_t imm6 = (instr >> 16) & 0x3F;
735 uint32_t imm11 = instr & 0x7FF;
736 opcode << "b";
737 int32_t imm32;
738 if (form == 0) {
739 DumpCond(opcode, cond);
740 imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
741 imm32 = (imm32 << 11) >> 11; // sign extend 21 bit immediate.
742 } else {
743 uint32_t I1 = ~(J1 ^ S);
744 uint32_t I2 = ~(J2 ^ S);
745 imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
746 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
747 }
748 opcode << ".w";
749 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800750 break;
Ian Rogersd0876a92013-02-08 11:30:38 -0800751 }
Ian Rogers40627db2012-03-04 17:31:09 -0800752 case 4: case 6: case 5: case 7: {
753 // BL, BLX (immediate)
754 // |111|11|1|0000000000|11|1 |1|1 |10000000000|
755 // |5 3|21|0|9876543 0|54|3 |2|1 |0 5 0|
756 // |---|--|-|----------|--|--|-|--|-----------|
757 // |332|22|2|2222221111|11|1 |1|1 |10000000000|
758 // |1 9|87|6|5 0 6|54|3 |2|1 |0 5 0|
759 // |---|--|-|----------|--|--|-|--|-----------|
760 // |111|10|S| imm10 |11|J1|L|J2| imm11 |
761 uint32_t S = (instr >> 26) & 1;
762 uint32_t J2 = (instr >> 11) & 1;
763 uint32_t L = (instr >> 12) & 1;
764 uint32_t J1 = (instr >> 13) & 1;
765 uint32_t imm10 = (instr >> 16) & 0x3FF;
766 uint32_t imm11 = instr & 0x7FF;
767 if (L == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700768 opcode << "bx";
Ian Rogers40627db2012-03-04 17:31:09 -0800769 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700770 opcode << "blx";
Ian Rogers40627db2012-03-04 17:31:09 -0800771 }
772 uint32_t I1 = ~(J1 ^ S);
773 uint32_t I2 = ~(J2 ^ S);
774 int32_t imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
775 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
Elliott Hughescbf0b612012-03-15 16:23:47 -0700776 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800777 break;
778 }
779 }
780 }
781 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800782 case 3:
783 switch (op2) {
784 case 0x00: case 0x02: case 0x04: case 0x06: // 000xxx0
785 case 0x08: case 0x0A: case 0x0C: case 0x0E: {
786 // Store single data item
Ian Rogers40627db2012-03-04 17:31:09 -0800787 // |111|11|100|000|0|0000|1111|110000|000000|
788 // |5 3|21|098|765|4|3 0|5 2|10 6|5 0|
789 // |---|--|---|---|-|----|----|------|------|
790 // |332|22|222|222|2|1111|1111|110000|000000|
791 // |1 9|87|654|321|0|9 6|5 2|10 6|5 0|
792 // |---|--|---|---|-|----|----|------|------|
793 // |111|11|000|op3|0| | | op4 | |
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800794 uint32_t op3 = (instr >> 21) & 7;
795 //uint32_t op4 = (instr >> 6) & 0x3F;
796 switch (op3) {
Ian Rogers087b2412012-03-21 01:30:32 -0700797 case 0x0: case 0x4: {
798 // STRB Rt,[Rn,#+/-imm8] - 111 11 00 0 0 00 0 nnnn tttt 1 PUWii ii iiii
799 // 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 -0700800 ArmRegister Rn(instr, 16);
801 ArmRegister Rt(instr, 12);
Ian Rogers087b2412012-03-21 01:30:32 -0700802 opcode << "strb";
803 if ((instr & 0x800) != 0) {
804 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700805 args << Rt << ", [" << Rn << ",#" << imm8 << "]";
Ian Rogers087b2412012-03-21 01:30:32 -0700806 } else {
807 uint32_t imm2 = (instr >> 4) & 3;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700808 ArmRegister Rm(instr, 0);
809 args << Rt << ", [" << Rn << ", " << Rm;
Ian Rogers087b2412012-03-21 01:30:32 -0700810 if (imm2 != 0) {
811 args << ", " << "lsl #" << imm2;
812 }
813 args << "]";
814 }
815 break;
816 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800817 case 0x2: case 0x6: {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700818 ArmRegister Rn(instr, 16);
819 ArmRegister Rt(instr, 12);
Ian Rogers40627db2012-03-04 17:31:09 -0800820 if (op3 == 2) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700821 if ((instr & 0x800) != 0) {
822 // STR Rt, [Rn, #imm8] - 111 11 000 010 0 nnnn tttt 1PUWiiiiiiii
823 uint32_t P = (instr >> 10) & 1;
824 uint32_t U = (instr >> 9) & 1;
825 uint32_t W = (instr >> 8) & 1;
826 uint32_t imm8 = instr & 0xFF;
827 int32_t imm32 = (imm8 << 24) >> 24; // sign-extend imm8
828 if (Rn.r == 13 && P == 1 && U == 0 && W == 1 && imm32 == 4) {
829 opcode << "push";
830 args << Rt;
831 } else if (Rn.r == 15 || (P == 0 && W == 0)) {
832 opcode << "UNDEFINED";
Ian Rogers40627db2012-03-04 17:31:09 -0800833 } else {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700834 if (P == 1 && U == 1 && W == 0) {
835 opcode << "strt";
836 } else {
837 opcode << "str";
838 }
839 args << Rt << ", [" << Rn;
840 if (P == 0 && W == 1) {
841 args << "], #" << imm32;
842 } else {
843 args << ", #" << imm32 << "]";
844 if (W == 1) {
845 args << "!";
846 }
Ian Rogers40627db2012-03-04 17:31:09 -0800847 }
848 }
Ian Rogers66a3fca2012-04-09 19:51:34 -0700849 } else {
850 // STR Rt, [Rn, Rm, LSL #imm2] - 111 11 000 010 0 nnnn tttt 000000iimmmm
851 ArmRegister Rn(instr, 16);
852 ArmRegister Rt(instr, 12);
853 ArmRegister Rm(instr, 0);
854 uint32_t imm2 = (instr >> 4) & 3;
855 opcode << "str.w";
856 args << Rt << ", [" << Rn << ", " << Rm;
857 if (imm2 != 0) {
858 args << ", lsl #" << imm2;
859 }
860 args << "]";
Ian Rogers40627db2012-03-04 17:31:09 -0800861 }
862 } else if (op3 == 6) {
Ian Rogers66a3fca2012-04-09 19:51:34 -0700863 // STR.W Rt, [Rn, #imm12] - 111 11 000 110 0 nnnn tttt iiiiiiiiiiii
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800864 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700865 opcode << "str.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700866 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800867 }
Ian Rogers40627db2012-03-04 17:31:09 -0800868 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800869 }
870 }
871
872 break;
873 }
jeffhaoeae26912013-01-28 16:29:54 -0800874 case 0x03: case 0x0B: case 0x13: case 0x1B: { // 00xx011
875 // Load halfword
876 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
877 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
878 // |---|--|--|---|--|-|----|----|------|------|
879 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
880 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
881 // |---|--|--|---|--|-|----|----|------|------|
882 // |111|11|00|op3|01|1| Rn | Rt | op4 | |
883 // |111|11| op2 | | | imm12 |
884 uint32_t op3 = (instr >> 23) & 3;
885 ArmRegister Rn(instr, 16);
886 ArmRegister Rt(instr, 12);
887 if (Rt.r != 15) {
888 if (op3 == 1) {
889 // LDRH.W Rt, [Rn, #imm12] - 111 11 00 01 011 nnnn tttt iiiiiiiiiiii
890 uint32_t imm12 = instr & 0xFFF;
891 opcode << "ldrh.w";
892 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
893 if (Rn.r == 9) {
894 args << " ; ";
895 Thread::DumpThreadOffset(args, imm12, 4);
896 } else if (Rn.r == 15) {
897 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
898 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
899 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
900 }
901 } else if (op3 == 3) {
902 // LDRSH.W Rt, [Rn, #imm12] - 111 11 00 11 011 nnnn tttt iiiiiiiiiiii
903 uint32_t imm12 = instr & 0xFFF;
904 opcode << "ldrsh.w";
905 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
906 if (Rn.r == 9) {
907 args << " ; ";
908 Thread::DumpThreadOffset(args, imm12, 4);
909 } else if (Rn.r == 15) {
910 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
911 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
912 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
913 }
914 }
915 }
916 break;
917 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800918 case 0x05: case 0x0D: case 0x15: case 0x1D: { // 00xx101
919 // Load word
920 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
921 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
922 // |---|--|--|---|--|-|----|----|------|------|
923 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
924 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
925 // |---|--|--|---|--|-|----|----|------|------|
926 // |111|11|00|op3|10|1| Rn | Rt | op4 | |
927 // |111|11| op2 | | | imm12 |
928 uint32_t op3 = (instr >> 23) & 3;
929 uint32_t op4 = (instr >> 6) & 0x3F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700930 ArmRegister Rn(instr, 16);
931 ArmRegister Rt(instr, 12);
932 if (op3 == 1 || Rn.r == 15) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800933 // LDR.W Rt, [Rn, #imm12] - 111 11 00 00 101 nnnn tttt iiiiiiiiiiii
934 // LDR.W Rt, [PC, #imm12] - 111 11 00 0x 101 1111 tttt iiiiiiiiiiii
935 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700936 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700937 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700938 if (Rn.r == 9) {
939 args << " ; ";
940 Thread::DumpThreadOffset(args, imm12, 4);
Ian Rogers5b9b1bc2012-04-09 22:51:43 -0700941 } else if (Rn.r == 15) {
942 intptr_t lit_adr = reinterpret_cast<intptr_t>(instr_ptr);
943 lit_adr = RoundDown(lit_adr, 4) + 4 + imm12;
944 args << " ; " << reinterpret_cast<void*>(*reinterpret_cast<int32_t*>(lit_adr));
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700945 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800946 } else if (op4 == 0) {
947 // LDR.W Rt, [Rn, Rm{, LSL #imm2}] - 111 11 00 00 101 nnnn tttt 000000iimmmm
948 uint32_t imm2 = (instr >> 4) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700949 ArmRegister rm(instr, 0);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700950 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700951 args << Rt << ", [" << Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800952 if (imm2 != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700953 args << ", lsl #" << imm2;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800954 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700955 args << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800956 } else {
957 // LDRT Rt, [Rn, #imm8] - 111 11 00 00 101 nnnn tttt 1110iiiiiiii
958 uint32_t imm8 = instr & 0xFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700959 opcode << "ldrt";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700960 args << Rt << ", [" << Rn << ", #" << imm8 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800961 }
962 break;
963 }
964 }
965 default:
966 break;
967 }
Ian Rogers9af89402012-09-07 11:29:35 -0700968
969 // Apply any IT-block conditions to the opcode if necessary.
970 if (!it_conditions_.empty()) {
971 opcode << it_conditions_.back();
972 it_conditions_.pop_back();
973 }
974
Ian Rogers2bcb4a42012-11-08 10:39:18 -0800975 os << StringPrintf("%p: %08x\t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800976 return 4;
977}
978
979size_t DisassemblerArm::DumpThumb16(std::ostream& os, const uint8_t* instr_ptr) {
980 uint16_t instr = ReadU16(instr_ptr);
981 bool is_32bit = ((instr & 0xF000) == 0xF000) || ((instr & 0xF800) == 0xE800);
982 if (is_32bit) {
983 return DumpThumb32(os, instr_ptr);
984 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700985 std::ostringstream opcode;
986 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800987 uint16_t opcode1 = instr >> 10;
988 if (opcode1 < 0x10) {
989 // shift (immediate), add, subtract, move, and compare
990 uint16_t opcode2 = instr >> 9;
991 switch (opcode2) {
992 case 0x0: case 0x1: case 0x2: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
993 case 0x8: case 0x9: case 0xA: case 0xB: {
994 // Logical shift left - 00 000xx xxxxxxxxx
995 // Logical shift right - 00 001xx xxxxxxxxx
996 // Arithmetic shift right - 00 010xx xxxxxxxxx
997 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700998 ThumbRegister rm(instr, 3);
999 ThumbRegister Rd(instr, 7);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001000 if (opcode2 <= 3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001001 opcode << "lsls";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001002 } else if (opcode2 <= 7) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001003 opcode << "lsrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001004 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001005 opcode << "asrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001006 }
Elliott Hughes630e77d2012-03-22 19:20:56 -07001007 args << Rd << ", " << rm << ", #" << imm5;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001008 break;
1009 }
1010 case 0xC: case 0xD: case 0xE: case 0xF: {
1011 // Add register - 00 01100 mmm nnn ddd
1012 // Sub register - 00 01101 mmm nnn ddd
1013 // Add 3-bit immediate - 00 01110 iii nnn ddd
1014 // Sub 3-bit immediate - 00 01111 iii nnn ddd
1015 uint16_t imm3_or_Rm = (instr >> 6) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001016 ThumbRegister Rn(instr, 3);
1017 ThumbRegister Rd(instr, 0);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001018 if ((opcode2 & 2) != 0 && imm3_or_Rm == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001019 opcode << "mov";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001020 } else {
1021 if ((opcode2 & 1) == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001022 opcode << "adds";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001023 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001024 opcode << "subs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001025 }
1026 }
Elliott Hughes630e77d2012-03-22 19:20:56 -07001027 args << Rd << ", " << Rn;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001028 if ((opcode2 & 2) == 0) {
Elliott Hughes630e77d2012-03-22 19:20:56 -07001029 ArmRegister Rm(imm3_or_Rm);
1030 args << ", " << Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001031 } else if (imm3_or_Rm != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001032 args << ", #" << imm3_or_Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001033 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001034 break;
1035 }
1036 case 0x10: case 0x11: case 0x12: case 0x13:
1037 case 0x14: case 0x15: case 0x16: case 0x17:
1038 case 0x18: case 0x19: case 0x1A: case 0x1B:
1039 case 0x1C: case 0x1D: case 0x1E: case 0x1F: {
1040 // MOVS Rd, #imm8 - 00100 ddd iiiiiiii
1041 // CMP Rn, #imm8 - 00101 nnn iiiiiiii
1042 // ADDS Rn, #imm8 - 00110 nnn iiiiiiii
1043 // SUBS Rn, #imm8 - 00111 nnn iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -07001044 ThumbRegister Rn(instr, 8);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001045 uint16_t imm8 = instr & 0xFF;
1046 switch (opcode2 >> 2) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001047 case 4: opcode << "movs"; break;
1048 case 5: opcode << "cmp"; break;
1049 case 6: opcode << "adds"; break;
1050 case 7: opcode << "subs"; break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001051 }
Elliott Hughes630e77d2012-03-22 19:20:56 -07001052 args << Rn << ", #" << imm8;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001053 break;
1054 }
1055 default:
1056 break;
1057 }
Ian Rogersad03ef52012-03-18 19:34:47 -07001058 } else if (opcode1 == 0x10) {
1059 // Data-processing
1060 uint16_t opcode2 = (instr >> 6) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001061 ThumbRegister rm(instr, 3);
1062 ThumbRegister rdn(instr, 0);
Ian Rogersad03ef52012-03-18 19:34:47 -07001063 opcode << kThumbDataProcessingOperations[opcode2];
Elliott Hughes630e77d2012-03-22 19:20:56 -07001064 args << rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001065 } else if (opcode1 == 0x11) {
1066 // Special data instructions and branch and exchange
1067 uint16_t opcode2 = (instr >> 6) & 0x0F;
1068 switch (opcode2) {
1069 case 0x0: case 0x1: case 0x2: case 0x3: {
1070 // Add low registers - 010001 0000 xxxxxx
1071 // Add high registers - 010001 0001/001x xxxxxx
1072 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001073 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001074 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001075 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001076 opcode << "add";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001077 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001078 break;
1079 }
1080 case 0x8: case 0x9: case 0xA: case 0xB: {
1081 // Move low registers - 010001 1000 xxxxxx
1082 // Move high registers - 010001 1001/101x xxxxxx
1083 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001084 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001085 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001086 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001087 opcode << "mov";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001088 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001089 break;
1090 }
1091 case 0x5: case 0x6: case 0x7: {
1092 // Compare high registers - 010001 0101/011x xxxxxx
1093 uint16_t N = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001094 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001095 uint16_t Rn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001096 ArmRegister N_Rn((N << 3) | Rn);
Elliott Hughescbf0b612012-03-15 16:23:47 -07001097 opcode << "cmp";
Elliott Hughes630e77d2012-03-22 19:20:56 -07001098 args << N_Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001099 break;
1100 }
1101 case 0xC: case 0xD: case 0xE: case 0xF: {
1102 // Branch and exchange - 010001 110x xxxxxx
1103 // Branch with link and exchange - 010001 111x xxxxxx
Elliott Hughes630e77d2012-03-22 19:20:56 -07001104 ArmRegister rm(instr, 3);
1105 opcode << ((opcode2 & 0x2) == 0 ? "bx" : "blx");
1106 args << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001107 break;
1108 }
1109 default:
1110 break;
1111 }
jeffhaoeae26912013-01-28 16:29:54 -08001112 } else if (opcode1 == 0x12 || opcode1 == 0x13) { // 01001x
1113 ThumbRegister Rt(instr, 8);
1114 uint16_t imm8 = instr & 0xFF;
1115 opcode << "ldr";
1116 args << Rt << ", [pc, #" << (imm8 << 2) << "]";
Ian Rogersd83bc362012-09-07 17:43:13 -07001117 } else if ((opcode1 >= 0x14 && opcode1 <= 0x17) || // 0101xx
1118 (opcode1 >= 0x18 && opcode1 <= 0x1f) || // 011xxx
1119 (opcode1 >= 0x20 && opcode1 <= 0x27)) { // 100xxx
1120 // Load/store single data item
1121 uint16_t opA = (instr >> 12) & 0xF;
1122 if (opA == 0x5) {
1123 uint16_t opB = (instr >> 9) & 0x7;
1124 ThumbRegister Rm(instr, 6);
1125 ThumbRegister Rn(instr, 3);
1126 ThumbRegister Rt(instr, 0);
1127 switch(opB) {
1128 case 0: opcode << "str"; break;
1129 case 1: opcode << "strh"; break;
1130 case 2: opcode << "strb"; break;
1131 case 3: opcode << "ldrsb"; break;
1132 case 4: opcode << "ldr"; break;
1133 case 5: opcode << "ldrh"; break;
1134 case 6: opcode << "ldrb"; break;
1135 case 7: opcode << "ldrsh"; break;
1136 }
1137 args << Rt << ", [" << Rn << ", " << Rm << "]";
1138 } else if (opA == 9) {
1139 uint16_t opB = (instr >> 11) & 1;
1140 ThumbRegister Rt(instr, 8);
1141 uint16_t imm8 = instr & 0xFF;
1142 opcode << (opB == 0 ? "str" : "ldr");
Ian Rogers137e88f2012-10-08 17:46:47 -07001143 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogersd83bc362012-09-07 17:43:13 -07001144 } else {
1145 uint16_t imm5 = (instr >> 6) & 0x1F;
1146 uint16_t opB = (instr >> 11) & 1;
1147 ThumbRegister Rn(instr, 3);
1148 ThumbRegister Rt(instr, 0);
1149 switch(opA) {
1150 case 6:
1151 imm5 <<= 2;
1152 opcode << (opB == 0 ? "str" : "ldr");
1153 break;
1154 case 7:
1155 imm5 <<= 0;
1156 opcode << (opB == 0 ? "strb" : "ldrb");
1157 break;
1158 case 8:
1159 imm5 <<= 1;
1160 opcode << (opB == 0 ? "strh" : "ldrh");
1161 break;
1162 }
1163 args << Rt << ", [" << Rn << ", #" << imm5 << "]";
1164 }
jeffhaoeae26912013-01-28 16:29:54 -08001165 } else if (opcode1 >= 0x34 && opcode1 <= 0x37) { // 1101xx
1166 uint32_t imm8 = instr & 0xFF;
1167 uint32_t cond = (instr >> 8) & 0xF;
1168 opcode << "b";
1169 DumpCond(opcode, cond);
1170 DumpBranchTarget(args, instr_ptr + 4, (imm8 << 1));
Ian Rogers9af89402012-09-07 11:29:35 -07001171 } else if ((instr & 0xF800) == 0xA800) {
1172 // Generate SP-relative address
1173 ThumbRegister rd(instr, 8);
1174 int imm8 = instr & 0xFF;
1175 opcode << "add";
1176 args << rd << ", sp, #" << (imm8 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001177 } else if ((instr & 0xF000) == 0xB000) {
1178 // Miscellaneous 16-bit instructions
1179 uint16_t opcode2 = (instr >> 5) & 0x7F;
1180 switch (opcode2) {
1181 case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: {
1182 // Add immediate to SP - 1011 00000 ii iiiii
1183 // Subtract immediate from SP - 1011 00001 ii iiiii
1184 int imm7 = instr & 0x7F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001185 opcode << ((opcode2 & 4) == 0 ? "add" : "sub");
Elliott Hughescbf0b612012-03-15 16:23:47 -07001186 args << "sp, sp, #" << (imm7 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001187 break;
1188 }
Ian Rogers087b2412012-03-21 01:30:32 -07001189 case 0x08: case 0x09: case 0x0A: case 0x0B: // 0001xxx
Ian Rogersebbc5772012-04-11 17:00:08 -07001190 case 0x0C: case 0x0D: case 0x0E: case 0x0F:
Ian Rogers55019132013-02-08 01:05:23 -08001191 case 0x18: case 0x19: case 0x1A: case 0x1B: // 0011xxx
1192 case 0x1C: case 0x1D: case 0x1E: case 0x1F:
Ian Rogersebbc5772012-04-11 17:00:08 -07001193 case 0x48: case 0x49: case 0x4A: case 0x4B: // 1001xxx
Ian Rogers55019132013-02-08 01:05:23 -08001194 case 0x4C: case 0x4D: case 0x4E: case 0x4F:
1195 case 0x58: case 0x59: case 0x5A: case 0x5B: // 1011xxx
1196 case 0x5C: case 0x5D: case 0x5E: case 0x5F: {
Ian Rogers087b2412012-03-21 01:30:32 -07001197 // CBNZ, CBZ
1198 uint16_t op = (instr >> 11) & 1;
1199 uint16_t i = (instr >> 9) & 1;
1200 uint16_t imm5 = (instr >> 3) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001201 ThumbRegister Rn(instr, 0);
Ian Rogers087b2412012-03-21 01:30:32 -07001202 opcode << (op != 0 ? "cbnz" : "cbz");
1203 uint32_t imm32 = (i << 7) | (imm5 << 1);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001204 args << Rn << ", ";
Ian Rogers087b2412012-03-21 01:30:32 -07001205 DumpBranchTarget(args, instr_ptr + 4, imm32);
1206 break;
1207 }
Ian Rogers40627db2012-03-04 17:31:09 -08001208 case 0x78: case 0x79: case 0x7A: case 0x7B: // 1111xxx
1209 case 0x7C: case 0x7D: case 0x7E: case 0x7F: {
1210 // If-Then, and hints
1211 uint16_t opA = (instr >> 4) & 0xF;
1212 uint16_t opB = instr & 0xF;
1213 if (opB == 0) {
1214 switch (opA) {
Elliott Hughescbf0b612012-03-15 16:23:47 -07001215 case 0: opcode << "nop"; break;
1216 case 1: opcode << "yield"; break;
1217 case 2: opcode << "wfe"; break;
1218 case 3: opcode << "sev"; break;
Ian Rogers40627db2012-03-04 17:31:09 -08001219 default: break;
1220 }
1221 } else {
Elliott Hughes105afd22012-04-10 15:04:25 -07001222 uint32_t first_cond = opA;
1223 uint32_t mask = opB;
Elliott Hughescbf0b612012-03-15 16:23:47 -07001224 opcode << "it";
Elliott Hughes105afd22012-04-10 15:04:25 -07001225
1226 // Flesh out the base "it" opcode with the specific collection of 't's and 'e's,
1227 // and store up the actual condition codes we'll want to add to the next few opcodes.
1228 size_t count = 3 - CTZ(mask);
1229 it_conditions_.resize(count + 2); // Plus the implicit 't', plus the "" for the IT itself.
1230 for (size_t i = 0; i < count; ++i) {
1231 bool positive_cond = ((first_cond & 1) != 0);
1232 bool positive_mask = ((mask & (1 << (3 - i))) != 0);
1233 if (positive_mask == positive_cond) {
1234 opcode << 't';
1235 it_conditions_[i] = kConditionCodeNames[first_cond];
1236 } else {
1237 opcode << 'e';
1238 it_conditions_[i] = kConditionCodeNames[first_cond ^ 1];
1239 }
1240 }
1241 it_conditions_[count] = kConditionCodeNames[first_cond]; // The implicit 't'.
1242
1243 it_conditions_[count + 1] = ""; // No condition code for the IT itself...
1244 DumpCond(args, first_cond); // ...because it's considered an argument.
Ian Rogers40627db2012-03-04 17:31:09 -08001245 }
1246 break;
1247 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001248 default:
1249 break;
1250 }
1251 } else if (((instr & 0xF000) == 0x5000) || ((instr & 0xE000) == 0x6000) ||
1252 ((instr & 0xE000) == 0x8000)) {
1253 // Load/store single data item
1254 uint16_t opA = instr >> 12;
1255 //uint16_t opB = (instr >> 9) & 7;
1256 switch (opA) {
1257 case 0x6: {
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001258 // STR Rt, [Rn, #imm] - 01100 iiiii nnn ttt
1259 // LDR Rt, [Rn, #imm] - 01101 iiiii nnn ttt
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001260 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001261 ThumbRegister Rn(instr, 3);
Elliott Hughes28fa76d2012-04-09 17:31:46 -07001262 ThumbRegister Rt(instr, 0);
Elliott Hughes630e77d2012-03-22 19:20:56 -07001263 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1264 args << Rt << ", [" << Rn << ", #" << (imm5 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001265 break;
1266 }
1267 case 0x9: {
1268 // STR Rt, [SP, #imm] - 01100 ttt iiiiiiii
1269 // LDR Rt, [SP, #imm] - 01101 ttt iiiiiiii
1270 uint16_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -07001271 ThumbRegister Rt(instr, 8);
1272 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
1273 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001274 break;
1275 }
1276 default:
1277 break;
1278 }
Ian Rogers40627db2012-03-04 17:31:09 -08001279 } else if (opcode1 == 0x38 || opcode1 == 0x39) {
1280 uint16_t imm11 = instr & 0x7FFF;
1281 int32_t imm32 = imm11 << 1;
1282 imm32 = (imm32 << 20) >> 20; // sign extend 12 bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -07001283 opcode << "b";
1284 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001285 }
Elliott Hughes105afd22012-04-10 15:04:25 -07001286
1287 // Apply any IT-block conditions to the opcode if necessary.
1288 if (!it_conditions_.empty()) {
1289 opcode << it_conditions_.back();
1290 it_conditions_.pop_back();
1291 }
1292
Ian Rogers2bcb4a42012-11-08 10:39:18 -08001293 os << StringPrintf("%p: %04x \t%-7s ", instr_ptr, instr, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -08001294 }
1295 return 2;
1296}
1297
1298} // namespace arm
1299} // namespace art