blob: a243ecf4a8ed5d95e934b83a36a827889aef896e [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) {
74 os << imm32 << " (" << reinterpret_cast<const void*>(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 {
96 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 {
118 Rm(uint32_t instruction) : shift((instruction >> 4) & 0xff), rm(instruction & 0xf) {}
119 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
130struct Imm12 {
131 Imm12(uint32_t instruction) : rotate((instruction >> 8) & 0xf), imm(instruction & 0xff) {}
132 uint32_t rotate;
133 uint32_t imm;
134};
135std::ostream& operator<<(std::ostream& os, const Imm12& rhs) {
136 uint32_t imm = (rhs.imm >> (2 * rhs.rotate)) | (rhs.imm << (32 - (2 * rhs.rotate)));
137 os << "#" << imm;
138 return os;
139}
140
141struct RegisterList {
142 RegisterList(uint32_t instruction) : register_list(instruction & 0xffff) {}
143 uint32_t register_list;
144};
145std::ostream& operator<<(std::ostream& os, const RegisterList& rhs) {
146 if (rhs.register_list == 0) {
147 os << "<no register list?>";
148 return os;
149 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700150 os << "{";
Elliott Hughes77405792012-03-15 15:22:12 -0700151 bool first = true;
152 for (size_t i = 0; i < 16; i++) {
153 if ((rhs.register_list & (1 << i)) != 0) {
154 if (first) {
Elliott Hughes77405792012-03-15 15:22:12 -0700155 first = false;
156 } else {
157 os << ", ";
158 }
159 os << ArmRegister(i);
160 }
161 }
162 os << "}";
163 return os;
164}
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800165
166void DisassemblerArm::DumpArm(std::ostream& os, const uint8_t* instr_ptr) {
Elliott Hughes77405792012-03-15 15:22:12 -0700167 uint32_t instruction = ReadU32(instr_ptr);
168 uint32_t cond = (instruction >> 28) & 0xf;
169 uint32_t op1 = (instruction >> 25) & 0x7;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700170 std::ostringstream opcode;
171 std::ostringstream args;
Elliott Hughes77405792012-03-15 15:22:12 -0700172 switch (op1) {
173 case 0:
174 case 1: // Data processing instructions.
175 {
176 if ((instruction & 0x0fffffd0) == 0x012fff10) { // BX and BLX (register)
Elliott Hughescbf0b612012-03-15 16:23:47 -0700177 opcode << (((instruction >> 5) & 1) ? "blx" : "bx");
178 args << ArmRegister(instruction & 0xf);
Elliott Hughes77405792012-03-15 15:22:12 -0700179 break;
180 }
181 bool i = (instruction & (1 << 25)) != 0;
182 bool s = (instruction & (1 << 20)) != 0;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700183 opcode << kDataProcessingOperations[(instruction >> 21) & 0xf]
184 << kConditionCodeNames[cond]
185 << (s ? "s" : "");
Elliott Hughes630e77d2012-03-22 19:20:56 -0700186 args << ArmRegister(instruction, 12) << ", ";
Elliott Hughes77405792012-03-15 15:22:12 -0700187 if (i) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700188 args << ArmRegister(instruction, 16) << ", " << Imm12(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700189 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700190 args << Rm(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700191 }
192 }
193 break;
194 case 2: // Load/store word and unsigned byte.
195 {
196 bool p = (instruction & (1 << 24)) != 0;
197 bool b = (instruction & (1 << 22)) != 0;
198 bool w = (instruction & (1 << 21)) != 0;
199 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700200 opcode << (l ? "ldr" : "str") << (b ? "b" : "") << kConditionCodeNames[cond];
Elliott Hughes630e77d2012-03-22 19:20:56 -0700201 args << ArmRegister(instruction, 12) << ", ";
202 ArmRegister rn(instruction, 16);
203 if (rn.r == 0xf) {
Elliott Hughes77405792012-03-15 15:22:12 -0700204 UNIMPLEMENTED(FATAL) << "literals";
205 } else {
206 bool wback = !p || w;
207 if (p && !wback) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700208 args << "[" << rn << ", " << Imm12(instruction) << "]";
Elliott Hughes77405792012-03-15 15:22:12 -0700209 } else if (p && wback) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700210 args << "[" << rn << ", " << Imm12(instruction) << "]!";
Elliott Hughes77405792012-03-15 15:22:12 -0700211 } else if (!p && wback) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700212 args << "[" << rn << "], " << Imm12(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700213 } else {
214 LOG(FATAL) << p << " " << w;
215 }
216 }
217 }
218 break;
219 case 4: // Load/store multiple.
220 {
221 bool p = (instruction & (1 << 24)) != 0;
222 bool u = (instruction & (1 << 23)) != 0;
223 bool w = (instruction & (1 << 21)) != 0;
224 bool l = (instruction & (1 << 20)) != 0;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700225 opcode << (l ? "ldm" : "stm")
226 << (u ? 'i' : 'd')
227 << (p ? 'b' : 'a')
228 << kConditionCodeNames[cond];
Elliott Hughes630e77d2012-03-22 19:20:56 -0700229 args << ArmRegister(instruction, 16) << (w ? "!" : "") << ", " << RegisterList(instruction);
Elliott Hughes77405792012-03-15 15:22:12 -0700230 }
231 break;
232 default:
Elliott Hughescbf0b612012-03-15 16:23:47 -0700233 opcode << "???";
Elliott Hughes77405792012-03-15 15:22:12 -0700234 break;
235 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700236 // TODO: a more complete ARM disassembler could generate wider opcodes.
237 os << StringPrintf("\t\t\t%p: %08x\t%-7s ", instr_ptr, instruction, opcode.str().c_str()) << args.str() << '\n';
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800238}
239
240size_t DisassemblerArm::DumpThumb32(std::ostream& os, const uint8_t* instr_ptr) {
241 uint32_t instr = (ReadU16(instr_ptr) << 16) | ReadU16(instr_ptr + 2);
242 // |111|1 1|1000000|0000|1111110000000000|
243 // |5 3|2 1|0987654|3 0|5 0 5 0|
244 // |---|---|-------|----|----------------|
245 // |332|2 2|2222222|1111|1111110000000000|
246 // |1 9|8 7|6543210|9 6|5 0 5 0|
247 // |---|---|-------|----|----------------|
248 // |111|op1| op2 | | |
249 uint32_t op1 = (instr >> 27) & 3;
Elliott Hughes77405792012-03-15 15:22:12 -0700250 if (op1 == 0) {
251 return DumpThumb16(os, instr_ptr);
252 }
253
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800254 uint32_t op2 = (instr >> 20) & 0x7F;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700255 std::ostringstream opcode;
256 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800257 switch (op1) {
258 case 0:
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800259 break;
260 case 1:
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700261 if ((op2 & 0x64) == 0) { // 00x x0xx
262 // |111|11|10|00|0|00|0000|1111110000000000|
263 // |5 3|21|09|87|6|54|3 0|5 0 5 0|
264 // |---|--|--|--|-|--|----|----------------|
265 // |332|22|22|22|2|22|1111|1111110000000000|
266 // |1 9|87|65|43|2|10|9 6|5 0 5 0|
267 // |---|--|--|--|-|--|----|----------------|
268 // |111|01|00|op|0|WL| Rn | |
269 // |111|01| op2 | | |
270 // STM - 111 01 00-01-0-W0 nnnn rrrrrrrrrrrrrrrr
271 // LDM - 111 01 00-01-0-W1 nnnn rrrrrrrrrrrrrrrr
272 // PUSH- 111 01 00-01-0-10 1101 0M0rrrrrrrrrrrrr
273 // POP - 111 01 00-01-0-11 1101 PM0rrrrrrrrrrrrr
274 uint32_t op = (instr >> 23) & 3;
275 uint32_t W = (instr >> 21) & 1;
276 uint32_t L = (instr >> 20) & 1;
277 ArmRegister Rn(instr, 16);
278 if (op == 1 || op == 2) {
279 if (op == 1) {
280 if (L == 0) {
281 opcode << "stm";
282 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800283 } else {
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700284 if (Rn.r != 13) {
285 opcode << "ldm";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700286 args << Rn << (W == 0 ? "" : "!") << ", ";
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700287 } else {
288 opcode << "pop";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800289 }
290 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700291 } else {
292 if (L == 0) {
293 if (Rn.r != 13) {
294 opcode << "stmdb";
295 args << Rn << (W == 0 ? "" : "!") << ", ";
296 } else {
297 opcode << "push";
298 }
299 } else {
300 opcode << "ldmdb";
301 args << Rn << (W == 0 ? "" : "!") << ", ";
302 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800303 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700304 args << RegisterList(instr);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800305 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700306 } else if ((op2 & 0x60) == 0x20) { // 01x xxxx
307 // Data-processing (shifted register)
308 // |111|1110|0000|0|0000|1111|1100|0000|0000|
309 // |5 3|2109|8765|4|3 0|5 |10 8|7 5 |3 0|
310 // |---|----|----|-|----|----|----|----|----|
311 // |332|2222|2222|2|1111|1111|1100|0000|0000|
312 // |1 9|8765|4321|0|9 6|5 |10 8|7 5 |3 0|
313 // |---|----|----|-|----|----|----|----|----|
314 // |111|0101| op3|S| Rn | | Rd | | Rm |
315 uint32_t op3 = (instr >> 21) & 0xF;
316 uint32_t S = (instr >> 20) & 1;
317 uint32_t Rn = (instr >> 16) & 0xF;
318 ArmRegister Rd(instr, 8);
319 ArmRegister Rm(instr, 0);
320 switch (op3) {
321 case 0x0:
322 if (Rn != 0xF) {
323 opcode << "and";
324 } else {
325 opcode << "tst";
326 S = 0; // don't print 's'
327 }
328 break;
329 case 0x1: opcode << "bic"; break;
330 case 0x2:
331 if (Rn != 0xF) {
332 opcode << "orr";
333 } else {
334 opcode << "mov";
335 }
336 break;
337 case 0x3:
338 if (Rn != 0xF) {
339 opcode << "orn";
340 } else {
341 opcode << "mvn";
342 }
343 break;
344 case 0x4:
345 if (Rn != 0xF) {
346 opcode << "eor";
347 } else {
348 opcode << "teq";
349 S = 0; // don't print 's'
350 }
351 break;
352 case 0x6: opcode << "pkh"; break;
353 case 0x8:
354 if (Rn != 0xF) {
355 opcode << "add";
356 } else {
357 opcode << "cmn";
358 S = 0; // don't print 's'
359 }
360 break;
361 case 0xA: opcode << "adc"; break;
362 case 0xB: opcode << "sbc"; break;
363 }
Ian Rogers087b2412012-03-21 01:30:32 -0700364
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700365 if (S == 1) {
366 opcode << "s";
Ian Rogers087b2412012-03-21 01:30:32 -0700367 }
Ian Rogersc7fe4e02012-03-29 21:36:21 -0700368 opcode << ".w";
369 args << Rd << ", " << Rm;
370 } else if ((op2 & 0x40) == 0x40) { // 1xx xxxx
371 // Co-processor instructions
372 // |111|1|11|000000|0000|1111|1100|000|0 |0000|
373 // |5 3|2|10|987654|3 0|54 2|10 8|7 5|4 | 0|
374 // |---|-|--|------|----|----|----|---|---|----|
375 // |332|2|22|222222|1111|1111|1100|000|0 |0000|
376 // |1 9|8|76|543210|9 6|54 2|10 8|7 5|4 | 0|
377 // |---|-|--|------|----|----|----|---|---|----|
378 // |111| |11| op3 | Rn | |copr| |op4| |
379 uint32_t op3 = (instr >> 20) & 0x3F;
380 uint32_t coproc = (instr >> 8) & 0xF;
381 uint32_t op4 = (instr >> 4) & 0x1;
382 if ((op3 & 0x30) == 0x20 && op4 == 0) { // 10 xxxx ... 0
383 if ((coproc & 0xE) == 0xA) {
384 // VFP data-processing instructions
385 // |111|1|1100|0000|0000|1111|110|0|00 |0|0|0000|
386 // |5 3|2|1098|7654|3 0|54 2|10 |8|76 |5|4|3 0|
387 // |---|-|----|----|----|----|---|-|----|-|-|----|
388 // |332|2|2222|2222|1111|1111|110|0|00 |0|0|0000|
389 // |1 9|8|7654|3210|9 6|54 2|109|8|76 |5|4|3 0|
390 // |---|-|----|----|----|----|---|-|----|-|-|----|
391 // |111|T|1110|opc1|opc2| |101| |opc3| | | |
392 // 111 0 1110|1111 0100 1110 101 0 01 1 0 1001 - eef4ea69
393 uint32_t opc1 = (instr >> 20) & 0xF;
394 uint32_t opc2 = (instr >> 16) & 0xF;
395 //uint32_t opc3 = (instr >> 6) & 0x3;
396 if ((opc1 & 0xB) == 0xB) { // 1x11
397 // Other VFP data-processing instructions.
398 switch (opc2) {
399 case 0x4: case 0x5: { // Vector compare
400 // 1110 11101 D 11 0100 dddd 101 sE1M0 mmmm
401 uint32_t D = (instr >> 22) & 0x1;
402 uint32_t Vd = (instr >> 12) & 0xF;
403 uint32_t sz = (instr >> 8) & 1;
404 uint32_t E = (instr >> 7) & 1;
405 uint32_t M = (instr >> 5) & 1;
406 uint32_t Vm = instr & 0xF;
407 bool dp_operation = sz == 1;
408 opcode << (E == 0 ? "vcmp" : "vcmpe");
409 opcode << (dp_operation ? ".f64" : ".f32");
410 if (dp_operation) {
411 args << "f" << ((D << 4) | Vd) << ", " << "f" << ((M << 4) | Vm);
412 } else {
413 args << "f" << ((Vd << 1) | D) << ", " << "f" << ((Vm << 1) | M);
414 }
415 break;
416 }
417 }
418 }
419 }
420 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800421 }
422 break;
Ian Rogers40627db2012-03-04 17:31:09 -0800423 case 2:
424 if ((instr & 0x8000) == 0 && (op2 & 0x20) == 0) {
425 // Data-processing (modified immediate)
426 // |111|11|10|0000|0|0000|1|111|1100|00000000|
427 // |5 3|21|09|8765|4|3 0|5|4 2|10 8|7 5 0|
428 // |---|--|--|----|-|----|-|---|----|--------|
429 // |332|22|22|2222|2|1111|1|111|1100|00000000|
430 // |1 9|87|65|4321|0|9 6|5|4 2|10 8|7 5 0|
431 // |---|--|--|----|-|----|-|---|----|--------|
432 // |111|10|i0| op3|S| Rn |0|iii| Rd |iiiiiiii|
433 // 111 10 x0 xxxx x xxxx opxxx xxxx xxxxxxxx
Ian Rogers40627db2012-03-04 17:31:09 -0800434 uint32_t i = (instr >> 26) & 1;
435 uint32_t op3 = (instr >> 21) & 0xF;
436 uint32_t S = (instr >> 20) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700437 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800438 uint32_t imm3 = (instr >> 12) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700439 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800440 uint32_t imm8 = instr & 0xFF;
441 int32_t imm32 = (i << 12) | (imm3 << 8) | imm8;
442 switch (op3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700443 case 0x0: opcode << "and"; break;
444 case 0x1: opcode << "bic"; break;
445 case 0x2: opcode << "orr"; break;
446 case 0x3: opcode << "orn"; break;
447 case 0x4: opcode << "eor"; break;
448 case 0x8: opcode << "add"; break;
449 case 0xA: opcode << "adc"; break;
450 case 0xB: opcode << "sbc"; break;
451 case 0xD: opcode << "sub"; break;
452 case 0xE: opcode << "rsb"; break;
453 default: opcode << "UNKNOWN DPMI-" << op3; break;
Ian Rogers40627db2012-03-04 17:31:09 -0800454 }
455 if (S == 1) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700456 opcode << "s";
Ian Rogers40627db2012-03-04 17:31:09 -0800457 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700458 args << Rd << ", " << Rn << ", ThumbExpand(" << imm32 << ")";
Ian Rogers40627db2012-03-04 17:31:09 -0800459 } else if ((instr & 0x8000) == 0 && (op2 & 0x20) != 0) {
460 // Data-processing (plain binary immediate)
461 // |111|11|10|00000|0000|1|111110000000000|
462 // |5 3|21|09|87654|3 0|5|4 0 5 0|
463 // |---|--|--|-----|----|-|---------------|
464 // |332|22|22|22222|1111|1|111110000000000|
465 // |1 9|87|65|43210|9 6|5|4 0 5 0|
466 // |---|--|--|-----|----|-|---------------|
467 // |111|10|x1| op3 | Rn |0|xxxxxxxxxxxxxxx|
468 uint32_t op3 = (instr >> 20) & 0x1F;
Ian Rogers40627db2012-03-04 17:31:09 -0800469 switch (op3) {
470 case 0x04: {
471 // MOVW Rd, #imm16 - 111 10 i0 0010 0 iiii 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700472 ArmRegister Rd(instr, 8);
Ian Rogers40627db2012-03-04 17:31:09 -0800473 uint32_t i = (instr >> 26) & 1;
474 uint32_t imm3 = (instr >> 12) & 0x7;
475 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700476 uint32_t Rn = (instr >> 16) & 0xF;
Ian Rogers40627db2012-03-04 17:31:09 -0800477 uint32_t imm16 = (Rn << 12) | (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700478 opcode << "movw";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700479 args << Rd << ", #" << imm16;
Ian Rogers40627db2012-03-04 17:31:09 -0800480 break;
481 }
482 case 0x0A: {
483 // SUB.W Rd, Rn #imm12 - 111 10 i1 0101 0 nnnn 0 iii dddd iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700484 ArmRegister Rd(instr, 8);
485 ArmRegister Rn(instr, 16);
Ian Rogers40627db2012-03-04 17:31:09 -0800486 uint32_t i = (instr >> 26) & 1;
487 uint32_t imm3 = (instr >> 12) & 0x7;
488 uint32_t imm8 = instr & 0xFF;
489 uint32_t imm12 = (i << 11) | (imm3 << 8) | imm8;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700490 opcode << "sub.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700491 args << Rd << ", " << Rn << ", #" << imm12;
Ian Rogers40627db2012-03-04 17:31:09 -0800492 break;
493 }
494 default:
495 break;
496 }
497 } else {
498 // Branches and miscellaneous control
499 // |111|11|1000000|0000|1|111|1100|00000000|
500 // |5 3|21|0987654|3 0|5|4 2|10 8|7 5 0|
501 // |---|--|-------|----|-|---|----|--------|
502 // |332|22|2222222|1111|1|111|1100|00000000|
503 // |1 9|87|6543210|9 6|5|4 2|10 8|7 5 0|
504 // |---|--|-------|----|-|---|----|--------|
505 // |111|10| op2 | |1|op3|op4 | |
506
507 uint32_t op3 = (instr >> 12) & 7;
508 //uint32_t op4 = (instr >> 8) & 0xF;
509 switch (op3) {
510 case 0:
511 if ((op2 & 0x38) != 0x38) {
512 // Conditional branch
513 // |111|11|1|0000|000000|1|1|1 |1|1 |10000000000|
514 // |5 3|21|0|9876|543 0|5|4|3 |2|1 |0 5 0|
515 // |---|--|-|----|------|-|-|--|-|--|-----------|
516 // |332|22|2|2222|221111|1|1|1 |1|1 |10000000000|
517 // |1 9|87|6|5432|109 6|5|4|3 |2|1 |0 5 0|
518 // |---|--|-|----|------|-|-|--|-|--|-----------|
519 // |111|10|S|cond| imm6 |1|0|J1|0|J2| imm11 |
520 uint32_t S = (instr >> 26) & 1;
521 uint32_t J2 = (instr >> 11) & 1;
522 uint32_t J1 = (instr >> 13) & 1;
523 uint32_t imm6 = (instr >> 16) & 0x3F;
524 uint32_t imm11 = instr & 0x7FF;
525 uint32_t cond = (instr >> 22) & 0xF;
526 int32_t imm32 = (S << 20) | (J2 << 19) | (J1 << 18) | (imm6 << 12) | (imm11 << 1);
527 imm32 = (imm32 << 11) >> 11; // sign extend 21bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -0700528 opcode << "b";
529 DumpCond(opcode, cond);
530 opcode << ".w";
531 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800532 }
533 break;
534 case 2:
535 case 1: case 3:
536 break;
537 case 4: case 6: case 5: case 7: {
538 // BL, BLX (immediate)
539 // |111|11|1|0000000000|11|1 |1|1 |10000000000|
540 // |5 3|21|0|9876543 0|54|3 |2|1 |0 5 0|
541 // |---|--|-|----------|--|--|-|--|-----------|
542 // |332|22|2|2222221111|11|1 |1|1 |10000000000|
543 // |1 9|87|6|5 0 6|54|3 |2|1 |0 5 0|
544 // |---|--|-|----------|--|--|-|--|-----------|
545 // |111|10|S| imm10 |11|J1|L|J2| imm11 |
546 uint32_t S = (instr >> 26) & 1;
547 uint32_t J2 = (instr >> 11) & 1;
548 uint32_t L = (instr >> 12) & 1;
549 uint32_t J1 = (instr >> 13) & 1;
550 uint32_t imm10 = (instr >> 16) & 0x3FF;
551 uint32_t imm11 = instr & 0x7FF;
552 if (L == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700553 opcode << "bx";
Ian Rogers40627db2012-03-04 17:31:09 -0800554 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700555 opcode << "blx";
Ian Rogers40627db2012-03-04 17:31:09 -0800556 }
557 uint32_t I1 = ~(J1 ^ S);
558 uint32_t I2 = ~(J2 ^ S);
559 int32_t imm32 = (S << 24) | (I1 << 23) | (I2 << 22) | (imm10 << 12) | (imm11 << 1);
560 imm32 = (imm32 << 8) >> 8; // sign extend 24 bit immediate.
Elliott Hughescbf0b612012-03-15 16:23:47 -0700561 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers40627db2012-03-04 17:31:09 -0800562 break;
563 }
564 }
565 }
566 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800567 case 3:
568 switch (op2) {
569 case 0x00: case 0x02: case 0x04: case 0x06: // 000xxx0
570 case 0x08: case 0x0A: case 0x0C: case 0x0E: {
571 // Store single data item
Ian Rogers40627db2012-03-04 17:31:09 -0800572 // |111|11|100|000|0|0000|1111|110000|000000|
573 // |5 3|21|098|765|4|3 0|5 2|10 6|5 0|
574 // |---|--|---|---|-|----|----|------|------|
575 // |332|22|222|222|2|1111|1111|110000|000000|
576 // |1 9|87|654|321|0|9 6|5 2|10 6|5 0|
577 // |---|--|---|---|-|----|----|------|------|
578 // |111|11|000|op3|0| | | op4 | |
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800579 uint32_t op3 = (instr >> 21) & 7;
580 //uint32_t op4 = (instr >> 6) & 0x3F;
581 switch (op3) {
Ian Rogers087b2412012-03-21 01:30:32 -0700582 case 0x0: case 0x4: {
583 // STRB Rt,[Rn,#+/-imm8] - 111 11 00 0 0 00 0 nnnn tttt 1 PUWii ii iiii
584 // 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 -0700585 ArmRegister Rn(instr, 16);
586 ArmRegister Rt(instr, 12);
Ian Rogers087b2412012-03-21 01:30:32 -0700587 opcode << "strb";
588 if ((instr & 0x800) != 0) {
589 uint32_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700590 args << Rt << ", [" << Rn << ",#" << imm8 << "]";
Ian Rogers087b2412012-03-21 01:30:32 -0700591 } else {
592 uint32_t imm2 = (instr >> 4) & 3;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700593 ArmRegister Rm(instr, 0);
594 args << Rt << ", [" << Rn << ", " << Rm;
Ian Rogers087b2412012-03-21 01:30:32 -0700595 if (imm2 != 0) {
596 args << ", " << "lsl #" << imm2;
597 }
598 args << "]";
599 }
600 break;
601 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800602 case 0x2: case 0x6: {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800603 // STR.W Rt, [Rn, #imm12] - 111 11 000 110 0 nnnn tttt iiiiiiiiiiii
604 // STR Rt, [Rn, #imm8] - 111 11 000 010 0 nnnn tttt 1PUWiiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700605 ArmRegister Rn(instr, 16);
606 ArmRegister Rt(instr, 12);
Ian Rogers40627db2012-03-04 17:31:09 -0800607 if (op3 == 2) {
608 uint32_t P = (instr >> 10) & 1;
609 uint32_t U = (instr >> 9) & 1;
610 uint32_t W = (instr >> 8) & 1;
611 uint32_t imm8 = instr & 0xFF;
612 int32_t imm32 = (imm8 << 24) >> 24; // sign-extend imm8
Elliott Hughes630e77d2012-03-22 19:20:56 -0700613 if (Rn.r == 13 && P == 1 && U == 0 && W == 1) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700614 opcode << "push";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700615 args << Rt;
616 } else if (Rn.r == 15 || (P == 0 && W == 0)) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700617 opcode << "UNDEFINED";
Ian Rogers40627db2012-03-04 17:31:09 -0800618 } else {
619 if (P == 1 && U == 1 && W == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700620 opcode << "strt";
Ian Rogers40627db2012-03-04 17:31:09 -0800621 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700622 opcode << "str";
Ian Rogers40627db2012-03-04 17:31:09 -0800623 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700624 args << Rt << ", [" << Rn;
Ian Rogers40627db2012-03-04 17:31:09 -0800625 if (P == 0 && W == 1) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700626 args << "], #" << imm32;
Ian Rogers40627db2012-03-04 17:31:09 -0800627 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700628 args << ", #" << imm32 << "]";
Ian Rogers40627db2012-03-04 17:31:09 -0800629 if (W == 1) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700630 args << "!";
Ian Rogers40627db2012-03-04 17:31:09 -0800631 }
632 }
Ian Rogers40627db2012-03-04 17:31:09 -0800633 }
634 } else if (op3 == 6) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800635 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700636 opcode << "str.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700637 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800638 }
Ian Rogers40627db2012-03-04 17:31:09 -0800639 break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800640 }
641 }
642
643 break;
644 }
645 case 0x05: case 0x0D: case 0x15: case 0x1D: { // 00xx101
646 // Load word
647 // |111|11|10|0 0|00|0|0000|1111|110000|000000|
648 // |5 3|21|09|8 7|65|4|3 0|5 2|10 6|5 0|
649 // |---|--|--|---|--|-|----|----|------|------|
650 // |332|22|22|2 2|22|2|1111|1111|110000|000000|
651 // |1 9|87|65|4 3|21|0|9 6|5 2|10 6|5 0|
652 // |---|--|--|---|--|-|----|----|------|------|
653 // |111|11|00|op3|10|1| Rn | Rt | op4 | |
654 // |111|11| op2 | | | imm12 |
655 uint32_t op3 = (instr >> 23) & 3;
656 uint32_t op4 = (instr >> 6) & 0x3F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700657 ArmRegister Rn(instr, 16);
658 ArmRegister Rt(instr, 12);
659 if (op3 == 1 || Rn.r == 15) {
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800660 // LDR.W Rt, [Rn, #imm12] - 111 11 00 00 101 nnnn tttt iiiiiiiiiiii
661 // LDR.W Rt, [PC, #imm12] - 111 11 00 0x 101 1111 tttt iiiiiiiiiiii
662 uint32_t imm12 = instr & 0xFFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700663 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700664 args << Rt << ", [" << Rn << ", #" << imm12 << "]";
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700665 if (Rn.r == 9) {
666 args << " ; ";
667 Thread::DumpThreadOffset(args, imm12, 4);
668 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800669 } else if (op4 == 0) {
670 // LDR.W Rt, [Rn, Rm{, LSL #imm2}] - 111 11 00 00 101 nnnn tttt 000000iimmmm
671 uint32_t imm2 = (instr >> 4) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700672 ArmRegister rm(instr, 0);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700673 opcode << "ldr.w";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700674 args << Rt << ", [" << Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800675 if (imm2 != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700676 args << ", lsl #" << imm2;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800677 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700678 args << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800679 } else {
680 // LDRT Rt, [Rn, #imm8] - 111 11 00 00 101 nnnn tttt 1110iiiiiiii
681 uint32_t imm8 = instr & 0xFF;
Elliott Hughescbf0b612012-03-15 16:23:47 -0700682 opcode << "ldrt";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700683 args << Rt << ", [" << Rn << ", #" << imm8 << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800684 }
685 break;
686 }
687 }
688 default:
689 break;
690 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700691 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 -0800692 return 4;
693}
694
695size_t DisassemblerArm::DumpThumb16(std::ostream& os, const uint8_t* instr_ptr) {
696 uint16_t instr = ReadU16(instr_ptr);
697 bool is_32bit = ((instr & 0xF000) == 0xF000) || ((instr & 0xF800) == 0xE800);
698 if (is_32bit) {
699 return DumpThumb32(os, instr_ptr);
700 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700701 std::ostringstream opcode;
702 std::ostringstream args;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800703 uint16_t opcode1 = instr >> 10;
704 if (opcode1 < 0x10) {
705 // shift (immediate), add, subtract, move, and compare
706 uint16_t opcode2 = instr >> 9;
707 switch (opcode2) {
708 case 0x0: case 0x1: case 0x2: case 0x3: case 0x4: case 0x5: case 0x6: case 0x7:
709 case 0x8: case 0x9: case 0xA: case 0xB: {
710 // Logical shift left - 00 000xx xxxxxxxxx
711 // Logical shift right - 00 001xx xxxxxxxxx
712 // Arithmetic shift right - 00 010xx xxxxxxxxx
713 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700714 ThumbRegister rm(instr, 3);
715 ThumbRegister Rd(instr, 7);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800716 if (opcode2 <= 3) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700717 opcode << "lsls";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800718 } else if (opcode2 <= 7) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700719 opcode << "lsrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800720 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700721 opcode << "asrs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800722 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700723 args << Rd << ", " << rm << ", #" << imm5;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800724 break;
725 }
726 case 0xC: case 0xD: case 0xE: case 0xF: {
727 // Add register - 00 01100 mmm nnn ddd
728 // Sub register - 00 01101 mmm nnn ddd
729 // Add 3-bit immediate - 00 01110 iii nnn ddd
730 // Sub 3-bit immediate - 00 01111 iii nnn ddd
731 uint16_t imm3_or_Rm = (instr >> 6) & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700732 ThumbRegister Rn(instr, 3);
733 ThumbRegister Rd(instr, 0);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800734 if ((opcode2 & 2) != 0 && imm3_or_Rm == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700735 opcode << "mov";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800736 } else {
737 if ((opcode2 & 1) == 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700738 opcode << "adds";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800739 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700740 opcode << "subs";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800741 }
742 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700743 args << Rd << ", " << Rn;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800744 if ((opcode2 & 2) == 0) {
Elliott Hughes630e77d2012-03-22 19:20:56 -0700745 ArmRegister Rm(imm3_or_Rm);
746 args << ", " << Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800747 } else if (imm3_or_Rm != 0) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700748 args << ", #" << imm3_or_Rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800749 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800750 break;
751 }
752 case 0x10: case 0x11: case 0x12: case 0x13:
753 case 0x14: case 0x15: case 0x16: case 0x17:
754 case 0x18: case 0x19: case 0x1A: case 0x1B:
755 case 0x1C: case 0x1D: case 0x1E: case 0x1F: {
756 // MOVS Rd, #imm8 - 00100 ddd iiiiiiii
757 // CMP Rn, #imm8 - 00101 nnn iiiiiiii
758 // ADDS Rn, #imm8 - 00110 nnn iiiiiiii
759 // SUBS Rn, #imm8 - 00111 nnn iiiiiiii
Elliott Hughes630e77d2012-03-22 19:20:56 -0700760 ThumbRegister Rn(instr, 8);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800761 uint16_t imm8 = instr & 0xFF;
762 switch (opcode2 >> 2) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700763 case 4: opcode << "movs"; break;
764 case 5: opcode << "cmp"; break;
765 case 6: opcode << "adds"; break;
766 case 7: opcode << "subs"; break;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800767 }
Elliott Hughes630e77d2012-03-22 19:20:56 -0700768 args << Rn << ", #" << imm8;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800769 break;
770 }
771 default:
772 break;
773 }
Ian Rogersad03ef52012-03-18 19:34:47 -0700774 } else if (opcode1 == 0x10) {
775 // Data-processing
776 uint16_t opcode2 = (instr >> 6) & 0xF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700777 ThumbRegister rm(instr, 3);
778 ThumbRegister rdn(instr, 0);
Ian Rogersad03ef52012-03-18 19:34:47 -0700779 opcode << kThumbDataProcessingOperations[opcode2];
Elliott Hughes630e77d2012-03-22 19:20:56 -0700780 args << rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800781 } else if (opcode1 == 0x11) {
782 // Special data instructions and branch and exchange
783 uint16_t opcode2 = (instr >> 6) & 0x0F;
784 switch (opcode2) {
785 case 0x0: case 0x1: case 0x2: case 0x3: {
786 // Add low registers - 010001 0000 xxxxxx
787 // Add high registers - 010001 0001/001x xxxxxx
788 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700789 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800790 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700791 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700792 opcode << "add";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700793 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800794 break;
795 }
796 case 0x8: case 0x9: case 0xA: case 0xB: {
797 // Move low registers - 010001 1000 xxxxxx
798 // Move high registers - 010001 1001/101x xxxxxx
799 uint16_t DN = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700800 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800801 uint16_t Rdn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700802 ArmRegister DN_Rdn((DN << 3) | Rdn);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700803 opcode << "mov";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700804 args << DN_Rdn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800805 break;
806 }
807 case 0x5: case 0x6: case 0x7: {
808 // Compare high registers - 010001 0101/011x xxxxxx
809 uint16_t N = (instr >> 7) & 1;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700810 ArmRegister rm(instr, 3);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800811 uint16_t Rn = instr & 7;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700812 ArmRegister N_Rn((N << 3) | Rn);
Elliott Hughescbf0b612012-03-15 16:23:47 -0700813 opcode << "cmp";
Elliott Hughes630e77d2012-03-22 19:20:56 -0700814 args << N_Rn << ", " << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800815 break;
816 }
817 case 0xC: case 0xD: case 0xE: case 0xF: {
818 // Branch and exchange - 010001 110x xxxxxx
819 // Branch with link and exchange - 010001 111x xxxxxx
Elliott Hughes630e77d2012-03-22 19:20:56 -0700820 ArmRegister rm(instr, 3);
821 opcode << ((opcode2 & 0x2) == 0 ? "bx" : "blx");
822 args << rm;
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800823 break;
824 }
825 default:
826 break;
827 }
828 } else if ((instr & 0xF000) == 0xB000) {
829 // Miscellaneous 16-bit instructions
830 uint16_t opcode2 = (instr >> 5) & 0x7F;
831 switch (opcode2) {
832 case 0x00: case 0x01: case 0x02: case 0x03: case 0x04: case 0x05: case 0x06: case 0x07: {
833 // Add immediate to SP - 1011 00000 ii iiiii
834 // Subtract immediate from SP - 1011 00001 ii iiiii
835 int imm7 = instr & 0x7F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700836 opcode << ((opcode2 & 4) == 0 ? "add" : "sub");
Elliott Hughescbf0b612012-03-15 16:23:47 -0700837 args << "sp, sp, #" << (imm7 << 2);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800838 break;
839 }
Ian Rogers087b2412012-03-21 01:30:32 -0700840 case 0x08: case 0x09: case 0x0A: case 0x0B: // 0001xxx
841 case 0x0C: case 0x0D: case 0x0E: case 0x0F: {
842 // CBNZ, CBZ
843 uint16_t op = (instr >> 11) & 1;
844 uint16_t i = (instr >> 9) & 1;
845 uint16_t imm5 = (instr >> 3) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700846 ThumbRegister Rn(instr, 0);
Ian Rogers087b2412012-03-21 01:30:32 -0700847 opcode << (op != 0 ? "cbnz" : "cbz");
848 uint32_t imm32 = (i << 7) | (imm5 << 1);
Elliott Hughes630e77d2012-03-22 19:20:56 -0700849 args << Rn << ", ";
Ian Rogers087b2412012-03-21 01:30:32 -0700850 DumpBranchTarget(args, instr_ptr + 4, imm32);
851 break;
852 }
Ian Rogers40627db2012-03-04 17:31:09 -0800853 case 0x78: case 0x79: case 0x7A: case 0x7B: // 1111xxx
854 case 0x7C: case 0x7D: case 0x7E: case 0x7F: {
855 // If-Then, and hints
856 uint16_t opA = (instr >> 4) & 0xF;
857 uint16_t opB = instr & 0xF;
858 if (opB == 0) {
859 switch (opA) {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700860 case 0: opcode << "nop"; break;
861 case 1: opcode << "yield"; break;
862 case 2: opcode << "wfe"; break;
863 case 3: opcode << "sev"; break;
Ian Rogers40627db2012-03-04 17:31:09 -0800864 default: break;
865 }
866 } else {
Elliott Hughescbf0b612012-03-15 16:23:47 -0700867 opcode << "it";
868 args << reinterpret_cast<void*>(opB) << " ";
869 DumpCond(args, opA);
Ian Rogers40627db2012-03-04 17:31:09 -0800870 }
871 break;
872 }
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800873 default:
874 break;
875 }
876 } else if (((instr & 0xF000) == 0x5000) || ((instr & 0xE000) == 0x6000) ||
877 ((instr & 0xE000) == 0x8000)) {
878 // Load/store single data item
879 uint16_t opA = instr >> 12;
880 //uint16_t opB = (instr >> 9) & 7;
881 switch (opA) {
882 case 0x6: {
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700883 // STR Rt, [Rn, #imm] - 01100 iiiii nnn ttt
884 // LDR Rt, [Rn, #imm] - 01101 iiiii nnn ttt
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800885 uint16_t imm5 = (instr >> 6) & 0x1F;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700886 ThumbRegister Rn(instr, 3);
Elliott Hughes28fa76d2012-04-09 17:31:46 -0700887 ThumbRegister Rt(instr, 0);
Elliott Hughes630e77d2012-03-22 19:20:56 -0700888 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
889 args << Rt << ", [" << Rn << ", #" << (imm5 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800890 break;
891 }
892 case 0x9: {
893 // STR Rt, [SP, #imm] - 01100 ttt iiiiiiii
894 // LDR Rt, [SP, #imm] - 01101 ttt iiiiiiii
895 uint16_t imm8 = instr & 0xFF;
Elliott Hughes630e77d2012-03-22 19:20:56 -0700896 ThumbRegister Rt(instr, 8);
897 opcode << ((instr & 0x800) == 0 ? "str" : "ldr");
898 args << Rt << ", [sp, #" << (imm8 << 2) << "]";
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800899 break;
900 }
901 default:
902 break;
903 }
Ian Rogers40627db2012-03-04 17:31:09 -0800904 } else if (opcode1 == 0x38 || opcode1 == 0x39) {
905 uint16_t imm11 = instr & 0x7FFF;
906 int32_t imm32 = imm11 << 1;
907 imm32 = (imm32 << 20) >> 20; // sign extend 12 bit immediate
Elliott Hughescbf0b612012-03-15 16:23:47 -0700908 opcode << "b";
909 DumpBranchTarget(args, instr_ptr + 4, imm32);
Ian Rogers3a5c1ce2012-02-29 10:06:46 -0800910 }
Elliott Hughescbf0b612012-03-15 16:23:47 -0700911 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 -0800912 }
913 return 2;
914}
915
916} // namespace arm
917} // namespace art