blob: b66883f6adfdad860eed000021f1d634218bf5be [file] [log] [blame]
David Brazdildee58d62016-04-07 09:54:26 +00001/*
2 * Copyright (C) 2016 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 "instruction_builder.h"
18
Matthew Gharrity465ecc82016-07-19 21:32:52 +000019#include "art_method-inl.h"
David Brazdildee58d62016-04-07 09:54:26 +000020#include "bytecode_utils.h"
21#include "class_linker.h"
Andreas Gampe26de38b2016-07-27 17:53:11 -070022#include "dex_instruction-inl.h"
David Brazdildee58d62016-04-07 09:54:26 +000023#include "driver/compiler_options.h"
Andreas Gampe75a7db62016-09-26 12:04:26 -070024#include "imtable-inl.h"
Mathieu Chartierde4b08f2017-07-10 14:13:41 -070025#include "quicken_info.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070026#include "scoped_thread_state_change-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070027#include "sharpening.h"
David Brazdildee58d62016-04-07 09:54:26 +000028
29namespace art {
30
David Brazdildee58d62016-04-07 09:54:26 +000031HBasicBlock* HInstructionBuilder::FindBlockStartingAt(uint32_t dex_pc) const {
32 return block_builder_->GetBlockAt(dex_pc);
33}
34
Mingyao Yang01b47b02017-02-03 12:09:57 -080035inline ArenaVector<HInstruction*>* HInstructionBuilder::GetLocalsFor(HBasicBlock* block) {
David Brazdildee58d62016-04-07 09:54:26 +000036 ArenaVector<HInstruction*>* locals = &locals_for_[block->GetBlockId()];
37 const size_t vregs = graph_->GetNumberOfVRegs();
Mingyao Yang01b47b02017-02-03 12:09:57 -080038 if (locals->size() == vregs) {
39 return locals;
40 }
41 return GetLocalsForWithAllocation(block, locals, vregs);
42}
David Brazdildee58d62016-04-07 09:54:26 +000043
Mingyao Yang01b47b02017-02-03 12:09:57 -080044ArenaVector<HInstruction*>* HInstructionBuilder::GetLocalsForWithAllocation(
45 HBasicBlock* block,
46 ArenaVector<HInstruction*>* locals,
47 const size_t vregs) {
48 DCHECK_NE(locals->size(), vregs);
49 locals->resize(vregs, nullptr);
50 if (block->IsCatchBlock()) {
51 // We record incoming inputs of catch phis at throwing instructions and
52 // must therefore eagerly create the phis. Phis for undefined vregs will
53 // be deleted when the first throwing instruction with the vreg undefined
54 // is encountered. Unused phis will be removed by dead phi analysis.
55 for (size_t i = 0; i < vregs; ++i) {
56 // No point in creating the catch phi if it is already undefined at
57 // the first throwing instruction.
58 HInstruction* current_local_value = (*current_locals_)[i];
59 if (current_local_value != nullptr) {
60 HPhi* phi = new (arena_) HPhi(
61 arena_,
62 i,
63 0,
64 current_local_value->GetType());
65 block->AddPhi(phi);
66 (*locals)[i] = phi;
David Brazdildee58d62016-04-07 09:54:26 +000067 }
68 }
69 }
70 return locals;
71}
72
Mingyao Yang01b47b02017-02-03 12:09:57 -080073inline HInstruction* HInstructionBuilder::ValueOfLocalAt(HBasicBlock* block, size_t local) {
David Brazdildee58d62016-04-07 09:54:26 +000074 ArenaVector<HInstruction*>* locals = GetLocalsFor(block);
75 return (*locals)[local];
76}
77
78void HInstructionBuilder::InitializeBlockLocals() {
79 current_locals_ = GetLocalsFor(current_block_);
80
81 if (current_block_->IsCatchBlock()) {
82 // Catch phis were already created and inputs collected from throwing sites.
83 if (kIsDebugBuild) {
84 // Make sure there was at least one throwing instruction which initialized
85 // locals (guaranteed by HGraphBuilder) and that all try blocks have been
86 // visited already (from HTryBoundary scoping and reverse post order).
87 bool catch_block_visited = false;
Vladimir Marko2c45bc92016-10-25 16:54:12 +010088 for (HBasicBlock* current : graph_->GetReversePostOrder()) {
David Brazdildee58d62016-04-07 09:54:26 +000089 if (current == current_block_) {
90 catch_block_visited = true;
91 } else if (current->IsTryBlock()) {
92 const HTryBoundary& try_entry = current->GetTryCatchInformation()->GetTryEntry();
93 if (try_entry.HasExceptionHandler(*current_block_)) {
94 DCHECK(!catch_block_visited) << "Catch block visited before its try block.";
95 }
96 }
97 }
98 DCHECK_EQ(current_locals_->size(), graph_->GetNumberOfVRegs())
99 << "No instructions throwing into a live catch block.";
100 }
101 } else if (current_block_->IsLoopHeader()) {
102 // If the block is a loop header, we know we only have visited the pre header
103 // because we are visiting in reverse post order. We create phis for all initialized
104 // locals from the pre header. Their inputs will be populated at the end of
105 // the analysis.
106 for (size_t local = 0; local < current_locals_->size(); ++local) {
107 HInstruction* incoming =
108 ValueOfLocalAt(current_block_->GetLoopInformation()->GetPreHeader(), local);
109 if (incoming != nullptr) {
110 HPhi* phi = new (arena_) HPhi(
111 arena_,
112 local,
113 0,
114 incoming->GetType());
115 current_block_->AddPhi(phi);
116 (*current_locals_)[local] = phi;
117 }
118 }
119
120 // Save the loop header so that the last phase of the analysis knows which
121 // blocks need to be updated.
122 loop_headers_.push_back(current_block_);
123 } else if (current_block_->GetPredecessors().size() > 0) {
124 // All predecessors have already been visited because we are visiting in reverse post order.
125 // We merge the values of all locals, creating phis if those values differ.
126 for (size_t local = 0; local < current_locals_->size(); ++local) {
127 bool one_predecessor_has_no_value = false;
128 bool is_different = false;
129 HInstruction* value = ValueOfLocalAt(current_block_->GetPredecessors()[0], local);
130
131 for (HBasicBlock* predecessor : current_block_->GetPredecessors()) {
132 HInstruction* current = ValueOfLocalAt(predecessor, local);
133 if (current == nullptr) {
134 one_predecessor_has_no_value = true;
135 break;
136 } else if (current != value) {
137 is_different = true;
138 }
139 }
140
141 if (one_predecessor_has_no_value) {
142 // If one predecessor has no value for this local, we trust the verifier has
143 // successfully checked that there is a store dominating any read after this block.
144 continue;
145 }
146
147 if (is_different) {
148 HInstruction* first_input = ValueOfLocalAt(current_block_->GetPredecessors()[0], local);
149 HPhi* phi = new (arena_) HPhi(
150 arena_,
151 local,
152 current_block_->GetPredecessors().size(),
153 first_input->GetType());
154 for (size_t i = 0; i < current_block_->GetPredecessors().size(); i++) {
155 HInstruction* pred_value = ValueOfLocalAt(current_block_->GetPredecessors()[i], local);
156 phi->SetRawInputAt(i, pred_value);
157 }
158 current_block_->AddPhi(phi);
159 value = phi;
160 }
161 (*current_locals_)[local] = value;
162 }
163 }
164}
165
166void HInstructionBuilder::PropagateLocalsToCatchBlocks() {
167 const HTryBoundary& try_entry = current_block_->GetTryCatchInformation()->GetTryEntry();
168 for (HBasicBlock* catch_block : try_entry.GetExceptionHandlers()) {
169 ArenaVector<HInstruction*>* handler_locals = GetLocalsFor(catch_block);
170 DCHECK_EQ(handler_locals->size(), current_locals_->size());
171 for (size_t vreg = 0, e = current_locals_->size(); vreg < e; ++vreg) {
172 HInstruction* handler_value = (*handler_locals)[vreg];
173 if (handler_value == nullptr) {
174 // Vreg was undefined at a previously encountered throwing instruction
175 // and the catch phi was deleted. Do not record the local value.
176 continue;
177 }
178 DCHECK(handler_value->IsPhi());
179
180 HInstruction* local_value = (*current_locals_)[vreg];
181 if (local_value == nullptr) {
182 // This is the first instruction throwing into `catch_block` where
183 // `vreg` is undefined. Delete the catch phi.
184 catch_block->RemovePhi(handler_value->AsPhi());
185 (*handler_locals)[vreg] = nullptr;
186 } else {
187 // Vreg has been defined at all instructions throwing into `catch_block`
188 // encountered so far. Record the local value in the catch phi.
189 handler_value->AsPhi()->AddInput(local_value);
190 }
191 }
192 }
193}
194
195void HInstructionBuilder::AppendInstruction(HInstruction* instruction) {
196 current_block_->AddInstruction(instruction);
197 InitializeInstruction(instruction);
198}
199
200void HInstructionBuilder::InsertInstructionAtTop(HInstruction* instruction) {
201 if (current_block_->GetInstructions().IsEmpty()) {
202 current_block_->AddInstruction(instruction);
203 } else {
204 current_block_->InsertInstructionBefore(instruction, current_block_->GetFirstInstruction());
205 }
206 InitializeInstruction(instruction);
207}
208
209void HInstructionBuilder::InitializeInstruction(HInstruction* instruction) {
210 if (instruction->NeedsEnvironment()) {
211 HEnvironment* environment = new (arena_) HEnvironment(
212 arena_,
213 current_locals_->size(),
Nicolas Geoffray5d37c152017-01-12 13:25:19 +0000214 graph_->GetArtMethod(),
David Brazdildee58d62016-04-07 09:54:26 +0000215 instruction->GetDexPc(),
David Brazdildee58d62016-04-07 09:54:26 +0000216 instruction);
217 environment->CopyFrom(*current_locals_);
218 instruction->SetRawEnvironment(environment);
219 }
220}
221
David Brazdilc120bbe2016-04-22 16:57:00 +0100222HInstruction* HInstructionBuilder::LoadNullCheckedLocal(uint32_t register_index, uint32_t dex_pc) {
223 HInstruction* ref = LoadLocal(register_index, Primitive::kPrimNot);
224 if (!ref->CanBeNull()) {
225 return ref;
226 }
227
228 HNullCheck* null_check = new (arena_) HNullCheck(ref, dex_pc);
229 AppendInstruction(null_check);
230 return null_check;
231}
232
David Brazdildee58d62016-04-07 09:54:26 +0000233void HInstructionBuilder::SetLoopHeaderPhiInputs() {
234 for (size_t i = loop_headers_.size(); i > 0; --i) {
235 HBasicBlock* block = loop_headers_[i - 1];
236 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
237 HPhi* phi = it.Current()->AsPhi();
238 size_t vreg = phi->GetRegNumber();
239 for (HBasicBlock* predecessor : block->GetPredecessors()) {
240 HInstruction* value = ValueOfLocalAt(predecessor, vreg);
241 if (value == nullptr) {
242 // Vreg is undefined at this predecessor. Mark it dead and leave with
243 // fewer inputs than predecessors. SsaChecker will fail if not removed.
244 phi->SetDead();
245 break;
246 } else {
247 phi->AddInput(value);
248 }
249 }
250 }
251 }
252}
253
254static bool IsBlockPopulated(HBasicBlock* block) {
255 if (block->IsLoopHeader()) {
256 // Suspend checks were inserted into loop headers during building of dominator tree.
257 DCHECK(block->GetFirstInstruction()->IsSuspendCheck());
258 return block->GetFirstInstruction() != block->GetLastInstruction();
259 } else {
260 return !block->GetInstructions().IsEmpty();
261 }
262}
263
264bool HInstructionBuilder::Build() {
265 locals_for_.resize(graph_->GetBlocks().size(),
266 ArenaVector<HInstruction*>(arena_->Adapter(kArenaAllocGraphBuilder)));
267
268 // Find locations where we want to generate extra stackmaps for native debugging.
269 // This allows us to generate the info only at interesting points (for example,
270 // at start of java statement) rather than before every dex instruction.
271 const bool native_debuggable = compiler_driver_ != nullptr &&
272 compiler_driver_->GetCompilerOptions().GetNativeDebuggable();
273 ArenaBitVector* native_debug_info_locations = nullptr;
274 if (native_debuggable) {
275 const uint32_t num_instructions = code_item_.insns_size_in_code_units_;
276 native_debug_info_locations = new (arena_) ArenaBitVector (arena_, num_instructions, false);
277 FindNativeDebugInfoLocations(native_debug_info_locations);
278 }
279
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100280 for (HBasicBlock* block : graph_->GetReversePostOrder()) {
281 current_block_ = block;
David Brazdildee58d62016-04-07 09:54:26 +0000282 uint32_t block_dex_pc = current_block_->GetDexPc();
283
284 InitializeBlockLocals();
285
286 if (current_block_->IsEntryBlock()) {
287 InitializeParameters();
288 AppendInstruction(new (arena_) HSuspendCheck(0u));
289 AppendInstruction(new (arena_) HGoto(0u));
290 continue;
291 } else if (current_block_->IsExitBlock()) {
292 AppendInstruction(new (arena_) HExit());
293 continue;
294 } else if (current_block_->IsLoopHeader()) {
295 HSuspendCheck* suspend_check = new (arena_) HSuspendCheck(current_block_->GetDexPc());
296 current_block_->GetLoopInformation()->SetSuspendCheck(suspend_check);
297 // This is slightly odd because the loop header might not be empty (TryBoundary).
298 // But we're still creating the environment with locals from the top of the block.
299 InsertInstructionAtTop(suspend_check);
300 }
301
302 if (block_dex_pc == kNoDexPc || current_block_ != block_builder_->GetBlockAt(block_dex_pc)) {
303 // Synthetic block that does not need to be populated.
304 DCHECK(IsBlockPopulated(current_block_));
305 continue;
306 }
307
308 DCHECK(!IsBlockPopulated(current_block_));
309
Mathieu Chartierde4b08f2017-07-10 14:13:41 -0700310 uint32_t quicken_index = 0;
311 if (CanDecodeQuickenedInfo()) {
312 quicken_index = block_builder_->GetQuickenIndex(block_dex_pc);
313 }
314
David Brazdildee58d62016-04-07 09:54:26 +0000315 for (CodeItemIterator it(code_item_, block_dex_pc); !it.Done(); it.Advance()) {
316 if (current_block_ == nullptr) {
317 // The previous instruction ended this block.
318 break;
319 }
320
321 uint32_t dex_pc = it.CurrentDexPc();
322 if (dex_pc != block_dex_pc && FindBlockStartingAt(dex_pc) != nullptr) {
323 // This dex_pc starts a new basic block.
324 break;
325 }
326
327 if (current_block_->IsTryBlock() && IsThrowingDexInstruction(it.CurrentInstruction())) {
328 PropagateLocalsToCatchBlocks();
329 }
330
331 if (native_debuggable && native_debug_info_locations->IsBitSet(dex_pc)) {
332 AppendInstruction(new (arena_) HNativeDebugInfo(dex_pc));
333 }
334
Mathieu Chartierde4b08f2017-07-10 14:13:41 -0700335 if (!ProcessDexInstruction(it.CurrentInstruction(), dex_pc, quicken_index)) {
David Brazdildee58d62016-04-07 09:54:26 +0000336 return false;
337 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -0700338
339 if (QuickenInfoTable::NeedsIndexForInstruction(&it.CurrentInstruction())) {
340 ++quicken_index;
341 }
David Brazdildee58d62016-04-07 09:54:26 +0000342 }
343
344 if (current_block_ != nullptr) {
345 // Branching instructions clear current_block, so we know the last
346 // instruction of the current block is not a branching instruction.
347 // We add an unconditional Goto to the next block.
348 DCHECK_EQ(current_block_->GetSuccessors().size(), 1u);
349 AppendInstruction(new (arena_) HGoto());
350 }
351 }
352
353 SetLoopHeaderPhiInputs();
354
355 return true;
356}
357
358void HInstructionBuilder::FindNativeDebugInfoLocations(ArenaBitVector* locations) {
359 // The callback gets called when the line number changes.
360 // In other words, it marks the start of new java statement.
361 struct Callback {
362 static bool Position(void* ctx, const DexFile::PositionInfo& entry) {
363 static_cast<ArenaBitVector*>(ctx)->SetBit(entry.address_);
364 return false;
365 }
366 };
367 dex_file_->DecodeDebugPositionInfo(&code_item_, Callback::Position, locations);
368 // Instruction-specific tweaks.
369 const Instruction* const begin = Instruction::At(code_item_.insns_);
370 const Instruction* const end = begin->RelativeAt(code_item_.insns_size_in_code_units_);
371 for (const Instruction* inst = begin; inst < end; inst = inst->Next()) {
372 switch (inst->Opcode()) {
373 case Instruction::MOVE_EXCEPTION: {
374 // Stop in native debugger after the exception has been moved.
375 // The compiler also expects the move at the start of basic block so
376 // we do not want to interfere by inserting native-debug-info before it.
377 locations->ClearBit(inst->GetDexPc(code_item_.insns_));
378 const Instruction* next = inst->Next();
379 if (next < end) {
380 locations->SetBit(next->GetDexPc(code_item_.insns_));
381 }
382 break;
383 }
384 default:
385 break;
386 }
387 }
388}
389
390HInstruction* HInstructionBuilder::LoadLocal(uint32_t reg_number, Primitive::Type type) const {
391 HInstruction* value = (*current_locals_)[reg_number];
392 DCHECK(value != nullptr);
393
394 // If the operation requests a specific type, we make sure its input is of that type.
395 if (type != value->GetType()) {
396 if (Primitive::IsFloatingPointType(type)) {
Aart Bik31883642016-06-06 15:02:44 -0700397 value = ssa_builder_->GetFloatOrDoubleEquivalent(value, type);
David Brazdildee58d62016-04-07 09:54:26 +0000398 } else if (type == Primitive::kPrimNot) {
Aart Bik31883642016-06-06 15:02:44 -0700399 value = ssa_builder_->GetReferenceTypeEquivalent(value);
David Brazdildee58d62016-04-07 09:54:26 +0000400 }
Aart Bik31883642016-06-06 15:02:44 -0700401 DCHECK(value != nullptr);
David Brazdildee58d62016-04-07 09:54:26 +0000402 }
403
404 return value;
405}
406
407void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) {
408 Primitive::Type stored_type = stored_value->GetType();
409 DCHECK_NE(stored_type, Primitive::kPrimVoid);
410
411 // Storing into vreg `reg_number` may implicitly invalidate the surrounding
412 // registers. Consider the following cases:
413 // (1) Storing a wide value must overwrite previous values in both `reg_number`
414 // and `reg_number+1`. We store `nullptr` in `reg_number+1`.
415 // (2) If vreg `reg_number-1` holds a wide value, writing into `reg_number`
416 // must invalidate it. We store `nullptr` in `reg_number-1`.
417 // Consequently, storing a wide value into the high vreg of another wide value
418 // will invalidate both `reg_number-1` and `reg_number+1`.
419
420 if (reg_number != 0) {
421 HInstruction* local_low = (*current_locals_)[reg_number - 1];
422 if (local_low != nullptr && Primitive::Is64BitType(local_low->GetType())) {
423 // The vreg we are storing into was previously the high vreg of a pair.
424 // We need to invalidate its low vreg.
425 DCHECK((*current_locals_)[reg_number] == nullptr);
426 (*current_locals_)[reg_number - 1] = nullptr;
427 }
428 }
429
430 (*current_locals_)[reg_number] = stored_value;
431 if (Primitive::Is64BitType(stored_type)) {
432 // We are storing a pair. Invalidate the instruction in the high vreg.
433 (*current_locals_)[reg_number + 1] = nullptr;
434 }
435}
436
437void HInstructionBuilder::InitializeParameters() {
438 DCHECK(current_block_->IsEntryBlock());
439
440 // dex_compilation_unit_ is null only when unit testing.
441 if (dex_compilation_unit_ == nullptr) {
442 return;
443 }
444
445 const char* shorty = dex_compilation_unit_->GetShorty();
446 uint16_t number_of_parameters = graph_->GetNumberOfInVRegs();
447 uint16_t locals_index = graph_->GetNumberOfLocalVRegs();
448 uint16_t parameter_index = 0;
449
450 const DexFile::MethodId& referrer_method_id =
451 dex_file_->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
452 if (!dex_compilation_unit_->IsStatic()) {
453 // Add the implicit 'this' argument, not expressed in the signature.
454 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_,
455 referrer_method_id.class_idx_,
456 parameter_index++,
457 Primitive::kPrimNot,
Igor Murashkind01745e2017-04-05 16:40:31 -0700458 /* is_this */ true);
David Brazdildee58d62016-04-07 09:54:26 +0000459 AppendInstruction(parameter);
460 UpdateLocal(locals_index++, parameter);
461 number_of_parameters--;
Igor Murashkind01745e2017-04-05 16:40:31 -0700462 current_this_parameter_ = parameter;
463 } else {
464 DCHECK(current_this_parameter_ == nullptr);
David Brazdildee58d62016-04-07 09:54:26 +0000465 }
466
467 const DexFile::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id);
468 const DexFile::TypeList* arg_types = dex_file_->GetProtoParameters(proto);
469 for (int i = 0, shorty_pos = 1; i < number_of_parameters; i++) {
470 HParameterValue* parameter = new (arena_) HParameterValue(
471 *dex_file_,
472 arg_types->GetTypeItem(shorty_pos - 1).type_idx_,
473 parameter_index++,
474 Primitive::GetType(shorty[shorty_pos]),
Igor Murashkind01745e2017-04-05 16:40:31 -0700475 /* is_this */ false);
David Brazdildee58d62016-04-07 09:54:26 +0000476 ++shorty_pos;
477 AppendInstruction(parameter);
478 // Store the parameter value in the local that the dex code will use
479 // to reference that parameter.
480 UpdateLocal(locals_index++, parameter);
481 if (Primitive::Is64BitType(parameter->GetType())) {
482 i++;
483 locals_index++;
484 parameter_index++;
485 }
486 }
487}
488
489template<typename T>
490void HInstructionBuilder::If_22t(const Instruction& instruction, uint32_t dex_pc) {
491 HInstruction* first = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
492 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
493 T* comparison = new (arena_) T(first, second, dex_pc);
494 AppendInstruction(comparison);
495 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
496 current_block_ = nullptr;
497}
498
499template<typename T>
500void HInstructionBuilder::If_21t(const Instruction& instruction, uint32_t dex_pc) {
501 HInstruction* value = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
502 T* comparison = new (arena_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc);
503 AppendInstruction(comparison);
504 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
505 current_block_ = nullptr;
506}
507
508template<typename T>
509void HInstructionBuilder::Unop_12x(const Instruction& instruction,
510 Primitive::Type type,
511 uint32_t dex_pc) {
512 HInstruction* first = LoadLocal(instruction.VRegB(), type);
513 AppendInstruction(new (arena_) T(type, first, dex_pc));
514 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
515}
516
517void HInstructionBuilder::Conversion_12x(const Instruction& instruction,
518 Primitive::Type input_type,
519 Primitive::Type result_type,
520 uint32_t dex_pc) {
521 HInstruction* first = LoadLocal(instruction.VRegB(), input_type);
522 AppendInstruction(new (arena_) HTypeConversion(result_type, first, dex_pc));
523 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
524}
525
526template<typename T>
527void HInstructionBuilder::Binop_23x(const Instruction& instruction,
528 Primitive::Type type,
529 uint32_t dex_pc) {
530 HInstruction* first = LoadLocal(instruction.VRegB(), type);
531 HInstruction* second = LoadLocal(instruction.VRegC(), type);
532 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
533 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
534}
535
536template<typename T>
537void HInstructionBuilder::Binop_23x_shift(const Instruction& instruction,
538 Primitive::Type type,
539 uint32_t dex_pc) {
540 HInstruction* first = LoadLocal(instruction.VRegB(), type);
541 HInstruction* second = LoadLocal(instruction.VRegC(), Primitive::kPrimInt);
542 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
543 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
544}
545
546void HInstructionBuilder::Binop_23x_cmp(const Instruction& instruction,
547 Primitive::Type type,
548 ComparisonBias bias,
549 uint32_t dex_pc) {
550 HInstruction* first = LoadLocal(instruction.VRegB(), type);
551 HInstruction* second = LoadLocal(instruction.VRegC(), type);
552 AppendInstruction(new (arena_) HCompare(type, first, second, bias, dex_pc));
553 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
554}
555
556template<typename T>
557void HInstructionBuilder::Binop_12x_shift(const Instruction& instruction,
558 Primitive::Type type,
559 uint32_t dex_pc) {
560 HInstruction* first = LoadLocal(instruction.VRegA(), type);
561 HInstruction* second = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
562 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
563 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
564}
565
566template<typename T>
567void HInstructionBuilder::Binop_12x(const Instruction& instruction,
568 Primitive::Type type,
569 uint32_t dex_pc) {
570 HInstruction* first = LoadLocal(instruction.VRegA(), type);
571 HInstruction* second = LoadLocal(instruction.VRegB(), type);
572 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
573 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
574}
575
576template<typename T>
577void HInstructionBuilder::Binop_22s(const Instruction& instruction, bool reverse, uint32_t dex_pc) {
578 HInstruction* first = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
579 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc);
580 if (reverse) {
581 std::swap(first, second);
582 }
583 AppendInstruction(new (arena_) T(Primitive::kPrimInt, first, second, dex_pc));
584 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
585}
586
587template<typename T>
588void HInstructionBuilder::Binop_22b(const Instruction& instruction, bool reverse, uint32_t dex_pc) {
589 HInstruction* first = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
590 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc);
591 if (reverse) {
592 std::swap(first, second);
593 }
594 AppendInstruction(new (arena_) T(Primitive::kPrimInt, first, second, dex_pc));
595 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
596}
597
Igor Murashkind01745e2017-04-05 16:40:31 -0700598// Does the method being compiled need any constructor barriers being inserted?
599// (Always 'false' for methods that aren't <init>.)
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700600static bool RequiresConstructorBarrier(const DexCompilationUnit* cu, CompilerDriver* driver) {
Igor Murashkin032cacd2017-04-06 14:40:08 -0700601 // Can be null in unit tests only.
602 if (UNLIKELY(cu == nullptr)) {
603 return false;
604 }
605
David Brazdildee58d62016-04-07 09:54:26 +0000606 Thread* self = Thread::Current();
607 return cu->IsConstructor()
Igor Murashkind01745e2017-04-05 16:40:31 -0700608 && !cu->IsStatic()
609 // RequiresConstructorBarrier must only be queried for <init> methods;
610 // it's effectively "false" for every other method.
611 //
612 // See CompilerDriver::RequiresConstructBarrier for more explanation.
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700613 && driver->RequiresConstructorBarrier(self, cu->GetDexFile(), cu->GetClassDefIndex());
David Brazdildee58d62016-04-07 09:54:26 +0000614}
615
616// Returns true if `block` has only one successor which starts at the next
617// dex_pc after `instruction` at `dex_pc`.
618static bool IsFallthroughInstruction(const Instruction& instruction,
619 uint32_t dex_pc,
620 HBasicBlock* block) {
621 uint32_t next_dex_pc = dex_pc + instruction.SizeInCodeUnits();
622 return block->GetSingleSuccessor()->GetDexPc() == next_dex_pc;
623}
624
625void HInstructionBuilder::BuildSwitch(const Instruction& instruction, uint32_t dex_pc) {
626 HInstruction* value = LoadLocal(instruction.VRegA(), Primitive::kPrimInt);
627 DexSwitchTable table(instruction, dex_pc);
628
629 if (table.GetNumEntries() == 0) {
630 // Empty Switch. Code falls through to the next block.
631 DCHECK(IsFallthroughInstruction(instruction, dex_pc, current_block_));
632 AppendInstruction(new (arena_) HGoto(dex_pc));
633 } else if (table.ShouldBuildDecisionTree()) {
634 for (DexSwitchTableIterator it(table); !it.Done(); it.Advance()) {
635 HInstruction* case_value = graph_->GetIntConstant(it.CurrentKey(), dex_pc);
636 HEqual* comparison = new (arena_) HEqual(value, case_value, dex_pc);
637 AppendInstruction(comparison);
638 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
639
640 if (!it.IsLast()) {
641 current_block_ = FindBlockStartingAt(it.GetDexPcForCurrentIndex());
642 }
643 }
644 } else {
645 AppendInstruction(
646 new (arena_) HPackedSwitch(table.GetEntryAt(0), table.GetNumEntries(), value, dex_pc));
647 }
648
649 current_block_ = nullptr;
650}
651
652void HInstructionBuilder::BuildReturn(const Instruction& instruction,
653 Primitive::Type type,
654 uint32_t dex_pc) {
655 if (type == Primitive::kPrimVoid) {
Igor Murashkind01745e2017-04-05 16:40:31 -0700656 // Only <init> (which is a return-void) could possibly have a constructor fence.
Igor Murashkin032cacd2017-04-06 14:40:08 -0700657 // This may insert additional redundant constructor fences from the super constructors.
658 // TODO: remove redundant constructor fences (b/36656456).
659 if (RequiresConstructorBarrier(dex_compilation_unit_, compiler_driver_)) {
Igor Murashkind01745e2017-04-05 16:40:31 -0700660 // Compiling instance constructor.
Vladimir Markoba118822017-06-12 15:41:56 +0100661 DCHECK_STREQ("<init>", graph_->GetMethodName());
Igor Murashkind01745e2017-04-05 16:40:31 -0700662
663 HInstruction* fence_target = current_this_parameter_;
664 DCHECK(fence_target != nullptr);
665
666 AppendInstruction(new (arena_) HConstructorFence(fence_target, dex_pc, arena_));
David Brazdildee58d62016-04-07 09:54:26 +0000667 }
668 AppendInstruction(new (arena_) HReturnVoid(dex_pc));
669 } else {
Igor Murashkind01745e2017-04-05 16:40:31 -0700670 DCHECK(!RequiresConstructorBarrier(dex_compilation_unit_, compiler_driver_));
David Brazdildee58d62016-04-07 09:54:26 +0000671 HInstruction* value = LoadLocal(instruction.VRegA(), type);
672 AppendInstruction(new (arena_) HReturn(value, dex_pc));
673 }
674 current_block_ = nullptr;
675}
676
677static InvokeType GetInvokeTypeFromOpCode(Instruction::Code opcode) {
678 switch (opcode) {
679 case Instruction::INVOKE_STATIC:
680 case Instruction::INVOKE_STATIC_RANGE:
681 return kStatic;
682 case Instruction::INVOKE_DIRECT:
683 case Instruction::INVOKE_DIRECT_RANGE:
684 return kDirect;
685 case Instruction::INVOKE_VIRTUAL:
686 case Instruction::INVOKE_VIRTUAL_QUICK:
687 case Instruction::INVOKE_VIRTUAL_RANGE:
688 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK:
689 return kVirtual;
690 case Instruction::INVOKE_INTERFACE:
691 case Instruction::INVOKE_INTERFACE_RANGE:
692 return kInterface;
693 case Instruction::INVOKE_SUPER_RANGE:
694 case Instruction::INVOKE_SUPER:
695 return kSuper;
696 default:
697 LOG(FATAL) << "Unexpected invoke opcode: " << opcode;
698 UNREACHABLE();
699 }
700}
701
702ArtMethod* HInstructionBuilder::ResolveMethod(uint16_t method_idx, InvokeType invoke_type) {
703 ScopedObjectAccess soa(Thread::Current());
David Brazdildee58d62016-04-07 09:54:26 +0000704
705 ClassLinker* class_linker = dex_compilation_unit_->GetClassLinker();
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000706 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100707
Vladimir Markoba118822017-06-12 15:41:56 +0100708 ArtMethod* resolved_method =
709 class_linker->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
710 *dex_compilation_unit_->GetDexFile(),
711 method_idx,
712 dex_compilation_unit_->GetDexCache(),
713 class_loader,
714 graph_->GetArtMethod(),
715 invoke_type);
David Brazdildee58d62016-04-07 09:54:26 +0000716
717 if (UNLIKELY(resolved_method == nullptr)) {
718 // Clean up any exception left by type resolution.
719 soa.Self()->ClearException();
720 return nullptr;
721 }
722
Vladimir Markoba118822017-06-12 15:41:56 +0100723 // The referrer may be unresolved for AOT if we're compiling a class that cannot be
724 // resolved because, for example, we don't find a superclass in the classpath.
725 if (graph_->GetArtMethod() == nullptr) {
726 // The class linker cannot check access without a referrer, so we have to do it.
727 // Fall back to HInvokeUnresolved if the method isn't public.
David Brazdildee58d62016-04-07 09:54:26 +0000728 if (!resolved_method->IsPublic()) {
729 return nullptr;
730 }
David Brazdildee58d62016-04-07 09:54:26 +0000731 }
732
733 // We have to special case the invoke-super case, as ClassLinker::ResolveMethod does not.
734 // We need to look at the referrer's super class vtable. We need to do this to know if we need to
735 // make this an invoke-unresolved to handle cross-dex invokes or abstract super methods, both of
736 // which require runtime handling.
737 if (invoke_type == kSuper) {
Vladimir Markoba118822017-06-12 15:41:56 +0100738 ObjPtr<mirror::Class> compiling_class = GetCompilingClass();
Andreas Gampefa4333d2017-02-14 11:10:34 -0800739 if (compiling_class == nullptr) {
David Brazdildee58d62016-04-07 09:54:26 +0000740 // We could not determine the method's class we need to wait until runtime.
741 DCHECK(Runtime::Current()->IsAotCompiler());
742 return nullptr;
743 }
Vladimir Markoba118822017-06-12 15:41:56 +0100744 ObjPtr<mirror::Class> referenced_class = class_linker->LookupResolvedType(
745 *dex_compilation_unit_->GetDexFile(),
746 dex_compilation_unit_->GetDexFile()->GetMethodId(method_idx).class_idx_,
747 dex_compilation_unit_->GetDexCache().Get(),
748 class_loader.Get());
749 DCHECK(referenced_class != nullptr); // We have already resolved a method from this class.
750 if (!referenced_class->IsAssignableFrom(compiling_class)) {
Aart Bikf663e342016-04-04 17:28:59 -0700751 // We cannot statically determine the target method. The runtime will throw a
752 // NoSuchMethodError on this one.
753 return nullptr;
754 }
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100755 ArtMethod* actual_method;
Vladimir Markoba118822017-06-12 15:41:56 +0100756 if (referenced_class->IsInterface()) {
757 actual_method = referenced_class->FindVirtualMethodForInterfaceSuper(
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100758 resolved_method, class_linker->GetImagePointerSize());
David Brazdildee58d62016-04-07 09:54:26 +0000759 } else {
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100760 uint16_t vtable_index = resolved_method->GetMethodIndex();
761 actual_method = compiling_class->GetSuperClass()->GetVTableEntry(
762 vtable_index, class_linker->GetImagePointerSize());
David Brazdildee58d62016-04-07 09:54:26 +0000763 }
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100764 if (actual_method != resolved_method &&
765 !IsSameDexFile(*actual_method->GetDexFile(), *dex_compilation_unit_->GetDexFile())) {
766 // The back-end code generator relies on this check in order to ensure that it will not
767 // attempt to read the dex_cache with a dex_method_index that is not from the correct
768 // dex_file. If we didn't do this check then the dex_method_index will not be updated in the
769 // builder, which means that the code-generator (and compiler driver during sharpening and
770 // inliner, maybe) might invoke an incorrect method.
771 // TODO: The actual method could still be referenced in the current dex file, so we
772 // could try locating it.
773 // TODO: Remove the dex_file restriction.
774 return nullptr;
775 }
776 if (!actual_method->IsInvokable()) {
777 // Fail if the actual method cannot be invoked. Otherwise, the runtime resolution stub
778 // could resolve the callee to the wrong method.
779 return nullptr;
780 }
781 resolved_method = actual_method;
David Brazdildee58d62016-04-07 09:54:26 +0000782 }
783
David Brazdildee58d62016-04-07 09:54:26 +0000784 return resolved_method;
785}
786
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100787static bool IsStringConstructor(ArtMethod* method) {
788 ScopedObjectAccess soa(Thread::Current());
789 return method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
790}
791
David Brazdildee58d62016-04-07 09:54:26 +0000792bool HInstructionBuilder::BuildInvoke(const Instruction& instruction,
793 uint32_t dex_pc,
794 uint32_t method_idx,
795 uint32_t number_of_vreg_arguments,
796 bool is_range,
797 uint32_t* args,
798 uint32_t register_index) {
799 InvokeType invoke_type = GetInvokeTypeFromOpCode(instruction.Opcode());
800 const char* descriptor = dex_file_->GetMethodShorty(method_idx);
801 Primitive::Type return_type = Primitive::GetType(descriptor[0]);
802
803 // Remove the return type from the 'proto'.
804 size_t number_of_arguments = strlen(descriptor) - 1;
805 if (invoke_type != kStatic) { // instance call
806 // One extra argument for 'this'.
807 number_of_arguments++;
808 }
809
David Brazdildee58d62016-04-07 09:54:26 +0000810 ArtMethod* resolved_method = ResolveMethod(method_idx, invoke_type);
811
812 if (UNLIKELY(resolved_method == nullptr)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700813 MaybeRecordStat(compilation_stats_,
814 MethodCompilationStat::kUnresolvedMethod);
David Brazdildee58d62016-04-07 09:54:26 +0000815 HInvoke* invoke = new (arena_) HInvokeUnresolved(arena_,
816 number_of_arguments,
817 return_type,
818 dex_pc,
819 method_idx,
820 invoke_type);
821 return HandleInvoke(invoke,
822 number_of_vreg_arguments,
823 args,
824 register_index,
825 is_range,
826 descriptor,
Aart Bik296fbb42016-06-07 13:49:12 -0700827 nullptr, /* clinit_check */
828 true /* is_unresolved */);
David Brazdildee58d62016-04-07 09:54:26 +0000829 }
830
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100831 // Replace calls to String.<init> with StringFactory.
832 if (IsStringConstructor(resolved_method)) {
833 uint32_t string_init_entry_point = WellKnownClasses::StringInitToEntryPoint(resolved_method);
834 HInvokeStaticOrDirect::DispatchInfo dispatch_info = {
835 HInvokeStaticOrDirect::MethodLoadKind::kStringInit,
836 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
Nicolas Geoffrayc1a42cf2016-12-18 15:52:36 +0000837 dchecked_integral_cast<uint64_t>(string_init_entry_point)
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100838 };
839 MethodReference target_method(dex_file_, method_idx);
840 HInvoke* invoke = new (arena_) HInvokeStaticOrDirect(
841 arena_,
842 number_of_arguments - 1,
843 Primitive::kPrimNot /*return_type */,
844 dex_pc,
845 method_idx,
846 nullptr,
847 dispatch_info,
848 invoke_type,
849 target_method,
850 HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit);
851 return HandleStringInit(invoke,
852 number_of_vreg_arguments,
853 args,
854 register_index,
855 is_range,
856 descriptor);
857 }
858
David Brazdildee58d62016-04-07 09:54:26 +0000859 // Potential class initialization check, in the case of a static method call.
860 HClinitCheck* clinit_check = nullptr;
861 HInvoke* invoke = nullptr;
862 if (invoke_type == kDirect || invoke_type == kStatic || invoke_type == kSuper) {
863 // By default, consider that the called method implicitly requires
864 // an initialization check of its declaring method.
865 HInvokeStaticOrDirect::ClinitCheckRequirement clinit_check_requirement
866 = HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit;
867 ScopedObjectAccess soa(Thread::Current());
868 if (invoke_type == kStatic) {
869 clinit_check = ProcessClinitCheckForInvoke(
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000870 dex_pc, resolved_method, &clinit_check_requirement);
David Brazdildee58d62016-04-07 09:54:26 +0000871 } else if (invoke_type == kSuper) {
872 if (IsSameDexFile(*resolved_method->GetDexFile(), *dex_compilation_unit_->GetDexFile())) {
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100873 // Update the method index to the one resolved. Note that this may be a no-op if
David Brazdildee58d62016-04-07 09:54:26 +0000874 // we resolved to the method referenced by the instruction.
875 method_idx = resolved_method->GetDexMethodIndex();
David Brazdildee58d62016-04-07 09:54:26 +0000876 }
877 }
878
879 HInvokeStaticOrDirect::DispatchInfo dispatch_info = {
Vladimir Markoe7197bf2017-06-02 17:00:23 +0100880 HInvokeStaticOrDirect::MethodLoadKind::kRuntimeCall,
David Brazdildee58d62016-04-07 09:54:26 +0000881 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
Nicolas Geoffrayc1a42cf2016-12-18 15:52:36 +0000882 0u
David Brazdildee58d62016-04-07 09:54:26 +0000883 };
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100884 MethodReference target_method(resolved_method->GetDexFile(),
885 resolved_method->GetDexMethodIndex());
David Brazdildee58d62016-04-07 09:54:26 +0000886 invoke = new (arena_) HInvokeStaticOrDirect(arena_,
887 number_of_arguments,
888 return_type,
889 dex_pc,
890 method_idx,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100891 resolved_method,
David Brazdildee58d62016-04-07 09:54:26 +0000892 dispatch_info,
893 invoke_type,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100894 target_method,
David Brazdildee58d62016-04-07 09:54:26 +0000895 clinit_check_requirement);
896 } else if (invoke_type == kVirtual) {
897 ScopedObjectAccess soa(Thread::Current()); // Needed for the method index
898 invoke = new (arena_) HInvokeVirtual(arena_,
899 number_of_arguments,
900 return_type,
901 dex_pc,
902 method_idx,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100903 resolved_method,
David Brazdildee58d62016-04-07 09:54:26 +0000904 resolved_method->GetMethodIndex());
905 } else {
906 DCHECK_EQ(invoke_type, kInterface);
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100907 ScopedObjectAccess soa(Thread::Current()); // Needed for the IMT index.
David Brazdildee58d62016-04-07 09:54:26 +0000908 invoke = new (arena_) HInvokeInterface(arena_,
909 number_of_arguments,
910 return_type,
911 dex_pc,
912 method_idx,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100913 resolved_method,
Andreas Gampe75a7db62016-09-26 12:04:26 -0700914 ImTable::GetImtIndex(resolved_method));
David Brazdildee58d62016-04-07 09:54:26 +0000915 }
916
917 return HandleInvoke(invoke,
918 number_of_vreg_arguments,
919 args,
920 register_index,
921 is_range,
922 descriptor,
Aart Bik296fbb42016-06-07 13:49:12 -0700923 clinit_check,
924 false /* is_unresolved */);
David Brazdildee58d62016-04-07 09:54:26 +0000925}
926
Orion Hodsonac141392017-01-13 11:53:47 +0000927bool HInstructionBuilder::BuildInvokePolymorphic(const Instruction& instruction ATTRIBUTE_UNUSED,
928 uint32_t dex_pc,
929 uint32_t method_idx,
930 uint32_t proto_idx,
931 uint32_t number_of_vreg_arguments,
932 bool is_range,
933 uint32_t* args,
934 uint32_t register_index) {
935 const char* descriptor = dex_file_->GetShorty(proto_idx);
936 DCHECK_EQ(1 + ArtMethod::NumArgRegisters(descriptor), number_of_vreg_arguments);
937 Primitive::Type return_type = Primitive::GetType(descriptor[0]);
938 size_t number_of_arguments = strlen(descriptor);
939 HInvoke* invoke = new (arena_) HInvokePolymorphic(arena_,
940 number_of_arguments,
941 return_type,
942 dex_pc,
943 method_idx);
944 return HandleInvoke(invoke,
945 number_of_vreg_arguments,
946 args,
947 register_index,
948 is_range,
949 descriptor,
950 nullptr /* clinit_check */,
951 false /* is_unresolved */);
952}
953
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700954HNewInstance* HInstructionBuilder::BuildNewInstance(dex::TypeIndex type_index, uint32_t dex_pc) {
Vladimir Marko3cd50df2016-04-13 19:29:26 +0100955 ScopedObjectAccess soa(Thread::Current());
David Brazdildee58d62016-04-07 09:54:26 +0000956
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000957 HLoadClass* load_class = BuildLoadClass(type_index, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +0000958
David Brazdildee58d62016-04-07 09:54:26 +0000959 HInstruction* cls = load_class;
Nicolas Geoffray5247c082017-01-13 14:17:29 +0000960 Handle<mirror::Class> klass = load_class->GetClass();
961
962 if (!IsInitialized(klass)) {
David Brazdildee58d62016-04-07 09:54:26 +0000963 cls = new (arena_) HClinitCheck(load_class, dex_pc);
964 AppendInstruction(cls);
965 }
966
Nicolas Geoffray5247c082017-01-13 14:17:29 +0000967 // Only the access check entrypoint handles the finalizable class case. If we
968 // need access checks, then we haven't resolved the method and the class may
969 // again be finalizable.
970 QuickEntrypointEnum entrypoint = kQuickAllocObjectInitialized;
971 if (load_class->NeedsAccessCheck() || klass->IsFinalizable() || !klass->IsInstantiable()) {
972 entrypoint = kQuickAllocObjectWithChecks;
973 }
974
975 // Consider classes we haven't resolved as potentially finalizable.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800976 bool finalizable = (klass == nullptr) || klass->IsFinalizable();
Nicolas Geoffray5247c082017-01-13 14:17:29 +0000977
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700978 HNewInstance* new_instance = new (arena_) HNewInstance(
David Brazdildee58d62016-04-07 09:54:26 +0000979 cls,
David Brazdildee58d62016-04-07 09:54:26 +0000980 dex_pc,
981 type_index,
982 *dex_compilation_unit_->GetDexFile(),
David Brazdildee58d62016-04-07 09:54:26 +0000983 finalizable,
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700984 entrypoint);
985 AppendInstruction(new_instance);
986
987 return new_instance;
988}
989
990void HInstructionBuilder::BuildConstructorFenceForAllocation(HInstruction* allocation) {
991 DCHECK(allocation != nullptr &&
George Burgess IVf2072992017-05-23 15:36:41 -0700992 (allocation->IsNewInstance() ||
993 allocation->IsNewArray())); // corresponding to "new" keyword in JLS.
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700994
995 if (allocation->IsNewInstance()) {
996 // STRING SPECIAL HANDLING:
997 // -------------------------------
998 // Strings have a real HNewInstance node but they end up always having 0 uses.
999 // All uses of a String HNewInstance are always transformed to replace their input
1000 // of the HNewInstance with an input of the invoke to StringFactory.
1001 //
1002 // Do not emit an HConstructorFence here since it can inhibit some String new-instance
1003 // optimizations (to pass checker tests that rely on those optimizations).
1004 HNewInstance* new_inst = allocation->AsNewInstance();
1005 HLoadClass* load_class = new_inst->GetLoadClass();
1006
1007 Thread* self = Thread::Current();
1008 ScopedObjectAccess soa(self);
1009 StackHandleScope<1> hs(self);
1010 Handle<mirror::Class> klass = load_class->GetClass();
1011 if (klass != nullptr && klass->IsStringClass()) {
1012 return;
1013 // Note: Do not use allocation->IsStringAlloc which requires
1014 // a valid ReferenceTypeInfo, but that doesn't get made until after reference type
1015 // propagation (and instruction builder is too early).
1016 }
1017 // (In terms of correctness, the StringFactory needs to provide its own
1018 // default initialization barrier, see below.)
1019 }
1020
1021 // JLS 17.4.5 "Happens-before Order" describes:
1022 //
1023 // The default initialization of any object happens-before any other actions (other than
1024 // default-writes) of a program.
1025 //
1026 // In our implementation the default initialization of an object to type T means
1027 // setting all of its initial data (object[0..size)) to 0, and setting the
1028 // object's class header (i.e. object.getClass() == T.class).
1029 //
1030 // In practice this fence ensures that the writes to the object header
1031 // are visible to other threads if this object escapes the current thread.
1032 // (and in theory the 0-initializing, but that happens automatically
1033 // when new memory pages are mapped in by the OS).
1034 HConstructorFence* ctor_fence =
1035 new (arena_) HConstructorFence(allocation, allocation->GetDexPc(), arena_);
1036 AppendInstruction(ctor_fence);
David Brazdildee58d62016-04-07 09:54:26 +00001037}
1038
1039static bool IsSubClass(mirror::Class* to_test, mirror::Class* super_class)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001040 REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdildee58d62016-04-07 09:54:26 +00001041 return to_test != nullptr && !to_test->IsInterface() && to_test->IsSubClass(super_class);
1042}
1043
1044bool HInstructionBuilder::IsInitialized(Handle<mirror::Class> cls) const {
Andreas Gampefa4333d2017-02-14 11:10:34 -08001045 if (cls == nullptr) {
David Brazdildee58d62016-04-07 09:54:26 +00001046 return false;
1047 }
1048
1049 // `CanAssumeClassIsLoaded` will return true if we're JITting, or will
1050 // check whether the class is in an image for the AOT compilation.
1051 if (cls->IsInitialized() &&
1052 compiler_driver_->CanAssumeClassIsLoaded(cls.Get())) {
1053 return true;
1054 }
1055
1056 if (IsSubClass(GetOutermostCompilingClass(), cls.Get())) {
1057 return true;
1058 }
1059
1060 // TODO: We should walk over the inlined methods, but we don't pass
1061 // that information to the builder.
1062 if (IsSubClass(GetCompilingClass(), cls.Get())) {
1063 return true;
1064 }
1065
1066 return false;
1067}
1068
1069HClinitCheck* HInstructionBuilder::ProcessClinitCheckForInvoke(
1070 uint32_t dex_pc,
1071 ArtMethod* resolved_method,
David Brazdildee58d62016-04-07 09:54:26 +00001072 HInvokeStaticOrDirect::ClinitCheckRequirement* clinit_check_requirement) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001073 Handle<mirror::Class> klass = handles_->NewHandle(resolved_method->GetDeclaringClass());
David Brazdildee58d62016-04-07 09:54:26 +00001074
1075 HClinitCheck* clinit_check = nullptr;
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001076 if (IsInitialized(klass)) {
David Brazdildee58d62016-04-07 09:54:26 +00001077 *clinit_check_requirement = HInvokeStaticOrDirect::ClinitCheckRequirement::kNone;
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001078 } else {
1079 HLoadClass* cls = BuildLoadClass(klass->GetDexTypeIndex(),
1080 klass->GetDexFile(),
1081 klass,
1082 dex_pc,
1083 /* needs_access_check */ false);
1084 if (cls != nullptr) {
1085 *clinit_check_requirement = HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit;
1086 clinit_check = new (arena_) HClinitCheck(cls, dex_pc);
1087 AppendInstruction(clinit_check);
1088 }
David Brazdildee58d62016-04-07 09:54:26 +00001089 }
1090 return clinit_check;
1091}
1092
1093bool HInstructionBuilder::SetupInvokeArguments(HInvoke* invoke,
1094 uint32_t number_of_vreg_arguments,
1095 uint32_t* args,
1096 uint32_t register_index,
1097 bool is_range,
1098 const char* descriptor,
1099 size_t start_index,
1100 size_t* argument_index) {
1101 uint32_t descriptor_index = 1; // Skip the return type.
1102
1103 for (size_t i = start_index;
1104 // Make sure we don't go over the expected arguments or over the number of
1105 // dex registers given. If the instruction was seen as dead by the verifier,
1106 // it hasn't been properly checked.
1107 (i < number_of_vreg_arguments) && (*argument_index < invoke->GetNumberOfArguments());
1108 i++, (*argument_index)++) {
1109 Primitive::Type type = Primitive::GetType(descriptor[descriptor_index++]);
1110 bool is_wide = (type == Primitive::kPrimLong) || (type == Primitive::kPrimDouble);
1111 if (!is_range
1112 && is_wide
1113 && ((i + 1 == number_of_vreg_arguments) || (args[i] + 1 != args[i + 1]))) {
1114 // Longs and doubles should be in pairs, that is, sequential registers. The verifier should
1115 // reject any class where this is violated. However, the verifier only does these checks
1116 // on non trivially dead instructions, so we just bailout the compilation.
1117 VLOG(compiler) << "Did not compile "
David Sehr709b0702016-10-13 09:12:37 -07001118 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdildee58d62016-04-07 09:54:26 +00001119 << " because of non-sequential dex register pair in wide argument";
Igor Murashkin1e065a52017-08-09 13:20:34 -07001120 MaybeRecordStat(compilation_stats_,
1121 MethodCompilationStat::kNotCompiledMalformedOpcode);
David Brazdildee58d62016-04-07 09:54:26 +00001122 return false;
1123 }
1124 HInstruction* arg = LoadLocal(is_range ? register_index + i : args[i], type);
1125 invoke->SetArgumentAt(*argument_index, arg);
1126 if (is_wide) {
1127 i++;
1128 }
1129 }
1130
1131 if (*argument_index != invoke->GetNumberOfArguments()) {
1132 VLOG(compiler) << "Did not compile "
David Sehr709b0702016-10-13 09:12:37 -07001133 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdildee58d62016-04-07 09:54:26 +00001134 << " because of wrong number of arguments in invoke instruction";
Igor Murashkin1e065a52017-08-09 13:20:34 -07001135 MaybeRecordStat(compilation_stats_,
1136 MethodCompilationStat::kNotCompiledMalformedOpcode);
David Brazdildee58d62016-04-07 09:54:26 +00001137 return false;
1138 }
1139
1140 if (invoke->IsInvokeStaticOrDirect() &&
1141 HInvokeStaticOrDirect::NeedsCurrentMethodInput(
1142 invoke->AsInvokeStaticOrDirect()->GetMethodLoadKind())) {
1143 invoke->SetArgumentAt(*argument_index, graph_->GetCurrentMethod());
1144 (*argument_index)++;
1145 }
1146
1147 return true;
1148}
1149
1150bool HInstructionBuilder::HandleInvoke(HInvoke* invoke,
1151 uint32_t number_of_vreg_arguments,
1152 uint32_t* args,
1153 uint32_t register_index,
1154 bool is_range,
1155 const char* descriptor,
Aart Bik296fbb42016-06-07 13:49:12 -07001156 HClinitCheck* clinit_check,
1157 bool is_unresolved) {
David Brazdildee58d62016-04-07 09:54:26 +00001158 DCHECK(!invoke->IsInvokeStaticOrDirect() || !invoke->AsInvokeStaticOrDirect()->IsStringInit());
1159
1160 size_t start_index = 0;
1161 size_t argument_index = 0;
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001162 if (invoke->GetInvokeType() != InvokeType::kStatic) { // Instance call.
Aart Bik296fbb42016-06-07 13:49:12 -07001163 uint32_t obj_reg = is_range ? register_index : args[0];
1164 HInstruction* arg = is_unresolved
1165 ? LoadLocal(obj_reg, Primitive::kPrimNot)
1166 : LoadNullCheckedLocal(obj_reg, invoke->GetDexPc());
David Brazdilc120bbe2016-04-22 16:57:00 +01001167 invoke->SetArgumentAt(0, arg);
David Brazdildee58d62016-04-07 09:54:26 +00001168 start_index = 1;
1169 argument_index = 1;
1170 }
1171
1172 if (!SetupInvokeArguments(invoke,
1173 number_of_vreg_arguments,
1174 args,
1175 register_index,
1176 is_range,
1177 descriptor,
1178 start_index,
1179 &argument_index)) {
1180 return false;
1181 }
1182
1183 if (clinit_check != nullptr) {
1184 // Add the class initialization check as last input of `invoke`.
1185 DCHECK(invoke->IsInvokeStaticOrDirect());
1186 DCHECK(invoke->AsInvokeStaticOrDirect()->GetClinitCheckRequirement()
1187 == HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit);
1188 invoke->SetArgumentAt(argument_index, clinit_check);
1189 argument_index++;
1190 }
1191
1192 AppendInstruction(invoke);
1193 latest_result_ = invoke;
1194
1195 return true;
1196}
1197
1198bool HInstructionBuilder::HandleStringInit(HInvoke* invoke,
1199 uint32_t number_of_vreg_arguments,
1200 uint32_t* args,
1201 uint32_t register_index,
1202 bool is_range,
1203 const char* descriptor) {
1204 DCHECK(invoke->IsInvokeStaticOrDirect());
1205 DCHECK(invoke->AsInvokeStaticOrDirect()->IsStringInit());
1206
1207 size_t start_index = 1;
1208 size_t argument_index = 0;
1209 if (!SetupInvokeArguments(invoke,
1210 number_of_vreg_arguments,
1211 args,
1212 register_index,
1213 is_range,
1214 descriptor,
1215 start_index,
1216 &argument_index)) {
1217 return false;
1218 }
1219
1220 AppendInstruction(invoke);
1221
1222 // This is a StringFactory call, not an actual String constructor. Its result
1223 // replaces the empty String pre-allocated by NewInstance.
1224 uint32_t orig_this_reg = is_range ? register_index : args[0];
1225 HInstruction* arg_this = LoadLocal(orig_this_reg, Primitive::kPrimNot);
1226
1227 // Replacing the NewInstance might render it redundant. Keep a list of these
1228 // to be visited once it is clear whether it is has remaining uses.
1229 if (arg_this->IsNewInstance()) {
1230 ssa_builder_->AddUninitializedString(arg_this->AsNewInstance());
1231 } else {
1232 DCHECK(arg_this->IsPhi());
1233 // NewInstance is not the direct input of the StringFactory call. It might
1234 // be redundant but optimizing this case is not worth the effort.
1235 }
1236
1237 // Walk over all vregs and replace any occurrence of `arg_this` with `invoke`.
1238 for (size_t vreg = 0, e = current_locals_->size(); vreg < e; ++vreg) {
1239 if ((*current_locals_)[vreg] == arg_this) {
1240 (*current_locals_)[vreg] = invoke;
1241 }
1242 }
1243
1244 return true;
1245}
1246
1247static Primitive::Type GetFieldAccessType(const DexFile& dex_file, uint16_t field_index) {
1248 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index);
1249 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
1250 return Primitive::GetType(type[0]);
1251}
1252
1253bool HInstructionBuilder::BuildInstanceFieldAccess(const Instruction& instruction,
1254 uint32_t dex_pc,
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001255 bool is_put,
1256 size_t quicken_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001257 uint32_t source_or_dest_reg = instruction.VRegA_22c();
1258 uint32_t obj_reg = instruction.VRegB_22c();
1259 uint16_t field_index;
1260 if (instruction.IsQuickened()) {
1261 if (!CanDecodeQuickenedInfo()) {
1262 return false;
1263 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001264 field_index = LookupQuickenedInfo(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001265 } else {
1266 field_index = instruction.VRegC_22c();
1267 }
1268
1269 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001270 ArtField* resolved_field = ResolveField(field_index, /* is_static */ false, is_put);
David Brazdildee58d62016-04-07 09:54:26 +00001271
Aart Bik14154132016-06-02 17:53:58 -07001272 // Generate an explicit null check on the reference, unless the field access
1273 // is unresolved. In that case, we rely on the runtime to perform various
1274 // checks first, followed by a null check.
1275 HInstruction* object = (resolved_field == nullptr)
1276 ? LoadLocal(obj_reg, Primitive::kPrimNot)
1277 : LoadNullCheckedLocal(obj_reg, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001278
1279 Primitive::Type field_type = (resolved_field == nullptr)
1280 ? GetFieldAccessType(*dex_file_, field_index)
1281 : resolved_field->GetTypeAsPrimitiveType();
1282 if (is_put) {
1283 HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
1284 HInstruction* field_set = nullptr;
1285 if (resolved_field == nullptr) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001286 MaybeRecordStat(compilation_stats_,
1287 MethodCompilationStat::kUnresolvedField);
David Brazdilc120bbe2016-04-22 16:57:00 +01001288 field_set = new (arena_) HUnresolvedInstanceFieldSet(object,
David Brazdildee58d62016-04-07 09:54:26 +00001289 value,
1290 field_type,
1291 field_index,
1292 dex_pc);
1293 } else {
1294 uint16_t class_def_index = resolved_field->GetDeclaringClass()->GetDexClassDefIndex();
David Brazdilc120bbe2016-04-22 16:57:00 +01001295 field_set = new (arena_) HInstanceFieldSet(object,
David Brazdildee58d62016-04-07 09:54:26 +00001296 value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001297 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001298 field_type,
1299 resolved_field->GetOffset(),
1300 resolved_field->IsVolatile(),
1301 field_index,
1302 class_def_index,
1303 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001304 dex_pc);
1305 }
1306 AppendInstruction(field_set);
1307 } else {
1308 HInstruction* field_get = nullptr;
1309 if (resolved_field == nullptr) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001310 MaybeRecordStat(compilation_stats_,
1311 MethodCompilationStat::kUnresolvedField);
David Brazdilc120bbe2016-04-22 16:57:00 +01001312 field_get = new (arena_) HUnresolvedInstanceFieldGet(object,
David Brazdildee58d62016-04-07 09:54:26 +00001313 field_type,
1314 field_index,
1315 dex_pc);
1316 } else {
1317 uint16_t class_def_index = resolved_field->GetDeclaringClass()->GetDexClassDefIndex();
David Brazdilc120bbe2016-04-22 16:57:00 +01001318 field_get = new (arena_) HInstanceFieldGet(object,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001319 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001320 field_type,
1321 resolved_field->GetOffset(),
1322 resolved_field->IsVolatile(),
1323 field_index,
1324 class_def_index,
1325 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001326 dex_pc);
1327 }
1328 AppendInstruction(field_get);
1329 UpdateLocal(source_or_dest_reg, field_get);
1330 }
1331
1332 return true;
1333}
1334
1335static mirror::Class* GetClassFrom(CompilerDriver* driver,
1336 const DexCompilationUnit& compilation_unit) {
1337 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001338 Handle<mirror::ClassLoader> class_loader = compilation_unit.GetClassLoader();
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001339 Handle<mirror::DexCache> dex_cache = compilation_unit.GetDexCache();
David Brazdildee58d62016-04-07 09:54:26 +00001340
1341 return driver->ResolveCompilingMethodsClass(soa, dex_cache, class_loader, &compilation_unit);
1342}
1343
1344mirror::Class* HInstructionBuilder::GetOutermostCompilingClass() const {
1345 return GetClassFrom(compiler_driver_, *outer_compilation_unit_);
1346}
1347
1348mirror::Class* HInstructionBuilder::GetCompilingClass() const {
1349 return GetClassFrom(compiler_driver_, *dex_compilation_unit_);
1350}
1351
Andreas Gampea5b09a62016-11-17 15:21:22 -08001352bool HInstructionBuilder::IsOutermostCompilingClass(dex::TypeIndex type_index) const {
David Brazdildee58d62016-04-07 09:54:26 +00001353 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001354 StackHandleScope<2> hs(soa.Self());
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001355 Handle<mirror::DexCache> dex_cache = dex_compilation_unit_->GetDexCache();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001356 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
David Brazdildee58d62016-04-07 09:54:26 +00001357 Handle<mirror::Class> cls(hs.NewHandle(compiler_driver_->ResolveClass(
1358 soa, dex_cache, class_loader, type_index, dex_compilation_unit_)));
1359 Handle<mirror::Class> outer_class(hs.NewHandle(GetOutermostCompilingClass()));
1360
1361 // GetOutermostCompilingClass returns null when the class is unresolved
1362 // (e.g. if it derives from an unresolved class). This is bogus knowing that
1363 // we are compiling it.
1364 // When this happens we cannot establish a direct relation between the current
1365 // class and the outer class, so we return false.
1366 // (Note that this is only used for optimizing invokes and field accesses)
Andreas Gampefa4333d2017-02-14 11:10:34 -08001367 return (cls != nullptr) && (outer_class.Get() == cls.Get());
David Brazdildee58d62016-04-07 09:54:26 +00001368}
1369
1370void HInstructionBuilder::BuildUnresolvedStaticFieldAccess(const Instruction& instruction,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001371 uint32_t dex_pc,
1372 bool is_put,
1373 Primitive::Type field_type) {
David Brazdildee58d62016-04-07 09:54:26 +00001374 uint32_t source_or_dest_reg = instruction.VRegA_21c();
1375 uint16_t field_index = instruction.VRegB_21c();
1376
1377 if (is_put) {
1378 HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
1379 AppendInstruction(
1380 new (arena_) HUnresolvedStaticFieldSet(value, field_type, field_index, dex_pc));
1381 } else {
1382 AppendInstruction(new (arena_) HUnresolvedStaticFieldGet(field_type, field_index, dex_pc));
1383 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
1384 }
1385}
1386
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001387ArtField* HInstructionBuilder::ResolveField(uint16_t field_idx, bool is_static, bool is_put) {
1388 ScopedObjectAccess soa(Thread::Current());
1389 StackHandleScope<2> hs(soa.Self());
1390
1391 ClassLinker* class_linker = dex_compilation_unit_->GetClassLinker();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001392 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001393 Handle<mirror::Class> compiling_class(hs.NewHandle(GetCompilingClass()));
1394
1395 ArtField* resolved_field = class_linker->ResolveField(*dex_compilation_unit_->GetDexFile(),
1396 field_idx,
1397 dex_compilation_unit_->GetDexCache(),
1398 class_loader,
1399 is_static);
1400
1401 if (UNLIKELY(resolved_field == nullptr)) {
1402 // Clean up any exception left by type resolution.
1403 soa.Self()->ClearException();
1404 return nullptr;
1405 }
1406
1407 // Check static/instance. The class linker has a fast path for looking into the dex cache
1408 // and does not check static/instance if it hits it.
1409 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
1410 return nullptr;
1411 }
1412
1413 // Check access.
Andreas Gampefa4333d2017-02-14 11:10:34 -08001414 if (compiling_class == nullptr) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001415 if (!resolved_field->IsPublic()) {
1416 return nullptr;
1417 }
1418 } else if (!compiling_class->CanAccessResolvedField(resolved_field->GetDeclaringClass(),
1419 resolved_field,
1420 dex_compilation_unit_->GetDexCache().Get(),
1421 field_idx)) {
1422 return nullptr;
1423 }
1424
1425 if (is_put &&
1426 resolved_field->IsFinal() &&
1427 (compiling_class.Get() != resolved_field->GetDeclaringClass())) {
1428 // Final fields can only be updated within their own class.
1429 // TODO: Only allow it in constructors. b/34966607.
1430 return nullptr;
1431 }
1432
1433 return resolved_field;
1434}
1435
David Brazdildee58d62016-04-07 09:54:26 +00001436bool HInstructionBuilder::BuildStaticFieldAccess(const Instruction& instruction,
1437 uint32_t dex_pc,
1438 bool is_put) {
1439 uint32_t source_or_dest_reg = instruction.VRegA_21c();
1440 uint16_t field_index = instruction.VRegB_21c();
1441
1442 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001443 ArtField* resolved_field = ResolveField(field_index, /* is_static */ true, is_put);
David Brazdildee58d62016-04-07 09:54:26 +00001444
1445 if (resolved_field == nullptr) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001446 MaybeRecordStat(compilation_stats_,
1447 MethodCompilationStat::kUnresolvedField);
David Brazdildee58d62016-04-07 09:54:26 +00001448 Primitive::Type field_type = GetFieldAccessType(*dex_file_, field_index);
1449 BuildUnresolvedStaticFieldAccess(instruction, dex_pc, is_put, field_type);
1450 return true;
1451 }
1452
1453 Primitive::Type field_type = resolved_field->GetTypeAsPrimitiveType();
David Brazdildee58d62016-04-07 09:54:26 +00001454
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001455 Handle<mirror::Class> klass = handles_->NewHandle(resolved_field->GetDeclaringClass());
1456 HLoadClass* constant = BuildLoadClass(klass->GetDexTypeIndex(),
1457 klass->GetDexFile(),
1458 klass,
1459 dex_pc,
1460 /* needs_access_check */ false);
1461
1462 if (constant == nullptr) {
1463 // The class cannot be referenced from this compiled code. Generate
1464 // an unresolved access.
Igor Murashkin1e065a52017-08-09 13:20:34 -07001465 MaybeRecordStat(compilation_stats_,
1466 MethodCompilationStat::kUnresolvedFieldNotAFastAccess);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001467 BuildUnresolvedStaticFieldAccess(instruction, dex_pc, is_put, field_type);
1468 return true;
David Brazdildee58d62016-04-07 09:54:26 +00001469 }
1470
David Brazdildee58d62016-04-07 09:54:26 +00001471 HInstruction* cls = constant;
David Brazdildee58d62016-04-07 09:54:26 +00001472 if (!IsInitialized(klass)) {
1473 cls = new (arena_) HClinitCheck(constant, dex_pc);
1474 AppendInstruction(cls);
1475 }
1476
1477 uint16_t class_def_index = klass->GetDexClassDefIndex();
1478 if (is_put) {
1479 // We need to keep the class alive before loading the value.
1480 HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
1481 DCHECK_EQ(HPhi::ToPhiType(value->GetType()), HPhi::ToPhiType(field_type));
1482 AppendInstruction(new (arena_) HStaticFieldSet(cls,
1483 value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001484 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001485 field_type,
1486 resolved_field->GetOffset(),
1487 resolved_field->IsVolatile(),
1488 field_index,
1489 class_def_index,
1490 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001491 dex_pc));
1492 } else {
1493 AppendInstruction(new (arena_) HStaticFieldGet(cls,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001494 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001495 field_type,
1496 resolved_field->GetOffset(),
1497 resolved_field->IsVolatile(),
1498 field_index,
1499 class_def_index,
1500 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001501 dex_pc));
1502 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
1503 }
1504 return true;
1505}
1506
1507void HInstructionBuilder::BuildCheckedDivRem(uint16_t out_vreg,
1508 uint16_t first_vreg,
1509 int64_t second_vreg_or_constant,
1510 uint32_t dex_pc,
1511 Primitive::Type type,
1512 bool second_is_constant,
1513 bool isDiv) {
1514 DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong);
1515
1516 HInstruction* first = LoadLocal(first_vreg, type);
1517 HInstruction* second = nullptr;
1518 if (second_is_constant) {
1519 if (type == Primitive::kPrimInt) {
1520 second = graph_->GetIntConstant(second_vreg_or_constant, dex_pc);
1521 } else {
1522 second = graph_->GetLongConstant(second_vreg_or_constant, dex_pc);
1523 }
1524 } else {
1525 second = LoadLocal(second_vreg_or_constant, type);
1526 }
1527
1528 if (!second_is_constant
1529 || (type == Primitive::kPrimInt && second->AsIntConstant()->GetValue() == 0)
1530 || (type == Primitive::kPrimLong && second->AsLongConstant()->GetValue() == 0)) {
1531 second = new (arena_) HDivZeroCheck(second, dex_pc);
1532 AppendInstruction(second);
1533 }
1534
1535 if (isDiv) {
1536 AppendInstruction(new (arena_) HDiv(type, first, second, dex_pc));
1537 } else {
1538 AppendInstruction(new (arena_) HRem(type, first, second, dex_pc));
1539 }
1540 UpdateLocal(out_vreg, current_block_->GetLastInstruction());
1541}
1542
1543void HInstructionBuilder::BuildArrayAccess(const Instruction& instruction,
1544 uint32_t dex_pc,
1545 bool is_put,
1546 Primitive::Type anticipated_type) {
1547 uint8_t source_or_dest_reg = instruction.VRegA_23x();
1548 uint8_t array_reg = instruction.VRegB_23x();
1549 uint8_t index_reg = instruction.VRegC_23x();
1550
David Brazdilc120bbe2016-04-22 16:57:00 +01001551 HInstruction* object = LoadNullCheckedLocal(array_reg, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001552 HInstruction* length = new (arena_) HArrayLength(object, dex_pc);
1553 AppendInstruction(length);
1554 HInstruction* index = LoadLocal(index_reg, Primitive::kPrimInt);
1555 index = new (arena_) HBoundsCheck(index, length, dex_pc);
1556 AppendInstruction(index);
1557 if (is_put) {
1558 HInstruction* value = LoadLocal(source_or_dest_reg, anticipated_type);
1559 // TODO: Insert a type check node if the type is Object.
1560 HArraySet* aset = new (arena_) HArraySet(object, index, value, anticipated_type, dex_pc);
1561 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1562 AppendInstruction(aset);
1563 } else {
1564 HArrayGet* aget = new (arena_) HArrayGet(object, index, anticipated_type, dex_pc);
1565 ssa_builder_->MaybeAddAmbiguousArrayGet(aget);
1566 AppendInstruction(aget);
1567 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
1568 }
1569 graph_->SetHasBoundsChecks(true);
1570}
1571
Igor Murashkin79d8fa72017-04-18 09:37:23 -07001572HNewArray* HInstructionBuilder::BuildFilledNewArray(uint32_t dex_pc,
1573 dex::TypeIndex type_index,
1574 uint32_t number_of_vreg_arguments,
1575 bool is_range,
1576 uint32_t* args,
1577 uint32_t register_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001578 HInstruction* length = graph_->GetIntConstant(number_of_vreg_arguments, dex_pc);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001579 HLoadClass* cls = BuildLoadClass(type_index, dex_pc);
Igor Murashkin79d8fa72017-04-18 09:37:23 -07001580 HNewArray* const object = new (arena_) HNewArray(cls, length, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001581 AppendInstruction(object);
1582
1583 const char* descriptor = dex_file_->StringByTypeIdx(type_index);
1584 DCHECK_EQ(descriptor[0], '[') << descriptor;
1585 char primitive = descriptor[1];
1586 DCHECK(primitive == 'I'
1587 || primitive == 'L'
1588 || primitive == '[') << descriptor;
1589 bool is_reference_array = (primitive == 'L') || (primitive == '[');
1590 Primitive::Type type = is_reference_array ? Primitive::kPrimNot : Primitive::kPrimInt;
1591
1592 for (size_t i = 0; i < number_of_vreg_arguments; ++i) {
1593 HInstruction* value = LoadLocal(is_range ? register_index + i : args[i], type);
1594 HInstruction* index = graph_->GetIntConstant(i, dex_pc);
1595 HArraySet* aset = new (arena_) HArraySet(object, index, value, type, dex_pc);
1596 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1597 AppendInstruction(aset);
1598 }
1599 latest_result_ = object;
Igor Murashkin79d8fa72017-04-18 09:37:23 -07001600
1601 return object;
David Brazdildee58d62016-04-07 09:54:26 +00001602}
1603
1604template <typename T>
1605void HInstructionBuilder::BuildFillArrayData(HInstruction* object,
1606 const T* data,
1607 uint32_t element_count,
1608 Primitive::Type anticipated_type,
1609 uint32_t dex_pc) {
1610 for (uint32_t i = 0; i < element_count; ++i) {
1611 HInstruction* index = graph_->GetIntConstant(i, dex_pc);
1612 HInstruction* value = graph_->GetIntConstant(data[i], dex_pc);
1613 HArraySet* aset = new (arena_) HArraySet(object, index, value, anticipated_type, dex_pc);
1614 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1615 AppendInstruction(aset);
1616 }
1617}
1618
1619void HInstructionBuilder::BuildFillArrayData(const Instruction& instruction, uint32_t dex_pc) {
David Brazdilc120bbe2016-04-22 16:57:00 +01001620 HInstruction* array = LoadNullCheckedLocal(instruction.VRegA_31t(), dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001621
1622 int32_t payload_offset = instruction.VRegB_31t() + dex_pc;
1623 const Instruction::ArrayDataPayload* payload =
1624 reinterpret_cast<const Instruction::ArrayDataPayload*>(code_item_.insns_ + payload_offset);
1625 const uint8_t* data = payload->data;
1626 uint32_t element_count = payload->element_count;
1627
Vladimir Markoc69fba22016-09-06 16:49:15 +01001628 if (element_count == 0u) {
1629 // For empty payload we emit only the null check above.
1630 return;
1631 }
1632
1633 HInstruction* length = new (arena_) HArrayLength(array, dex_pc);
1634 AppendInstruction(length);
1635
David Brazdildee58d62016-04-07 09:54:26 +00001636 // Implementation of this DEX instruction seems to be that the bounds check is
1637 // done before doing any stores.
1638 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc);
1639 AppendInstruction(new (arena_) HBoundsCheck(last_index, length, dex_pc));
1640
1641 switch (payload->element_width) {
1642 case 1:
David Brazdilc120bbe2016-04-22 16:57:00 +01001643 BuildFillArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001644 reinterpret_cast<const int8_t*>(data),
1645 element_count,
1646 Primitive::kPrimByte,
1647 dex_pc);
1648 break;
1649 case 2:
David Brazdilc120bbe2016-04-22 16:57:00 +01001650 BuildFillArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001651 reinterpret_cast<const int16_t*>(data),
1652 element_count,
1653 Primitive::kPrimShort,
1654 dex_pc);
1655 break;
1656 case 4:
David Brazdilc120bbe2016-04-22 16:57:00 +01001657 BuildFillArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001658 reinterpret_cast<const int32_t*>(data),
1659 element_count,
1660 Primitive::kPrimInt,
1661 dex_pc);
1662 break;
1663 case 8:
David Brazdilc120bbe2016-04-22 16:57:00 +01001664 BuildFillWideArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001665 reinterpret_cast<const int64_t*>(data),
1666 element_count,
1667 dex_pc);
1668 break;
1669 default:
1670 LOG(FATAL) << "Unknown element width for " << payload->element_width;
1671 }
1672 graph_->SetHasBoundsChecks(true);
1673}
1674
1675void HInstructionBuilder::BuildFillWideArrayData(HInstruction* object,
1676 const int64_t* data,
1677 uint32_t element_count,
1678 uint32_t dex_pc) {
1679 for (uint32_t i = 0; i < element_count; ++i) {
1680 HInstruction* index = graph_->GetIntConstant(i, dex_pc);
1681 HInstruction* value = graph_->GetLongConstant(data[i], dex_pc);
1682 HArraySet* aset = new (arena_) HArraySet(object, index, value, Primitive::kPrimLong, dex_pc);
1683 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1684 AppendInstruction(aset);
1685 }
1686}
1687
1688static TypeCheckKind ComputeTypeCheckKind(Handle<mirror::Class> cls)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001689 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08001690 if (cls == nullptr) {
David Brazdildee58d62016-04-07 09:54:26 +00001691 return TypeCheckKind::kUnresolvedCheck;
1692 } else if (cls->IsInterface()) {
1693 return TypeCheckKind::kInterfaceCheck;
1694 } else if (cls->IsArrayClass()) {
1695 if (cls->GetComponentType()->IsObjectClass()) {
1696 return TypeCheckKind::kArrayObjectCheck;
1697 } else if (cls->CannotBeAssignedFromOtherTypes()) {
1698 return TypeCheckKind::kExactCheck;
1699 } else {
1700 return TypeCheckKind::kArrayCheck;
1701 }
1702 } else if (cls->IsFinal()) {
1703 return TypeCheckKind::kExactCheck;
1704 } else if (cls->IsAbstract()) {
1705 return TypeCheckKind::kAbstractClassCheck;
1706 } else {
1707 return TypeCheckKind::kClassHierarchyCheck;
1708 }
1709}
1710
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001711HLoadClass* HInstructionBuilder::BuildLoadClass(dex::TypeIndex type_index, uint32_t dex_pc) {
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001712 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001713 const DexFile& dex_file = *dex_compilation_unit_->GetDexFile();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001714 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00001715 Handle<mirror::Class> klass = handles_->NewHandle(compiler_driver_->ResolveClass(
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001716 soa, dex_compilation_unit_->GetDexCache(), class_loader, type_index, dex_compilation_unit_));
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00001717
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001718 bool needs_access_check = true;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001719 if (klass != nullptr) {
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001720 if (klass->IsPublic()) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001721 needs_access_check = false;
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001722 } else {
1723 mirror::Class* compiling_class = GetCompilingClass();
1724 if (compiling_class != nullptr && compiling_class->CanAccess(klass.Get())) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001725 needs_access_check = false;
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001726 }
1727 }
1728 }
1729
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001730 return BuildLoadClass(type_index, dex_file, klass, dex_pc, needs_access_check);
1731}
1732
1733HLoadClass* HInstructionBuilder::BuildLoadClass(dex::TypeIndex type_index,
1734 const DexFile& dex_file,
1735 Handle<mirror::Class> klass,
1736 uint32_t dex_pc,
1737 bool needs_access_check) {
1738 // Try to find a reference in the compiling dex file.
1739 const DexFile* actual_dex_file = &dex_file;
1740 if (!IsSameDexFile(dex_file, *dex_compilation_unit_->GetDexFile())) {
1741 dex::TypeIndex local_type_index =
1742 klass->FindTypeIndexInOtherDexFile(*dex_compilation_unit_->GetDexFile());
1743 if (local_type_index.IsValid()) {
1744 type_index = local_type_index;
1745 actual_dex_file = dex_compilation_unit_->GetDexFile();
1746 }
1747 }
1748
1749 // Note: `klass` must be from `handles_`.
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001750 HLoadClass* load_class = new (arena_) HLoadClass(
1751 graph_->GetCurrentMethod(),
1752 type_index,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001753 *actual_dex_file,
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001754 klass,
Andreas Gampefa4333d2017-02-14 11:10:34 -08001755 klass != nullptr && (klass.Get() == GetOutermostCompilingClass()),
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001756 dex_pc,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001757 needs_access_check);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001758
Nicolas Geoffrayc4aa82c2017-03-06 14:38:52 +00001759 HLoadClass::LoadKind load_kind = HSharpening::ComputeLoadClassKind(load_class,
1760 code_generator_,
1761 compiler_driver_,
1762 *dex_compilation_unit_);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001763
1764 if (load_kind == HLoadClass::LoadKind::kInvalid) {
1765 // We actually cannot reference this class, we're forced to bail.
1766 return nullptr;
1767 }
1768 // Append the instruction first, as setting the load kind affects the inputs.
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001769 AppendInstruction(load_class);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001770 load_class->SetLoadKind(load_kind);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001771 return load_class;
1772}
1773
David Brazdildee58d62016-04-07 09:54:26 +00001774void HInstructionBuilder::BuildTypeCheck(const Instruction& instruction,
1775 uint8_t destination,
1776 uint8_t reference,
Andreas Gampea5b09a62016-11-17 15:21:22 -08001777 dex::TypeIndex type_index,
David Brazdildee58d62016-04-07 09:54:26 +00001778 uint32_t dex_pc) {
David Brazdildee58d62016-04-07 09:54:26 +00001779 HInstruction* object = LoadLocal(reference, Primitive::kPrimNot);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001780 HLoadClass* cls = BuildLoadClass(type_index, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001781
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001782 ScopedObjectAccess soa(Thread::Current());
1783 TypeCheckKind check_kind = ComputeTypeCheckKind(cls->GetClass());
David Brazdildee58d62016-04-07 09:54:26 +00001784 if (instruction.Opcode() == Instruction::INSTANCE_OF) {
1785 AppendInstruction(new (arena_) HInstanceOf(object, cls, check_kind, dex_pc));
1786 UpdateLocal(destination, current_block_->GetLastInstruction());
1787 } else {
1788 DCHECK_EQ(instruction.Opcode(), Instruction::CHECK_CAST);
1789 // We emit a CheckCast followed by a BoundType. CheckCast is a statement
1790 // which may throw. If it succeeds BoundType sets the new type of `object`
1791 // for all subsequent uses.
1792 AppendInstruction(new (arena_) HCheckCast(object, cls, check_kind, dex_pc));
1793 AppendInstruction(new (arena_) HBoundType(object, dex_pc));
1794 UpdateLocal(reference, current_block_->GetLastInstruction());
1795 }
1796}
1797
Vladimir Marko0b66d612017-03-13 14:50:04 +00001798bool HInstructionBuilder::NeedsAccessCheck(dex::TypeIndex type_index, bool* finalizable) const {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001799 return !compiler_driver_->CanAccessInstantiableTypeWithoutChecks(
1800 LookupReferrerClass(), LookupResolvedType(type_index, *dex_compilation_unit_), finalizable);
David Brazdildee58d62016-04-07 09:54:26 +00001801}
1802
1803bool HInstructionBuilder::CanDecodeQuickenedInfo() const {
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001804 return !quicken_info_.IsNull();
David Brazdildee58d62016-04-07 09:54:26 +00001805}
1806
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001807uint16_t HInstructionBuilder::LookupQuickenedInfo(uint32_t quicken_index) {
1808 DCHECK(CanDecodeQuickenedInfo());
1809 return quicken_info_.GetData(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001810}
1811
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001812bool HInstructionBuilder::ProcessDexInstruction(const Instruction& instruction,
1813 uint32_t dex_pc,
1814 size_t quicken_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001815 switch (instruction.Opcode()) {
1816 case Instruction::CONST_4: {
1817 int32_t register_index = instruction.VRegA();
1818 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_11n(), dex_pc);
1819 UpdateLocal(register_index, constant);
1820 break;
1821 }
1822
1823 case Instruction::CONST_16: {
1824 int32_t register_index = instruction.VRegA();
1825 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_21s(), dex_pc);
1826 UpdateLocal(register_index, constant);
1827 break;
1828 }
1829
1830 case Instruction::CONST: {
1831 int32_t register_index = instruction.VRegA();
1832 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_31i(), dex_pc);
1833 UpdateLocal(register_index, constant);
1834 break;
1835 }
1836
1837 case Instruction::CONST_HIGH16: {
1838 int32_t register_index = instruction.VRegA();
1839 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_21h() << 16, dex_pc);
1840 UpdateLocal(register_index, constant);
1841 break;
1842 }
1843
1844 case Instruction::CONST_WIDE_16: {
1845 int32_t register_index = instruction.VRegA();
1846 // Get 16 bits of constant value, sign extended to 64 bits.
1847 int64_t value = instruction.VRegB_21s();
1848 value <<= 48;
1849 value >>= 48;
1850 HLongConstant* constant = graph_->GetLongConstant(value, dex_pc);
1851 UpdateLocal(register_index, constant);
1852 break;
1853 }
1854
1855 case Instruction::CONST_WIDE_32: {
1856 int32_t register_index = instruction.VRegA();
1857 // Get 32 bits of constant value, sign extended to 64 bits.
1858 int64_t value = instruction.VRegB_31i();
1859 value <<= 32;
1860 value >>= 32;
1861 HLongConstant* constant = graph_->GetLongConstant(value, dex_pc);
1862 UpdateLocal(register_index, constant);
1863 break;
1864 }
1865
1866 case Instruction::CONST_WIDE: {
1867 int32_t register_index = instruction.VRegA();
1868 HLongConstant* constant = graph_->GetLongConstant(instruction.VRegB_51l(), dex_pc);
1869 UpdateLocal(register_index, constant);
1870 break;
1871 }
1872
1873 case Instruction::CONST_WIDE_HIGH16: {
1874 int32_t register_index = instruction.VRegA();
1875 int64_t value = static_cast<int64_t>(instruction.VRegB_21h()) << 48;
1876 HLongConstant* constant = graph_->GetLongConstant(value, dex_pc);
1877 UpdateLocal(register_index, constant);
1878 break;
1879 }
1880
1881 // Note that the SSA building will refine the types.
1882 case Instruction::MOVE:
1883 case Instruction::MOVE_FROM16:
1884 case Instruction::MOVE_16: {
1885 HInstruction* value = LoadLocal(instruction.VRegB(), Primitive::kPrimInt);
1886 UpdateLocal(instruction.VRegA(), value);
1887 break;
1888 }
1889
1890 // Note that the SSA building will refine the types.
1891 case Instruction::MOVE_WIDE:
1892 case Instruction::MOVE_WIDE_FROM16:
1893 case Instruction::MOVE_WIDE_16: {
1894 HInstruction* value = LoadLocal(instruction.VRegB(), Primitive::kPrimLong);
1895 UpdateLocal(instruction.VRegA(), value);
1896 break;
1897 }
1898
1899 case Instruction::MOVE_OBJECT:
1900 case Instruction::MOVE_OBJECT_16:
1901 case Instruction::MOVE_OBJECT_FROM16: {
Nicolas Geoffray50a9ed02016-09-23 15:40:41 +01001902 // The verifier has no notion of a null type, so a move-object of constant 0
1903 // will lead to the same constant 0 in the destination register. To mimic
1904 // this behavior, we just pretend we haven't seen a type change (int to reference)
1905 // for the 0 constant and phis. We rely on our type propagation to eventually get the
1906 // types correct.
1907 uint32_t reg_number = instruction.VRegB();
1908 HInstruction* value = (*current_locals_)[reg_number];
1909 if (value->IsIntConstant()) {
1910 DCHECK_EQ(value->AsIntConstant()->GetValue(), 0);
1911 } else if (value->IsPhi()) {
1912 DCHECK(value->GetType() == Primitive::kPrimInt || value->GetType() == Primitive::kPrimNot);
1913 } else {
1914 value = LoadLocal(reg_number, Primitive::kPrimNot);
1915 }
David Brazdildee58d62016-04-07 09:54:26 +00001916 UpdateLocal(instruction.VRegA(), value);
1917 break;
1918 }
1919
1920 case Instruction::RETURN_VOID_NO_BARRIER:
1921 case Instruction::RETURN_VOID: {
1922 BuildReturn(instruction, Primitive::kPrimVoid, dex_pc);
1923 break;
1924 }
1925
1926#define IF_XX(comparison, cond) \
1927 case Instruction::IF_##cond: If_22t<comparison>(instruction, dex_pc); break; \
1928 case Instruction::IF_##cond##Z: If_21t<comparison>(instruction, dex_pc); break
1929
1930 IF_XX(HEqual, EQ);
1931 IF_XX(HNotEqual, NE);
1932 IF_XX(HLessThan, LT);
1933 IF_XX(HLessThanOrEqual, LE);
1934 IF_XX(HGreaterThan, GT);
1935 IF_XX(HGreaterThanOrEqual, GE);
1936
1937 case Instruction::GOTO:
1938 case Instruction::GOTO_16:
1939 case Instruction::GOTO_32: {
1940 AppendInstruction(new (arena_) HGoto(dex_pc));
1941 current_block_ = nullptr;
1942 break;
1943 }
1944
1945 case Instruction::RETURN: {
1946 BuildReturn(instruction, return_type_, dex_pc);
1947 break;
1948 }
1949
1950 case Instruction::RETURN_OBJECT: {
1951 BuildReturn(instruction, return_type_, dex_pc);
1952 break;
1953 }
1954
1955 case Instruction::RETURN_WIDE: {
1956 BuildReturn(instruction, return_type_, dex_pc);
1957 break;
1958 }
1959
1960 case Instruction::INVOKE_DIRECT:
1961 case Instruction::INVOKE_INTERFACE:
1962 case Instruction::INVOKE_STATIC:
1963 case Instruction::INVOKE_SUPER:
1964 case Instruction::INVOKE_VIRTUAL:
1965 case Instruction::INVOKE_VIRTUAL_QUICK: {
1966 uint16_t method_idx;
1967 if (instruction.Opcode() == Instruction::INVOKE_VIRTUAL_QUICK) {
1968 if (!CanDecodeQuickenedInfo()) {
1969 return false;
1970 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001971 method_idx = LookupQuickenedInfo(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001972 } else {
1973 method_idx = instruction.VRegB_35c();
1974 }
1975 uint32_t number_of_vreg_arguments = instruction.VRegA_35c();
1976 uint32_t args[5];
1977 instruction.GetVarArgs(args);
1978 if (!BuildInvoke(instruction, dex_pc, method_idx,
1979 number_of_vreg_arguments, false, args, -1)) {
1980 return false;
1981 }
1982 break;
1983 }
1984
1985 case Instruction::INVOKE_DIRECT_RANGE:
1986 case Instruction::INVOKE_INTERFACE_RANGE:
1987 case Instruction::INVOKE_STATIC_RANGE:
1988 case Instruction::INVOKE_SUPER_RANGE:
1989 case Instruction::INVOKE_VIRTUAL_RANGE:
1990 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
1991 uint16_t method_idx;
1992 if (instruction.Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK) {
1993 if (!CanDecodeQuickenedInfo()) {
1994 return false;
1995 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001996 method_idx = LookupQuickenedInfo(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001997 } else {
1998 method_idx = instruction.VRegB_3rc();
1999 }
2000 uint32_t number_of_vreg_arguments = instruction.VRegA_3rc();
2001 uint32_t register_index = instruction.VRegC();
2002 if (!BuildInvoke(instruction, dex_pc, method_idx,
2003 number_of_vreg_arguments, true, nullptr, register_index)) {
2004 return false;
2005 }
2006 break;
2007 }
2008
Orion Hodsonac141392017-01-13 11:53:47 +00002009 case Instruction::INVOKE_POLYMORPHIC: {
2010 uint16_t method_idx = instruction.VRegB_45cc();
2011 uint16_t proto_idx = instruction.VRegH_45cc();
2012 uint32_t number_of_vreg_arguments = instruction.VRegA_45cc();
2013 uint32_t args[5];
2014 instruction.GetVarArgs(args);
2015 return BuildInvokePolymorphic(instruction,
2016 dex_pc,
2017 method_idx,
2018 proto_idx,
2019 number_of_vreg_arguments,
2020 false,
2021 args,
2022 -1);
2023 }
2024
2025 case Instruction::INVOKE_POLYMORPHIC_RANGE: {
2026 uint16_t method_idx = instruction.VRegB_4rcc();
2027 uint16_t proto_idx = instruction.VRegH_4rcc();
2028 uint32_t number_of_vreg_arguments = instruction.VRegA_4rcc();
2029 uint32_t register_index = instruction.VRegC_4rcc();
2030 return BuildInvokePolymorphic(instruction,
2031 dex_pc,
2032 method_idx,
2033 proto_idx,
2034 number_of_vreg_arguments,
2035 true,
2036 nullptr,
2037 register_index);
2038 }
2039
David Brazdildee58d62016-04-07 09:54:26 +00002040 case Instruction::NEG_INT: {
2041 Unop_12x<HNeg>(instruction, Primitive::kPrimInt, dex_pc);
2042 break;
2043 }
2044
2045 case Instruction::NEG_LONG: {
2046 Unop_12x<HNeg>(instruction, Primitive::kPrimLong, dex_pc);
2047 break;
2048 }
2049
2050 case Instruction::NEG_FLOAT: {
2051 Unop_12x<HNeg>(instruction, Primitive::kPrimFloat, dex_pc);
2052 break;
2053 }
2054
2055 case Instruction::NEG_DOUBLE: {
2056 Unop_12x<HNeg>(instruction, Primitive::kPrimDouble, dex_pc);
2057 break;
2058 }
2059
2060 case Instruction::NOT_INT: {
2061 Unop_12x<HNot>(instruction, Primitive::kPrimInt, dex_pc);
2062 break;
2063 }
2064
2065 case Instruction::NOT_LONG: {
2066 Unop_12x<HNot>(instruction, Primitive::kPrimLong, dex_pc);
2067 break;
2068 }
2069
2070 case Instruction::INT_TO_LONG: {
2071 Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimLong, dex_pc);
2072 break;
2073 }
2074
2075 case Instruction::INT_TO_FLOAT: {
2076 Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimFloat, dex_pc);
2077 break;
2078 }
2079
2080 case Instruction::INT_TO_DOUBLE: {
2081 Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimDouble, dex_pc);
2082 break;
2083 }
2084
2085 case Instruction::LONG_TO_INT: {
2086 Conversion_12x(instruction, Primitive::kPrimLong, Primitive::kPrimInt, dex_pc);
2087 break;
2088 }
2089
2090 case Instruction::LONG_TO_FLOAT: {
2091 Conversion_12x(instruction, Primitive::kPrimLong, Primitive::kPrimFloat, dex_pc);
2092 break;
2093 }
2094
2095 case Instruction::LONG_TO_DOUBLE: {
2096 Conversion_12x(instruction, Primitive::kPrimLong, Primitive::kPrimDouble, dex_pc);
2097 break;
2098 }
2099
2100 case Instruction::FLOAT_TO_INT: {
2101 Conversion_12x(instruction, Primitive::kPrimFloat, Primitive::kPrimInt, dex_pc);
2102 break;
2103 }
2104
2105 case Instruction::FLOAT_TO_LONG: {
2106 Conversion_12x(instruction, Primitive::kPrimFloat, Primitive::kPrimLong, dex_pc);
2107 break;
2108 }
2109
2110 case Instruction::FLOAT_TO_DOUBLE: {
2111 Conversion_12x(instruction, Primitive::kPrimFloat, Primitive::kPrimDouble, dex_pc);
2112 break;
2113 }
2114
2115 case Instruction::DOUBLE_TO_INT: {
2116 Conversion_12x(instruction, Primitive::kPrimDouble, Primitive::kPrimInt, dex_pc);
2117 break;
2118 }
2119
2120 case Instruction::DOUBLE_TO_LONG: {
2121 Conversion_12x(instruction, Primitive::kPrimDouble, Primitive::kPrimLong, dex_pc);
2122 break;
2123 }
2124
2125 case Instruction::DOUBLE_TO_FLOAT: {
2126 Conversion_12x(instruction, Primitive::kPrimDouble, Primitive::kPrimFloat, dex_pc);
2127 break;
2128 }
2129
2130 case Instruction::INT_TO_BYTE: {
2131 Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimByte, dex_pc);
2132 break;
2133 }
2134
2135 case Instruction::INT_TO_SHORT: {
2136 Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimShort, dex_pc);
2137 break;
2138 }
2139
2140 case Instruction::INT_TO_CHAR: {
2141 Conversion_12x(instruction, Primitive::kPrimInt, Primitive::kPrimChar, dex_pc);
2142 break;
2143 }
2144
2145 case Instruction::ADD_INT: {
2146 Binop_23x<HAdd>(instruction, Primitive::kPrimInt, dex_pc);
2147 break;
2148 }
2149
2150 case Instruction::ADD_LONG: {
2151 Binop_23x<HAdd>(instruction, Primitive::kPrimLong, dex_pc);
2152 break;
2153 }
2154
2155 case Instruction::ADD_DOUBLE: {
2156 Binop_23x<HAdd>(instruction, Primitive::kPrimDouble, dex_pc);
2157 break;
2158 }
2159
2160 case Instruction::ADD_FLOAT: {
2161 Binop_23x<HAdd>(instruction, Primitive::kPrimFloat, dex_pc);
2162 break;
2163 }
2164
2165 case Instruction::SUB_INT: {
2166 Binop_23x<HSub>(instruction, Primitive::kPrimInt, dex_pc);
2167 break;
2168 }
2169
2170 case Instruction::SUB_LONG: {
2171 Binop_23x<HSub>(instruction, Primitive::kPrimLong, dex_pc);
2172 break;
2173 }
2174
2175 case Instruction::SUB_FLOAT: {
2176 Binop_23x<HSub>(instruction, Primitive::kPrimFloat, dex_pc);
2177 break;
2178 }
2179
2180 case Instruction::SUB_DOUBLE: {
2181 Binop_23x<HSub>(instruction, Primitive::kPrimDouble, dex_pc);
2182 break;
2183 }
2184
2185 case Instruction::ADD_INT_2ADDR: {
2186 Binop_12x<HAdd>(instruction, Primitive::kPrimInt, dex_pc);
2187 break;
2188 }
2189
2190 case Instruction::MUL_INT: {
2191 Binop_23x<HMul>(instruction, Primitive::kPrimInt, dex_pc);
2192 break;
2193 }
2194
2195 case Instruction::MUL_LONG: {
2196 Binop_23x<HMul>(instruction, Primitive::kPrimLong, dex_pc);
2197 break;
2198 }
2199
2200 case Instruction::MUL_FLOAT: {
2201 Binop_23x<HMul>(instruction, Primitive::kPrimFloat, dex_pc);
2202 break;
2203 }
2204
2205 case Instruction::MUL_DOUBLE: {
2206 Binop_23x<HMul>(instruction, Primitive::kPrimDouble, dex_pc);
2207 break;
2208 }
2209
2210 case Instruction::DIV_INT: {
2211 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
2212 dex_pc, Primitive::kPrimInt, false, true);
2213 break;
2214 }
2215
2216 case Instruction::DIV_LONG: {
2217 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
2218 dex_pc, Primitive::kPrimLong, false, true);
2219 break;
2220 }
2221
2222 case Instruction::DIV_FLOAT: {
2223 Binop_23x<HDiv>(instruction, Primitive::kPrimFloat, dex_pc);
2224 break;
2225 }
2226
2227 case Instruction::DIV_DOUBLE: {
2228 Binop_23x<HDiv>(instruction, Primitive::kPrimDouble, dex_pc);
2229 break;
2230 }
2231
2232 case Instruction::REM_INT: {
2233 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
2234 dex_pc, Primitive::kPrimInt, false, false);
2235 break;
2236 }
2237
2238 case Instruction::REM_LONG: {
2239 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
2240 dex_pc, Primitive::kPrimLong, false, false);
2241 break;
2242 }
2243
2244 case Instruction::REM_FLOAT: {
2245 Binop_23x<HRem>(instruction, Primitive::kPrimFloat, dex_pc);
2246 break;
2247 }
2248
2249 case Instruction::REM_DOUBLE: {
2250 Binop_23x<HRem>(instruction, Primitive::kPrimDouble, dex_pc);
2251 break;
2252 }
2253
2254 case Instruction::AND_INT: {
2255 Binop_23x<HAnd>(instruction, Primitive::kPrimInt, dex_pc);
2256 break;
2257 }
2258
2259 case Instruction::AND_LONG: {
2260 Binop_23x<HAnd>(instruction, Primitive::kPrimLong, dex_pc);
2261 break;
2262 }
2263
2264 case Instruction::SHL_INT: {
2265 Binop_23x_shift<HShl>(instruction, Primitive::kPrimInt, dex_pc);
2266 break;
2267 }
2268
2269 case Instruction::SHL_LONG: {
2270 Binop_23x_shift<HShl>(instruction, Primitive::kPrimLong, dex_pc);
2271 break;
2272 }
2273
2274 case Instruction::SHR_INT: {
2275 Binop_23x_shift<HShr>(instruction, Primitive::kPrimInt, dex_pc);
2276 break;
2277 }
2278
2279 case Instruction::SHR_LONG: {
2280 Binop_23x_shift<HShr>(instruction, Primitive::kPrimLong, dex_pc);
2281 break;
2282 }
2283
2284 case Instruction::USHR_INT: {
2285 Binop_23x_shift<HUShr>(instruction, Primitive::kPrimInt, dex_pc);
2286 break;
2287 }
2288
2289 case Instruction::USHR_LONG: {
2290 Binop_23x_shift<HUShr>(instruction, Primitive::kPrimLong, dex_pc);
2291 break;
2292 }
2293
2294 case Instruction::OR_INT: {
2295 Binop_23x<HOr>(instruction, Primitive::kPrimInt, dex_pc);
2296 break;
2297 }
2298
2299 case Instruction::OR_LONG: {
2300 Binop_23x<HOr>(instruction, Primitive::kPrimLong, dex_pc);
2301 break;
2302 }
2303
2304 case Instruction::XOR_INT: {
2305 Binop_23x<HXor>(instruction, Primitive::kPrimInt, dex_pc);
2306 break;
2307 }
2308
2309 case Instruction::XOR_LONG: {
2310 Binop_23x<HXor>(instruction, Primitive::kPrimLong, dex_pc);
2311 break;
2312 }
2313
2314 case Instruction::ADD_LONG_2ADDR: {
2315 Binop_12x<HAdd>(instruction, Primitive::kPrimLong, dex_pc);
2316 break;
2317 }
2318
2319 case Instruction::ADD_DOUBLE_2ADDR: {
2320 Binop_12x<HAdd>(instruction, Primitive::kPrimDouble, dex_pc);
2321 break;
2322 }
2323
2324 case Instruction::ADD_FLOAT_2ADDR: {
2325 Binop_12x<HAdd>(instruction, Primitive::kPrimFloat, dex_pc);
2326 break;
2327 }
2328
2329 case Instruction::SUB_INT_2ADDR: {
2330 Binop_12x<HSub>(instruction, Primitive::kPrimInt, dex_pc);
2331 break;
2332 }
2333
2334 case Instruction::SUB_LONG_2ADDR: {
2335 Binop_12x<HSub>(instruction, Primitive::kPrimLong, dex_pc);
2336 break;
2337 }
2338
2339 case Instruction::SUB_FLOAT_2ADDR: {
2340 Binop_12x<HSub>(instruction, Primitive::kPrimFloat, dex_pc);
2341 break;
2342 }
2343
2344 case Instruction::SUB_DOUBLE_2ADDR: {
2345 Binop_12x<HSub>(instruction, Primitive::kPrimDouble, dex_pc);
2346 break;
2347 }
2348
2349 case Instruction::MUL_INT_2ADDR: {
2350 Binop_12x<HMul>(instruction, Primitive::kPrimInt, dex_pc);
2351 break;
2352 }
2353
2354 case Instruction::MUL_LONG_2ADDR: {
2355 Binop_12x<HMul>(instruction, Primitive::kPrimLong, dex_pc);
2356 break;
2357 }
2358
2359 case Instruction::MUL_FLOAT_2ADDR: {
2360 Binop_12x<HMul>(instruction, Primitive::kPrimFloat, dex_pc);
2361 break;
2362 }
2363
2364 case Instruction::MUL_DOUBLE_2ADDR: {
2365 Binop_12x<HMul>(instruction, Primitive::kPrimDouble, dex_pc);
2366 break;
2367 }
2368
2369 case Instruction::DIV_INT_2ADDR: {
2370 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
2371 dex_pc, Primitive::kPrimInt, false, true);
2372 break;
2373 }
2374
2375 case Instruction::DIV_LONG_2ADDR: {
2376 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
2377 dex_pc, Primitive::kPrimLong, false, true);
2378 break;
2379 }
2380
2381 case Instruction::REM_INT_2ADDR: {
2382 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
2383 dex_pc, Primitive::kPrimInt, false, false);
2384 break;
2385 }
2386
2387 case Instruction::REM_LONG_2ADDR: {
2388 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
2389 dex_pc, Primitive::kPrimLong, false, false);
2390 break;
2391 }
2392
2393 case Instruction::REM_FLOAT_2ADDR: {
2394 Binop_12x<HRem>(instruction, Primitive::kPrimFloat, dex_pc);
2395 break;
2396 }
2397
2398 case Instruction::REM_DOUBLE_2ADDR: {
2399 Binop_12x<HRem>(instruction, Primitive::kPrimDouble, dex_pc);
2400 break;
2401 }
2402
2403 case Instruction::SHL_INT_2ADDR: {
2404 Binop_12x_shift<HShl>(instruction, Primitive::kPrimInt, dex_pc);
2405 break;
2406 }
2407
2408 case Instruction::SHL_LONG_2ADDR: {
2409 Binop_12x_shift<HShl>(instruction, Primitive::kPrimLong, dex_pc);
2410 break;
2411 }
2412
2413 case Instruction::SHR_INT_2ADDR: {
2414 Binop_12x_shift<HShr>(instruction, Primitive::kPrimInt, dex_pc);
2415 break;
2416 }
2417
2418 case Instruction::SHR_LONG_2ADDR: {
2419 Binop_12x_shift<HShr>(instruction, Primitive::kPrimLong, dex_pc);
2420 break;
2421 }
2422
2423 case Instruction::USHR_INT_2ADDR: {
2424 Binop_12x_shift<HUShr>(instruction, Primitive::kPrimInt, dex_pc);
2425 break;
2426 }
2427
2428 case Instruction::USHR_LONG_2ADDR: {
2429 Binop_12x_shift<HUShr>(instruction, Primitive::kPrimLong, dex_pc);
2430 break;
2431 }
2432
2433 case Instruction::DIV_FLOAT_2ADDR: {
2434 Binop_12x<HDiv>(instruction, Primitive::kPrimFloat, dex_pc);
2435 break;
2436 }
2437
2438 case Instruction::DIV_DOUBLE_2ADDR: {
2439 Binop_12x<HDiv>(instruction, Primitive::kPrimDouble, dex_pc);
2440 break;
2441 }
2442
2443 case Instruction::AND_INT_2ADDR: {
2444 Binop_12x<HAnd>(instruction, Primitive::kPrimInt, dex_pc);
2445 break;
2446 }
2447
2448 case Instruction::AND_LONG_2ADDR: {
2449 Binop_12x<HAnd>(instruction, Primitive::kPrimLong, dex_pc);
2450 break;
2451 }
2452
2453 case Instruction::OR_INT_2ADDR: {
2454 Binop_12x<HOr>(instruction, Primitive::kPrimInt, dex_pc);
2455 break;
2456 }
2457
2458 case Instruction::OR_LONG_2ADDR: {
2459 Binop_12x<HOr>(instruction, Primitive::kPrimLong, dex_pc);
2460 break;
2461 }
2462
2463 case Instruction::XOR_INT_2ADDR: {
2464 Binop_12x<HXor>(instruction, Primitive::kPrimInt, dex_pc);
2465 break;
2466 }
2467
2468 case Instruction::XOR_LONG_2ADDR: {
2469 Binop_12x<HXor>(instruction, Primitive::kPrimLong, dex_pc);
2470 break;
2471 }
2472
2473 case Instruction::ADD_INT_LIT16: {
2474 Binop_22s<HAdd>(instruction, false, dex_pc);
2475 break;
2476 }
2477
2478 case Instruction::AND_INT_LIT16: {
2479 Binop_22s<HAnd>(instruction, false, dex_pc);
2480 break;
2481 }
2482
2483 case Instruction::OR_INT_LIT16: {
2484 Binop_22s<HOr>(instruction, false, dex_pc);
2485 break;
2486 }
2487
2488 case Instruction::XOR_INT_LIT16: {
2489 Binop_22s<HXor>(instruction, false, dex_pc);
2490 break;
2491 }
2492
2493 case Instruction::RSUB_INT: {
2494 Binop_22s<HSub>(instruction, true, dex_pc);
2495 break;
2496 }
2497
2498 case Instruction::MUL_INT_LIT16: {
2499 Binop_22s<HMul>(instruction, false, dex_pc);
2500 break;
2501 }
2502
2503 case Instruction::ADD_INT_LIT8: {
2504 Binop_22b<HAdd>(instruction, false, dex_pc);
2505 break;
2506 }
2507
2508 case Instruction::AND_INT_LIT8: {
2509 Binop_22b<HAnd>(instruction, false, dex_pc);
2510 break;
2511 }
2512
2513 case Instruction::OR_INT_LIT8: {
2514 Binop_22b<HOr>(instruction, false, dex_pc);
2515 break;
2516 }
2517
2518 case Instruction::XOR_INT_LIT8: {
2519 Binop_22b<HXor>(instruction, false, dex_pc);
2520 break;
2521 }
2522
2523 case Instruction::RSUB_INT_LIT8: {
2524 Binop_22b<HSub>(instruction, true, dex_pc);
2525 break;
2526 }
2527
2528 case Instruction::MUL_INT_LIT8: {
2529 Binop_22b<HMul>(instruction, false, dex_pc);
2530 break;
2531 }
2532
2533 case Instruction::DIV_INT_LIT16:
2534 case Instruction::DIV_INT_LIT8: {
2535 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
2536 dex_pc, Primitive::kPrimInt, true, true);
2537 break;
2538 }
2539
2540 case Instruction::REM_INT_LIT16:
2541 case Instruction::REM_INT_LIT8: {
2542 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
2543 dex_pc, Primitive::kPrimInt, true, false);
2544 break;
2545 }
2546
2547 case Instruction::SHL_INT_LIT8: {
2548 Binop_22b<HShl>(instruction, false, dex_pc);
2549 break;
2550 }
2551
2552 case Instruction::SHR_INT_LIT8: {
2553 Binop_22b<HShr>(instruction, false, dex_pc);
2554 break;
2555 }
2556
2557 case Instruction::USHR_INT_LIT8: {
2558 Binop_22b<HUShr>(instruction, false, dex_pc);
2559 break;
2560 }
2561
2562 case Instruction::NEW_INSTANCE: {
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002563 HNewInstance* new_instance =
2564 BuildNewInstance(dex::TypeIndex(instruction.VRegB_21c()), dex_pc);
2565 DCHECK(new_instance != nullptr);
2566
David Brazdildee58d62016-04-07 09:54:26 +00002567 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002568 BuildConstructorFenceForAllocation(new_instance);
David Brazdildee58d62016-04-07 09:54:26 +00002569 break;
2570 }
2571
2572 case Instruction::NEW_ARRAY: {
Andreas Gampea5b09a62016-11-17 15:21:22 -08002573 dex::TypeIndex type_index(instruction.VRegC_22c());
David Brazdildee58d62016-04-07 09:54:26 +00002574 HInstruction* length = LoadLocal(instruction.VRegB_22c(), Primitive::kPrimInt);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002575 HLoadClass* cls = BuildLoadClass(type_index, dex_pc);
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002576
2577 HNewArray* new_array = new (arena_) HNewArray(cls, length, dex_pc);
2578 AppendInstruction(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002579 UpdateLocal(instruction.VRegA_22c(), current_block_->GetLastInstruction());
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002580 BuildConstructorFenceForAllocation(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002581 break;
2582 }
2583
2584 case Instruction::FILLED_NEW_ARRAY: {
2585 uint32_t number_of_vreg_arguments = instruction.VRegA_35c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002586 dex::TypeIndex type_index(instruction.VRegB_35c());
David Brazdildee58d62016-04-07 09:54:26 +00002587 uint32_t args[5];
2588 instruction.GetVarArgs(args);
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002589 HNewArray* new_array = BuildFilledNewArray(dex_pc,
2590 type_index,
2591 number_of_vreg_arguments,
2592 /* is_range */ false,
2593 args,
2594 /* register_index */ 0);
2595 BuildConstructorFenceForAllocation(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002596 break;
2597 }
2598
2599 case Instruction::FILLED_NEW_ARRAY_RANGE: {
2600 uint32_t number_of_vreg_arguments = instruction.VRegA_3rc();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002601 dex::TypeIndex type_index(instruction.VRegB_3rc());
David Brazdildee58d62016-04-07 09:54:26 +00002602 uint32_t register_index = instruction.VRegC_3rc();
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002603 HNewArray* new_array = BuildFilledNewArray(dex_pc,
2604 type_index,
2605 number_of_vreg_arguments,
2606 /* is_range */ true,
2607 /* args*/ nullptr,
2608 register_index);
2609 BuildConstructorFenceForAllocation(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002610 break;
2611 }
2612
2613 case Instruction::FILL_ARRAY_DATA: {
2614 BuildFillArrayData(instruction, dex_pc);
2615 break;
2616 }
2617
2618 case Instruction::MOVE_RESULT:
2619 case Instruction::MOVE_RESULT_WIDE:
2620 case Instruction::MOVE_RESULT_OBJECT: {
2621 DCHECK(latest_result_ != nullptr);
2622 UpdateLocal(instruction.VRegA(), latest_result_);
2623 latest_result_ = nullptr;
2624 break;
2625 }
2626
2627 case Instruction::CMP_LONG: {
2628 Binop_23x_cmp(instruction, Primitive::kPrimLong, ComparisonBias::kNoBias, dex_pc);
2629 break;
2630 }
2631
2632 case Instruction::CMPG_FLOAT: {
2633 Binop_23x_cmp(instruction, Primitive::kPrimFloat, ComparisonBias::kGtBias, dex_pc);
2634 break;
2635 }
2636
2637 case Instruction::CMPG_DOUBLE: {
2638 Binop_23x_cmp(instruction, Primitive::kPrimDouble, ComparisonBias::kGtBias, dex_pc);
2639 break;
2640 }
2641
2642 case Instruction::CMPL_FLOAT: {
2643 Binop_23x_cmp(instruction, Primitive::kPrimFloat, ComparisonBias::kLtBias, dex_pc);
2644 break;
2645 }
2646
2647 case Instruction::CMPL_DOUBLE: {
2648 Binop_23x_cmp(instruction, Primitive::kPrimDouble, ComparisonBias::kLtBias, dex_pc);
2649 break;
2650 }
2651
2652 case Instruction::NOP:
2653 break;
2654
2655 case Instruction::IGET:
2656 case Instruction::IGET_QUICK:
2657 case Instruction::IGET_WIDE:
2658 case Instruction::IGET_WIDE_QUICK:
2659 case Instruction::IGET_OBJECT:
2660 case Instruction::IGET_OBJECT_QUICK:
2661 case Instruction::IGET_BOOLEAN:
2662 case Instruction::IGET_BOOLEAN_QUICK:
2663 case Instruction::IGET_BYTE:
2664 case Instruction::IGET_BYTE_QUICK:
2665 case Instruction::IGET_CHAR:
2666 case Instruction::IGET_CHAR_QUICK:
2667 case Instruction::IGET_SHORT:
2668 case Instruction::IGET_SHORT_QUICK: {
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07002669 if (!BuildInstanceFieldAccess(instruction, dex_pc, false, quicken_index)) {
David Brazdildee58d62016-04-07 09:54:26 +00002670 return false;
2671 }
2672 break;
2673 }
2674
2675 case Instruction::IPUT:
2676 case Instruction::IPUT_QUICK:
2677 case Instruction::IPUT_WIDE:
2678 case Instruction::IPUT_WIDE_QUICK:
2679 case Instruction::IPUT_OBJECT:
2680 case Instruction::IPUT_OBJECT_QUICK:
2681 case Instruction::IPUT_BOOLEAN:
2682 case Instruction::IPUT_BOOLEAN_QUICK:
2683 case Instruction::IPUT_BYTE:
2684 case Instruction::IPUT_BYTE_QUICK:
2685 case Instruction::IPUT_CHAR:
2686 case Instruction::IPUT_CHAR_QUICK:
2687 case Instruction::IPUT_SHORT:
2688 case Instruction::IPUT_SHORT_QUICK: {
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07002689 if (!BuildInstanceFieldAccess(instruction, dex_pc, true, quicken_index)) {
David Brazdildee58d62016-04-07 09:54:26 +00002690 return false;
2691 }
2692 break;
2693 }
2694
2695 case Instruction::SGET:
2696 case Instruction::SGET_WIDE:
2697 case Instruction::SGET_OBJECT:
2698 case Instruction::SGET_BOOLEAN:
2699 case Instruction::SGET_BYTE:
2700 case Instruction::SGET_CHAR:
2701 case Instruction::SGET_SHORT: {
2702 if (!BuildStaticFieldAccess(instruction, dex_pc, false)) {
2703 return false;
2704 }
2705 break;
2706 }
2707
2708 case Instruction::SPUT:
2709 case Instruction::SPUT_WIDE:
2710 case Instruction::SPUT_OBJECT:
2711 case Instruction::SPUT_BOOLEAN:
2712 case Instruction::SPUT_BYTE:
2713 case Instruction::SPUT_CHAR:
2714 case Instruction::SPUT_SHORT: {
2715 if (!BuildStaticFieldAccess(instruction, dex_pc, true)) {
2716 return false;
2717 }
2718 break;
2719 }
2720
2721#define ARRAY_XX(kind, anticipated_type) \
2722 case Instruction::AGET##kind: { \
2723 BuildArrayAccess(instruction, dex_pc, false, anticipated_type); \
2724 break; \
2725 } \
2726 case Instruction::APUT##kind: { \
2727 BuildArrayAccess(instruction, dex_pc, true, anticipated_type); \
2728 break; \
2729 }
2730
2731 ARRAY_XX(, Primitive::kPrimInt);
2732 ARRAY_XX(_WIDE, Primitive::kPrimLong);
2733 ARRAY_XX(_OBJECT, Primitive::kPrimNot);
2734 ARRAY_XX(_BOOLEAN, Primitive::kPrimBoolean);
2735 ARRAY_XX(_BYTE, Primitive::kPrimByte);
2736 ARRAY_XX(_CHAR, Primitive::kPrimChar);
2737 ARRAY_XX(_SHORT, Primitive::kPrimShort);
2738
2739 case Instruction::ARRAY_LENGTH: {
David Brazdilc120bbe2016-04-22 16:57:00 +01002740 HInstruction* object = LoadNullCheckedLocal(instruction.VRegB_12x(), dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002741 AppendInstruction(new (arena_) HArrayLength(object, dex_pc));
2742 UpdateLocal(instruction.VRegA_12x(), current_block_->GetLastInstruction());
2743 break;
2744 }
2745
2746 case Instruction::CONST_STRING: {
Andreas Gampe8a0128a2016-11-28 07:38:35 -08002747 dex::StringIndex string_index(instruction.VRegB_21c());
David Brazdildee58d62016-04-07 09:54:26 +00002748 AppendInstruction(
2749 new (arena_) HLoadString(graph_->GetCurrentMethod(), string_index, *dex_file_, dex_pc));
2750 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction());
2751 break;
2752 }
2753
2754 case Instruction::CONST_STRING_JUMBO: {
Andreas Gampe8a0128a2016-11-28 07:38:35 -08002755 dex::StringIndex string_index(instruction.VRegB_31c());
David Brazdildee58d62016-04-07 09:54:26 +00002756 AppendInstruction(
2757 new (arena_) HLoadString(graph_->GetCurrentMethod(), string_index, *dex_file_, dex_pc));
2758 UpdateLocal(instruction.VRegA_31c(), current_block_->GetLastInstruction());
2759 break;
2760 }
2761
2762 case Instruction::CONST_CLASS: {
Andreas Gampea5b09a62016-11-17 15:21:22 -08002763 dex::TypeIndex type_index(instruction.VRegB_21c());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002764 BuildLoadClass(type_index, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002765 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction());
2766 break;
2767 }
2768
2769 case Instruction::MOVE_EXCEPTION: {
2770 AppendInstruction(new (arena_) HLoadException(dex_pc));
2771 UpdateLocal(instruction.VRegA_11x(), current_block_->GetLastInstruction());
2772 AppendInstruction(new (arena_) HClearException(dex_pc));
2773 break;
2774 }
2775
2776 case Instruction::THROW: {
2777 HInstruction* exception = LoadLocal(instruction.VRegA_11x(), Primitive::kPrimNot);
2778 AppendInstruction(new (arena_) HThrow(exception, dex_pc));
2779 // We finished building this block. Set the current block to null to avoid
2780 // adding dead instructions to it.
2781 current_block_ = nullptr;
2782 break;
2783 }
2784
2785 case Instruction::INSTANCE_OF: {
2786 uint8_t destination = instruction.VRegA_22c();
2787 uint8_t reference = instruction.VRegB_22c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002788 dex::TypeIndex type_index(instruction.VRegC_22c());
David Brazdildee58d62016-04-07 09:54:26 +00002789 BuildTypeCheck(instruction, destination, reference, type_index, dex_pc);
2790 break;
2791 }
2792
2793 case Instruction::CHECK_CAST: {
2794 uint8_t reference = instruction.VRegA_21c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002795 dex::TypeIndex type_index(instruction.VRegB_21c());
David Brazdildee58d62016-04-07 09:54:26 +00002796 BuildTypeCheck(instruction, -1, reference, type_index, dex_pc);
2797 break;
2798 }
2799
2800 case Instruction::MONITOR_ENTER: {
2801 AppendInstruction(new (arena_) HMonitorOperation(
2802 LoadLocal(instruction.VRegA_11x(), Primitive::kPrimNot),
2803 HMonitorOperation::OperationKind::kEnter,
2804 dex_pc));
2805 break;
2806 }
2807
2808 case Instruction::MONITOR_EXIT: {
2809 AppendInstruction(new (arena_) HMonitorOperation(
2810 LoadLocal(instruction.VRegA_11x(), Primitive::kPrimNot),
2811 HMonitorOperation::OperationKind::kExit,
2812 dex_pc));
2813 break;
2814 }
2815
2816 case Instruction::SPARSE_SWITCH:
2817 case Instruction::PACKED_SWITCH: {
2818 BuildSwitch(instruction, dex_pc);
2819 break;
2820 }
2821
2822 default:
2823 VLOG(compiler) << "Did not compile "
David Sehr709b0702016-10-13 09:12:37 -07002824 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdildee58d62016-04-07 09:54:26 +00002825 << " because of unhandled instruction "
2826 << instruction.Name();
Igor Murashkin1e065a52017-08-09 13:20:34 -07002827 MaybeRecordStat(compilation_stats_,
2828 MethodCompilationStat::kNotCompiledUnhandledInstruction);
David Brazdildee58d62016-04-07 09:54:26 +00002829 return false;
2830 }
2831 return true;
2832} // NOLINT(readability/fn_size)
2833
Vladimir Marko8d6768d2017-03-14 10:13:21 +00002834ObjPtr<mirror::Class> HInstructionBuilder::LookupResolvedType(
2835 dex::TypeIndex type_index,
2836 const DexCompilationUnit& compilation_unit) const {
2837 return ClassLinker::LookupResolvedType(
2838 type_index, compilation_unit.GetDexCache().Get(), compilation_unit.GetClassLoader().Get());
2839}
2840
2841ObjPtr<mirror::Class> HInstructionBuilder::LookupReferrerClass() const {
2842 // TODO: Cache the result in a Handle<mirror::Class>.
2843 const DexFile::MethodId& method_id =
2844 dex_compilation_unit_->GetDexFile()->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
2845 return LookupResolvedType(method_id.class_idx_, *dex_compilation_unit_);
2846}
2847
David Brazdildee58d62016-04-07 09:54:26 +00002848} // namespace art