blob: e832b10b79772f7921ea0a0e3665c5b74e8d5293 [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"
Vladimir Marko0ebe0d82017-09-21 22:50:39 +010022#include "data_type-inl.h"
Andreas Gampe26de38b2016-07-27 17:53:11 -070023#include "dex_instruction-inl.h"
David Brazdildee58d62016-04-07 09:54:26 +000024#include "driver/compiler_options.h"
Andreas Gampe75a7db62016-09-26 12:04:26 -070025#include "imtable-inl.h"
Mathieu Chartierde4b08f2017-07-10 14:13:41 -070026#include "quicken_info.h"
Mathieu Chartier0795f232016-09-27 18:43:30 -070027#include "scoped_thread_state_change-inl.h"
Andreas Gampe8cf9cb32017-07-19 09:28:38 -070028#include "sharpening.h"
Andreas Gampea7c83ac2017-09-11 08:14:23 -070029#include "well_known_classes.h"
David Brazdildee58d62016-04-07 09:54:26 +000030
31namespace art {
32
David Brazdildee58d62016-04-07 09:54:26 +000033HBasicBlock* HInstructionBuilder::FindBlockStartingAt(uint32_t dex_pc) const {
34 return block_builder_->GetBlockAt(dex_pc);
35}
36
Mingyao Yang01b47b02017-02-03 12:09:57 -080037inline ArenaVector<HInstruction*>* HInstructionBuilder::GetLocalsFor(HBasicBlock* block) {
David Brazdildee58d62016-04-07 09:54:26 +000038 ArenaVector<HInstruction*>* locals = &locals_for_[block->GetBlockId()];
39 const size_t vregs = graph_->GetNumberOfVRegs();
Mingyao Yang01b47b02017-02-03 12:09:57 -080040 if (locals->size() == vregs) {
41 return locals;
42 }
43 return GetLocalsForWithAllocation(block, locals, vregs);
44}
David Brazdildee58d62016-04-07 09:54:26 +000045
Mingyao Yang01b47b02017-02-03 12:09:57 -080046ArenaVector<HInstruction*>* HInstructionBuilder::GetLocalsForWithAllocation(
47 HBasicBlock* block,
48 ArenaVector<HInstruction*>* locals,
49 const size_t vregs) {
50 DCHECK_NE(locals->size(), vregs);
51 locals->resize(vregs, nullptr);
52 if (block->IsCatchBlock()) {
53 // We record incoming inputs of catch phis at throwing instructions and
54 // must therefore eagerly create the phis. Phis for undefined vregs will
55 // be deleted when the first throwing instruction with the vreg undefined
56 // is encountered. Unused phis will be removed by dead phi analysis.
57 for (size_t i = 0; i < vregs; ++i) {
58 // No point in creating the catch phi if it is already undefined at
59 // the first throwing instruction.
60 HInstruction* current_local_value = (*current_locals_)[i];
61 if (current_local_value != nullptr) {
62 HPhi* phi = new (arena_) HPhi(
63 arena_,
64 i,
65 0,
66 current_local_value->GetType());
67 block->AddPhi(phi);
68 (*locals)[i] = phi;
David Brazdildee58d62016-04-07 09:54:26 +000069 }
70 }
71 }
72 return locals;
73}
74
Mingyao Yang01b47b02017-02-03 12:09:57 -080075inline HInstruction* HInstructionBuilder::ValueOfLocalAt(HBasicBlock* block, size_t local) {
David Brazdildee58d62016-04-07 09:54:26 +000076 ArenaVector<HInstruction*>* locals = GetLocalsFor(block);
77 return (*locals)[local];
78}
79
80void HInstructionBuilder::InitializeBlockLocals() {
81 current_locals_ = GetLocalsFor(current_block_);
82
83 if (current_block_->IsCatchBlock()) {
84 // Catch phis were already created and inputs collected from throwing sites.
85 if (kIsDebugBuild) {
86 // Make sure there was at least one throwing instruction which initialized
87 // locals (guaranteed by HGraphBuilder) and that all try blocks have been
88 // visited already (from HTryBoundary scoping and reverse post order).
89 bool catch_block_visited = false;
Vladimir Marko2c45bc92016-10-25 16:54:12 +010090 for (HBasicBlock* current : graph_->GetReversePostOrder()) {
David Brazdildee58d62016-04-07 09:54:26 +000091 if (current == current_block_) {
92 catch_block_visited = true;
93 } else if (current->IsTryBlock()) {
94 const HTryBoundary& try_entry = current->GetTryCatchInformation()->GetTryEntry();
95 if (try_entry.HasExceptionHandler(*current_block_)) {
96 DCHECK(!catch_block_visited) << "Catch block visited before its try block.";
97 }
98 }
99 }
100 DCHECK_EQ(current_locals_->size(), graph_->GetNumberOfVRegs())
101 << "No instructions throwing into a live catch block.";
102 }
103 } else if (current_block_->IsLoopHeader()) {
104 // If the block is a loop header, we know we only have visited the pre header
105 // because we are visiting in reverse post order. We create phis for all initialized
106 // locals from the pre header. Their inputs will be populated at the end of
107 // the analysis.
108 for (size_t local = 0; local < current_locals_->size(); ++local) {
109 HInstruction* incoming =
110 ValueOfLocalAt(current_block_->GetLoopInformation()->GetPreHeader(), local);
111 if (incoming != nullptr) {
112 HPhi* phi = new (arena_) HPhi(
113 arena_,
114 local,
115 0,
116 incoming->GetType());
117 current_block_->AddPhi(phi);
118 (*current_locals_)[local] = phi;
119 }
120 }
121
122 // Save the loop header so that the last phase of the analysis knows which
123 // blocks need to be updated.
124 loop_headers_.push_back(current_block_);
125 } else if (current_block_->GetPredecessors().size() > 0) {
126 // All predecessors have already been visited because we are visiting in reverse post order.
127 // We merge the values of all locals, creating phis if those values differ.
128 for (size_t local = 0; local < current_locals_->size(); ++local) {
129 bool one_predecessor_has_no_value = false;
130 bool is_different = false;
131 HInstruction* value = ValueOfLocalAt(current_block_->GetPredecessors()[0], local);
132
133 for (HBasicBlock* predecessor : current_block_->GetPredecessors()) {
134 HInstruction* current = ValueOfLocalAt(predecessor, local);
135 if (current == nullptr) {
136 one_predecessor_has_no_value = true;
137 break;
138 } else if (current != value) {
139 is_different = true;
140 }
141 }
142
143 if (one_predecessor_has_no_value) {
144 // If one predecessor has no value for this local, we trust the verifier has
145 // successfully checked that there is a store dominating any read after this block.
146 continue;
147 }
148
149 if (is_different) {
150 HInstruction* first_input = ValueOfLocalAt(current_block_->GetPredecessors()[0], local);
151 HPhi* phi = new (arena_) HPhi(
152 arena_,
153 local,
154 current_block_->GetPredecessors().size(),
155 first_input->GetType());
156 for (size_t i = 0; i < current_block_->GetPredecessors().size(); i++) {
157 HInstruction* pred_value = ValueOfLocalAt(current_block_->GetPredecessors()[i], local);
158 phi->SetRawInputAt(i, pred_value);
159 }
160 current_block_->AddPhi(phi);
161 value = phi;
162 }
163 (*current_locals_)[local] = value;
164 }
165 }
166}
167
168void HInstructionBuilder::PropagateLocalsToCatchBlocks() {
169 const HTryBoundary& try_entry = current_block_->GetTryCatchInformation()->GetTryEntry();
170 for (HBasicBlock* catch_block : try_entry.GetExceptionHandlers()) {
171 ArenaVector<HInstruction*>* handler_locals = GetLocalsFor(catch_block);
172 DCHECK_EQ(handler_locals->size(), current_locals_->size());
173 for (size_t vreg = 0, e = current_locals_->size(); vreg < e; ++vreg) {
174 HInstruction* handler_value = (*handler_locals)[vreg];
175 if (handler_value == nullptr) {
176 // Vreg was undefined at a previously encountered throwing instruction
177 // and the catch phi was deleted. Do not record the local value.
178 continue;
179 }
180 DCHECK(handler_value->IsPhi());
181
182 HInstruction* local_value = (*current_locals_)[vreg];
183 if (local_value == nullptr) {
184 // This is the first instruction throwing into `catch_block` where
185 // `vreg` is undefined. Delete the catch phi.
186 catch_block->RemovePhi(handler_value->AsPhi());
187 (*handler_locals)[vreg] = nullptr;
188 } else {
189 // Vreg has been defined at all instructions throwing into `catch_block`
190 // encountered so far. Record the local value in the catch phi.
191 handler_value->AsPhi()->AddInput(local_value);
192 }
193 }
194 }
195}
196
197void HInstructionBuilder::AppendInstruction(HInstruction* instruction) {
198 current_block_->AddInstruction(instruction);
199 InitializeInstruction(instruction);
200}
201
202void HInstructionBuilder::InsertInstructionAtTop(HInstruction* instruction) {
203 if (current_block_->GetInstructions().IsEmpty()) {
204 current_block_->AddInstruction(instruction);
205 } else {
206 current_block_->InsertInstructionBefore(instruction, current_block_->GetFirstInstruction());
207 }
208 InitializeInstruction(instruction);
209}
210
211void HInstructionBuilder::InitializeInstruction(HInstruction* instruction) {
212 if (instruction->NeedsEnvironment()) {
213 HEnvironment* environment = new (arena_) HEnvironment(
214 arena_,
215 current_locals_->size(),
Nicolas Geoffray5d37c152017-01-12 13:25:19 +0000216 graph_->GetArtMethod(),
David Brazdildee58d62016-04-07 09:54:26 +0000217 instruction->GetDexPc(),
David Brazdildee58d62016-04-07 09:54:26 +0000218 instruction);
219 environment->CopyFrom(*current_locals_);
220 instruction->SetRawEnvironment(environment);
221 }
222}
223
David Brazdilc120bbe2016-04-22 16:57:00 +0100224HInstruction* HInstructionBuilder::LoadNullCheckedLocal(uint32_t register_index, uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100225 HInstruction* ref = LoadLocal(register_index, DataType::Type::kReference);
David Brazdilc120bbe2016-04-22 16:57:00 +0100226 if (!ref->CanBeNull()) {
227 return ref;
228 }
229
230 HNullCheck* null_check = new (arena_) HNullCheck(ref, dex_pc);
231 AppendInstruction(null_check);
232 return null_check;
233}
234
David Brazdildee58d62016-04-07 09:54:26 +0000235void HInstructionBuilder::SetLoopHeaderPhiInputs() {
236 for (size_t i = loop_headers_.size(); i > 0; --i) {
237 HBasicBlock* block = loop_headers_[i - 1];
238 for (HInstructionIterator it(block->GetPhis()); !it.Done(); it.Advance()) {
239 HPhi* phi = it.Current()->AsPhi();
240 size_t vreg = phi->GetRegNumber();
241 for (HBasicBlock* predecessor : block->GetPredecessors()) {
242 HInstruction* value = ValueOfLocalAt(predecessor, vreg);
243 if (value == nullptr) {
244 // Vreg is undefined at this predecessor. Mark it dead and leave with
245 // fewer inputs than predecessors. SsaChecker will fail if not removed.
246 phi->SetDead();
247 break;
248 } else {
249 phi->AddInput(value);
250 }
251 }
252 }
253 }
254}
255
256static bool IsBlockPopulated(HBasicBlock* block) {
257 if (block->IsLoopHeader()) {
258 // Suspend checks were inserted into loop headers during building of dominator tree.
259 DCHECK(block->GetFirstInstruction()->IsSuspendCheck());
260 return block->GetFirstInstruction() != block->GetLastInstruction();
261 } else {
262 return !block->GetInstructions().IsEmpty();
263 }
264}
265
266bool HInstructionBuilder::Build() {
267 locals_for_.resize(graph_->GetBlocks().size(),
268 ArenaVector<HInstruction*>(arena_->Adapter(kArenaAllocGraphBuilder)));
269
270 // Find locations where we want to generate extra stackmaps for native debugging.
271 // This allows us to generate the info only at interesting points (for example,
272 // at start of java statement) rather than before every dex instruction.
273 const bool native_debuggable = compiler_driver_ != nullptr &&
274 compiler_driver_->GetCompilerOptions().GetNativeDebuggable();
275 ArenaBitVector* native_debug_info_locations = nullptr;
276 if (native_debuggable) {
277 const uint32_t num_instructions = code_item_.insns_size_in_code_units_;
278 native_debug_info_locations = new (arena_) ArenaBitVector (arena_, num_instructions, false);
279 FindNativeDebugInfoLocations(native_debug_info_locations);
280 }
281
Vladimir Marko2c45bc92016-10-25 16:54:12 +0100282 for (HBasicBlock* block : graph_->GetReversePostOrder()) {
283 current_block_ = block;
David Brazdildee58d62016-04-07 09:54:26 +0000284 uint32_t block_dex_pc = current_block_->GetDexPc();
285
286 InitializeBlockLocals();
287
288 if (current_block_->IsEntryBlock()) {
289 InitializeParameters();
290 AppendInstruction(new (arena_) HSuspendCheck(0u));
291 AppendInstruction(new (arena_) HGoto(0u));
292 continue;
293 } else if (current_block_->IsExitBlock()) {
294 AppendInstruction(new (arena_) HExit());
295 continue;
296 } else if (current_block_->IsLoopHeader()) {
297 HSuspendCheck* suspend_check = new (arena_) HSuspendCheck(current_block_->GetDexPc());
298 current_block_->GetLoopInformation()->SetSuspendCheck(suspend_check);
299 // This is slightly odd because the loop header might not be empty (TryBoundary).
300 // But we're still creating the environment with locals from the top of the block.
301 InsertInstructionAtTop(suspend_check);
302 }
303
304 if (block_dex_pc == kNoDexPc || current_block_ != block_builder_->GetBlockAt(block_dex_pc)) {
305 // Synthetic block that does not need to be populated.
306 DCHECK(IsBlockPopulated(current_block_));
307 continue;
308 }
309
310 DCHECK(!IsBlockPopulated(current_block_));
311
Mathieu Chartierde4b08f2017-07-10 14:13:41 -0700312 uint32_t quicken_index = 0;
313 if (CanDecodeQuickenedInfo()) {
314 quicken_index = block_builder_->GetQuickenIndex(block_dex_pc);
315 }
316
David Brazdildee58d62016-04-07 09:54:26 +0000317 for (CodeItemIterator it(code_item_, block_dex_pc); !it.Done(); it.Advance()) {
318 if (current_block_ == nullptr) {
319 // The previous instruction ended this block.
320 break;
321 }
322
323 uint32_t dex_pc = it.CurrentDexPc();
324 if (dex_pc != block_dex_pc && FindBlockStartingAt(dex_pc) != nullptr) {
325 // This dex_pc starts a new basic block.
326 break;
327 }
328
329 if (current_block_->IsTryBlock() && IsThrowingDexInstruction(it.CurrentInstruction())) {
330 PropagateLocalsToCatchBlocks();
331 }
332
333 if (native_debuggable && native_debug_info_locations->IsBitSet(dex_pc)) {
334 AppendInstruction(new (arena_) HNativeDebugInfo(dex_pc));
335 }
336
Mathieu Chartierde4b08f2017-07-10 14:13:41 -0700337 if (!ProcessDexInstruction(it.CurrentInstruction(), dex_pc, quicken_index)) {
David Brazdildee58d62016-04-07 09:54:26 +0000338 return false;
339 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -0700340
341 if (QuickenInfoTable::NeedsIndexForInstruction(&it.CurrentInstruction())) {
342 ++quicken_index;
343 }
David Brazdildee58d62016-04-07 09:54:26 +0000344 }
345
346 if (current_block_ != nullptr) {
347 // Branching instructions clear current_block, so we know the last
348 // instruction of the current block is not a branching instruction.
349 // We add an unconditional Goto to the next block.
350 DCHECK_EQ(current_block_->GetSuccessors().size(), 1u);
351 AppendInstruction(new (arena_) HGoto());
352 }
353 }
354
355 SetLoopHeaderPhiInputs();
356
357 return true;
358}
359
360void HInstructionBuilder::FindNativeDebugInfoLocations(ArenaBitVector* locations) {
361 // The callback gets called when the line number changes.
362 // In other words, it marks the start of new java statement.
363 struct Callback {
364 static bool Position(void* ctx, const DexFile::PositionInfo& entry) {
365 static_cast<ArenaBitVector*>(ctx)->SetBit(entry.address_);
366 return false;
367 }
368 };
369 dex_file_->DecodeDebugPositionInfo(&code_item_, Callback::Position, locations);
370 // Instruction-specific tweaks.
371 const Instruction* const begin = Instruction::At(code_item_.insns_);
372 const Instruction* const end = begin->RelativeAt(code_item_.insns_size_in_code_units_);
373 for (const Instruction* inst = begin; inst < end; inst = inst->Next()) {
374 switch (inst->Opcode()) {
375 case Instruction::MOVE_EXCEPTION: {
376 // Stop in native debugger after the exception has been moved.
377 // The compiler also expects the move at the start of basic block so
378 // we do not want to interfere by inserting native-debug-info before it.
379 locations->ClearBit(inst->GetDexPc(code_item_.insns_));
380 const Instruction* next = inst->Next();
381 if (next < end) {
382 locations->SetBit(next->GetDexPc(code_item_.insns_));
383 }
384 break;
385 }
386 default:
387 break;
388 }
389 }
390}
391
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100392HInstruction* HInstructionBuilder::LoadLocal(uint32_t reg_number, DataType::Type type) const {
David Brazdildee58d62016-04-07 09:54:26 +0000393 HInstruction* value = (*current_locals_)[reg_number];
394 DCHECK(value != nullptr);
395
396 // If the operation requests a specific type, we make sure its input is of that type.
397 if (type != value->GetType()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100398 if (DataType::IsFloatingPointType(type)) {
Aart Bik31883642016-06-06 15:02:44 -0700399 value = ssa_builder_->GetFloatOrDoubleEquivalent(value, type);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100400 } else if (type == DataType::Type::kReference) {
Aart Bik31883642016-06-06 15:02:44 -0700401 value = ssa_builder_->GetReferenceTypeEquivalent(value);
David Brazdildee58d62016-04-07 09:54:26 +0000402 }
Aart Bik31883642016-06-06 15:02:44 -0700403 DCHECK(value != nullptr);
David Brazdildee58d62016-04-07 09:54:26 +0000404 }
405
406 return value;
407}
408
409void HInstructionBuilder::UpdateLocal(uint32_t reg_number, HInstruction* stored_value) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100410 DataType::Type stored_type = stored_value->GetType();
411 DCHECK_NE(stored_type, DataType::Type::kVoid);
David Brazdildee58d62016-04-07 09:54:26 +0000412
413 // Storing into vreg `reg_number` may implicitly invalidate the surrounding
414 // registers. Consider the following cases:
415 // (1) Storing a wide value must overwrite previous values in both `reg_number`
416 // and `reg_number+1`. We store `nullptr` in `reg_number+1`.
417 // (2) If vreg `reg_number-1` holds a wide value, writing into `reg_number`
418 // must invalidate it. We store `nullptr` in `reg_number-1`.
419 // Consequently, storing a wide value into the high vreg of another wide value
420 // will invalidate both `reg_number-1` and `reg_number+1`.
421
422 if (reg_number != 0) {
423 HInstruction* local_low = (*current_locals_)[reg_number - 1];
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100424 if (local_low != nullptr && DataType::Is64BitType(local_low->GetType())) {
David Brazdildee58d62016-04-07 09:54:26 +0000425 // The vreg we are storing into was previously the high vreg of a pair.
426 // We need to invalidate its low vreg.
427 DCHECK((*current_locals_)[reg_number] == nullptr);
428 (*current_locals_)[reg_number - 1] = nullptr;
429 }
430 }
431
432 (*current_locals_)[reg_number] = stored_value;
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100433 if (DataType::Is64BitType(stored_type)) {
David Brazdildee58d62016-04-07 09:54:26 +0000434 // We are storing a pair. Invalidate the instruction in the high vreg.
435 (*current_locals_)[reg_number + 1] = nullptr;
436 }
437}
438
439void HInstructionBuilder::InitializeParameters() {
440 DCHECK(current_block_->IsEntryBlock());
441
442 // dex_compilation_unit_ is null only when unit testing.
443 if (dex_compilation_unit_ == nullptr) {
444 return;
445 }
446
447 const char* shorty = dex_compilation_unit_->GetShorty();
448 uint16_t number_of_parameters = graph_->GetNumberOfInVRegs();
449 uint16_t locals_index = graph_->GetNumberOfLocalVRegs();
450 uint16_t parameter_index = 0;
451
452 const DexFile::MethodId& referrer_method_id =
453 dex_file_->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
454 if (!dex_compilation_unit_->IsStatic()) {
455 // Add the implicit 'this' argument, not expressed in the signature.
456 HParameterValue* parameter = new (arena_) HParameterValue(*dex_file_,
457 referrer_method_id.class_idx_,
458 parameter_index++,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100459 DataType::Type::kReference,
Igor Murashkind01745e2017-04-05 16:40:31 -0700460 /* is_this */ true);
David Brazdildee58d62016-04-07 09:54:26 +0000461 AppendInstruction(parameter);
462 UpdateLocal(locals_index++, parameter);
463 number_of_parameters--;
Igor Murashkind01745e2017-04-05 16:40:31 -0700464 current_this_parameter_ = parameter;
465 } else {
466 DCHECK(current_this_parameter_ == nullptr);
David Brazdildee58d62016-04-07 09:54:26 +0000467 }
468
469 const DexFile::ProtoId& proto = dex_file_->GetMethodPrototype(referrer_method_id);
470 const DexFile::TypeList* arg_types = dex_file_->GetProtoParameters(proto);
471 for (int i = 0, shorty_pos = 1; i < number_of_parameters; i++) {
472 HParameterValue* parameter = new (arena_) HParameterValue(
473 *dex_file_,
474 arg_types->GetTypeItem(shorty_pos - 1).type_idx_,
475 parameter_index++,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100476 DataType::FromShorty(shorty[shorty_pos]),
Igor Murashkind01745e2017-04-05 16:40:31 -0700477 /* is_this */ false);
David Brazdildee58d62016-04-07 09:54:26 +0000478 ++shorty_pos;
479 AppendInstruction(parameter);
480 // Store the parameter value in the local that the dex code will use
481 // to reference that parameter.
482 UpdateLocal(locals_index++, parameter);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100483 if (DataType::Is64BitType(parameter->GetType())) {
David Brazdildee58d62016-04-07 09:54:26 +0000484 i++;
485 locals_index++;
486 parameter_index++;
487 }
488 }
489}
490
491template<typename T>
492void HInstructionBuilder::If_22t(const Instruction& instruction, uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100493 HInstruction* first = LoadLocal(instruction.VRegA(), DataType::Type::kInt32);
494 HInstruction* second = LoadLocal(instruction.VRegB(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000495 T* comparison = new (arena_) T(first, second, dex_pc);
496 AppendInstruction(comparison);
497 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
498 current_block_ = nullptr;
499}
500
501template<typename T>
502void HInstructionBuilder::If_21t(const Instruction& instruction, uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100503 HInstruction* value = LoadLocal(instruction.VRegA(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000504 T* comparison = new (arena_) T(value, graph_->GetIntConstant(0, dex_pc), dex_pc);
505 AppendInstruction(comparison);
506 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
507 current_block_ = nullptr;
508}
509
510template<typename T>
511void HInstructionBuilder::Unop_12x(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100512 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000513 uint32_t dex_pc) {
514 HInstruction* first = LoadLocal(instruction.VRegB(), type);
515 AppendInstruction(new (arena_) T(type, first, dex_pc));
516 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
517}
518
519void HInstructionBuilder::Conversion_12x(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100520 DataType::Type input_type,
521 DataType::Type result_type,
David Brazdildee58d62016-04-07 09:54:26 +0000522 uint32_t dex_pc) {
523 HInstruction* first = LoadLocal(instruction.VRegB(), input_type);
524 AppendInstruction(new (arena_) HTypeConversion(result_type, first, dex_pc));
525 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
526}
527
528template<typename T>
529void HInstructionBuilder::Binop_23x(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100530 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000531 uint32_t dex_pc) {
532 HInstruction* first = LoadLocal(instruction.VRegB(), type);
533 HInstruction* second = LoadLocal(instruction.VRegC(), type);
534 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
535 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
536}
537
538template<typename T>
539void HInstructionBuilder::Binop_23x_shift(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100540 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000541 uint32_t dex_pc) {
542 HInstruction* first = LoadLocal(instruction.VRegB(), type);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100543 HInstruction* second = LoadLocal(instruction.VRegC(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000544 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
545 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
546}
547
548void HInstructionBuilder::Binop_23x_cmp(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100549 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000550 ComparisonBias bias,
551 uint32_t dex_pc) {
552 HInstruction* first = LoadLocal(instruction.VRegB(), type);
553 HInstruction* second = LoadLocal(instruction.VRegC(), type);
554 AppendInstruction(new (arena_) HCompare(type, first, second, bias, dex_pc));
555 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
556}
557
558template<typename T>
559void HInstructionBuilder::Binop_12x_shift(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100560 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000561 uint32_t dex_pc) {
562 HInstruction* first = LoadLocal(instruction.VRegA(), type);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100563 HInstruction* second = LoadLocal(instruction.VRegB(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000564 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
565 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
566}
567
568template<typename T>
569void HInstructionBuilder::Binop_12x(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100570 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000571 uint32_t dex_pc) {
572 HInstruction* first = LoadLocal(instruction.VRegA(), type);
573 HInstruction* second = LoadLocal(instruction.VRegB(), type);
574 AppendInstruction(new (arena_) T(type, first, second, dex_pc));
575 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
576}
577
578template<typename T>
579void HInstructionBuilder::Binop_22s(const Instruction& instruction, bool reverse, uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100580 HInstruction* first = LoadLocal(instruction.VRegB(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000581 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22s(), dex_pc);
582 if (reverse) {
583 std::swap(first, second);
584 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100585 AppendInstruction(new (arena_) T(DataType::Type::kInt32, first, second, dex_pc));
David Brazdildee58d62016-04-07 09:54:26 +0000586 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
587}
588
589template<typename T>
590void HInstructionBuilder::Binop_22b(const Instruction& instruction, bool reverse, uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100591 HInstruction* first = LoadLocal(instruction.VRegB(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000592 HInstruction* second = graph_->GetIntConstant(instruction.VRegC_22b(), dex_pc);
593 if (reverse) {
594 std::swap(first, second);
595 }
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100596 AppendInstruction(new (arena_) T(DataType::Type::kInt32, first, second, dex_pc));
David Brazdildee58d62016-04-07 09:54:26 +0000597 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
598}
599
Igor Murashkind01745e2017-04-05 16:40:31 -0700600// Does the method being compiled need any constructor barriers being inserted?
601// (Always 'false' for methods that aren't <init>.)
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700602static bool RequiresConstructorBarrier(const DexCompilationUnit* cu, CompilerDriver* driver) {
Igor Murashkin032cacd2017-04-06 14:40:08 -0700603 // Can be null in unit tests only.
604 if (UNLIKELY(cu == nullptr)) {
605 return false;
606 }
607
David Brazdildee58d62016-04-07 09:54:26 +0000608 Thread* self = Thread::Current();
609 return cu->IsConstructor()
Igor Murashkind01745e2017-04-05 16:40:31 -0700610 && !cu->IsStatic()
611 // RequiresConstructorBarrier must only be queried for <init> methods;
612 // it's effectively "false" for every other method.
613 //
614 // See CompilerDriver::RequiresConstructBarrier for more explanation.
Mathieu Chartierc4ae9162016-04-07 13:19:19 -0700615 && driver->RequiresConstructorBarrier(self, cu->GetDexFile(), cu->GetClassDefIndex());
David Brazdildee58d62016-04-07 09:54:26 +0000616}
617
618// Returns true if `block` has only one successor which starts at the next
619// dex_pc after `instruction` at `dex_pc`.
620static bool IsFallthroughInstruction(const Instruction& instruction,
621 uint32_t dex_pc,
622 HBasicBlock* block) {
623 uint32_t next_dex_pc = dex_pc + instruction.SizeInCodeUnits();
624 return block->GetSingleSuccessor()->GetDexPc() == next_dex_pc;
625}
626
627void HInstructionBuilder::BuildSwitch(const Instruction& instruction, uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100628 HInstruction* value = LoadLocal(instruction.VRegA(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +0000629 DexSwitchTable table(instruction, dex_pc);
630
631 if (table.GetNumEntries() == 0) {
632 // Empty Switch. Code falls through to the next block.
633 DCHECK(IsFallthroughInstruction(instruction, dex_pc, current_block_));
634 AppendInstruction(new (arena_) HGoto(dex_pc));
635 } else if (table.ShouldBuildDecisionTree()) {
636 for (DexSwitchTableIterator it(table); !it.Done(); it.Advance()) {
637 HInstruction* case_value = graph_->GetIntConstant(it.CurrentKey(), dex_pc);
638 HEqual* comparison = new (arena_) HEqual(value, case_value, dex_pc);
639 AppendInstruction(comparison);
640 AppendInstruction(new (arena_) HIf(comparison, dex_pc));
641
642 if (!it.IsLast()) {
643 current_block_ = FindBlockStartingAt(it.GetDexPcForCurrentIndex());
644 }
645 }
646 } else {
647 AppendInstruction(
648 new (arena_) HPackedSwitch(table.GetEntryAt(0), table.GetNumEntries(), value, dex_pc));
649 }
650
651 current_block_ = nullptr;
652}
653
654void HInstructionBuilder::BuildReturn(const Instruction& instruction,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100655 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +0000656 uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100657 if (type == DataType::Type::kVoid) {
Igor Murashkind01745e2017-04-05 16:40:31 -0700658 // Only <init> (which is a return-void) could possibly have a constructor fence.
Igor Murashkin032cacd2017-04-06 14:40:08 -0700659 // This may insert additional redundant constructor fences from the super constructors.
660 // TODO: remove redundant constructor fences (b/36656456).
661 if (RequiresConstructorBarrier(dex_compilation_unit_, compiler_driver_)) {
Igor Murashkind01745e2017-04-05 16:40:31 -0700662 // Compiling instance constructor.
Vladimir Markoba118822017-06-12 15:41:56 +0100663 DCHECK_STREQ("<init>", graph_->GetMethodName());
Igor Murashkind01745e2017-04-05 16:40:31 -0700664
665 HInstruction* fence_target = current_this_parameter_;
666 DCHECK(fence_target != nullptr);
667
668 AppendInstruction(new (arena_) HConstructorFence(fence_target, dex_pc, arena_));
Igor Murashkin6ef45672017-08-08 13:59:55 -0700669 MaybeRecordStat(
670 compilation_stats_,
671 MethodCompilationStat::kConstructorFenceGeneratedFinal);
David Brazdildee58d62016-04-07 09:54:26 +0000672 }
673 AppendInstruction(new (arena_) HReturnVoid(dex_pc));
674 } else {
Igor Murashkind01745e2017-04-05 16:40:31 -0700675 DCHECK(!RequiresConstructorBarrier(dex_compilation_unit_, compiler_driver_));
David Brazdildee58d62016-04-07 09:54:26 +0000676 HInstruction* value = LoadLocal(instruction.VRegA(), type);
677 AppendInstruction(new (arena_) HReturn(value, dex_pc));
678 }
679 current_block_ = nullptr;
680}
681
682static InvokeType GetInvokeTypeFromOpCode(Instruction::Code opcode) {
683 switch (opcode) {
684 case Instruction::INVOKE_STATIC:
685 case Instruction::INVOKE_STATIC_RANGE:
686 return kStatic;
687 case Instruction::INVOKE_DIRECT:
688 case Instruction::INVOKE_DIRECT_RANGE:
689 return kDirect;
690 case Instruction::INVOKE_VIRTUAL:
691 case Instruction::INVOKE_VIRTUAL_QUICK:
692 case Instruction::INVOKE_VIRTUAL_RANGE:
693 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK:
694 return kVirtual;
695 case Instruction::INVOKE_INTERFACE:
696 case Instruction::INVOKE_INTERFACE_RANGE:
697 return kInterface;
698 case Instruction::INVOKE_SUPER_RANGE:
699 case Instruction::INVOKE_SUPER:
700 return kSuper;
701 default:
702 LOG(FATAL) << "Unexpected invoke opcode: " << opcode;
703 UNREACHABLE();
704 }
705}
706
707ArtMethod* HInstructionBuilder::ResolveMethod(uint16_t method_idx, InvokeType invoke_type) {
708 ScopedObjectAccess soa(Thread::Current());
David Brazdildee58d62016-04-07 09:54:26 +0000709
710 ClassLinker* class_linker = dex_compilation_unit_->GetClassLinker();
Vladimir Marko8d6768d2017-03-14 10:13:21 +0000711 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100712
Vladimir Markoba118822017-06-12 15:41:56 +0100713 ArtMethod* resolved_method =
714 class_linker->ResolveMethod<ClassLinker::ResolveMode::kCheckICCEAndIAE>(
715 *dex_compilation_unit_->GetDexFile(),
716 method_idx,
717 dex_compilation_unit_->GetDexCache(),
718 class_loader,
719 graph_->GetArtMethod(),
720 invoke_type);
David Brazdildee58d62016-04-07 09:54:26 +0000721
722 if (UNLIKELY(resolved_method == nullptr)) {
723 // Clean up any exception left by type resolution.
724 soa.Self()->ClearException();
725 return nullptr;
726 }
727
Vladimir Markoba118822017-06-12 15:41:56 +0100728 // The referrer may be unresolved for AOT if we're compiling a class that cannot be
729 // resolved because, for example, we don't find a superclass in the classpath.
730 if (graph_->GetArtMethod() == nullptr) {
731 // The class linker cannot check access without a referrer, so we have to do it.
732 // Fall back to HInvokeUnresolved if the method isn't public.
David Brazdildee58d62016-04-07 09:54:26 +0000733 if (!resolved_method->IsPublic()) {
734 return nullptr;
735 }
David Brazdildee58d62016-04-07 09:54:26 +0000736 }
737
738 // We have to special case the invoke-super case, as ClassLinker::ResolveMethod does not.
739 // We need to look at the referrer's super class vtable. We need to do this to know if we need to
740 // make this an invoke-unresolved to handle cross-dex invokes or abstract super methods, both of
741 // which require runtime handling.
742 if (invoke_type == kSuper) {
Vladimir Markoba118822017-06-12 15:41:56 +0100743 ObjPtr<mirror::Class> compiling_class = GetCompilingClass();
Andreas Gampefa4333d2017-02-14 11:10:34 -0800744 if (compiling_class == nullptr) {
David Brazdildee58d62016-04-07 09:54:26 +0000745 // We could not determine the method's class we need to wait until runtime.
746 DCHECK(Runtime::Current()->IsAotCompiler());
747 return nullptr;
748 }
Vladimir Markoba118822017-06-12 15:41:56 +0100749 ObjPtr<mirror::Class> referenced_class = class_linker->LookupResolvedType(
750 *dex_compilation_unit_->GetDexFile(),
751 dex_compilation_unit_->GetDexFile()->GetMethodId(method_idx).class_idx_,
752 dex_compilation_unit_->GetDexCache().Get(),
753 class_loader.Get());
754 DCHECK(referenced_class != nullptr); // We have already resolved a method from this class.
755 if (!referenced_class->IsAssignableFrom(compiling_class)) {
Aart Bikf663e342016-04-04 17:28:59 -0700756 // We cannot statically determine the target method. The runtime will throw a
757 // NoSuchMethodError on this one.
758 return nullptr;
759 }
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100760 ArtMethod* actual_method;
Vladimir Markoba118822017-06-12 15:41:56 +0100761 if (referenced_class->IsInterface()) {
762 actual_method = referenced_class->FindVirtualMethodForInterfaceSuper(
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100763 resolved_method, class_linker->GetImagePointerSize());
David Brazdildee58d62016-04-07 09:54:26 +0000764 } else {
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100765 uint16_t vtable_index = resolved_method->GetMethodIndex();
766 actual_method = compiling_class->GetSuperClass()->GetVTableEntry(
767 vtable_index, class_linker->GetImagePointerSize());
David Brazdildee58d62016-04-07 09:54:26 +0000768 }
Nicolas Geoffray393fdb82016-04-25 14:58:06 +0100769 if (actual_method != resolved_method &&
770 !IsSameDexFile(*actual_method->GetDexFile(), *dex_compilation_unit_->GetDexFile())) {
771 // The back-end code generator relies on this check in order to ensure that it will not
772 // attempt to read the dex_cache with a dex_method_index that is not from the correct
773 // dex_file. If we didn't do this check then the dex_method_index will not be updated in the
774 // builder, which means that the code-generator (and compiler driver during sharpening and
775 // inliner, maybe) might invoke an incorrect method.
776 // TODO: The actual method could still be referenced in the current dex file, so we
777 // could try locating it.
778 // TODO: Remove the dex_file restriction.
779 return nullptr;
780 }
781 if (!actual_method->IsInvokable()) {
782 // Fail if the actual method cannot be invoked. Otherwise, the runtime resolution stub
783 // could resolve the callee to the wrong method.
784 return nullptr;
785 }
786 resolved_method = actual_method;
David Brazdildee58d62016-04-07 09:54:26 +0000787 }
788
David Brazdildee58d62016-04-07 09:54:26 +0000789 return resolved_method;
790}
791
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100792static bool IsStringConstructor(ArtMethod* method) {
793 ScopedObjectAccess soa(Thread::Current());
794 return method->GetDeclaringClass()->IsStringClass() && method->IsConstructor();
795}
796
David Brazdildee58d62016-04-07 09:54:26 +0000797bool HInstructionBuilder::BuildInvoke(const Instruction& instruction,
798 uint32_t dex_pc,
799 uint32_t method_idx,
800 uint32_t number_of_vreg_arguments,
801 bool is_range,
802 uint32_t* args,
803 uint32_t register_index) {
804 InvokeType invoke_type = GetInvokeTypeFromOpCode(instruction.Opcode());
805 const char* descriptor = dex_file_->GetMethodShorty(method_idx);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100806 DataType::Type return_type = DataType::FromShorty(descriptor[0]);
David Brazdildee58d62016-04-07 09:54:26 +0000807
808 // Remove the return type from the 'proto'.
809 size_t number_of_arguments = strlen(descriptor) - 1;
810 if (invoke_type != kStatic) { // instance call
811 // One extra argument for 'this'.
812 number_of_arguments++;
813 }
814
David Brazdildee58d62016-04-07 09:54:26 +0000815 ArtMethod* resolved_method = ResolveMethod(method_idx, invoke_type);
816
817 if (UNLIKELY(resolved_method == nullptr)) {
Igor Murashkin1e065a52017-08-09 13:20:34 -0700818 MaybeRecordStat(compilation_stats_,
819 MethodCompilationStat::kUnresolvedMethod);
David Brazdildee58d62016-04-07 09:54:26 +0000820 HInvoke* invoke = new (arena_) HInvokeUnresolved(arena_,
821 number_of_arguments,
822 return_type,
823 dex_pc,
824 method_idx,
825 invoke_type);
826 return HandleInvoke(invoke,
827 number_of_vreg_arguments,
828 args,
829 register_index,
830 is_range,
831 descriptor,
Aart Bik296fbb42016-06-07 13:49:12 -0700832 nullptr, /* clinit_check */
833 true /* is_unresolved */);
David Brazdildee58d62016-04-07 09:54:26 +0000834 }
835
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100836 // Replace calls to String.<init> with StringFactory.
837 if (IsStringConstructor(resolved_method)) {
838 uint32_t string_init_entry_point = WellKnownClasses::StringInitToEntryPoint(resolved_method);
839 HInvokeStaticOrDirect::DispatchInfo dispatch_info = {
840 HInvokeStaticOrDirect::MethodLoadKind::kStringInit,
841 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
Nicolas Geoffrayc1a42cf2016-12-18 15:52:36 +0000842 dchecked_integral_cast<uint64_t>(string_init_entry_point)
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100843 };
844 MethodReference target_method(dex_file_, method_idx);
845 HInvoke* invoke = new (arena_) HInvokeStaticOrDirect(
846 arena_,
847 number_of_arguments - 1,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100848 DataType::Type::kReference /*return_type */,
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +0100849 dex_pc,
850 method_idx,
851 nullptr,
852 dispatch_info,
853 invoke_type,
854 target_method,
855 HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit);
856 return HandleStringInit(invoke,
857 number_of_vreg_arguments,
858 args,
859 register_index,
860 is_range,
861 descriptor);
862 }
863
David Brazdildee58d62016-04-07 09:54:26 +0000864 // Potential class initialization check, in the case of a static method call.
865 HClinitCheck* clinit_check = nullptr;
866 HInvoke* invoke = nullptr;
867 if (invoke_type == kDirect || invoke_type == kStatic || invoke_type == kSuper) {
868 // By default, consider that the called method implicitly requires
869 // an initialization check of its declaring method.
870 HInvokeStaticOrDirect::ClinitCheckRequirement clinit_check_requirement
871 = HInvokeStaticOrDirect::ClinitCheckRequirement::kImplicit;
872 ScopedObjectAccess soa(Thread::Current());
873 if (invoke_type == kStatic) {
874 clinit_check = ProcessClinitCheckForInvoke(
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000875 dex_pc, resolved_method, &clinit_check_requirement);
David Brazdildee58d62016-04-07 09:54:26 +0000876 } else if (invoke_type == kSuper) {
877 if (IsSameDexFile(*resolved_method->GetDexFile(), *dex_compilation_unit_->GetDexFile())) {
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100878 // Update the method index to the one resolved. Note that this may be a no-op if
David Brazdildee58d62016-04-07 09:54:26 +0000879 // we resolved to the method referenced by the instruction.
880 method_idx = resolved_method->GetDexMethodIndex();
David Brazdildee58d62016-04-07 09:54:26 +0000881 }
882 }
883
884 HInvokeStaticOrDirect::DispatchInfo dispatch_info = {
Vladimir Markoe7197bf2017-06-02 17:00:23 +0100885 HInvokeStaticOrDirect::MethodLoadKind::kRuntimeCall,
David Brazdildee58d62016-04-07 09:54:26 +0000886 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
Nicolas Geoffrayc1a42cf2016-12-18 15:52:36 +0000887 0u
David Brazdildee58d62016-04-07 09:54:26 +0000888 };
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100889 MethodReference target_method(resolved_method->GetDexFile(),
890 resolved_method->GetDexMethodIndex());
David Brazdildee58d62016-04-07 09:54:26 +0000891 invoke = new (arena_) HInvokeStaticOrDirect(arena_,
892 number_of_arguments,
893 return_type,
894 dex_pc,
895 method_idx,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100896 resolved_method,
David Brazdildee58d62016-04-07 09:54:26 +0000897 dispatch_info,
898 invoke_type,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100899 target_method,
David Brazdildee58d62016-04-07 09:54:26 +0000900 clinit_check_requirement);
901 } else if (invoke_type == kVirtual) {
902 ScopedObjectAccess soa(Thread::Current()); // Needed for the method index
903 invoke = new (arena_) HInvokeVirtual(arena_,
904 number_of_arguments,
905 return_type,
906 dex_pc,
907 method_idx,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100908 resolved_method,
David Brazdildee58d62016-04-07 09:54:26 +0000909 resolved_method->GetMethodIndex());
910 } else {
911 DCHECK_EQ(invoke_type, kInterface);
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100912 ScopedObjectAccess soa(Thread::Current()); // Needed for the IMT index.
David Brazdildee58d62016-04-07 09:54:26 +0000913 invoke = new (arena_) HInvokeInterface(arena_,
914 number_of_arguments,
915 return_type,
916 dex_pc,
917 method_idx,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +0100918 resolved_method,
Andreas Gampe75a7db62016-09-26 12:04:26 -0700919 ImTable::GetImtIndex(resolved_method));
David Brazdildee58d62016-04-07 09:54:26 +0000920 }
921
922 return HandleInvoke(invoke,
923 number_of_vreg_arguments,
924 args,
925 register_index,
926 is_range,
927 descriptor,
Aart Bik296fbb42016-06-07 13:49:12 -0700928 clinit_check,
929 false /* is_unresolved */);
David Brazdildee58d62016-04-07 09:54:26 +0000930}
931
Orion Hodsonac141392017-01-13 11:53:47 +0000932bool HInstructionBuilder::BuildInvokePolymorphic(const Instruction& instruction ATTRIBUTE_UNUSED,
933 uint32_t dex_pc,
934 uint32_t method_idx,
935 uint32_t proto_idx,
936 uint32_t number_of_vreg_arguments,
937 bool is_range,
938 uint32_t* args,
939 uint32_t register_index) {
940 const char* descriptor = dex_file_->GetShorty(proto_idx);
941 DCHECK_EQ(1 + ArtMethod::NumArgRegisters(descriptor), number_of_vreg_arguments);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +0100942 DataType::Type return_type = DataType::FromShorty(descriptor[0]);
Orion Hodsonac141392017-01-13 11:53:47 +0000943 size_t number_of_arguments = strlen(descriptor);
944 HInvoke* invoke = new (arena_) HInvokePolymorphic(arena_,
945 number_of_arguments,
946 return_type,
947 dex_pc,
948 method_idx);
949 return HandleInvoke(invoke,
950 number_of_vreg_arguments,
951 args,
952 register_index,
953 is_range,
954 descriptor,
955 nullptr /* clinit_check */,
956 false /* is_unresolved */);
957}
958
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700959HNewInstance* HInstructionBuilder::BuildNewInstance(dex::TypeIndex type_index, uint32_t dex_pc) {
Vladimir Marko3cd50df2016-04-13 19:29:26 +0100960 ScopedObjectAccess soa(Thread::Current());
David Brazdildee58d62016-04-07 09:54:26 +0000961
Nicolas Geoffray83c8e272017-01-31 14:36:37 +0000962 HLoadClass* load_class = BuildLoadClass(type_index, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +0000963
David Brazdildee58d62016-04-07 09:54:26 +0000964 HInstruction* cls = load_class;
Nicolas Geoffray5247c082017-01-13 14:17:29 +0000965 Handle<mirror::Class> klass = load_class->GetClass();
966
967 if (!IsInitialized(klass)) {
David Brazdildee58d62016-04-07 09:54:26 +0000968 cls = new (arena_) HClinitCheck(load_class, dex_pc);
969 AppendInstruction(cls);
970 }
971
Nicolas Geoffray5247c082017-01-13 14:17:29 +0000972 // Only the access check entrypoint handles the finalizable class case. If we
973 // need access checks, then we haven't resolved the method and the class may
974 // again be finalizable.
975 QuickEntrypointEnum entrypoint = kQuickAllocObjectInitialized;
976 if (load_class->NeedsAccessCheck() || klass->IsFinalizable() || !klass->IsInstantiable()) {
977 entrypoint = kQuickAllocObjectWithChecks;
978 }
979
980 // Consider classes we haven't resolved as potentially finalizable.
Andreas Gampefa4333d2017-02-14 11:10:34 -0800981 bool finalizable = (klass == nullptr) || klass->IsFinalizable();
Nicolas Geoffray5247c082017-01-13 14:17:29 +0000982
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700983 HNewInstance* new_instance = new (arena_) HNewInstance(
David Brazdildee58d62016-04-07 09:54:26 +0000984 cls,
David Brazdildee58d62016-04-07 09:54:26 +0000985 dex_pc,
986 type_index,
987 *dex_compilation_unit_->GetDexFile(),
David Brazdildee58d62016-04-07 09:54:26 +0000988 finalizable,
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700989 entrypoint);
990 AppendInstruction(new_instance);
991
992 return new_instance;
993}
994
995void HInstructionBuilder::BuildConstructorFenceForAllocation(HInstruction* allocation) {
996 DCHECK(allocation != nullptr &&
George Burgess IVf2072992017-05-23 15:36:41 -0700997 (allocation->IsNewInstance() ||
998 allocation->IsNewArray())); // corresponding to "new" keyword in JLS.
Igor Murashkin79d8fa72017-04-18 09:37:23 -0700999
1000 if (allocation->IsNewInstance()) {
1001 // STRING SPECIAL HANDLING:
1002 // -------------------------------
1003 // Strings have a real HNewInstance node but they end up always having 0 uses.
1004 // All uses of a String HNewInstance are always transformed to replace their input
1005 // of the HNewInstance with an input of the invoke to StringFactory.
1006 //
1007 // Do not emit an HConstructorFence here since it can inhibit some String new-instance
1008 // optimizations (to pass checker tests that rely on those optimizations).
1009 HNewInstance* new_inst = allocation->AsNewInstance();
1010 HLoadClass* load_class = new_inst->GetLoadClass();
1011
1012 Thread* self = Thread::Current();
1013 ScopedObjectAccess soa(self);
1014 StackHandleScope<1> hs(self);
1015 Handle<mirror::Class> klass = load_class->GetClass();
1016 if (klass != nullptr && klass->IsStringClass()) {
1017 return;
1018 // Note: Do not use allocation->IsStringAlloc which requires
1019 // a valid ReferenceTypeInfo, but that doesn't get made until after reference type
1020 // propagation (and instruction builder is too early).
1021 }
1022 // (In terms of correctness, the StringFactory needs to provide its own
1023 // default initialization barrier, see below.)
1024 }
1025
1026 // JLS 17.4.5 "Happens-before Order" describes:
1027 //
1028 // The default initialization of any object happens-before any other actions (other than
1029 // default-writes) of a program.
1030 //
1031 // In our implementation the default initialization of an object to type T means
1032 // setting all of its initial data (object[0..size)) to 0, and setting the
1033 // object's class header (i.e. object.getClass() == T.class).
1034 //
1035 // In practice this fence ensures that the writes to the object header
1036 // are visible to other threads if this object escapes the current thread.
1037 // (and in theory the 0-initializing, but that happens automatically
1038 // when new memory pages are mapped in by the OS).
1039 HConstructorFence* ctor_fence =
1040 new (arena_) HConstructorFence(allocation, allocation->GetDexPc(), arena_);
1041 AppendInstruction(ctor_fence);
Igor Murashkin6ef45672017-08-08 13:59:55 -07001042 MaybeRecordStat(
1043 compilation_stats_,
1044 MethodCompilationStat::kConstructorFenceGeneratedNew);
David Brazdildee58d62016-04-07 09:54:26 +00001045}
1046
1047static bool IsSubClass(mirror::Class* to_test, mirror::Class* super_class)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001048 REQUIRES_SHARED(Locks::mutator_lock_) {
David Brazdildee58d62016-04-07 09:54:26 +00001049 return to_test != nullptr && !to_test->IsInterface() && to_test->IsSubClass(super_class);
1050}
1051
1052bool HInstructionBuilder::IsInitialized(Handle<mirror::Class> cls) const {
Andreas Gampefa4333d2017-02-14 11:10:34 -08001053 if (cls == nullptr) {
David Brazdildee58d62016-04-07 09:54:26 +00001054 return false;
1055 }
1056
1057 // `CanAssumeClassIsLoaded` will return true if we're JITting, or will
1058 // check whether the class is in an image for the AOT compilation.
1059 if (cls->IsInitialized() &&
1060 compiler_driver_->CanAssumeClassIsLoaded(cls.Get())) {
1061 return true;
1062 }
1063
1064 if (IsSubClass(GetOutermostCompilingClass(), cls.Get())) {
1065 return true;
1066 }
1067
1068 // TODO: We should walk over the inlined methods, but we don't pass
1069 // that information to the builder.
1070 if (IsSubClass(GetCompilingClass(), cls.Get())) {
1071 return true;
1072 }
1073
1074 return false;
1075}
1076
1077HClinitCheck* HInstructionBuilder::ProcessClinitCheckForInvoke(
1078 uint32_t dex_pc,
1079 ArtMethod* resolved_method,
David Brazdildee58d62016-04-07 09:54:26 +00001080 HInvokeStaticOrDirect::ClinitCheckRequirement* clinit_check_requirement) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001081 Handle<mirror::Class> klass = handles_->NewHandle(resolved_method->GetDeclaringClass());
David Brazdildee58d62016-04-07 09:54:26 +00001082
1083 HClinitCheck* clinit_check = nullptr;
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001084 if (IsInitialized(klass)) {
David Brazdildee58d62016-04-07 09:54:26 +00001085 *clinit_check_requirement = HInvokeStaticOrDirect::ClinitCheckRequirement::kNone;
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001086 } else {
1087 HLoadClass* cls = BuildLoadClass(klass->GetDexTypeIndex(),
1088 klass->GetDexFile(),
1089 klass,
1090 dex_pc,
1091 /* needs_access_check */ false);
1092 if (cls != nullptr) {
1093 *clinit_check_requirement = HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit;
1094 clinit_check = new (arena_) HClinitCheck(cls, dex_pc);
1095 AppendInstruction(clinit_check);
1096 }
David Brazdildee58d62016-04-07 09:54:26 +00001097 }
1098 return clinit_check;
1099}
1100
1101bool HInstructionBuilder::SetupInvokeArguments(HInvoke* invoke,
1102 uint32_t number_of_vreg_arguments,
1103 uint32_t* args,
1104 uint32_t register_index,
1105 bool is_range,
1106 const char* descriptor,
1107 size_t start_index,
1108 size_t* argument_index) {
1109 uint32_t descriptor_index = 1; // Skip the return type.
1110
1111 for (size_t i = start_index;
1112 // Make sure we don't go over the expected arguments or over the number of
1113 // dex registers given. If the instruction was seen as dead by the verifier,
1114 // it hasn't been properly checked.
1115 (i < number_of_vreg_arguments) && (*argument_index < invoke->GetNumberOfArguments());
1116 i++, (*argument_index)++) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001117 DataType::Type type = DataType::FromShorty(descriptor[descriptor_index++]);
1118 bool is_wide = (type == DataType::Type::kInt64) || (type == DataType::Type::kFloat64);
David Brazdildee58d62016-04-07 09:54:26 +00001119 if (!is_range
1120 && is_wide
1121 && ((i + 1 == number_of_vreg_arguments) || (args[i] + 1 != args[i + 1]))) {
1122 // Longs and doubles should be in pairs, that is, sequential registers. The verifier should
1123 // reject any class where this is violated. However, the verifier only does these checks
1124 // on non trivially dead instructions, so we just bailout the compilation.
1125 VLOG(compiler) << "Did not compile "
David Sehr709b0702016-10-13 09:12:37 -07001126 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdildee58d62016-04-07 09:54:26 +00001127 << " because of non-sequential dex register pair in wide argument";
Igor Murashkin1e065a52017-08-09 13:20:34 -07001128 MaybeRecordStat(compilation_stats_,
1129 MethodCompilationStat::kNotCompiledMalformedOpcode);
David Brazdildee58d62016-04-07 09:54:26 +00001130 return false;
1131 }
1132 HInstruction* arg = LoadLocal(is_range ? register_index + i : args[i], type);
1133 invoke->SetArgumentAt(*argument_index, arg);
1134 if (is_wide) {
1135 i++;
1136 }
1137 }
1138
1139 if (*argument_index != invoke->GetNumberOfArguments()) {
1140 VLOG(compiler) << "Did not compile "
David Sehr709b0702016-10-13 09:12:37 -07001141 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdildee58d62016-04-07 09:54:26 +00001142 << " because of wrong number of arguments in invoke instruction";
Igor Murashkin1e065a52017-08-09 13:20:34 -07001143 MaybeRecordStat(compilation_stats_,
1144 MethodCompilationStat::kNotCompiledMalformedOpcode);
David Brazdildee58d62016-04-07 09:54:26 +00001145 return false;
1146 }
1147
1148 if (invoke->IsInvokeStaticOrDirect() &&
1149 HInvokeStaticOrDirect::NeedsCurrentMethodInput(
1150 invoke->AsInvokeStaticOrDirect()->GetMethodLoadKind())) {
1151 invoke->SetArgumentAt(*argument_index, graph_->GetCurrentMethod());
1152 (*argument_index)++;
1153 }
1154
1155 return true;
1156}
1157
1158bool HInstructionBuilder::HandleInvoke(HInvoke* invoke,
1159 uint32_t number_of_vreg_arguments,
1160 uint32_t* args,
1161 uint32_t register_index,
1162 bool is_range,
1163 const char* descriptor,
Aart Bik296fbb42016-06-07 13:49:12 -07001164 HClinitCheck* clinit_check,
1165 bool is_unresolved) {
David Brazdildee58d62016-04-07 09:54:26 +00001166 DCHECK(!invoke->IsInvokeStaticOrDirect() || !invoke->AsInvokeStaticOrDirect()->IsStringInit());
1167
1168 size_t start_index = 0;
1169 size_t argument_index = 0;
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01001170 if (invoke->GetInvokeType() != InvokeType::kStatic) { // Instance call.
Aart Bik296fbb42016-06-07 13:49:12 -07001171 uint32_t obj_reg = is_range ? register_index : args[0];
1172 HInstruction* arg = is_unresolved
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001173 ? LoadLocal(obj_reg, DataType::Type::kReference)
Aart Bik296fbb42016-06-07 13:49:12 -07001174 : LoadNullCheckedLocal(obj_reg, invoke->GetDexPc());
David Brazdilc120bbe2016-04-22 16:57:00 +01001175 invoke->SetArgumentAt(0, arg);
David Brazdildee58d62016-04-07 09:54:26 +00001176 start_index = 1;
1177 argument_index = 1;
1178 }
1179
1180 if (!SetupInvokeArguments(invoke,
1181 number_of_vreg_arguments,
1182 args,
1183 register_index,
1184 is_range,
1185 descriptor,
1186 start_index,
1187 &argument_index)) {
1188 return false;
1189 }
1190
1191 if (clinit_check != nullptr) {
1192 // Add the class initialization check as last input of `invoke`.
1193 DCHECK(invoke->IsInvokeStaticOrDirect());
1194 DCHECK(invoke->AsInvokeStaticOrDirect()->GetClinitCheckRequirement()
1195 == HInvokeStaticOrDirect::ClinitCheckRequirement::kExplicit);
1196 invoke->SetArgumentAt(argument_index, clinit_check);
1197 argument_index++;
1198 }
1199
1200 AppendInstruction(invoke);
1201 latest_result_ = invoke;
1202
1203 return true;
1204}
1205
1206bool HInstructionBuilder::HandleStringInit(HInvoke* invoke,
1207 uint32_t number_of_vreg_arguments,
1208 uint32_t* args,
1209 uint32_t register_index,
1210 bool is_range,
1211 const char* descriptor) {
1212 DCHECK(invoke->IsInvokeStaticOrDirect());
1213 DCHECK(invoke->AsInvokeStaticOrDirect()->IsStringInit());
1214
1215 size_t start_index = 1;
1216 size_t argument_index = 0;
1217 if (!SetupInvokeArguments(invoke,
1218 number_of_vreg_arguments,
1219 args,
1220 register_index,
1221 is_range,
1222 descriptor,
1223 start_index,
1224 &argument_index)) {
1225 return false;
1226 }
1227
1228 AppendInstruction(invoke);
1229
1230 // This is a StringFactory call, not an actual String constructor. Its result
1231 // replaces the empty String pre-allocated by NewInstance.
1232 uint32_t orig_this_reg = is_range ? register_index : args[0];
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001233 HInstruction* arg_this = LoadLocal(orig_this_reg, DataType::Type::kReference);
David Brazdildee58d62016-04-07 09:54:26 +00001234
1235 // Replacing the NewInstance might render it redundant. Keep a list of these
1236 // to be visited once it is clear whether it is has remaining uses.
1237 if (arg_this->IsNewInstance()) {
1238 ssa_builder_->AddUninitializedString(arg_this->AsNewInstance());
1239 } else {
1240 DCHECK(arg_this->IsPhi());
1241 // NewInstance is not the direct input of the StringFactory call. It might
1242 // be redundant but optimizing this case is not worth the effort.
1243 }
1244
1245 // Walk over all vregs and replace any occurrence of `arg_this` with `invoke`.
1246 for (size_t vreg = 0, e = current_locals_->size(); vreg < e; ++vreg) {
1247 if ((*current_locals_)[vreg] == arg_this) {
1248 (*current_locals_)[vreg] = invoke;
1249 }
1250 }
1251
1252 return true;
1253}
1254
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001255static DataType::Type GetFieldAccessType(const DexFile& dex_file, uint16_t field_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001256 const DexFile::FieldId& field_id = dex_file.GetFieldId(field_index);
1257 const char* type = dex_file.GetFieldTypeDescriptor(field_id);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001258 return DataType::FromShorty(type[0]);
David Brazdildee58d62016-04-07 09:54:26 +00001259}
1260
1261bool HInstructionBuilder::BuildInstanceFieldAccess(const Instruction& instruction,
1262 uint32_t dex_pc,
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001263 bool is_put,
1264 size_t quicken_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001265 uint32_t source_or_dest_reg = instruction.VRegA_22c();
1266 uint32_t obj_reg = instruction.VRegB_22c();
1267 uint16_t field_index;
1268 if (instruction.IsQuickened()) {
1269 if (!CanDecodeQuickenedInfo()) {
1270 return false;
1271 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001272 field_index = LookupQuickenedInfo(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001273 } else {
1274 field_index = instruction.VRegC_22c();
1275 }
1276
1277 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001278 ArtField* resolved_field = ResolveField(field_index, /* is_static */ false, is_put);
David Brazdildee58d62016-04-07 09:54:26 +00001279
Aart Bik14154132016-06-02 17:53:58 -07001280 // Generate an explicit null check on the reference, unless the field access
1281 // is unresolved. In that case, we rely on the runtime to perform various
1282 // checks first, followed by a null check.
1283 HInstruction* object = (resolved_field == nullptr)
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001284 ? LoadLocal(obj_reg, DataType::Type::kReference)
Aart Bik14154132016-06-02 17:53:58 -07001285 : LoadNullCheckedLocal(obj_reg, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001286
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001287 DataType::Type field_type = GetFieldAccessType(*dex_file_, field_index);
David Brazdildee58d62016-04-07 09:54:26 +00001288 if (is_put) {
1289 HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
1290 HInstruction* field_set = nullptr;
1291 if (resolved_field == nullptr) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001292 MaybeRecordStat(compilation_stats_,
1293 MethodCompilationStat::kUnresolvedField);
David Brazdilc120bbe2016-04-22 16:57:00 +01001294 field_set = new (arena_) HUnresolvedInstanceFieldSet(object,
David Brazdildee58d62016-04-07 09:54:26 +00001295 value,
1296 field_type,
1297 field_index,
1298 dex_pc);
1299 } else {
1300 uint16_t class_def_index = resolved_field->GetDeclaringClass()->GetDexClassDefIndex();
David Brazdilc120bbe2016-04-22 16:57:00 +01001301 field_set = new (arena_) HInstanceFieldSet(object,
David Brazdildee58d62016-04-07 09:54:26 +00001302 value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001303 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001304 field_type,
1305 resolved_field->GetOffset(),
1306 resolved_field->IsVolatile(),
1307 field_index,
1308 class_def_index,
1309 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001310 dex_pc);
1311 }
1312 AppendInstruction(field_set);
1313 } else {
1314 HInstruction* field_get = nullptr;
1315 if (resolved_field == nullptr) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001316 MaybeRecordStat(compilation_stats_,
1317 MethodCompilationStat::kUnresolvedField);
David Brazdilc120bbe2016-04-22 16:57:00 +01001318 field_get = new (arena_) HUnresolvedInstanceFieldGet(object,
David Brazdildee58d62016-04-07 09:54:26 +00001319 field_type,
1320 field_index,
1321 dex_pc);
1322 } else {
1323 uint16_t class_def_index = resolved_field->GetDeclaringClass()->GetDexClassDefIndex();
David Brazdilc120bbe2016-04-22 16:57:00 +01001324 field_get = new (arena_) HInstanceFieldGet(object,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001325 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001326 field_type,
1327 resolved_field->GetOffset(),
1328 resolved_field->IsVolatile(),
1329 field_index,
1330 class_def_index,
1331 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001332 dex_pc);
1333 }
1334 AppendInstruction(field_get);
1335 UpdateLocal(source_or_dest_reg, field_get);
1336 }
1337
1338 return true;
1339}
1340
1341static mirror::Class* GetClassFrom(CompilerDriver* driver,
1342 const DexCompilationUnit& compilation_unit) {
1343 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001344 Handle<mirror::ClassLoader> class_loader = compilation_unit.GetClassLoader();
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001345 Handle<mirror::DexCache> dex_cache = compilation_unit.GetDexCache();
David Brazdildee58d62016-04-07 09:54:26 +00001346
1347 return driver->ResolveCompilingMethodsClass(soa, dex_cache, class_loader, &compilation_unit);
1348}
1349
1350mirror::Class* HInstructionBuilder::GetOutermostCompilingClass() const {
1351 return GetClassFrom(compiler_driver_, *outer_compilation_unit_);
1352}
1353
1354mirror::Class* HInstructionBuilder::GetCompilingClass() const {
1355 return GetClassFrom(compiler_driver_, *dex_compilation_unit_);
1356}
1357
Andreas Gampea5b09a62016-11-17 15:21:22 -08001358bool HInstructionBuilder::IsOutermostCompilingClass(dex::TypeIndex type_index) const {
David Brazdildee58d62016-04-07 09:54:26 +00001359 ScopedObjectAccess soa(Thread::Current());
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001360 StackHandleScope<2> hs(soa.Self());
Vladimir Marko3cd50df2016-04-13 19:29:26 +01001361 Handle<mirror::DexCache> dex_cache = dex_compilation_unit_->GetDexCache();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001362 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
David Brazdildee58d62016-04-07 09:54:26 +00001363 Handle<mirror::Class> cls(hs.NewHandle(compiler_driver_->ResolveClass(
1364 soa, dex_cache, class_loader, type_index, dex_compilation_unit_)));
1365 Handle<mirror::Class> outer_class(hs.NewHandle(GetOutermostCompilingClass()));
1366
1367 // GetOutermostCompilingClass returns null when the class is unresolved
1368 // (e.g. if it derives from an unresolved class). This is bogus knowing that
1369 // we are compiling it.
1370 // When this happens we cannot establish a direct relation between the current
1371 // class and the outer class, so we return false.
1372 // (Note that this is only used for optimizing invokes and field accesses)
Andreas Gampefa4333d2017-02-14 11:10:34 -08001373 return (cls != nullptr) && (outer_class.Get() == cls.Get());
David Brazdildee58d62016-04-07 09:54:26 +00001374}
1375
1376void HInstructionBuilder::BuildUnresolvedStaticFieldAccess(const Instruction& instruction,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001377 uint32_t dex_pc,
1378 bool is_put,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001379 DataType::Type field_type) {
David Brazdildee58d62016-04-07 09:54:26 +00001380 uint32_t source_or_dest_reg = instruction.VRegA_21c();
1381 uint16_t field_index = instruction.VRegB_21c();
1382
1383 if (is_put) {
1384 HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
1385 AppendInstruction(
1386 new (arena_) HUnresolvedStaticFieldSet(value, field_type, field_index, dex_pc));
1387 } else {
1388 AppendInstruction(new (arena_) HUnresolvedStaticFieldGet(field_type, field_index, dex_pc));
1389 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
1390 }
1391}
1392
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001393ArtField* HInstructionBuilder::ResolveField(uint16_t field_idx, bool is_static, bool is_put) {
1394 ScopedObjectAccess soa(Thread::Current());
1395 StackHandleScope<2> hs(soa.Self());
1396
1397 ClassLinker* class_linker = dex_compilation_unit_->GetClassLinker();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001398 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001399 Handle<mirror::Class> compiling_class(hs.NewHandle(GetCompilingClass()));
1400
1401 ArtField* resolved_field = class_linker->ResolveField(*dex_compilation_unit_->GetDexFile(),
1402 field_idx,
1403 dex_compilation_unit_->GetDexCache(),
1404 class_loader,
1405 is_static);
1406
1407 if (UNLIKELY(resolved_field == nullptr)) {
1408 // Clean up any exception left by type resolution.
1409 soa.Self()->ClearException();
1410 return nullptr;
1411 }
1412
1413 // Check static/instance. The class linker has a fast path for looking into the dex cache
1414 // and does not check static/instance if it hits it.
1415 if (UNLIKELY(resolved_field->IsStatic() != is_static)) {
1416 return nullptr;
1417 }
1418
1419 // Check access.
Andreas Gampefa4333d2017-02-14 11:10:34 -08001420 if (compiling_class == nullptr) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001421 if (!resolved_field->IsPublic()) {
1422 return nullptr;
1423 }
1424 } else if (!compiling_class->CanAccessResolvedField(resolved_field->GetDeclaringClass(),
1425 resolved_field,
1426 dex_compilation_unit_->GetDexCache().Get(),
1427 field_idx)) {
1428 return nullptr;
1429 }
1430
1431 if (is_put &&
1432 resolved_field->IsFinal() &&
1433 (compiling_class.Get() != resolved_field->GetDeclaringClass())) {
1434 // Final fields can only be updated within their own class.
1435 // TODO: Only allow it in constructors. b/34966607.
1436 return nullptr;
1437 }
1438
1439 return resolved_field;
1440}
1441
David Brazdildee58d62016-04-07 09:54:26 +00001442bool HInstructionBuilder::BuildStaticFieldAccess(const Instruction& instruction,
1443 uint32_t dex_pc,
1444 bool is_put) {
1445 uint32_t source_or_dest_reg = instruction.VRegA_21c();
1446 uint16_t field_index = instruction.VRegB_21c();
1447
1448 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001449 ArtField* resolved_field = ResolveField(field_index, /* is_static */ true, is_put);
David Brazdildee58d62016-04-07 09:54:26 +00001450
1451 if (resolved_field == nullptr) {
Igor Murashkin1e065a52017-08-09 13:20:34 -07001452 MaybeRecordStat(compilation_stats_,
1453 MethodCompilationStat::kUnresolvedField);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001454 DataType::Type field_type = GetFieldAccessType(*dex_file_, field_index);
David Brazdildee58d62016-04-07 09:54:26 +00001455 BuildUnresolvedStaticFieldAccess(instruction, dex_pc, is_put, field_type);
1456 return true;
1457 }
1458
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001459 DataType::Type field_type = GetFieldAccessType(*dex_file_, field_index);
David Brazdildee58d62016-04-07 09:54:26 +00001460
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001461 Handle<mirror::Class> klass = handles_->NewHandle(resolved_field->GetDeclaringClass());
1462 HLoadClass* constant = BuildLoadClass(klass->GetDexTypeIndex(),
1463 klass->GetDexFile(),
1464 klass,
1465 dex_pc,
1466 /* needs_access_check */ false);
1467
1468 if (constant == nullptr) {
1469 // The class cannot be referenced from this compiled code. Generate
1470 // an unresolved access.
Igor Murashkin1e065a52017-08-09 13:20:34 -07001471 MaybeRecordStat(compilation_stats_,
1472 MethodCompilationStat::kUnresolvedFieldNotAFastAccess);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001473 BuildUnresolvedStaticFieldAccess(instruction, dex_pc, is_put, field_type);
1474 return true;
David Brazdildee58d62016-04-07 09:54:26 +00001475 }
1476
David Brazdildee58d62016-04-07 09:54:26 +00001477 HInstruction* cls = constant;
David Brazdildee58d62016-04-07 09:54:26 +00001478 if (!IsInitialized(klass)) {
1479 cls = new (arena_) HClinitCheck(constant, dex_pc);
1480 AppendInstruction(cls);
1481 }
1482
1483 uint16_t class_def_index = klass->GetDexClassDefIndex();
1484 if (is_put) {
1485 // We need to keep the class alive before loading the value.
1486 HInstruction* value = LoadLocal(source_or_dest_reg, field_type);
1487 DCHECK_EQ(HPhi::ToPhiType(value->GetType()), HPhi::ToPhiType(field_type));
1488 AppendInstruction(new (arena_) HStaticFieldSet(cls,
1489 value,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001490 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001491 field_type,
1492 resolved_field->GetOffset(),
1493 resolved_field->IsVolatile(),
1494 field_index,
1495 class_def_index,
1496 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001497 dex_pc));
1498 } else {
1499 AppendInstruction(new (arena_) HStaticFieldGet(cls,
Nicolas Geoffrayc52b26d2016-12-19 09:18:07 +00001500 resolved_field,
David Brazdildee58d62016-04-07 09:54:26 +00001501 field_type,
1502 resolved_field->GetOffset(),
1503 resolved_field->IsVolatile(),
1504 field_index,
1505 class_def_index,
1506 *dex_file_,
David Brazdildee58d62016-04-07 09:54:26 +00001507 dex_pc));
1508 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
1509 }
1510 return true;
1511}
1512
1513void HInstructionBuilder::BuildCheckedDivRem(uint16_t out_vreg,
1514 uint16_t first_vreg,
1515 int64_t second_vreg_or_constant,
1516 uint32_t dex_pc,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001517 DataType::Type type,
David Brazdildee58d62016-04-07 09:54:26 +00001518 bool second_is_constant,
1519 bool isDiv) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001520 DCHECK(type == DataType::Type::kInt32 || type == DataType::Type::kInt64);
David Brazdildee58d62016-04-07 09:54:26 +00001521
1522 HInstruction* first = LoadLocal(first_vreg, type);
1523 HInstruction* second = nullptr;
1524 if (second_is_constant) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001525 if (type == DataType::Type::kInt32) {
David Brazdildee58d62016-04-07 09:54:26 +00001526 second = graph_->GetIntConstant(second_vreg_or_constant, dex_pc);
1527 } else {
1528 second = graph_->GetLongConstant(second_vreg_or_constant, dex_pc);
1529 }
1530 } else {
1531 second = LoadLocal(second_vreg_or_constant, type);
1532 }
1533
1534 if (!second_is_constant
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001535 || (type == DataType::Type::kInt32 && second->AsIntConstant()->GetValue() == 0)
1536 || (type == DataType::Type::kInt64 && second->AsLongConstant()->GetValue() == 0)) {
David Brazdildee58d62016-04-07 09:54:26 +00001537 second = new (arena_) HDivZeroCheck(second, dex_pc);
1538 AppendInstruction(second);
1539 }
1540
1541 if (isDiv) {
1542 AppendInstruction(new (arena_) HDiv(type, first, second, dex_pc));
1543 } else {
1544 AppendInstruction(new (arena_) HRem(type, first, second, dex_pc));
1545 }
1546 UpdateLocal(out_vreg, current_block_->GetLastInstruction());
1547}
1548
1549void HInstructionBuilder::BuildArrayAccess(const Instruction& instruction,
1550 uint32_t dex_pc,
1551 bool is_put,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001552 DataType::Type anticipated_type) {
David Brazdildee58d62016-04-07 09:54:26 +00001553 uint8_t source_or_dest_reg = instruction.VRegA_23x();
1554 uint8_t array_reg = instruction.VRegB_23x();
1555 uint8_t index_reg = instruction.VRegC_23x();
1556
David Brazdilc120bbe2016-04-22 16:57:00 +01001557 HInstruction* object = LoadNullCheckedLocal(array_reg, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001558 HInstruction* length = new (arena_) HArrayLength(object, dex_pc);
1559 AppendInstruction(length);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001560 HInstruction* index = LoadLocal(index_reg, DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +00001561 index = new (arena_) HBoundsCheck(index, length, dex_pc);
1562 AppendInstruction(index);
1563 if (is_put) {
1564 HInstruction* value = LoadLocal(source_or_dest_reg, anticipated_type);
1565 // TODO: Insert a type check node if the type is Object.
1566 HArraySet* aset = new (arena_) HArraySet(object, index, value, anticipated_type, dex_pc);
1567 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1568 AppendInstruction(aset);
1569 } else {
1570 HArrayGet* aget = new (arena_) HArrayGet(object, index, anticipated_type, dex_pc);
1571 ssa_builder_->MaybeAddAmbiguousArrayGet(aget);
1572 AppendInstruction(aget);
1573 UpdateLocal(source_or_dest_reg, current_block_->GetLastInstruction());
1574 }
1575 graph_->SetHasBoundsChecks(true);
1576}
1577
Igor Murashkin79d8fa72017-04-18 09:37:23 -07001578HNewArray* HInstructionBuilder::BuildFilledNewArray(uint32_t dex_pc,
1579 dex::TypeIndex type_index,
1580 uint32_t number_of_vreg_arguments,
1581 bool is_range,
1582 uint32_t* args,
1583 uint32_t register_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001584 HInstruction* length = graph_->GetIntConstant(number_of_vreg_arguments, dex_pc);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001585 HLoadClass* cls = BuildLoadClass(type_index, dex_pc);
Igor Murashkin79d8fa72017-04-18 09:37:23 -07001586 HNewArray* const object = new (arena_) HNewArray(cls, length, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001587 AppendInstruction(object);
1588
1589 const char* descriptor = dex_file_->StringByTypeIdx(type_index);
1590 DCHECK_EQ(descriptor[0], '[') << descriptor;
1591 char primitive = descriptor[1];
1592 DCHECK(primitive == 'I'
1593 || primitive == 'L'
1594 || primitive == '[') << descriptor;
1595 bool is_reference_array = (primitive == 'L') || (primitive == '[');
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001596 DataType::Type type = is_reference_array ? DataType::Type::kReference : DataType::Type::kInt32;
David Brazdildee58d62016-04-07 09:54:26 +00001597
1598 for (size_t i = 0; i < number_of_vreg_arguments; ++i) {
1599 HInstruction* value = LoadLocal(is_range ? register_index + i : args[i], type);
1600 HInstruction* index = graph_->GetIntConstant(i, dex_pc);
1601 HArraySet* aset = new (arena_) HArraySet(object, index, value, type, dex_pc);
1602 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1603 AppendInstruction(aset);
1604 }
1605 latest_result_ = object;
Igor Murashkin79d8fa72017-04-18 09:37:23 -07001606
1607 return object;
David Brazdildee58d62016-04-07 09:54:26 +00001608}
1609
1610template <typename T>
1611void HInstructionBuilder::BuildFillArrayData(HInstruction* object,
1612 const T* data,
1613 uint32_t element_count,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001614 DataType::Type anticipated_type,
David Brazdildee58d62016-04-07 09:54:26 +00001615 uint32_t dex_pc) {
1616 for (uint32_t i = 0; i < element_count; ++i) {
1617 HInstruction* index = graph_->GetIntConstant(i, dex_pc);
1618 HInstruction* value = graph_->GetIntConstant(data[i], dex_pc);
1619 HArraySet* aset = new (arena_) HArraySet(object, index, value, anticipated_type, dex_pc);
1620 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1621 AppendInstruction(aset);
1622 }
1623}
1624
1625void HInstructionBuilder::BuildFillArrayData(const Instruction& instruction, uint32_t dex_pc) {
David Brazdilc120bbe2016-04-22 16:57:00 +01001626 HInstruction* array = LoadNullCheckedLocal(instruction.VRegA_31t(), dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001627
1628 int32_t payload_offset = instruction.VRegB_31t() + dex_pc;
1629 const Instruction::ArrayDataPayload* payload =
1630 reinterpret_cast<const Instruction::ArrayDataPayload*>(code_item_.insns_ + payload_offset);
1631 const uint8_t* data = payload->data;
1632 uint32_t element_count = payload->element_count;
1633
Vladimir Markoc69fba22016-09-06 16:49:15 +01001634 if (element_count == 0u) {
1635 // For empty payload we emit only the null check above.
1636 return;
1637 }
1638
1639 HInstruction* length = new (arena_) HArrayLength(array, dex_pc);
1640 AppendInstruction(length);
1641
David Brazdildee58d62016-04-07 09:54:26 +00001642 // Implementation of this DEX instruction seems to be that the bounds check is
1643 // done before doing any stores.
1644 HInstruction* last_index = graph_->GetIntConstant(payload->element_count - 1, dex_pc);
1645 AppendInstruction(new (arena_) HBoundsCheck(last_index, length, dex_pc));
1646
1647 switch (payload->element_width) {
1648 case 1:
David Brazdilc120bbe2016-04-22 16:57:00 +01001649 BuildFillArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001650 reinterpret_cast<const int8_t*>(data),
1651 element_count,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001652 DataType::Type::kInt8,
David Brazdildee58d62016-04-07 09:54:26 +00001653 dex_pc);
1654 break;
1655 case 2:
David Brazdilc120bbe2016-04-22 16:57:00 +01001656 BuildFillArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001657 reinterpret_cast<const int16_t*>(data),
1658 element_count,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001659 DataType::Type::kInt16,
David Brazdildee58d62016-04-07 09:54:26 +00001660 dex_pc);
1661 break;
1662 case 4:
David Brazdilc120bbe2016-04-22 16:57:00 +01001663 BuildFillArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001664 reinterpret_cast<const int32_t*>(data),
1665 element_count,
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001666 DataType::Type::kInt32,
David Brazdildee58d62016-04-07 09:54:26 +00001667 dex_pc);
1668 break;
1669 case 8:
David Brazdilc120bbe2016-04-22 16:57:00 +01001670 BuildFillWideArrayData(array,
David Brazdildee58d62016-04-07 09:54:26 +00001671 reinterpret_cast<const int64_t*>(data),
1672 element_count,
1673 dex_pc);
1674 break;
1675 default:
1676 LOG(FATAL) << "Unknown element width for " << payload->element_width;
1677 }
1678 graph_->SetHasBoundsChecks(true);
1679}
1680
1681void HInstructionBuilder::BuildFillWideArrayData(HInstruction* object,
1682 const int64_t* data,
1683 uint32_t element_count,
1684 uint32_t dex_pc) {
1685 for (uint32_t i = 0; i < element_count; ++i) {
1686 HInstruction* index = graph_->GetIntConstant(i, dex_pc);
1687 HInstruction* value = graph_->GetLongConstant(data[i], dex_pc);
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001688 HArraySet* aset = new (arena_) HArraySet(object, index, value, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001689 ssa_builder_->MaybeAddAmbiguousArraySet(aset);
1690 AppendInstruction(aset);
1691 }
1692}
1693
1694static TypeCheckKind ComputeTypeCheckKind(Handle<mirror::Class> cls)
Andreas Gampebdf7f1c2016-08-30 16:38:47 -07001695 REQUIRES_SHARED(Locks::mutator_lock_) {
Andreas Gampefa4333d2017-02-14 11:10:34 -08001696 if (cls == nullptr) {
David Brazdildee58d62016-04-07 09:54:26 +00001697 return TypeCheckKind::kUnresolvedCheck;
1698 } else if (cls->IsInterface()) {
1699 return TypeCheckKind::kInterfaceCheck;
1700 } else if (cls->IsArrayClass()) {
1701 if (cls->GetComponentType()->IsObjectClass()) {
1702 return TypeCheckKind::kArrayObjectCheck;
1703 } else if (cls->CannotBeAssignedFromOtherTypes()) {
1704 return TypeCheckKind::kExactCheck;
1705 } else {
1706 return TypeCheckKind::kArrayCheck;
1707 }
1708 } else if (cls->IsFinal()) {
1709 return TypeCheckKind::kExactCheck;
1710 } else if (cls->IsAbstract()) {
1711 return TypeCheckKind::kAbstractClassCheck;
1712 } else {
1713 return TypeCheckKind::kClassHierarchyCheck;
1714 }
1715}
1716
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001717HLoadClass* HInstructionBuilder::BuildLoadClass(dex::TypeIndex type_index, uint32_t dex_pc) {
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001718 ScopedObjectAccess soa(Thread::Current());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001719 const DexFile& dex_file = *dex_compilation_unit_->GetDexFile();
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001720 Handle<mirror::ClassLoader> class_loader = dex_compilation_unit_->GetClassLoader();
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00001721 Handle<mirror::Class> klass = handles_->NewHandle(compiler_driver_->ResolveClass(
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001722 soa, dex_compilation_unit_->GetDexCache(), class_loader, type_index, dex_compilation_unit_));
Nicolas Geoffraye761bcc2017-01-19 08:59:37 +00001723
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001724 bool needs_access_check = true;
Andreas Gampefa4333d2017-02-14 11:10:34 -08001725 if (klass != nullptr) {
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001726 if (klass->IsPublic()) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001727 needs_access_check = false;
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001728 } else {
1729 mirror::Class* compiling_class = GetCompilingClass();
1730 if (compiling_class != nullptr && compiling_class->CanAccess(klass.Get())) {
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001731 needs_access_check = false;
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001732 }
1733 }
1734 }
1735
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001736 return BuildLoadClass(type_index, dex_file, klass, dex_pc, needs_access_check);
1737}
1738
1739HLoadClass* HInstructionBuilder::BuildLoadClass(dex::TypeIndex type_index,
1740 const DexFile& dex_file,
1741 Handle<mirror::Class> klass,
1742 uint32_t dex_pc,
1743 bool needs_access_check) {
1744 // Try to find a reference in the compiling dex file.
1745 const DexFile* actual_dex_file = &dex_file;
1746 if (!IsSameDexFile(dex_file, *dex_compilation_unit_->GetDexFile())) {
1747 dex::TypeIndex local_type_index =
1748 klass->FindTypeIndexInOtherDexFile(*dex_compilation_unit_->GetDexFile());
1749 if (local_type_index.IsValid()) {
1750 type_index = local_type_index;
1751 actual_dex_file = dex_compilation_unit_->GetDexFile();
1752 }
1753 }
1754
1755 // Note: `klass` must be from `handles_`.
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001756 HLoadClass* load_class = new (arena_) HLoadClass(
1757 graph_->GetCurrentMethod(),
1758 type_index,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001759 *actual_dex_file,
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001760 klass,
Andreas Gampefa4333d2017-02-14 11:10:34 -08001761 klass != nullptr && (klass.Get() == GetOutermostCompilingClass()),
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001762 dex_pc,
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001763 needs_access_check);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001764
Nicolas Geoffrayc4aa82c2017-03-06 14:38:52 +00001765 HLoadClass::LoadKind load_kind = HSharpening::ComputeLoadClassKind(load_class,
1766 code_generator_,
1767 compiler_driver_,
1768 *dex_compilation_unit_);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001769
1770 if (load_kind == HLoadClass::LoadKind::kInvalid) {
1771 // We actually cannot reference this class, we're forced to bail.
1772 return nullptr;
1773 }
1774 // Append the instruction first, as setting the load kind affects the inputs.
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001775 AppendInstruction(load_class);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001776 load_class->SetLoadKind(load_kind);
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001777 return load_class;
1778}
1779
David Brazdildee58d62016-04-07 09:54:26 +00001780void HInstructionBuilder::BuildTypeCheck(const Instruction& instruction,
1781 uint8_t destination,
1782 uint8_t reference,
Andreas Gampea5b09a62016-11-17 15:21:22 -08001783 dex::TypeIndex type_index,
David Brazdildee58d62016-04-07 09:54:26 +00001784 uint32_t dex_pc) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001785 HInstruction* object = LoadLocal(reference, DataType::Type::kReference);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00001786 HLoadClass* cls = BuildLoadClass(type_index, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001787
Nicolas Geoffray5247c082017-01-13 14:17:29 +00001788 ScopedObjectAccess soa(Thread::Current());
1789 TypeCheckKind check_kind = ComputeTypeCheckKind(cls->GetClass());
David Brazdildee58d62016-04-07 09:54:26 +00001790 if (instruction.Opcode() == Instruction::INSTANCE_OF) {
1791 AppendInstruction(new (arena_) HInstanceOf(object, cls, check_kind, dex_pc));
1792 UpdateLocal(destination, current_block_->GetLastInstruction());
1793 } else {
1794 DCHECK_EQ(instruction.Opcode(), Instruction::CHECK_CAST);
1795 // We emit a CheckCast followed by a BoundType. CheckCast is a statement
1796 // which may throw. If it succeeds BoundType sets the new type of `object`
1797 // for all subsequent uses.
1798 AppendInstruction(new (arena_) HCheckCast(object, cls, check_kind, dex_pc));
1799 AppendInstruction(new (arena_) HBoundType(object, dex_pc));
1800 UpdateLocal(reference, current_block_->GetLastInstruction());
1801 }
1802}
1803
Vladimir Marko0b66d612017-03-13 14:50:04 +00001804bool HInstructionBuilder::NeedsAccessCheck(dex::TypeIndex type_index, bool* finalizable) const {
Vladimir Marko8d6768d2017-03-14 10:13:21 +00001805 return !compiler_driver_->CanAccessInstantiableTypeWithoutChecks(
1806 LookupReferrerClass(), LookupResolvedType(type_index, *dex_compilation_unit_), finalizable);
David Brazdildee58d62016-04-07 09:54:26 +00001807}
1808
1809bool HInstructionBuilder::CanDecodeQuickenedInfo() const {
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001810 return !quicken_info_.IsNull();
David Brazdildee58d62016-04-07 09:54:26 +00001811}
1812
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001813uint16_t HInstructionBuilder::LookupQuickenedInfo(uint32_t quicken_index) {
1814 DCHECK(CanDecodeQuickenedInfo());
1815 return quicken_info_.GetData(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001816}
1817
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001818bool HInstructionBuilder::ProcessDexInstruction(const Instruction& instruction,
1819 uint32_t dex_pc,
1820 size_t quicken_index) {
David Brazdildee58d62016-04-07 09:54:26 +00001821 switch (instruction.Opcode()) {
1822 case Instruction::CONST_4: {
1823 int32_t register_index = instruction.VRegA();
1824 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_11n(), dex_pc);
1825 UpdateLocal(register_index, constant);
1826 break;
1827 }
1828
1829 case Instruction::CONST_16: {
1830 int32_t register_index = instruction.VRegA();
1831 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_21s(), dex_pc);
1832 UpdateLocal(register_index, constant);
1833 break;
1834 }
1835
1836 case Instruction::CONST: {
1837 int32_t register_index = instruction.VRegA();
1838 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_31i(), dex_pc);
1839 UpdateLocal(register_index, constant);
1840 break;
1841 }
1842
1843 case Instruction::CONST_HIGH16: {
1844 int32_t register_index = instruction.VRegA();
1845 HIntConstant* constant = graph_->GetIntConstant(instruction.VRegB_21h() << 16, dex_pc);
1846 UpdateLocal(register_index, constant);
1847 break;
1848 }
1849
1850 case Instruction::CONST_WIDE_16: {
1851 int32_t register_index = instruction.VRegA();
1852 // Get 16 bits of constant value, sign extended to 64 bits.
1853 int64_t value = instruction.VRegB_21s();
1854 value <<= 48;
1855 value >>= 48;
1856 HLongConstant* constant = graph_->GetLongConstant(value, dex_pc);
1857 UpdateLocal(register_index, constant);
1858 break;
1859 }
1860
1861 case Instruction::CONST_WIDE_32: {
1862 int32_t register_index = instruction.VRegA();
1863 // Get 32 bits of constant value, sign extended to 64 bits.
1864 int64_t value = instruction.VRegB_31i();
1865 value <<= 32;
1866 value >>= 32;
1867 HLongConstant* constant = graph_->GetLongConstant(value, dex_pc);
1868 UpdateLocal(register_index, constant);
1869 break;
1870 }
1871
1872 case Instruction::CONST_WIDE: {
1873 int32_t register_index = instruction.VRegA();
1874 HLongConstant* constant = graph_->GetLongConstant(instruction.VRegB_51l(), dex_pc);
1875 UpdateLocal(register_index, constant);
1876 break;
1877 }
1878
1879 case Instruction::CONST_WIDE_HIGH16: {
1880 int32_t register_index = instruction.VRegA();
1881 int64_t value = static_cast<int64_t>(instruction.VRegB_21h()) << 48;
1882 HLongConstant* constant = graph_->GetLongConstant(value, dex_pc);
1883 UpdateLocal(register_index, constant);
1884 break;
1885 }
1886
1887 // Note that the SSA building will refine the types.
1888 case Instruction::MOVE:
1889 case Instruction::MOVE_FROM16:
1890 case Instruction::MOVE_16: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001891 HInstruction* value = LoadLocal(instruction.VRegB(), DataType::Type::kInt32);
David Brazdildee58d62016-04-07 09:54:26 +00001892 UpdateLocal(instruction.VRegA(), value);
1893 break;
1894 }
1895
1896 // Note that the SSA building will refine the types.
1897 case Instruction::MOVE_WIDE:
1898 case Instruction::MOVE_WIDE_FROM16:
1899 case Instruction::MOVE_WIDE_16: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001900 HInstruction* value = LoadLocal(instruction.VRegB(), DataType::Type::kInt64);
David Brazdildee58d62016-04-07 09:54:26 +00001901 UpdateLocal(instruction.VRegA(), value);
1902 break;
1903 }
1904
1905 case Instruction::MOVE_OBJECT:
1906 case Instruction::MOVE_OBJECT_16:
1907 case Instruction::MOVE_OBJECT_FROM16: {
Nicolas Geoffray50a9ed02016-09-23 15:40:41 +01001908 // The verifier has no notion of a null type, so a move-object of constant 0
1909 // will lead to the same constant 0 in the destination register. To mimic
1910 // this behavior, we just pretend we haven't seen a type change (int to reference)
1911 // for the 0 constant and phis. We rely on our type propagation to eventually get the
1912 // types correct.
1913 uint32_t reg_number = instruction.VRegB();
1914 HInstruction* value = (*current_locals_)[reg_number];
1915 if (value->IsIntConstant()) {
1916 DCHECK_EQ(value->AsIntConstant()->GetValue(), 0);
1917 } else if (value->IsPhi()) {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001918 DCHECK(value->GetType() == DataType::Type::kInt32 ||
1919 value->GetType() == DataType::Type::kReference);
Nicolas Geoffray50a9ed02016-09-23 15:40:41 +01001920 } else {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001921 value = LoadLocal(reg_number, DataType::Type::kReference);
Nicolas Geoffray50a9ed02016-09-23 15:40:41 +01001922 }
David Brazdildee58d62016-04-07 09:54:26 +00001923 UpdateLocal(instruction.VRegA(), value);
1924 break;
1925 }
1926
1927 case Instruction::RETURN_VOID_NO_BARRIER:
1928 case Instruction::RETURN_VOID: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01001929 BuildReturn(instruction, DataType::Type::kVoid, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00001930 break;
1931 }
1932
1933#define IF_XX(comparison, cond) \
1934 case Instruction::IF_##cond: If_22t<comparison>(instruction, dex_pc); break; \
1935 case Instruction::IF_##cond##Z: If_21t<comparison>(instruction, dex_pc); break
1936
1937 IF_XX(HEqual, EQ);
1938 IF_XX(HNotEqual, NE);
1939 IF_XX(HLessThan, LT);
1940 IF_XX(HLessThanOrEqual, LE);
1941 IF_XX(HGreaterThan, GT);
1942 IF_XX(HGreaterThanOrEqual, GE);
1943
1944 case Instruction::GOTO:
1945 case Instruction::GOTO_16:
1946 case Instruction::GOTO_32: {
1947 AppendInstruction(new (arena_) HGoto(dex_pc));
1948 current_block_ = nullptr;
1949 break;
1950 }
1951
1952 case Instruction::RETURN: {
1953 BuildReturn(instruction, return_type_, dex_pc);
1954 break;
1955 }
1956
1957 case Instruction::RETURN_OBJECT: {
1958 BuildReturn(instruction, return_type_, dex_pc);
1959 break;
1960 }
1961
1962 case Instruction::RETURN_WIDE: {
1963 BuildReturn(instruction, return_type_, dex_pc);
1964 break;
1965 }
1966
1967 case Instruction::INVOKE_DIRECT:
1968 case Instruction::INVOKE_INTERFACE:
1969 case Instruction::INVOKE_STATIC:
1970 case Instruction::INVOKE_SUPER:
1971 case Instruction::INVOKE_VIRTUAL:
1972 case Instruction::INVOKE_VIRTUAL_QUICK: {
1973 uint16_t method_idx;
1974 if (instruction.Opcode() == Instruction::INVOKE_VIRTUAL_QUICK) {
1975 if (!CanDecodeQuickenedInfo()) {
1976 return false;
1977 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07001978 method_idx = LookupQuickenedInfo(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00001979 } else {
1980 method_idx = instruction.VRegB_35c();
1981 }
1982 uint32_t number_of_vreg_arguments = instruction.VRegA_35c();
1983 uint32_t args[5];
1984 instruction.GetVarArgs(args);
1985 if (!BuildInvoke(instruction, dex_pc, method_idx,
1986 number_of_vreg_arguments, false, args, -1)) {
1987 return false;
1988 }
1989 break;
1990 }
1991
1992 case Instruction::INVOKE_DIRECT_RANGE:
1993 case Instruction::INVOKE_INTERFACE_RANGE:
1994 case Instruction::INVOKE_STATIC_RANGE:
1995 case Instruction::INVOKE_SUPER_RANGE:
1996 case Instruction::INVOKE_VIRTUAL_RANGE:
1997 case Instruction::INVOKE_VIRTUAL_RANGE_QUICK: {
1998 uint16_t method_idx;
1999 if (instruction.Opcode() == Instruction::INVOKE_VIRTUAL_RANGE_QUICK) {
2000 if (!CanDecodeQuickenedInfo()) {
2001 return false;
2002 }
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07002003 method_idx = LookupQuickenedInfo(quicken_index);
David Brazdildee58d62016-04-07 09:54:26 +00002004 } else {
2005 method_idx = instruction.VRegB_3rc();
2006 }
2007 uint32_t number_of_vreg_arguments = instruction.VRegA_3rc();
2008 uint32_t register_index = instruction.VRegC();
2009 if (!BuildInvoke(instruction, dex_pc, method_idx,
2010 number_of_vreg_arguments, true, nullptr, register_index)) {
2011 return false;
2012 }
2013 break;
2014 }
2015
Orion Hodsonac141392017-01-13 11:53:47 +00002016 case Instruction::INVOKE_POLYMORPHIC: {
2017 uint16_t method_idx = instruction.VRegB_45cc();
2018 uint16_t proto_idx = instruction.VRegH_45cc();
2019 uint32_t number_of_vreg_arguments = instruction.VRegA_45cc();
2020 uint32_t args[5];
2021 instruction.GetVarArgs(args);
2022 return BuildInvokePolymorphic(instruction,
2023 dex_pc,
2024 method_idx,
2025 proto_idx,
2026 number_of_vreg_arguments,
2027 false,
2028 args,
2029 -1);
2030 }
2031
2032 case Instruction::INVOKE_POLYMORPHIC_RANGE: {
2033 uint16_t method_idx = instruction.VRegB_4rcc();
2034 uint16_t proto_idx = instruction.VRegH_4rcc();
2035 uint32_t number_of_vreg_arguments = instruction.VRegA_4rcc();
2036 uint32_t register_index = instruction.VRegC_4rcc();
2037 return BuildInvokePolymorphic(instruction,
2038 dex_pc,
2039 method_idx,
2040 proto_idx,
2041 number_of_vreg_arguments,
2042 true,
2043 nullptr,
2044 register_index);
2045 }
2046
David Brazdildee58d62016-04-07 09:54:26 +00002047 case Instruction::NEG_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002048 Unop_12x<HNeg>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002049 break;
2050 }
2051
2052 case Instruction::NEG_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002053 Unop_12x<HNeg>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002054 break;
2055 }
2056
2057 case Instruction::NEG_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002058 Unop_12x<HNeg>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002059 break;
2060 }
2061
2062 case Instruction::NEG_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002063 Unop_12x<HNeg>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002064 break;
2065 }
2066
2067 case Instruction::NOT_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002068 Unop_12x<HNot>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002069 break;
2070 }
2071
2072 case Instruction::NOT_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002073 Unop_12x<HNot>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002074 break;
2075 }
2076
2077 case Instruction::INT_TO_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002078 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002079 break;
2080 }
2081
2082 case Instruction::INT_TO_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002083 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002084 break;
2085 }
2086
2087 case Instruction::INT_TO_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002088 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002089 break;
2090 }
2091
2092 case Instruction::LONG_TO_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002093 Conversion_12x(instruction, DataType::Type::kInt64, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002094 break;
2095 }
2096
2097 case Instruction::LONG_TO_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002098 Conversion_12x(instruction, DataType::Type::kInt64, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002099 break;
2100 }
2101
2102 case Instruction::LONG_TO_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002103 Conversion_12x(instruction, DataType::Type::kInt64, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002104 break;
2105 }
2106
2107 case Instruction::FLOAT_TO_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002108 Conversion_12x(instruction, DataType::Type::kFloat32, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002109 break;
2110 }
2111
2112 case Instruction::FLOAT_TO_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002113 Conversion_12x(instruction, DataType::Type::kFloat32, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002114 break;
2115 }
2116
2117 case Instruction::FLOAT_TO_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002118 Conversion_12x(instruction, DataType::Type::kFloat32, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002119 break;
2120 }
2121
2122 case Instruction::DOUBLE_TO_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002123 Conversion_12x(instruction, DataType::Type::kFloat64, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002124 break;
2125 }
2126
2127 case Instruction::DOUBLE_TO_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002128 Conversion_12x(instruction, DataType::Type::kFloat64, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002129 break;
2130 }
2131
2132 case Instruction::DOUBLE_TO_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002133 Conversion_12x(instruction, DataType::Type::kFloat64, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002134 break;
2135 }
2136
2137 case Instruction::INT_TO_BYTE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002138 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kInt8, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002139 break;
2140 }
2141
2142 case Instruction::INT_TO_SHORT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002143 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kInt16, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002144 break;
2145 }
2146
2147 case Instruction::INT_TO_CHAR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002148 Conversion_12x(instruction, DataType::Type::kInt32, DataType::Type::kUint16, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002149 break;
2150 }
2151
2152 case Instruction::ADD_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002153 Binop_23x<HAdd>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002154 break;
2155 }
2156
2157 case Instruction::ADD_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002158 Binop_23x<HAdd>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002159 break;
2160 }
2161
2162 case Instruction::ADD_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002163 Binop_23x<HAdd>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002164 break;
2165 }
2166
2167 case Instruction::ADD_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002168 Binop_23x<HAdd>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002169 break;
2170 }
2171
2172 case Instruction::SUB_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002173 Binop_23x<HSub>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002174 break;
2175 }
2176
2177 case Instruction::SUB_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002178 Binop_23x<HSub>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002179 break;
2180 }
2181
2182 case Instruction::SUB_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002183 Binop_23x<HSub>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002184 break;
2185 }
2186
2187 case Instruction::SUB_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002188 Binop_23x<HSub>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002189 break;
2190 }
2191
2192 case Instruction::ADD_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002193 Binop_12x<HAdd>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002194 break;
2195 }
2196
2197 case Instruction::MUL_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002198 Binop_23x<HMul>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002199 break;
2200 }
2201
2202 case Instruction::MUL_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002203 Binop_23x<HMul>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002204 break;
2205 }
2206
2207 case Instruction::MUL_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002208 Binop_23x<HMul>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002209 break;
2210 }
2211
2212 case Instruction::MUL_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002213 Binop_23x<HMul>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002214 break;
2215 }
2216
2217 case Instruction::DIV_INT: {
2218 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002219 dex_pc, DataType::Type::kInt32, false, true);
David Brazdildee58d62016-04-07 09:54:26 +00002220 break;
2221 }
2222
2223 case Instruction::DIV_LONG: {
2224 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002225 dex_pc, DataType::Type::kInt64, false, true);
David Brazdildee58d62016-04-07 09:54:26 +00002226 break;
2227 }
2228
2229 case Instruction::DIV_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002230 Binop_23x<HDiv>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002231 break;
2232 }
2233
2234 case Instruction::DIV_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002235 Binop_23x<HDiv>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002236 break;
2237 }
2238
2239 case Instruction::REM_INT: {
2240 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002241 dex_pc, DataType::Type::kInt32, false, false);
David Brazdildee58d62016-04-07 09:54:26 +00002242 break;
2243 }
2244
2245 case Instruction::REM_LONG: {
2246 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002247 dex_pc, DataType::Type::kInt64, false, false);
David Brazdildee58d62016-04-07 09:54:26 +00002248 break;
2249 }
2250
2251 case Instruction::REM_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002252 Binop_23x<HRem>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002253 break;
2254 }
2255
2256 case Instruction::REM_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002257 Binop_23x<HRem>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002258 break;
2259 }
2260
2261 case Instruction::AND_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002262 Binop_23x<HAnd>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002263 break;
2264 }
2265
2266 case Instruction::AND_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002267 Binop_23x<HAnd>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002268 break;
2269 }
2270
2271 case Instruction::SHL_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002272 Binop_23x_shift<HShl>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002273 break;
2274 }
2275
2276 case Instruction::SHL_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002277 Binop_23x_shift<HShl>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002278 break;
2279 }
2280
2281 case Instruction::SHR_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002282 Binop_23x_shift<HShr>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002283 break;
2284 }
2285
2286 case Instruction::SHR_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002287 Binop_23x_shift<HShr>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002288 break;
2289 }
2290
2291 case Instruction::USHR_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002292 Binop_23x_shift<HUShr>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002293 break;
2294 }
2295
2296 case Instruction::USHR_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002297 Binop_23x_shift<HUShr>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002298 break;
2299 }
2300
2301 case Instruction::OR_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002302 Binop_23x<HOr>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002303 break;
2304 }
2305
2306 case Instruction::OR_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002307 Binop_23x<HOr>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002308 break;
2309 }
2310
2311 case Instruction::XOR_INT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002312 Binop_23x<HXor>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002313 break;
2314 }
2315
2316 case Instruction::XOR_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002317 Binop_23x<HXor>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002318 break;
2319 }
2320
2321 case Instruction::ADD_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002322 Binop_12x<HAdd>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002323 break;
2324 }
2325
2326 case Instruction::ADD_DOUBLE_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002327 Binop_12x<HAdd>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002328 break;
2329 }
2330
2331 case Instruction::ADD_FLOAT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002332 Binop_12x<HAdd>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002333 break;
2334 }
2335
2336 case Instruction::SUB_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002337 Binop_12x<HSub>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002338 break;
2339 }
2340
2341 case Instruction::SUB_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002342 Binop_12x<HSub>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002343 break;
2344 }
2345
2346 case Instruction::SUB_FLOAT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002347 Binop_12x<HSub>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002348 break;
2349 }
2350
2351 case Instruction::SUB_DOUBLE_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002352 Binop_12x<HSub>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002353 break;
2354 }
2355
2356 case Instruction::MUL_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002357 Binop_12x<HMul>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002358 break;
2359 }
2360
2361 case Instruction::MUL_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002362 Binop_12x<HMul>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002363 break;
2364 }
2365
2366 case Instruction::MUL_FLOAT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002367 Binop_12x<HMul>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002368 break;
2369 }
2370
2371 case Instruction::MUL_DOUBLE_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002372 Binop_12x<HMul>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002373 break;
2374 }
2375
2376 case Instruction::DIV_INT_2ADDR: {
2377 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002378 dex_pc, DataType::Type::kInt32, false, true);
David Brazdildee58d62016-04-07 09:54:26 +00002379 break;
2380 }
2381
2382 case Instruction::DIV_LONG_2ADDR: {
2383 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002384 dex_pc, DataType::Type::kInt64, false, true);
David Brazdildee58d62016-04-07 09:54:26 +00002385 break;
2386 }
2387
2388 case Instruction::REM_INT_2ADDR: {
2389 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002390 dex_pc, DataType::Type::kInt32, false, false);
David Brazdildee58d62016-04-07 09:54:26 +00002391 break;
2392 }
2393
2394 case Instruction::REM_LONG_2ADDR: {
2395 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegA(), instruction.VRegB(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002396 dex_pc, DataType::Type::kInt64, false, false);
David Brazdildee58d62016-04-07 09:54:26 +00002397 break;
2398 }
2399
2400 case Instruction::REM_FLOAT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002401 Binop_12x<HRem>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002402 break;
2403 }
2404
2405 case Instruction::REM_DOUBLE_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002406 Binop_12x<HRem>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002407 break;
2408 }
2409
2410 case Instruction::SHL_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002411 Binop_12x_shift<HShl>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002412 break;
2413 }
2414
2415 case Instruction::SHL_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002416 Binop_12x_shift<HShl>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002417 break;
2418 }
2419
2420 case Instruction::SHR_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002421 Binop_12x_shift<HShr>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002422 break;
2423 }
2424
2425 case Instruction::SHR_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002426 Binop_12x_shift<HShr>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002427 break;
2428 }
2429
2430 case Instruction::USHR_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002431 Binop_12x_shift<HUShr>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002432 break;
2433 }
2434
2435 case Instruction::USHR_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002436 Binop_12x_shift<HUShr>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002437 break;
2438 }
2439
2440 case Instruction::DIV_FLOAT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002441 Binop_12x<HDiv>(instruction, DataType::Type::kFloat32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002442 break;
2443 }
2444
2445 case Instruction::DIV_DOUBLE_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002446 Binop_12x<HDiv>(instruction, DataType::Type::kFloat64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002447 break;
2448 }
2449
2450 case Instruction::AND_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002451 Binop_12x<HAnd>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002452 break;
2453 }
2454
2455 case Instruction::AND_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002456 Binop_12x<HAnd>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002457 break;
2458 }
2459
2460 case Instruction::OR_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002461 Binop_12x<HOr>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002462 break;
2463 }
2464
2465 case Instruction::OR_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002466 Binop_12x<HOr>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002467 break;
2468 }
2469
2470 case Instruction::XOR_INT_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002471 Binop_12x<HXor>(instruction, DataType::Type::kInt32, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002472 break;
2473 }
2474
2475 case Instruction::XOR_LONG_2ADDR: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002476 Binop_12x<HXor>(instruction, DataType::Type::kInt64, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002477 break;
2478 }
2479
2480 case Instruction::ADD_INT_LIT16: {
2481 Binop_22s<HAdd>(instruction, false, dex_pc);
2482 break;
2483 }
2484
2485 case Instruction::AND_INT_LIT16: {
2486 Binop_22s<HAnd>(instruction, false, dex_pc);
2487 break;
2488 }
2489
2490 case Instruction::OR_INT_LIT16: {
2491 Binop_22s<HOr>(instruction, false, dex_pc);
2492 break;
2493 }
2494
2495 case Instruction::XOR_INT_LIT16: {
2496 Binop_22s<HXor>(instruction, false, dex_pc);
2497 break;
2498 }
2499
2500 case Instruction::RSUB_INT: {
2501 Binop_22s<HSub>(instruction, true, dex_pc);
2502 break;
2503 }
2504
2505 case Instruction::MUL_INT_LIT16: {
2506 Binop_22s<HMul>(instruction, false, dex_pc);
2507 break;
2508 }
2509
2510 case Instruction::ADD_INT_LIT8: {
2511 Binop_22b<HAdd>(instruction, false, dex_pc);
2512 break;
2513 }
2514
2515 case Instruction::AND_INT_LIT8: {
2516 Binop_22b<HAnd>(instruction, false, dex_pc);
2517 break;
2518 }
2519
2520 case Instruction::OR_INT_LIT8: {
2521 Binop_22b<HOr>(instruction, false, dex_pc);
2522 break;
2523 }
2524
2525 case Instruction::XOR_INT_LIT8: {
2526 Binop_22b<HXor>(instruction, false, dex_pc);
2527 break;
2528 }
2529
2530 case Instruction::RSUB_INT_LIT8: {
2531 Binop_22b<HSub>(instruction, true, dex_pc);
2532 break;
2533 }
2534
2535 case Instruction::MUL_INT_LIT8: {
2536 Binop_22b<HMul>(instruction, false, dex_pc);
2537 break;
2538 }
2539
2540 case Instruction::DIV_INT_LIT16:
2541 case Instruction::DIV_INT_LIT8: {
2542 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002543 dex_pc, DataType::Type::kInt32, true, true);
David Brazdildee58d62016-04-07 09:54:26 +00002544 break;
2545 }
2546
2547 case Instruction::REM_INT_LIT16:
2548 case Instruction::REM_INT_LIT8: {
2549 BuildCheckedDivRem(instruction.VRegA(), instruction.VRegB(), instruction.VRegC(),
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002550 dex_pc, DataType::Type::kInt32, true, false);
David Brazdildee58d62016-04-07 09:54:26 +00002551 break;
2552 }
2553
2554 case Instruction::SHL_INT_LIT8: {
2555 Binop_22b<HShl>(instruction, false, dex_pc);
2556 break;
2557 }
2558
2559 case Instruction::SHR_INT_LIT8: {
2560 Binop_22b<HShr>(instruction, false, dex_pc);
2561 break;
2562 }
2563
2564 case Instruction::USHR_INT_LIT8: {
2565 Binop_22b<HUShr>(instruction, false, dex_pc);
2566 break;
2567 }
2568
2569 case Instruction::NEW_INSTANCE: {
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002570 HNewInstance* new_instance =
2571 BuildNewInstance(dex::TypeIndex(instruction.VRegB_21c()), dex_pc);
2572 DCHECK(new_instance != nullptr);
2573
David Brazdildee58d62016-04-07 09:54:26 +00002574 UpdateLocal(instruction.VRegA(), current_block_->GetLastInstruction());
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002575 BuildConstructorFenceForAllocation(new_instance);
David Brazdildee58d62016-04-07 09:54:26 +00002576 break;
2577 }
2578
2579 case Instruction::NEW_ARRAY: {
Andreas Gampea5b09a62016-11-17 15:21:22 -08002580 dex::TypeIndex type_index(instruction.VRegC_22c());
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002581 HInstruction* length = LoadLocal(instruction.VRegB_22c(), DataType::Type::kInt32);
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002582 HLoadClass* cls = BuildLoadClass(type_index, dex_pc);
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002583
2584 HNewArray* new_array = new (arena_) HNewArray(cls, length, dex_pc);
2585 AppendInstruction(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002586 UpdateLocal(instruction.VRegA_22c(), current_block_->GetLastInstruction());
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002587 BuildConstructorFenceForAllocation(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002588 break;
2589 }
2590
2591 case Instruction::FILLED_NEW_ARRAY: {
2592 uint32_t number_of_vreg_arguments = instruction.VRegA_35c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002593 dex::TypeIndex type_index(instruction.VRegB_35c());
David Brazdildee58d62016-04-07 09:54:26 +00002594 uint32_t args[5];
2595 instruction.GetVarArgs(args);
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002596 HNewArray* new_array = BuildFilledNewArray(dex_pc,
2597 type_index,
2598 number_of_vreg_arguments,
2599 /* is_range */ false,
2600 args,
2601 /* register_index */ 0);
2602 BuildConstructorFenceForAllocation(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002603 break;
2604 }
2605
2606 case Instruction::FILLED_NEW_ARRAY_RANGE: {
2607 uint32_t number_of_vreg_arguments = instruction.VRegA_3rc();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002608 dex::TypeIndex type_index(instruction.VRegB_3rc());
David Brazdildee58d62016-04-07 09:54:26 +00002609 uint32_t register_index = instruction.VRegC_3rc();
Igor Murashkin79d8fa72017-04-18 09:37:23 -07002610 HNewArray* new_array = BuildFilledNewArray(dex_pc,
2611 type_index,
2612 number_of_vreg_arguments,
2613 /* is_range */ true,
2614 /* args*/ nullptr,
2615 register_index);
2616 BuildConstructorFenceForAllocation(new_array);
David Brazdildee58d62016-04-07 09:54:26 +00002617 break;
2618 }
2619
2620 case Instruction::FILL_ARRAY_DATA: {
2621 BuildFillArrayData(instruction, dex_pc);
2622 break;
2623 }
2624
2625 case Instruction::MOVE_RESULT:
2626 case Instruction::MOVE_RESULT_WIDE:
2627 case Instruction::MOVE_RESULT_OBJECT: {
2628 DCHECK(latest_result_ != nullptr);
2629 UpdateLocal(instruction.VRegA(), latest_result_);
2630 latest_result_ = nullptr;
2631 break;
2632 }
2633
2634 case Instruction::CMP_LONG: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002635 Binop_23x_cmp(instruction, DataType::Type::kInt64, ComparisonBias::kNoBias, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002636 break;
2637 }
2638
2639 case Instruction::CMPG_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002640 Binop_23x_cmp(instruction, DataType::Type::kFloat32, ComparisonBias::kGtBias, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002641 break;
2642 }
2643
2644 case Instruction::CMPG_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002645 Binop_23x_cmp(instruction, DataType::Type::kFloat64, ComparisonBias::kGtBias, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002646 break;
2647 }
2648
2649 case Instruction::CMPL_FLOAT: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002650 Binop_23x_cmp(instruction, DataType::Type::kFloat32, ComparisonBias::kLtBias, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002651 break;
2652 }
2653
2654 case Instruction::CMPL_DOUBLE: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002655 Binop_23x_cmp(instruction, DataType::Type::kFloat64, ComparisonBias::kLtBias, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002656 break;
2657 }
2658
2659 case Instruction::NOP:
2660 break;
2661
2662 case Instruction::IGET:
2663 case Instruction::IGET_QUICK:
2664 case Instruction::IGET_WIDE:
2665 case Instruction::IGET_WIDE_QUICK:
2666 case Instruction::IGET_OBJECT:
2667 case Instruction::IGET_OBJECT_QUICK:
2668 case Instruction::IGET_BOOLEAN:
2669 case Instruction::IGET_BOOLEAN_QUICK:
2670 case Instruction::IGET_BYTE:
2671 case Instruction::IGET_BYTE_QUICK:
2672 case Instruction::IGET_CHAR:
2673 case Instruction::IGET_CHAR_QUICK:
2674 case Instruction::IGET_SHORT:
2675 case Instruction::IGET_SHORT_QUICK: {
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07002676 if (!BuildInstanceFieldAccess(instruction, dex_pc, false, quicken_index)) {
David Brazdildee58d62016-04-07 09:54:26 +00002677 return false;
2678 }
2679 break;
2680 }
2681
2682 case Instruction::IPUT:
2683 case Instruction::IPUT_QUICK:
2684 case Instruction::IPUT_WIDE:
2685 case Instruction::IPUT_WIDE_QUICK:
2686 case Instruction::IPUT_OBJECT:
2687 case Instruction::IPUT_OBJECT_QUICK:
2688 case Instruction::IPUT_BOOLEAN:
2689 case Instruction::IPUT_BOOLEAN_QUICK:
2690 case Instruction::IPUT_BYTE:
2691 case Instruction::IPUT_BYTE_QUICK:
2692 case Instruction::IPUT_CHAR:
2693 case Instruction::IPUT_CHAR_QUICK:
2694 case Instruction::IPUT_SHORT:
2695 case Instruction::IPUT_SHORT_QUICK: {
Mathieu Chartierde4b08f2017-07-10 14:13:41 -07002696 if (!BuildInstanceFieldAccess(instruction, dex_pc, true, quicken_index)) {
David Brazdildee58d62016-04-07 09:54:26 +00002697 return false;
2698 }
2699 break;
2700 }
2701
2702 case Instruction::SGET:
2703 case Instruction::SGET_WIDE:
2704 case Instruction::SGET_OBJECT:
2705 case Instruction::SGET_BOOLEAN:
2706 case Instruction::SGET_BYTE:
2707 case Instruction::SGET_CHAR:
2708 case Instruction::SGET_SHORT: {
2709 if (!BuildStaticFieldAccess(instruction, dex_pc, false)) {
2710 return false;
2711 }
2712 break;
2713 }
2714
2715 case Instruction::SPUT:
2716 case Instruction::SPUT_WIDE:
2717 case Instruction::SPUT_OBJECT:
2718 case Instruction::SPUT_BOOLEAN:
2719 case Instruction::SPUT_BYTE:
2720 case Instruction::SPUT_CHAR:
2721 case Instruction::SPUT_SHORT: {
2722 if (!BuildStaticFieldAccess(instruction, dex_pc, true)) {
2723 return false;
2724 }
2725 break;
2726 }
2727
2728#define ARRAY_XX(kind, anticipated_type) \
2729 case Instruction::AGET##kind: { \
2730 BuildArrayAccess(instruction, dex_pc, false, anticipated_type); \
2731 break; \
2732 } \
2733 case Instruction::APUT##kind: { \
2734 BuildArrayAccess(instruction, dex_pc, true, anticipated_type); \
2735 break; \
2736 }
2737
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002738 ARRAY_XX(, DataType::Type::kInt32);
2739 ARRAY_XX(_WIDE, DataType::Type::kInt64);
2740 ARRAY_XX(_OBJECT, DataType::Type::kReference);
2741 ARRAY_XX(_BOOLEAN, DataType::Type::kBool);
2742 ARRAY_XX(_BYTE, DataType::Type::kInt8);
2743 ARRAY_XX(_CHAR, DataType::Type::kUint16);
2744 ARRAY_XX(_SHORT, DataType::Type::kInt16);
David Brazdildee58d62016-04-07 09:54:26 +00002745
2746 case Instruction::ARRAY_LENGTH: {
David Brazdilc120bbe2016-04-22 16:57:00 +01002747 HInstruction* object = LoadNullCheckedLocal(instruction.VRegB_12x(), dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002748 AppendInstruction(new (arena_) HArrayLength(object, dex_pc));
2749 UpdateLocal(instruction.VRegA_12x(), current_block_->GetLastInstruction());
2750 break;
2751 }
2752
2753 case Instruction::CONST_STRING: {
Andreas Gampe8a0128a2016-11-28 07:38:35 -08002754 dex::StringIndex string_index(instruction.VRegB_21c());
David Brazdildee58d62016-04-07 09:54:26 +00002755 AppendInstruction(
2756 new (arena_) HLoadString(graph_->GetCurrentMethod(), string_index, *dex_file_, dex_pc));
2757 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction());
2758 break;
2759 }
2760
2761 case Instruction::CONST_STRING_JUMBO: {
Andreas Gampe8a0128a2016-11-28 07:38:35 -08002762 dex::StringIndex string_index(instruction.VRegB_31c());
David Brazdildee58d62016-04-07 09:54:26 +00002763 AppendInstruction(
2764 new (arena_) HLoadString(graph_->GetCurrentMethod(), string_index, *dex_file_, dex_pc));
2765 UpdateLocal(instruction.VRegA_31c(), current_block_->GetLastInstruction());
2766 break;
2767 }
2768
2769 case Instruction::CONST_CLASS: {
Andreas Gampea5b09a62016-11-17 15:21:22 -08002770 dex::TypeIndex type_index(instruction.VRegB_21c());
Nicolas Geoffray83c8e272017-01-31 14:36:37 +00002771 BuildLoadClass(type_index, dex_pc);
David Brazdildee58d62016-04-07 09:54:26 +00002772 UpdateLocal(instruction.VRegA_21c(), current_block_->GetLastInstruction());
2773 break;
2774 }
2775
2776 case Instruction::MOVE_EXCEPTION: {
2777 AppendInstruction(new (arena_) HLoadException(dex_pc));
2778 UpdateLocal(instruction.VRegA_11x(), current_block_->GetLastInstruction());
2779 AppendInstruction(new (arena_) HClearException(dex_pc));
2780 break;
2781 }
2782
2783 case Instruction::THROW: {
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002784 HInstruction* exception = LoadLocal(instruction.VRegA_11x(), DataType::Type::kReference);
David Brazdildee58d62016-04-07 09:54:26 +00002785 AppendInstruction(new (arena_) HThrow(exception, dex_pc));
2786 // We finished building this block. Set the current block to null to avoid
2787 // adding dead instructions to it.
2788 current_block_ = nullptr;
2789 break;
2790 }
2791
2792 case Instruction::INSTANCE_OF: {
2793 uint8_t destination = instruction.VRegA_22c();
2794 uint8_t reference = instruction.VRegB_22c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002795 dex::TypeIndex type_index(instruction.VRegC_22c());
David Brazdildee58d62016-04-07 09:54:26 +00002796 BuildTypeCheck(instruction, destination, reference, type_index, dex_pc);
2797 break;
2798 }
2799
2800 case Instruction::CHECK_CAST: {
2801 uint8_t reference = instruction.VRegA_21c();
Andreas Gampea5b09a62016-11-17 15:21:22 -08002802 dex::TypeIndex type_index(instruction.VRegB_21c());
David Brazdildee58d62016-04-07 09:54:26 +00002803 BuildTypeCheck(instruction, -1, reference, type_index, dex_pc);
2804 break;
2805 }
2806
2807 case Instruction::MONITOR_ENTER: {
2808 AppendInstruction(new (arena_) HMonitorOperation(
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002809 LoadLocal(instruction.VRegA_11x(), DataType::Type::kReference),
David Brazdildee58d62016-04-07 09:54:26 +00002810 HMonitorOperation::OperationKind::kEnter,
2811 dex_pc));
2812 break;
2813 }
2814
2815 case Instruction::MONITOR_EXIT: {
2816 AppendInstruction(new (arena_) HMonitorOperation(
Vladimir Marko0ebe0d82017-09-21 22:50:39 +01002817 LoadLocal(instruction.VRegA_11x(), DataType::Type::kReference),
David Brazdildee58d62016-04-07 09:54:26 +00002818 HMonitorOperation::OperationKind::kExit,
2819 dex_pc));
2820 break;
2821 }
2822
2823 case Instruction::SPARSE_SWITCH:
2824 case Instruction::PACKED_SWITCH: {
2825 BuildSwitch(instruction, dex_pc);
2826 break;
2827 }
2828
2829 default:
2830 VLOG(compiler) << "Did not compile "
David Sehr709b0702016-10-13 09:12:37 -07002831 << dex_file_->PrettyMethod(dex_compilation_unit_->GetDexMethodIndex())
David Brazdildee58d62016-04-07 09:54:26 +00002832 << " because of unhandled instruction "
2833 << instruction.Name();
Igor Murashkin1e065a52017-08-09 13:20:34 -07002834 MaybeRecordStat(compilation_stats_,
2835 MethodCompilationStat::kNotCompiledUnhandledInstruction);
David Brazdildee58d62016-04-07 09:54:26 +00002836 return false;
2837 }
2838 return true;
2839} // NOLINT(readability/fn_size)
2840
Vladimir Marko8d6768d2017-03-14 10:13:21 +00002841ObjPtr<mirror::Class> HInstructionBuilder::LookupResolvedType(
2842 dex::TypeIndex type_index,
2843 const DexCompilationUnit& compilation_unit) const {
2844 return ClassLinker::LookupResolvedType(
2845 type_index, compilation_unit.GetDexCache().Get(), compilation_unit.GetClassLoader().Get());
2846}
2847
2848ObjPtr<mirror::Class> HInstructionBuilder::LookupReferrerClass() const {
2849 // TODO: Cache the result in a Handle<mirror::Class>.
2850 const DexFile::MethodId& method_id =
2851 dex_compilation_unit_->GetDexFile()->GetMethodId(dex_compilation_unit_->GetDexMethodIndex());
2852 return LookupResolvedType(method_id.class_idx_, *dex_compilation_unit_);
2853}
2854
David Brazdildee58d62016-04-07 09:54:26 +00002855} // namespace art