blob: 287152ad5945ed8790317defe7972baf93e337d7 [file] [log] [blame]
Ben Murdoch8b112d22011-06-08 16:22:53 +01001// Copyright 2011 the V8 project authors. All rights reserved.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002// Use of this source code is governed by a BSD-style license that can be
3// found in the LICENSE file.
Steve Blocka7e24c12009-10-30 11:49:00 +00004
5// A Disassembler object is used to disassemble a block of code instruction by
6// instruction. The default implementation of the NameConverter object can be
7// overriden to modify register names or to do symbol lookup on addresses.
8//
9// The example below will disassemble a block of code and print it to stdout.
10//
11// NameConverter converter;
12// Disassembler d(converter);
13// for (byte* pc = begin; pc < end;) {
Steve Block6ded16b2010-05-10 14:33:55 +010014// v8::internal::EmbeddedVector<char, 256> buffer;
Steve Blocka7e24c12009-10-30 11:49:00 +000015// byte* prev_pc = pc;
Steve Block6ded16b2010-05-10 14:33:55 +010016// pc += d.InstructionDecode(buffer, pc);
Steve Blocka7e24c12009-10-30 11:49:00 +000017// printf("%p %08x %s\n",
18// prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer);
19// }
20//
21// The Disassembler class also has a convenience method to disassemble a block
22// of code into a FILE*, meaning that the above functionality could also be
23// achieved by just calling Disassembler::Disassemble(stdout, begin, end);
24
25
26#include <assert.h>
Steve Blocka7e24c12009-10-30 11:49:00 +000027#include <stdarg.h>
Ben Murdochb8a8cc12014-11-26 15:28:44 +000028#include <stdio.h>
Steve Blocka7e24c12009-10-30 11:49:00 +000029#include <string.h>
Steve Blocka7e24c12009-10-30 11:49:00 +000030
Ben Murdochb8a8cc12014-11-26 15:28:44 +000031#if V8_TARGET_ARCH_ARM
Leon Clarkef7060e22010-06-03 12:02:55 +010032
Ben Murdochb8a8cc12014-11-26 15:28:44 +000033#include "src/arm/constants-arm.h"
Ben Murdoch4a90d5f2016-03-22 12:00:34 +000034#include "src/base/bits.h"
Ben Murdochb8a8cc12014-11-26 15:28:44 +000035#include "src/base/platform/platform.h"
36#include "src/disasm.h"
37#include "src/macro-assembler.h"
Steve Blocka7e24c12009-10-30 11:49:00 +000038
39
Steve Block1e0659c2011-05-24 12:43:12 +010040namespace v8 {
41namespace internal {
Steve Blocka7e24c12009-10-30 11:49:00 +000042
43
44//------------------------------------------------------------------------------
45
46// Decoder decodes and disassembles instructions into an output buffer.
47// It uses the converter to convert register names and call destinations into
48// more informative description.
49class Decoder {
50 public:
51 Decoder(const disasm::NameConverter& converter,
Steve Block1e0659c2011-05-24 12:43:12 +010052 Vector<char> out_buffer)
Steve Blocka7e24c12009-10-30 11:49:00 +000053 : converter_(converter),
54 out_buffer_(out_buffer),
55 out_buffer_pos_(0) {
56 out_buffer_[out_buffer_pos_] = '\0';
57 }
58
59 ~Decoder() {}
60
61 // Writes one disassembled instruction into 'buffer' (0-terminated).
62 // Returns the length of the disassembled machine instruction in bytes.
63 int InstructionDecode(byte* instruction);
64
Steve Block44f0eee2011-05-26 01:26:41 +010065 static bool IsConstantPoolAt(byte* instr_ptr);
66 static int ConstantPoolSizeAt(byte* instr_ptr);
67
Steve Blocka7e24c12009-10-30 11:49:00 +000068 private:
69 // Bottleneck functions to print into the out_buffer.
70 void PrintChar(const char ch);
71 void Print(const char* str);
72
73 // Printing of common values.
74 void PrintRegister(int reg);
Steve Blockd0582a62009-12-15 09:54:21 +000075 void PrintSRegister(int reg);
76 void PrintDRegister(int reg);
Steve Block1e0659c2011-05-24 12:43:12 +010077 int FormatVFPRegister(Instruction* instr, const char* format);
78 void PrintMovwMovt(Instruction* instr);
79 int FormatVFPinstruction(Instruction* instr, const char* format);
80 void PrintCondition(Instruction* instr);
81 void PrintShiftRm(Instruction* instr);
82 void PrintShiftImm(Instruction* instr);
83 void PrintShiftSat(Instruction* instr);
84 void PrintPU(Instruction* instr);
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -080085 void PrintSoftwareInterrupt(SoftwareInterruptCodes svc);
Steve Blocka7e24c12009-10-30 11:49:00 +000086
87 // Handle formatting of instructions and their options.
Steve Block1e0659c2011-05-24 12:43:12 +010088 int FormatRegister(Instruction* instr, const char* option);
Ben Murdochb8a8cc12014-11-26 15:28:44 +000089 void FormatNeonList(int Vd, int type);
90 void FormatNeonMemory(int Rn, int align, int Rm);
Steve Block1e0659c2011-05-24 12:43:12 +010091 int FormatOption(Instruction* instr, const char* option);
92 void Format(Instruction* instr, const char* format);
93 void Unknown(Instruction* instr);
Steve Blocka7e24c12009-10-30 11:49:00 +000094
95 // Each of these functions decodes one particular instruction type, a 3-bit
96 // field in the instruction encoding.
97 // Types 0 and 1 are combined as they are largely the same except for the way
98 // they interpret the shifter operand.
Steve Block1e0659c2011-05-24 12:43:12 +010099 void DecodeType01(Instruction* instr);
100 void DecodeType2(Instruction* instr);
101 void DecodeType3(Instruction* instr);
102 void DecodeType4(Instruction* instr);
103 void DecodeType5(Instruction* instr);
104 void DecodeType6(Instruction* instr);
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800105 // Type 7 includes special Debugger instructions.
Steve Block1e0659c2011-05-24 12:43:12 +0100106 int DecodeType7(Instruction* instr);
Steve Blockd0582a62009-12-15 09:54:21 +0000107 // For VFP support.
Steve Block1e0659c2011-05-24 12:43:12 +0100108 void DecodeTypeVFP(Instruction* instr);
109 void DecodeType6CoprocessorIns(Instruction* instr);
Steve Blockd0582a62009-12-15 09:54:21 +0000110
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000111 void DecodeSpecialCondition(Instruction* instr);
112
Steve Block1e0659c2011-05-24 12:43:12 +0100113 void DecodeVMOVBetweenCoreAndSinglePrecisionRegisters(Instruction* instr);
114 void DecodeVCMP(Instruction* instr);
115 void DecodeVCVTBetweenDoubleAndSingle(Instruction* instr);
116 void DecodeVCVTBetweenFloatingPointAndInteger(Instruction* instr);
Steve Blocka7e24c12009-10-30 11:49:00 +0000117
118 const disasm::NameConverter& converter_;
Steve Block1e0659c2011-05-24 12:43:12 +0100119 Vector<char> out_buffer_;
Steve Blocka7e24c12009-10-30 11:49:00 +0000120 int out_buffer_pos_;
121
122 DISALLOW_COPY_AND_ASSIGN(Decoder);
123};
124
125
126// Support for assertions in the Decoder formatting functions.
127#define STRING_STARTS_WITH(string, compare_string) \
128 (strncmp(string, compare_string, strlen(compare_string)) == 0)
129
130
131// Append the ch to the output buffer.
132void Decoder::PrintChar(const char ch) {
133 out_buffer_[out_buffer_pos_++] = ch;
134}
135
136
137// Append the str to the output buffer.
138void Decoder::Print(const char* str) {
139 char cur = *str++;
140 while (cur != '\0' && (out_buffer_pos_ < (out_buffer_.length() - 1))) {
141 PrintChar(cur);
142 cur = *str++;
143 }
144 out_buffer_[out_buffer_pos_] = 0;
145}
146
147
148// These condition names are defined in a way to match the native disassembler
149// formatting. See for example the command "objdump -d <binary file>".
Emily Bernierd0a1eb72015-03-24 16:35:39 -0400150static const char* const cond_names[kNumberOfConditions] = {
Steve Blocka7e24c12009-10-30 11:49:00 +0000151 "eq", "ne", "cs" , "cc" , "mi" , "pl" , "vs" , "vc" ,
152 "hi", "ls", "ge", "lt", "gt", "le", "", "invalid",
153};
154
155
156// Print the condition guarding the instruction.
Steve Block1e0659c2011-05-24 12:43:12 +0100157void Decoder::PrintCondition(Instruction* instr) {
158 Print(cond_names[instr->ConditionValue()]);
Steve Blocka7e24c12009-10-30 11:49:00 +0000159}
160
161
162// Print the register name according to the active name converter.
163void Decoder::PrintRegister(int reg) {
164 Print(converter_.NameOfCPURegister(reg));
165}
166
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000167
Steve Blockd0582a62009-12-15 09:54:21 +0000168// Print the VFP S register name according to the active name converter.
169void Decoder::PrintSRegister(int reg) {
Steve Block1e0659c2011-05-24 12:43:12 +0100170 Print(VFPRegisters::Name(reg, false));
Steve Blockd0582a62009-12-15 09:54:21 +0000171}
172
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000173
174// Print the VFP D register name according to the active name converter.
Steve Blockd0582a62009-12-15 09:54:21 +0000175void Decoder::PrintDRegister(int reg) {
Steve Block1e0659c2011-05-24 12:43:12 +0100176 Print(VFPRegisters::Name(reg, true));
Steve Blockd0582a62009-12-15 09:54:21 +0000177}
178
Steve Blocka7e24c12009-10-30 11:49:00 +0000179
180// These shift names are defined in a way to match the native disassembler
181// formatting. See for example the command "objdump -d <binary file>".
Ben Murdoch69a99ed2011-11-30 16:03:39 +0000182static const char* const shift_names[kNumberOfShifts] = {
Steve Blocka7e24c12009-10-30 11:49:00 +0000183 "lsl", "lsr", "asr", "ror"
184};
185
186
187// Print the register shift operands for the instruction. Generally used for
188// data processing instructions.
Steve Block1e0659c2011-05-24 12:43:12 +0100189void Decoder::PrintShiftRm(Instruction* instr) {
190 ShiftOp shift = instr->ShiftField();
191 int shift_index = instr->ShiftValue();
192 int shift_amount = instr->ShiftAmountValue();
193 int rm = instr->RmValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000194
195 PrintRegister(rm);
196
Steve Block1e0659c2011-05-24 12:43:12 +0100197 if ((instr->RegShiftValue() == 0) && (shift == LSL) && (shift_amount == 0)) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000198 // Special case for using rm only.
199 return;
200 }
Steve Block1e0659c2011-05-24 12:43:12 +0100201 if (instr->RegShiftValue() == 0) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000202 // by immediate
203 if ((shift == ROR) && (shift_amount == 0)) {
204 Print(", RRX");
205 return;
206 } else if (((shift == LSR) || (shift == ASR)) && (shift_amount == 0)) {
207 shift_amount = 32;
208 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000209 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
210 ", %s #%d",
211 shift_names[shift_index],
212 shift_amount);
Steve Blocka7e24c12009-10-30 11:49:00 +0000213 } else {
214 // by register
Steve Block1e0659c2011-05-24 12:43:12 +0100215 int rs = instr->RsValue();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000216 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
217 ", %s ", shift_names[shift_index]);
Steve Blocka7e24c12009-10-30 11:49:00 +0000218 PrintRegister(rs);
219 }
220}
221
222
223// Print the immediate operand for the instruction. Generally used for data
224// processing instructions.
Steve Block1e0659c2011-05-24 12:43:12 +0100225void Decoder::PrintShiftImm(Instruction* instr) {
226 int rotate = instr->RotateValue() * 2;
227 int immed8 = instr->Immed8Value();
Ben Murdoch4a90d5f2016-03-22 12:00:34 +0000228 int imm = base::bits::RotateRight32(immed8, rotate);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000229 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "#%d", imm);
Steve Blocka7e24c12009-10-30 11:49:00 +0000230}
231
232
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100233// Print the optional shift and immediate used by saturating instructions.
Steve Block1e0659c2011-05-24 12:43:12 +0100234void Decoder::PrintShiftSat(Instruction* instr) {
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100235 int shift = instr->Bits(11, 7);
236 if (shift > 0) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000237 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
238 ", %s #%d",
239 shift_names[instr->Bit(6) * 2],
240 instr->Bits(11, 7));
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100241 }
242}
243
244
Steve Blocka7e24c12009-10-30 11:49:00 +0000245// Print PU formatting to reduce complexity of FormatOption.
Steve Block1e0659c2011-05-24 12:43:12 +0100246void Decoder::PrintPU(Instruction* instr) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000247 switch (instr->PUField()) {
Steve Block1e0659c2011-05-24 12:43:12 +0100248 case da_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000249 Print("da");
250 break;
251 }
Steve Block1e0659c2011-05-24 12:43:12 +0100252 case ia_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000253 Print("ia");
254 break;
255 }
Steve Block1e0659c2011-05-24 12:43:12 +0100256 case db_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000257 Print("db");
258 break;
259 }
Steve Block1e0659c2011-05-24 12:43:12 +0100260 case ib_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000261 Print("ib");
262 break;
263 }
264 default: {
265 UNREACHABLE();
266 break;
267 }
268 }
269}
270
271
272// Print SoftwareInterrupt codes. Factoring this out reduces the complexity of
273// the FormatOption method.
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800274void Decoder::PrintSoftwareInterrupt(SoftwareInterruptCodes svc) {
275 switch (svc) {
Steve Block1e0659c2011-05-24 12:43:12 +0100276 case kCallRtRedirected:
277 Print("call rt redirected");
Steve Blocka7e24c12009-10-30 11:49:00 +0000278 return;
Steve Block1e0659c2011-05-24 12:43:12 +0100279 case kBreakpoint:
280 Print("breakpoint");
Steve Blocka7e24c12009-10-30 11:49:00 +0000281 return;
282 default:
Steve Block1e0659c2011-05-24 12:43:12 +0100283 if (svc >= kStopCode) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000284 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
285 "%d - 0x%x",
286 svc & kStopCodeMask,
287 svc & kStopCodeMask);
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800288 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000289 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
290 "%d",
291 svc);
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800292 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000293 return;
294 }
295}
296
297
298// Handle all register based formatting in this function to reduce the
299// complexity of FormatOption.
Steve Block1e0659c2011-05-24 12:43:12 +0100300int Decoder::FormatRegister(Instruction* instr, const char* format) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000301 DCHECK(format[0] == 'r');
Steve Blocka7e24c12009-10-30 11:49:00 +0000302 if (format[1] == 'n') { // 'rn: Rn register
Steve Block1e0659c2011-05-24 12:43:12 +0100303 int reg = instr->RnValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000304 PrintRegister(reg);
305 return 2;
306 } else if (format[1] == 'd') { // 'rd: Rd register
Steve Block1e0659c2011-05-24 12:43:12 +0100307 int reg = instr->RdValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000308 PrintRegister(reg);
309 return 2;
310 } else if (format[1] == 's') { // 'rs: Rs register
Steve Block1e0659c2011-05-24 12:43:12 +0100311 int reg = instr->RsValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000312 PrintRegister(reg);
313 return 2;
314 } else if (format[1] == 'm') { // 'rm: Rm register
Steve Block1e0659c2011-05-24 12:43:12 +0100315 int reg = instr->RmValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000316 PrintRegister(reg);
317 return 2;
Steve Blockd0582a62009-12-15 09:54:21 +0000318 } else if (format[1] == 't') { // 'rt: Rt register
Steve Block1e0659c2011-05-24 12:43:12 +0100319 int reg = instr->RtValue();
Steve Blockd0582a62009-12-15 09:54:21 +0000320 PrintRegister(reg);
321 return 2;
Steve Blocka7e24c12009-10-30 11:49:00 +0000322 } else if (format[1] == 'l') {
323 // 'rlist: register list for load and store multiple instructions
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000324 DCHECK(STRING_STARTS_WITH(format, "rlist"));
Steve Block1e0659c2011-05-24 12:43:12 +0100325 int rlist = instr->RlistValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000326 int reg = 0;
327 Print("{");
328 // Print register list in ascending order, by scanning the bit mask.
329 while (rlist != 0) {
330 if ((rlist & 1) != 0) {
331 PrintRegister(reg);
332 if ((rlist >> 1) != 0) {
333 Print(", ");
334 }
335 }
336 reg++;
337 rlist >>= 1;
338 }
339 Print("}");
340 return 5;
341 }
342 UNREACHABLE();
343 return -1;
344}
345
346
Steve Blockd0582a62009-12-15 09:54:21 +0000347// Handle all VFP register based formatting in this function to reduce the
348// complexity of FormatOption.
Steve Block1e0659c2011-05-24 12:43:12 +0100349int Decoder::FormatVFPRegister(Instruction* instr, const char* format) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000350 DCHECK((format[0] == 'S') || (format[0] == 'D'));
Steve Blockd0582a62009-12-15 09:54:21 +0000351
Ben Murdoch8b112d22011-06-08 16:22:53 +0100352 VFPRegPrecision precision =
353 format[0] == 'D' ? kDoublePrecision : kSinglePrecision;
354
355 int retval = 2;
356 int reg = -1;
Steve Blockd0582a62009-12-15 09:54:21 +0000357 if (format[1] == 'n') {
Ben Murdoch8b112d22011-06-08 16:22:53 +0100358 reg = instr->VFPNRegValue(precision);
Steve Blockd0582a62009-12-15 09:54:21 +0000359 } else if (format[1] == 'm') {
Ben Murdoch8b112d22011-06-08 16:22:53 +0100360 reg = instr->VFPMRegValue(precision);
Steve Blockd0582a62009-12-15 09:54:21 +0000361 } else if (format[1] == 'd') {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000362 if ((instr->TypeValue() == 7) &&
363 (instr->Bit(24) == 0x0) &&
364 (instr->Bits(11, 9) == 0x5) &&
365 (instr->Bit(4) == 0x1)) {
366 // vmov.32 has Vd in a different place.
367 reg = instr->Bits(19, 16) | (instr->Bit(7) << 4);
368 } else {
369 reg = instr->VFPDRegValue(precision);
370 }
371
Ben Murdoch8b112d22011-06-08 16:22:53 +0100372 if (format[2] == '+') {
373 int immed8 = instr->Immed8Value();
374 if (format[0] == 'S') reg += immed8 - 1;
375 if (format[0] == 'D') reg += (immed8 / 2 - 1);
376 }
377 if (format[2] == '+') retval = 3;
378 } else {
379 UNREACHABLE();
Steve Blockd0582a62009-12-15 09:54:21 +0000380 }
381
Ben Murdoch8b112d22011-06-08 16:22:53 +0100382 if (precision == kSinglePrecision) {
383 PrintSRegister(reg);
384 } else {
385 PrintDRegister(reg);
386 }
387
388 return retval;
Steve Blockd0582a62009-12-15 09:54:21 +0000389}
390
391
Steve Block1e0659c2011-05-24 12:43:12 +0100392int Decoder::FormatVFPinstruction(Instruction* instr, const char* format) {
Steve Blockd0582a62009-12-15 09:54:21 +0000393 Print(format);
394 return 0;
395}
396
397
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000398void Decoder::FormatNeonList(int Vd, int type) {
399 if (type == nlt_1) {
400 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
401 "{d%d}", Vd);
402 } else if (type == nlt_2) {
403 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
404 "{d%d, d%d}", Vd, Vd + 1);
405 } else if (type == nlt_3) {
406 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
407 "{d%d, d%d, d%d}", Vd, Vd + 1, Vd + 2);
408 } else if (type == nlt_4) {
409 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
410 "{d%d, d%d, d%d, d%d}", Vd, Vd + 1, Vd + 2, Vd + 3);
411 }
412}
413
414
415void Decoder::FormatNeonMemory(int Rn, int align, int Rm) {
416 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
417 "[r%d", Rn);
418 if (align != 0) {
419 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
420 ":%d", (1 << align) << 6);
421 }
422 if (Rm == 15) {
423 Print("]");
424 } else if (Rm == 13) {
425 Print("]!");
426 } else {
427 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
428 "], r%d", Rm);
429 }
430}
431
432
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100433// Print the movw or movt instruction.
Steve Block1e0659c2011-05-24 12:43:12 +0100434void Decoder::PrintMovwMovt(Instruction* instr) {
435 int imm = instr->ImmedMovwMovtValue();
436 int rd = instr->RdValue();
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100437 PrintRegister(rd);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000438 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, ", #%d", imm);
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100439}
440
441
Steve Blocka7e24c12009-10-30 11:49:00 +0000442// FormatOption takes a formatting string and interprets it based on
443// the current instructions. The format string points to the first
444// character of the option string (the option escape has already been
445// consumed by the caller.) FormatOption returns the number of
446// characters that were consumed from the formatting string.
Steve Block1e0659c2011-05-24 12:43:12 +0100447int Decoder::FormatOption(Instruction* instr, const char* format) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000448 switch (format[0]) {
449 case 'a': { // 'a: accumulate multiplies
450 if (instr->Bit(21) == 0) {
451 Print("ul");
452 } else {
453 Print("la");
454 }
455 return 1;
456 }
457 case 'b': { // 'b: byte loads or stores
458 if (instr->HasB()) {
459 Print("b");
460 }
461 return 1;
462 }
463 case 'c': { // 'cond: conditional execution
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000464 DCHECK(STRING_STARTS_WITH(format, "cond"));
Steve Blocka7e24c12009-10-30 11:49:00 +0000465 PrintCondition(instr);
466 return 4;
467 }
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100468 case 'd': { // 'd: vmov double immediate.
469 double d = instr->DoubleImmedVmov();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000470 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "#%g", d);
Ben Murdoch3bec4d22010-07-22 14:51:16 +0100471 return 1;
472 }
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100473 case 'f': { // 'f: bitfield instructions - v7 and above.
474 uint32_t lsbit = instr->Bits(11, 7);
475 uint32_t width = instr->Bits(20, 16) + 1;
476 if (instr->Bit(21) == 0) {
477 // BFC/BFI:
478 // Bits 20-16 represent most-significant bit. Covert to width.
479 width -= lsbit;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000480 DCHECK(width > 0);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100481 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000482 DCHECK((width + lsbit) <= 32);
483 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
484 "#%d, #%d", lsbit, width);
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +0100485 return 1;
486 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000487 case 'h': { // 'h: halfword operation for extra loads and stores
488 if (instr->HasH()) {
489 Print("h");
490 } else {
491 Print("b");
492 }
493 return 1;
494 }
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100495 case 'i': { // 'i: immediate value from adjacent bits.
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100496 // Expects tokens in the form imm%02d@%02d, i.e. imm05@07, imm10@16
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100497 int width = (format[3] - '0') * 10 + (format[4] - '0');
498 int lsb = (format[6] - '0') * 10 + (format[7] - '0');
499
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000500 DCHECK((width >= 1) && (width <= 32));
501 DCHECK((lsb >= 0) && (lsb <= 31));
502 DCHECK((width + lsb) <= 32);
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100503
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000504 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
505 "%d",
506 instr->Bits(width + lsb - 1, lsb));
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100507 return 8;
508 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000509 case 'l': { // 'l: branch and link
510 if (instr->HasLink()) {
511 Print("l");
512 }
513 return 1;
514 }
515 case 'm': {
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100516 if (format[1] == 'w') {
517 // 'mw: movt/movw instructions.
518 PrintMovwMovt(instr);
519 return 2;
520 }
521 if (format[1] == 'e') { // 'memop: load/store instructions.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000522 DCHECK(STRING_STARTS_WITH(format, "memop"));
Steve Blocka7e24c12009-10-30 11:49:00 +0000523 if (instr->HasL()) {
524 Print("ldr");
525 } else {
Ben Murdoch257744e2011-11-30 15:57:28 +0000526 if ((instr->Bits(27, 25) == 0) && (instr->Bit(20) == 0) &&
527 (instr->Bits(7, 6) == 3) && (instr->Bit(4) == 1)) {
528 if (instr->Bit(5) == 1) {
529 Print("strd");
530 } else {
531 Print("ldrd");
532 }
533 return 5;
534 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000535 Print("str");
536 }
537 return 5;
538 }
539 // 'msg: for simulator break instructions
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000540 DCHECK(STRING_STARTS_WITH(format, "msg"));
Steve Blocka7e24c12009-10-30 11:49:00 +0000541 byte* str =
542 reinterpret_cast<byte*>(instr->InstructionBits() & 0x0fffffff);
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000543 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
544 "%s", converter_.NameInCode(str));
Steve Blocka7e24c12009-10-30 11:49:00 +0000545 return 3;
546 }
547 case 'o': {
Andrei Popescu31002712010-02-23 13:46:05 +0000548 if ((format[3] == '1') && (format[4] == '2')) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000549 // 'off12: 12-bit offset for load and store instructions
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000550 DCHECK(STRING_STARTS_WITH(format, "off12"));
551 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
552 "%d", instr->Offset12Value());
Steve Blocka7e24c12009-10-30 11:49:00 +0000553 return 5;
Steve Block6ded16b2010-05-10 14:33:55 +0100554 } else if (format[3] == '0') {
555 // 'off0to3and8to19 16-bit immediate encoded in bits 19-8 and 3-0.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000556 DCHECK(STRING_STARTS_WITH(format, "off0to3and8to19"));
557 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
558 "%d",
559 (instr->Bits(19, 8) << 4) +
560 instr->Bits(3, 0));
Steve Block6ded16b2010-05-10 14:33:55 +0100561 return 15;
Steve Blocka7e24c12009-10-30 11:49:00 +0000562 }
563 // 'off8: 8-bit offset for extra load and store instructions
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000564 DCHECK(STRING_STARTS_WITH(format, "off8"));
Steve Block1e0659c2011-05-24 12:43:12 +0100565 int offs8 = (instr->ImmedHValue() << 4) | instr->ImmedLValue();
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000566 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_, "%d", offs8);
Steve Blocka7e24c12009-10-30 11:49:00 +0000567 return 4;
568 }
569 case 'p': { // 'pu: P and U bits for load and store instructions
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000570 DCHECK(STRING_STARTS_WITH(format, "pu"));
Steve Blocka7e24c12009-10-30 11:49:00 +0000571 PrintPU(instr);
572 return 2;
573 }
574 case 'r': {
575 return FormatRegister(instr, format);
576 }
577 case 's': {
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100578 if (format[1] == 'h') { // 'shift_op or 'shift_rm or 'shift_sat.
Steve Blocka7e24c12009-10-30 11:49:00 +0000579 if (format[6] == 'o') { // 'shift_op
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000580 DCHECK(STRING_STARTS_WITH(format, "shift_op"));
Steve Block1e0659c2011-05-24 12:43:12 +0100581 if (instr->TypeValue() == 0) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000582 PrintShiftRm(instr);
583 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000584 DCHECK(instr->TypeValue() == 1);
Steve Blocka7e24c12009-10-30 11:49:00 +0000585 PrintShiftImm(instr);
586 }
587 return 8;
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100588 } else if (format[6] == 's') { // 'shift_sat.
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000589 DCHECK(STRING_STARTS_WITH(format, "shift_sat"));
Kristian Monsen50ef84f2010-07-29 15:18:00 +0100590 PrintShiftSat(instr);
591 return 9;
Steve Blocka7e24c12009-10-30 11:49:00 +0000592 } else { // 'shift_rm
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000593 DCHECK(STRING_STARTS_WITH(format, "shift_rm"));
Steve Blocka7e24c12009-10-30 11:49:00 +0000594 PrintShiftRm(instr);
595 return 8;
596 }
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -0800597 } else if (format[1] == 'v') { // 'svc
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000598 DCHECK(STRING_STARTS_WITH(format, "svc"));
Steve Block1e0659c2011-05-24 12:43:12 +0100599 PrintSoftwareInterrupt(instr->SvcValue());
Steve Blocka7e24c12009-10-30 11:49:00 +0000600 return 3;
601 } else if (format[1] == 'i') { // 'sign: signed extra loads and stores
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000602 DCHECK(STRING_STARTS_WITH(format, "sign"));
Steve Blocka7e24c12009-10-30 11:49:00 +0000603 if (instr->HasSign()) {
604 Print("s");
605 }
606 return 4;
Ben Murdochda12d292016-06-02 14:46:10 +0100607 } else if (format[1] == 'p') {
608 if (format[8] == '_') { // 'spec_reg_fields
609 DCHECK(STRING_STARTS_WITH(format, "spec_reg_fields"));
610 Print("_");
611 int mask = instr->Bits(19, 16);
612 if (mask == 0) Print("(none)");
613 if ((mask & 0x8) != 0) Print("f");
614 if ((mask & 0x4) != 0) Print("s");
615 if ((mask & 0x2) != 0) Print("x");
616 if ((mask & 0x1) != 0) Print("c");
617 return 15;
618 } else { // 'spec_reg
619 DCHECK(STRING_STARTS_WITH(format, "spec_reg"));
620 if (instr->Bit(22) == 0) {
621 Print("CPSR");
622 } else {
623 Print("SPSR");
624 }
625 return 8;
626 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000627 }
628 // 's: S field of data processing instructions
629 if (instr->HasS()) {
630 Print("s");
631 }
632 return 1;
633 }
634 case 't': { // 'target: target of branch instructions
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000635 DCHECK(STRING_STARTS_WITH(format, "target"));
Steve Block1e0659c2011-05-24 12:43:12 +0100636 int off = (instr->SImmed24Value() << 2) + 8;
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000637 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
638 "%+d -> %s",
639 off,
640 converter_.NameOfAddress(
641 reinterpret_cast<byte*>(instr) + off));
Steve Blocka7e24c12009-10-30 11:49:00 +0000642 return 6;
643 }
644 case 'u': { // 'u: signed or unsigned multiplies
645 // The manual gets the meaning of bit 22 backwards in the multiply
646 // instruction overview on page A3.16.2. The instructions that
647 // exist in u and s variants are the following:
648 // smull A4.1.87
649 // umull A4.1.129
650 // umlal A4.1.128
651 // smlal A4.1.76
652 // For these 0 means u and 1 means s. As can be seen on their individual
653 // pages. The other 18 mul instructions have the bit set or unset in
654 // arbitrary ways that are unrelated to the signedness of the instruction.
655 // None of these 18 instructions exist in both a 'u' and an 's' variant.
656
657 if (instr->Bit(22) == 0) {
658 Print("u");
659 } else {
660 Print("s");
661 }
662 return 1;
663 }
Steve Blockd0582a62009-12-15 09:54:21 +0000664 case 'v': {
665 return FormatVFPinstruction(instr, format);
666 }
667 case 'S':
668 case 'D': {
669 return FormatVFPRegister(instr, format);
670 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000671 case 'w': { // 'w: W field of load and store instructions
672 if (instr->HasW()) {
673 Print("!");
674 }
675 return 1;
676 }
677 default: {
678 UNREACHABLE();
679 break;
680 }
681 }
682 UNREACHABLE();
683 return -1;
684}
685
686
687// Format takes a formatting string for a whole instruction and prints it into
688// the output buffer. All escaped options are handed to FormatOption to be
689// parsed further.
Steve Block1e0659c2011-05-24 12:43:12 +0100690void Decoder::Format(Instruction* instr, const char* format) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000691 char cur = *format++;
692 while ((cur != 0) && (out_buffer_pos_ < (out_buffer_.length() - 1))) {
693 if (cur == '\'') { // Single quote is used as the formatting escape.
694 format += FormatOption(instr, format);
695 } else {
696 out_buffer_[out_buffer_pos_++] = cur;
697 }
698 cur = *format++;
699 }
700 out_buffer_[out_buffer_pos_] = '\0';
701}
702
703
Ben Murdoch3ef787d2012-04-12 10:51:47 +0100704// The disassembler may end up decoding data inlined in the code. We do not want
705// it to crash if the data does not ressemble any known instruction.
706#define VERIFY(condition) \
707if(!(condition)) { \
708 Unknown(instr); \
709 return; \
710}
711
712
Steve Blocka7e24c12009-10-30 11:49:00 +0000713// For currently unimplemented decodings the disassembler calls Unknown(instr)
714// which will just print "unknown" of the instruction bits.
Steve Block1e0659c2011-05-24 12:43:12 +0100715void Decoder::Unknown(Instruction* instr) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000716 Format(instr, "unknown");
717}
718
719
Steve Block1e0659c2011-05-24 12:43:12 +0100720void Decoder::DecodeType01(Instruction* instr) {
721 int type = instr->TypeValue();
Steve Blocka7e24c12009-10-30 11:49:00 +0000722 if ((type == 0) && instr->IsSpecialType0()) {
723 // multiply instruction or extra loads and stores
724 if (instr->Bits(7, 4) == 9) {
725 if (instr->Bit(24) == 0) {
726 // multiply instructions
727 if (instr->Bit(23) == 0) {
728 if (instr->Bit(21) == 0) {
729 // The MUL instruction description (A 4.1.33) refers to Rd as being
730 // the destination for the operation, but it confusingly uses the
731 // Rn field to encode it.
732 Format(instr, "mul'cond's 'rn, 'rm, 'rs");
733 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000734 if (instr->Bit(22) == 0) {
735 // The MLA instruction description (A 4.1.28) refers to the order
736 // of registers as "Rd, Rm, Rs, Rn". But confusingly it uses the
737 // Rn field to encode the Rd register and the Rd field to encode
738 // the Rn register.
739 Format(instr, "mla'cond's 'rn, 'rm, 'rs, 'rd");
740 } else {
741 // The MLS instruction description (A 4.1.29) refers to the order
742 // of registers as "Rd, Rm, Rs, Rn". But confusingly it uses the
743 // Rn field to encode the Rd register and the Rd field to encode
744 // the Rn register.
745 Format(instr, "mls'cond's 'rn, 'rm, 'rs, 'rd");
746 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000747 }
748 } else {
749 // The signed/long multiply instructions use the terms RdHi and RdLo
750 // when referring to the target registers. They are mapped to the Rn
751 // and Rd fields as follows:
752 // RdLo == Rd field
753 // RdHi == Rn field
754 // The order of registers is: <RdLo>, <RdHi>, <Rm>, <Rs>
755 Format(instr, "'um'al'cond's 'rd, 'rn, 'rm, 'rs");
756 }
757 } else {
758 Unknown(instr); // not used by V8
759 }
Kristian Monsen25f61362010-05-21 11:50:48 +0100760 } else if ((instr->Bit(20) == 0) && ((instr->Bits(7, 4) & 0xd) == 0xd)) {
761 // ldrd, strd
762 switch (instr->PUField()) {
Steve Block1e0659c2011-05-24 12:43:12 +0100763 case da_x: {
Kristian Monsen25f61362010-05-21 11:50:48 +0100764 if (instr->Bit(22) == 0) {
765 Format(instr, "'memop'cond's 'rd, ['rn], -'rm");
766 } else {
767 Format(instr, "'memop'cond's 'rd, ['rn], #-'off8");
768 }
769 break;
770 }
Steve Block1e0659c2011-05-24 12:43:12 +0100771 case ia_x: {
Kristian Monsen25f61362010-05-21 11:50:48 +0100772 if (instr->Bit(22) == 0) {
773 Format(instr, "'memop'cond's 'rd, ['rn], +'rm");
774 } else {
775 Format(instr, "'memop'cond's 'rd, ['rn], #+'off8");
776 }
777 break;
778 }
Steve Block1e0659c2011-05-24 12:43:12 +0100779 case db_x: {
Kristian Monsen25f61362010-05-21 11:50:48 +0100780 if (instr->Bit(22) == 0) {
781 Format(instr, "'memop'cond's 'rd, ['rn, -'rm]'w");
782 } else {
783 Format(instr, "'memop'cond's 'rd, ['rn, #-'off8]'w");
784 }
785 break;
786 }
Steve Block1e0659c2011-05-24 12:43:12 +0100787 case ib_x: {
Kristian Monsen25f61362010-05-21 11:50:48 +0100788 if (instr->Bit(22) == 0) {
789 Format(instr, "'memop'cond's 'rd, ['rn, +'rm]'w");
790 } else {
791 Format(instr, "'memop'cond's 'rd, ['rn, #+'off8]'w");
792 }
793 break;
794 }
795 default: {
796 // The PU field is a 2-bit field.
797 UNREACHABLE();
798 break;
799 }
800 }
Steve Blocka7e24c12009-10-30 11:49:00 +0000801 } else {
802 // extra load/store instructions
803 switch (instr->PUField()) {
Steve Block1e0659c2011-05-24 12:43:12 +0100804 case da_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000805 if (instr->Bit(22) == 0) {
806 Format(instr, "'memop'cond'sign'h 'rd, ['rn], -'rm");
807 } else {
808 Format(instr, "'memop'cond'sign'h 'rd, ['rn], #-'off8");
809 }
810 break;
811 }
Steve Block1e0659c2011-05-24 12:43:12 +0100812 case ia_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000813 if (instr->Bit(22) == 0) {
814 Format(instr, "'memop'cond'sign'h 'rd, ['rn], +'rm");
815 } else {
816 Format(instr, "'memop'cond'sign'h 'rd, ['rn], #+'off8");
817 }
818 break;
819 }
Steve Block1e0659c2011-05-24 12:43:12 +0100820 case db_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000821 if (instr->Bit(22) == 0) {
822 Format(instr, "'memop'cond'sign'h 'rd, ['rn, -'rm]'w");
823 } else {
824 Format(instr, "'memop'cond'sign'h 'rd, ['rn, #-'off8]'w");
825 }
826 break;
827 }
Steve Block1e0659c2011-05-24 12:43:12 +0100828 case ib_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000829 if (instr->Bit(22) == 0) {
830 Format(instr, "'memop'cond'sign'h 'rd, ['rn, +'rm]'w");
831 } else {
832 Format(instr, "'memop'cond'sign'h 'rd, ['rn, #+'off8]'w");
833 }
834 break;
835 }
836 default: {
837 // The PU field is a 2-bit field.
838 UNREACHABLE();
839 break;
840 }
841 }
842 return;
843 }
Steve Block6ded16b2010-05-10 14:33:55 +0100844 } else if ((type == 0) && instr->IsMiscType0()) {
Ben Murdochda12d292016-06-02 14:46:10 +0100845 if ((instr->Bits(27, 23) == 2) && (instr->Bits(21, 20) == 2) &&
846 (instr->Bits(15, 4) == 0xf00)) {
847 Format(instr, "msr'cond 'spec_reg'spec_reg_fields, 'rm");
848 } else if ((instr->Bits(27, 23) == 2) && (instr->Bits(21, 20) == 0) &&
849 (instr->Bits(11, 0) == 0)) {
850 Format(instr, "mrs'cond 'rd, 'spec_reg");
851 } else if (instr->Bits(22, 21) == 1) {
Steve Block1e0659c2011-05-24 12:43:12 +0100852 switch (instr->BitField(7, 4)) {
Steve Block6ded16b2010-05-10 14:33:55 +0100853 case BX:
854 Format(instr, "bx'cond 'rm");
855 break;
856 case BLX:
857 Format(instr, "blx'cond 'rm");
858 break;
859 case BKPT:
860 Format(instr, "bkpt 'off0to3and8to19");
861 break;
862 default:
863 Unknown(instr); // not used by V8
864 break;
865 }
866 } else if (instr->Bits(22, 21) == 3) {
Steve Block1e0659c2011-05-24 12:43:12 +0100867 switch (instr->BitField(7, 4)) {
Steve Block6ded16b2010-05-10 14:33:55 +0100868 case CLZ:
869 Format(instr, "clz'cond 'rd, 'rm");
870 break;
871 default:
872 Unknown(instr); // not used by V8
873 break;
874 }
875 } else {
876 Unknown(instr); // not used by V8
877 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +0000878 } else if ((type == 1) && instr->IsNopType1()) {
879 Format(instr, "nop'cond");
Steve Blocka7e24c12009-10-30 11:49:00 +0000880 } else {
881 switch (instr->OpcodeField()) {
882 case AND: {
883 Format(instr, "and'cond's 'rd, 'rn, 'shift_op");
884 break;
885 }
886 case EOR: {
887 Format(instr, "eor'cond's 'rd, 'rn, 'shift_op");
888 break;
889 }
890 case SUB: {
891 Format(instr, "sub'cond's 'rd, 'rn, 'shift_op");
892 break;
893 }
894 case RSB: {
895 Format(instr, "rsb'cond's 'rd, 'rn, 'shift_op");
896 break;
897 }
898 case ADD: {
899 Format(instr, "add'cond's 'rd, 'rn, 'shift_op");
900 break;
901 }
902 case ADC: {
903 Format(instr, "adc'cond's 'rd, 'rn, 'shift_op");
904 break;
905 }
906 case SBC: {
907 Format(instr, "sbc'cond's 'rd, 'rn, 'shift_op");
908 break;
909 }
910 case RSC: {
911 Format(instr, "rsc'cond's 'rd, 'rn, 'shift_op");
912 break;
913 }
914 case TST: {
915 if (instr->HasS()) {
916 Format(instr, "tst'cond 'rn, 'shift_op");
917 } else {
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100918 Format(instr, "movw'cond 'mw");
Steve Blocka7e24c12009-10-30 11:49:00 +0000919 }
920 break;
921 }
922 case TEQ: {
923 if (instr->HasS()) {
924 Format(instr, "teq'cond 'rn, 'shift_op");
925 } else {
Steve Block6ded16b2010-05-10 14:33:55 +0100926 // Other instructions matching this pattern are handled in the
927 // miscellaneous instructions part above.
928 UNREACHABLE();
Steve Blocka7e24c12009-10-30 11:49:00 +0000929 }
930 break;
931 }
932 case CMP: {
933 if (instr->HasS()) {
934 Format(instr, "cmp'cond 'rn, 'shift_op");
935 } else {
Kristian Monsen9dcf7e22010-06-28 14:14:28 +0100936 Format(instr, "movt'cond 'mw");
Steve Blocka7e24c12009-10-30 11:49:00 +0000937 }
938 break;
939 }
940 case CMN: {
941 if (instr->HasS()) {
942 Format(instr, "cmn'cond 'rn, 'shift_op");
943 } else {
Steve Block6ded16b2010-05-10 14:33:55 +0100944 // Other instructions matching this pattern are handled in the
945 // miscellaneous instructions part above.
946 UNREACHABLE();
Steve Blocka7e24c12009-10-30 11:49:00 +0000947 }
948 break;
949 }
950 case ORR: {
951 Format(instr, "orr'cond's 'rd, 'rn, 'shift_op");
952 break;
953 }
954 case MOV: {
955 Format(instr, "mov'cond's 'rd, 'shift_op");
956 break;
957 }
958 case BIC: {
959 Format(instr, "bic'cond's 'rd, 'rn, 'shift_op");
960 break;
961 }
962 case MVN: {
963 Format(instr, "mvn'cond's 'rd, 'shift_op");
964 break;
965 }
966 default: {
967 // The Opcode field is a 4-bit field.
968 UNREACHABLE();
969 break;
970 }
971 }
972 }
973}
974
975
Steve Block1e0659c2011-05-24 12:43:12 +0100976void Decoder::DecodeType2(Instruction* instr) {
Steve Blocka7e24c12009-10-30 11:49:00 +0000977 switch (instr->PUField()) {
Steve Block1e0659c2011-05-24 12:43:12 +0100978 case da_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000979 if (instr->HasW()) {
980 Unknown(instr); // not used in V8
Steve Block44f0eee2011-05-26 01:26:41 +0100981 return;
Steve Blocka7e24c12009-10-30 11:49:00 +0000982 }
983 Format(instr, "'memop'cond'b 'rd, ['rn], #-'off12");
984 break;
985 }
Steve Block1e0659c2011-05-24 12:43:12 +0100986 case ia_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000987 if (instr->HasW()) {
988 Unknown(instr); // not used in V8
Steve Block44f0eee2011-05-26 01:26:41 +0100989 return;
Steve Blocka7e24c12009-10-30 11:49:00 +0000990 }
991 Format(instr, "'memop'cond'b 'rd, ['rn], #+'off12");
992 break;
993 }
Steve Block1e0659c2011-05-24 12:43:12 +0100994 case db_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000995 Format(instr, "'memop'cond'b 'rd, ['rn, #-'off12]'w");
996 break;
997 }
Steve Block1e0659c2011-05-24 12:43:12 +0100998 case ib_x: {
Steve Blocka7e24c12009-10-30 11:49:00 +0000999 Format(instr, "'memop'cond'b 'rd, ['rn, #+'off12]'w");
1000 break;
1001 }
1002 default: {
1003 // The PU field is a 2-bit field.
1004 UNREACHABLE();
1005 break;
1006 }
1007 }
1008}
1009
1010
Steve Block1e0659c2011-05-24 12:43:12 +01001011void Decoder::DecodeType3(Instruction* instr) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001012 switch (instr->PUField()) {
Steve Block1e0659c2011-05-24 12:43:12 +01001013 case da_x: {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001014 VERIFY(!instr->HasW());
Steve Blocka7e24c12009-10-30 11:49:00 +00001015 Format(instr, "'memop'cond'b 'rd, ['rn], -'shift_rm");
1016 break;
1017 }
Steve Block1e0659c2011-05-24 12:43:12 +01001018 case ia_x: {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001019 if (instr->Bit(4) == 0) {
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001020 Format(instr, "'memop'cond'b 'rd, ['rn], +'shift_rm");
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001021 } else {
1022 if (instr->Bit(5) == 0) {
1023 switch (instr->Bits(22, 21)) {
1024 case 0:
1025 if (instr->Bit(20) == 0) {
1026 if (instr->Bit(6) == 0) {
1027 Format(instr, "pkhbt'cond 'rd, 'rn, 'rm, lsl #'imm05@07");
1028 } else {
1029 if (instr->Bits(11, 7) == 0) {
1030 Format(instr, "pkhtb'cond 'rd, 'rn, 'rm, asr #32");
1031 } else {
1032 Format(instr, "pkhtb'cond 'rd, 'rn, 'rm, asr #'imm05@07");
1033 }
1034 }
1035 } else {
1036 UNREACHABLE();
1037 }
1038 break;
1039 case 1:
1040 UNREACHABLE();
1041 break;
1042 case 2:
1043 UNREACHABLE();
1044 break;
1045 case 3:
1046 Format(instr, "usat 'rd, #'imm05@16, 'rm'shift_sat");
1047 break;
1048 }
1049 } else {
1050 switch (instr->Bits(22, 21)) {
1051 case 0:
1052 UNREACHABLE();
1053 break;
1054 case 1:
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001055 if (instr->Bits(9, 6) == 1) {
1056 if (instr->Bit(20) == 0) {
1057 if (instr->Bits(19, 16) == 0xF) {
1058 switch (instr->Bits(11, 10)) {
1059 case 0:
1060 Format(instr, "sxtb'cond 'rd, 'rm");
1061 break;
1062 case 1:
1063 Format(instr, "sxtb'cond 'rd, 'rm, ror #8");
1064 break;
1065 case 2:
1066 Format(instr, "sxtb'cond 'rd, 'rm, ror #16");
1067 break;
1068 case 3:
1069 Format(instr, "sxtb'cond 'rd, 'rm, ror #24");
1070 break;
1071 }
1072 } else {
1073 switch (instr->Bits(11, 10)) {
1074 case 0:
1075 Format(instr, "sxtab'cond 'rd, 'rn, 'rm");
1076 break;
1077 case 1:
1078 Format(instr, "sxtab'cond 'rd, 'rn, 'rm, ror #8");
1079 break;
1080 case 2:
1081 Format(instr, "sxtab'cond 'rd, 'rn, 'rm, ror #16");
1082 break;
1083 case 3:
1084 Format(instr, "sxtab'cond 'rd, 'rn, 'rm, ror #24");
1085 break;
1086 }
1087 }
1088 } else {
1089 if (instr->Bits(19, 16) == 0xF) {
1090 switch (instr->Bits(11, 10)) {
1091 case 0:
1092 Format(instr, "sxth'cond 'rd, 'rm");
1093 break;
1094 case 1:
1095 Format(instr, "sxth'cond 'rd, 'rm, ror #8");
1096 break;
1097 case 2:
1098 Format(instr, "sxth'cond 'rd, 'rm, ror #16");
1099 break;
1100 case 3:
1101 Format(instr, "sxth'cond 'rd, 'rm, ror #24");
1102 break;
1103 }
1104 } else {
1105 switch (instr->Bits(11, 10)) {
1106 case 0:
1107 Format(instr, "sxtah'cond 'rd, 'rn, 'rm");
1108 break;
1109 case 1:
1110 Format(instr, "sxtah'cond 'rd, 'rn, 'rm, ror #8");
1111 break;
1112 case 2:
1113 Format(instr, "sxtah'cond 'rd, 'rn, 'rm, ror #16");
1114 break;
1115 case 3:
1116 Format(instr, "sxtah'cond 'rd, 'rn, 'rm, ror #24");
1117 break;
1118 }
1119 }
1120 }
1121 } else {
1122 UNREACHABLE();
1123 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001124 break;
1125 case 2:
1126 if ((instr->Bit(20) == 0) && (instr->Bits(9, 6) == 1)) {
1127 if (instr->Bits(19, 16) == 0xF) {
1128 switch (instr->Bits(11, 10)) {
1129 case 0:
1130 Format(instr, "uxtb16'cond 'rd, 'rm");
1131 break;
1132 case 1:
1133 Format(instr, "uxtb16'cond 'rd, 'rm, ror #8");
1134 break;
1135 case 2:
1136 Format(instr, "uxtb16'cond 'rd, 'rm, ror #16");
1137 break;
1138 case 3:
1139 Format(instr, "uxtb16'cond 'rd, 'rm, ror #24");
1140 break;
1141 }
1142 } else {
1143 UNREACHABLE();
1144 }
1145 } else {
1146 UNREACHABLE();
1147 }
1148 break;
1149 case 3:
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001150 if ((instr->Bits(9, 6) == 1)) {
1151 if ((instr->Bit(20) == 0)) {
1152 if (instr->Bits(19, 16) == 0xF) {
1153 switch (instr->Bits(11, 10)) {
1154 case 0:
1155 Format(instr, "uxtb'cond 'rd, 'rm");
1156 break;
1157 case 1:
1158 Format(instr, "uxtb'cond 'rd, 'rm, ror #8");
1159 break;
1160 case 2:
1161 Format(instr, "uxtb'cond 'rd, 'rm, ror #16");
1162 break;
1163 case 3:
1164 Format(instr, "uxtb'cond 'rd, 'rm, ror #24");
1165 break;
1166 }
1167 } else {
1168 switch (instr->Bits(11, 10)) {
1169 case 0:
1170 Format(instr, "uxtab'cond 'rd, 'rn, 'rm");
1171 break;
1172 case 1:
1173 Format(instr, "uxtab'cond 'rd, 'rn, 'rm, ror #8");
1174 break;
1175 case 2:
1176 Format(instr, "uxtab'cond 'rd, 'rn, 'rm, ror #16");
1177 break;
1178 case 3:
1179 Format(instr, "uxtab'cond 'rd, 'rn, 'rm, ror #24");
1180 break;
1181 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001182 }
1183 } else {
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001184 if (instr->Bits(19, 16) == 0xF) {
1185 switch (instr->Bits(11, 10)) {
1186 case 0:
1187 Format(instr, "uxth'cond 'rd, 'rm");
1188 break;
1189 case 1:
1190 Format(instr, "uxth'cond 'rd, 'rm, ror #8");
1191 break;
1192 case 2:
1193 Format(instr, "uxth'cond 'rd, 'rm, ror #16");
1194 break;
1195 case 3:
1196 Format(instr, "uxth'cond 'rd, 'rm, ror #24");
1197 break;
1198 }
1199 } else {
1200 switch (instr->Bits(11, 10)) {
1201 case 0:
1202 Format(instr, "uxtah'cond 'rd, 'rn, 'rm");
1203 break;
1204 case 1:
1205 Format(instr, "uxtah'cond 'rd, 'rn, 'rm, ror #8");
1206 break;
1207 case 2:
1208 Format(instr, "uxtah'cond 'rd, 'rn, 'rm, ror #16");
1209 break;
1210 case 3:
1211 Format(instr, "uxtah'cond 'rd, 'rn, 'rm, ror #24");
1212 break;
1213 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001214 }
1215 }
1216 } else {
Ben Murdoch097c5b22016-05-18 11:27:45 +01001217 // PU == 0b01, BW == 0b11, Bits(9, 6) != 0b0001
1218 if ((instr->Bits(20, 16) == 0x1f) &&
1219 (instr->Bits(11, 4) == 0xf3)) {
1220 Format(instr, "rbit'cond 'rd, 'rm");
1221 } else {
1222 UNREACHABLE();
1223 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001224 }
1225 break;
1226 }
1227 }
Kristian Monsen50ef84f2010-07-29 15:18:00 +01001228 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001229 break;
1230 }
Steve Block1e0659c2011-05-24 12:43:12 +01001231 case db_x: {
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001232 if (instr->Bits(22, 20) == 0x5) {
1233 if (instr->Bits(7, 4) == 0x1) {
1234 if (instr->Bits(15, 12) == 0xF) {
1235 Format(instr, "smmul'cond 'rn, 'rm, 'rs");
1236 } else {
1237 // SMMLA (in V8 notation matching ARM ISA format)
1238 Format(instr, "smmla'cond 'rn, 'rm, 'rs, 'rd");
1239 }
1240 break;
1241 }
1242 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001243 if (FLAG_enable_sudiv) {
1244 if (instr->Bits(5, 4) == 0x1) {
1245 if ((instr->Bit(22) == 0x0) && (instr->Bit(20) == 0x1)) {
1246 if (instr->Bit(21) == 0x1) {
1247 // UDIV (in V8 notation matching ARM ISA format) rn = rm/rs
1248 Format(instr, "udiv'cond'b 'rn, 'rm, 'rs");
1249 } else {
1250 // SDIV (in V8 notation matching ARM ISA format) rn = rm/rs
1251 Format(instr, "sdiv'cond'b 'rn, 'rm, 'rs");
1252 }
1253 break;
1254 }
1255 }
1256 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001257 Format(instr, "'memop'cond'b 'rd, ['rn, -'shift_rm]'w");
1258 break;
1259 }
Steve Block1e0659c2011-05-24 12:43:12 +01001260 case ib_x: {
Andrei Popescu31002712010-02-23 13:46:05 +00001261 if (instr->HasW() && (instr->Bits(6, 4) == 0x5)) {
1262 uint32_t widthminus1 = static_cast<uint32_t>(instr->Bits(20, 16));
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001263 uint32_t lsbit = static_cast<uint32_t>(instr->Bits(11, 7));
Andrei Popescu31002712010-02-23 13:46:05 +00001264 uint32_t msbit = widthminus1 + lsbit;
1265 if (msbit <= 31) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001266 if (instr->Bit(22)) {
1267 Format(instr, "ubfx'cond 'rd, 'rm, 'f");
1268 } else {
1269 Format(instr, "sbfx'cond 'rd, 'rm, 'f");
1270 }
1271 } else {
1272 UNREACHABLE();
1273 }
1274 } else if (!instr->HasW() && (instr->Bits(6, 4) == 0x1)) {
1275 uint32_t lsbit = static_cast<uint32_t>(instr->Bits(11, 7));
1276 uint32_t msbit = static_cast<uint32_t>(instr->Bits(20, 16));
1277 if (msbit >= lsbit) {
Steve Block1e0659c2011-05-24 12:43:12 +01001278 if (instr->RmValue() == 15) {
Ben Murdoch7f4d5bd2010-06-15 11:15:29 +01001279 Format(instr, "bfc'cond 'rd, 'f");
1280 } else {
1281 Format(instr, "bfi'cond 'rd, 'rm, 'f");
1282 }
Andrei Popescu31002712010-02-23 13:46:05 +00001283 } else {
1284 UNREACHABLE();
1285 }
1286 } else {
1287 Format(instr, "'memop'cond'b 'rd, ['rn, +'shift_rm]'w");
1288 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001289 break;
1290 }
1291 default: {
1292 // The PU field is a 2-bit field.
1293 UNREACHABLE();
1294 break;
1295 }
1296 }
1297}
1298
1299
Steve Block1e0659c2011-05-24 12:43:12 +01001300void Decoder::DecodeType4(Instruction* instr) {
Steve Block44f0eee2011-05-26 01:26:41 +01001301 if (instr->Bit(22) != 0) {
1302 // Privileged mode currently not supported.
1303 Unknown(instr);
Steve Blocka7e24c12009-10-30 11:49:00 +00001304 } else {
Steve Block44f0eee2011-05-26 01:26:41 +01001305 if (instr->HasL()) {
1306 Format(instr, "ldm'cond'pu 'rn'w, 'rlist");
1307 } else {
1308 Format(instr, "stm'cond'pu 'rn'w, 'rlist");
1309 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001310 }
1311}
1312
1313
Steve Block1e0659c2011-05-24 12:43:12 +01001314void Decoder::DecodeType5(Instruction* instr) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001315 Format(instr, "b'l'cond 'target");
1316}
1317
1318
Steve Block1e0659c2011-05-24 12:43:12 +01001319void Decoder::DecodeType6(Instruction* instr) {
Steve Blockd0582a62009-12-15 09:54:21 +00001320 DecodeType6CoprocessorIns(instr);
Steve Blocka7e24c12009-10-30 11:49:00 +00001321}
1322
1323
Steve Block1e0659c2011-05-24 12:43:12 +01001324int Decoder::DecodeType7(Instruction* instr) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001325 if (instr->Bit(24) == 1) {
Steve Block1e0659c2011-05-24 12:43:12 +01001326 if (instr->SvcValue() >= kStopCode) {
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001327 Format(instr, "stop'cond 'svc");
1328 // Also print the stop message. Its address is encoded
1329 // in the following 4 bytes.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001330 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1331 "\n %p %08x stop message: %s",
1332 reinterpret_cast<void*>(instr
1333 + Instruction::kInstrSize),
1334 *reinterpret_cast<uint32_t*>(instr
1335 + Instruction::kInstrSize),
1336 *reinterpret_cast<char**>(instr
1337 + Instruction::kInstrSize));
Steve Block1e0659c2011-05-24 12:43:12 +01001338 // We have decoded 2 * Instruction::kInstrSize bytes.
1339 return 2 * Instruction::kInstrSize;
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001340 } else {
1341 Format(instr, "svc'cond 'svc");
1342 }
Steve Blocka7e24c12009-10-30 11:49:00 +00001343 } else {
Steve Blockd0582a62009-12-15 09:54:21 +00001344 DecodeTypeVFP(instr);
Steve Blocka7e24c12009-10-30 11:49:00 +00001345 }
Steve Block1e0659c2011-05-24 12:43:12 +01001346 return Instruction::kInstrSize;
Steve Blocka7e24c12009-10-30 11:49:00 +00001347}
1348
1349
Steve Block1e0659c2011-05-24 12:43:12 +01001350// void Decoder::DecodeTypeVFP(Instruction* instr)
Leon Clarkee46be812010-01-19 14:06:41 +00001351// vmov: Sn = Rt
1352// vmov: Rt = Sn
1353// vcvt: Dd = Sm
1354// vcvt: Sd = Dm
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001355// vcvt.f64.s32 Dd, Dd, #<fbits>
Steve Block44f0eee2011-05-26 01:26:41 +01001356// Dd = vabs(Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001357// Sd = vabs(Sm)
Steve Block44f0eee2011-05-26 01:26:41 +01001358// Dd = vneg(Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001359// Sd = vneg(Sm)
Leon Clarkee46be812010-01-19 14:06:41 +00001360// Dd = vadd(Dn, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001361// Sd = vadd(Sn, Sm)
Leon Clarkee46be812010-01-19 14:06:41 +00001362// Dd = vsub(Dn, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001363// Sd = vsub(Sn, Sm)
Leon Clarkee46be812010-01-19 14:06:41 +00001364// Dd = vmul(Dn, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001365// Sd = vmul(Sn, Sm)
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001366// Dd = vmla(Dn, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001367// Sd = vmla(Sn, Sm)
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001368// Dd = vmls(Dn, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001369// Sd = vmls(Sn, Sm)
Leon Clarkee46be812010-01-19 14:06:41 +00001370// Dd = vdiv(Dn, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001371// Sd = vdiv(Sn, Sm)
Steve Blockd0582a62009-12-15 09:54:21 +00001372// vcmp(Dd, Dm)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001373// vcmp(Sd, Sm)
1374// Dd = vsqrt(Dm)
1375// Sd = vsqrt(Sm)
Steve Block8defd9f2010-07-08 12:39:36 +01001376// vmrs
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08001377// vmsr
Steve Block1e0659c2011-05-24 12:43:12 +01001378void Decoder::DecodeTypeVFP(Instruction* instr) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001379 VERIFY((instr->TypeValue() == 7) && (instr->Bit(24) == 0x0) );
1380 VERIFY(instr->Bits(11, 9) == 0x5);
Steve Blockd0582a62009-12-15 09:54:21 +00001381
Steve Block6ded16b2010-05-10 14:33:55 +01001382 if (instr->Bit(4) == 0) {
Steve Block1e0659c2011-05-24 12:43:12 +01001383 if (instr->Opc1Value() == 0x7) {
Steve Block6ded16b2010-05-10 14:33:55 +01001384 // Other data processing instructions
Steve Block1e0659c2011-05-24 12:43:12 +01001385 if ((instr->Opc2Value() == 0x0) && (instr->Opc3Value() == 0x1)) {
Steve Block8defd9f2010-07-08 12:39:36 +01001386 // vmov register to register.
Steve Block1e0659c2011-05-24 12:43:12 +01001387 if (instr->SzValue() == 0x1) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001388 Format(instr, "vmov'cond.f64 'Dd, 'Dm");
Steve Block8defd9f2010-07-08 12:39:36 +01001389 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001390 Format(instr, "vmov'cond.f32 'Sd, 'Sm");
Steve Block8defd9f2010-07-08 12:39:36 +01001391 }
Steve Block1e0659c2011-05-24 12:43:12 +01001392 } else if ((instr->Opc2Value() == 0x0) && (instr->Opc3Value() == 0x3)) {
1393 // vabs
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001394 if (instr->SzValue() == 0x1) {
1395 Format(instr, "vabs'cond.f64 'Dd, 'Dm");
1396 } else {
1397 Format(instr, "vabs'cond.f32 'Sd, 'Sm");
1398 }
Steve Block44f0eee2011-05-26 01:26:41 +01001399 } else if ((instr->Opc2Value() == 0x1) && (instr->Opc3Value() == 0x1)) {
1400 // vneg
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001401 if (instr->SzValue() == 0x1) {
1402 Format(instr, "vneg'cond.f64 'Dd, 'Dm");
1403 } else {
1404 Format(instr, "vneg'cond.f32 'Sd, 'Sm");
1405 }
Steve Block1e0659c2011-05-24 12:43:12 +01001406 } else if ((instr->Opc2Value() == 0x7) && (instr->Opc3Value() == 0x3)) {
Steve Block6ded16b2010-05-10 14:33:55 +01001407 DecodeVCVTBetweenDoubleAndSingle(instr);
Steve Block1e0659c2011-05-24 12:43:12 +01001408 } else if ((instr->Opc2Value() == 0x8) && (instr->Opc3Value() & 0x1)) {
Steve Block6ded16b2010-05-10 14:33:55 +01001409 DecodeVCVTBetweenFloatingPointAndInteger(instr);
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001410 } else if ((instr->Opc2Value() == 0xA) && (instr->Opc3Value() == 0x3) &&
1411 (instr->Bit(8) == 1)) {
1412 // vcvt.f64.s32 Dd, Dd, #<fbits>
1413 int fraction_bits = 32 - ((instr->Bits(3, 0) << 1) | instr->Bit(5));
1414 Format(instr, "vcvt'cond.f64.s32 'Dd, 'Dd");
1415 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1416 ", #%d", fraction_bits);
Steve Block1e0659c2011-05-24 12:43:12 +01001417 } else if (((instr->Opc2Value() >> 1) == 0x6) &&
1418 (instr->Opc3Value() & 0x1)) {
Steve Block6ded16b2010-05-10 14:33:55 +01001419 DecodeVCVTBetweenFloatingPointAndInteger(instr);
Steve Block1e0659c2011-05-24 12:43:12 +01001420 } else if (((instr->Opc2Value() == 0x4) || (instr->Opc2Value() == 0x5)) &&
1421 (instr->Opc3Value() & 0x1)) {
Steve Block6ded16b2010-05-10 14:33:55 +01001422 DecodeVCMP(instr);
Steve Block1e0659c2011-05-24 12:43:12 +01001423 } else if (((instr->Opc2Value() == 0x1)) && (instr->Opc3Value() == 0x3)) {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001424 if (instr->SzValue() == 0x1) {
1425 Format(instr, "vsqrt'cond.f64 'Dd, 'Dm");
1426 } else {
1427 Format(instr, "vsqrt'cond.f32 'Sd, 'Sm");
1428 }
Steve Block1e0659c2011-05-24 12:43:12 +01001429 } else if (instr->Opc3Value() == 0x0) {
1430 if (instr->SzValue() == 0x1) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001431 Format(instr, "vmov'cond.f64 'Dd, 'd");
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001432 } else {
Ben Murdochda12d292016-06-02 14:46:10 +01001433 Format(instr, "vmov'cond.f32 'Sd, 'd");
Ben Murdoch3bec4d22010-07-22 14:51:16 +01001434 }
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001435 } else if (((instr->Opc2Value() == 0x6)) && instr->Opc3Value() == 0x3) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001436 // vrintz - round towards zero (truncate)
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001437 if (instr->SzValue() == 0x1) {
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001438 Format(instr, "vrintz'cond.f64.f64 'Dd, 'Dm");
1439 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001440 Format(instr, "vrintz'cond.f32.f32 'Sd, 'Sm");
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001441 }
Steve Block6ded16b2010-05-10 14:33:55 +01001442 } else {
1443 Unknown(instr); // Not used by V8.
1444 }
Steve Block1e0659c2011-05-24 12:43:12 +01001445 } else if (instr->Opc1Value() == 0x3) {
1446 if (instr->SzValue() == 0x1) {
1447 if (instr->Opc3Value() & 0x1) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001448 Format(instr, "vsub'cond.f64 'Dd, 'Dn, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001449 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001450 Format(instr, "vadd'cond.f64 'Dd, 'Dn, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001451 }
1452 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001453 if (instr->Opc3Value() & 0x1) {
1454 Format(instr, "vsub'cond.f32 'Sd, 'Sn, 'Sm");
1455 } else {
1456 Format(instr, "vadd'cond.f32 'Sd, 'Sn, 'Sm");
1457 }
Steve Block6ded16b2010-05-10 14:33:55 +01001458 }
Steve Block1e0659c2011-05-24 12:43:12 +01001459 } else if ((instr->Opc1Value() == 0x2) && !(instr->Opc3Value() & 0x1)) {
1460 if (instr->SzValue() == 0x1) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001461 Format(instr, "vmul'cond.f64 'Dd, 'Dn, 'Dm");
1462 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001463 Format(instr, "vmul'cond.f32 'Sd, 'Sn, 'Sm");
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001464 }
1465 } else if ((instr->Opc1Value() == 0x0) && !(instr->Opc3Value() & 0x1)) {
1466 if (instr->SzValue() == 0x1) {
1467 Format(instr, "vmla'cond.f64 'Dd, 'Dn, 'Dm");
1468 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001469 Format(instr, "vmla'cond.f32 'Sd, 'Sn, 'Sm");
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001470 }
1471 } else if ((instr->Opc1Value() == 0x0) && (instr->Opc3Value() & 0x1)) {
1472 if (instr->SzValue() == 0x1) {
1473 Format(instr, "vmls'cond.f64 'Dd, 'Dn, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001474 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001475 Format(instr, "vmls'cond.f32 'Sd, 'Sn, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001476 }
Steve Block1e0659c2011-05-24 12:43:12 +01001477 } else if ((instr->Opc1Value() == 0x4) && !(instr->Opc3Value() & 0x1)) {
1478 if (instr->SzValue() == 0x1) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001479 Format(instr, "vdiv'cond.f64 'Dd, 'Dn, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001480 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001481 Format(instr, "vdiv'cond.f32 'Sd, 'Sn, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001482 }
Steve Blockd0582a62009-12-15 09:54:21 +00001483 } else {
1484 Unknown(instr); // Not used by V8.
1485 }
1486 } else {
Steve Block1e0659c2011-05-24 12:43:12 +01001487 if ((instr->VCValue() == 0x0) &&
1488 (instr->VAValue() == 0x0)) {
Steve Block6ded16b2010-05-10 14:33:55 +01001489 DecodeVMOVBetweenCoreAndSinglePrecisionRegisters(instr);
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001490 } else if ((instr->VLValue() == 0x0) &&
1491 (instr->VCValue() == 0x1) &&
1492 (instr->Bit(23) == 0x0)) {
1493 if (instr->Bit(21) == 0x0) {
1494 Format(instr, "vmov'cond.32 'Dd[0], 'rt");
1495 } else {
1496 Format(instr, "vmov'cond.32 'Dd[1], 'rt");
1497 }
1498 } else if ((instr->VLValue() == 0x1) &&
1499 (instr->VCValue() == 0x1) &&
1500 (instr->Bit(23) == 0x0)) {
1501 if (instr->Bit(21) == 0x0) {
1502 Format(instr, "vmov'cond.32 'rt, 'Dd[0]");
1503 } else {
1504 Format(instr, "vmov'cond.32 'rt, 'Dd[1]");
1505 }
Steve Block1e0659c2011-05-24 12:43:12 +01001506 } else if ((instr->VCValue() == 0x0) &&
1507 (instr->VAValue() == 0x7) &&
Steve Block6ded16b2010-05-10 14:33:55 +01001508 (instr->Bits(19, 16) == 0x1)) {
Steve Block1e0659c2011-05-24 12:43:12 +01001509 if (instr->VLValue() == 0) {
Shimeng (Simon) Wang8a31eba2010-12-06 19:01:33 -08001510 if (instr->Bits(15, 12) == 0xF) {
1511 Format(instr, "vmsr'cond FPSCR, APSR");
1512 } else {
1513 Format(instr, "vmsr'cond FPSCR, 'rt");
1514 }
1515 } else {
1516 if (instr->Bits(15, 12) == 0xF) {
1517 Format(instr, "vmrs'cond APSR, FPSCR");
1518 } else {
1519 Format(instr, "vmrs'cond 'rt, FPSCR");
1520 }
1521 }
Steve Blockd0582a62009-12-15 09:54:21 +00001522 }
1523 }
1524}
1525
1526
Steve Block1e0659c2011-05-24 12:43:12 +01001527void Decoder::DecodeVMOVBetweenCoreAndSinglePrecisionRegisters(
1528 Instruction* instr) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001529 VERIFY((instr->Bit(4) == 1) && (instr->VCValue() == 0x0) &&
Steve Block1e0659c2011-05-24 12:43:12 +01001530 (instr->VAValue() == 0x0));
Steve Block6ded16b2010-05-10 14:33:55 +01001531
Steve Block1e0659c2011-05-24 12:43:12 +01001532 bool to_arm_register = (instr->VLValue() == 0x1);
Steve Block6ded16b2010-05-10 14:33:55 +01001533
1534 if (to_arm_register) {
1535 Format(instr, "vmov'cond 'rt, 'Sn");
1536 } else {
1537 Format(instr, "vmov'cond 'Sn, 'rt");
1538 }
1539}
1540
1541
Steve Block1e0659c2011-05-24 12:43:12 +01001542void Decoder::DecodeVCMP(Instruction* instr) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001543 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7));
1544 VERIFY(((instr->Opc2Value() == 0x4) || (instr->Opc2Value() == 0x5)) &&
Steve Block1e0659c2011-05-24 12:43:12 +01001545 (instr->Opc3Value() & 0x1));
Steve Block6ded16b2010-05-10 14:33:55 +01001546
1547 // Comparison.
Steve Block1e0659c2011-05-24 12:43:12 +01001548 bool dp_operation = (instr->SzValue() == 1);
Steve Block6ded16b2010-05-10 14:33:55 +01001549 bool raise_exception_for_qnan = (instr->Bit(7) == 0x1);
1550
1551 if (dp_operation && !raise_exception_for_qnan) {
Steve Block1e0659c2011-05-24 12:43:12 +01001552 if (instr->Opc2Value() == 0x4) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001553 Format(instr, "vcmp'cond.f64 'Dd, 'Dm");
Steve Block1e0659c2011-05-24 12:43:12 +01001554 } else if (instr->Opc2Value() == 0x5) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001555 Format(instr, "vcmp'cond.f64 'Dd, #0.0");
Iain Merrick75681382010-08-19 15:07:18 +01001556 } else {
1557 Unknown(instr); // invalid
1558 }
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001559 } else if (!raise_exception_for_qnan) {
1560 if (instr->Opc2Value() == 0x4) {
1561 Format(instr, "vcmp'cond.f32 'Sd, 'Sm");
1562 } else if (instr->Opc2Value() == 0x5) {
1563 Format(instr, "vcmp'cond.f32 'Sd, #0.0");
1564 } else {
1565 Unknown(instr); // invalid
1566 }
Steve Block6ded16b2010-05-10 14:33:55 +01001567 } else {
1568 Unknown(instr); // Not used by V8.
1569 }
1570}
1571
1572
Steve Block1e0659c2011-05-24 12:43:12 +01001573void Decoder::DecodeVCVTBetweenDoubleAndSingle(Instruction* instr) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001574 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7));
1575 VERIFY((instr->Opc2Value() == 0x7) && (instr->Opc3Value() == 0x3));
Steve Block6ded16b2010-05-10 14:33:55 +01001576
Steve Block1e0659c2011-05-24 12:43:12 +01001577 bool double_to_single = (instr->SzValue() == 1);
Steve Block6ded16b2010-05-10 14:33:55 +01001578
1579 if (double_to_single) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001580 Format(instr, "vcvt'cond.f32.f64 'Sd, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001581 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001582 Format(instr, "vcvt'cond.f64.f32 'Dd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001583 }
1584}
1585
1586
Steve Block1e0659c2011-05-24 12:43:12 +01001587void Decoder::DecodeVCVTBetweenFloatingPointAndInteger(Instruction* instr) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001588 VERIFY((instr->Bit(4) == 0) && (instr->Opc1Value() == 0x7));
1589 VERIFY(((instr->Opc2Value() == 0x8) && (instr->Opc3Value() & 0x1)) ||
Steve Block1e0659c2011-05-24 12:43:12 +01001590 (((instr->Opc2Value() >> 1) == 0x6) && (instr->Opc3Value() & 0x1)));
Steve Block6ded16b2010-05-10 14:33:55 +01001591
1592 bool to_integer = (instr->Bit(18) == 1);
Steve Block1e0659c2011-05-24 12:43:12 +01001593 bool dp_operation = (instr->SzValue() == 1);
Steve Block6ded16b2010-05-10 14:33:55 +01001594 if (to_integer) {
1595 bool unsigned_integer = (instr->Bit(16) == 0);
1596
1597 if (dp_operation) {
1598 if (unsigned_integer) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001599 Format(instr, "vcvt'cond.u32.f64 'Sd, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001600 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001601 Format(instr, "vcvt'cond.s32.f64 'Sd, 'Dm");
Steve Block6ded16b2010-05-10 14:33:55 +01001602 }
1603 } else {
1604 if (unsigned_integer) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001605 Format(instr, "vcvt'cond.u32.f32 'Sd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001606 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001607 Format(instr, "vcvt'cond.s32.f32 'Sd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001608 }
1609 }
1610 } else {
1611 bool unsigned_integer = (instr->Bit(7) == 0);
1612
1613 if (dp_operation) {
1614 if (unsigned_integer) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001615 Format(instr, "vcvt'cond.f64.u32 'Dd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001616 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001617 Format(instr, "vcvt'cond.f64.s32 'Dd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001618 }
1619 } else {
1620 if (unsigned_integer) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001621 Format(instr, "vcvt'cond.f32.u32 'Sd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001622 } else {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001623 Format(instr, "vcvt'cond.f32.s32 'Sd, 'Sm");
Steve Block6ded16b2010-05-10 14:33:55 +01001624 }
1625 }
1626 }
1627}
1628
1629
Steve Blockd0582a62009-12-15 09:54:21 +00001630// Decode Type 6 coprocessor instructions.
Leon Clarkee46be812010-01-19 14:06:41 +00001631// Dm = vmov(Rt, Rt2)
1632// <Rt, Rt2> = vmov(Dm)
Leon Clarked91b9f72010-01-27 17:25:45 +00001633// Ddst = MEM(Rbase + 4*offset).
1634// MEM(Rbase + 4*offset) = Dsrc.
Steve Block1e0659c2011-05-24 12:43:12 +01001635void Decoder::DecodeType6CoprocessorIns(Instruction* instr) {
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001636 VERIFY(instr->TypeValue() == 6);
Steve Blockd0582a62009-12-15 09:54:21 +00001637
Steve Block1e0659c2011-05-24 12:43:12 +01001638 if (instr->CoprocessorValue() == 0xA) {
1639 switch (instr->OpcodeValue()) {
Steve Block6ded16b2010-05-10 14:33:55 +01001640 case 0x8:
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001641 case 0xA:
Steve Block6ded16b2010-05-10 14:33:55 +01001642 if (instr->HasL()) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001643 Format(instr, "vldr'cond 'Sd, ['rn - 4*'imm08@00]");
Steve Block6ded16b2010-05-10 14:33:55 +01001644 } else {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001645 Format(instr, "vstr'cond 'Sd, ['rn - 4*'imm08@00]");
Steve Block6ded16b2010-05-10 14:33:55 +01001646 }
1647 break;
1648 case 0xC:
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001649 case 0xE:
Steve Block6ded16b2010-05-10 14:33:55 +01001650 if (instr->HasL()) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001651 Format(instr, "vldr'cond 'Sd, ['rn + 4*'imm08@00]");
Steve Block6ded16b2010-05-10 14:33:55 +01001652 } else {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001653 Format(instr, "vstr'cond 'Sd, ['rn + 4*'imm08@00]");
Steve Block6ded16b2010-05-10 14:33:55 +01001654 }
1655 break;
Ben Murdoch8b112d22011-06-08 16:22:53 +01001656 case 0x4:
1657 case 0x5:
1658 case 0x6:
1659 case 0x7:
1660 case 0x9:
1661 case 0xB: {
1662 bool to_vfp_register = (instr->VLValue() == 0x1);
1663 if (to_vfp_register) {
1664 Format(instr, "vldm'cond'pu 'rn'w, {'Sd-'Sd+}");
1665 } else {
1666 Format(instr, "vstm'cond'pu 'rn'w, {'Sd-'Sd+}");
1667 }
1668 break;
1669 }
Steve Block6ded16b2010-05-10 14:33:55 +01001670 default:
1671 Unknown(instr); // Not used by V8.
Steve Block6ded16b2010-05-10 14:33:55 +01001672 }
Steve Block1e0659c2011-05-24 12:43:12 +01001673 } else if (instr->CoprocessorValue() == 0xB) {
1674 switch (instr->OpcodeValue()) {
Leon Clarked91b9f72010-01-27 17:25:45 +00001675 case 0x2:
1676 // Load and store double to two GP registers
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001677 if (instr->Bits(7, 6) != 0 || instr->Bit(4) != 1) {
Leon Clarked91b9f72010-01-27 17:25:45 +00001678 Unknown(instr); // Not used by V8.
1679 } else if (instr->HasL()) {
1680 Format(instr, "vmov'cond 'rt, 'rn, 'Dm");
1681 } else {
1682 Format(instr, "vmov'cond 'Dm, 'rt, 'rn");
1683 }
1684 break;
1685 case 0x8:
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001686 case 0xA:
Leon Clarked91b9f72010-01-27 17:25:45 +00001687 if (instr->HasL()) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001688 Format(instr, "vldr'cond 'Dd, ['rn - 4*'imm08@00]");
Leon Clarked91b9f72010-01-27 17:25:45 +00001689 } else {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001690 Format(instr, "vstr'cond 'Dd, ['rn - 4*'imm08@00]");
Leon Clarked91b9f72010-01-27 17:25:45 +00001691 }
1692 break;
1693 case 0xC:
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001694 case 0xE:
Leon Clarked91b9f72010-01-27 17:25:45 +00001695 if (instr->HasL()) {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001696 Format(instr, "vldr'cond 'Dd, ['rn + 4*'imm08@00]");
Leon Clarked91b9f72010-01-27 17:25:45 +00001697 } else {
Kristian Monsen80d68ea2010-09-08 11:05:35 +01001698 Format(instr, "vstr'cond 'Dd, ['rn + 4*'imm08@00]");
Leon Clarked91b9f72010-01-27 17:25:45 +00001699 }
1700 break;
Ben Murdoch8b112d22011-06-08 16:22:53 +01001701 case 0x4:
1702 case 0x5:
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001703 case 0x6:
1704 case 0x7:
1705 case 0x9:
1706 case 0xB: {
Ben Murdoch8b112d22011-06-08 16:22:53 +01001707 bool to_vfp_register = (instr->VLValue() == 0x1);
1708 if (to_vfp_register) {
1709 Format(instr, "vldm'cond'pu 'rn'w, {'Dd-'Dd+}");
1710 } else {
1711 Format(instr, "vstm'cond'pu 'rn'w, {'Dd-'Dd+}");
1712 }
1713 break;
1714 }
Leon Clarked91b9f72010-01-27 17:25:45 +00001715 default:
1716 Unknown(instr); // Not used by V8.
Leon Clarked91b9f72010-01-27 17:25:45 +00001717 }
Steve Block6ded16b2010-05-10 14:33:55 +01001718 } else {
Steve Block44f0eee2011-05-26 01:26:41 +01001719 Unknown(instr); // Not used by V8.
1720 }
1721}
1722
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001723
Ben Murdoch097c5b22016-05-18 11:27:45 +01001724static const char* const barrier_option_names[] = {
1725 "invalid", "oshld", "oshst", "osh", "invalid", "nshld", "nshst", "nsh",
1726 "invalid", "ishld", "ishst", "ish", "invalid", "ld", "st", "sy",
1727};
1728
1729
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001730void Decoder::DecodeSpecialCondition(Instruction* instr) {
1731 switch (instr->SpecialValue()) {
1732 case 5:
1733 if ((instr->Bits(18, 16) == 0) && (instr->Bits(11, 6) == 0x28) &&
1734 (instr->Bit(4) == 1)) {
1735 // vmovl signed
1736 if ((instr->VdValue() & 1) != 0) Unknown(instr);
1737 int Vd = (instr->Bit(22) << 3) | (instr->VdValue() >> 1);
1738 int Vm = (instr->Bit(5) << 4) | instr->VmValue();
1739 int imm3 = instr->Bits(21, 19);
1740 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1741 "vmovl.s%d q%d, d%d", imm3*8, Vd, Vm);
1742 } else {
1743 Unknown(instr);
1744 }
1745 break;
1746 case 7:
1747 if ((instr->Bits(18, 16) == 0) && (instr->Bits(11, 6) == 0x28) &&
1748 (instr->Bit(4) == 1)) {
1749 // vmovl unsigned
1750 if ((instr->VdValue() & 1) != 0) Unknown(instr);
1751 int Vd = (instr->Bit(22) << 3) | (instr->VdValue() >> 1);
1752 int Vm = (instr->Bit(5) << 4) | instr->VmValue();
1753 int imm3 = instr->Bits(21, 19);
1754 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1755 "vmovl.u%d q%d, d%d", imm3*8, Vd, Vm);
1756 } else {
1757 Unknown(instr);
1758 }
1759 break;
1760 case 8:
1761 if (instr->Bits(21, 20) == 0) {
1762 // vst1
1763 int Vd = (instr->Bit(22) << 4) | instr->VdValue();
1764 int Rn = instr->VnValue();
1765 int type = instr->Bits(11, 8);
1766 int size = instr->Bits(7, 6);
1767 int align = instr->Bits(5, 4);
1768 int Rm = instr->VmValue();
1769 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1770 "vst1.%d ", (1 << size) << 3);
1771 FormatNeonList(Vd, type);
1772 Print(", ");
1773 FormatNeonMemory(Rn, align, Rm);
1774 } else if (instr->Bits(21, 20) == 2) {
1775 // vld1
1776 int Vd = (instr->Bit(22) << 4) | instr->VdValue();
1777 int Rn = instr->VnValue();
1778 int type = instr->Bits(11, 8);
1779 int size = instr->Bits(7, 6);
1780 int align = instr->Bits(5, 4);
1781 int Rm = instr->VmValue();
1782 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1783 "vld1.%d ", (1 << size) << 3);
1784 FormatNeonList(Vd, type);
1785 Print(", ");
1786 FormatNeonMemory(Rn, align, Rm);
1787 } else {
1788 Unknown(instr);
1789 }
1790 break;
1791 case 0xA:
1792 case 0xB:
1793 if ((instr->Bits(22, 20) == 5) && (instr->Bits(15, 12) == 0xf)) {
1794 int Rn = instr->Bits(19, 16);
1795 int offset = instr->Bits(11, 0);
1796 if (offset == 0) {
1797 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1798 "pld [r%d]", Rn);
1799 } else if (instr->Bit(23) == 0) {
1800 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1801 "pld [r%d, #-%d]", Rn, offset);
1802 } else {
1803 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1804 "pld [r%d, #+%d]", Rn, offset);
1805 }
Ben Murdoch097c5b22016-05-18 11:27:45 +01001806 } else if (instr->SpecialValue() == 0xA && instr->Bits(22, 20) == 7) {
1807 int option = instr->Bits(3, 0);
1808 switch (instr->Bits(7, 4)) {
1809 case 4:
1810 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1811 "dsb %s", barrier_option_names[option]);
1812 break;
1813 case 5:
1814 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1815 "dmb %s", barrier_option_names[option]);
1816 break;
1817 case 6:
1818 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1819 "isb %s", barrier_option_names[option]);
1820 break;
1821 default:
1822 Unknown(instr);
1823 }
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001824 } else {
1825 Unknown(instr);
1826 }
1827 break;
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001828 case 0x1D:
1829 if (instr->Opc1Value() == 0x7 && instr->Bits(19, 18) == 0x2 &&
1830 instr->Bits(11, 9) == 0x5 && instr->Bits(7, 6) == 0x1 &&
1831 instr->Bit(4) == 0x0) {
1832 // VRINTA, VRINTN, VRINTP, VRINTM (floating-point)
1833 bool dp_operation = (instr->SzValue() == 1);
1834 int rounding_mode = instr->Bits(17, 16);
1835 switch (rounding_mode) {
1836 case 0x0:
1837 if (dp_operation) {
1838 Format(instr, "vrinta.f64.f64 'Dd, 'Dm");
1839 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001840 Format(instr, "vrinta.f32.f32 'Sd, 'Sm");
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001841 }
1842 break;
1843 case 0x1:
1844 if (dp_operation) {
1845 Format(instr, "vrintn.f64.f64 'Dd, 'Dm");
1846 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001847 Format(instr, "vrintn.f32.f32 'Sd, 'Sm");
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001848 }
1849 break;
1850 case 0x2:
1851 if (dp_operation) {
1852 Format(instr, "vrintp.f64.f64 'Dd, 'Dm");
1853 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001854 Format(instr, "vrintp.f32.f32 'Sd, 'Sm");
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001855 }
1856 break;
1857 case 0x3:
1858 if (dp_operation) {
1859 Format(instr, "vrintm.f64.f64 'Dd, 'Dm");
1860 } else {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001861 Format(instr, "vrintm.f32.f32 'Sd, 'Sm");
Emily Bernierd0a1eb72015-03-24 16:35:39 -04001862 }
1863 break;
1864 default:
1865 UNREACHABLE(); // Case analysis is exhaustive.
1866 break;
1867 }
1868 } else {
1869 Unknown(instr);
1870 }
1871 break;
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001872 default:
1873 Unknown(instr);
1874 break;
1875 }
1876}
1877
Ben Murdoch3ef787d2012-04-12 10:51:47 +01001878#undef VERIFIY
Steve Block44f0eee2011-05-26 01:26:41 +01001879
1880bool Decoder::IsConstantPoolAt(byte* instr_ptr) {
1881 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr));
1882 return (instruction_bits & kConstantPoolMarkerMask) == kConstantPoolMarker;
1883}
1884
1885
1886int Decoder::ConstantPoolSizeAt(byte* instr_ptr) {
1887 if (IsConstantPoolAt(instr_ptr)) {
1888 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr));
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001889 return DecodeConstantPoolLength(instruction_bits);
Steve Block44f0eee2011-05-26 01:26:41 +01001890 } else {
1891 return -1;
Steve Blockd0582a62009-12-15 09:54:21 +00001892 }
1893}
1894
1895
Steve Blocka7e24c12009-10-30 11:49:00 +00001896// Disassemble the instruction at *instr_ptr into the output buffer.
1897int Decoder::InstructionDecode(byte* instr_ptr) {
Steve Block1e0659c2011-05-24 12:43:12 +01001898 Instruction* instr = Instruction::At(instr_ptr);
Steve Blocka7e24c12009-10-30 11:49:00 +00001899 // Print raw instruction bytes.
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001900 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1901 "%08x ",
1902 instr->InstructionBits());
Steve Block1e0659c2011-05-24 12:43:12 +01001903 if (instr->ConditionField() == kSpecialCondition) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001904 DecodeSpecialCondition(instr);
Steve Block44f0eee2011-05-26 01:26:41 +01001905 return Instruction::kInstrSize;
1906 }
1907 int instruction_bits = *(reinterpret_cast<int*>(instr_ptr));
1908 if ((instruction_bits & kConstantPoolMarkerMask) == kConstantPoolMarker) {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001909 out_buffer_pos_ += SNPrintF(out_buffer_ + out_buffer_pos_,
1910 "constant pool begin (length %d)",
1911 DecodeConstantPoolLength(instruction_bits));
Steve Block1e0659c2011-05-24 12:43:12 +01001912 return Instruction::kInstrSize;
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001913 } else if (instruction_bits == kCodeAgeJumpInstruction) {
1914 // The code age prologue has a constant immediatly following the jump
1915 // instruction.
1916 Instruction* target = Instruction::At(instr_ptr + Instruction::kInstrSize);
1917 DecodeType2(instr);
1918 SNPrintF(out_buffer_ + out_buffer_pos_,
1919 " (0x%08x)", target->InstructionBits());
1920 return 2 * Instruction::kInstrSize;
Steve Blocka7e24c12009-10-30 11:49:00 +00001921 }
Steve Block1e0659c2011-05-24 12:43:12 +01001922 switch (instr->TypeValue()) {
Steve Blocka7e24c12009-10-30 11:49:00 +00001923 case 0:
1924 case 1: {
1925 DecodeType01(instr);
1926 break;
1927 }
1928 case 2: {
1929 DecodeType2(instr);
1930 break;
1931 }
1932 case 3: {
1933 DecodeType3(instr);
1934 break;
1935 }
1936 case 4: {
1937 DecodeType4(instr);
1938 break;
1939 }
1940 case 5: {
1941 DecodeType5(instr);
1942 break;
1943 }
1944 case 6: {
1945 DecodeType6(instr);
1946 break;
1947 }
1948 case 7: {
Teng-Hui Zhu3e5fa292010-11-09 16:16:48 -08001949 return DecodeType7(instr);
Steve Blocka7e24c12009-10-30 11:49:00 +00001950 }
1951 default: {
1952 // The type field is 3-bits in the ARM encoding.
1953 UNREACHABLE();
1954 break;
1955 }
1956 }
Steve Block1e0659c2011-05-24 12:43:12 +01001957 return Instruction::kInstrSize;
Steve Blocka7e24c12009-10-30 11:49:00 +00001958}
1959
1960
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001961} // namespace internal
1962} // namespace v8
Steve Blocka7e24c12009-10-30 11:49:00 +00001963
1964
1965//------------------------------------------------------------------------------
1966
1967namespace disasm {
1968
Steve Blocka7e24c12009-10-30 11:49:00 +00001969
1970const char* NameConverter::NameOfAddress(byte* addr) const {
Ben Murdochb8a8cc12014-11-26 15:28:44 +00001971 v8::internal::SNPrintF(tmp_buffer_, "%p", addr);
Steve Block44f0eee2011-05-26 01:26:41 +01001972 return tmp_buffer_.start();
Steve Blocka7e24c12009-10-30 11:49:00 +00001973}
1974
1975
1976const char* NameConverter::NameOfConstant(byte* addr) const {
1977 return NameOfAddress(addr);
1978}
1979
1980
1981const char* NameConverter::NameOfCPURegister(int reg) const {
Ben Murdoch4a90d5f2016-03-22 12:00:34 +00001982 return v8::internal::Register::from_code(reg).ToString();
Steve Blocka7e24c12009-10-30 11:49:00 +00001983}
1984
1985
1986const char* NameConverter::NameOfByteCPURegister(int reg) const {
1987 UNREACHABLE(); // ARM does not have the concept of a byte register
1988 return "nobytereg";
1989}
1990
1991
1992const char* NameConverter::NameOfXMMRegister(int reg) const {
1993 UNREACHABLE(); // ARM does not have any XMM registers
1994 return "noxmmreg";
1995}
1996
1997
1998const char* NameConverter::NameInCode(byte* addr) const {
1999 // The default name converter is called for unknown code. So we will not try
2000 // to access any memory.
2001 return "";
2002}
2003
2004
2005//------------------------------------------------------------------------------
2006
2007Disassembler::Disassembler(const NameConverter& converter)
2008 : converter_(converter) {}
2009
2010
2011Disassembler::~Disassembler() {}
2012
2013
2014int Disassembler::InstructionDecode(v8::internal::Vector<char> buffer,
2015 byte* instruction) {
Steve Block1e0659c2011-05-24 12:43:12 +01002016 v8::internal::Decoder d(converter_, buffer);
Steve Blocka7e24c12009-10-30 11:49:00 +00002017 return d.InstructionDecode(instruction);
2018}
2019
2020
2021int Disassembler::ConstantPoolSizeAt(byte* instruction) {
Steve Block44f0eee2011-05-26 01:26:41 +01002022 return v8::internal::Decoder::ConstantPoolSizeAt(instruction);
Steve Blocka7e24c12009-10-30 11:49:00 +00002023}
2024
2025
2026void Disassembler::Disassemble(FILE* f, byte* begin, byte* end) {
2027 NameConverter converter;
2028 Disassembler d(converter);
2029 for (byte* pc = begin; pc < end;) {
2030 v8::internal::EmbeddedVector<char, 128> buffer;
2031 buffer[0] = '\0';
2032 byte* prev_pc = pc;
2033 pc += d.InstructionDecode(buffer, pc);
Ben Murdochb8a8cc12014-11-26 15:28:44 +00002034 v8::internal::PrintF(
2035 f, "%p %08x %s\n",
2036 prev_pc, *reinterpret_cast<int32_t*>(prev_pc), buffer.start());
Steve Blocka7e24c12009-10-30 11:49:00 +00002037 }
2038}
2039
2040
2041} // namespace disasm
Leon Clarkef7060e22010-06-03 12:02:55 +01002042
2043#endif // V8_TARGET_ARCH_ARM