blob: c766b54c0a8d5acb4cda8bd0e196a4a522a5a91c [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
Ian Rogers576ca0c2014-06-06 15:58:22 -070024#include "base/stringprintf.h"
Ian Rogers4f6ad8a2013-03-18 15:27:28 -070025#include "dex_file-inl.h"
Ian Rogers2dd0e2c2013-01-24 12:42:14 -080026#include "utils.h"
Ian Rogersd81871c2011-10-03 13:57:23 -070027
Carl Shapiro12eb78e2011-06-24 14:51:06 -070028namespace art {
29
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070030const char* const Instruction::kInstructionNames[] = {
Narayan Kamathbd48b342016-08-01 17:32:37 +010031#define INSTRUCTION_NAME(o, c, pname, f, i, a, v) pname,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070032#include "dex_instruction_list.h"
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070033 DEX_INSTRUCTION_LIST(INSTRUCTION_NAME)
34#undef DEX_INSTRUCTION_LIST
35#undef INSTRUCTION_NAME
36};
37
Elliott Hughesadb8c672012-03-06 16:49:32 -080038Instruction::Format const Instruction::kInstructionFormats[] = {
Narayan Kamathbd48b342016-08-01 17:32:37 +010039#define INSTRUCTION_FORMAT(o, c, p, format, i, a, v) format,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070040#include "dex_instruction_list.h"
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070041 DEX_INSTRUCTION_LIST(INSTRUCTION_FORMAT)
42#undef DEX_INSTRUCTION_LIST
43#undef INSTRUCTION_FORMAT
44};
45
Aart Bikb1f37532015-06-29 11:03:55 -070046Instruction::IndexType const Instruction::kInstructionIndexTypes[] = {
Narayan Kamathbd48b342016-08-01 17:32:37 +010047#define INSTRUCTION_INDEX_TYPE(o, c, p, f, index, a, v) index,
Aart Bikb1f37532015-06-29 11:03:55 -070048#include "dex_instruction_list.h"
49 DEX_INSTRUCTION_LIST(INSTRUCTION_INDEX_TYPE)
50#undef DEX_INSTRUCTION_LIST
51#undef INSTRUCTION_FLAGS
52};
53
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070054int const Instruction::kInstructionFlags[] = {
Narayan Kamathbd48b342016-08-01 17:32:37 +010055#define INSTRUCTION_FLAGS(o, c, p, f, i, flags, v) flags,
Brian Carlstrom578bbdc2011-07-21 14:07:47 -070056#include "dex_instruction_list.h"
Carl Shapiroe4c1ce42011-07-09 02:31:57 -070057 DEX_INSTRUCTION_LIST(INSTRUCTION_FLAGS)
58#undef DEX_INSTRUCTION_LIST
59#undef INSTRUCTION_FLAGS
60};
61
jeffhaoba5ebb92011-08-25 17:24:37 -070062int const Instruction::kInstructionVerifyFlags[] = {
Narayan Kamathbd48b342016-08-01 17:32:37 +010063#define INSTRUCTION_VERIFY_FLAGS(o, c, p, f, i, a, vflags) vflags,
jeffhaoba5ebb92011-08-25 17:24:37 -070064#include "dex_instruction_list.h"
65 DEX_INSTRUCTION_LIST(INSTRUCTION_VERIFY_FLAGS)
66#undef DEX_INSTRUCTION_LIST
67#undef INSTRUCTION_VERIFY_FLAGS
68};
69
Ian Rogersa75a0132012-09-28 11:41:42 -070070int const Instruction::kInstructionSizeInCodeUnits[] = {
Narayan Kamathbd48b342016-08-01 17:32:37 +010071#define INSTRUCTION_SIZE(opcode, c, p, format, i, a, v) \
Narayan Kamath8ec3bd22016-08-03 12:46:23 +010072 (((opcode) == NOP) ? -1 : \
73 (((format) >= k10x) && ((format) <= k10t)) ? 1 : \
74 (((format) >= k20t) && ((format) <= k22c)) ? 2 : \
75 (((format) >= k32x) && ((format) <= k3rc)) ? 3 : \
76 (((format) >= k45cc) && ((format) <= k4rcc)) ? 4 : \
77 ((format) == k51l) ? 5 : -1),
Ian Rogersa75a0132012-09-28 11:41:42 -070078#include "dex_instruction_list.h"
79 DEX_INSTRUCTION_LIST(INSTRUCTION_SIZE)
80#undef DEX_INSTRUCTION_LIST
81#undef INSTRUCTION_SIZE
82};
83
Dragos Sbirlea39f99272013-06-25 13:17:36 -070084int32_t Instruction::GetTargetOffset() const {
85 switch (FormatOf(Opcode())) {
86 // Cases for conditional branches follow.
87 case k22t: return VRegC_22t();
88 case k21t: return VRegB_21t();
89 // Cases for unconditional branches follow.
90 case k10t: return VRegA_10t();
91 case k20t: return VRegA_20t();
92 case k30t: return VRegA_30t();
93 default: LOG(FATAL) << "Tried to access the branch offset of an instruction " << Name() <<
94 " which does not have a target operand.";
95 }
96 return 0;
97}
98
99bool Instruction::CanFlowThrough() const {
100 const uint16_t* insns = reinterpret_cast<const uint16_t*>(this);
101 uint16_t insn = *insns;
102 Code opcode = static_cast<Code>(insn & 0xFF);
103 return FlagsOf(opcode) & Instruction::kContinue;
104}
105
Ian Rogersa75a0132012-09-28 11:41:42 -0700106size_t Instruction::SizeInCodeUnitsComplexOpcode() const {
Carl Shapiro12eb78e2011-06-24 14:51:06 -0700107 const uint16_t* insns = reinterpret_cast<const uint16_t*>(this);
Ian Rogersa75a0132012-09-28 11:41:42 -0700108 // Handle special NOP encoded variable length sequences.
109 switch (*insns) {
110 case kPackedSwitchSignature:
111 return (4 + insns[1] * 2);
112 case kSparseSwitchSignature:
113 return (2 + insns[1] * 4);
114 case kArrayDataSignature: {
115 uint16_t element_size = insns[1];
116 uint32_t length = insns[2] | (((uint32_t)insns[3]) << 16);
117 // The plus 1 is to round up for odd size and width.
118 return (4 + (element_size * length + 1) / 2);
Carl Shapiroe4c1ce42011-07-09 02:31:57 -0700119 }
Ian Rogersa75a0132012-09-28 11:41:42 -0700120 default:
121 if ((*insns & 0xFF) == 0) {
122 return 1; // NOP.
123 } else {
Ian Rogersfc787ec2014-10-09 21:56:44 -0700124 LOG(FATAL) << "Unreachable: " << DumpString(nullptr);
Ian Rogers2c4257b2014-10-24 14:20:06 -0700125 UNREACHABLE();
Ian Rogersa75a0132012-09-28 11:41:42 -0700126 }
Carl Shapiroe4c1ce42011-07-09 02:31:57 -0700127 }
Ian Rogersd81871c2011-10-03 13:57:23 -0700128}
129
Ian Rogers2c8a8572011-10-24 17:11:36 -0700130std::string Instruction::DumpHex(size_t code_units) const {
Ian Rogersd81871c2011-10-03 13:57:23 -0700131 size_t inst_length = SizeInCodeUnits();
132 if (inst_length > code_units) {
133 inst_length = code_units;
134 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700135 std::ostringstream os;
Ian Rogersd81871c2011-10-03 13:57:23 -0700136 const uint16_t* insn = reinterpret_cast<const uint16_t*>(this);
137 for (size_t i = 0; i < inst_length; i++) {
Ian Rogers2c8a8572011-10-24 17:11:36 -0700138 os << StringPrintf("0x%04x", insn[i]) << " ";
Ian Rogersd81871c2011-10-03 13:57:23 -0700139 }
140 for (size_t i = inst_length; i < code_units; i++) {
141 os << " ";
142 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700143 return os.str();
Ian Rogersd81871c2011-10-03 13:57:23 -0700144}
145
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800146std::string Instruction::DumpHexLE(size_t instr_code_units) const {
147 size_t inst_length = SizeInCodeUnits();
148 if (inst_length > instr_code_units) {
149 inst_length = instr_code_units;
150 }
151 std::ostringstream os;
152 const uint16_t* insn = reinterpret_cast<const uint16_t*>(this);
153 for (size_t i = 0; i < inst_length; i++) {
Andreas Gampe4f0be4d2015-02-27 22:16:14 -0800154 os << StringPrintf("%02x%02x", static_cast<uint8_t>(insn[i] & 0x00FF),
155 static_cast<uint8_t>((insn[i] & 0xFF00) >> 8)) << " ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800156 }
157 for (size_t i = inst_length; i < instr_code_units; i++) {
Andreas Gampe4f0be4d2015-02-27 22:16:14 -0800158 os << " ";
Anestis Bechtsoudis32f500d2015-02-22 22:32:57 -0800159 }
160 return os.str();
161}
162
Ian Rogers2c8a8572011-10-24 17:11:36 -0700163std::string Instruction::DumpString(const DexFile* file) const {
Ian Rogers2c8a8572011-10-24 17:11:36 -0700164 std::ostringstream os;
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200165 const char* opcode = kInstructionNames[Opcode()];
Elliott Hughesadb8c672012-03-06 16:49:32 -0800166 switch (FormatOf(Opcode())) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800167 case k10x: os << opcode; break;
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200168 case k12x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_12x(), VRegB_12x()); break;
169 case k11n: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_11n(), VRegB_11n()); break;
170 case k11x: os << StringPrintf("%s v%d", opcode, VRegA_11x()); break;
171 case k10t: os << StringPrintf("%s %+d", opcode, VRegA_10t()); break;
172 case k20t: os << StringPrintf("%s %+d", opcode, VRegA_20t()); break;
173 case k22x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_22x(), VRegB_22x()); break;
174 case k21t: os << StringPrintf("%s v%d, %+d", opcode, VRegA_21t(), VRegB_21t()); break;
175 case k21s: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_21s(), VRegB_21s()); break;
Elliott Hughes1b3d6ca2012-04-25 13:00:14 -0700176 case k21h: {
177 // op vAA, #+BBBB0000[00000000]
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200178 if (Opcode() == CONST_HIGH16) {
179 uint32_t value = VRegB_21h() << 16;
180 os << StringPrintf("%s v%d, #int %+d // 0x%x", opcode, VRegA_21h(), value, value);
Elliott Hughes1b3d6ca2012-04-25 13:00:14 -0700181 } else {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200182 uint64_t value = static_cast<uint64_t>(VRegB_21h()) << 48;
Ian Rogersb574c182014-01-23 19:51:19 -0800183 os << StringPrintf("%s v%d, #long %+" PRId64 " // 0x%" PRIx64, opcode, VRegA_21h(),
184 value, value);
Elliott Hughes1b3d6ca2012-04-25 13:00:14 -0700185 }
186 }
187 break;
Ian Rogers90334e52012-06-06 20:22:20 -0700188 case k21c: {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200189 switch (Opcode()) {
Ian Rogers90334e52012-06-06 20:22:20 -0700190 case CONST_STRING:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700191 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200192 uint32_t string_idx = VRegB_21c();
Serdjuk, Nikolay Y67c5ddd2015-12-07 14:45:44 +0600193 if (string_idx < file->NumStringIds()) {
194 os << StringPrintf("const-string v%d, %s // string@%d",
195 VRegA_21c(),
196 PrintableString(file->StringDataByIdx(string_idx)).c_str(),
197 string_idx);
198 } else {
199 os << StringPrintf("const-string v%d, <<invalid-string-idx-%d>> // string@%d",
200 VRegA_21c(),
201 string_idx,
202 string_idx);
203 }
Ian Rogers90334e52012-06-06 20:22:20 -0700204 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700205 }
206 FALLTHROUGH_INTENDED;
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700207 case CHECK_CAST:
208 case CONST_CLASS:
Ian Rogers90334e52012-06-06 20:22:20 -0700209 case NEW_INSTANCE:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700210 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200211 uint32_t type_idx = VRegB_21c();
David Sehr709b0702016-10-13 09:12:37 -0700212 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyType(type_idx)
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200213 << " // type@" << type_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700214 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700215 }
216 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700217 case SGET:
218 case SGET_WIDE:
219 case SGET_OBJECT:
220 case SGET_BOOLEAN:
221 case SGET_BYTE:
222 case SGET_CHAR:
223 case SGET_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700224 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200225 uint32_t field_idx = VRegB_21c();
David Sehr709b0702016-10-13 09:12:37 -0700226 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyField(field_idx, true)
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200227 << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700228 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700229 }
230 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700231 case SPUT:
232 case SPUT_WIDE:
233 case SPUT_OBJECT:
234 case SPUT_BOOLEAN:
235 case SPUT_BYTE:
236 case SPUT_CHAR:
237 case SPUT_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700238 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200239 uint32_t field_idx = VRegB_21c();
David Sehr709b0702016-10-13 09:12:37 -0700240 os << opcode << " v" << static_cast<int>(VRegA_21c()) << ", " << file->PrettyField(field_idx, true)
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200241 << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700242 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700243 }
244 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700245 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200246 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_21c(), VRegB_21c());
Ian Rogers90334e52012-06-06 20:22:20 -0700247 break;
248 }
249 break;
250 }
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200251 case k23x: os << StringPrintf("%s v%d, v%d, v%d", opcode, VRegA_23x(), VRegB_23x(), VRegC_23x()); break;
252 case k22b: os << StringPrintf("%s v%d, v%d, #%+d", opcode, VRegA_22b(), VRegB_22b(), VRegC_22b()); break;
253 case k22t: os << StringPrintf("%s v%d, v%d, %+d", opcode, VRegA_22t(), VRegB_22t(), VRegC_22t()); break;
254 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 -0700255 case k22c: {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200256 switch (Opcode()) {
Ian Rogers90334e52012-06-06 20:22:20 -0700257 case IGET:
258 case IGET_WIDE:
259 case IGET_OBJECT:
260 case IGET_BOOLEAN:
261 case IGET_BYTE:
262 case IGET_CHAR:
263 case IGET_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700264 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200265 uint32_t field_idx = VRegC_22c();
Dragos Sbirleab43cef32013-05-23 11:59:20 -0700266 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
David Sehr709b0702016-10-13 09:12:37 -0700267 << file->PrettyField(field_idx, true) << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700268 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700269 }
270 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200271 case IGET_QUICK:
272 case IGET_OBJECT_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700273 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200274 uint32_t field_idx = VRegC_22c();
275 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
276 << "// offset@" << field_idx;
277 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700278 }
279 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700280 case IPUT:
281 case IPUT_WIDE:
282 case IPUT_OBJECT:
283 case IPUT_BOOLEAN:
284 case IPUT_BYTE:
285 case IPUT_CHAR:
286 case IPUT_SHORT:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700287 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200288 uint32_t field_idx = VRegC_22c();
Dragos Sbirleab43cef32013-05-23 11:59:20 -0700289 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
David Sehr709b0702016-10-13 09:12:37 -0700290 << file->PrettyField(field_idx, true) << " // field@" << field_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700291 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700292 }
293 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200294 case IPUT_QUICK:
295 case IPUT_OBJECT_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700296 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200297 uint32_t field_idx = VRegC_22c();
298 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
299 << "// offset@" << field_idx;
300 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700301 }
302 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700303 case INSTANCE_OF:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700304 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200305 uint32_t type_idx = VRegC_22c();
Dragos Sbirlead4e868a2013-05-23 09:44:17 -0700306 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
David Sehr709b0702016-10-13 09:12:37 -0700307 << file->PrettyType(type_idx) << " // type@" << type_idx;
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700308 break;
309 }
Ian Rogersfc787ec2014-10-09 21:56:44 -0700310 FALLTHROUGH_INTENDED;
Mathieu Chartier18c24b62012-09-10 08:54:25 -0700311 case NEW_ARRAY:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700312 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200313 uint32_t type_idx = VRegC_22c();
Dragos Sbirleab43cef32013-05-23 11:59:20 -0700314 os << opcode << " v" << static_cast<int>(VRegA_22c()) << ", v" << static_cast<int>(VRegB_22c()) << ", "
David Sehr709b0702016-10-13 09:12:37 -0700315 << file->PrettyType(type_idx) << " // type@" << type_idx;
Ian Rogers90334e52012-06-06 20:22:20 -0700316 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700317 }
318 FALLTHROUGH_INTENDED;
Ian Rogers90334e52012-06-06 20:22:20 -0700319 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200320 os << StringPrintf("%s v%d, v%d, thing@%d", opcode, VRegA_22c(), VRegB_22c(), VRegC_22c());
Ian Rogers90334e52012-06-06 20:22:20 -0700321 break;
322 }
323 break;
324 }
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200325 case k32x: os << StringPrintf("%s v%d, v%d", opcode, VRegA_32x(), VRegB_32x()); break;
326 case k30t: os << StringPrintf("%s %+d", opcode, VRegA_30t()); break;
327 case k31t: os << StringPrintf("%s v%d, %+d", opcode, VRegA_31t(), VRegB_31t()); break;
328 case k31i: os << StringPrintf("%s v%d, #%+d", opcode, VRegA_31i(), VRegB_31i()); break;
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700329 case k31c:
330 if (Opcode() == CONST_STRING_JUMBO) {
331 uint32_t string_idx = VRegB_31c();
Ian Rogersfc787ec2014-10-09 21:56:44 -0700332 if (file != nullptr) {
Serdjuk, Nikolay Y67c5ddd2015-12-07 14:45:44 +0600333 if (string_idx < file->NumStringIds()) {
334 os << StringPrintf("%s v%d, %s // string@%d",
335 opcode,
336 VRegA_31c(),
337 PrintableString(file->StringDataByIdx(string_idx)).c_str(),
338 string_idx);
339 } else {
340 os << StringPrintf("%s v%d, <<invalid-string-idx-%d>> // string@%d",
341 opcode,
342 VRegA_31c(),
343 string_idx,
344 string_idx);
345 }
Ian Rogers7dfb28c2013-08-22 08:18:36 -0700346 } else {
347 os << StringPrintf("%s v%d, string@%d", opcode, VRegA_31c(), string_idx);
348 }
349 } else {
350 os << StringPrintf("%s v%d, thing@%d", opcode, VRegA_31c(), VRegB_31c()); break;
351 }
352 break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700353 case k35c: {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200354 uint32_t arg[5];
Ian Rogers29a26482014-05-02 15:27:29 -0700355 GetVarArgs(arg);
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200356 switch (Opcode()) {
Andreas Gampe7aca91d2014-03-31 18:10:53 -0700357 case FILLED_NEW_ARRAY:
358 {
359 const int32_t a = VRegA_35c();
360 os << opcode << " {";
361 for (int i = 0; i < a; ++i) {
362 if (i > 0) {
363 os << ", ";
364 }
365 os << "v" << arg[i];
366 }
367 os << "}, type@" << VRegB_35c();
368 }
369 break;
370
Ian Rogersd81871c2011-10-03 13:57:23 -0700371 case INVOKE_VIRTUAL:
372 case INVOKE_SUPER:
373 case INVOKE_DIRECT:
374 case INVOKE_STATIC:
375 case INVOKE_INTERFACE:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700376 if (file != nullptr) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800377 os << opcode << " {";
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200378 uint32_t method_idx = VRegB_35c();
379 for (size_t i = 0; i < VRegA_35c(); ++i) {
Elliott Hughese3c845c2012-02-28 17:23:01 -0800380 if (i != 0) {
381 os << ", ";
382 }
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200383 os << "v" << arg[i];
Elliott Hughese3c845c2012-02-28 17:23:01 -0800384 }
David Sehr709b0702016-10-13 09:12:37 -0700385 os << "}, " << file->PrettyMethod(method_idx) << " // method@" << method_idx;
Ian Rogersd81871c2011-10-03 13:57:23 -0700386 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700387 }
388 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200389 case INVOKE_VIRTUAL_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700390 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200391 os << opcode << " {";
392 uint32_t method_idx = VRegB_35c();
393 for (size_t i = 0; i < VRegA_35c(); ++i) {
394 if (i != 0) {
395 os << ", ";
396 }
397 os << "v" << arg[i];
398 }
Brian Carlstrom7934ac22013-07-26 10:54:15 -0700399 os << "}, // vtable@" << method_idx;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200400 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700401 }
402 FALLTHROUGH_INTENDED;
Ian Rogersd81871c2011-10-03 13:57:23 -0700403 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200404 os << opcode << " {v" << arg[0] << ", v" << arg[1] << ", v" << arg[2]
405 << ", v" << arg[3] << ", v" << arg[4] << "}, thing@" << VRegB_35c();
Ian Rogersd81871c2011-10-03 13:57:23 -0700406 break;
407 }
408 break;
409 }
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700410 case k3rc: {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200411 switch (Opcode()) {
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700412 case INVOKE_VIRTUAL_RANGE:
413 case INVOKE_SUPER_RANGE:
414 case INVOKE_DIRECT_RANGE:
415 case INVOKE_STATIC_RANGE:
416 case INVOKE_INTERFACE_RANGE:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700417 if (file != nullptr) {
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200418 uint32_t method_idx = VRegB_3rc();
419 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, VRegC_3rc(), (VRegC_3rc() + VRegA_3rc() - 1))
David Sehr709b0702016-10-13 09:12:37 -0700420 << file->PrettyMethod(method_idx) << " // method@" << method_idx;
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700421 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700422 }
423 FALLTHROUGH_INTENDED;
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200424 case INVOKE_VIRTUAL_RANGE_QUICK:
Ian Rogersfc787ec2014-10-09 21:56:44 -0700425 if (file != nullptr) {
Sebastien Hertz2d6ba512013-05-17 11:31:37 +0200426 uint32_t method_idx = VRegB_3rc();
427 os << StringPrintf("%s, {v%d .. v%d}, ", opcode, VRegC_3rc(), (VRegC_3rc() + VRegA_3rc() - 1))
428 << "// vtable@" << method_idx;
429 break;
Ian Rogersfc787ec2014-10-09 21:56:44 -0700430 }
431 FALLTHROUGH_INTENDED;
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700432 default:
Sebastien Hertz75b2a4a2013-05-21 09:25:10 +0200433 os << StringPrintf("%s, {v%d .. v%d}, thing@%d", opcode, VRegC_3rc(),
434 (VRegC_3rc() + VRegA_3rc() - 1), VRegB_3rc());
Ian Rogers4c5dd5a2012-09-07 11:27:28 -0700435 break;
436 }
437 break;
438 }
Ian Rogersb574c182014-01-23 19:51:19 -0800439 case k51l: os << StringPrintf("%s v%d, #%+" PRId64, opcode, VRegA_51l(), VRegB_51l()); break;
Ian Rogers2c8a8572011-10-24 17:11:36 -0700440 default: os << " unknown format (" << DumpHex(5) << ")"; break;
Ian Rogersd81871c2011-10-03 13:57:23 -0700441 }
Ian Rogers2c8a8572011-10-24 17:11:36 -0700442 return os.str();
Carl Shapiro12eb78e2011-06-24 14:51:06 -0700443}
444
Ian Rogersa75a0132012-09-28 11:41:42 -0700445std::ostream& operator<<(std::ostream& os, const Instruction::Code& code) {
446 return os << Instruction::Name(code);
Elliott Hughesadb8c672012-03-06 16:49:32 -0800447}
448
Carl Shapiro12eb78e2011-06-24 14:51:06 -0700449} // namespace art