blob: 9cf4b165829a65aea97353f59220e9a95fe0d926 [file] [log] [blame]
Vladimir Markoe3e02602014-03-12 15:42:41 +00001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "inline_method_analyser.h"
Mathieu Chartierc7853442015-03-27 14:35:38 -070018
19#include "art_field-inl.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010020#include "class_linker-inl.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080021#include "dex_file-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000022#include "dex_instruction.h"
23#include "dex_instruction-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000024#include "mirror/art_method-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000025#include "mirror/class-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000026#include "mirror/dex_cache-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000027#include "verifier/method_verifier-inl.h"
28
29/*
30 * NOTE: This code is part of the quick compiler. It lives in the runtime
31 * only to allow the debugger to check whether a method has been inlined.
32 */
33
34namespace art {
35
Andreas Gampe575e78c2014-11-03 23:41:03 -080036static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET), "iget type");
37static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_WIDE), "iget_wide type");
38static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_OBJECT),
39 "iget_object type");
40static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BOOLEAN),
41 "iget_boolean type");
42static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BYTE), "iget_byte type");
43static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_CHAR), "iget_char type");
44static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_SHORT), "iget_short type");
45static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT), "iput type");
46static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_WIDE), "iput_wide type");
47static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_OBJECT),
48 "iput_object type");
49static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_BOOLEAN),
50 "iput_boolean type");
51static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_BYTE), "iput_byte type");
52static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_CHAR), "iput_char type");
53static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_SHORT), "iput_short type");
54static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET) ==
55 InlineMethodAnalyser::IPutVariant(Instruction::IPUT), "iget/iput variant");
56static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_WIDE) ==
57 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_WIDE), "iget/iput_wide variant");
58static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT) ==
59 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_OBJECT), "iget/iput_object variant");
60static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BOOLEAN) ==
61 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_BOOLEAN), "iget/iput_boolean variant");
62static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BYTE) ==
63 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_BYTE), "iget/iput_byte variant");
64static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_CHAR) ==
65 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_CHAR), "iget/iput_char variant");
66static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_SHORT) ==
67 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_SHORT), "iget/iput_short variant");
Vladimir Markoe3e02602014-03-12 15:42:41 +000068
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +010069// This is used by compiler and debugger. We look into the dex cache for resolved methods and
70// fields. However, in the context of the debugger, not all methods and fields are resolved. Since
71// we need to be able to detect possibly inlined method, we pass a null inline method to indicate
72// we don't want to take unresolved methods and fields into account during analysis.
Vladimir Markoe3e02602014-03-12 15:42:41 +000073bool InlineMethodAnalyser::AnalyseMethodCode(verifier::MethodVerifier* verifier,
74 InlineMethod* method) {
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +010075 DCHECK(verifier != nullptr);
76 DCHECK_EQ(Runtime::Current()->IsCompiler(), method != nullptr);
Mathieu Chartiere5f13e52015-02-24 09:37:21 -080077 if (!Runtime::Current()->UseJit()) {
78 DCHECK_EQ(verifier->CanLoadClasses(), method != nullptr);
79 }
Vladimir Markoe3e02602014-03-12 15:42:41 +000080 // We currently support only plain return or 2-instruction methods.
81
82 const DexFile::CodeItem* code_item = verifier->CodeItem();
83 DCHECK_NE(code_item->insns_size_in_code_units_, 0u);
84 const Instruction* instruction = Instruction::At(code_item->insns_);
85 Instruction::Code opcode = instruction->Opcode();
86
87 switch (opcode) {
88 case Instruction::RETURN_VOID:
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +010089 if (method != nullptr) {
90 method->opcode = kInlineOpNop;
91 method->flags = kInlineSpecial;
92 method->d.data = 0u;
93 }
Vladimir Markoe3e02602014-03-12 15:42:41 +000094 return true;
95 case Instruction::RETURN:
96 case Instruction::RETURN_OBJECT:
97 case Instruction::RETURN_WIDE:
98 return AnalyseReturnMethod(code_item, method);
99 case Instruction::CONST:
100 case Instruction::CONST_4:
101 case Instruction::CONST_16:
102 case Instruction::CONST_HIGH16:
103 // TODO: Support wide constants (RETURN_WIDE).
104 return AnalyseConstMethod(code_item, method);
105 case Instruction::IGET:
106 case Instruction::IGET_OBJECT:
107 case Instruction::IGET_BOOLEAN:
108 case Instruction::IGET_BYTE:
109 case Instruction::IGET_CHAR:
110 case Instruction::IGET_SHORT:
111 case Instruction::IGET_WIDE:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800112 // TODO: Add handling for JIT.
113 // case Instruction::IGET_QUICK:
114 // case Instruction::IGET_WIDE_QUICK:
115 // case Instruction::IGET_OBJECT_QUICK:
Vladimir Markoe3e02602014-03-12 15:42:41 +0000116 return AnalyseIGetMethod(verifier, method);
117 case Instruction::IPUT:
118 case Instruction::IPUT_OBJECT:
119 case Instruction::IPUT_BOOLEAN:
120 case Instruction::IPUT_BYTE:
121 case Instruction::IPUT_CHAR:
122 case Instruction::IPUT_SHORT:
123 case Instruction::IPUT_WIDE:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800124 // TODO: Add handling for JIT.
125 // case Instruction::IPUT_QUICK:
126 // case Instruction::IPUT_WIDE_QUICK:
127 // case Instruction::IPUT_OBJECT_QUICK:
Vladimir Markoe3e02602014-03-12 15:42:41 +0000128 return AnalyseIPutMethod(verifier, method);
129 default:
130 return false;
131 }
132}
133
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100134bool InlineMethodAnalyser::IsSyntheticAccessor(MethodReference ref) {
135 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.dex_method_index);
136 const char* method_name = ref.dex_file->GetMethodName(method_id);
137 return strncmp(method_name, "access$", strlen("access$")) == 0;
138}
139
Vladimir Markoe3e02602014-03-12 15:42:41 +0000140bool InlineMethodAnalyser::AnalyseReturnMethod(const DexFile::CodeItem* code_item,
141 InlineMethod* result) {
142 const Instruction* return_instruction = Instruction::At(code_item->insns_);
143 Instruction::Code return_opcode = return_instruction->Opcode();
144 uint32_t reg = return_instruction->VRegA_11x();
145 uint32_t arg_start = code_item->registers_size_ - code_item->ins_size_;
146 DCHECK_GE(reg, arg_start);
147 DCHECK_LT((return_opcode == Instruction::RETURN_WIDE) ? reg + 1 : reg,
148 code_item->registers_size_);
149
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100150 if (result != nullptr) {
151 result->opcode = kInlineOpReturnArg;
152 result->flags = kInlineSpecial;
153 InlineReturnArgData* data = &result->d.return_data;
154 data->arg = reg - arg_start;
155 data->is_wide = (return_opcode == Instruction::RETURN_WIDE) ? 1u : 0u;
156 data->is_object = (return_opcode == Instruction::RETURN_OBJECT) ? 1u : 0u;
157 data->reserved = 0u;
158 data->reserved2 = 0u;
159 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000160 return true;
161}
162
163bool InlineMethodAnalyser::AnalyseConstMethod(const DexFile::CodeItem* code_item,
164 InlineMethod* result) {
165 const Instruction* instruction = Instruction::At(code_item->insns_);
166 const Instruction* return_instruction = instruction->Next();
167 Instruction::Code return_opcode = return_instruction->Opcode();
168 if (return_opcode != Instruction::RETURN &&
169 return_opcode != Instruction::RETURN_OBJECT) {
170 return false;
171 }
172
Ian Rogers29a26482014-05-02 15:27:29 -0700173 int32_t return_reg = return_instruction->VRegA_11x();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000174 DCHECK_LT(return_reg, code_item->registers_size_);
175
Ian Rogers29a26482014-05-02 15:27:29 -0700176 int32_t const_value = instruction->VRegB();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000177 if (instruction->Opcode() == Instruction::CONST_HIGH16) {
Ian Rogers29a26482014-05-02 15:27:29 -0700178 const_value <<= 16;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000179 }
Ian Rogers29a26482014-05-02 15:27:29 -0700180 DCHECK_LT(instruction->VRegA(), code_item->registers_size_);
181 if (instruction->VRegA() != return_reg) {
Vladimir Markoe3e02602014-03-12 15:42:41 +0000182 return false; // Not returning the value set by const?
183 }
Ian Rogers29a26482014-05-02 15:27:29 -0700184 if (return_opcode == Instruction::RETURN_OBJECT && const_value != 0) {
Vladimir Markoe3e02602014-03-12 15:42:41 +0000185 return false; // Returning non-null reference constant?
186 }
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100187 if (result != nullptr) {
188 result->opcode = kInlineOpNonWideConst;
189 result->flags = kInlineSpecial;
Ian Rogers29a26482014-05-02 15:27:29 -0700190 result->d.data = static_cast<uint64_t>(const_value);
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100191 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000192 return true;
193}
194
195bool InlineMethodAnalyser::AnalyseIGetMethod(verifier::MethodVerifier* verifier,
196 InlineMethod* result) {
197 const DexFile::CodeItem* code_item = verifier->CodeItem();
198 const Instruction* instruction = Instruction::At(code_item->insns_);
199 Instruction::Code opcode = instruction->Opcode();
200 DCHECK(IsInstructionIGet(opcode));
201
202 const Instruction* return_instruction = instruction->Next();
203 Instruction::Code return_opcode = return_instruction->Opcode();
204 if (!(return_opcode == Instruction::RETURN_WIDE && opcode == Instruction::IGET_WIDE) &&
205 !(return_opcode == Instruction::RETURN_OBJECT && opcode == Instruction::IGET_OBJECT) &&
206 !(return_opcode == Instruction::RETURN && opcode != Instruction::IGET_WIDE &&
207 opcode != Instruction::IGET_OBJECT)) {
208 return false;
209 }
210
211 uint32_t return_reg = return_instruction->VRegA_11x();
212 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1 : return_reg,
213 code_item->registers_size_);
214
215 uint32_t dst_reg = instruction->VRegA_22c();
216 uint32_t object_reg = instruction->VRegB_22c();
217 uint32_t field_idx = instruction->VRegC_22c();
218 uint32_t arg_start = code_item->registers_size_ - code_item->ins_size_;
219 DCHECK_GE(object_reg, arg_start);
220 DCHECK_LT(object_reg, code_item->registers_size_);
Vladimir Markoe1fced12014-04-04 14:52:53 +0100221 uint32_t object_arg = object_reg - arg_start;
222
Vladimir Markoe3e02602014-03-12 15:42:41 +0000223 DCHECK_LT(opcode == Instruction::IGET_WIDE ? dst_reg + 1 : dst_reg, code_item->registers_size_);
224 if (dst_reg != return_reg) {
225 return false; // Not returning the value retrieved by IGET?
226 }
227
Vladimir Markoe1fced12014-04-04 14:52:53 +0100228 if ((verifier->GetAccessFlags() & kAccStatic) != 0u || object_arg != 0u) {
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100229 // TODO: Implement inlining of IGET on non-"this" registers (needs correct stack trace for NPE).
230 // Allow synthetic accessors. We don't care about losing their stack frame in NPE.
231 if (!IsSyntheticAccessor(verifier->GetMethodReference())) {
232 return false;
233 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000234 }
235
Vladimir Markoe1fced12014-04-04 14:52:53 +0100236 // InlineIGetIPutData::object_arg is only 4 bits wide.
237 static constexpr uint16_t kMaxObjectArg = 15u;
238 if (object_arg > kMaxObjectArg) {
239 return false;
240 }
241
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100242 if (result != nullptr) {
243 InlineIGetIPutData* data = &result->d.ifield_data;
244 if (!ComputeSpecialAccessorInfo(field_idx, false, verifier, data)) {
245 return false;
246 }
247 result->opcode = kInlineOpIGet;
248 result->flags = kInlineSpecial;
249 data->op_variant = IGetVariant(opcode);
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100250 data->method_is_static = (verifier->GetAccessFlags() & kAccStatic) != 0u ? 1u : 0u;
Vladimir Markoe1fced12014-04-04 14:52:53 +0100251 data->object_arg = object_arg; // Allow IGET on any register, not just "this".
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100252 data->src_arg = 0u;
Vladimir Markoe1fced12014-04-04 14:52:53 +0100253 data->return_arg_plus1 = 0u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000254 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000255 return true;
256}
257
258bool InlineMethodAnalyser::AnalyseIPutMethod(verifier::MethodVerifier* verifier,
259 InlineMethod* result) {
260 const DexFile::CodeItem* code_item = verifier->CodeItem();
261 const Instruction* instruction = Instruction::At(code_item->insns_);
262 Instruction::Code opcode = instruction->Opcode();
263 DCHECK(IsInstructionIPut(opcode));
264
265 const Instruction* return_instruction = instruction->Next();
266 Instruction::Code return_opcode = return_instruction->Opcode();
Vladimir Markoe1fced12014-04-04 14:52:53 +0100267 uint32_t arg_start = code_item->registers_size_ - code_item->ins_size_;
268 uint16_t return_arg_plus1 = 0u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000269 if (return_opcode != Instruction::RETURN_VOID) {
Vladimir Markoe1fced12014-04-04 14:52:53 +0100270 if (return_opcode != Instruction::RETURN &&
271 return_opcode != Instruction::RETURN_OBJECT &&
272 return_opcode != Instruction::RETURN_WIDE) {
273 return false;
274 }
275 // Returning an argument.
276 uint32_t return_reg = return_instruction->VRegA_11x();
277 DCHECK_GE(return_reg, arg_start);
278 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1u : return_reg,
279 code_item->registers_size_);
280 return_arg_plus1 = return_reg - arg_start + 1u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000281 }
282
283 uint32_t src_reg = instruction->VRegA_22c();
284 uint32_t object_reg = instruction->VRegB_22c();
285 uint32_t field_idx = instruction->VRegC_22c();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000286 DCHECK_GE(object_reg, arg_start);
287 DCHECK_LT(object_reg, code_item->registers_size_);
288 DCHECK_GE(src_reg, arg_start);
289 DCHECK_LT(opcode == Instruction::IPUT_WIDE ? src_reg + 1 : src_reg, code_item->registers_size_);
Vladimir Markoe1fced12014-04-04 14:52:53 +0100290 uint32_t object_arg = object_reg - arg_start;
291 uint32_t src_arg = src_reg - arg_start;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000292
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100293 if ((verifier->GetAccessFlags() & kAccStatic) != 0u || object_arg != 0u) {
294 // TODO: Implement inlining of IPUT on non-"this" registers (needs correct stack trace for NPE).
295 // Allow synthetic accessors. We don't care about losing their stack frame in NPE.
296 if (!IsSyntheticAccessor(verifier->GetMethodReference())) {
297 return false;
298 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000299 }
300
Vladimir Markoe1fced12014-04-04 14:52:53 +0100301 // InlineIGetIPutData::object_arg/src_arg/return_arg_plus1 are each only 4 bits wide.
302 static constexpr uint16_t kMaxObjectArg = 15u;
303 static constexpr uint16_t kMaxSrcArg = 15u;
304 static constexpr uint16_t kMaxReturnArgPlus1 = 15u;
305 if (object_arg > kMaxObjectArg || src_arg > kMaxSrcArg || return_arg_plus1 > kMaxReturnArgPlus1) {
306 return false;
307 }
308
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100309 if (result != nullptr) {
310 InlineIGetIPutData* data = &result->d.ifield_data;
311 if (!ComputeSpecialAccessorInfo(field_idx, true, verifier, data)) {
312 return false;
313 }
314 result->opcode = kInlineOpIPut;
315 result->flags = kInlineSpecial;
316 data->op_variant = IPutVariant(opcode);
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100317 data->method_is_static = (verifier->GetAccessFlags() & kAccStatic) != 0u ? 1u : 0u;
Vladimir Markoe1fced12014-04-04 14:52:53 +0100318 data->object_arg = object_arg; // Allow IPUT on any register, not just "this".
319 data->src_arg = src_arg;
320 data->return_arg_plus1 = return_arg_plus1;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000321 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000322 return true;
323}
324
325bool InlineMethodAnalyser::ComputeSpecialAccessorInfo(uint32_t field_idx, bool is_put,
326 verifier::MethodVerifier* verifier,
327 InlineIGetIPutData* result) {
328 mirror::DexCache* dex_cache = verifier->GetDexCache();
329 uint32_t method_idx = verifier->GetMethodReference().dex_method_index;
330 mirror::ArtMethod* method = dex_cache->GetResolvedMethod(method_idx);
Mathieu Chartierc7853442015-03-27 14:35:38 -0700331 ArtField* field = Runtime::Current()->GetClassLinker()->GetResolvedField(field_idx, dex_cache);
Vladimir Markoe3e02602014-03-12 15:42:41 +0000332 if (method == nullptr || field == nullptr || field->IsStatic()) {
333 return false;
334 }
335 mirror::Class* method_class = method->GetDeclaringClass();
336 mirror::Class* field_class = field->GetDeclaringClass();
337 if (!method_class->CanAccessResolvedField(field_class, field, dex_cache, field_idx) ||
338 (is_put && field->IsFinal() && method_class != field_class)) {
339 return false;
340 }
341 DCHECK_GE(field->GetOffset().Int32Value(), 0);
342 result->field_idx = field_idx;
343 result->field_offset = field->GetOffset().Int32Value();
344 result->is_volatile = field->IsVolatile();
345 return true;
346}
347
348} // namespace art