blob: 268f445a9d387bf59d329c783602389787814b6e [file] [log] [blame]
Brian Carlstrom7940e442013-07-12 13:46:57 -07001/*
2 * Copyright (C) 2012 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 */
Brian Carlstrom7940e442013-07-12 13:46:57 -070016#include "dex/compiler_ir.h"
17#include "dex/compiler_internals.h"
Brian Carlstrom60d7a652014-03-13 18:10:08 -070018#include "dex/quick/arm/arm_lir.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070019#include "dex/quick/mir_to_lir-inl.h"
Ian Rogers166db042013-07-26 12:05:57 -070020#include "entrypoints/quick/quick_entrypoints.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070021#include "mirror/array.h"
Andreas Gampe9c3b0892014-04-24 17:33:34 +000022#include "mirror/object_array-inl.h"
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -080023#include "mirror/object-inl.h"
Andreas Gampeaa910d52014-07-30 18:59:05 -070024#include "mirror/object_reference.h"
Brian Carlstrom7940e442013-07-12 13:46:57 -070025#include "verifier/method_verifier.h"
Dave Allisonbcec6fb2014-01-17 12:52:22 -080026#include <functional>
Brian Carlstrom7940e442013-07-12 13:46:57 -070027
28namespace art {
29
Andreas Gampe9c3b0892014-04-24 17:33:34 +000030// Shortcuts to repeatedly used long types.
31typedef mirror::ObjectArray<mirror::Object> ObjArray;
32typedef mirror::ObjectArray<mirror::Class> ClassArray;
33
Brian Carlstrom7940e442013-07-12 13:46:57 -070034/*
35 * This source files contains "gen" codegen routines that should
36 * be applicable to most targets. Only mid-level support utilities
37 * and "op" calls may be used here.
38 */
39
40/*
buzbeeb48819d2013-09-14 16:15:25 -070041 * Generate a kPseudoBarrier marker to indicate the boundary of special
Brian Carlstrom7940e442013-07-12 13:46:57 -070042 * blocks.
43 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -070044void Mir2Lir::GenBarrier() {
Brian Carlstrom7940e442013-07-12 13:46:57 -070045 LIR* barrier = NewLIR0(kPseudoBarrier);
46 /* Mark all resources as being clobbered */
buzbeeb48819d2013-09-14 16:15:25 -070047 DCHECK(!barrier->flags.use_def_invalid);
Vladimir Marko8dea81c2014-06-06 14:50:36 +010048 barrier->u.m.def_mask = &kEncodeAll;
Brian Carlstrom7940e442013-07-12 13:46:57 -070049}
50
Mingyao Yange643a172014-04-08 11:02:52 -070051void Mir2Lir::GenDivZeroException() {
52 LIR* branch = OpUnconditionalBranch(nullptr);
53 AddDivZeroCheckSlowPath(branch);
54}
55
56void Mir2Lir::GenDivZeroCheck(ConditionCode c_code) {
Mingyao Yang42894562014-04-07 12:42:16 -070057 LIR* branch = OpCondBranch(c_code, nullptr);
58 AddDivZeroCheckSlowPath(branch);
59}
60
Mingyao Yange643a172014-04-08 11:02:52 -070061void Mir2Lir::GenDivZeroCheck(RegStorage reg) {
62 LIR* branch = OpCmpImmBranch(kCondEq, reg, 0, nullptr);
Mingyao Yang42894562014-04-07 12:42:16 -070063 AddDivZeroCheckSlowPath(branch);
64}
65
66void Mir2Lir::AddDivZeroCheckSlowPath(LIR* branch) {
67 class DivZeroCheckSlowPath : public Mir2Lir::LIRSlowPath {
68 public:
69 DivZeroCheckSlowPath(Mir2Lir* m2l, LIR* branch)
70 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch) {
71 }
72
Mingyao Yange643a172014-04-08 11:02:52 -070073 void Compile() OVERRIDE {
Mingyao Yang42894562014-04-07 12:42:16 -070074 m2l_->ResetRegPool();
75 m2l_->ResetDefTracking();
Mingyao Yang6ffcfa02014-04-25 11:06:00 -070076 GenerateTargetLabel(kPseudoThrowTarget);
Andreas Gampe98430592014-07-27 19:44:50 -070077 m2l_->CallRuntimeHelper(kQuickThrowDivZero, true);
Mingyao Yang42894562014-04-07 12:42:16 -070078 }
79 };
80
81 AddSlowPath(new (arena_) DivZeroCheckSlowPath(this, branch));
82}
Dave Allisonb373e092014-02-20 16:06:36 -080083
Mingyao Yang80365d92014-04-18 12:10:58 -070084void Mir2Lir::GenArrayBoundsCheck(RegStorage index, RegStorage length) {
85 class ArrayBoundsCheckSlowPath : public Mir2Lir::LIRSlowPath {
86 public:
87 ArrayBoundsCheckSlowPath(Mir2Lir* m2l, LIR* branch, RegStorage index, RegStorage length)
88 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch),
89 index_(index), length_(length) {
90 }
91
92 void Compile() OVERRIDE {
93 m2l_->ResetRegPool();
94 m2l_->ResetDefTracking();
Mingyao Yang6ffcfa02014-04-25 11:06:00 -070095 GenerateTargetLabel(kPseudoThrowTarget);
Andreas Gampe98430592014-07-27 19:44:50 -070096 m2l_->CallRuntimeHelperRegReg(kQuickThrowArrayBounds, index_, length_, true);
Mingyao Yang80365d92014-04-18 12:10:58 -070097 }
98
99 private:
100 const RegStorage index_;
101 const RegStorage length_;
102 };
103
104 LIR* branch = OpCmpBranch(kCondUge, index, length, nullptr);
105 AddSlowPath(new (arena_) ArrayBoundsCheckSlowPath(this, branch, index, length));
106}
107
108void Mir2Lir::GenArrayBoundsCheck(int index, RegStorage length) {
109 class ArrayBoundsCheckSlowPath : public Mir2Lir::LIRSlowPath {
110 public:
111 ArrayBoundsCheckSlowPath(Mir2Lir* m2l, LIR* branch, int index, RegStorage length)
112 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch),
113 index_(index), length_(length) {
114 }
115
116 void Compile() OVERRIDE {
117 m2l_->ResetRegPool();
118 m2l_->ResetDefTracking();
Mingyao Yang6ffcfa02014-04-25 11:06:00 -0700119 GenerateTargetLabel(kPseudoThrowTarget);
Mingyao Yang80365d92014-04-18 12:10:58 -0700120
Andreas Gampeccc60262014-07-04 18:02:38 -0700121 RegStorage arg1_32 = m2l_->TargetReg(kArg1, kNotWide);
122 RegStorage arg0_32 = m2l_->TargetReg(kArg0, kNotWide);
Andreas Gampe4b537a82014-06-30 22:24:53 -0700123
124 m2l_->OpRegCopy(arg1_32, length_);
125 m2l_->LoadConstant(arg0_32, index_);
Andreas Gampe98430592014-07-27 19:44:50 -0700126 m2l_->CallRuntimeHelperRegReg(kQuickThrowArrayBounds, arg0_32, arg1_32, true);
Mingyao Yang80365d92014-04-18 12:10:58 -0700127 }
128
129 private:
130 const int32_t index_;
131 const RegStorage length_;
132 };
133
134 LIR* branch = OpCmpImmBranch(kCondLs, length, index, nullptr);
135 AddSlowPath(new (arena_) ArrayBoundsCheckSlowPath(this, branch, index, length));
136}
137
Mingyao Yange643a172014-04-08 11:02:52 -0700138LIR* Mir2Lir::GenNullCheck(RegStorage reg) {
139 class NullCheckSlowPath : public Mir2Lir::LIRSlowPath {
140 public:
141 NullCheckSlowPath(Mir2Lir* m2l, LIR* branch)
142 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch) {
143 }
144
145 void Compile() OVERRIDE {
146 m2l_->ResetRegPool();
147 m2l_->ResetDefTracking();
Mingyao Yang6ffcfa02014-04-25 11:06:00 -0700148 GenerateTargetLabel(kPseudoThrowTarget);
Andreas Gampe98430592014-07-27 19:44:50 -0700149 m2l_->CallRuntimeHelper(kQuickThrowNullPointer, true);
Mingyao Yange643a172014-04-08 11:02:52 -0700150 }
151 };
152
153 LIR* branch = OpCmpImmBranch(kCondEq, reg, 0, nullptr);
154 AddSlowPath(new (arena_) NullCheckSlowPath(this, branch));
155 return branch;
156}
157
Brian Carlstrom7940e442013-07-12 13:46:57 -0700158/* Perform null-check on a register. */
buzbee2700f7e2014-03-07 09:46:20 -0800159LIR* Mir2Lir::GenNullCheck(RegStorage m_reg, int opt_flags) {
Dave Allison69dfe512014-07-11 17:11:58 +0000160 if (!cu_->compiler_driver->GetCompilerOptions().GetImplicitNullChecks()) {
Dave Allisonf9439142014-03-27 15:10:22 -0700161 return GenExplicitNullCheck(m_reg, opt_flags);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700162 }
Dave Allisonb373e092014-02-20 16:06:36 -0800163 return nullptr;
164}
165
Dave Allisonf9439142014-03-27 15:10:22 -0700166/* Perform an explicit null-check on a register. */
167LIR* Mir2Lir::GenExplicitNullCheck(RegStorage m_reg, int opt_flags) {
168 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
169 return NULL;
170 }
Mingyao Yange643a172014-04-08 11:02:52 -0700171 return GenNullCheck(m_reg);
Dave Allisonf9439142014-03-27 15:10:22 -0700172}
173
Dave Allisonb373e092014-02-20 16:06:36 -0800174void Mir2Lir::MarkPossibleNullPointerException(int opt_flags) {
Dave Allison69dfe512014-07-11 17:11:58 +0000175 if (cu_->compiler_driver->GetCompilerOptions().GetImplicitNullChecks()) {
Dave Allisonb373e092014-02-20 16:06:36 -0800176 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
177 return;
178 }
Dave Allison69dfe512014-07-11 17:11:58 +0000179 // Insert after last instruction.
Dave Allisonb373e092014-02-20 16:06:36 -0800180 MarkSafepointPC(last_lir_insn_);
181 }
182}
183
Andreas Gampe3c12c512014-06-24 18:46:29 +0000184void Mir2Lir::MarkPossibleNullPointerExceptionAfter(int opt_flags, LIR* after) {
Dave Allison69dfe512014-07-11 17:11:58 +0000185 if (cu_->compiler_driver->GetCompilerOptions().GetImplicitNullChecks()) {
Andreas Gampe3c12c512014-06-24 18:46:29 +0000186 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
187 return;
188 }
189 MarkSafepointPCAfter(after);
190 }
191}
192
Dave Allisonb373e092014-02-20 16:06:36 -0800193void Mir2Lir::MarkPossibleStackOverflowException() {
Dave Allison69dfe512014-07-11 17:11:58 +0000194 if (cu_->compiler_driver->GetCompilerOptions().GetImplicitStackOverflowChecks()) {
Dave Allisonb373e092014-02-20 16:06:36 -0800195 MarkSafepointPC(last_lir_insn_);
196 }
197}
198
buzbee2700f7e2014-03-07 09:46:20 -0800199void Mir2Lir::ForceImplicitNullCheck(RegStorage reg, int opt_flags) {
Dave Allison69dfe512014-07-11 17:11:58 +0000200 if (cu_->compiler_driver->GetCompilerOptions().GetImplicitNullChecks()) {
Dave Allisonb373e092014-02-20 16:06:36 -0800201 if (!(cu_->disable_opt & (1 << kNullCheckElimination)) && (opt_flags & MIR_IGNORE_NULL_CHECK)) {
202 return;
203 }
204 // Force an implicit null check by performing a memory operation (load) from the given
205 // register with offset 0. This will cause a signal if the register contains 0 (null).
buzbee2700f7e2014-03-07 09:46:20 -0800206 RegStorage tmp = AllocTemp();
207 // TODO: for Mips, would be best to use rZERO as the bogus register target.
buzbee695d13a2014-04-19 13:32:20 -0700208 LIR* load = Load32Disp(reg, 0, tmp);
Dave Allisonb373e092014-02-20 16:06:36 -0800209 FreeTemp(tmp);
210 MarkSafepointPC(load);
211 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700212}
213
Brian Carlstrom7940e442013-07-12 13:46:57 -0700214void Mir2Lir::GenCompareAndBranch(Instruction::Code opcode, RegLocation rl_src1,
215 RegLocation rl_src2, LIR* taken,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700216 LIR* fall_through) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700217 ConditionCode cond;
buzbee7c02e912014-10-03 13:14:17 -0700218 RegisterClass reg_class = (rl_src1.ref || rl_src2.ref) ? kRefReg : kCoreReg;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700219 switch (opcode) {
220 case Instruction::IF_EQ:
221 cond = kCondEq;
222 break;
223 case Instruction::IF_NE:
224 cond = kCondNe;
225 break;
226 case Instruction::IF_LT:
227 cond = kCondLt;
228 break;
229 case Instruction::IF_GE:
230 cond = kCondGe;
231 break;
232 case Instruction::IF_GT:
233 cond = kCondGt;
234 break;
235 case Instruction::IF_LE:
236 cond = kCondLe;
237 break;
238 default:
239 cond = static_cast<ConditionCode>(0);
240 LOG(FATAL) << "Unexpected opcode " << opcode;
241 }
242
243 // Normalize such that if either operand is constant, src2 will be constant
244 if (rl_src1.is_const) {
245 RegLocation rl_temp = rl_src1;
246 rl_src1 = rl_src2;
247 rl_src2 = rl_temp;
248 cond = FlipComparisonOrder(cond);
249 }
250
buzbee7c02e912014-10-03 13:14:17 -0700251 rl_src1 = LoadValue(rl_src1, reg_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700252 // Is this really an immediate comparison?
253 if (rl_src2.is_const) {
254 // If it's already live in a register or not easily materialized, just keep going
255 RegLocation rl_temp = UpdateLoc(rl_src2);
Andreas Gampeb07c1f92014-07-26 01:40:39 -0700256 int32_t constant_value = mir_graph_->ConstantValue(rl_src2);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700257 if ((rl_temp.location == kLocDalvikFrame) &&
Matteo Franchinc763e352014-07-04 12:53:27 +0100258 InexpensiveConstantInt(constant_value, opcode)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700259 // OK - convert this to a compare immediate and branch
buzbee2700f7e2014-03-07 09:46:20 -0800260 OpCmpImmBranch(cond, rl_src1.reg, mir_graph_->ConstantValue(rl_src2), taken);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700261 return;
262 }
Andreas Gampeb07c1f92014-07-26 01:40:39 -0700263
264 // It's also commonly more efficient to have a test against zero with Eq/Ne. This is not worse
265 // for x86, and allows a cbz/cbnz for Arm and Mips. At the same time, it works around a register
266 // mismatch for 64b systems, where a reference is compared against null, as dex bytecode uses
267 // the 32b literal 0 for null.
268 if (constant_value == 0 && (cond == kCondEq || cond == kCondNe)) {
269 // Use the OpCmpImmBranch and ignore the value in the register.
270 OpCmpImmBranch(cond, rl_src1.reg, 0, taken);
271 return;
272 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700273 }
Andreas Gampeb07c1f92014-07-26 01:40:39 -0700274
buzbee7c02e912014-10-03 13:14:17 -0700275 rl_src2 = LoadValue(rl_src2, reg_class);
buzbee2700f7e2014-03-07 09:46:20 -0800276 OpCmpBranch(cond, rl_src1.reg, rl_src2.reg, taken);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700277}
278
279void Mir2Lir::GenCompareZeroAndBranch(Instruction::Code opcode, RegLocation rl_src, LIR* taken,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700280 LIR* fall_through) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700281 ConditionCode cond;
buzbee7c02e912014-10-03 13:14:17 -0700282 RegisterClass reg_class = rl_src.ref ? kRefReg : kCoreReg;
283 rl_src = LoadValue(rl_src, reg_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700284 switch (opcode) {
285 case Instruction::IF_EQZ:
286 cond = kCondEq;
287 break;
288 case Instruction::IF_NEZ:
289 cond = kCondNe;
290 break;
291 case Instruction::IF_LTZ:
292 cond = kCondLt;
293 break;
294 case Instruction::IF_GEZ:
295 cond = kCondGe;
296 break;
297 case Instruction::IF_GTZ:
298 cond = kCondGt;
299 break;
300 case Instruction::IF_LEZ:
301 cond = kCondLe;
302 break;
303 default:
304 cond = static_cast<ConditionCode>(0);
305 LOG(FATAL) << "Unexpected opcode " << opcode;
306 }
buzbee2700f7e2014-03-07 09:46:20 -0800307 OpCmpImmBranch(cond, rl_src.reg, 0, taken);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700308}
309
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700310void Mir2Lir::GenIntToLong(RegLocation rl_dest, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700311 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
312 if (rl_src.location == kLocPhysReg) {
buzbee2700f7e2014-03-07 09:46:20 -0800313 OpRegCopy(rl_result.reg, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700314 } else {
buzbee2700f7e2014-03-07 09:46:20 -0800315 LoadValueDirect(rl_src, rl_result.reg.GetLow());
Brian Carlstrom7940e442013-07-12 13:46:57 -0700316 }
buzbee2700f7e2014-03-07 09:46:20 -0800317 OpRegRegImm(kOpAsr, rl_result.reg.GetHigh(), rl_result.reg.GetLow(), 31);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700318 StoreValueWide(rl_dest, rl_result);
319}
320
321void Mir2Lir::GenIntNarrowing(Instruction::Code opcode, RegLocation rl_dest,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700322 RegLocation rl_src) {
Brian Carlstrom6f485c62013-07-18 15:35:35 -0700323 rl_src = LoadValue(rl_src, kCoreReg);
324 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
325 OpKind op = kOpInvalid;
326 switch (opcode) {
327 case Instruction::INT_TO_BYTE:
328 op = kOp2Byte;
329 break;
330 case Instruction::INT_TO_SHORT:
331 op = kOp2Short;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700332 break;
Brian Carlstrom6f485c62013-07-18 15:35:35 -0700333 case Instruction::INT_TO_CHAR:
334 op = kOp2Char;
335 break;
336 default:
337 LOG(ERROR) << "Bad int conversion type";
338 }
buzbee2700f7e2014-03-07 09:46:20 -0800339 OpRegReg(op, rl_result.reg, rl_src.reg);
Brian Carlstrom6f485c62013-07-18 15:35:35 -0700340 StoreValue(rl_dest, rl_result);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700341}
342
Andreas Gampe98430592014-07-27 19:44:50 -0700343/*
344 * Let helper function take care of everything. Will call
345 * Array::AllocFromCode(type_idx, method, count);
346 * Note: AllocFromCode will handle checks for errNegativeArraySize.
347 */
348void Mir2Lir::GenNewArray(uint32_t type_idx, RegLocation rl_dest,
349 RegLocation rl_src) {
350 FlushAllRegs(); /* Everything to home location */
351 const DexFile* dex_file = cu_->dex_file;
352 CompilerDriver* driver = cu_->compiler_driver;
353 if (cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, *dex_file, type_idx)) {
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800354 bool is_type_initialized; // Ignored as an array does not have an initializer.
355 bool use_direct_type_ptr;
356 uintptr_t direct_type_ptr;
Mathieu Chartier8668c3c2014-04-24 16:48:11 -0700357 bool is_finalizable;
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800358 if (kEmbedClassInCode &&
Mathieu Chartier8668c3c2014-04-24 16:48:11 -0700359 driver->CanEmbedTypeInCode(*dex_file, type_idx, &is_type_initialized, &use_direct_type_ptr,
360 &direct_type_ptr, &is_finalizable)) {
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800361 // The fast path.
362 if (!use_direct_type_ptr) {
Fred Shihe7f82e22014-08-06 10:46:37 -0700363 LoadClassType(*dex_file, type_idx, kArg0);
Andreas Gampe98430592014-07-27 19:44:50 -0700364 CallRuntimeHelperRegMethodRegLocation(kQuickAllocArrayResolved, TargetReg(kArg0, kNotWide),
365 rl_src, true);
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800366 } else {
367 // Use the direct pointer.
Andreas Gampe98430592014-07-27 19:44:50 -0700368 CallRuntimeHelperImmMethodRegLocation(kQuickAllocArrayResolved, direct_type_ptr, rl_src,
369 true);
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800370 }
371 } else {
372 // The slow path.
Andreas Gampe98430592014-07-27 19:44:50 -0700373 CallRuntimeHelperImmMethodRegLocation(kQuickAllocArray, type_idx, rl_src, true);
Hiroshi Yamauchibb8f0ab2014-01-27 16:50:29 -0800374 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700375 } else {
Andreas Gampe98430592014-07-27 19:44:50 -0700376 CallRuntimeHelperImmMethodRegLocation(kQuickAllocArrayWithAccessCheck, type_idx, rl_src, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700377 }
Andreas Gampe98430592014-07-27 19:44:50 -0700378 StoreValue(rl_dest, GetReturn(kRefReg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700379}
380
381/*
382 * Similar to GenNewArray, but with post-allocation initialization.
383 * Verifier guarantees we're dealing with an array class. Current
384 * code throws runtime exception "bad Filled array req" for 'D' and 'J'.
385 * Current code also throws internal unimp if not 'L', '[' or 'I'.
386 */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700387void Mir2Lir::GenFilledNewArray(CallInfo* info) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700388 int elems = info->num_arg_words;
389 int type_idx = info->index;
390 FlushAllRegs(); /* Everything to home location */
Andreas Gampe98430592014-07-27 19:44:50 -0700391 QuickEntrypointEnum target;
392 if (cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx, *cu_->dex_file,
393 type_idx)) {
394 target = kQuickCheckAndAllocArray;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700395 } else {
Andreas Gampe98430592014-07-27 19:44:50 -0700396 target = kQuickCheckAndAllocArrayWithAccessCheck;
Brian Carlstrom7940e442013-07-12 13:46:57 -0700397 }
Andreas Gampe98430592014-07-27 19:44:50 -0700398 CallRuntimeHelperImmMethodImm(target, type_idx, elems, true);
Andreas Gampeccc60262014-07-04 18:02:38 -0700399 FreeTemp(TargetReg(kArg2, kNotWide));
400 FreeTemp(TargetReg(kArg1, kNotWide));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700401 /*
402 * NOTE: the implicit target for Instruction::FILLED_NEW_ARRAY is the
403 * return region. Because AllocFromCode placed the new array
404 * in kRet0, we'll just lock it into place. When debugger support is
405 * added, it may be necessary to additionally copy all return
406 * values to a home location in thread-local storage
407 */
Andreas Gampeccc60262014-07-04 18:02:38 -0700408 RegStorage ref_reg = TargetReg(kRet0, kRef);
Chao-ying Fua77ee512014-07-01 17:43:41 -0700409 LockTemp(ref_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700410
411 // TODO: use the correct component size, currently all supported types
412 // share array alignment with ints (see comment at head of function)
413 size_t component_size = sizeof(int32_t);
414
415 // Having a range of 0 is legal
416 if (info->is_range && (elems > 0)) {
417 /*
418 * Bit of ugliness here. We're going generate a mem copy loop
419 * on the register range, but it is possible that some regs
420 * in the range have been promoted. This is unlikely, but
421 * before generating the copy, we'll just force a flush
422 * of any regs in the source range that have been promoted to
423 * home location.
424 */
425 for (int i = 0; i < elems; i++) {
426 RegLocation loc = UpdateLoc(info->args[i]);
427 if (loc.location == kLocPhysReg) {
Vladimir Marko8dea81c2014-06-06 14:50:36 +0100428 ScopedMemRefType mem_ref_type(this, ResourceMask::kDalvikReg);
Chao-ying Fua77ee512014-07-01 17:43:41 -0700429 Store32Disp(TargetPtrReg(kSp), SRegOffset(loc.s_reg_low), loc.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700430 }
431 }
432 /*
433 * TUNING note: generated code here could be much improved, but
434 * this is an uncommon operation and isn't especially performance
435 * critical.
436 */
Chao-ying Fu7e399fd2014-06-10 18:11:11 -0700437 // This is addressing the stack, which may be out of the 4G area.
buzbee33ae5582014-06-12 14:56:32 -0700438 RegStorage r_src = AllocTempRef();
439 RegStorage r_dst = AllocTempRef();
440 RegStorage r_idx = AllocTempRef(); // Not really a reference, but match src/dst.
buzbee2700f7e2014-03-07 09:46:20 -0800441 RegStorage r_val;
Brian Carlstromdf629502013-07-17 22:39:56 -0700442 switch (cu_->instruction_set) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700443 case kThumb2:
buzbee33ae5582014-06-12 14:56:32 -0700444 case kArm64:
Andreas Gampeccc60262014-07-04 18:02:38 -0700445 r_val = TargetReg(kLr, kNotWide);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700446 break;
447 case kX86:
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700448 case kX86_64:
Chao-ying Fua77ee512014-07-01 17:43:41 -0700449 FreeTemp(ref_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700450 r_val = AllocTemp();
451 break;
452 case kMips:
453 r_val = AllocTemp();
454 break;
455 default: LOG(FATAL) << "Unexpected instruction set: " << cu_->instruction_set;
456 }
457 // Set up source pointer
458 RegLocation rl_first = info->args[0];
Chao-ying Fua77ee512014-07-01 17:43:41 -0700459 OpRegRegImm(kOpAdd, r_src, TargetPtrReg(kSp), SRegOffset(rl_first.s_reg_low));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700460 // Set up the target pointer
Chao-ying Fua77ee512014-07-01 17:43:41 -0700461 OpRegRegImm(kOpAdd, r_dst, ref_reg,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700462 mirror::Array::DataOffset(component_size).Int32Value());
463 // Set up the loop counter (known to be > 0)
464 LoadConstant(r_idx, elems - 1);
465 // Generate the copy loop. Going backwards for convenience
466 LIR* target = NewLIR0(kPseudoTargetLabel);
467 // Copy next element
Vladimir Marko8dea81c2014-06-06 14:50:36 +0100468 {
469 ScopedMemRefType mem_ref_type(this, ResourceMask::kDalvikReg);
470 LoadBaseIndexed(r_src, r_idx, r_val, 2, k32);
471 // NOTE: No dalvik register annotation, local optimizations will be stopped
472 // by the loop boundaries.
473 }
buzbee695d13a2014-04-19 13:32:20 -0700474 StoreBaseIndexed(r_dst, r_idx, r_val, 2, k32);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700475 FreeTemp(r_val);
476 OpDecAndBranch(kCondGe, r_idx, target);
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +0700477 if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700478 // Restore the target pointer
Chao-ying Fua77ee512014-07-01 17:43:41 -0700479 OpRegRegImm(kOpAdd, ref_reg, r_dst,
Brian Carlstrom7940e442013-07-12 13:46:57 -0700480 -mirror::Array::DataOffset(component_size).Int32Value());
481 }
482 } else if (!info->is_range) {
483 // TUNING: interleave
484 for (int i = 0; i < elems; i++) {
485 RegLocation rl_arg = LoadValue(info->args[i], kCoreReg);
Chao-ying Fua77ee512014-07-01 17:43:41 -0700486 Store32Disp(ref_reg,
Andreas Gampe3c12c512014-06-24 18:46:29 +0000487 mirror::Array::DataOffset(component_size).Int32Value() + i * 4, rl_arg.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700488 // If the LoadValue caused a temp to be allocated, free it
buzbee2700f7e2014-03-07 09:46:20 -0800489 if (IsTemp(rl_arg.reg)) {
490 FreeTemp(rl_arg.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700491 }
492 }
493 }
494 if (info->result.location != kLocInvalid) {
buzbeea0cd2d72014-06-01 09:33:49 -0700495 StoreValue(info->result, GetReturn(kRefReg));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700496 }
497}
498
Ian Rogers832336b2014-10-08 15:35:22 -0700499/*
500 * Array data table format:
501 * ushort ident = 0x0300 magic value
502 * ushort width width of each element in the table
503 * uint size number of elements in the table
504 * ubyte data[size*width] table of data values (may contain a single-byte
505 * padding at the end)
506 *
507 * Total size is 4+(width * size + 1)/2 16-bit code units.
508 */
509void Mir2Lir::GenFillArrayData(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
510 if (kIsDebugBuild) {
511 const uint16_t* table = mir_graph_->GetTable(mir, table_offset);
512 const Instruction::ArrayDataPayload* payload =
513 reinterpret_cast<const Instruction::ArrayDataPayload*>(table);
514 CHECK_EQ(payload->ident, static_cast<uint16_t>(Instruction::kArrayDataSignature));
515 }
516 uint32_t table_offset_from_start = mir->offset + static_cast<int32_t>(table_offset);
517 CallRuntimeHelperImmRegLocation(kQuickHandleFillArrayData, table_offset_from_start, rl_src, true);
518}
519
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800520//
521// Slow path to ensure a class is initialized for sget/sput.
522//
523class StaticFieldSlowPath : public Mir2Lir::LIRSlowPath {
524 public:
buzbee2700f7e2014-03-07 09:46:20 -0800525 StaticFieldSlowPath(Mir2Lir* m2l, LIR* unresolved, LIR* uninit, LIR* cont, int storage_index,
526 RegStorage r_base) :
527 LIRSlowPath(m2l, m2l->GetCurrentDexPc(), unresolved, cont), uninit_(uninit),
528 storage_index_(storage_index), r_base_(r_base) {
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800529 }
530
531 void Compile() {
532 LIR* unresolved_target = GenerateTargetLabel();
533 uninit_->target = unresolved_target;
Andreas Gampe98430592014-07-27 19:44:50 -0700534 m2l_->CallRuntimeHelperImm(kQuickInitializeStaticStorage, storage_index_, true);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800535 // Copy helper's result into r_base, a no-op on all but MIPS.
Andreas Gampeccc60262014-07-04 18:02:38 -0700536 m2l_->OpRegCopy(r_base_, m2l_->TargetReg(kRet0, kRef));
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800537
538 m2l_->OpUnconditionalBranch(cont_);
539 }
540
541 private:
542 LIR* const uninit_;
543 const int storage_index_;
buzbee2700f7e2014-03-07 09:46:20 -0800544 const RegStorage r_base_;
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800545};
546
Fred Shih37f05ef2014-07-16 18:38:08 -0700547void Mir2Lir::GenSput(MIR* mir, RegLocation rl_src, OpSize size) {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000548 const MirSFieldLoweringInfo& field_info = mir_graph_->GetSFieldLoweringInfo(mir);
549 cu_->compiler_driver->ProcessedStaticField(field_info.FastPut(), field_info.IsReferrersClass());
Douglas Leungd9cb8ae2014-07-09 14:28:35 -0700550 if (!SLOW_FIELD_PATH && field_info.FastPut()) {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000551 DCHECK_GE(field_info.FieldOffset().Int32Value(), 0);
buzbee2700f7e2014-03-07 09:46:20 -0800552 RegStorage r_base;
Vladimir Markobe0e5462014-02-26 11:24:15 +0000553 if (field_info.IsReferrersClass()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700554 // Fast path, static storage base is this method's class
Matteo Franchin0955f7e2014-05-23 17:32:52 +0100555 RegLocation rl_method = LoadCurrMethod();
buzbeea0cd2d72014-06-01 09:33:49 -0700556 r_base = AllocTempRef();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000557 LoadRefDisp(rl_method.reg, mirror::ArtMethod::DeclaringClassOffset().Int32Value(), r_base,
558 kNotVolatile);
buzbee2700f7e2014-03-07 09:46:20 -0800559 if (IsTemp(rl_method.reg)) {
560 FreeTemp(rl_method.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700561 }
562 } else {
563 // Medium path, static storage base in a different class which requires checks that the other
564 // class is initialized.
565 // TODO: remove initialized check now that we are initializing classes in the compiler driver.
Vladimir Markobe0e5462014-02-26 11:24:15 +0000566 DCHECK_NE(field_info.StorageIndex(), DexFile::kDexNoIndex);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700567 // May do runtime call so everything to home locations.
568 FlushAllRegs();
569 // Using fixed register to sync with possible call to runtime support.
Andreas Gampeccc60262014-07-04 18:02:38 -0700570 RegStorage r_method = TargetReg(kArg1, kRef);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700571 LockTemp(r_method);
572 LoadCurrMethodDirect(r_method);
Andreas Gampeccc60262014-07-04 18:02:38 -0700573 r_base = TargetReg(kArg0, kRef);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800574 LockTemp(r_base);
Andreas Gampe3c12c512014-06-24 18:46:29 +0000575 LoadRefDisp(r_method, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value(), r_base,
576 kNotVolatile);
Andreas Gampe9c3b0892014-04-24 17:33:34 +0000577 int32_t offset_of_field = ObjArray::OffsetOfElement(field_info.StorageIndex()).Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000578 LoadRefDisp(r_base, offset_of_field, r_base, kNotVolatile);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800579 // r_base now points at static storage (Class*) or NULL if the type is not yet resolved.
Vladimir Markobfea9c22014-01-17 17:49:33 +0000580 if (!field_info.IsInitialized() &&
581 (mir->optimization_flags & MIR_IGNORE_CLINIT_CHECK) == 0) {
Ian Rogers5ddb4102014-01-07 08:58:46 -0800582 // Check if r_base is NULL or a not yet initialized class.
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800583
584 // The slow path is invoked if the r_base is NULL or the class pointed
585 // to by it is not initialized.
Ian Rogers5ddb4102014-01-07 08:58:46 -0800586 LIR* unresolved_branch = OpCmpImmBranch(kCondEq, r_base, 0, NULL);
Andreas Gampeccc60262014-07-04 18:02:38 -0700587 RegStorage r_tmp = TargetReg(kArg2, kNotWide);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800588 LockTemp(r_tmp);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800589 LIR* uninit_branch = OpCmpMemImmBranch(kCondLt, r_tmp, r_base,
Mark Mendell766e9292014-01-27 07:55:47 -0800590 mirror::Class::StatusOffset().Int32Value(),
Dave Allison69dfe512014-07-11 17:11:58 +0000591 mirror::Class::kStatusInitialized, nullptr, nullptr);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800592 LIR* cont = NewLIR0(kPseudoTargetLabel);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800593
buzbee2700f7e2014-03-07 09:46:20 -0800594 AddSlowPath(new (arena_) StaticFieldSlowPath(this, unresolved_branch, uninit_branch, cont,
Vladimir Markobe0e5462014-02-26 11:24:15 +0000595 field_info.StorageIndex(), r_base));
Ian Rogers5ddb4102014-01-07 08:58:46 -0800596
597 FreeTemp(r_tmp);
Hans Boehm48f5c472014-06-27 14:50:10 -0700598 // Ensure load of status and store of value don't re-order.
599 // TODO: Presumably the actual value store is control-dependent on the status load,
600 // and will thus not be reordered in any case, since stores are never speculated.
601 // Does later code "know" that the class is now initialized? If so, we still
602 // need the barrier to guard later static loads.
603 GenMemBarrier(kLoadAny);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700604 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700605 FreeTemp(r_method);
606 }
607 // rBase now holds static storage base
Fred Shih37f05ef2014-07-16 18:38:08 -0700608 RegisterClass reg_class = RegClassForFieldLoadStore(size, field_info.IsVolatile());
609 if (IsWide(size)) {
Vladimir Marko674744e2014-04-24 15:18:26 +0100610 rl_src = LoadValueWide(rl_src, reg_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700611 } else {
Vladimir Marko674744e2014-04-24 15:18:26 +0100612 rl_src = LoadValue(rl_src, reg_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700613 }
Fred Shih37f05ef2014-07-16 18:38:08 -0700614 if (IsRef(size)) {
Andreas Gampe3c12c512014-06-24 18:46:29 +0000615 StoreRefDisp(r_base, field_info.FieldOffset().Int32Value(), rl_src.reg,
616 field_info.IsVolatile() ? kVolatile : kNotVolatile);
Vladimir Marko674744e2014-04-24 15:18:26 +0100617 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700618 StoreBaseDisp(r_base, field_info.FieldOffset().Int32Value(), rl_src.reg, size,
Andreas Gampe3c12c512014-06-24 18:46:29 +0000619 field_info.IsVolatile() ? kVolatile : kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700620 }
Fred Shih37f05ef2014-07-16 18:38:08 -0700621 if (IsRef(size) && !mir_graph_->IsConstantNullRef(rl_src)) {
buzbee2700f7e2014-03-07 09:46:20 -0800622 MarkGCCard(rl_src.reg, r_base);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700623 }
Ian Rogers5ddb4102014-01-07 08:58:46 -0800624 FreeTemp(r_base);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700625 } else {
626 FlushAllRegs(); // Everything to home locations
Fred Shih37f05ef2014-07-16 18:38:08 -0700627 QuickEntrypointEnum target;
628 switch (size) {
629 case kReference:
630 target = kQuickSetObjStatic;
631 break;
632 case k64:
633 case kDouble:
634 target = kQuickSet64Static;
635 break;
636 case k32:
637 case kSingle:
638 target = kQuickSet32Static;
639 break;
640 case kSignedHalf:
641 case kUnsignedHalf:
642 target = kQuickSet16Static;
643 break;
644 case kSignedByte:
645 case kUnsignedByte:
646 target = kQuickSet8Static;
647 break;
648 case kWord: // Intentional fallthrough.
649 default:
650 LOG(FATAL) << "Can't determine entrypoint for: " << size;
651 target = kQuickSet32Static;
652 }
Andreas Gampe98430592014-07-27 19:44:50 -0700653 CallRuntimeHelperImmRegLocation(target, field_info.FieldIndex(), rl_src, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700654 }
655}
656
Fred Shih37f05ef2014-07-16 18:38:08 -0700657void Mir2Lir::GenSget(MIR* mir, RegLocation rl_dest, OpSize size, Primitive::Type type) {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000658 const MirSFieldLoweringInfo& field_info = mir_graph_->GetSFieldLoweringInfo(mir);
659 cu_->compiler_driver->ProcessedStaticField(field_info.FastGet(), field_info.IsReferrersClass());
Fred Shih37f05ef2014-07-16 18:38:08 -0700660
Douglas Leungd9cb8ae2014-07-09 14:28:35 -0700661 if (!SLOW_FIELD_PATH && field_info.FastGet()) {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000662 DCHECK_GE(field_info.FieldOffset().Int32Value(), 0);
buzbee2700f7e2014-03-07 09:46:20 -0800663 RegStorage r_base;
Vladimir Markobe0e5462014-02-26 11:24:15 +0000664 if (field_info.IsReferrersClass()) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700665 // Fast path, static storage base is this method's class
666 RegLocation rl_method = LoadCurrMethod();
buzbeea0cd2d72014-06-01 09:33:49 -0700667 r_base = AllocTempRef();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000668 LoadRefDisp(rl_method.reg, mirror::ArtMethod::DeclaringClassOffset().Int32Value(), r_base,
669 kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700670 } else {
671 // Medium path, static storage base in a different class which requires checks that the other
672 // class is initialized
Vladimir Markobe0e5462014-02-26 11:24:15 +0000673 DCHECK_NE(field_info.StorageIndex(), DexFile::kDexNoIndex);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700674 // May do runtime call so everything to home locations.
675 FlushAllRegs();
676 // Using fixed register to sync with possible call to runtime support.
Andreas Gampeccc60262014-07-04 18:02:38 -0700677 RegStorage r_method = TargetReg(kArg1, kRef);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700678 LockTemp(r_method);
679 LoadCurrMethodDirect(r_method);
Andreas Gampeccc60262014-07-04 18:02:38 -0700680 r_base = TargetReg(kArg0, kRef);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800681 LockTemp(r_base);
Andreas Gampe3c12c512014-06-24 18:46:29 +0000682 LoadRefDisp(r_method, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value(), r_base,
683 kNotVolatile);
Andreas Gampe9c3b0892014-04-24 17:33:34 +0000684 int32_t offset_of_field = ObjArray::OffsetOfElement(field_info.StorageIndex()).Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000685 LoadRefDisp(r_base, offset_of_field, r_base, kNotVolatile);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800686 // r_base now points at static storage (Class*) or NULL if the type is not yet resolved.
Vladimir Markobfea9c22014-01-17 17:49:33 +0000687 if (!field_info.IsInitialized() &&
688 (mir->optimization_flags & MIR_IGNORE_CLINIT_CHECK) == 0) {
Ian Rogers5ddb4102014-01-07 08:58:46 -0800689 // Check if r_base is NULL or a not yet initialized class.
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800690
691 // The slow path is invoked if the r_base is NULL or the class pointed
692 // to by it is not initialized.
Ian Rogers5ddb4102014-01-07 08:58:46 -0800693 LIR* unresolved_branch = OpCmpImmBranch(kCondEq, r_base, 0, NULL);
Andreas Gampeccc60262014-07-04 18:02:38 -0700694 RegStorage r_tmp = TargetReg(kArg2, kNotWide);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800695 LockTemp(r_tmp);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800696 LIR* uninit_branch = OpCmpMemImmBranch(kCondLt, r_tmp, r_base,
Mark Mendell766e9292014-01-27 07:55:47 -0800697 mirror::Class::StatusOffset().Int32Value(),
Dave Allison69dfe512014-07-11 17:11:58 +0000698 mirror::Class::kStatusInitialized, nullptr, nullptr);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800699 LIR* cont = NewLIR0(kPseudoTargetLabel);
Ian Rogers5ddb4102014-01-07 08:58:46 -0800700
buzbee2700f7e2014-03-07 09:46:20 -0800701 AddSlowPath(new (arena_) StaticFieldSlowPath(this, unresolved_branch, uninit_branch, cont,
Vladimir Markobe0e5462014-02-26 11:24:15 +0000702 field_info.StorageIndex(), r_base));
Ian Rogers5ddb4102014-01-07 08:58:46 -0800703
704 FreeTemp(r_tmp);
Ian Rogers03dbc042014-06-02 14:24:56 -0700705 // Ensure load of status and load of value don't re-order.
Hans Boehm48f5c472014-06-27 14:50:10 -0700706 GenMemBarrier(kLoadAny);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700707 }
Brian Carlstrom7940e442013-07-12 13:46:57 -0700708 FreeTemp(r_method);
709 }
Ian Rogers5ddb4102014-01-07 08:58:46 -0800710 // r_base now holds static storage base
Fred Shih37f05ef2014-07-16 18:38:08 -0700711 RegisterClass reg_class = RegClassForFieldLoadStore(size, field_info.IsVolatile());
Vladimir Marko674744e2014-04-24 15:18:26 +0100712 RegLocation rl_result = EvalLoc(rl_dest, reg_class, true);
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800713
Vladimir Marko674744e2014-04-24 15:18:26 +0100714 int field_offset = field_info.FieldOffset().Int32Value();
Fred Shih37f05ef2014-07-16 18:38:08 -0700715 if (IsRef(size)) {
716 // TODO: DCHECK?
Andreas Gampe3c12c512014-06-24 18:46:29 +0000717 LoadRefDisp(r_base, field_offset, rl_result.reg, field_info.IsVolatile() ? kVolatile :
718 kNotVolatile);
Vladimir Marko674744e2014-04-24 15:18:26 +0100719 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700720 LoadBaseDisp(r_base, field_offset, rl_result.reg, size, field_info.IsVolatile() ?
Andreas Gampe3c12c512014-06-24 18:46:29 +0000721 kVolatile : kNotVolatile);
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800722 }
Vladimir Marko674744e2014-04-24 15:18:26 +0100723 FreeTemp(r_base);
Razvan A Lupusoru99ad7232014-02-25 17:41:08 -0800724
Fred Shih37f05ef2014-07-16 18:38:08 -0700725 if (IsWide(size)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700726 StoreValueWide(rl_dest, rl_result);
727 } else {
728 StoreValue(rl_dest, rl_result);
729 }
730 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700731 DCHECK(SizeMatchesTypeForEntrypoint(size, type));
Brian Carlstrom7940e442013-07-12 13:46:57 -0700732 FlushAllRegs(); // Everything to home locations
Fred Shih37f05ef2014-07-16 18:38:08 -0700733 QuickEntrypointEnum target;
734 switch (type) {
735 case Primitive::kPrimNot:
736 target = kQuickGetObjStatic;
737 break;
738 case Primitive::kPrimLong:
739 case Primitive::kPrimDouble:
740 target = kQuickGet64Static;
741 break;
742 case Primitive::kPrimInt:
743 case Primitive::kPrimFloat:
744 target = kQuickGet32Static;
745 break;
746 case Primitive::kPrimShort:
747 target = kQuickGetShortStatic;
748 break;
749 case Primitive::kPrimChar:
750 target = kQuickGetCharStatic;
751 break;
752 case Primitive::kPrimByte:
753 target = kQuickGetByteStatic;
754 break;
755 case Primitive::kPrimBoolean:
756 target = kQuickGetBooleanStatic;
757 break;
758 case Primitive::kPrimVoid: // Intentional fallthrough.
759 default:
760 LOG(FATAL) << "Can't determine entrypoint for: " << type;
761 target = kQuickGet32Static;
762 }
Andreas Gampe98430592014-07-27 19:44:50 -0700763 CallRuntimeHelperImm(target, field_info.FieldIndex(), true);
764
Douglas Leung2db3e262014-06-25 16:02:55 -0700765 // FIXME: pGetXXStatic always return an int or int64 regardless of rl_dest.fp.
Fred Shih37f05ef2014-07-16 18:38:08 -0700766 if (IsWide(size)) {
Douglas Leung2db3e262014-06-25 16:02:55 -0700767 RegLocation rl_result = GetReturnWide(kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700768 StoreValueWide(rl_dest, rl_result);
769 } else {
Douglas Leung2db3e262014-06-25 16:02:55 -0700770 RegLocation rl_result = GetReturn(rl_dest.ref ? kRefReg : kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700771 StoreValue(rl_dest, rl_result);
772 }
773 }
774}
775
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800776// Generate code for all slow paths.
777void Mir2Lir::HandleSlowPaths() {
Chao-ying Fu8159af62014-07-07 17:13:52 -0700778 // We should check slow_paths_.Size() every time, because a new slow path
779 // may be created during slowpath->Compile().
Vladimir Markoe39c54e2014-09-22 14:50:02 +0100780 for (LIRSlowPath* slowpath : slow_paths_) {
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800781 slowpath->Compile();
782 }
Vladimir Markoe39c54e2014-09-22 14:50:02 +0100783 slow_paths_.clear();
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800784}
785
Fred Shih37f05ef2014-07-16 18:38:08 -0700786void Mir2Lir::GenIGet(MIR* mir, int opt_flags, OpSize size, Primitive::Type type,
787 RegLocation rl_dest, RegLocation rl_obj) {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000788 const MirIFieldLoweringInfo& field_info = mir_graph_->GetIFieldLoweringInfo(mir);
789 cu_->compiler_driver->ProcessedInstanceField(field_info.FastGet());
Douglas Leungd9cb8ae2014-07-09 14:28:35 -0700790 if (!SLOW_FIELD_PATH && field_info.FastGet()) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700791 RegisterClass reg_class = RegClassForFieldLoadStore(size, field_info.IsVolatile());
Andreas Gampeaa910d52014-07-30 18:59:05 -0700792 // A load of the class will lead to an iget with offset 0.
Vladimir Markobe0e5462014-02-26 11:24:15 +0000793 DCHECK_GE(field_info.FieldOffset().Int32Value(), 0);
buzbeea0cd2d72014-06-01 09:33:49 -0700794 rl_obj = LoadValue(rl_obj, kRefReg);
Vladimir Marko674744e2014-04-24 15:18:26 +0100795 GenNullCheck(rl_obj.reg, opt_flags);
796 RegLocation rl_result = EvalLoc(rl_dest, reg_class, true);
797 int field_offset = field_info.FieldOffset().Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000798 LIR* load_lir;
Fred Shih37f05ef2014-07-16 18:38:08 -0700799 if (IsRef(size)) {
Andreas Gampe3c12c512014-06-24 18:46:29 +0000800 load_lir = LoadRefDisp(rl_obj.reg, field_offset, rl_result.reg, field_info.IsVolatile() ?
801 kVolatile : kNotVolatile);
Vladimir Marko674744e2014-04-24 15:18:26 +0100802 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700803 load_lir = LoadBaseDisp(rl_obj.reg, field_offset, rl_result.reg, size,
Andreas Gampe3c12c512014-06-24 18:46:29 +0000804 field_info.IsVolatile() ? kVolatile : kNotVolatile);
Vladimir Marko674744e2014-04-24 15:18:26 +0100805 }
Andreas Gampe3c12c512014-06-24 18:46:29 +0000806 MarkPossibleNullPointerExceptionAfter(opt_flags, load_lir);
Fred Shih37f05ef2014-07-16 18:38:08 -0700807 if (IsWide(size)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700808 StoreValueWide(rl_dest, rl_result);
809 } else {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700810 StoreValue(rl_dest, rl_result);
811 }
812 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700813 DCHECK(SizeMatchesTypeForEntrypoint(size, type));
814 QuickEntrypointEnum target;
815 switch (type) {
816 case Primitive::kPrimNot:
817 target = kQuickGetObjInstance;
818 break;
819 case Primitive::kPrimLong:
820 case Primitive::kPrimDouble:
821 target = kQuickGet64Instance;
822 break;
823 case Primitive::kPrimFloat:
824 case Primitive::kPrimInt:
825 target = kQuickGet32Instance;
826 break;
827 case Primitive::kPrimShort:
828 target = kQuickGetShortInstance;
829 break;
830 case Primitive::kPrimChar:
831 target = kQuickGetCharInstance;
832 break;
833 case Primitive::kPrimByte:
834 target = kQuickGetByteInstance;
835 break;
836 case Primitive::kPrimBoolean:
837 target = kQuickGetBooleanInstance;
838 break;
839 case Primitive::kPrimVoid: // Intentional fallthrough.
840 default:
841 LOG(FATAL) << "Can't determine entrypoint for: " << type;
842 target = kQuickGet32Instance;
843 }
Andreas Gampe98430592014-07-27 19:44:50 -0700844 // Second argument of pGetXXInstance is always a reference.
845 DCHECK_EQ(static_cast<unsigned int>(rl_obj.wide), 0U);
846 CallRuntimeHelperImmRegLocation(target, field_info.FieldIndex(), rl_obj, true);
847
Serguei Katkov4eca9f52014-07-08 00:45:45 +0700848 // FIXME: pGetXXInstance always return an int or int64 regardless of rl_dest.fp.
Fred Shih37f05ef2014-07-16 18:38:08 -0700849 if (IsWide(size)) {
Serguei Katkov4eca9f52014-07-08 00:45:45 +0700850 RegLocation rl_result = GetReturnWide(kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700851 StoreValueWide(rl_dest, rl_result);
852 } else {
Serguei Katkov4eca9f52014-07-08 00:45:45 +0700853 RegLocation rl_result = GetReturn(rl_dest.ref ? kRefReg : kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700854 StoreValue(rl_dest, rl_result);
855 }
856 }
857}
858
Vladimir Markobe0e5462014-02-26 11:24:15 +0000859void Mir2Lir::GenIPut(MIR* mir, int opt_flags, OpSize size,
Fred Shih37f05ef2014-07-16 18:38:08 -0700860 RegLocation rl_src, RegLocation rl_obj) {
Vladimir Markobe0e5462014-02-26 11:24:15 +0000861 const MirIFieldLoweringInfo& field_info = mir_graph_->GetIFieldLoweringInfo(mir);
862 cu_->compiler_driver->ProcessedInstanceField(field_info.FastPut());
Douglas Leungd9cb8ae2014-07-09 14:28:35 -0700863 if (!SLOW_FIELD_PATH && field_info.FastPut()) {
Fred Shih37f05ef2014-07-16 18:38:08 -0700864 RegisterClass reg_class = RegClassForFieldLoadStore(size, field_info.IsVolatile());
Andreas Gampeaa910d52014-07-30 18:59:05 -0700865 // Dex code never writes to the class field.
866 DCHECK_GE(static_cast<uint32_t>(field_info.FieldOffset().Int32Value()),
867 sizeof(mirror::HeapReference<mirror::Class>));
buzbeea0cd2d72014-06-01 09:33:49 -0700868 rl_obj = LoadValue(rl_obj, kRefReg);
Fred Shih37f05ef2014-07-16 18:38:08 -0700869 if (IsWide(size)) {
Vladimir Marko674744e2014-04-24 15:18:26 +0100870 rl_src = LoadValueWide(rl_src, reg_class);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700871 } else {
872 rl_src = LoadValue(rl_src, reg_class);
Vladimir Marko674744e2014-04-24 15:18:26 +0100873 }
874 GenNullCheck(rl_obj.reg, opt_flags);
875 int field_offset = field_info.FieldOffset().Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000876 LIR* store;
Fred Shih37f05ef2014-07-16 18:38:08 -0700877 if (IsRef(size)) {
Andreas Gampe3c12c512014-06-24 18:46:29 +0000878 store = StoreRefDisp(rl_obj.reg, field_offset, rl_src.reg, field_info.IsVolatile() ?
879 kVolatile : kNotVolatile);
Vladimir Marko674744e2014-04-24 15:18:26 +0100880 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700881 store = StoreBaseDisp(rl_obj.reg, field_offset, rl_src.reg, size,
Andreas Gampe3c12c512014-06-24 18:46:29 +0000882 field_info.IsVolatile() ? kVolatile : kNotVolatile);
Vladimir Marko674744e2014-04-24 15:18:26 +0100883 }
Andreas Gampe3c12c512014-06-24 18:46:29 +0000884 MarkPossibleNullPointerExceptionAfter(opt_flags, store);
Fred Shih37f05ef2014-07-16 18:38:08 -0700885 if (IsRef(size) && !mir_graph_->IsConstantNullRef(rl_src)) {
Vladimir Marko674744e2014-04-24 15:18:26 +0100886 MarkGCCard(rl_src.reg, rl_obj.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700887 }
888 } else {
Fred Shih37f05ef2014-07-16 18:38:08 -0700889 QuickEntrypointEnum target;
890 switch (size) {
891 case kReference:
892 target = kQuickSetObjInstance;
893 break;
894 case k64:
895 case kDouble:
896 target = kQuickSet64Instance;
897 break;
898 case k32:
899 case kSingle:
900 target = kQuickSet32Instance;
901 break;
902 case kSignedHalf:
903 case kUnsignedHalf:
904 target = kQuickSet16Instance;
905 break;
906 case kSignedByte:
907 case kUnsignedByte:
908 target = kQuickSet8Instance;
909 break;
910 case kWord: // Intentional fallthrough.
911 default:
912 LOG(FATAL) << "Can't determine entrypoint for: " << size;
913 target = kQuickSet32Instance;
914 }
Andreas Gampe98430592014-07-27 19:44:50 -0700915 CallRuntimeHelperImmRegLocationRegLocation(target, field_info.FieldIndex(), rl_obj, rl_src,
916 true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700917 }
918}
919
Ian Rogersa9a82542013-10-04 11:17:26 -0700920void Mir2Lir::GenArrayObjPut(int opt_flags, RegLocation rl_array, RegLocation rl_index,
921 RegLocation rl_src) {
922 bool needs_range_check = !(opt_flags & MIR_IGNORE_RANGE_CHECK);
923 bool needs_null_check = !((cu_->disable_opt & (1 << kNullCheckElimination)) &&
924 (opt_flags & MIR_IGNORE_NULL_CHECK));
Andreas Gampe98430592014-07-27 19:44:50 -0700925 QuickEntrypointEnum target = needs_range_check
926 ? (needs_null_check ? kQuickAputObjectWithNullAndBoundCheck
927 : kQuickAputObjectWithBoundCheck)
928 : kQuickAputObject;
929 CallRuntimeHelperRegLocationRegLocationRegLocation(target, rl_array, rl_index, rl_src, true);
Ian Rogersa9a82542013-10-04 11:17:26 -0700930}
931
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700932void Mir2Lir::GenConstClass(uint32_t type_idx, RegLocation rl_dest) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700933 RegLocation rl_method = LoadCurrMethod();
Andreas Gampe4b537a82014-06-30 22:24:53 -0700934 CheckRegLocation(rl_method);
buzbee33ae5582014-06-12 14:56:32 -0700935 RegStorage res_reg = AllocTempRef();
buzbeea0cd2d72014-06-01 09:33:49 -0700936 RegLocation rl_result = EvalLoc(rl_dest, kRefReg, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700937 if (!cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx,
Andreas Gampe4b537a82014-06-30 22:24:53 -0700938 *cu_->dex_file,
939 type_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700940 // Call out to helper which resolves type and verifies access.
941 // Resolved type returned in kRet0.
Andreas Gampe98430592014-07-27 19:44:50 -0700942 CallRuntimeHelperImmReg(kQuickInitializeTypeAndVerifyAccess, type_idx, rl_method.reg, true);
buzbeea0cd2d72014-06-01 09:33:49 -0700943 RegLocation rl_result = GetReturn(kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700944 StoreValue(rl_dest, rl_result);
945 } else {
946 // We're don't need access checks, load type from dex cache
947 int32_t dex_cache_offset =
Brian Carlstromea46f952013-07-30 01:26:50 -0700948 mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000949 LoadRefDisp(rl_method.reg, dex_cache_offset, res_reg, kNotVolatile);
Andreas Gampe9c3b0892014-04-24 17:33:34 +0000950 int32_t offset_of_type = ClassArray::OffsetOfElement(type_idx).Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +0000951 LoadRefDisp(res_reg, offset_of_type, rl_result.reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -0700952 if (!cu_->compiler_driver->CanAssumeTypeIsPresentInDexCache(*cu_->dex_file,
953 type_idx) || SLOW_TYPE_PATH) {
954 // Slow path, at runtime test if type is null and if so initialize
955 FlushAllRegs();
buzbee2700f7e2014-03-07 09:46:20 -0800956 LIR* branch = OpCmpImmBranch(kCondEq, rl_result.reg, 0, NULL);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800957 LIR* cont = NewLIR0(kPseudoTargetLabel);
958
959 // Object to generate the slow path for class resolution.
960 class SlowPath : public LIRSlowPath {
961 public:
962 SlowPath(Mir2Lir* m2l, LIR* fromfast, LIR* cont, const int type_idx,
963 const RegLocation& rl_method, const RegLocation& rl_result) :
964 LIRSlowPath(m2l, m2l->GetCurrentDexPc(), fromfast, cont), type_idx_(type_idx),
965 rl_method_(rl_method), rl_result_(rl_result) {
966 }
967
968 void Compile() {
969 GenerateTargetLabel();
970
Andreas Gampe98430592014-07-27 19:44:50 -0700971 m2l_->CallRuntimeHelperImmReg(kQuickInitializeType, type_idx_, rl_method_.reg, true);
Andreas Gampeccc60262014-07-04 18:02:38 -0700972 m2l_->OpRegCopy(rl_result_.reg, m2l_->TargetReg(kRet0, kRef));
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800973 m2l_->OpUnconditionalBranch(cont_);
974 }
975
976 private:
977 const int type_idx_;
978 const RegLocation rl_method_;
979 const RegLocation rl_result_;
980 };
981
982 // Add to list for future.
buzbee2700f7e2014-03-07 09:46:20 -0800983 AddSlowPath(new (arena_) SlowPath(this, branch, cont, type_idx, rl_method, rl_result));
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800984
Brian Carlstrom7940e442013-07-12 13:46:57 -0700985 StoreValue(rl_dest, rl_result);
Dave Allisonbcec6fb2014-01-17 12:52:22 -0800986 } else {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700987 // Fast path, we're done - just store result
988 StoreValue(rl_dest, rl_result);
989 }
990 }
991}
992
Brian Carlstrom2ce745c2013-07-17 17:44:30 -0700993void Mir2Lir::GenConstString(uint32_t string_idx, RegLocation rl_dest) {
Brian Carlstrom7940e442013-07-12 13:46:57 -0700994 /* NOTE: Most strings should be available at compile time */
Andreas Gampe9c3b0892014-04-24 17:33:34 +0000995 int32_t offset_of_string = mirror::ObjectArray<mirror::String>::OffsetOfElement(string_idx).
996 Int32Value();
Brian Carlstrom7940e442013-07-12 13:46:57 -0700997 if (!cu_->compiler_driver->CanAssumeStringIsPresentInDexCache(
998 *cu_->dex_file, string_idx) || SLOW_STRING_PATH) {
999 // slow path, resolve string if not in dex cache
1000 FlushAllRegs();
Brian Carlstrom7934ac22013-07-26 10:54:15 -07001001 LockCallTemps(); // Using explicit registers
Mark Mendell766e9292014-01-27 07:55:47 -08001002
1003 // If the Method* is already in a register, we can save a copy.
1004 RegLocation rl_method = mir_graph_->GetMethodLoc();
buzbee2700f7e2014-03-07 09:46:20 -08001005 RegStorage r_method;
Mark Mendell766e9292014-01-27 07:55:47 -08001006 if (rl_method.location == kLocPhysReg) {
1007 // A temp would conflict with register use below.
buzbee2700f7e2014-03-07 09:46:20 -08001008 DCHECK(!IsTemp(rl_method.reg));
1009 r_method = rl_method.reg;
Mark Mendell766e9292014-01-27 07:55:47 -08001010 } else {
Andreas Gampeccc60262014-07-04 18:02:38 -07001011 r_method = TargetReg(kArg2, kRef);
Mark Mendell766e9292014-01-27 07:55:47 -08001012 LoadCurrMethodDirect(r_method);
1013 }
buzbee695d13a2014-04-19 13:32:20 -07001014 LoadRefDisp(r_method, mirror::ArtMethod::DexCacheStringsOffset().Int32Value(),
Andreas Gampeccc60262014-07-04 18:02:38 -07001015 TargetReg(kArg0, kRef), kNotVolatile);
Mark Mendell766e9292014-01-27 07:55:47 -08001016
Brian Carlstrom7940e442013-07-12 13:46:57 -07001017 // Might call out to helper, which will return resolved string in kRet0
Andreas Gampeccc60262014-07-04 18:02:38 -07001018 LoadRefDisp(TargetReg(kArg0, kRef), offset_of_string, TargetReg(kRet0, kRef), kNotVolatile);
1019 LIR* fromfast = OpCmpImmBranch(kCondEq, TargetReg(kRet0, kRef), 0, NULL);
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001020 LIR* cont = NewLIR0(kPseudoTargetLabel);
Mark Mendell766e9292014-01-27 07:55:47 -08001021
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001022 {
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001023 // Object to generate the slow path for string resolution.
1024 class SlowPath : public LIRSlowPath {
1025 public:
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001026 SlowPath(Mir2Lir* m2l, LIR* fromfast, LIR* cont, RegStorage r_method, int32_t string_idx) :
1027 LIRSlowPath(m2l, m2l->GetCurrentDexPc(), fromfast, cont),
1028 r_method_(r_method), string_idx_(string_idx) {
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001029 }
1030
1031 void Compile() {
1032 GenerateTargetLabel();
Andreas Gampe98430592014-07-27 19:44:50 -07001033 m2l_->CallRuntimeHelperRegImm(kQuickResolveString, r_method_, string_idx_, true);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001034 m2l_->OpUnconditionalBranch(cont_);
1035 }
1036
1037 private:
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001038 const RegStorage r_method_;
1039 const int32_t string_idx_;
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001040 };
1041
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001042 AddSlowPath(new (arena_) SlowPath(this, fromfast, cont, r_method, string_idx));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001043 }
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001044
Brian Carlstrom7940e442013-07-12 13:46:57 -07001045 GenBarrier();
buzbeea0cd2d72014-06-01 09:33:49 -07001046 StoreValue(rl_dest, GetReturn(kRefReg));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001047 } else {
1048 RegLocation rl_method = LoadCurrMethod();
buzbeea0cd2d72014-06-01 09:33:49 -07001049 RegStorage res_reg = AllocTempRef();
1050 RegLocation rl_result = EvalLoc(rl_dest, kRefReg, true);
Andreas Gampe3c12c512014-06-24 18:46:29 +00001051 LoadRefDisp(rl_method.reg, mirror::ArtMethod::DexCacheStringsOffset().Int32Value(), res_reg,
1052 kNotVolatile);
1053 LoadRefDisp(res_reg, offset_of_string, rl_result.reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001054 StoreValue(rl_dest, rl_result);
1055 }
1056}
1057
Andreas Gampe98430592014-07-27 19:44:50 -07001058/*
1059 * Let helper function take care of everything. Will
1060 * call Class::NewInstanceFromCode(type_idx, method);
1061 */
1062void Mir2Lir::GenNewInstance(uint32_t type_idx, RegLocation rl_dest) {
1063 FlushAllRegs(); /* Everything to home location */
Brian Carlstrom7940e442013-07-12 13:46:57 -07001064 // alloc will always check for resolution, do we also need to verify
1065 // access because the verifier was unable to?
Andreas Gampe98430592014-07-27 19:44:50 -07001066 const DexFile* dex_file = cu_->dex_file;
1067 CompilerDriver* driver = cu_->compiler_driver;
1068 if (driver->CanAccessInstantiableTypeWithoutChecks(cu_->method_idx, *dex_file, type_idx)) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001069 bool is_type_initialized;
1070 bool use_direct_type_ptr;
1071 uintptr_t direct_type_ptr;
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001072 bool is_finalizable;
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001073 if (kEmbedClassInCode &&
Mathieu Chartier8668c3c2014-04-24 16:48:11 -07001074 driver->CanEmbedTypeInCode(*dex_file, type_idx, &is_type_initialized, &use_direct_type_ptr,
1075 &direct_type_ptr, &is_finalizable) &&
1076 !is_finalizable) {
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001077 // The fast path.
1078 if (!use_direct_type_ptr) {
Fred Shihe7f82e22014-08-06 10:46:37 -07001079 LoadClassType(*dex_file, type_idx, kArg0);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001080 if (!is_type_initialized) {
Andreas Gampe98430592014-07-27 19:44:50 -07001081 CallRuntimeHelperRegMethod(kQuickAllocObjectResolved, TargetReg(kArg0, kRef), true);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001082 } else {
Andreas Gampe98430592014-07-27 19:44:50 -07001083 CallRuntimeHelperRegMethod(kQuickAllocObjectInitialized, TargetReg(kArg0, kRef), true);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001084 }
1085 } else {
1086 // Use the direct pointer.
1087 if (!is_type_initialized) {
Andreas Gampe98430592014-07-27 19:44:50 -07001088 CallRuntimeHelperImmMethod(kQuickAllocObjectResolved, direct_type_ptr, true);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001089 } else {
Andreas Gampe98430592014-07-27 19:44:50 -07001090 CallRuntimeHelperImmMethod(kQuickAllocObjectInitialized, direct_type_ptr, true);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001091 }
1092 }
1093 } else {
1094 // The slow path.
Andreas Gampe98430592014-07-27 19:44:50 -07001095 CallRuntimeHelperImmMethod(kQuickAllocObject, type_idx, true);
Hiroshi Yamauchibe1ca552014-01-15 11:46:48 -08001096 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001097 } else {
Andreas Gampe98430592014-07-27 19:44:50 -07001098 CallRuntimeHelperImmMethod(kQuickAllocObjectWithAccessCheck, type_idx, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001099 }
Andreas Gampe98430592014-07-27 19:44:50 -07001100 StoreValue(rl_dest, GetReturn(kRefReg));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001101}
1102
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001103void Mir2Lir::GenThrow(RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001104 FlushAllRegs();
Andreas Gampe98430592014-07-27 19:44:50 -07001105 CallRuntimeHelperRegLocation(kQuickDeliverException, rl_src, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001106}
1107
1108// For final classes there are no sub-classes to check and so we can answer the instance-of
1109// question with simple comparisons.
1110void Mir2Lir::GenInstanceofFinal(bool use_declaring_class, uint32_t type_idx, RegLocation rl_dest,
1111 RegLocation rl_src) {
Mark Mendelldf8ee2e2014-01-27 16:37:47 -08001112 // X86 has its own implementation.
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001113 DCHECK(cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64);
Mark Mendelldf8ee2e2014-01-27 16:37:47 -08001114
buzbeea0cd2d72014-06-01 09:33:49 -07001115 RegLocation object = LoadValue(rl_src, kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001116 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001117 RegStorage result_reg = rl_result.reg;
buzbeeb5860fb2014-06-21 15:31:01 -07001118 if (IsSameReg(result_reg, object.reg)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001119 result_reg = AllocTypedTemp(false, kCoreReg);
buzbeeb5860fb2014-06-21 15:31:01 -07001120 DCHECK(!IsSameReg(result_reg, object.reg));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001121 }
1122 LoadConstant(result_reg, 0); // assume false
buzbee2700f7e2014-03-07 09:46:20 -08001123 LIR* null_branchover = OpCmpImmBranch(kCondEq, object.reg, 0, NULL);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001124
buzbeea0cd2d72014-06-01 09:33:49 -07001125 RegStorage check_class = AllocTypedTemp(false, kRefReg);
1126 RegStorage object_class = AllocTypedTemp(false, kRefReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001127
1128 LoadCurrMethodDirect(check_class);
1129 if (use_declaring_class) {
Andreas Gampe3c12c512014-06-24 18:46:29 +00001130 LoadRefDisp(check_class, mirror::ArtMethod::DeclaringClassOffset().Int32Value(), check_class,
1131 kNotVolatile);
1132 LoadRefDisp(object.reg, mirror::Object::ClassOffset().Int32Value(), object_class,
1133 kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001134 } else {
buzbee695d13a2014-04-19 13:32:20 -07001135 LoadRefDisp(check_class, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value(),
Andreas Gampe3c12c512014-06-24 18:46:29 +00001136 check_class, kNotVolatile);
1137 LoadRefDisp(object.reg, mirror::Object::ClassOffset().Int32Value(), object_class,
1138 kNotVolatile);
Andreas Gampe9c3b0892014-04-24 17:33:34 +00001139 int32_t offset_of_type = ClassArray::OffsetOfElement(type_idx).Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +00001140 LoadRefDisp(check_class, offset_of_type, check_class, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001141 }
1142
buzbee695d13a2014-04-19 13:32:20 -07001143 // FIXME: what should we be comparing here? compressed or decompressed references?
Brian Carlstrom7940e442013-07-12 13:46:57 -07001144 if (cu_->instruction_set == kThumb2) {
1145 OpRegReg(kOpCmp, check_class, object_class); // Same?
Dave Allison3da67a52014-04-02 17:03:45 -07001146 LIR* it = OpIT(kCondEq, ""); // if-convert the test
Brian Carlstrom7940e442013-07-12 13:46:57 -07001147 LoadConstant(result_reg, 1); // .eq case - load true
Dave Allison3da67a52014-04-02 17:03:45 -07001148 OpEndIT(it);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001149 } else {
Andreas Gampe90969af2014-07-15 23:02:11 -07001150 GenSelectConst32(check_class, object_class, kCondEq, 1, 0, result_reg, kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001151 }
1152 LIR* target = NewLIR0(kPseudoTargetLabel);
1153 null_branchover->target = target;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001154 FreeTemp(object_class);
1155 FreeTemp(check_class);
1156 if (IsTemp(result_reg)) {
buzbee2700f7e2014-03-07 09:46:20 -08001157 OpRegCopy(rl_result.reg, result_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001158 FreeTemp(result_reg);
1159 }
1160 StoreValue(rl_dest, rl_result);
1161}
1162
1163void Mir2Lir::GenInstanceofCallingHelper(bool needs_access_check, bool type_known_final,
1164 bool type_known_abstract, bool use_declaring_class,
1165 bool can_assume_type_is_in_dex_cache,
1166 uint32_t type_idx, RegLocation rl_dest,
1167 RegLocation rl_src) {
1168 FlushAllRegs();
1169 // May generate a call - use explicit registers
1170 LockCallTemps();
Andreas Gampeccc60262014-07-04 18:02:38 -07001171 RegStorage method_reg = TargetReg(kArg1, kRef);
Andreas Gampe4b537a82014-06-30 22:24:53 -07001172 LoadCurrMethodDirect(method_reg); // kArg1 <= current Method*
Andreas Gampeccc60262014-07-04 18:02:38 -07001173 RegStorage class_reg = TargetReg(kArg2, kRef); // kArg2 will hold the Class*
Serguei Katkov9ee45192014-07-17 14:39:03 +07001174 RegStorage ref_reg = TargetReg(kArg0, kRef); // kArg0 will hold the ref.
1175 RegStorage ret_reg = GetReturn(kRefReg).reg;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001176 if (needs_access_check) {
1177 // Check we have access to type_idx and if not throw IllegalAccessError,
1178 // returns Class* in kArg0
Andreas Gampe98430592014-07-27 19:44:50 -07001179 CallRuntimeHelperImm(kQuickInitializeTypeAndVerifyAccess, type_idx, true);
Serguei Katkov9ee45192014-07-17 14:39:03 +07001180 OpRegCopy(class_reg, ret_reg); // Align usage with fast path
1181 LoadValueDirectFixed(rl_src, ref_reg); // kArg0 <= ref
Brian Carlstrom7940e442013-07-12 13:46:57 -07001182 } else if (use_declaring_class) {
Serguei Katkov9ee45192014-07-17 14:39:03 +07001183 LoadValueDirectFixed(rl_src, ref_reg); // kArg0 <= ref
Andreas Gampe4b537a82014-06-30 22:24:53 -07001184 LoadRefDisp(method_reg, mirror::ArtMethod::DeclaringClassOffset().Int32Value(),
Andreas Gampe3c12c512014-06-24 18:46:29 +00001185 class_reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001186 } else {
Andreas Gampe90969af2014-07-15 23:02:11 -07001187 if (can_assume_type_is_in_dex_cache) {
1188 // Conditionally, as in the other case we will also load it.
Serguei Katkov9ee45192014-07-17 14:39:03 +07001189 LoadValueDirectFixed(rl_src, ref_reg); // kArg0 <= ref
Andreas Gampe90969af2014-07-15 23:02:11 -07001190 }
1191
Brian Carlstrom7940e442013-07-12 13:46:57 -07001192 // Load dex cache entry into class_reg (kArg2)
Andreas Gampe4b537a82014-06-30 22:24:53 -07001193 LoadRefDisp(method_reg, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value(),
Andreas Gampe3c12c512014-06-24 18:46:29 +00001194 class_reg, kNotVolatile);
Andreas Gampe9c3b0892014-04-24 17:33:34 +00001195 int32_t offset_of_type = ClassArray::OffsetOfElement(type_idx).Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +00001196 LoadRefDisp(class_reg, offset_of_type, class_reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001197 if (!can_assume_type_is_in_dex_cache) {
Andreas Gampe90969af2014-07-15 23:02:11 -07001198 LIR* slow_path_branch = OpCmpImmBranch(kCondEq, class_reg, 0, NULL);
1199 LIR* slow_path_target = NewLIR0(kPseudoTargetLabel);
1200
1201 // Should load value here.
Serguei Katkov9ee45192014-07-17 14:39:03 +07001202 LoadValueDirectFixed(rl_src, ref_reg); // kArg0 <= ref
Andreas Gampe90969af2014-07-15 23:02:11 -07001203
1204 class InitTypeSlowPath : public Mir2Lir::LIRSlowPath {
1205 public:
1206 InitTypeSlowPath(Mir2Lir* m2l, LIR* branch, LIR* cont, uint32_t type_idx,
1207 RegLocation rl_src)
1208 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch, cont), type_idx_(type_idx),
1209 rl_src_(rl_src) {
1210 }
1211
1212 void Compile() OVERRIDE {
1213 GenerateTargetLabel();
1214
Andreas Gampe98430592014-07-27 19:44:50 -07001215 m2l_->CallRuntimeHelperImm(kQuickInitializeType, type_idx_, true);
Andreas Gampe90969af2014-07-15 23:02:11 -07001216 m2l_->OpRegCopy(m2l_->TargetReg(kArg2, kRef),
1217 m2l_->TargetReg(kRet0, kRef)); // Align usage with fast path
Andreas Gampe90969af2014-07-15 23:02:11 -07001218 m2l_->OpUnconditionalBranch(cont_);
1219 }
1220
1221 private:
1222 uint32_t type_idx_;
1223 RegLocation rl_src_;
1224 };
1225
1226 AddSlowPath(new (arena_) InitTypeSlowPath(this, slow_path_branch, slow_path_target,
1227 type_idx, rl_src));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001228 }
1229 }
1230 /* kArg0 is ref, kArg2 is class. If ref==null, use directly as bool result */
Andreas Gampe4b537a82014-06-30 22:24:53 -07001231 RegLocation rl_result = GetReturn(kCoreReg);
Serguei Katkov9ee45192014-07-17 14:39:03 +07001232 if (!IsSameReg(rl_result.reg, ref_reg)) {
1233 // On MIPS and x86_64 rArg0 != rl_result, place false in result if branch is taken.
buzbee2700f7e2014-03-07 09:46:20 -08001234 LoadConstant(rl_result.reg, 0);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001235 }
Serguei Katkov9ee45192014-07-17 14:39:03 +07001236 LIR* branch1 = OpCmpImmBranch(kCondEq, ref_reg, 0, NULL);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001237
1238 /* load object->klass_ */
Serguei Katkov9ee45192014-07-17 14:39:03 +07001239 RegStorage ref_class_reg = TargetReg(kArg1, kRef); // kArg1 will hold the Class* of ref.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001240 DCHECK_EQ(mirror::Object::ClassOffset().Int32Value(), 0);
Serguei Katkov9ee45192014-07-17 14:39:03 +07001241 LoadRefDisp(ref_reg, mirror::Object::ClassOffset().Int32Value(),
1242 ref_class_reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001243 /* kArg0 is ref, kArg1 is ref->klass_, kArg2 is class */
1244 LIR* branchover = NULL;
1245 if (type_known_final) {
Serguei Katkov9ee45192014-07-17 14:39:03 +07001246 // rl_result == ref == class.
1247 GenSelectConst32(ref_class_reg, class_reg, kCondEq, 1, 0, rl_result.reg,
Andreas Gampe90969af2014-07-15 23:02:11 -07001248 kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001249 } else {
1250 if (cu_->instruction_set == kThumb2) {
Andreas Gampe98430592014-07-27 19:44:50 -07001251 RegStorage r_tgt = LoadHelper(kQuickInstanceofNonTrivial);
Dave Allison3da67a52014-04-02 17:03:45 -07001252 LIR* it = nullptr;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001253 if (!type_known_abstract) {
1254 /* Uses conditional nullification */
Serguei Katkov9ee45192014-07-17 14:39:03 +07001255 OpRegReg(kOpCmp, ref_class_reg, class_reg); // Same?
Dave Allison3da67a52014-04-02 17:03:45 -07001256 it = OpIT(kCondEq, "EE"); // if-convert the test
Serguei Katkov9ee45192014-07-17 14:39:03 +07001257 LoadConstant(rl_result.reg, 1); // .eq case - load true
Brian Carlstrom7940e442013-07-12 13:46:57 -07001258 }
Serguei Katkov9ee45192014-07-17 14:39:03 +07001259 OpRegCopy(ref_reg, class_reg); // .ne case - arg0 <= class
Brian Carlstrom7940e442013-07-12 13:46:57 -07001260 OpReg(kOpBlx, r_tgt); // .ne case: helper(class, ref->class)
Dave Allison3da67a52014-04-02 17:03:45 -07001261 if (it != nullptr) {
1262 OpEndIT(it);
1263 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001264 FreeTemp(r_tgt);
1265 } else {
1266 if (!type_known_abstract) {
1267 /* Uses branchovers */
buzbee2700f7e2014-03-07 09:46:20 -08001268 LoadConstant(rl_result.reg, 1); // assume true
Andreas Gampeccc60262014-07-04 18:02:38 -07001269 branchover = OpCmpBranch(kCondEq, TargetReg(kArg1, kRef), TargetReg(kArg2, kRef), NULL);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001270 }
Andreas Gampe90969af2014-07-15 23:02:11 -07001271
Serguei Katkov9ee45192014-07-17 14:39:03 +07001272 OpRegCopy(TargetReg(kArg0, kRef), class_reg); // .ne case - arg0 <= class
Andreas Gampe98430592014-07-27 19:44:50 -07001273 CallRuntimeHelper(kQuickInstanceofNonTrivial, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001274 }
1275 }
1276 // TODO: only clobber when type isn't final?
Vladimir Marko31c2aac2013-12-09 16:31:19 +00001277 ClobberCallerSave();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001278 /* branch targets here */
1279 LIR* target = NewLIR0(kPseudoTargetLabel);
1280 StoreValue(rl_dest, rl_result);
1281 branch1->target = target;
Andreas Gampe98430592014-07-27 19:44:50 -07001282 if (branchover != nullptr) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001283 branchover->target = target;
1284 }
1285}
1286
1287void Mir2Lir::GenInstanceof(uint32_t type_idx, RegLocation rl_dest, RegLocation rl_src) {
1288 bool type_known_final, type_known_abstract, use_declaring_class;
1289 bool needs_access_check = !cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx,
1290 *cu_->dex_file,
1291 type_idx,
1292 &type_known_final,
1293 &type_known_abstract,
1294 &use_declaring_class);
1295 bool can_assume_type_is_in_dex_cache = !needs_access_check &&
1296 cu_->compiler_driver->CanAssumeTypeIsPresentInDexCache(*cu_->dex_file, type_idx);
1297
1298 if ((use_declaring_class || can_assume_type_is_in_dex_cache) && type_known_final) {
1299 GenInstanceofFinal(use_declaring_class, type_idx, rl_dest, rl_src);
1300 } else {
1301 GenInstanceofCallingHelper(needs_access_check, type_known_final, type_known_abstract,
1302 use_declaring_class, can_assume_type_is_in_dex_cache,
1303 type_idx, rl_dest, rl_src);
1304 }
1305}
1306
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001307void Mir2Lir::GenCheckCast(uint32_t insn_idx, uint32_t type_idx, RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001308 bool type_known_final, type_known_abstract, use_declaring_class;
1309 bool needs_access_check = !cu_->compiler_driver->CanAccessTypeWithoutChecks(cu_->method_idx,
1310 *cu_->dex_file,
1311 type_idx,
1312 &type_known_final,
1313 &type_known_abstract,
1314 &use_declaring_class);
1315 // Note: currently type_known_final is unused, as optimizing will only improve the performance
1316 // of the exception throw path.
1317 DexCompilationUnit* cu = mir_graph_->GetCurrentDexCompilationUnit();
Vladimir Marko2730db02014-01-27 11:15:17 +00001318 if (!needs_access_check && cu_->compiler_driver->IsSafeCast(cu, insn_idx)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001319 // Verifier type analysis proved this check cast would never cause an exception.
1320 return;
1321 }
1322 FlushAllRegs();
1323 // May generate a call - use explicit registers
1324 LockCallTemps();
Andreas Gampeccc60262014-07-04 18:02:38 -07001325 RegStorage method_reg = TargetReg(kArg1, kRef);
Andreas Gampe4b537a82014-06-30 22:24:53 -07001326 LoadCurrMethodDirect(method_reg); // kArg1 <= current Method*
Andreas Gampeccc60262014-07-04 18:02:38 -07001327 RegStorage class_reg = TargetReg(kArg2, kRef); // kArg2 will hold the Class*
Brian Carlstrom7940e442013-07-12 13:46:57 -07001328 if (needs_access_check) {
1329 // Check we have access to type_idx and if not throw IllegalAccessError,
1330 // returns Class* in kRet0
1331 // InitializeTypeAndVerifyAccess(idx, method)
Andreas Gampe98430592014-07-27 19:44:50 -07001332 CallRuntimeHelperImm(kQuickInitializeTypeAndVerifyAccess, type_idx, true);
Andreas Gampeccc60262014-07-04 18:02:38 -07001333 OpRegCopy(class_reg, TargetReg(kRet0, kRef)); // Align usage with fast path
Brian Carlstrom7940e442013-07-12 13:46:57 -07001334 } else if (use_declaring_class) {
Andreas Gampe4b537a82014-06-30 22:24:53 -07001335 LoadRefDisp(method_reg, mirror::ArtMethod::DeclaringClassOffset().Int32Value(),
Andreas Gampe3c12c512014-06-24 18:46:29 +00001336 class_reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001337 } else {
1338 // Load dex cache entry into class_reg (kArg2)
Andreas Gampe4b537a82014-06-30 22:24:53 -07001339 LoadRefDisp(method_reg, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value(),
Andreas Gampe3c12c512014-06-24 18:46:29 +00001340 class_reg, kNotVolatile);
Andreas Gampe9c3b0892014-04-24 17:33:34 +00001341 int32_t offset_of_type = ClassArray::OffsetOfElement(type_idx).Int32Value();
Andreas Gampe3c12c512014-06-24 18:46:29 +00001342 LoadRefDisp(class_reg, offset_of_type, class_reg, kNotVolatile);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001343 if (!cu_->compiler_driver->CanAssumeTypeIsPresentInDexCache(*cu_->dex_file, type_idx)) {
1344 // Need to test presence of type in dex cache at runtime
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001345 LIR* hop_branch = OpCmpImmBranch(kCondEq, class_reg, 0, NULL);
1346 LIR* cont = NewLIR0(kPseudoTargetLabel);
1347
1348 // Slow path to initialize the type. Executed if the type is NULL.
1349 class SlowPath : public LIRSlowPath {
1350 public:
1351 SlowPath(Mir2Lir* m2l, LIR* fromfast, LIR* cont, const int type_idx,
buzbee2700f7e2014-03-07 09:46:20 -08001352 const RegStorage class_reg) :
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001353 LIRSlowPath(m2l, m2l->GetCurrentDexPc(), fromfast, cont), type_idx_(type_idx),
1354 class_reg_(class_reg) {
1355 }
1356
1357 void Compile() {
1358 GenerateTargetLabel();
1359
1360 // Call out to helper, which will return resolved type in kArg0
1361 // InitializeTypeFromCode(idx, method)
Andreas Gampe98430592014-07-27 19:44:50 -07001362 m2l_->CallRuntimeHelperImmReg(kQuickInitializeType, type_idx_,
1363 m2l_->TargetReg(kArg1, kRef), true);
Andreas Gampeccc60262014-07-04 18:02:38 -07001364 m2l_->OpRegCopy(class_reg_, m2l_->TargetReg(kRet0, kRef)); // Align usage with fast path
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001365 m2l_->OpUnconditionalBranch(cont_);
1366 }
Andreas Gampe2f244e92014-05-08 03:35:25 -07001367
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001368 public:
1369 const int type_idx_;
buzbee2700f7e2014-03-07 09:46:20 -08001370 const RegStorage class_reg_;
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001371 };
1372
buzbee2700f7e2014-03-07 09:46:20 -08001373 AddSlowPath(new (arena_) SlowPath(this, hop_branch, cont, type_idx, class_reg));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001374 }
1375 }
1376 // At this point, class_reg (kArg2) has class
Andreas Gampeccc60262014-07-04 18:02:38 -07001377 LoadValueDirectFixed(rl_src, TargetReg(kArg0, kRef)); // kArg0 <= ref
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001378
1379 // Slow path for the case where the classes are not equal. In this case we need
1380 // to call a helper function to do the check.
1381 class SlowPath : public LIRSlowPath {
1382 public:
1383 SlowPath(Mir2Lir* m2l, LIR* fromfast, LIR* cont, bool load):
1384 LIRSlowPath(m2l, m2l->GetCurrentDexPc(), fromfast, cont), load_(load) {
1385 }
1386
1387 void Compile() {
1388 GenerateTargetLabel();
1389
1390 if (load_) {
Andreas Gampeccc60262014-07-04 18:02:38 -07001391 m2l_->LoadRefDisp(m2l_->TargetReg(kArg0, kRef), mirror::Object::ClassOffset().Int32Value(),
1392 m2l_->TargetReg(kArg1, kRef), kNotVolatile);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001393 }
Andreas Gampe98430592014-07-27 19:44:50 -07001394 m2l_->CallRuntimeHelperRegReg(kQuickCheckCast, m2l_->TargetReg(kArg2, kRef),
1395 m2l_->TargetReg(kArg1, kRef), true);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001396 m2l_->OpUnconditionalBranch(cont_);
1397 }
1398
1399 private:
Mingyao Yang3b004ba2014-04-29 15:55:37 -07001400 const bool load_;
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001401 };
1402
1403 if (type_known_abstract) {
1404 // Easier case, run slow path if target is non-null (slow path will load from target)
Andreas Gampeccc60262014-07-04 18:02:38 -07001405 LIR* branch = OpCmpImmBranch(kCondNe, TargetReg(kArg0, kRef), 0, nullptr);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001406 LIR* cont = NewLIR0(kPseudoTargetLabel);
1407 AddSlowPath(new (arena_) SlowPath(this, branch, cont, true));
1408 } else {
1409 // Harder, more common case. We need to generate a forward branch over the load
1410 // if the target is null. If it's non-null we perform the load and branch to the
1411 // slow path if the classes are not equal.
1412
1413 /* Null is OK - continue */
Andreas Gampeccc60262014-07-04 18:02:38 -07001414 LIR* branch1 = OpCmpImmBranch(kCondEq, TargetReg(kArg0, kRef), 0, nullptr);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001415 /* load object->klass_ */
1416 DCHECK_EQ(mirror::Object::ClassOffset().Int32Value(), 0);
Andreas Gampeccc60262014-07-04 18:02:38 -07001417 LoadRefDisp(TargetReg(kArg0, kRef), mirror::Object::ClassOffset().Int32Value(),
1418 TargetReg(kArg1, kRef), kNotVolatile);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001419
Andreas Gampeccc60262014-07-04 18:02:38 -07001420 LIR* branch2 = OpCmpBranch(kCondNe, TargetReg(kArg1, kRef), class_reg, nullptr);
Dave Allisonbcec6fb2014-01-17 12:52:22 -08001421 LIR* cont = NewLIR0(kPseudoTargetLabel);
1422
1423 // Add the slow path that will not perform load since this is already done.
1424 AddSlowPath(new (arena_) SlowPath(this, branch2, cont, false));
1425
1426 // Set the null check to branch to the continuation.
1427 branch1->target = cont;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001428 }
1429}
1430
1431void Mir2Lir::GenLong3Addr(OpKind first_op, OpKind second_op, RegLocation rl_dest,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001432 RegLocation rl_src1, RegLocation rl_src2) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001433 RegLocation rl_result;
1434 if (cu_->instruction_set == kThumb2) {
1435 /*
1436 * NOTE: This is the one place in the code in which we might have
1437 * as many as six live temporary registers. There are 5 in the normal
1438 * set for Arm. Until we have spill capabilities, temporarily add
1439 * lr to the temp set. It is safe to do this locally, but note that
1440 * lr is used explicitly elsewhere in the code generator and cannot
1441 * normally be used as a general temp register.
1442 */
Andreas Gampeccc60262014-07-04 18:02:38 -07001443 MarkTemp(TargetReg(kLr, kNotWide)); // Add lr to the temp pool
1444 FreeTemp(TargetReg(kLr, kNotWide)); // and make it available
Brian Carlstrom7940e442013-07-12 13:46:57 -07001445 }
1446 rl_src1 = LoadValueWide(rl_src1, kCoreReg);
1447 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
1448 rl_result = EvalLoc(rl_dest, kCoreReg, true);
1449 // The longs may overlap - use intermediate temp if so
buzbee2700f7e2014-03-07 09:46:20 -08001450 if ((rl_result.reg.GetLowReg() == rl_src1.reg.GetHighReg()) || (rl_result.reg.GetLowReg() == rl_src2.reg.GetHighReg())) {
1451 RegStorage t_reg = AllocTemp();
1452 OpRegRegReg(first_op, t_reg, rl_src1.reg.GetLow(), rl_src2.reg.GetLow());
1453 OpRegRegReg(second_op, rl_result.reg.GetHigh(), rl_src1.reg.GetHigh(), rl_src2.reg.GetHigh());
1454 OpRegCopy(rl_result.reg.GetLow(), t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001455 FreeTemp(t_reg);
1456 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001457 OpRegRegReg(first_op, rl_result.reg.GetLow(), rl_src1.reg.GetLow(), rl_src2.reg.GetLow());
1458 OpRegRegReg(second_op, rl_result.reg.GetHigh(), rl_src1.reg.GetHigh(), rl_src2.reg.GetHigh());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001459 }
1460 /*
1461 * NOTE: If rl_dest refers to a frame variable in a large frame, the
1462 * following StoreValueWide might need to allocate a temp register.
1463 * To further work around the lack of a spill capability, explicitly
1464 * free any temps from rl_src1 & rl_src2 that aren't still live in rl_result.
1465 * Remove when spill is functional.
1466 */
1467 FreeRegLocTemps(rl_result, rl_src1);
1468 FreeRegLocTemps(rl_result, rl_src2);
1469 StoreValueWide(rl_dest, rl_result);
1470 if (cu_->instruction_set == kThumb2) {
Andreas Gampeccc60262014-07-04 18:02:38 -07001471 Clobber(TargetReg(kLr, kNotWide));
1472 UnmarkTemp(TargetReg(kLr, kNotWide)); // Remove lr from the temp pool
Brian Carlstrom7940e442013-07-12 13:46:57 -07001473 }
1474}
1475
Andreas Gampe98430592014-07-27 19:44:50 -07001476void Mir2Lir::GenShiftOpLong(Instruction::Code opcode, RegLocation rl_dest,
1477 RegLocation rl_src1, RegLocation rl_shift) {
1478 QuickEntrypointEnum target;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001479 switch (opcode) {
1480 case Instruction::SHL_LONG:
1481 case Instruction::SHL_LONG_2ADDR:
Andreas Gampe98430592014-07-27 19:44:50 -07001482 target = kQuickShlLong;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001483 break;
1484 case Instruction::SHR_LONG:
1485 case Instruction::SHR_LONG_2ADDR:
Andreas Gampe98430592014-07-27 19:44:50 -07001486 target = kQuickShrLong;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001487 break;
1488 case Instruction::USHR_LONG:
1489 case Instruction::USHR_LONG_2ADDR:
Andreas Gampe98430592014-07-27 19:44:50 -07001490 target = kQuickUshrLong;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001491 break;
1492 default:
1493 LOG(FATAL) << "Unexpected case";
Andreas Gampe98430592014-07-27 19:44:50 -07001494 target = kQuickShlLong;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001495 }
Andreas Gampe98430592014-07-27 19:44:50 -07001496 FlushAllRegs(); /* Send everything to home location */
1497 CallRuntimeHelperRegLocationRegLocation(target, rl_src1, rl_shift, false);
buzbeea0cd2d72014-06-01 09:33:49 -07001498 RegLocation rl_result = GetReturnWide(kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001499 StoreValueWide(rl_dest, rl_result);
1500}
1501
1502
1503void Mir2Lir::GenArithOpInt(Instruction::Code opcode, RegLocation rl_dest,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -07001504 RegLocation rl_src1, RegLocation rl_src2, int flags) {
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001505 DCHECK(cu_->instruction_set != kX86 && cu_->instruction_set != kX86_64);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001506 OpKind op = kOpBkpt;
1507 bool is_div_rem = false;
1508 bool check_zero = false;
1509 bool unary = false;
1510 RegLocation rl_result;
1511 bool shift_op = false;
1512 switch (opcode) {
1513 case Instruction::NEG_INT:
1514 op = kOpNeg;
1515 unary = true;
1516 break;
1517 case Instruction::NOT_INT:
1518 op = kOpMvn;
1519 unary = true;
1520 break;
1521 case Instruction::ADD_INT:
1522 case Instruction::ADD_INT_2ADDR:
1523 op = kOpAdd;
1524 break;
1525 case Instruction::SUB_INT:
1526 case Instruction::SUB_INT_2ADDR:
1527 op = kOpSub;
1528 break;
1529 case Instruction::MUL_INT:
1530 case Instruction::MUL_INT_2ADDR:
1531 op = kOpMul;
1532 break;
1533 case Instruction::DIV_INT:
1534 case Instruction::DIV_INT_2ADDR:
1535 check_zero = true;
1536 op = kOpDiv;
1537 is_div_rem = true;
1538 break;
1539 /* NOTE: returns in kArg1 */
1540 case Instruction::REM_INT:
1541 case Instruction::REM_INT_2ADDR:
1542 check_zero = true;
1543 op = kOpRem;
1544 is_div_rem = true;
1545 break;
1546 case Instruction::AND_INT:
1547 case Instruction::AND_INT_2ADDR:
1548 op = kOpAnd;
1549 break;
1550 case Instruction::OR_INT:
1551 case Instruction::OR_INT_2ADDR:
1552 op = kOpOr;
1553 break;
1554 case Instruction::XOR_INT:
1555 case Instruction::XOR_INT_2ADDR:
1556 op = kOpXor;
1557 break;
1558 case Instruction::SHL_INT:
1559 case Instruction::SHL_INT_2ADDR:
1560 shift_op = true;
1561 op = kOpLsl;
1562 break;
1563 case Instruction::SHR_INT:
1564 case Instruction::SHR_INT_2ADDR:
1565 shift_op = true;
1566 op = kOpAsr;
1567 break;
1568 case Instruction::USHR_INT:
1569 case Instruction::USHR_INT_2ADDR:
1570 shift_op = true;
1571 op = kOpLsr;
1572 break;
1573 default:
1574 LOG(FATAL) << "Invalid word arith op: " << opcode;
1575 }
1576 if (!is_div_rem) {
1577 if (unary) {
1578 rl_src1 = LoadValue(rl_src1, kCoreReg);
1579 rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001580 OpRegReg(op, rl_result.reg, rl_src1.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001581 } else {
Serban Constantinescued65c5e2014-05-22 15:10:18 +01001582 if ((shift_op) && (cu_->instruction_set != kArm64)) {
Mark Mendellfeb2b4e2014-01-28 12:59:49 -08001583 rl_src2 = LoadValue(rl_src2, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -08001584 RegStorage t_reg = AllocTemp();
1585 OpRegRegImm(kOpAnd, t_reg, rl_src2.reg, 31);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001586 rl_src1 = LoadValue(rl_src1, kCoreReg);
1587 rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001588 OpRegRegReg(op, rl_result.reg, rl_src1.reg, t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001589 FreeTemp(t_reg);
1590 } else {
1591 rl_src1 = LoadValue(rl_src1, kCoreReg);
1592 rl_src2 = LoadValue(rl_src2, kCoreReg);
1593 rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08001594 OpRegRegReg(op, rl_result.reg, rl_src1.reg, rl_src2.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001595 }
1596 }
1597 StoreValue(rl_dest, rl_result);
1598 } else {
Dave Allison70202782013-10-22 17:52:19 -07001599 bool done = false; // Set to true if we happen to find a way to use a real instruction.
Serban Constantinescued65c5e2014-05-22 15:10:18 +01001600 if (cu_->instruction_set == kMips || cu_->instruction_set == kArm64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001601 rl_src1 = LoadValue(rl_src1, kCoreReg);
1602 rl_src2 = LoadValue(rl_src2, kCoreReg);
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -07001603 if (check_zero && (flags & MIR_IGNORE_DIV_ZERO_CHECK) == 0) {
Mingyao Yangd15f4e22014-04-17 18:46:24 -07001604 GenDivZeroCheck(rl_src2.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001605 }
buzbee2700f7e2014-03-07 09:46:20 -08001606 rl_result = GenDivRem(rl_dest, rl_src1.reg, rl_src2.reg, op == kOpDiv);
Dave Allison70202782013-10-22 17:52:19 -07001607 done = true;
1608 } else if (cu_->instruction_set == kThumb2) {
1609 if (cu_->GetInstructionSetFeatures().HasDivideInstruction()) {
1610 // Use ARM SDIV instruction for division. For remainder we also need to
1611 // calculate using a MUL and subtract.
1612 rl_src1 = LoadValue(rl_src1, kCoreReg);
1613 rl_src2 = LoadValue(rl_src2, kCoreReg);
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -07001614 if (check_zero && (flags & MIR_IGNORE_DIV_ZERO_CHECK) == 0) {
Mingyao Yangd15f4e22014-04-17 18:46:24 -07001615 GenDivZeroCheck(rl_src2.reg);
Dave Allison70202782013-10-22 17:52:19 -07001616 }
buzbee2700f7e2014-03-07 09:46:20 -08001617 rl_result = GenDivRem(rl_dest, rl_src1.reg, rl_src2.reg, op == kOpDiv);
Dave Allison70202782013-10-22 17:52:19 -07001618 done = true;
1619 }
1620 }
1621
1622 // If we haven't already generated the code use the callout function.
1623 if (!done) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001624 FlushAllRegs(); /* Send everything to home location */
Andreas Gampeccc60262014-07-04 18:02:38 -07001625 LoadValueDirectFixed(rl_src2, TargetReg(kArg1, kNotWide));
Andreas Gampe98430592014-07-27 19:44:50 -07001626 RegStorage r_tgt = CallHelperSetup(kQuickIdivmod);
Andreas Gampeccc60262014-07-04 18:02:38 -07001627 LoadValueDirectFixed(rl_src1, TargetReg(kArg0, kNotWide));
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -07001628 if (check_zero && (flags & MIR_IGNORE_DIV_ZERO_CHECK) == 0) {
Andreas Gampeccc60262014-07-04 18:02:38 -07001629 GenDivZeroCheck(TargetReg(kArg1, kNotWide));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001630 }
Dave Allison70202782013-10-22 17:52:19 -07001631 // NOTE: callout here is not a safepoint.
Andreas Gampe98430592014-07-27 19:44:50 -07001632 CallHelper(r_tgt, kQuickIdivmod, false /* not a safepoint */);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001633 if (op == kOpDiv)
buzbeea0cd2d72014-06-01 09:33:49 -07001634 rl_result = GetReturn(kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001635 else
1636 rl_result = GetReturnAlt();
1637 }
1638 StoreValue(rl_dest, rl_result);
1639 }
1640}
1641
1642/*
1643 * The following are the first-level codegen routines that analyze the format
1644 * of each bytecode then either dispatch special purpose codegen routines
1645 * or produce corresponding Thumb instructions directly.
1646 */
1647
Brian Carlstrom7940e442013-07-12 13:46:57 -07001648// Returns true if no more than two bits are set in 'x'.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001649static bool IsPopCountLE2(unsigned int x) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001650 x &= x - 1;
1651 return (x & (x - 1)) == 0;
1652}
1653
Brian Carlstrom7940e442013-07-12 13:46:57 -07001654// Returns true if it added instructions to 'cu' to divide 'rl_src' by 'lit'
1655// and store the result in 'rl_dest'.
buzbee11b63d12013-08-27 07:34:17 -07001656bool Mir2Lir::HandleEasyDivRem(Instruction::Code dalvik_opcode, bool is_div,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001657 RegLocation rl_src, RegLocation rl_dest, int lit) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001658 if ((lit < 2) || ((cu_->instruction_set != kThumb2) && !IsPowerOfTwo(lit))) {
1659 return false;
1660 }
1661 // No divide instruction for Arm, so check for more special cases
1662 if ((cu_->instruction_set == kThumb2) && !IsPowerOfTwo(lit)) {
buzbee11b63d12013-08-27 07:34:17 -07001663 return SmallLiteralDivRem(dalvik_opcode, is_div, rl_src, rl_dest, lit);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001664 }
1665 int k = LowestSetBit(lit);
1666 if (k >= 30) {
1667 // Avoid special cases.
1668 return false;
1669 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001670 rl_src = LoadValue(rl_src, kCoreReg);
1671 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
buzbee11b63d12013-08-27 07:34:17 -07001672 if (is_div) {
buzbee2700f7e2014-03-07 09:46:20 -08001673 RegStorage t_reg = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001674 if (lit == 2) {
1675 // Division by 2 is by far the most common division by constant.
buzbee2700f7e2014-03-07 09:46:20 -08001676 OpRegRegImm(kOpLsr, t_reg, rl_src.reg, 32 - k);
1677 OpRegRegReg(kOpAdd, t_reg, t_reg, rl_src.reg);
1678 OpRegRegImm(kOpAsr, rl_result.reg, t_reg, k);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001679 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001680 OpRegRegImm(kOpAsr, t_reg, rl_src.reg, 31);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001681 OpRegRegImm(kOpLsr, t_reg, t_reg, 32 - k);
buzbee2700f7e2014-03-07 09:46:20 -08001682 OpRegRegReg(kOpAdd, t_reg, t_reg, rl_src.reg);
1683 OpRegRegImm(kOpAsr, rl_result.reg, t_reg, k);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001684 }
1685 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001686 RegStorage t_reg1 = AllocTemp();
1687 RegStorage t_reg2 = AllocTemp();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001688 if (lit == 2) {
buzbee2700f7e2014-03-07 09:46:20 -08001689 OpRegRegImm(kOpLsr, t_reg1, rl_src.reg, 32 - k);
1690 OpRegRegReg(kOpAdd, t_reg2, t_reg1, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001691 OpRegRegImm(kOpAnd, t_reg2, t_reg2, lit -1);
buzbee2700f7e2014-03-07 09:46:20 -08001692 OpRegRegReg(kOpSub, rl_result.reg, t_reg2, t_reg1);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001693 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001694 OpRegRegImm(kOpAsr, t_reg1, rl_src.reg, 31);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001695 OpRegRegImm(kOpLsr, t_reg1, t_reg1, 32 - k);
buzbee2700f7e2014-03-07 09:46:20 -08001696 OpRegRegReg(kOpAdd, t_reg2, t_reg1, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001697 OpRegRegImm(kOpAnd, t_reg2, t_reg2, lit - 1);
buzbee2700f7e2014-03-07 09:46:20 -08001698 OpRegRegReg(kOpSub, rl_result.reg, t_reg2, t_reg1);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001699 }
1700 }
1701 StoreValue(rl_dest, rl_result);
1702 return true;
1703}
1704
1705// Returns true if it added instructions to 'cu' to multiply 'rl_src' by 'lit'
1706// and store the result in 'rl_dest'.
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001707bool Mir2Lir::HandleEasyMultiply(RegLocation rl_src, RegLocation rl_dest, int lit) {
Ian Rogerse2143c02014-03-28 08:47:16 -07001708 if (lit < 0) {
1709 return false;
1710 }
1711 if (lit == 0) {
1712 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1713 LoadConstant(rl_result.reg, 0);
1714 StoreValue(rl_dest, rl_result);
1715 return true;
1716 }
1717 if (lit == 1) {
1718 rl_src = LoadValue(rl_src, kCoreReg);
1719 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1720 OpRegCopy(rl_result.reg, rl_src.reg);
1721 StoreValue(rl_dest, rl_result);
1722 return true;
1723 }
Zheng Xuf9719f92014-04-02 13:31:31 +01001724 // There is RegRegRegShift on Arm, so check for more special cases
1725 if (cu_->instruction_set == kThumb2) {
Ian Rogerse2143c02014-03-28 08:47:16 -07001726 return EasyMultiply(rl_src, rl_dest, lit);
1727 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07001728 // Can we simplify this multiplication?
1729 bool power_of_two = false;
1730 bool pop_count_le2 = false;
1731 bool power_of_two_minus_one = false;
Ian Rogerse2143c02014-03-28 08:47:16 -07001732 if (IsPowerOfTwo(lit)) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001733 power_of_two = true;
1734 } else if (IsPopCountLE2(lit)) {
1735 pop_count_le2 = true;
1736 } else if (IsPowerOfTwo(lit + 1)) {
1737 power_of_two_minus_one = true;
1738 } else {
1739 return false;
1740 }
1741 rl_src = LoadValue(rl_src, kCoreReg);
1742 RegLocation rl_result = EvalLoc(rl_dest, kCoreReg, true);
1743 if (power_of_two) {
1744 // Shift.
buzbee2700f7e2014-03-07 09:46:20 -08001745 OpRegRegImm(kOpLsl, rl_result.reg, rl_src.reg, LowestSetBit(lit));
Brian Carlstrom7940e442013-07-12 13:46:57 -07001746 } else if (pop_count_le2) {
1747 // Shift and add and shift.
1748 int first_bit = LowestSetBit(lit);
1749 int second_bit = LowestSetBit(lit ^ (1 << first_bit));
1750 GenMultiplyByTwoBitMultiplier(rl_src, rl_result, lit, first_bit, second_bit);
1751 } else {
1752 // Reverse subtract: (src << (shift + 1)) - src.
1753 DCHECK(power_of_two_minus_one);
1754 // TUNING: rsb dst, src, src lsl#LowestSetBit(lit + 1)
buzbee2700f7e2014-03-07 09:46:20 -08001755 RegStorage t_reg = AllocTemp();
1756 OpRegRegImm(kOpLsl, t_reg, rl_src.reg, LowestSetBit(lit + 1));
1757 OpRegRegReg(kOpSub, rl_result.reg, t_reg, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001758 }
1759 StoreValue(rl_dest, rl_result);
1760 return true;
1761}
1762
1763void Mir2Lir::GenArithOpIntLit(Instruction::Code opcode, RegLocation rl_dest, RegLocation rl_src,
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07001764 int lit) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001765 RegLocation rl_result;
1766 OpKind op = static_cast<OpKind>(0); /* Make gcc happy */
1767 int shift_op = false;
1768 bool is_div = false;
1769
1770 switch (opcode) {
1771 case Instruction::RSUB_INT_LIT8:
1772 case Instruction::RSUB_INT: {
1773 rl_src = LoadValue(rl_src, kCoreReg);
1774 rl_result = EvalLoc(rl_dest, kCoreReg, true);
1775 if (cu_->instruction_set == kThumb2) {
buzbee2700f7e2014-03-07 09:46:20 -08001776 OpRegRegImm(kOpRsub, rl_result.reg, rl_src.reg, lit);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001777 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001778 OpRegReg(kOpNeg, rl_result.reg, rl_src.reg);
1779 OpRegImm(kOpAdd, rl_result.reg, lit);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001780 }
1781 StoreValue(rl_dest, rl_result);
1782 return;
1783 }
1784
1785 case Instruction::SUB_INT:
1786 case Instruction::SUB_INT_2ADDR:
1787 lit = -lit;
Ian Rogersfc787ec2014-10-09 21:56:44 -07001788 FALLTHROUGH_INTENDED;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001789 case Instruction::ADD_INT:
1790 case Instruction::ADD_INT_2ADDR:
1791 case Instruction::ADD_INT_LIT8:
1792 case Instruction::ADD_INT_LIT16:
1793 op = kOpAdd;
1794 break;
1795 case Instruction::MUL_INT:
1796 case Instruction::MUL_INT_2ADDR:
1797 case Instruction::MUL_INT_LIT8:
1798 case Instruction::MUL_INT_LIT16: {
1799 if (HandleEasyMultiply(rl_src, rl_dest, lit)) {
1800 return;
1801 }
1802 op = kOpMul;
1803 break;
1804 }
1805 case Instruction::AND_INT:
1806 case Instruction::AND_INT_2ADDR:
1807 case Instruction::AND_INT_LIT8:
1808 case Instruction::AND_INT_LIT16:
1809 op = kOpAnd;
1810 break;
1811 case Instruction::OR_INT:
1812 case Instruction::OR_INT_2ADDR:
1813 case Instruction::OR_INT_LIT8:
1814 case Instruction::OR_INT_LIT16:
1815 op = kOpOr;
1816 break;
1817 case Instruction::XOR_INT:
1818 case Instruction::XOR_INT_2ADDR:
1819 case Instruction::XOR_INT_LIT8:
1820 case Instruction::XOR_INT_LIT16:
1821 op = kOpXor;
1822 break;
1823 case Instruction::SHL_INT_LIT8:
1824 case Instruction::SHL_INT:
1825 case Instruction::SHL_INT_2ADDR:
1826 lit &= 31;
1827 shift_op = true;
1828 op = kOpLsl;
1829 break;
1830 case Instruction::SHR_INT_LIT8:
1831 case Instruction::SHR_INT:
1832 case Instruction::SHR_INT_2ADDR:
1833 lit &= 31;
1834 shift_op = true;
1835 op = kOpAsr;
1836 break;
1837 case Instruction::USHR_INT_LIT8:
1838 case Instruction::USHR_INT:
1839 case Instruction::USHR_INT_2ADDR:
1840 lit &= 31;
1841 shift_op = true;
1842 op = kOpLsr;
1843 break;
1844
1845 case Instruction::DIV_INT:
1846 case Instruction::DIV_INT_2ADDR:
1847 case Instruction::DIV_INT_LIT8:
1848 case Instruction::DIV_INT_LIT16:
1849 case Instruction::REM_INT:
1850 case Instruction::REM_INT_2ADDR:
1851 case Instruction::REM_INT_LIT8:
1852 case Instruction::REM_INT_LIT16: {
1853 if (lit == 0) {
Mingyao Yange643a172014-04-08 11:02:52 -07001854 GenDivZeroException();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001855 return;
1856 }
buzbee11b63d12013-08-27 07:34:17 -07001857 if ((opcode == Instruction::DIV_INT) ||
Brian Carlstrom7940e442013-07-12 13:46:57 -07001858 (opcode == Instruction::DIV_INT_2ADDR) ||
buzbee11b63d12013-08-27 07:34:17 -07001859 (opcode == Instruction::DIV_INT_LIT8) ||
Brian Carlstrom7940e442013-07-12 13:46:57 -07001860 (opcode == Instruction::DIV_INT_LIT16)) {
1861 is_div = true;
1862 } else {
1863 is_div = false;
1864 }
buzbee11b63d12013-08-27 07:34:17 -07001865 if (HandleEasyDivRem(opcode, is_div, rl_src, rl_dest, lit)) {
1866 return;
1867 }
Dave Allison70202782013-10-22 17:52:19 -07001868
1869 bool done = false;
Serban Constantinescued65c5e2014-05-22 15:10:18 +01001870 if (cu_->instruction_set == kMips || cu_->instruction_set == kArm64) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001871 rl_src = LoadValue(rl_src, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -08001872 rl_result = GenDivRemLit(rl_dest, rl_src.reg, lit, is_div);
Dave Allison70202782013-10-22 17:52:19 -07001873 done = true;
Dmitry Petrochenko6a58cb12014-04-02 17:27:59 +07001874 } else if (cu_->instruction_set == kX86 || cu_->instruction_set == kX86_64) {
Mark Mendell2bf31e62014-01-23 12:13:40 -08001875 rl_result = GenDivRemLit(rl_dest, rl_src, lit, is_div);
1876 done = true;
Dave Allison70202782013-10-22 17:52:19 -07001877 } else if (cu_->instruction_set == kThumb2) {
1878 if (cu_->GetInstructionSetFeatures().HasDivideInstruction()) {
1879 // Use ARM SDIV instruction for division. For remainder we also need to
1880 // calculate using a MUL and subtract.
1881 rl_src = LoadValue(rl_src, kCoreReg);
buzbee2700f7e2014-03-07 09:46:20 -08001882 rl_result = GenDivRemLit(rl_dest, rl_src.reg, lit, is_div);
Dave Allison70202782013-10-22 17:52:19 -07001883 done = true;
1884 }
1885 }
1886
1887 if (!done) {
1888 FlushAllRegs(); /* Everything to home location. */
Andreas Gampeccc60262014-07-04 18:02:38 -07001889 LoadValueDirectFixed(rl_src, TargetReg(kArg0, kNotWide));
1890 Clobber(TargetReg(kArg0, kNotWide));
Andreas Gampe98430592014-07-27 19:44:50 -07001891 CallRuntimeHelperRegImm(kQuickIdivmod, TargetReg(kArg0, kNotWide), lit, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001892 if (is_div)
buzbeea0cd2d72014-06-01 09:33:49 -07001893 rl_result = GetReturn(kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001894 else
1895 rl_result = GetReturnAlt();
1896 }
1897 StoreValue(rl_dest, rl_result);
1898 return;
1899 }
1900 default:
1901 LOG(FATAL) << "Unexpected opcode " << opcode;
1902 }
1903 rl_src = LoadValue(rl_src, kCoreReg);
1904 rl_result = EvalLoc(rl_dest, kCoreReg, true);
Dave Allison70202782013-10-22 17:52:19 -07001905 // Avoid shifts by literal 0 - no support in Thumb. Change to copy.
Brian Carlstrom7940e442013-07-12 13:46:57 -07001906 if (shift_op && (lit == 0)) {
buzbee2700f7e2014-03-07 09:46:20 -08001907 OpRegCopy(rl_result.reg, rl_src.reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001908 } else {
buzbee2700f7e2014-03-07 09:46:20 -08001909 OpRegRegImm(op, rl_result.reg, rl_src.reg, lit);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001910 }
1911 StoreValue(rl_dest, rl_result);
1912}
1913
Andreas Gampe98430592014-07-27 19:44:50 -07001914void Mir2Lir::GenArithOpLong(Instruction::Code opcode, RegLocation rl_dest,
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -07001915 RegLocation rl_src1, RegLocation rl_src2, int flags) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07001916 RegLocation rl_result;
1917 OpKind first_op = kOpBkpt;
1918 OpKind second_op = kOpBkpt;
1919 bool call_out = false;
1920 bool check_zero = false;
Andreas Gampe98430592014-07-27 19:44:50 -07001921 int ret_reg = TargetReg(kRet0, kNotWide).GetReg();
1922 QuickEntrypointEnum target;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001923
1924 switch (opcode) {
1925 case Instruction::NOT_LONG:
Andreas Gampe98430592014-07-27 19:44:50 -07001926 rl_src2 = LoadValueWide(rl_src2, kCoreReg);
1927 rl_result = EvalLoc(rl_dest, kCoreReg, true);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001928 // Check for destructive overlap
buzbee2700f7e2014-03-07 09:46:20 -08001929 if (rl_result.reg.GetLowReg() == rl_src2.reg.GetHighReg()) {
Andreas Gampe98430592014-07-27 19:44:50 -07001930 RegStorage t_reg = AllocTemp();
1931 OpRegCopy(t_reg, rl_src2.reg.GetHigh());
1932 OpRegReg(kOpMvn, rl_result.reg.GetLow(), rl_src2.reg.GetLow());
1933 OpRegReg(kOpMvn, rl_result.reg.GetHigh(), t_reg);
1934 FreeTemp(t_reg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001935 } else {
Andreas Gampe98430592014-07-27 19:44:50 -07001936 OpRegReg(kOpMvn, rl_result.reg.GetLow(), rl_src2.reg.GetLow());
1937 OpRegReg(kOpMvn, rl_result.reg.GetHigh(), rl_src2.reg.GetHigh());
Brian Carlstrom7940e442013-07-12 13:46:57 -07001938 }
Andreas Gampe98430592014-07-27 19:44:50 -07001939 StoreValueWide(rl_dest, rl_result);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001940 return;
1941 case Instruction::ADD_LONG:
1942 case Instruction::ADD_LONG_2ADDR:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001943 first_op = kOpAdd;
1944 second_op = kOpAdc;
1945 break;
1946 case Instruction::SUB_LONG:
1947 case Instruction::SUB_LONG_2ADDR:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001948 first_op = kOpSub;
1949 second_op = kOpSbc;
1950 break;
1951 case Instruction::MUL_LONG:
1952 case Instruction::MUL_LONG_2ADDR:
Andreas Gampec76c6142014-08-04 16:30:03 -07001953 call_out = true;
1954 ret_reg = TargetReg(kRet0, kNotWide).GetReg();
1955 target = kQuickLmul;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001956 break;
1957 case Instruction::DIV_LONG:
1958 case Instruction::DIV_LONG_2ADDR:
1959 call_out = true;
1960 check_zero = true;
Andreas Gampe98430592014-07-27 19:44:50 -07001961 ret_reg = TargetReg(kRet0, kNotWide).GetReg();
1962 target = kQuickLdiv;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001963 break;
1964 case Instruction::REM_LONG:
1965 case Instruction::REM_LONG_2ADDR:
1966 call_out = true;
1967 check_zero = true;
Andreas Gampe98430592014-07-27 19:44:50 -07001968 target = kQuickLmod;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001969 /* NOTE - for Arm, result is in kArg2/kArg3 instead of kRet0/kRet1 */
Andreas Gampe98430592014-07-27 19:44:50 -07001970 ret_reg = (cu_->instruction_set == kThumb2) ? TargetReg(kArg2, kNotWide).GetReg() :
1971 TargetReg(kRet0, kNotWide).GetReg();
Brian Carlstrom7940e442013-07-12 13:46:57 -07001972 break;
1973 case Instruction::AND_LONG_2ADDR:
1974 case Instruction::AND_LONG:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001975 first_op = kOpAnd;
1976 second_op = kOpAnd;
1977 break;
1978 case Instruction::OR_LONG:
1979 case Instruction::OR_LONG_2ADDR:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001980 first_op = kOpOr;
1981 second_op = kOpOr;
1982 break;
1983 case Instruction::XOR_LONG:
1984 case Instruction::XOR_LONG_2ADDR:
Brian Carlstrom7940e442013-07-12 13:46:57 -07001985 first_op = kOpXor;
1986 second_op = kOpXor;
1987 break;
Brian Carlstrom7940e442013-07-12 13:46:57 -07001988 default:
1989 LOG(FATAL) << "Invalid long arith op";
1990 }
1991 if (!call_out) {
Andreas Gampe98430592014-07-27 19:44:50 -07001992 GenLong3Addr(first_op, second_op, rl_dest, rl_src1, rl_src2);
Brian Carlstrom7940e442013-07-12 13:46:57 -07001993 } else {
Andreas Gampe98430592014-07-27 19:44:50 -07001994 FlushAllRegs(); /* Send everything to home location */
Brian Carlstrom7940e442013-07-12 13:46:57 -07001995 if (check_zero) {
Andreas Gampe98430592014-07-27 19:44:50 -07001996 RegStorage r_tmp1 = TargetReg(kArg0, kWide);
1997 RegStorage r_tmp2 = TargetReg(kArg2, kWide);
1998 LoadValueDirectWideFixed(rl_src2, r_tmp2);
1999 RegStorage r_tgt = CallHelperSetup(target);
Razvan A Lupusoru5c5676b2014-09-29 16:42:11 -07002000 if ((flags & MIR_IGNORE_DIV_ZERO_CHECK) == 0) {
2001 GenDivZeroCheckWide(r_tmp2);
2002 }
Andreas Gampe98430592014-07-27 19:44:50 -07002003 LoadValueDirectWideFixed(rl_src1, r_tmp1);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002004 // NOTE: callout here is not a safepoint
Andreas Gampe98430592014-07-27 19:44:50 -07002005 CallHelper(r_tgt, target, false /* not safepoint */);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002006 } else {
Andreas Gampe98430592014-07-27 19:44:50 -07002007 CallRuntimeHelperRegLocationRegLocation(target, rl_src1, rl_src2, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002008 }
2009 // Adjust return regs in to handle case of rem returning kArg2/kArg3
Andreas Gampe98430592014-07-27 19:44:50 -07002010 if (ret_reg == TargetReg(kRet0, kNotWide).GetReg())
2011 rl_result = GetReturnWide(kCoreReg);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002012 else
Andreas Gampe98430592014-07-27 19:44:50 -07002013 rl_result = GetReturnWideAlt();
2014 StoreValueWide(rl_dest, rl_result);
Andreas Gampe2f244e92014-05-08 03:35:25 -07002015 }
2016}
2017
Mark Mendelle87f9b52014-04-30 14:13:18 -04002018void Mir2Lir::GenConst(RegLocation rl_dest, int value) {
2019 RegLocation rl_result = EvalLoc(rl_dest, kAnyReg, true);
2020 LoadConstantNoClobber(rl_result.reg, value);
2021 StoreValue(rl_dest, rl_result);
2022 if (value == 0) {
2023 Workaround7250540(rl_dest, rl_result.reg);
2024 }
2025}
2026
Andreas Gampe98430592014-07-27 19:44:50 -07002027void Mir2Lir::GenConversionCall(QuickEntrypointEnum trampoline, RegLocation rl_dest,
2028 RegLocation rl_src) {
Brian Carlstrom7940e442013-07-12 13:46:57 -07002029 /*
2030 * Don't optimize the register usage since it calls out to support
2031 * functions
2032 */
Andreas Gampe2f244e92014-05-08 03:35:25 -07002033
Brian Carlstrom7940e442013-07-12 13:46:57 -07002034 FlushAllRegs(); /* Send everything to home location */
Andreas Gampe98430592014-07-27 19:44:50 -07002035 CallRuntimeHelperRegLocation(trampoline, rl_src, false);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002036 if (rl_dest.wide) {
2037 RegLocation rl_result;
buzbeea0cd2d72014-06-01 09:33:49 -07002038 rl_result = GetReturnWide(LocToRegClass(rl_dest));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002039 StoreValueWide(rl_dest, rl_result);
2040 } else {
2041 RegLocation rl_result;
buzbeea0cd2d72014-06-01 09:33:49 -07002042 rl_result = GetReturn(LocToRegClass(rl_dest));
Brian Carlstrom7940e442013-07-12 13:46:57 -07002043 StoreValue(rl_dest, rl_result);
2044 }
2045}
2046
Mingyao Yang6ffcfa02014-04-25 11:06:00 -07002047class SuspendCheckSlowPath : public Mir2Lir::LIRSlowPath {
2048 public:
2049 SuspendCheckSlowPath(Mir2Lir* m2l, LIR* branch, LIR* cont)
2050 : LIRSlowPath(m2l, m2l->GetCurrentDexPc(), branch, cont) {
2051 }
2052
2053 void Compile() OVERRIDE {
2054 m2l_->ResetRegPool();
2055 m2l_->ResetDefTracking();
2056 GenerateTargetLabel(kPseudoSuspendTarget);
Andreas Gampe98430592014-07-27 19:44:50 -07002057 m2l_->CallRuntimeHelper(kQuickTestSuspend, true);
Mingyao Yang6ffcfa02014-04-25 11:06:00 -07002058 if (cont_ != nullptr) {
2059 m2l_->OpUnconditionalBranch(cont_);
2060 }
2061 }
2062};
2063
Brian Carlstrom7940e442013-07-12 13:46:57 -07002064/* Check if we need to check for pending suspend request */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07002065void Mir2Lir::GenSuspendTest(int opt_flags) {
Dave Allison69dfe512014-07-11 17:11:58 +00002066 if (!cu_->compiler_driver->GetCompilerOptions().GetImplicitSuspendChecks()) {
Dave Allisonb373e092014-02-20 16:06:36 -08002067 if (NO_SUSPEND || (opt_flags & MIR_IGNORE_SUSPEND_CHECK)) {
2068 return;
2069 }
2070 FlushAllRegs();
2071 LIR* branch = OpTestSuspend(NULL);
Mingyao Yang6ffcfa02014-04-25 11:06:00 -07002072 LIR* cont = NewLIR0(kPseudoTargetLabel);
2073 AddSlowPath(new (arena_) SuspendCheckSlowPath(this, branch, cont));
Dave Allisonb373e092014-02-20 16:06:36 -08002074 } else {
2075 if (NO_SUSPEND || (opt_flags & MIR_IGNORE_SUSPEND_CHECK)) {
2076 return;
2077 }
2078 FlushAllRegs(); // TODO: needed?
2079 LIR* inst = CheckSuspendUsingLoad();
2080 MarkSafepointPC(inst);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002081 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002082}
2083
2084/* Check if we need to check for pending suspend request */
Brian Carlstrom2ce745c2013-07-17 17:44:30 -07002085void Mir2Lir::GenSuspendTestAndBranch(int opt_flags, LIR* target) {
Dave Allison69dfe512014-07-11 17:11:58 +00002086 if (!cu_->compiler_driver->GetCompilerOptions().GetImplicitSuspendChecks()) {
Dave Allisonb373e092014-02-20 16:06:36 -08002087 if (NO_SUSPEND || (opt_flags & MIR_IGNORE_SUSPEND_CHECK)) {
2088 OpUnconditionalBranch(target);
2089 return;
2090 }
2091 OpTestSuspend(target);
Dave Allisonb373e092014-02-20 16:06:36 -08002092 FlushAllRegs();
Mingyao Yang6ffcfa02014-04-25 11:06:00 -07002093 LIR* branch = OpUnconditionalBranch(nullptr);
2094 AddSlowPath(new (arena_) SuspendCheckSlowPath(this, branch, target));
Dave Allisonb373e092014-02-20 16:06:36 -08002095 } else {
2096 // For the implicit suspend check, just perform the trigger
2097 // load and branch to the target.
2098 if (NO_SUSPEND || (opt_flags & MIR_IGNORE_SUSPEND_CHECK)) {
2099 OpUnconditionalBranch(target);
2100 return;
2101 }
2102 FlushAllRegs();
2103 LIR* inst = CheckSuspendUsingLoad();
2104 MarkSafepointPC(inst);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002105 OpUnconditionalBranch(target);
Brian Carlstrom7940e442013-07-12 13:46:57 -07002106 }
Brian Carlstrom7940e442013-07-12 13:46:57 -07002107}
2108
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002109/* Call out to helper assembly routine that will null check obj and then lock it. */
2110void Mir2Lir::GenMonitorEnter(int opt_flags, RegLocation rl_src) {
2111 FlushAllRegs();
Andreas Gampe98430592014-07-27 19:44:50 -07002112 CallRuntimeHelperRegLocation(kQuickLockObject, rl_src, true);
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002113}
2114
2115/* Call out to helper assembly routine that will null check obj and then unlock it. */
2116void Mir2Lir::GenMonitorExit(int opt_flags, RegLocation rl_src) {
2117 FlushAllRegs();
Andreas Gampe98430592014-07-27 19:44:50 -07002118 CallRuntimeHelperRegLocation(kQuickUnlockObject, rl_src, true);
Ian Rogersd9c4fc92013-10-01 19:45:43 -07002119}
2120
Bill Buzbeed61ba4b2014-01-13 21:44:01 +00002121/* Generic code for generating a wide constant into a VR. */
2122void Mir2Lir::GenConstWide(RegLocation rl_dest, int64_t value) {
2123 RegLocation rl_result = EvalLoc(rl_dest, kAnyReg, true);
buzbee2700f7e2014-03-07 09:46:20 -08002124 LoadConstantWide(rl_result.reg, value);
Bill Buzbeed61ba4b2014-01-13 21:44:01 +00002125 StoreValueWide(rl_dest, rl_result);
2126}
2127
Andreas Gampe48971b32014-08-06 10:09:01 -07002128void Mir2Lir::GenSmallPackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -07002129 const uint16_t* table = mir_graph_->GetTable(mir, table_offset);
Andreas Gampe48971b32014-08-06 10:09:01 -07002130 const uint16_t entries = table[1];
2131 // Chained cmp-and-branch.
2132 const int32_t* as_int32 = reinterpret_cast<const int32_t*>(&table[2]);
2133 int32_t current_key = as_int32[0];
2134 const int32_t* targets = &as_int32[1];
2135 rl_src = LoadValue(rl_src, kCoreReg);
2136 int i = 0;
2137 for (; i < entries; i++, current_key++) {
2138 if (!InexpensiveConstantInt(current_key, Instruction::Code::IF_EQ)) {
2139 // Switch to using a temp and add.
2140 break;
2141 }
2142 BasicBlock* case_block =
2143 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]);
2144 OpCmpImmBranch(kCondEq, rl_src.reg, current_key, &block_label_list_[case_block->id]);
2145 }
2146 if (i < entries) {
2147 // The rest do not seem to be inexpensive. Try to allocate a temp and use add.
2148 RegStorage key_temp = AllocTypedTemp(false, kCoreReg, false);
2149 if (key_temp.Valid()) {
2150 LoadConstantNoClobber(key_temp, current_key);
2151 for (; i < entries - 1; i++, current_key++) {
2152 BasicBlock* case_block =
2153 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]);
2154 OpCmpBranch(kCondEq, rl_src.reg, key_temp, &block_label_list_[case_block->id]);
2155 OpRegImm(kOpAdd, key_temp, 1); // Increment key.
2156 }
2157 BasicBlock* case_block =
2158 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]);
2159 OpCmpBranch(kCondEq, rl_src.reg, key_temp, &block_label_list_[case_block->id]);
2160 } else {
2161 // No free temp, just finish the old loop.
2162 for (; i < entries; i++, current_key++) {
2163 BasicBlock* case_block =
2164 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]);
2165 OpCmpImmBranch(kCondEq, rl_src.reg, current_key, &block_label_list_[case_block->id]);
2166 }
2167 }
2168 }
2169}
2170
2171void Mir2Lir::GenPackedSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -07002172 const uint16_t* table = mir_graph_->GetTable(mir, table_offset);
Andreas Gampe48971b32014-08-06 10:09:01 -07002173 if (cu_->verbose) {
2174 DumpSparseSwitchTable(table);
2175 }
2176
2177 const uint16_t entries = table[1];
2178 if (entries <= kSmallSwitchThreshold) {
2179 GenSmallPackedSwitch(mir, table_offset, rl_src);
2180 } else {
2181 // Use the backend-specific implementation.
2182 GenLargePackedSwitch(mir, table_offset, rl_src);
2183 }
2184}
2185
2186void Mir2Lir::GenSmallSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -07002187 const uint16_t* table = mir_graph_->GetTable(mir, table_offset);
Andreas Gampe48971b32014-08-06 10:09:01 -07002188 const uint16_t entries = table[1];
2189 // Chained cmp-and-branch.
2190 const int32_t* keys = reinterpret_cast<const int32_t*>(&table[2]);
2191 const int32_t* targets = &keys[entries];
2192 rl_src = LoadValue(rl_src, kCoreReg);
2193 for (int i = 0; i < entries; i++) {
2194 int key = keys[i];
2195 BasicBlock* case_block =
2196 mir_graph_->FindBlock(current_dalvik_offset_ + targets[i]);
2197 OpCmpImmBranch(kCondEq, rl_src.reg, key, &block_label_list_[case_block->id]);
2198 }
2199}
2200
2201void Mir2Lir::GenSparseSwitch(MIR* mir, DexOffset table_offset, RegLocation rl_src) {
Razvan A Lupusoru8d0d03e2014-06-06 17:04:52 -07002202 const uint16_t* table = mir_graph_->GetTable(mir, table_offset);
Andreas Gampe48971b32014-08-06 10:09:01 -07002203 if (cu_->verbose) {
2204 DumpSparseSwitchTable(table);
2205 }
2206
2207 const uint16_t entries = table[1];
2208 if (entries <= kSmallSwitchThreshold) {
2209 GenSmallSparseSwitch(mir, table_offset, rl_src);
2210 } else {
2211 // Use the backend-specific implementation.
2212 GenLargeSparseSwitch(mir, table_offset, rl_src);
2213 }
2214}
2215
Fred Shih37f05ef2014-07-16 18:38:08 -07002216bool Mir2Lir::SizeMatchesTypeForEntrypoint(OpSize size, Primitive::Type type) {
2217 switch (size) {
2218 case kReference:
2219 return type == Primitive::kPrimNot;
2220 case k64:
2221 case kDouble:
2222 return type == Primitive::kPrimLong || type == Primitive::kPrimDouble;
2223 case k32:
2224 case kSingle:
2225 return type == Primitive::kPrimInt || type == Primitive::kPrimFloat;
2226 case kSignedHalf:
2227 return type == Primitive::kPrimShort;
2228 case kUnsignedHalf:
2229 return type == Primitive::kPrimChar;
2230 case kSignedByte:
2231 return type == Primitive::kPrimByte;
2232 case kUnsignedByte:
2233 return type == Primitive::kPrimBoolean;
2234 case kWord: // Intentional fallthrough.
2235 default:
2236 return false; // There are no sane types with this op size.
2237 }
2238}
2239
Brian Carlstrom7940e442013-07-12 13:46:57 -07002240} // namespace art