blob: b2267e557326527b561a6c3c1e212c486025de0e [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
2 * Copyright (C) 2011 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 */
Carl Shapiro12eb78e2011-06-24 14:51:06 -070016
Sebastien Hertz807a2562013-04-15 09:33:39 +020017#include "dex_instruction-inl.h"
Carl Shapiro12eb78e2011-06-24 14:51:06 -070018
Ian Rogersb574c182014-01-23 19:51:19 -080019#include <inttypes.h>
20
21#include <iomanip>
Ian Rogersc7dd2952014-10-21 23:31:19 -070022#include <sstream>
Ian Rogersb574c182014-01-23 19:51:19 -080023
Andreas Gampe46ee31b2016-12-14 10:11:49 -080024#include "android-base/stringprintf.h"
25
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070026#include "dex_file-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080027#include "utils.h"
Ian Rogersd81871c2011-10-03 13:57:23 -070028
Carl Shapiro12eb78e2011-06-24 14:51:06 -070029namespace art {
30
Andreas Gampe46ee31b2016-12-14 10:11:49 -080031using android::base::StringPrintf;
32
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070033const char* const Instruction::kInstructionNames[] = {
Andreas Gampeae08cc22017-05-15 10:23:02 -070034#define INSTRUCTION_NAME(o, c, pname, f, i, a, e, v) pname,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070035#include "dex_instruction_list.h"
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070036 DEX_INSTRUCTION_LIST(INSTRUCTION_NAME)
37#undef DEX_INSTRUCTION_LIST
38#undef INSTRUCTION_NAME
39};
40
Andreas Gampeb3937e32017-05-15 15:11:56 -070041static_assert(sizeof(Instruction::InstructionDescriptor) == 8u, "Unexpected descriptor size");
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070042
Andreas Gampeb3937e32017-05-15 15:11:56 -070043static constexpr int8_t InstructionSizeInCodeUnitsByOpcode(Instruction::Code opcode,
44 Instruction::Format format) {
45 if (opcode == Instruction::Code::NOP) {
46 return -1;
47 } else if ((format >= Instruction::Format::k10x) && (format <= Instruction::Format::k10t)) {
48 return 1;
49 } else if ((format >= Instruction::Format::k20t) && (format <= Instruction::Format::k22c)) {
50 return 2;
51 } else if ((format >= Instruction::Format::k32x) && (format <= Instruction::Format::k3rc)) {
52 return 3;
53 } else if ((format >= Instruction::Format::k45cc) && (format <= Instruction::Format::k4rcc)) {
54 return 4;
55 } else if (format == Instruction::Format::k51l) {
56 return 5;
57 } else {
58 return -1;
59 }
60}
Aart Bikb1f37532015-06-29 11:03:55 -070061
Andreas Gampeb3937e32017-05-15 15:11:56 -070062Instruction::InstructionDescriptor const Instruction::kInstructionDescriptors[] = {
63#define INSTRUCTION_DESCR(opcode, c, p, format, index, flags, eflags, vflags) \
64 { vflags, \
65 format, \
66 index, \
67 flags, \
68 InstructionSizeInCodeUnitsByOpcode((c), (format)), \
69 },
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070070#include "dex_instruction_list.h"
Andreas Gampeb3937e32017-05-15 15:11:56 -070071 DEX_INSTRUCTION_LIST(INSTRUCTION_DESCR)
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070072#undef DEX_INSTRUCTION_LIST
Andreas Gampeb3937e32017-05-15 15:11:56 -070073#undef INSTRUCTION_DESCR
Ian Rogersa75a0132012-09-28 11:41:42 -070074};
75
Dragos Sbirlea39f99272013-06-25 13:17:36 -070076int32_t Instruction::GetTargetOffset() const {
77 switch (FormatOf(Opcode())) {
78 // Cases for conditional branches follow.
79 case k22t: return VRegC_22t();
80 case k21t: return VRegB_21t();
81 // Cases for unconditional branches follow.
82 case k10t: return VRegA_10t();
83 case k20t: return VRegA_20t();
84 case k30t: return VRegA_30t();
85 default: LOG(FATAL) << "Tried to access the branch offset of an instruction " << Name() <<
86 " which does not have a target operand.";
87 }
88 return 0;
89}
90
91bool Instruction::CanFlowThrough() const {
92 const uint16_t* insns = reinterpret_cast<const uint16_t*>(this);
93 uint16_t insn = *insns;
94 Code opcode = static_cast<Code>(insn & 0xFF);
95 return FlagsOf(opcode) & Instruction::kContinue;
96}
97
Ian Rogersa75a0132012-09-28 11:41:42 -070098size_t Instruction::SizeInCodeUnitsComplexOpcode() const {
Carl Shapiro12eb78e2011-06-24 14:51:06 -070099 const uint16_t* insns = reinterpret_cast<const uint16_t*>(this);
Ian Rogersa75a0132012-09-28 11:41:42 -0700100 // Handle special NOP encoded variable length sequences.
101 switch (*insns) {
102 case kPackedSwitchSignature:
103 return (4 + insns[1] * 2);
104 case kSparseSwitchSignature:
105 return (2 + insns[1] * 4);
106 case kArrayDataSignature: {
107 uint16_t element_size = insns[1];
108 uint32_t length = insns[2] | (((uint32_t)insns[3]) << 16);
109 // The plus 1 is to round up for odd size and width.
110 return (4 + (element_size * length + 1) / 2);
Carl Shapiroe4c1ce42011-07-09 02:31:57 -0700111 }
Ian Rogersa75a0132012-09-28 11:41:42 -0700112 default:
113 if ((*insns & 0xFF) == 0) {
114 return 1; // NOP.
115 } else {
Ian Rogersfc787ec2014-10-09 21:56:44 -0700116 LOG(FATAL) << "Unreachable: " << DumpString(nullptr);
Ian Rogers2c4257b2014-10-24 14:20:06 -0700117 UNREACHABLE();
Ian Rogersa75a0132012-09-28 11:41:42 -0700118 }
Carl Shapiroe4c1ce42011-07-09 02:31:57 -0700119 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700120}
121
Ian Rogers2c8a8572011-10-24 17:11:36 -0700122std::string Instruction::DumpHex(size_t code_units) const {
Ian Rogersd81871c2011-10-03 13:57:23 -0700123 size_t inst_length = SizeInCodeUnits();
124 if (inst_length > code_units) {
125 inst_length = code_units;
126 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700127 std::ostringstream os;
Ian Rogersd81871c2011-10-03 13:57:23 -0700128 const uint16_t* insn = reinterpret_cast<const uint16_t*>(this);
129 for (size_t i = 0; i < inst_length; i++) {
Ian Rogers2c8a8572011-10-24 17:11:36 -0700130 os << StringPrintf("0x%04x", insn[i]) << " ";
Ian Rogersd81871c2011-10-03 13:57:23 -0700131 }
132 for (size_t i = inst_length; i < code_units; i++) {
133 os << " ";
134 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700135 return os.str();
Ian Rogersd81871c2011-10-03 13:57:23 -0700136}
137
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800138std::string Instruction::DumpHexLE(size_t instr_code_units) const {
139 size_t inst_length = SizeInCodeUnits();
140 if (inst_length > instr_code_units) {
141 inst_length = instr_code_units;
142 }
143 std::ostringstream os;
144 const uint16_t* insn = reinterpret_cast<const uint16_t*>(this);
145 for (size_t i = 0; i < inst_length; i++) {
Andreas Gampe4f0be4d2015-02-27 22:16:14 -0800146 os << StringPrintf("%02x%02x", static_cast<uint8_t>(insn[i] & 0x00FF),
147 static_cast<uint8_t>((insn[i] & 0xFF00) >> 8)) << " ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800148 }
149 for (size_t i = inst_length; i < instr_code_units; i++) {
Andreas Gampe4f0be4d2015-02-27 22:16:14 -0800150 os << " ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800151 }
152 return os.str();
153}
154
Ian Rogers2c8a8572011-10-24 17:11:36 -0700155std::string Instruction::DumpString(const DexFile* file) const {
Ian Rogers2c8a8572011-10-24 17:11:36 -0700156 std::ostringstream os;
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200157 const char* opcode = kInstructionNames[Opcode()];
Elliott Hughesadb8c672012-03-06 16:49:32 -0800158 switch (FormatOf(Opcode())) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800159 case k10x: os << opcode; break;
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200160 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break;
161 case k11n: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_11n(), VRegB_11n()); break;
162 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break;
163 case k10t: os << StringPrintf("%s %+d", opcode, VRegA_10t()); break;
164 case k20t: os << StringPrintf("%s %+d", opcode, VRegA_20t()); break;
165 case k22x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_22x(), VRegB_22x()); break;
166 case k21t: os << StringPrintf("%s v%d, %+d", opcode, VRegA_21t(), VRegB_21t()); break;
167 case k21s: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_21s(), VRegB_21s()); break;
Elliott Hughes1b3d6ca2012-04-25 13:00:14 -0700168 case k21h: {
169 // op vAA, #+BBBB0000[00000000]
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200170 if (Opcode() == CONST_HIGH16) {
171 uint32_t value = VRegB_21h() << 16;
172 os << StringPrintf("%s v%d, #int %+d // 0x%x", opcode, VRegA_21h(), value, value);
Elliott Hughes1b3d6ca2012-04-25 13:00:14 -0700173 } else {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200174 uint64_t value = static_cast<uint64_t>(VRegB_21h()) << 48;
Ian Rogersb574c182014-01-23 19:51:19 -0800175 os << StringPrintf("%s v%d, #long %+" PRId64 " // 0x%" PRIx64, opcode, VRegA_21h(),
176 value, value);
Elliott Hughes1b3d6ca2012-04-25 13:00:14 -0700177 }
178 }
179 break;
Ian Rogers90334e52012-06-06 20:22:20 -0700180 case k21c: {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200181 switch (Opcode()) {
Ian Rogers90334e52012-06-06 20:22:20 -0700182 case CONST_STRING:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700183 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200184 uint32_t string_idx = VRegB_21c();
Serdjuk, Nikolay Y67c5ddd2015-12-07 14:45:44 +0600185 if (string_idx < file->NumStringIds()) {
Andreas Gampe8a0128a2016-11-28 07:38:35 -0800186 os << StringPrintf(
187 "const-string v%d, %s // string@%d",
188 VRegA_21c(),
189 PrintableString(file->StringDataByIdx(dex::StringIndex(string_idx))).c_str(),
190 string_idx);
Serdjuk, Nikolay Y67c5ddd2015-12-07 14:45:44 +0600191 } else {
192 os << StringPrintf("const-string v%d, <<invalid-string-idx-%d>> // string@%d",
193 VRegA_21c(),
194 string_idx,
195 string_idx);
196 }
Ian Rogers90334e52012-06-06 20:22:20 -0700197 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700198 }
199 FALLTHROUGH_INTENDED;
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700200 case CHECK_CAST:
201 case CONST_CLASS:
Ian Rogers90334e52012-06-06 20:22:20 -0700202 case NEW_INSTANCE:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700203 if (file != nullptr) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800204 dex::TypeIndex type_idx(VRegB_21c());
205 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", "
206 << file->PrettyType(type_idx) << " // type@" << type_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700207 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700208 }
209 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700210 case SGET:
211 case SGET_WIDE:
212 case SGET_OBJECT:
213 case SGET_BOOLEAN:
214 case SGET_BYTE:
215 case SGET_CHAR:
216 case SGET_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700217 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200218 uint32_t field_idx = VRegB_21c();
David Sehr709b0702016-10-13 09:12:37 -0700219 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyField(field_idx, true)
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200220 << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700221 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700222 }
223 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700224 case SPUT:
225 case SPUT_WIDE:
226 case SPUT_OBJECT:
227 case SPUT_BOOLEAN:
228 case SPUT_BYTE:
229 case SPUT_CHAR:
230 case SPUT_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700231 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200232 uint32_t field_idx = VRegB_21c();
David Sehr709b0702016-10-13 09:12:37 -0700233 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyField(field_idx, true)
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200234 << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700235 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700236 }
237 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700238 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200239 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_21c(), VRegB_21c());
Ian Rogers90334e52012-06-06 20:22:20 -0700240 break;
241 }
242 break;
243 }
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200244 case k23x: os << StringPrintf("%s v%d, v%d, v%d", opcode, VRegA_23x(), VRegB_23x(), VRegC_23x()); break;
245 case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b()); break;
246 case k22t: os << StringPrintf("%s v%d, v%d, %+d", opcode, VRegA_22t(), VRegB_22t(), VRegC_22t()); break;
247 case k22s: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22s(), VRegB_22s(), VRegC_22s()); break;
Ian Rogers90334e52012-06-06 20:22:20 -0700248 case k22c: {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200249 switch (Opcode()) {
Ian Rogers90334e52012-06-06 20:22:20 -0700250 case IGET:
251 case IGET_WIDE:
252 case IGET_OBJECT:
253 case IGET_BOOLEAN:
254 case IGET_BYTE:
255 case IGET_CHAR:
256 case IGET_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700257 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200258 uint32_t field_idx = VRegC_22c();
Dragos Sbirleab43cef32013-05-23 11:59:20 -0700259 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
David Sehr709b0702016-10-13 09:12:37 -0700260 << file->PrettyField(field_idx, true) << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700261 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700262 }
263 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200264 case IGET_QUICK:
265 case IGET_OBJECT_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700266 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200267 uint32_t field_idx = VRegC_22c();
268 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
269 << "// offset@" << field_idx;
270 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700271 }
272 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700273 case IPUT:
274 case IPUT_WIDE:
275 case IPUT_OBJECT:
276 case IPUT_BOOLEAN:
277 case IPUT_BYTE:
278 case IPUT_CHAR:
279 case IPUT_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700280 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200281 uint32_t field_idx = VRegC_22c();
Dragos Sbirleab43cef32013-05-23 11:59:20 -0700282 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
David Sehr709b0702016-10-13 09:12:37 -0700283 << file->PrettyField(field_idx, true) << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700284 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700285 }
286 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200287 case IPUT_QUICK:
288 case IPUT_OBJECT_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700289 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200290 uint32_t field_idx = VRegC_22c();
291 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
292 << "// offset@" << field_idx;
293 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700294 }
295 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700296 case INSTANCE_OF:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700297 if (file != nullptr) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800298 dex::TypeIndex type_idx(VRegC_22c());
299 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v"
300 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx)
301 << " // type@" << type_idx.index_;
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700302 break;
303 }
Ian Rogersfc787ec2014-10-09 21:56:44 -0700304 FALLTHROUGH_INTENDED;
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700305 case NEW_ARRAY:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700306 if (file != nullptr) {
Andreas Gampea5b09a62016-11-17 15:21:22 -0800307 dex::TypeIndex type_idx(VRegC_22c());
308 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v"
309 << static_cast<int>(VRegB_22c()) << ", " << file->PrettyType(type_idx)
310 << " // type@" << type_idx.index_;
Ian Rogers90334e52012-06-06 20:22:20 -0700311 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700312 }
313 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700314 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200315 os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c());
Ian Rogers90334e52012-06-06 20:22:20 -0700316 break;
317 }
318 break;
319 }
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200320 case k32x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_32x(), VRegB_32x()); break;
321 case k30t: os << StringPrintf("%s %+d", opcode, VRegA_30t()); break;
322 case k31t: os << StringPrintf("%s v%d, %+d", opcode, VRegA_31t(), VRegB_31t()); break;
323 case k31i: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_31i(), VRegB_31i()); break;
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700324 case k31c:
325 if (Opcode() == CONST_STRING_JUMBO) {
326 uint32_t string_idx = VRegB_31c();
Ian Rogersfc787ec2014-10-09 21:56:44 -0700327 if (file != nullptr) {
Serdjuk, Nikolay Y67c5ddd2015-12-07 14:45:44 +0600328 if (string_idx < file->NumStringIds()) {
Andreas Gampe8a0128a2016-11-28 07:38:35 -0800329 os << StringPrintf(
330 "%s v%d, %s // string@%d",
331 opcode,
332 VRegA_31c(),
333 PrintableString(file->StringDataByIdx(dex::StringIndex(string_idx))).c_str(),
334 string_idx);
Serdjuk, Nikolay Y67c5ddd2015-12-07 14:45:44 +0600335 } else {
336 os << StringPrintf("%s v%d, <<invalid-string-idx-%d>> // string@%d",
337 opcode,
338 VRegA_31c(),
339 string_idx,
340 string_idx);
341 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700342 } else {
343 os << StringPrintf("%s v%d, string@%d", opcode, VRegA_31c(), string_idx);
344 }
345 } else {
346 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_31c(), VRegB_31c()); break;
347 }
348 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700349 case k35c: {
Orion Hodsonac141392017-01-13 11:53:47 +0000350 uint32_t arg[kMaxVarArgRegs];
Ian Rogers29a26482014-05-02 15:27:29 -0700351 GetVarArgs(arg);
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200352 switch (Opcode()) {
Andreas Gampe7aca91d2014-03-31 18:10:53 -0700353 case FILLED_NEW_ARRAY:
354 {
355 const int32_t a = VRegA_35c();
356 os << opcode << " {";
357 for (int i = 0; i < a; ++i) {
358 if (i > 0) {
359 os << ", ";
360 }
361 os << "v" << arg[i];
362 }
363 os << "}, type@" << VRegB_35c();
364 }
365 break;
366
Ian Rogersd81871c2011-10-03 13:57:23 -0700367 case INVOKE_VIRTUAL:
368 case INVOKE_SUPER:
369 case INVOKE_DIRECT:
370 case INVOKE_STATIC:
371 case INVOKE_INTERFACE:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700372 if (file != nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800373 os << opcode << " {";
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200374 uint32_t method_idx = VRegB_35c();
375 for (size_t i = 0; i < VRegA_35c(); ++i) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800376 if (i != 0) {
377 os << ", ";
378 }
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200379 os << "v" << arg[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800380 }
David Sehr709b0702016-10-13 09:12:37 -0700381 os << "}, " << file->PrettyMethod(method_idx) << " // method@" << method_idx;
Ian Rogersd81871c2011-10-03 13:57:23 -0700382 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700383 }
384 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200385 case INVOKE_VIRTUAL_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700386 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200387 os << opcode << " {";
388 uint32_t method_idx = VRegB_35c();
389 for (size_t i = 0; i < VRegA_35c(); ++i) {
390 if (i != 0) {
391 os << ", ";
392 }
393 os << "v" << arg[i];
394 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700395 os << "}, // vtable@" << method_idx;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200396 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700397 }
398 FALLTHROUGH_INTENDED;
Orion Hodsonc069a302017-01-18 09:23:12 +0000399 case INVOKE_CUSTOM:
400 if (file != nullptr) {
401 os << opcode << " {";
402 uint32_t call_site_idx = VRegB_35c();
403 for (size_t i = 0; i < VRegA_35c(); ++i) {
404 if (i != 0) {
405 os << ", ";
406 }
407 os << "v" << arg[i];
408 }
409 os << "}, // call_site@" << call_site_idx;
410 break;
411 }
412 FALLTHROUGH_INTENDED;
Ian Rogersd81871c2011-10-03 13:57:23 -0700413 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200414 os << opcode << " {v" << arg[0] << ", v" << arg[1] << ", v" << arg[2]
415 << ", v" << arg[3] << ", v" << arg[4] << "}, thing@" << VRegB_35c();
Ian Rogersd81871c2011-10-03 13:57:23 -0700416 break;
417 }
418 break;
419 }
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700420 case k3rc: {
Orion Hodsonc069a302017-01-18 09:23:12 +0000421 uint16_t first_reg = VRegC_3rc();
422 uint16_t last_reg = VRegC_3rc() + VRegA_3rc() - 1;
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200423 switch (Opcode()) {
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700424 case INVOKE_VIRTUAL_RANGE:
425 case INVOKE_SUPER_RANGE:
426 case INVOKE_DIRECT_RANGE:
427 case INVOKE_STATIC_RANGE:
428 case INVOKE_INTERFACE_RANGE:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700429 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200430 uint32_t method_idx = VRegB_3rc();
Orion Hodsonc069a302017-01-18 09:23:12 +0000431 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg)
David Sehr709b0702016-10-13 09:12:37 -0700432 << file->PrettyMethod(method_idx) << " // method@" << method_idx;
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700433 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700434 }
435 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200436 case INVOKE_VIRTUAL_RANGE_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700437 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200438 uint32_t method_idx = VRegB_3rc();
Orion Hodsonc069a302017-01-18 09:23:12 +0000439 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg)
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200440 << "// vtable@" << method_idx;
441 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700442 }
443 FALLTHROUGH_INTENDED;
Orion Hodsonc069a302017-01-18 09:23:12 +0000444 case INVOKE_CUSTOM_RANGE:
445 if (file != nullptr) {
446 uint32_t call_site_idx = VRegB_3rc();
447 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg)
448 << "// call_site@" << call_site_idx;
449 break;
450 }
451 FALLTHROUGH_INTENDED;
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700452 default:
Orion Hodsonc069a302017-01-18 09:23:12 +0000453 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, first_reg, last_reg)
454 << "thing@" << VRegB_3rc();
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700455 break;
456 }
457 break;
458 }
Orion Hodsonac141392017-01-13 11:53:47 +0000459 case k45cc: {
460 uint32_t arg[kMaxVarArgRegs];
461 GetVarArgs(arg);
462 uint32_t method_idx = VRegB_45cc();
463 uint32_t proto_idx = VRegH_45cc();
464 os << opcode << " {";
465 for (int i = 0; i < VRegA_45cc(); ++i) {
466 if (i != 0) {
467 os << ", ";
468 }
469 os << "v" << arg[i];
470 }
471 os << "}";
472 if (file != nullptr) {
473 os << ", " << file->PrettyMethod(method_idx) << ", " << file->GetShorty(proto_idx)
474 << " // ";
475 } else {
476 os << ", ";
477 }
478 os << "method@" << method_idx << ", proto@" << proto_idx;
479 break;
480 }
481 case k4rcc:
482 switch (Opcode()) {
483 case INVOKE_POLYMORPHIC_RANGE: {
484 if (file != nullptr) {
485 uint32_t method_idx = VRegB_4rcc();
486 uint32_t proto_idx = VRegH_4rcc();
487 os << opcode << ", {v" << VRegC_4rcc() << " .. v" << (VRegC_4rcc() + VRegA_4rcc())
488 << "}, " << file->PrettyMethod(method_idx) << ", " << file->GetShorty(proto_idx)
489 << " // method@" << method_idx << ", proto@" << proto_idx;
490 break;
491 }
492 }
493 FALLTHROUGH_INTENDED;
494 default: {
495 uint32_t method_idx = VRegB_4rcc();
496 uint32_t proto_idx = VRegH_4rcc();
497 os << opcode << ", {v" << VRegC_4rcc() << " .. v" << (VRegC_4rcc() + VRegA_4rcc())
498 << "}, method@" << method_idx << ", proto@" << proto_idx;
499 }
500 }
501 break;
Ian Rogersb574c182014-01-23 19:51:19 -0800502 case k51l: os << StringPrintf("%s v%d, #%+" PRId64, opcode, VRegA_51l(), VRegB_51l()); break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700503 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700504 return os.str();
Carl Shapiro12eb78e2011-06-24 14:51:06 -0700505}
506
Orion Hodsond8104702017-05-02 12:25:45 +0100507// Add some checks that ensure the flags make sense. We need a subclass to be in the context of
508// Instruction. Otherwise the flags from the instruction list don't work.
509struct InstructionStaticAsserts : private Instruction {
510 #define IMPLIES(a, b) (!(a) || (b))
511
Andreas Gampeae08cc22017-05-15 10:23:02 -0700512 #define VAR_ARGS_CHECK(o, c, pname, f, i, a, e, v) \
Orion Hodsond8104702017-05-02 12:25:45 +0100513 static_assert(IMPLIES((f) == k35c || (f) == k45cc, \
514 ((v) & (kVerifyVarArg | kVerifyVarArgNonZero)) != 0), \
515 "Missing var-arg verification");
516 #include "dex_instruction_list.h"
517 DEX_INSTRUCTION_LIST(VAR_ARGS_CHECK)
518 #undef DEX_INSTRUCTION_LIST
519 #undef VAR_ARGS_CHECK
520
Andreas Gampeae08cc22017-05-15 10:23:02 -0700521 #define VAR_ARGS_RANGE_CHECK(o, c, pname, f, i, a, e, v) \
Orion Hodsond8104702017-05-02 12:25:45 +0100522 static_assert(IMPLIES((f) == k3rc || (f) == k4rcc, \
523 ((v) & (kVerifyVarArgRange | kVerifyVarArgRangeNonZero)) != 0), \
524 "Missing var-arg verification");
525 #include "dex_instruction_list.h"
526 DEX_INSTRUCTION_LIST(VAR_ARGS_RANGE_CHECK)
527 #undef DEX_INSTRUCTION_LIST
528 #undef VAR_ARGS_RANGE_CHECK
Andreas Gampee05cc662017-05-15 10:17:30 -0700529
Andreas Gampeae08cc22017-05-15 10:23:02 -0700530 #define EXPERIMENTAL_CHECK(o, c, pname, f, i, a, e, v) \
Andreas Gampee05cc662017-05-15 10:17:30 -0700531 static_assert(kHaveExperimentalInstructions || (((a) & kExperimental) == 0), \
532 "Unexpected experimental instruction.");
533 #include "dex_instruction_list.h"
534 DEX_INSTRUCTION_LIST(EXPERIMENTAL_CHECK)
535 #undef DEX_INSTRUCTION_LIST
536 #undef EXPERIMENTAL_CHECK
Orion Hodsond8104702017-05-02 12:25:45 +0100537};
538
Ian Rogersa75a0132012-09-28 11:41:42 -0700539std::ostream& operator<<(std::ostream& os, const Instruction::Code& code) {
540 return os << Instruction::Name(code);
Elliott Hughesadb8c672012-03-06 16:49:32 -0800541}
542
Carl Shapiro12eb78e2011-06-24 14:51:06 -0700543} // namespace art