blob: 518b0ece73ea86629fe520a6c36e249421171302 [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"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method-inl.h"
Andreas Gampe542451c2016-07-26 09:02:02 -070021#include "base/enums.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010022#include "class_linker-inl.h"
Elliott Hughes956af0f2014-12-11 14:34:28 -080023#include "dex_file-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000024#include "dex_instruction-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070025#include "dex_instruction.h"
Vladimir Marko354efa62016-02-04 19:46:56 +000026#include "dex_instruction_utils.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000027#include "mirror/class-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000028#include "mirror/dex_cache-inl.h"
Vladimir Markoe3e02602014-03-12 15:42:41 +000029
30/*
31 * NOTE: This code is part of the quick compiler. It lives in the runtime
32 * only to allow the debugger to check whether a method has been inlined.
33 */
34
35namespace art {
36
Vladimir Marko354efa62016-02-04 19:46:56 +000037namespace { // anonymous namespace
38
39// Helper class for matching a pattern.
40class Matcher {
41 public:
42 // Match function type.
43 typedef bool MatchFn(Matcher* matcher);
44
45 template <size_t size>
46 static bool Match(const DexFile::CodeItem* code_item, MatchFn* const (&pattern)[size]);
47
48 // Match and advance.
49
50 static bool Mark(Matcher* matcher);
51
52 template <bool (Matcher::*Fn)()>
53 static bool Required(Matcher* matcher);
54
55 template <bool (Matcher::*Fn)()>
56 static bool Repeated(Matcher* matcher); // On match, returns to the mark.
57
58 // Match an individual instruction.
59
60 template <Instruction::Code opcode> bool Opcode();
61 bool Const0();
62 bool IPutOnThis();
63
64 private:
65 explicit Matcher(const DexFile::CodeItem* code_item)
66 : code_item_(code_item),
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -070067 instruction_(code_item->Instructions().begin()),
Vladimir Marko354efa62016-02-04 19:46:56 +000068 pos_(0u),
69 mark_(0u) { }
70
71 static bool DoMatch(const DexFile::CodeItem* code_item, MatchFn* const* pattern, size_t size);
72
73 const DexFile::CodeItem* const code_item_;
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -070074 DexInstructionIterator instruction_;
Vladimir Marko354efa62016-02-04 19:46:56 +000075 size_t pos_;
76 size_t mark_;
77};
78
79template <size_t size>
80bool Matcher::Match(const DexFile::CodeItem* code_item, MatchFn* const (&pattern)[size]) {
81 return DoMatch(code_item, pattern, size);
82}
83
84bool Matcher::Mark(Matcher* matcher) {
85 matcher->pos_ += 1u; // Advance to the next match function before marking.
86 matcher->mark_ = matcher->pos_;
87 return true;
88}
89
90template <bool (Matcher::*Fn)()>
91bool Matcher::Required(Matcher* matcher) {
92 if (!(matcher->*Fn)()) {
93 return false;
94 }
95 matcher->pos_ += 1u;
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -070096 ++matcher->instruction_;
Vladimir Marko354efa62016-02-04 19:46:56 +000097 return true;
98}
99
100template <bool (Matcher::*Fn)()>
101bool Matcher::Repeated(Matcher* matcher) {
102 if (!(matcher->*Fn)()) {
103 // Didn't match optional instruction, try the next match function.
104 matcher->pos_ += 1u;
105 return true;
106 }
107 matcher->pos_ = matcher->mark_;
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700108 ++matcher->instruction_;
Vladimir Marko354efa62016-02-04 19:46:56 +0000109 return true;
110}
111
112template <Instruction::Code opcode>
113bool Matcher::Opcode() {
114 return instruction_->Opcode() == opcode;
115}
116
117// Match const 0.
118bool Matcher::Const0() {
119 return IsInstructionDirectConst(instruction_->Opcode()) &&
120 (instruction_->Opcode() == Instruction::CONST_WIDE ? instruction_->VRegB_51l() == 0
121 : instruction_->VRegB() == 0);
122}
123
124bool Matcher::IPutOnThis() {
125 DCHECK_NE(code_item_->ins_size_, 0u);
126 return IsInstructionIPut(instruction_->Opcode()) &&
127 instruction_->VRegB_22c() == code_item_->registers_size_ - code_item_->ins_size_;
128}
129
130bool Matcher::DoMatch(const DexFile::CodeItem* code_item, MatchFn* const* pattern, size_t size) {
131 Matcher matcher(code_item);
132 while (matcher.pos_ != size) {
133 if (!pattern[matcher.pos_](&matcher)) {
134 return false;
135 }
136 }
137 return true;
138}
139
140// Used for a single invoke in a constructor. In that situation, the method verifier makes
141// sure we invoke a constructor either in the same class or superclass with at least "this".
142ArtMethod* GetTargetConstructor(ArtMethod* method, const Instruction* invoke_direct)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700143 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko354efa62016-02-04 19:46:56 +0000144 DCHECK_EQ(invoke_direct->Opcode(), Instruction::INVOKE_DIRECT);
145 DCHECK_EQ(invoke_direct->VRegC_35c(),
146 method->GetCodeItem()->registers_size_ - method->GetCodeItem()->ins_size_);
147 uint32_t method_index = invoke_direct->VRegB_35c();
Vladimir Marko07bfbac2017-07-06 14:55:02 +0100148 ArtMethod* target_method = Runtime::Current()->GetClassLinker()->LookupResolvedMethod(
149 method_index, method->GetDexCache(), method->GetClassLoader());
Vladimir Marko354efa62016-02-04 19:46:56 +0000150 if (kIsDebugBuild && target_method != nullptr) {
151 CHECK(!target_method->IsStatic());
152 CHECK(target_method->IsConstructor());
153 CHECK(target_method->GetDeclaringClass() == method->GetDeclaringClass() ||
154 target_method->GetDeclaringClass() == method->GetDeclaringClass()->GetSuperClass());
155 }
156 return target_method;
157}
158
159// Return the forwarded arguments and check that all remaining arguments are zero.
160// If the check fails, return static_cast<size_t>(-1).
161size_t CountForwardedConstructorArguments(const DexFile::CodeItem* code_item,
162 const Instruction* invoke_direct,
163 uint16_t zero_vreg_mask) {
164 DCHECK_EQ(invoke_direct->Opcode(), Instruction::INVOKE_DIRECT);
165 size_t number_of_args = invoke_direct->VRegA_35c();
166 DCHECK_NE(number_of_args, 0u);
167 uint32_t args[Instruction::kMaxVarArgRegs];
168 invoke_direct->GetVarArgs(args);
169 uint16_t this_vreg = args[0];
170 DCHECK_EQ(this_vreg, code_item->registers_size_ - code_item->ins_size_); // Checked by verifier.
171 size_t forwarded = 1u;
172 while (forwarded < number_of_args &&
173 args[forwarded] == this_vreg + forwarded &&
174 (zero_vreg_mask & (1u << args[forwarded])) == 0) {
175 ++forwarded;
176 }
177 for (size_t i = forwarded; i != number_of_args; ++i) {
178 if ((zero_vreg_mask & (1u << args[i])) == 0) {
179 return static_cast<size_t>(-1);
180 }
181 }
182 return forwarded;
183}
184
185uint16_t GetZeroVRegMask(const Instruction* const0) {
186 DCHECK(IsInstructionDirectConst(const0->Opcode()));
187 DCHECK((const0->Opcode() == Instruction::CONST_WIDE) ? const0->VRegB_51l() == 0u
188 : const0->VRegB() == 0);
189 uint16_t base_mask = IsInstructionConstWide(const0->Opcode()) ? 3u : 1u;
190 return base_mask << const0->VRegA();
191}
192
193// We limit the number of IPUTs storing parameters. There can be any number
194// of IPUTs that store the value 0 as they are useless in a constructor as
195// the object always starts zero-initialized. We also eliminate all but the
196// last store to any field as they are not observable; not even if the field
197// is volatile as no reference to the object can escape from a constructor
198// with this pattern.
199static constexpr size_t kMaxConstructorIPuts = 3u;
200
201struct ConstructorIPutData {
202 ConstructorIPutData() : field_index(DexFile::kDexNoIndex16), arg(0u) { }
203
204 uint16_t field_index;
205 uint16_t arg;
206};
207
208bool RecordConstructorIPut(ArtMethod* method,
209 const Instruction* new_iput,
210 uint16_t this_vreg,
211 uint16_t zero_vreg_mask,
212 /*inout*/ ConstructorIPutData (&iputs)[kMaxConstructorIPuts])
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700213 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko354efa62016-02-04 19:46:56 +0000214 DCHECK(IsInstructionIPut(new_iput->Opcode()));
215 uint32_t field_index = new_iput->VRegC_22c();
Vladimir Markof44d36c2017-03-14 14:18:46 +0000216 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
217 ArtField* field = class_linker->LookupResolvedField(field_index, method, /* is_static */ false);
Vladimir Marko354efa62016-02-04 19:46:56 +0000218 if (UNLIKELY(field == nullptr)) {
219 return false;
220 }
221 // Remove previous IPUT to the same field, if any. Different field indexes may refer
222 // to the same field, so we need to compare resolved fields from the dex cache.
223 for (size_t old_pos = 0; old_pos != arraysize(iputs); ++old_pos) {
224 if (iputs[old_pos].field_index == DexFile::kDexNoIndex16) {
225 break;
226 }
Vladimir Markof44d36c2017-03-14 14:18:46 +0000227 ArtField* f = class_linker->LookupResolvedField(iputs[old_pos].field_index,
228 method,
229 /* is_static */ false);
Vladimir Marko354efa62016-02-04 19:46:56 +0000230 DCHECK(f != nullptr);
231 if (f == field) {
232 auto back_it = std::copy(iputs + old_pos + 1, iputs + arraysize(iputs), iputs + old_pos);
233 *back_it = ConstructorIPutData();
234 break;
235 }
236 }
237 // If the stored value isn't zero, record the IPUT.
238 if ((zero_vreg_mask & (1u << new_iput->VRegA_22c())) == 0u) {
239 size_t new_pos = 0;
240 while (new_pos != arraysize(iputs) && iputs[new_pos].field_index != DexFile::kDexNoIndex16) {
241 ++new_pos;
242 }
243 if (new_pos == arraysize(iputs)) {
244 return false; // Exceeded capacity of the output array.
245 }
246 iputs[new_pos].field_index = field_index;
247 iputs[new_pos].arg = new_iput->VRegA_22c() - this_vreg;
248 }
249 return true;
250}
251
252bool DoAnalyseConstructor(const DexFile::CodeItem* code_item,
253 ArtMethod* method,
254 /*inout*/ ConstructorIPutData (&iputs)[kMaxConstructorIPuts])
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700255 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko354efa62016-02-04 19:46:56 +0000256 // On entry we should not have any IPUTs yet.
257 DCHECK_EQ(0, std::count_if(
258 iputs,
259 iputs + arraysize(iputs),
260 [](const ConstructorIPutData& iput_data) {
261 return iput_data.field_index != DexFile::kDexNoIndex16;
262 }));
263
264 // Limit the maximum number of code units we're willing to match.
265 static constexpr size_t kMaxCodeUnits = 16u;
266
267 // Limit the number of registers that the constructor may use to 16.
268 // Given that IPUTs must use low 16 registers and we do not match MOVEs,
269 // this is a reasonable limitation.
270 static constexpr size_t kMaxVRegs = 16u;
271
272 // We try to match a constructor that calls another constructor (either in
273 // superclass or in the same class) with the same parameters, or with some
274 // parameters truncated (allowed only for calls to superclass constructor)
275 // or with extra parameters with value 0 (with any type, including null).
276 // This call can be followed by optional IPUTs on "this" storing either one
277 // of the parameters or 0 and the code must then finish with RETURN_VOID.
278 // The called constructor must be either java.lang.Object.<init>() or it
279 // must also match the same pattern.
280 static Matcher::MatchFn* const kConstructorPattern[] = {
281 &Matcher::Mark,
282 &Matcher::Repeated<&Matcher::Const0>,
283 &Matcher::Required<&Matcher::Opcode<Instruction::INVOKE_DIRECT>>,
284 &Matcher::Mark,
285 &Matcher::Repeated<&Matcher::Const0>,
286 &Matcher::Repeated<&Matcher::IPutOnThis>,
287 &Matcher::Required<&Matcher::Opcode<Instruction::RETURN_VOID>>,
288 };
289
290 DCHECK(method != nullptr);
291 DCHECK(!method->IsStatic());
292 DCHECK(method->IsConstructor());
293 DCHECK(code_item != nullptr);
294 if (!method->GetDeclaringClass()->IsVerified() ||
295 code_item->insns_size_in_code_units_ > kMaxCodeUnits ||
296 code_item->registers_size_ > kMaxVRegs ||
297 !Matcher::Match(code_item, kConstructorPattern)) {
298 return false;
299 }
300
301 // Verify the invoke, prevent a few odd cases and collect IPUTs.
302 uint16_t this_vreg = code_item->registers_size_ - code_item->ins_size_;
303 uint16_t zero_vreg_mask = 0u;
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700304
Mathieu Chartier2b2bef22017-10-26 17:10:19 -0700305 for (const DexInstructionPcPair& pair : code_item->Instructions()) {
306 const Instruction& instruction = pair.Inst();
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700307 if (instruction.Opcode() == Instruction::RETURN_VOID) {
308 break;
309 } else if (instruction.Opcode() == Instruction::INVOKE_DIRECT) {
310 ArtMethod* target_method = GetTargetConstructor(method, &instruction);
Vladimir Marko354efa62016-02-04 19:46:56 +0000311 if (target_method == nullptr) {
312 return false;
313 }
314 // We allow forwarding constructors only if they pass more arguments
315 // to prevent infinite recursion.
316 if (target_method->GetDeclaringClass() == method->GetDeclaringClass() &&
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700317 instruction.VRegA_35c() <= code_item->ins_size_) {
Vladimir Marko354efa62016-02-04 19:46:56 +0000318 return false;
319 }
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700320 size_t forwarded = CountForwardedConstructorArguments(code_item, &instruction, zero_vreg_mask);
Vladimir Marko354efa62016-02-04 19:46:56 +0000321 if (forwarded == static_cast<size_t>(-1)) {
322 return false;
323 }
324 if (target_method->GetDeclaringClass()->IsObjectClass()) {
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700325 DCHECK_EQ(target_method->GetCodeItem()->Instructions().begin()->Opcode(),
Nicolas Geoffray141de8c2016-03-23 08:22:12 +0000326 Instruction::RETURN_VOID);
Vladimir Marko354efa62016-02-04 19:46:56 +0000327 } else {
328 const DexFile::CodeItem* target_code_item = target_method->GetCodeItem();
329 if (target_code_item == nullptr) {
330 return false; // Native constructor?
331 }
332 if (!DoAnalyseConstructor(target_code_item, target_method, iputs)) {
333 return false;
334 }
335 // Prune IPUTs with zero input.
336 auto kept_end = std::remove_if(
337 iputs,
338 iputs + arraysize(iputs),
339 [forwarded](const ConstructorIPutData& iput_data) {
340 return iput_data.arg >= forwarded;
341 });
342 std::fill(kept_end, iputs + arraysize(iputs), ConstructorIPutData());
343 // If we have any IPUTs from the call, check that the target method is in the same
344 // dex file (compare DexCache references), otherwise field_indexes would be bogus.
345 if (iputs[0].field_index != DexFile::kDexNoIndex16 &&
346 target_method->GetDexCache() != method->GetDexCache()) {
347 return false;
348 }
349 }
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700350 } else if (IsInstructionDirectConst(instruction.Opcode())) {
351 zero_vreg_mask |= GetZeroVRegMask(&instruction);
Vladimir Marko354efa62016-02-04 19:46:56 +0000352 if ((zero_vreg_mask & (1u << this_vreg)) != 0u) {
353 return false; // Overwriting `this` is unsupported.
354 }
355 } else {
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700356 DCHECK(IsInstructionIPut(instruction.Opcode()));
357 DCHECK_EQ(instruction.VRegB_22c(), this_vreg);
358 if (!RecordConstructorIPut(method, &instruction, this_vreg, zero_vreg_mask, iputs)) {
Vladimir Marko354efa62016-02-04 19:46:56 +0000359 return false;
360 }
361 }
362 }
363 return true;
364}
365
366} // anonymous namespace
367
368bool AnalyseConstructor(const DexFile::CodeItem* code_item,
369 ArtMethod* method,
370 InlineMethod* result)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -0700371 REQUIRES_SHARED(Locks::mutator_lock_) {
Vladimir Marko354efa62016-02-04 19:46:56 +0000372 ConstructorIPutData iputs[kMaxConstructorIPuts];
373 if (!DoAnalyseConstructor(code_item, method, iputs)) {
374 return false;
375 }
376 static_assert(kMaxConstructorIPuts == 3, "Unexpected limit"); // Code below depends on this.
377 DCHECK(iputs[0].field_index != DexFile::kDexNoIndex16 ||
378 iputs[1].field_index == DexFile::kDexNoIndex16);
379 DCHECK(iputs[1].field_index != DexFile::kDexNoIndex16 ||
380 iputs[2].field_index == DexFile::kDexNoIndex16);
381
382#define STORE_IPUT(n) \
383 do { \
384 result->d.constructor_data.iput##n##_field_index = iputs[n].field_index; \
385 result->d.constructor_data.iput##n##_arg = iputs[n].arg; \
386 } while (false)
387
388 STORE_IPUT(0);
389 STORE_IPUT(1);
390 STORE_IPUT(2);
391#undef STORE_IPUT
392
393 result->opcode = kInlineOpConstructor;
Vladimir Marko354efa62016-02-04 19:46:56 +0000394 result->d.constructor_data.reserved = 0u;
395 return true;
396}
397
Andreas Gampe575e78c2014-11-03 23:41:03 -0800398static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET), "iget type");
399static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_WIDE), "iget_wide type");
400static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_OBJECT),
401 "iget_object type");
402static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BOOLEAN),
403 "iget_boolean type");
404static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_BYTE), "iget_byte type");
405static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_CHAR), "iget_char type");
406static_assert(InlineMethodAnalyser::IsInstructionIGet(Instruction::IGET_SHORT), "iget_short type");
407static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT), "iput type");
408static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_WIDE), "iput_wide type");
409static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_OBJECT),
410 "iput_object type");
411static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_BOOLEAN),
412 "iput_boolean type");
413static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_BYTE), "iput_byte type");
414static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_CHAR), "iput_char type");
415static_assert(InlineMethodAnalyser::IsInstructionIPut(Instruction::IPUT_SHORT), "iput_short type");
416static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET) ==
417 InlineMethodAnalyser::IPutVariant(Instruction::IPUT), "iget/iput variant");
418static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_WIDE) ==
419 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_WIDE), "iget/iput_wide variant");
420static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_OBJECT) ==
421 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_OBJECT), "iget/iput_object variant");
422static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BOOLEAN) ==
423 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_BOOLEAN), "iget/iput_boolean variant");
424static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_BYTE) ==
425 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_BYTE), "iget/iput_byte variant");
426static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_CHAR) ==
427 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_CHAR), "iget/iput_char variant");
428static_assert(InlineMethodAnalyser::IGetVariant(Instruction::IGET_SHORT) ==
429 InlineMethodAnalyser::IPutVariant(Instruction::IPUT_SHORT), "iget/iput_short variant");
Vladimir Markoe3e02602014-03-12 15:42:41 +0000430
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000431bool InlineMethodAnalyser::AnalyseMethodCode(ArtMethod* method, InlineMethod* result) {
432 const DexFile::CodeItem* code_item = method->GetCodeItem();
433 if (code_item == nullptr) {
434 // Native or abstract.
435 return false;
436 }
Andreas Gampe5d08fcc2017-06-05 17:56:46 -0700437 return AnalyseMethodCode(code_item,
438 MethodReference(method->GetDexFile(), method->GetDexMethodIndex()),
439 method->IsStatic(),
440 method,
441 result);
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000442}
443
444bool InlineMethodAnalyser::AnalyseMethodCode(const DexFile::CodeItem* code_item,
445 const MethodReference& method_ref,
446 bool is_static,
447 ArtMethod* method,
448 InlineMethod* result) {
Vladimir Markoe3e02602014-03-12 15:42:41 +0000449 // We currently support only plain return or 2-instruction methods.
450
Vladimir Markoe3e02602014-03-12 15:42:41 +0000451 DCHECK_NE(code_item->insns_size_in_code_units_, 0u);
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700452 Instruction::Code opcode = code_item->Instructions().begin()->Opcode();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000453
454 switch (opcode) {
455 case Instruction::RETURN_VOID:
Vladimir Marko9f35ccd2016-02-02 20:12:32 +0000456 if (result != nullptr) {
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000457 result->opcode = kInlineOpNop;
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000458 result->d.data = 0u;
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100459 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000460 return true;
461 case Instruction::RETURN:
462 case Instruction::RETURN_OBJECT:
463 case Instruction::RETURN_WIDE:
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000464 return AnalyseReturnMethod(code_item, result);
Vladimir Markoe3e02602014-03-12 15:42:41 +0000465 case Instruction::CONST:
466 case Instruction::CONST_4:
467 case Instruction::CONST_16:
468 case Instruction::CONST_HIGH16:
469 // TODO: Support wide constants (RETURN_WIDE).
Vladimir Marko354efa62016-02-04 19:46:56 +0000470 if (AnalyseConstMethod(code_item, result)) {
471 return true;
472 }
473 FALLTHROUGH_INTENDED;
474 case Instruction::CONST_WIDE:
475 case Instruction::CONST_WIDE_16:
476 case Instruction::CONST_WIDE_32:
477 case Instruction::CONST_WIDE_HIGH16:
478 case Instruction::INVOKE_DIRECT:
479 if (method != nullptr && !method->IsStatic() && method->IsConstructor()) {
480 return AnalyseConstructor(code_item, method, result);
481 }
482 return false;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000483 case Instruction::IGET:
484 case Instruction::IGET_OBJECT:
485 case Instruction::IGET_BOOLEAN:
486 case Instruction::IGET_BYTE:
487 case Instruction::IGET_CHAR:
488 case Instruction::IGET_SHORT:
489 case Instruction::IGET_WIDE:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800490 // TODO: Add handling for JIT.
491 // case Instruction::IGET_QUICK:
492 // case Instruction::IGET_WIDE_QUICK:
493 // case Instruction::IGET_OBJECT_QUICK:
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000494 return AnalyseIGetMethod(code_item, method_ref, is_static, method, result);
Vladimir Markoe3e02602014-03-12 15:42:41 +0000495 case Instruction::IPUT:
496 case Instruction::IPUT_OBJECT:
497 case Instruction::IPUT_BOOLEAN:
498 case Instruction::IPUT_BYTE:
499 case Instruction::IPUT_CHAR:
500 case Instruction::IPUT_SHORT:
501 case Instruction::IPUT_WIDE:
Mathieu Chartiere5f13e52015-02-24 09:37:21 -0800502 // TODO: Add handling for JIT.
503 // case Instruction::IPUT_QUICK:
504 // case Instruction::IPUT_WIDE_QUICK:
505 // case Instruction::IPUT_OBJECT_QUICK:
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000506 return AnalyseIPutMethod(code_item, method_ref, is_static, method, result);
Vladimir Markoe3e02602014-03-12 15:42:41 +0000507 default:
508 return false;
509 }
510}
511
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100512bool InlineMethodAnalyser::IsSyntheticAccessor(MethodReference ref) {
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700513 const DexFile::MethodId& method_id = ref.dex_file->GetMethodId(ref.index);
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100514 const char* method_name = ref.dex_file->GetMethodName(method_id);
Vladimir Markod5f10052015-05-06 14:09:04 +0100515 // javac names synthetic accessors "access$nnn",
516 // jack names them "-getN", "-putN", "-wrapN".
517 return strncmp(method_name, "access$", strlen("access$")) == 0 ||
518 strncmp(method_name, "-", strlen("-")) == 0;
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100519}
520
Vladimir Markoe3e02602014-03-12 15:42:41 +0000521bool InlineMethodAnalyser::AnalyseReturnMethod(const DexFile::CodeItem* code_item,
522 InlineMethod* result) {
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700523 DexInstructionIterator return_instruction = code_item->Instructions().begin();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000524 Instruction::Code return_opcode = return_instruction->Opcode();
525 uint32_t reg = return_instruction->VRegA_11x();
526 uint32_t arg_start = code_item->registers_size_ - code_item->ins_size_;
527 DCHECK_GE(reg, arg_start);
528 DCHECK_LT((return_opcode == Instruction::RETURN_WIDE) ? reg + 1 : reg,
529 code_item->registers_size_);
530
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100531 if (result != nullptr) {
532 result->opcode = kInlineOpReturnArg;
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100533 InlineReturnArgData* data = &result->d.return_data;
534 data->arg = reg - arg_start;
535 data->is_wide = (return_opcode == Instruction::RETURN_WIDE) ? 1u : 0u;
536 data->is_object = (return_opcode == Instruction::RETURN_OBJECT) ? 1u : 0u;
537 data->reserved = 0u;
538 data->reserved2 = 0u;
539 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000540 return true;
541}
542
543bool InlineMethodAnalyser::AnalyseConstMethod(const DexFile::CodeItem* code_item,
544 InlineMethod* result) {
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700545 DexInstructionIterator instruction = code_item->Instructions().begin();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000546 const Instruction* return_instruction = instruction->Next();
547 Instruction::Code return_opcode = return_instruction->Opcode();
548 if (return_opcode != Instruction::RETURN &&
549 return_opcode != Instruction::RETURN_OBJECT) {
550 return false;
551 }
552
Ian Rogers29a26482014-05-02 15:27:29 -0700553 int32_t return_reg = return_instruction->VRegA_11x();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000554 DCHECK_LT(return_reg, code_item->registers_size_);
555
Ian Rogers29a26482014-05-02 15:27:29 -0700556 int32_t const_value = instruction->VRegB();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000557 if (instruction->Opcode() == Instruction::CONST_HIGH16) {
Ian Rogers29a26482014-05-02 15:27:29 -0700558 const_value <<= 16;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000559 }
Ian Rogers29a26482014-05-02 15:27:29 -0700560 DCHECK_LT(instruction->VRegA(), code_item->registers_size_);
561 if (instruction->VRegA() != return_reg) {
Vladimir Markoe3e02602014-03-12 15:42:41 +0000562 return false; // Not returning the value set by const?
563 }
Ian Rogers29a26482014-05-02 15:27:29 -0700564 if (return_opcode == Instruction::RETURN_OBJECT && const_value != 0) {
Vladimir Markoe3e02602014-03-12 15:42:41 +0000565 return false; // Returning non-null reference constant?
566 }
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100567 if (result != nullptr) {
568 result->opcode = kInlineOpNonWideConst;
Ian Rogers29a26482014-05-02 15:27:29 -0700569 result->d.data = static_cast<uint64_t>(const_value);
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100570 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000571 return true;
572}
573
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000574bool InlineMethodAnalyser::AnalyseIGetMethod(const DexFile::CodeItem* code_item,
575 const MethodReference& method_ref,
576 bool is_static,
577 ArtMethod* method,
Vladimir Markoe3e02602014-03-12 15:42:41 +0000578 InlineMethod* result) {
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700579 DexInstructionIterator instruction = code_item->Instructions().begin();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000580 Instruction::Code opcode = instruction->Opcode();
581 DCHECK(IsInstructionIGet(opcode));
582
583 const Instruction* return_instruction = instruction->Next();
584 Instruction::Code return_opcode = return_instruction->Opcode();
585 if (!(return_opcode == Instruction::RETURN_WIDE && opcode == Instruction::IGET_WIDE) &&
586 !(return_opcode == Instruction::RETURN_OBJECT && opcode == Instruction::IGET_OBJECT) &&
587 !(return_opcode == Instruction::RETURN && opcode != Instruction::IGET_WIDE &&
588 opcode != Instruction::IGET_OBJECT)) {
589 return false;
590 }
591
592 uint32_t return_reg = return_instruction->VRegA_11x();
593 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1 : return_reg,
594 code_item->registers_size_);
595
596 uint32_t dst_reg = instruction->VRegA_22c();
597 uint32_t object_reg = instruction->VRegB_22c();
598 uint32_t field_idx = instruction->VRegC_22c();
599 uint32_t arg_start = code_item->registers_size_ - code_item->ins_size_;
600 DCHECK_GE(object_reg, arg_start);
601 DCHECK_LT(object_reg, code_item->registers_size_);
Vladimir Markoe1fced12014-04-04 14:52:53 +0100602 uint32_t object_arg = object_reg - arg_start;
603
Vladimir Markoe3e02602014-03-12 15:42:41 +0000604 DCHECK_LT(opcode == Instruction::IGET_WIDE ? dst_reg + 1 : dst_reg, code_item->registers_size_);
605 if (dst_reg != return_reg) {
606 return false; // Not returning the value retrieved by IGET?
607 }
608
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000609 if (is_static || object_arg != 0u) {
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100610 // TODO: Implement inlining of IGET on non-"this" registers (needs correct stack trace for NPE).
611 // Allow synthetic accessors. We don't care about losing their stack frame in NPE.
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000612 if (!IsSyntheticAccessor(method_ref)) {
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100613 return false;
614 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000615 }
616
Vladimir Markoe1fced12014-04-04 14:52:53 +0100617 // InlineIGetIPutData::object_arg is only 4 bits wide.
618 static constexpr uint16_t kMaxObjectArg = 15u;
619 if (object_arg > kMaxObjectArg) {
620 return false;
621 }
622
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100623 if (result != nullptr) {
624 InlineIGetIPutData* data = &result->d.ifield_data;
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000625 if (!ComputeSpecialAccessorInfo(method, field_idx, false, data)) {
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100626 return false;
627 }
628 result->opcode = kInlineOpIGet;
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100629 data->op_variant = IGetVariant(opcode);
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000630 data->method_is_static = is_static ? 1u : 0u;
Vladimir Markoe1fced12014-04-04 14:52:53 +0100631 data->object_arg = object_arg; // Allow IGET on any register, not just "this".
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100632 data->src_arg = 0u;
Vladimir Markoe1fced12014-04-04 14:52:53 +0100633 data->return_arg_plus1 = 0u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000634 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000635 return true;
636}
637
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000638bool InlineMethodAnalyser::AnalyseIPutMethod(const DexFile::CodeItem* code_item,
639 const MethodReference& method_ref,
640 bool is_static,
641 ArtMethod* method,
Vladimir Markoe3e02602014-03-12 15:42:41 +0000642 InlineMethod* result) {
Mathieu Chartier1d2d4ff2017-09-23 16:11:06 -0700643 DexInstructionIterator instruction = code_item->Instructions().begin();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000644 Instruction::Code opcode = instruction->Opcode();
645 DCHECK(IsInstructionIPut(opcode));
646
647 const Instruction* return_instruction = instruction->Next();
648 Instruction::Code return_opcode = return_instruction->Opcode();
Vladimir Markoe1fced12014-04-04 14:52:53 +0100649 uint32_t arg_start = code_item->registers_size_ - code_item->ins_size_;
650 uint16_t return_arg_plus1 = 0u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000651 if (return_opcode != Instruction::RETURN_VOID) {
Vladimir Markoe1fced12014-04-04 14:52:53 +0100652 if (return_opcode != Instruction::RETURN &&
653 return_opcode != Instruction::RETURN_OBJECT &&
654 return_opcode != Instruction::RETURN_WIDE) {
655 return false;
656 }
657 // Returning an argument.
658 uint32_t return_reg = return_instruction->VRegA_11x();
659 DCHECK_GE(return_reg, arg_start);
660 DCHECK_LT(return_opcode == Instruction::RETURN_WIDE ? return_reg + 1u : return_reg,
661 code_item->registers_size_);
662 return_arg_plus1 = return_reg - arg_start + 1u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000663 }
664
665 uint32_t src_reg = instruction->VRegA_22c();
666 uint32_t object_reg = instruction->VRegB_22c();
667 uint32_t field_idx = instruction->VRegC_22c();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000668 DCHECK_GE(object_reg, arg_start);
669 DCHECK_LT(object_reg, code_item->registers_size_);
670 DCHECK_GE(src_reg, arg_start);
671 DCHECK_LT(opcode == Instruction::IPUT_WIDE ? src_reg + 1 : src_reg, code_item->registers_size_);
Vladimir Markoe1fced12014-04-04 14:52:53 +0100672 uint32_t object_arg = object_reg - arg_start;
673 uint32_t src_arg = src_reg - arg_start;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000674
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000675 if (is_static || object_arg != 0u) {
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100676 // TODO: Implement inlining of IPUT on non-"this" registers (needs correct stack trace for NPE).
677 // Allow synthetic accessors. We don't care about losing their stack frame in NPE.
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000678 if (!IsSyntheticAccessor(method_ref)) {
Vladimir Markoc8f60a62014-04-02 15:24:05 +0100679 return false;
680 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000681 }
682
Vladimir Markoe1fced12014-04-04 14:52:53 +0100683 // InlineIGetIPutData::object_arg/src_arg/return_arg_plus1 are each only 4 bits wide.
684 static constexpr uint16_t kMaxObjectArg = 15u;
685 static constexpr uint16_t kMaxSrcArg = 15u;
686 static constexpr uint16_t kMaxReturnArgPlus1 = 15u;
687 if (object_arg > kMaxObjectArg || src_arg > kMaxSrcArg || return_arg_plus1 > kMaxReturnArgPlus1) {
688 return false;
689 }
690
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100691 if (result != nullptr) {
692 InlineIGetIPutData* data = &result->d.ifield_data;
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000693 if (!ComputeSpecialAccessorInfo(method, field_idx, true, data)) {
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100694 return false;
695 }
696 result->opcode = kInlineOpIPut;
Sebastien Hertz2c87c4d2014-03-21 11:31:51 +0100697 data->op_variant = IPutVariant(opcode);
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000698 data->method_is_static = is_static ? 1u : 0u;
Vladimir Markoe1fced12014-04-04 14:52:53 +0100699 data->object_arg = object_arg; // Allow IPUT on any register, not just "this".
700 data->src_arg = src_arg;
701 data->return_arg_plus1 = return_arg_plus1;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000702 }
Vladimir Markoe3e02602014-03-12 15:42:41 +0000703 return true;
704}
705
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000706bool InlineMethodAnalyser::ComputeSpecialAccessorInfo(ArtMethod* method,
707 uint32_t field_idx,
708 bool is_put,
Vladimir Markoe3e02602014-03-12 15:42:41 +0000709 InlineIGetIPutData* result) {
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000710 if (method == nullptr) {
711 return false;
712 }
Vladimir Markof44d36c2017-03-14 14:18:46 +0000713 ObjPtr<mirror::DexCache> dex_cache = method->GetDexCache();
714 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
715 ArtField* field = class_linker->LookupResolvedField(field_idx, method, /* is_static */ false);
Vladimir Markobe10e8e2016-01-22 12:09:44 +0000716 if (field == nullptr || field->IsStatic()) {
Vladimir Markoe3e02602014-03-12 15:42:41 +0000717 return false;
718 }
Mathieu Chartier3398c782016-09-30 10:27:43 -0700719 ObjPtr<mirror::Class> method_class = method->GetDeclaringClass();
720 ObjPtr<mirror::Class> field_class = field->GetDeclaringClass();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000721 if (!method_class->CanAccessResolvedField(field_class, field, dex_cache, field_idx) ||
722 (is_put && field->IsFinal() && method_class != field_class)) {
723 return false;
724 }
725 DCHECK_GE(field->GetOffset().Int32Value(), 0);
Vladimir Marko8b3f8352016-03-09 13:45:39 +0000726 // Do not interleave function calls with bit field writes to placate valgrind. Bug: 27552451.
727 uint32_t field_offset = field->GetOffset().Uint32Value();
728 bool is_volatile = field->IsVolatile();
Vladimir Markoe3e02602014-03-12 15:42:41 +0000729 result->field_idx = field_idx;
Vladimir Marko8b3f8352016-03-09 13:45:39 +0000730 result->field_offset = field_offset;
731 result->is_volatile = is_volatile ? 1u : 0u;
Vladimir Markoe3e02602014-03-12 15:42:41 +0000732 return true;
733}
734
735} // namespace art