blob: bcdfccdd16eaacb377320fcdf2ded3b58ec34b5d [file] [log] [blame]
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "code_generator_arm.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000018
Calin Juravle34166012014-12-19 17:22:29 +000019#include "arch/arm/instruction_set_features_arm.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070020#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010021#include "gc/accounting/card_table.h"
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -080022#include "intrinsics.h"
23#include "intrinsics_arm.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070024#include "mirror/array-inl.h"
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000025#include "mirror/art_method.h"
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +010026#include "mirror/class.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070027#include "thread.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010028#include "utils/arm/assembler_arm.h"
29#include "utils/arm/managed_register_arm.h"
Roland Levillain946e1432014-11-11 17:35:19 +000030#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010031#include "utils/stack_checks.h"
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000032
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000033namespace art {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010034
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000035namespace arm {
36
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +000037static bool ExpectedPairLayout(Location location) {
38 // We expected this for both core and fpu register pairs.
39 return ((location.low() & 1) == 0) && (location.low() + 1 == location.high());
40}
41
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010042static constexpr int kCurrentMethodStackOffset = 0;
43
Nicolas Geoffray4dee6362015-01-23 18:23:14 +000044// We unconditionally allocate R5 to ensure we can do long operations
45// with baseline.
46static constexpr Register kCoreSavedRegisterForBaseline = R5;
47static constexpr Register kCoreCalleeSaves[] =
48 { R5, R6, R7, R8, R10, R11, PC };
49static constexpr SRegister kFpuCalleeSaves[] =
50 { S16, S17, S18, S19, S20, S21, S22, S23, S24, S25, S26, S27, S28, S29, S30, S31 };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010051
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +000052// D31 cannot be split into two S registers, and the register allocator only works on
53// S registers. Therefore there is no need to block it.
54static constexpr DRegister DTMP = D31;
55
Nicolas Geoffraye5038322014-07-04 09:41:32 +010056#define __ reinterpret_cast<ArmAssembler*>(codegen->GetAssembler())->
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010057#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArmWordSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010058
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010059class NullCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010060 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010061 explicit NullCheckSlowPathARM(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010062
Alexandre Rames67555f72014-11-18 10:55:16 +000063 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010064 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010065 __ Bind(GetEntryLabel());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010066 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +000067 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010068 }
69
70 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010071 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010072 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM);
73};
74
Calin Juravled0d48522014-11-04 16:40:20 +000075class DivZeroCheckSlowPathARM : public SlowPathCodeARM {
76 public:
77 explicit DivZeroCheckSlowPathARM(HDivZeroCheck* instruction) : instruction_(instruction) {}
78
Alexandre Rames67555f72014-11-18 10:55:16 +000079 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000080 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
81 __ Bind(GetEntryLabel());
82 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +000083 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc(), this);
Calin Juravled0d48522014-11-04 16:40:20 +000084 }
85
86 private:
87 HDivZeroCheck* const instruction_;
88 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM);
89};
90
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010091class SuspendCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +000092 public:
Alexandre Rames67555f72014-11-18 10:55:16 +000093 SuspendCheckSlowPathARM(HSuspendCheck* instruction, HBasicBlock* successor)
Nicolas Geoffray3c049742014-09-24 18:10:46 +010094 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +000095
Alexandre Rames67555f72014-11-18 10:55:16 +000096 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010097 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +000098 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +000099 SaveLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100100 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000101 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000102 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100103 if (successor_ == nullptr) {
104 __ b(GetReturnLabel());
105 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100106 __ b(arm_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100107 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000108 }
109
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100110 Label* GetReturnLabel() {
111 DCHECK(successor_ == nullptr);
112 return &return_label_;
113 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000114
115 private:
116 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100117 // If not null, the block to branch to after the suspend check.
118 HBasicBlock* const successor_;
119
120 // If `successor_` is null, the label to branch to after the suspend check.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000121 Label return_label_;
122
123 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM);
124};
125
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100126class BoundsCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100127 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100128 BoundsCheckSlowPathARM(HBoundsCheck* instruction,
129 Location index_location,
130 Location length_location)
Nicolas Geoffray39468442014-09-02 15:17:15 +0100131 : instruction_(instruction),
132 index_location_(index_location),
133 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100134
Alexandre Rames67555f72014-11-18 10:55:16 +0000135 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100136 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100137 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000138 // We're moving two locations to locations that could overlap, so we need a parallel
139 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100140 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000141 codegen->EmitParallelMoves(
142 index_location_,
143 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100144 Primitive::kPrimInt,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000145 length_location_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100146 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
147 Primitive::kPrimInt);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100148 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000149 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100150 }
151
152 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100153 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100154 const Location index_location_;
155 const Location length_location_;
156
157 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM);
158};
159
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000160class LoadClassSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100161 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000162 LoadClassSlowPathARM(HLoadClass* cls,
163 HInstruction* at,
164 uint32_t dex_pc,
165 bool do_clinit)
166 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
167 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
168 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100169
Alexandre Rames67555f72014-11-18 10:55:16 +0000170 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000171 LocationSummary* locations = at_->GetLocations();
172
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100173 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
174 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000175 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100176
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100177 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000178 __ LoadImmediate(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex());
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000179 int32_t entry_point_offset = do_clinit_
180 ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
181 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000182 arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000183
184 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000185 Location out = locations->Out();
186 if (out.IsValid()) {
187 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000188 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
189 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000190 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100191 __ b(GetExitLabel());
192 }
193
194 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000195 // The class this slow path will load.
196 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100197
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000198 // The instruction where this slow path is happening.
199 // (Might be the load class or an initialization check).
200 HInstruction* const at_;
201
202 // The dex PC of `at_`.
203 const uint32_t dex_pc_;
204
205 // Whether to initialize the class.
206 const bool do_clinit_;
207
208 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100209};
210
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000211class LoadStringSlowPathARM : public SlowPathCodeARM {
212 public:
213 explicit LoadStringSlowPathARM(HLoadString* instruction) : instruction_(instruction) {}
214
Alexandre Rames67555f72014-11-18 10:55:16 +0000215 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000216 LocationSummary* locations = instruction_->GetLocations();
217 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
218
219 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
220 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000221 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000222
223 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800224 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction_->GetStringIndex());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000225 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000226 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000227 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
228
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000229 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000230 __ b(GetExitLabel());
231 }
232
233 private:
234 HLoadString* const instruction_;
235
236 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM);
237};
238
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000239class TypeCheckSlowPathARM : public SlowPathCodeARM {
240 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000241 TypeCheckSlowPathARM(HInstruction* instruction,
242 Location class_to_check,
243 Location object_class,
244 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000245 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000246 class_to_check_(class_to_check),
247 object_class_(object_class),
248 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000249
Alexandre Rames67555f72014-11-18 10:55:16 +0000250 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000251 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000252 DCHECK(instruction_->IsCheckCast()
253 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000254
255 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
256 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000257 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000258
259 // We're moving two locations to locations that could overlap, so we need a parallel
260 // move resolver.
261 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000262 codegen->EmitParallelMoves(
263 class_to_check_,
264 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100265 Primitive::kPrimNot,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000266 object_class_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100267 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
268 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000269
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000270 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000271 arm_codegen->InvokeRuntime(
272 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_, this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000273 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
274 } else {
275 DCHECK(instruction_->IsCheckCast());
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000276 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_, this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000277 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000278
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000279 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000280 __ b(GetExitLabel());
281 }
282
283 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000284 HInstruction* const instruction_;
285 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000286 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000287 uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000288
289 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM);
290};
291
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700292class DeoptimizationSlowPathARM : public SlowPathCodeARM {
293 public:
294 explicit DeoptimizationSlowPathARM(HInstruction* instruction)
295 : instruction_(instruction) {}
296
297 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
298 __ Bind(GetEntryLabel());
299 SaveLiveRegisters(codegen, instruction_->GetLocations());
300 DCHECK(instruction_->IsDeoptimize());
301 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
302 uint32_t dex_pc = deoptimize->GetDexPc();
303 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
304 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
305 }
306
307 private:
308 HInstruction* const instruction_;
309 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM);
310};
311
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000312#undef __
313
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100314#undef __
315#define __ reinterpret_cast<ArmAssembler*>(GetAssembler())->
Dave Allison20dfc792014-06-16 20:44:29 -0700316
317inline Condition ARMCondition(IfCondition cond) {
318 switch (cond) {
319 case kCondEQ: return EQ;
320 case kCondNE: return NE;
321 case kCondLT: return LT;
322 case kCondLE: return LE;
323 case kCondGT: return GT;
324 case kCondGE: return GE;
325 default:
326 LOG(FATAL) << "Unknown if condition";
327 }
328 return EQ; // Unreachable.
329}
330
331inline Condition ARMOppositeCondition(IfCondition cond) {
332 switch (cond) {
333 case kCondEQ: return NE;
334 case kCondNE: return EQ;
335 case kCondLT: return GE;
336 case kCondLE: return GT;
337 case kCondGT: return LE;
338 case kCondGE: return LT;
339 default:
340 LOG(FATAL) << "Unknown if condition";
341 }
342 return EQ; // Unreachable.
343}
344
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100345void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const {
346 stream << ArmManagedRegister::FromCoreRegister(Register(reg));
347}
348
349void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000350 stream << ArmManagedRegister::FromSRegister(SRegister(reg));
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100351}
352
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100353size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
354 __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index);
355 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100356}
357
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100358size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
359 __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index);
360 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100361}
362
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000363size_t CodeGeneratorARM::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
364 __ StoreSToOffset(static_cast<SRegister>(reg_id), SP, stack_index);
365 return kArmWordSize;
366}
367
368size_t CodeGeneratorARM::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
369 __ LoadSFromOffset(static_cast<SRegister>(reg_id), SP, stack_index);
370 return kArmWordSize;
371}
372
Calin Juravle34166012014-12-19 17:22:29 +0000373CodeGeneratorARM::CodeGeneratorARM(HGraph* graph,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000374 const ArmInstructionSetFeatures& isa_features,
375 const CompilerOptions& compiler_options)
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000376 : CodeGenerator(graph,
377 kNumberOfCoreRegisters,
378 kNumberOfSRegisters,
379 kNumberOfRegisterPairs,
380 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
381 arraysize(kCoreCalleeSaves)),
382 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
383 arraysize(kFpuCalleeSaves)),
384 compiler_options),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100385 block_labels_(graph->GetArena(), 0),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100386 location_builder_(graph, this),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100387 instruction_visitor_(graph, this),
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100388 move_resolver_(graph->GetArena(), this),
Calin Juravle34166012014-12-19 17:22:29 +0000389 assembler_(true),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000390 isa_features_(isa_features) {
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000391 // Save the PC register to mimic Quick.
392 AddAllocatedRegister(Location::RegisterLocation(PC));
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100393}
394
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100395Location CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100396 switch (type) {
397 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100398 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100399 ArmManagedRegister pair =
400 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100401 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
402 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
403
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100404 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
405 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100406 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100407 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100408 }
409
410 case Primitive::kPrimByte:
411 case Primitive::kPrimBoolean:
412 case Primitive::kPrimChar:
413 case Primitive::kPrimShort:
414 case Primitive::kPrimInt:
415 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100416 int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100417 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100418 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
419 ArmManagedRegister current =
420 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
421 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100422 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100423 }
424 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100425 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100426 }
427
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000428 case Primitive::kPrimFloat: {
429 int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfSRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100430 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100431 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100432
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000433 case Primitive::kPrimDouble: {
Nicolas Geoffray3c035032014-10-28 10:46:40 +0000434 int reg = FindTwoFreeConsecutiveAlignedEntries(blocked_fpu_registers_, kNumberOfSRegisters);
435 DCHECK_EQ(reg % 2, 0);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000436 return Location::FpuRegisterPairLocation(reg, reg + 1);
437 }
438
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100439 case Primitive::kPrimVoid:
440 LOG(FATAL) << "Unreachable type " << type;
441 }
442
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100443 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100444}
445
Nicolas Geoffraya0bb2bd2015-01-26 12:49:35 +0000446void CodeGeneratorARM::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100447 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100448 blocked_register_pairs_[R1_R2] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100449
450 // Stack register, LR and PC are always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100451 blocked_core_registers_[SP] = true;
452 blocked_core_registers_[LR] = true;
453 blocked_core_registers_[PC] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100454
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100455 // Reserve thread register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100456 blocked_core_registers_[TR] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100457
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100458 // Reserve temp register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100459 blocked_core_registers_[IP] = true;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100460
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000461 if (is_baseline) {
462 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
463 blocked_core_registers_[kCoreCalleeSaves[i]] = true;
464 }
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +0000465
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000466 blocked_core_registers_[kCoreSavedRegisterForBaseline] = false;
467
468 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
469 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
470 }
471 }
Calin Juravle34bacdf2014-10-07 20:23:36 +0100472
473 UpdateBlockedPairRegisters();
474}
475
476void CodeGeneratorARM::UpdateBlockedPairRegisters() const {
477 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
478 ArmManagedRegister current =
479 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
480 if (blocked_core_registers_[current.AsRegisterPairLow()]
481 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
482 blocked_register_pairs_[i] = true;
483 }
484 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100485}
486
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100487InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen)
488 : HGraphVisitor(graph),
489 assembler_(codegen->GetAssembler()),
490 codegen_(codegen) {}
491
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000492static uint32_t LeastSignificantBit(uint32_t mask) {
493 // ffs starts at 1.
494 return ffs(mask) - 1;
495}
496
497void CodeGeneratorARM::ComputeSpillMask() {
498 core_spill_mask_ = allocated_registers_.GetCoreRegisters() & core_callee_save_mask_;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000499 // Save one extra register for baseline. Note that on thumb2, there is no easy
500 // instruction to restore just the PC, so this actually helps both baseline
501 // and non-baseline to save and restore at least two registers at entry and exit.
502 core_spill_mask_ |= (1 << kCoreSavedRegisterForBaseline);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000503 DCHECK_NE(core_spill_mask_, 0u) << "At least the return address register must be saved";
504 fpu_spill_mask_ = allocated_registers_.GetFloatingPointRegisters() & fpu_callee_save_mask_;
505 // We use vpush and vpop for saving and restoring floating point registers, which take
506 // a SRegister and the number of registers to save/restore after that SRegister. We
507 // therefore update the `fpu_spill_mask_` to also contain those registers not allocated,
508 // but in the range.
509 if (fpu_spill_mask_ != 0) {
510 uint32_t least_significant_bit = LeastSignificantBit(fpu_spill_mask_);
511 uint32_t most_significant_bit = MostSignificantBit(fpu_spill_mask_);
512 for (uint32_t i = least_significant_bit + 1 ; i < most_significant_bit; ++i) {
513 fpu_spill_mask_ |= (1 << i);
514 }
515 }
516}
517
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100518static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100519 return dwarf::Reg::ArmCore(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100520}
521
522static dwarf::Reg DWARFReg(SRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100523 return dwarf::Reg::ArmFp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100524}
525
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000526void CodeGeneratorARM::GenerateFrameEntry() {
Roland Levillain199f3362014-11-27 17:15:16 +0000527 bool skip_overflow_check =
528 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000529 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000530 __ Bind(&frame_entry_label_);
531
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000532 if (HasEmptyFrame()) {
533 return;
534 }
535
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100536 if (!skip_overflow_check) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000537 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
538 __ LoadFromOffset(kLoadWord, IP, IP, 0);
539 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100540 }
541
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000542 // PC is in the list of callee-save to mimic Quick, but we need to push
543 // LR at entry instead.
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100544 uint32_t push_mask = (core_spill_mask_ & (~(1 << PC))) | 1 << LR;
545 __ PushList(push_mask);
546 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(push_mask));
David Srbecky9d8606d2015-04-12 09:35:32 +0100547 __ cfi().RelOffsetForMany(DWARFReg(R0), 0, push_mask, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000548 if (fpu_spill_mask_ != 0) {
549 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
550 __ vpushs(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100551 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(fpu_spill_mask_));
David Srbecky9d8606d2015-04-12 09:35:32 +0100552 __ cfi().RelOffsetForMany(DWARFReg(S0), 0, fpu_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000553 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100554 int adjust = GetFrameSize() - FrameEntrySpillSize();
555 __ AddConstant(SP, -adjust);
556 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100557 __ StoreToOffset(kStoreWord, R0, SP, 0);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000558}
559
560void CodeGeneratorARM::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000561 if (HasEmptyFrame()) {
562 __ bx(LR);
563 return;
564 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100565 __ cfi().RememberState();
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100566 int adjust = GetFrameSize() - FrameEntrySpillSize();
567 __ AddConstant(SP, adjust);
568 __ cfi().AdjustCFAOffset(-adjust);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000569 if (fpu_spill_mask_ != 0) {
570 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
571 __ vpops(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100572 __ cfi().AdjustCFAOffset(-kArmPointerSize * POPCOUNT(fpu_spill_mask_));
573 __ cfi().RestoreMany(DWARFReg(SRegister(0)), fpu_spill_mask_);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000574 }
575 __ PopList(core_spill_mask_);
David Srbeckyc34dc932015-04-12 09:27:43 +0100576 __ cfi().RestoreState();
577 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000578}
579
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100580void CodeGeneratorARM::Bind(HBasicBlock* block) {
581 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000582}
583
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100584Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
585 switch (load->GetType()) {
586 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100587 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100588 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100589
590 case Primitive::kPrimInt:
591 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100592 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100593 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100594
595 case Primitive::kPrimBoolean:
596 case Primitive::kPrimByte:
597 case Primitive::kPrimChar:
598 case Primitive::kPrimShort:
599 case Primitive::kPrimVoid:
600 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700601 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100602 }
603
604 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700605 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100606}
607
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100608Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
609 switch (type) {
610 case Primitive::kPrimBoolean:
611 case Primitive::kPrimByte:
612 case Primitive::kPrimChar:
613 case Primitive::kPrimShort:
614 case Primitive::kPrimInt:
615 case Primitive::kPrimNot: {
616 uint32_t index = gp_index_++;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000617 uint32_t stack_index = stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100618 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100619 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100620 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000621 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100622 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100623 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100624
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000625 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100626 uint32_t index = gp_index_;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000627 uint32_t stack_index = stack_index_;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100628 gp_index_ += 2;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000629 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100630 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000631 if (calling_convention.GetRegisterAt(index) == R1) {
632 // Skip R1, and use R2_R3 instead.
633 gp_index_++;
634 index++;
635 }
636 }
637 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
638 DCHECK_EQ(calling_convention.GetRegisterAt(index) + 1,
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000639 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000640 return Location::RegisterPairLocation(calling_convention.GetRegisterAt(index),
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000641 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100642 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000643 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
644 }
645 }
646
647 case Primitive::kPrimFloat: {
648 uint32_t stack_index = stack_index_++;
649 if (float_index_ % 2 == 0) {
650 float_index_ = std::max(double_index_, float_index_);
651 }
652 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) {
653 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++));
654 } else {
655 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
656 }
657 }
658
659 case Primitive::kPrimDouble: {
660 double_index_ = std::max(double_index_, RoundUp(float_index_, 2));
661 uint32_t stack_index = stack_index_;
662 stack_index_ += 2;
663 if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) {
664 uint32_t index = double_index_;
665 double_index_ += 2;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000666 Location result = Location::FpuRegisterPairLocation(
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000667 calling_convention.GetFpuRegisterAt(index),
668 calling_convention.GetFpuRegisterAt(index + 1));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000669 DCHECK(ExpectedPairLayout(result));
670 return result;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000671 } else {
672 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100673 }
674 }
675
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100676 case Primitive::kPrimVoid:
677 LOG(FATAL) << "Unexpected parameter type " << type;
678 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100679 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100680 return Location();
681}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100682
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000683Location InvokeDexCallingConventionVisitor::GetReturnLocation(Primitive::Type type) {
684 switch (type) {
685 case Primitive::kPrimBoolean:
686 case Primitive::kPrimByte:
687 case Primitive::kPrimChar:
688 case Primitive::kPrimShort:
689 case Primitive::kPrimInt:
690 case Primitive::kPrimNot: {
691 return Location::RegisterLocation(R0);
692 }
693
694 case Primitive::kPrimFloat: {
695 return Location::FpuRegisterLocation(S0);
696 }
697
698 case Primitive::kPrimLong: {
699 return Location::RegisterPairLocation(R0, R1);
700 }
701
702 case Primitive::kPrimDouble: {
703 return Location::FpuRegisterPairLocation(S0, S1);
704 }
705
706 case Primitive::kPrimVoid:
707 return Location();
708 }
709 UNREACHABLE();
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000710}
711
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100712void CodeGeneratorARM::Move32(Location destination, Location source) {
713 if (source.Equals(destination)) {
714 return;
715 }
716 if (destination.IsRegister()) {
717 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000718 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100719 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000720 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100721 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000722 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100723 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100724 } else if (destination.IsFpuRegister()) {
725 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000726 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100727 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000728 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100729 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000730 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100731 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100732 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000733 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100734 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000735 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100736 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000737 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100738 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000739 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100740 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
741 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100742 }
743 }
744}
745
746void CodeGeneratorARM::Move64(Location destination, Location source) {
747 if (source.Equals(destination)) {
748 return;
749 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100750 if (destination.IsRegisterPair()) {
751 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000752 EmitParallelMoves(
753 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
754 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100755 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000756 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100757 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
758 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100759 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000760 UNIMPLEMENTED(FATAL);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100761 } else {
762 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000763 DCHECK(ExpectedPairLayout(destination));
764 __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(),
765 SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100766 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000767 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100768 if (source.IsDoubleStackSlot()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000769 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
770 SP,
771 source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100772 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000773 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100774 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100775 } else {
776 DCHECK(destination.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100777 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000778 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100779 if (source.AsRegisterPairLow<Register>() == R1) {
780 DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100781 __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex());
782 __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100783 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100784 __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100785 SP, destination.GetStackIndex());
786 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000787 } else if (source.IsFpuRegisterPair()) {
788 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
789 SP,
790 destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100791 } else {
792 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000793 EmitParallelMoves(
794 Location::StackSlot(source.GetStackIndex()),
795 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100796 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000797 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100798 Location::StackSlot(destination.GetHighStackIndex(kArmWordSize)),
799 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100800 }
801 }
802}
803
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100804void CodeGeneratorARM::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100805 LocationSummary* locations = instruction->GetLocations();
806 if (locations != nullptr && locations->Out().Equals(location)) {
807 return;
808 }
809
Calin Juravlea21f5982014-11-13 15:53:04 +0000810 if (locations != nullptr && locations->Out().IsConstant()) {
811 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000812 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
813 int32_t value = GetInt32ValueOf(const_to_move);
Calin Juravlea21f5982014-11-13 15:53:04 +0000814 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000815 __ LoadImmediate(location.AsRegister<Register>(), value);
Calin Juravlea21f5982014-11-13 15:53:04 +0000816 } else {
817 DCHECK(location.IsStackSlot());
818 __ LoadImmediate(IP, value);
819 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
820 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000821 } else {
Nicolas Geoffray3747b482015-01-19 17:17:16 +0000822 DCHECK(const_to_move->IsLongConstant()) << const_to_move->DebugName();
Calin Juravlea21f5982014-11-13 15:53:04 +0000823 int64_t value = const_to_move->AsLongConstant()->GetValue();
824 if (location.IsRegisterPair()) {
825 __ LoadImmediate(location.AsRegisterPairLow<Register>(), Low32Bits(value));
826 __ LoadImmediate(location.AsRegisterPairHigh<Register>(), High32Bits(value));
827 } else {
828 DCHECK(location.IsDoubleStackSlot());
829 __ LoadImmediate(IP, Low32Bits(value));
830 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
831 __ LoadImmediate(IP, High32Bits(value));
832 __ StoreToOffset(kStoreWord, IP, SP, location.GetHighStackIndex(kArmWordSize));
833 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100834 }
Roland Levillain476df552014-10-09 17:51:36 +0100835 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100836 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
837 switch (instruction->GetType()) {
838 case Primitive::kPrimBoolean:
839 case Primitive::kPrimByte:
840 case Primitive::kPrimChar:
841 case Primitive::kPrimShort:
842 case Primitive::kPrimInt:
843 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100844 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100845 Move32(location, Location::StackSlot(stack_slot));
846 break;
847
848 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100849 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100850 Move64(location, Location::DoubleStackSlot(stack_slot));
851 break;
852
853 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100854 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100855 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000856 } else if (instruction->IsTemporary()) {
857 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000858 if (temp_location.IsStackSlot()) {
859 Move32(location, temp_location);
860 } else {
861 DCHECK(temp_location.IsDoubleStackSlot());
862 Move64(location, temp_location);
863 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000864 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100865 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100866 switch (instruction->GetType()) {
867 case Primitive::kPrimBoolean:
868 case Primitive::kPrimByte:
869 case Primitive::kPrimChar:
870 case Primitive::kPrimShort:
871 case Primitive::kPrimNot:
872 case Primitive::kPrimInt:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100873 case Primitive::kPrimFloat:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100874 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100875 break;
876
877 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100878 case Primitive::kPrimDouble:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100879 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100880 break;
881
882 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100883 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100884 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000885 }
886}
887
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100888void CodeGeneratorARM::InvokeRuntime(int32_t entry_point_offset,
889 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000890 uint32_t dex_pc,
891 SlowPathCode* slow_path) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100892 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
893 __ blx(LR);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000894 RecordPcInfo(instruction, dex_pc, slow_path);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100895 DCHECK(instruction->IsSuspendCheck()
896 || instruction->IsBoundsCheck()
897 || instruction->IsNullCheck()
Calin Juravled0d48522014-11-04 16:40:20 +0000898 || instruction->IsDivZeroCheck()
Roland Levillain624279f2014-12-04 11:54:28 +0000899 || instruction->GetLocations()->CanCall()
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100900 || !IsLeafMethod());
901}
902
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000903void LocationsBuilderARM::VisitGoto(HGoto* got) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000904 got->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000905}
906
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000907void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000908 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100909 DCHECK(!successor->IsExitBlock());
910
911 HBasicBlock* block = got->GetBlock();
912 HInstruction* previous = got->GetPrevious();
913
914 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000915 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100916 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
917 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
918 return;
919 }
920
921 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
922 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
923 }
924 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000925 __ b(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000926 }
927}
928
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000929void LocationsBuilderARM::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000930 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000931}
932
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000933void InstructionCodeGeneratorARM::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700934 UNUSED(exit);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000935}
936
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700937void InstructionCodeGeneratorARM::GenerateTestAndBranch(HInstruction* instruction,
938 Label* true_target,
939 Label* false_target,
940 Label* always_true_target) {
941 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100942 if (cond->IsIntConstant()) {
943 // Constant condition, statically compared against 1.
944 int32_t cond_value = cond->AsIntConstant()->GetValue();
945 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700946 if (always_true_target != nullptr) {
947 __ b(always_true_target);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100948 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100949 return;
950 } else {
951 DCHECK_EQ(cond_value, 0);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100952 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100953 } else {
954 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
955 // Condition has been materialized, compare the output to 0
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700956 DCHECK(instruction->GetLocations()->InAt(0).IsRegister());
957 __ cmp(instruction->GetLocations()->InAt(0).AsRegister<Register>(),
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100958 ShifterOperand(0));
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700959 __ b(true_target, NE);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100960 } else {
961 // Condition has not been materialized, use its inputs as the
962 // comparison and its condition as the branch condition.
963 LocationSummary* locations = cond->GetLocations();
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000964 DCHECK(locations->InAt(0).IsRegister()) << locations->InAt(0);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000965 Register left = locations->InAt(0).AsRegister<Register>();
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100966 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000967 __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100968 } else {
969 DCHECK(locations->InAt(1).IsConstant());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000970 HConstant* constant = locations->InAt(1).GetConstant();
971 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100972 ShifterOperand operand;
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000973 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) {
974 __ cmp(left, operand);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100975 } else {
976 Register temp = IP;
977 __ LoadImmediate(temp, value);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000978 __ cmp(left, ShifterOperand(temp));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100979 }
980 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700981 __ b(true_target, ARMCondition(cond->AsCondition()->GetCondition()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100982 }
Dave Allison20dfc792014-06-16 20:44:29 -0700983 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700984 if (false_target != nullptr) {
985 __ b(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000986 }
987}
988
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700989void LocationsBuilderARM::VisitIf(HIf* if_instr) {
990 LocationSummary* locations =
991 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
992 HInstruction* cond = if_instr->InputAt(0);
993 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
994 locations->SetInAt(0, Location::RequiresRegister());
995 }
996}
997
998void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) {
999 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1000 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1001 Label* always_true_target = true_target;
1002 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1003 if_instr->IfTrueSuccessor())) {
1004 always_true_target = nullptr;
1005 }
1006 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1007 if_instr->IfFalseSuccessor())) {
1008 false_target = nullptr;
1009 }
1010 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1011}
1012
1013void LocationsBuilderARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1014 LocationSummary* locations = new (GetGraph()->GetArena())
1015 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
1016 HInstruction* cond = deoptimize->InputAt(0);
1017 DCHECK(cond->IsCondition());
1018 if (cond->AsCondition()->NeedsMaterialization()) {
1019 locations->SetInAt(0, Location::RequiresRegister());
1020 }
1021}
1022
1023void InstructionCodeGeneratorARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1024 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena())
1025 DeoptimizationSlowPathARM(deoptimize);
1026 codegen_->AddSlowPath(slow_path);
1027 Label* slow_path_entry = slow_path->GetEntryLabel();
1028 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
1029}
Dave Allison20dfc792014-06-16 20:44:29 -07001030
1031void LocationsBuilderARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001032 LocationSummary* locations =
1033 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001034 locations->SetInAt(0, Location::RequiresRegister());
1035 locations->SetInAt(1, Location::RegisterOrConstant(comp->InputAt(1)));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001036 if (comp->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001037 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001038 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001039}
1040
Dave Allison20dfc792014-06-16 20:44:29 -07001041void InstructionCodeGeneratorARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001042 if (!comp->NeedsMaterialization()) return;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001043 LocationSummary* locations = comp->GetLocations();
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001044 Register left = locations->InAt(0).AsRegister<Register>();
1045
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001046 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001047 __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001048 } else {
1049 DCHECK(locations->InAt(1).IsConstant());
Mingyao Yangdc5ac732015-02-25 11:28:05 -08001050 int32_t value = CodeGenerator::GetInt32ValueOf(locations->InAt(1).GetConstant());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001051 ShifterOperand operand;
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001052 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) {
1053 __ cmp(left, operand);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001054 } else {
1055 Register temp = IP;
1056 __ LoadImmediate(temp, value);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001057 __ cmp(left, ShifterOperand(temp));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001058 }
Dave Allison20dfc792014-06-16 20:44:29 -07001059 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001060 __ it(ARMCondition(comp->GetCondition()), kItElse);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001061 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(1),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001062 ARMCondition(comp->GetCondition()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001063 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(0),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001064 ARMOppositeCondition(comp->GetCondition()));
Dave Allison20dfc792014-06-16 20:44:29 -07001065}
1066
1067void LocationsBuilderARM::VisitEqual(HEqual* comp) {
1068 VisitCondition(comp);
1069}
1070
1071void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) {
1072 VisitCondition(comp);
1073}
1074
1075void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) {
1076 VisitCondition(comp);
1077}
1078
1079void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) {
1080 VisitCondition(comp);
1081}
1082
1083void LocationsBuilderARM::VisitLessThan(HLessThan* comp) {
1084 VisitCondition(comp);
1085}
1086
1087void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) {
1088 VisitCondition(comp);
1089}
1090
1091void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1092 VisitCondition(comp);
1093}
1094
1095void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1096 VisitCondition(comp);
1097}
1098
1099void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) {
1100 VisitCondition(comp);
1101}
1102
1103void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) {
1104 VisitCondition(comp);
1105}
1106
1107void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1108 VisitCondition(comp);
1109}
1110
1111void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1112 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001113}
1114
1115void LocationsBuilderARM::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001116 local->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001117}
1118
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001119void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) {
1120 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001121}
1122
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001123void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001124 load->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001125}
1126
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001127void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001128 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001129 UNUSED(load);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001130}
1131
1132void LocationsBuilderARM::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001133 LocationSummary* locations =
1134 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001135 switch (store->InputAt(1)->GetType()) {
1136 case Primitive::kPrimBoolean:
1137 case Primitive::kPrimByte:
1138 case Primitive::kPrimChar:
1139 case Primitive::kPrimShort:
1140 case Primitive::kPrimInt:
1141 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001142 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001143 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1144 break;
1145
1146 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001147 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001148 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1149 break;
1150
1151 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001152 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001153 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001154}
1155
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001156void InstructionCodeGeneratorARM::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001157 UNUSED(store);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001158}
1159
1160void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001161 LocationSummary* locations =
1162 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001163 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001164}
1165
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001166void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001167 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001168 UNUSED(constant);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001169}
1170
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001171void LocationsBuilderARM::VisitNullConstant(HNullConstant* constant) {
1172 LocationSummary* locations =
1173 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1174 locations->SetOut(Location::ConstantLocation(constant));
1175}
1176
1177void InstructionCodeGeneratorARM::VisitNullConstant(HNullConstant* constant) {
1178 // Will be generated at use site.
1179 UNUSED(constant);
1180}
1181
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001182void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001183 LocationSummary* locations =
1184 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001185 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001186}
1187
1188void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) {
1189 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001190 UNUSED(constant);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001191}
1192
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001193void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) {
1194 LocationSummary* locations =
1195 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1196 locations->SetOut(Location::ConstantLocation(constant));
1197}
1198
1199void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant) {
1200 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001201 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001202}
1203
1204void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) {
1205 LocationSummary* locations =
1206 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1207 locations->SetOut(Location::ConstantLocation(constant));
1208}
1209
1210void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant) {
1211 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001212 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001213}
1214
Calin Juravle27df7582015-04-17 19:12:31 +01001215void LocationsBuilderARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1216 memory_barrier->SetLocations(nullptr);
1217}
1218
1219void InstructionCodeGeneratorARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1220 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
1221}
1222
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001223void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001224 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001225}
1226
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001227void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001228 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001229 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001230}
1231
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001232void LocationsBuilderARM::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001233 LocationSummary* locations =
1234 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001235 locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001236}
1237
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001238void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001239 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001240 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001241}
1242
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001243void LocationsBuilderARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain4c0eb422015-04-24 16:43:49 +01001244 // Explicit clinit checks triggered by static invokes must have been
Roland Levillain0379f822015-04-24 23:01:24 +01001245 // pruned by art::PrepareForRegisterAllocation, but this step is not
1246 // run in baseline. So we remove them manually here if we find them.
1247 // TODO: Instead of this local workaround, address this properly.
1248 if (invoke->IsStaticWithExplicitClinitCheck()) {
1249 invoke->RemoveClinitCheckOrLoadClassAsLastInput();
1250 }
Roland Levillain4c0eb422015-04-24 16:43:49 +01001251
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001252 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
1253 codegen_->GetInstructionSetFeatures());
1254 if (intrinsic.TryDispatch(invoke)) {
1255 return;
1256 }
1257
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001258 HandleInvoke(invoke);
1259}
1260
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001261void CodeGeneratorARM::LoadCurrentMethod(Register reg) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001262 DCHECK(RequiresCurrentMethod());
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001263 __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001264}
1265
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001266static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM* codegen) {
1267 if (invoke->GetLocations()->Intrinsified()) {
1268 IntrinsicCodeGeneratorARM intrinsic(codegen);
1269 intrinsic.Dispatch(invoke);
1270 return true;
1271 }
1272 return false;
1273}
1274
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001275void InstructionCodeGeneratorARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain4c0eb422015-04-24 16:43:49 +01001276 // Explicit clinit checks triggered by static invokes must have been
1277 // pruned by art::PrepareForRegisterAllocation.
1278 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
1279
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001280 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1281 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001282 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001283
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001284 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
1285
1286 codegen_->GenerateStaticOrDirectCall(invoke, temp);
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00001287 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001288}
1289
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001290void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001291 LocationSummary* locations =
1292 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001293 locations->AddTemp(Location::RegisterLocation(R0));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001294
1295 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001296 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001297 HInstruction* input = invoke->InputAt(i);
1298 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1299 }
1300
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001301 locations->SetOut(calling_convention_visitor.GetReturnLocation(invoke->GetType()));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001302}
1303
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001304void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001305 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
1306 codegen_->GetInstructionSetFeatures());
1307 if (intrinsic.TryDispatch(invoke)) {
1308 return;
1309 }
1310
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001311 HandleInvoke(invoke);
1312}
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001313
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001314void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001315 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1316 return;
1317 }
1318
Roland Levillain271ab9c2014-11-27 15:23:57 +00001319 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001320 uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() +
1321 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1322 LocationSummary* locations = invoke->GetLocations();
1323 Location receiver = locations->InAt(0);
1324 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1325 // temp = object->GetClass();
1326 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001327 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1328 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001329 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001330 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001331 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001332 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001333 // temp = temp->GetMethodAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001334 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001335 kArmWordSize).Int32Value();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001336 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001337 // LR = temp->GetEntryPoint();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001338 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001339 // LR();
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001340 __ blx(LR);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001341 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001342 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001343}
1344
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001345void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1346 HandleInvoke(invoke);
1347 // Add the hidden argument.
1348 invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12));
1349}
1350
1351void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1352 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001353 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001354 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1355 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1356 LocationSummary* locations = invoke->GetLocations();
1357 Location receiver = locations->InAt(0);
1358 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1359
1360 // Set the hidden argument.
Roland Levillain199f3362014-11-27 17:15:16 +00001361 __ LoadImmediate(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
1362 invoke->GetDexMethodIndex());
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001363
1364 // temp = object->GetClass();
1365 if (receiver.IsStackSlot()) {
1366 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1367 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
1368 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001369 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001370 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001371 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001372 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001373 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001374 kArmWordSize).Int32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001375 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
1376 // LR = temp->GetEntryPoint();
1377 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
1378 // LR();
1379 __ blx(LR);
1380 DCHECK(!codegen_->IsLeafMethod());
1381 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1382}
1383
Roland Levillain88cb1752014-10-20 16:36:47 +01001384void LocationsBuilderARM::VisitNeg(HNeg* neg) {
1385 LocationSummary* locations =
1386 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1387 switch (neg->GetResultType()) {
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001388 case Primitive::kPrimInt: {
Roland Levillain88cb1752014-10-20 16:36:47 +01001389 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001390 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1391 break;
1392 }
1393 case Primitive::kPrimLong: {
1394 locations->SetInAt(0, Location::RequiresRegister());
1395 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001396 break;
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001397 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001398
Roland Levillain88cb1752014-10-20 16:36:47 +01001399 case Primitive::kPrimFloat:
1400 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001401 locations->SetInAt(0, Location::RequiresFpuRegister());
1402 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001403 break;
1404
1405 default:
1406 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1407 }
1408}
1409
1410void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) {
1411 LocationSummary* locations = neg->GetLocations();
1412 Location out = locations->Out();
1413 Location in = locations->InAt(0);
1414 switch (neg->GetResultType()) {
1415 case Primitive::kPrimInt:
1416 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001417 __ rsb(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(0));
Roland Levillain88cb1752014-10-20 16:36:47 +01001418 break;
1419
1420 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001421 DCHECK(in.IsRegisterPair());
1422 // out.lo = 0 - in.lo (and update the carry/borrow (C) flag)
1423 __ rsbs(out.AsRegisterPairLow<Register>(),
1424 in.AsRegisterPairLow<Register>(),
1425 ShifterOperand(0));
1426 // We cannot emit an RSC (Reverse Subtract with Carry)
1427 // instruction here, as it does not exist in the Thumb-2
1428 // instruction set. We use the following approach
1429 // using SBC and SUB instead.
1430 //
1431 // out.hi = -C
1432 __ sbc(out.AsRegisterPairHigh<Register>(),
1433 out.AsRegisterPairHigh<Register>(),
1434 ShifterOperand(out.AsRegisterPairHigh<Register>()));
1435 // out.hi = out.hi - in.hi
1436 __ sub(out.AsRegisterPairHigh<Register>(),
1437 out.AsRegisterPairHigh<Register>(),
1438 ShifterOperand(in.AsRegisterPairHigh<Register>()));
1439 break;
1440
Roland Levillain88cb1752014-10-20 16:36:47 +01001441 case Primitive::kPrimFloat:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001442 DCHECK(in.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001443 __ vnegs(out.AsFpuRegister<SRegister>(), in.AsFpuRegister<SRegister>());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001444 break;
1445
Roland Levillain88cb1752014-10-20 16:36:47 +01001446 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001447 DCHECK(in.IsFpuRegisterPair());
1448 __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1449 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain88cb1752014-10-20 16:36:47 +01001450 break;
1451
1452 default:
1453 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1454 }
1455}
1456
Roland Levillaindff1f282014-11-05 14:15:05 +00001457void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00001458 Primitive::Type result_type = conversion->GetResultType();
1459 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001460 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00001461
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001462 // The float-to-long and double-to-long type conversions rely on a
1463 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00001464 LocationSummary::CallKind call_kind =
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001465 ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
1466 && result_type == Primitive::kPrimLong)
Roland Levillain624279f2014-12-04 11:54:28 +00001467 ? LocationSummary::kCall
1468 : LocationSummary::kNoCall;
1469 LocationSummary* locations =
1470 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
1471
David Brazdilb2bd1c52015-03-25 11:17:37 +00001472 // The Java language does not allow treating boolean as an integral type but
1473 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001474
Roland Levillaindff1f282014-11-05 14:15:05 +00001475 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001476 case Primitive::kPrimByte:
1477 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001478 case Primitive::kPrimBoolean:
1479 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001480 case Primitive::kPrimShort:
1481 case Primitive::kPrimInt:
1482 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001483 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001484 locations->SetInAt(0, Location::RequiresRegister());
1485 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1486 break;
1487
1488 default:
1489 LOG(FATAL) << "Unexpected type conversion from " << input_type
1490 << " to " << result_type;
1491 }
1492 break;
1493
Roland Levillain01a8d712014-11-14 16:27:39 +00001494 case Primitive::kPrimShort:
1495 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001496 case Primitive::kPrimBoolean:
1497 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001498 case Primitive::kPrimByte:
1499 case Primitive::kPrimInt:
1500 case Primitive::kPrimChar:
1501 // Processing a Dex `int-to-short' instruction.
1502 locations->SetInAt(0, Location::RequiresRegister());
1503 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1504 break;
1505
1506 default:
1507 LOG(FATAL) << "Unexpected type conversion from " << input_type
1508 << " to " << result_type;
1509 }
1510 break;
1511
Roland Levillain946e1432014-11-11 17:35:19 +00001512 case Primitive::kPrimInt:
1513 switch (input_type) {
1514 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001515 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001516 locations->SetInAt(0, Location::Any());
1517 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1518 break;
1519
1520 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001521 // Processing a Dex `float-to-int' instruction.
1522 locations->SetInAt(0, Location::RequiresFpuRegister());
1523 locations->SetOut(Location::RequiresRegister());
1524 locations->AddTemp(Location::RequiresFpuRegister());
1525 break;
1526
Roland Levillain946e1432014-11-11 17:35:19 +00001527 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001528 // Processing a Dex `double-to-int' instruction.
1529 locations->SetInAt(0, Location::RequiresFpuRegister());
1530 locations->SetOut(Location::RequiresRegister());
1531 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001532 break;
1533
1534 default:
1535 LOG(FATAL) << "Unexpected type conversion from " << input_type
1536 << " to " << result_type;
1537 }
1538 break;
1539
Roland Levillaindff1f282014-11-05 14:15:05 +00001540 case Primitive::kPrimLong:
1541 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001542 case Primitive::kPrimBoolean:
1543 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001544 case Primitive::kPrimByte:
1545 case Primitive::kPrimShort:
1546 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001547 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001548 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001549 locations->SetInAt(0, Location::RequiresRegister());
1550 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1551 break;
1552
Roland Levillain624279f2014-12-04 11:54:28 +00001553 case Primitive::kPrimFloat: {
1554 // Processing a Dex `float-to-long' instruction.
1555 InvokeRuntimeCallingConvention calling_convention;
1556 locations->SetInAt(0, Location::FpuRegisterLocation(
1557 calling_convention.GetFpuRegisterAt(0)));
1558 locations->SetOut(Location::RegisterPairLocation(R0, R1));
1559 break;
1560 }
1561
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001562 case Primitive::kPrimDouble: {
1563 // Processing a Dex `double-to-long' instruction.
1564 InvokeRuntimeCallingConvention calling_convention;
1565 locations->SetInAt(0, Location::FpuRegisterPairLocation(
1566 calling_convention.GetFpuRegisterAt(0),
1567 calling_convention.GetFpuRegisterAt(1)));
1568 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Roland Levillaindff1f282014-11-05 14:15:05 +00001569 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001570 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001571
1572 default:
1573 LOG(FATAL) << "Unexpected type conversion from " << input_type
1574 << " to " << result_type;
1575 }
1576 break;
1577
Roland Levillain981e4542014-11-14 11:47:14 +00001578 case Primitive::kPrimChar:
1579 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001580 case Primitive::kPrimBoolean:
1581 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001582 case Primitive::kPrimByte:
1583 case Primitive::kPrimShort:
1584 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001585 // Processing a Dex `int-to-char' instruction.
1586 locations->SetInAt(0, Location::RequiresRegister());
1587 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1588 break;
1589
1590 default:
1591 LOG(FATAL) << "Unexpected type conversion from " << input_type
1592 << " to " << result_type;
1593 }
1594 break;
1595
Roland Levillaindff1f282014-11-05 14:15:05 +00001596 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001597 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001598 case Primitive::kPrimBoolean:
1599 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001600 case Primitive::kPrimByte:
1601 case Primitive::kPrimShort:
1602 case Primitive::kPrimInt:
1603 case Primitive::kPrimChar:
1604 // Processing a Dex `int-to-float' instruction.
1605 locations->SetInAt(0, Location::RequiresRegister());
1606 locations->SetOut(Location::RequiresFpuRegister());
1607 break;
1608
1609 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001610 // Processing a Dex `long-to-float' instruction.
1611 locations->SetInAt(0, Location::RequiresRegister());
1612 locations->SetOut(Location::RequiresFpuRegister());
1613 locations->AddTemp(Location::RequiresRegister());
1614 locations->AddTemp(Location::RequiresRegister());
1615 locations->AddTemp(Location::RequiresFpuRegister());
1616 locations->AddTemp(Location::RequiresFpuRegister());
1617 break;
1618
Roland Levillaincff13742014-11-17 14:32:17 +00001619 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001620 // Processing a Dex `double-to-float' instruction.
1621 locations->SetInAt(0, Location::RequiresFpuRegister());
1622 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001623 break;
1624
1625 default:
1626 LOG(FATAL) << "Unexpected type conversion from " << input_type
1627 << " to " << result_type;
1628 };
1629 break;
1630
Roland Levillaindff1f282014-11-05 14:15:05 +00001631 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001632 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001633 case Primitive::kPrimBoolean:
1634 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001635 case Primitive::kPrimByte:
1636 case Primitive::kPrimShort:
1637 case Primitive::kPrimInt:
1638 case Primitive::kPrimChar:
1639 // Processing a Dex `int-to-double' instruction.
1640 locations->SetInAt(0, Location::RequiresRegister());
1641 locations->SetOut(Location::RequiresFpuRegister());
1642 break;
1643
1644 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001645 // Processing a Dex `long-to-double' instruction.
1646 locations->SetInAt(0, Location::RequiresRegister());
1647 locations->SetOut(Location::RequiresFpuRegister());
1648 locations->AddTemp(Location::RequiresRegister());
1649 locations->AddTemp(Location::RequiresRegister());
1650 locations->AddTemp(Location::RequiresFpuRegister());
1651 break;
1652
Roland Levillaincff13742014-11-17 14:32:17 +00001653 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001654 // Processing a Dex `float-to-double' instruction.
1655 locations->SetInAt(0, Location::RequiresFpuRegister());
1656 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001657 break;
1658
1659 default:
1660 LOG(FATAL) << "Unexpected type conversion from " << input_type
1661 << " to " << result_type;
1662 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001663 break;
1664
1665 default:
1666 LOG(FATAL) << "Unexpected type conversion from " << input_type
1667 << " to " << result_type;
1668 }
1669}
1670
1671void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) {
1672 LocationSummary* locations = conversion->GetLocations();
1673 Location out = locations->Out();
1674 Location in = locations->InAt(0);
1675 Primitive::Type result_type = conversion->GetResultType();
1676 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001677 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001678 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001679 case Primitive::kPrimByte:
1680 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001681 case Primitive::kPrimBoolean:
1682 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001683 case Primitive::kPrimShort:
1684 case Primitive::kPrimInt:
1685 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001686 // Processing a Dex `int-to-byte' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001687 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 8);
Roland Levillain51d3fc42014-11-13 14:11:42 +00001688 break;
1689
1690 default:
1691 LOG(FATAL) << "Unexpected type conversion from " << input_type
1692 << " to " << result_type;
1693 }
1694 break;
1695
Roland Levillain01a8d712014-11-14 16:27:39 +00001696 case Primitive::kPrimShort:
1697 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001698 case Primitive::kPrimBoolean:
1699 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001700 case Primitive::kPrimByte:
1701 case Primitive::kPrimInt:
1702 case Primitive::kPrimChar:
1703 // Processing a Dex `int-to-short' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001704 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain01a8d712014-11-14 16:27:39 +00001705 break;
1706
1707 default:
1708 LOG(FATAL) << "Unexpected type conversion from " << input_type
1709 << " to " << result_type;
1710 }
1711 break;
1712
Roland Levillain946e1432014-11-11 17:35:19 +00001713 case Primitive::kPrimInt:
1714 switch (input_type) {
1715 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001716 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001717 DCHECK(out.IsRegister());
1718 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001719 __ Mov(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00001720 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001721 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), SP, in.GetStackIndex());
Roland Levillain946e1432014-11-11 17:35:19 +00001722 } else {
1723 DCHECK(in.IsConstant());
1724 DCHECK(in.GetConstant()->IsLongConstant());
1725 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001726 __ LoadImmediate(out.AsRegister<Register>(), static_cast<int32_t>(value));
Roland Levillain946e1432014-11-11 17:35:19 +00001727 }
1728 break;
1729
Roland Levillain3f8f9362014-12-02 17:45:01 +00001730 case Primitive::kPrimFloat: {
1731 // Processing a Dex `float-to-int' instruction.
1732 SRegister temp = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
1733 __ vmovs(temp, in.AsFpuRegister<SRegister>());
1734 __ vcvtis(temp, temp);
1735 __ vmovrs(out.AsRegister<Register>(), temp);
1736 break;
1737 }
1738
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001739 case Primitive::kPrimDouble: {
1740 // Processing a Dex `double-to-int' instruction.
1741 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
1742 DRegister temp_d = FromLowSToD(temp_s);
1743 __ vmovd(temp_d, FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
1744 __ vcvtid(temp_s, temp_d);
1745 __ vmovrs(out.AsRegister<Register>(), temp_s);
Roland Levillain946e1432014-11-11 17:35:19 +00001746 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001747 }
Roland Levillain946e1432014-11-11 17:35:19 +00001748
1749 default:
1750 LOG(FATAL) << "Unexpected type conversion from " << input_type
1751 << " to " << result_type;
1752 }
1753 break;
1754
Roland Levillaindff1f282014-11-05 14:15:05 +00001755 case Primitive::kPrimLong:
1756 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001757 case Primitive::kPrimBoolean:
1758 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001759 case Primitive::kPrimByte:
1760 case Primitive::kPrimShort:
1761 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001762 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001763 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001764 DCHECK(out.IsRegisterPair());
1765 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001766 __ Mov(out.AsRegisterPairLow<Register>(), in.AsRegister<Register>());
Roland Levillaindff1f282014-11-05 14:15:05 +00001767 // Sign extension.
1768 __ Asr(out.AsRegisterPairHigh<Register>(),
1769 out.AsRegisterPairLow<Register>(),
1770 31);
1771 break;
1772
1773 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00001774 // Processing a Dex `float-to-long' instruction.
Roland Levillain624279f2014-12-04 11:54:28 +00001775 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pF2l),
1776 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001777 conversion->GetDexPc(),
1778 nullptr);
Roland Levillain624279f2014-12-04 11:54:28 +00001779 break;
1780
Roland Levillaindff1f282014-11-05 14:15:05 +00001781 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001782 // Processing a Dex `double-to-long' instruction.
1783 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pD2l),
1784 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001785 conversion->GetDexPc(),
1786 nullptr);
Roland Levillaindff1f282014-11-05 14:15:05 +00001787 break;
1788
1789 default:
1790 LOG(FATAL) << "Unexpected type conversion from " << input_type
1791 << " to " << result_type;
1792 }
1793 break;
1794
Roland Levillain981e4542014-11-14 11:47:14 +00001795 case Primitive::kPrimChar:
1796 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001797 case Primitive::kPrimBoolean:
1798 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001799 case Primitive::kPrimByte:
1800 case Primitive::kPrimShort:
1801 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001802 // Processing a Dex `int-to-char' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001803 __ ubfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain981e4542014-11-14 11:47:14 +00001804 break;
1805
1806 default:
1807 LOG(FATAL) << "Unexpected type conversion from " << input_type
1808 << " to " << result_type;
1809 }
1810 break;
1811
Roland Levillaindff1f282014-11-05 14:15:05 +00001812 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001813 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001814 case Primitive::kPrimBoolean:
1815 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001816 case Primitive::kPrimByte:
1817 case Primitive::kPrimShort:
1818 case Primitive::kPrimInt:
1819 case Primitive::kPrimChar: {
1820 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001821 __ vmovsr(out.AsFpuRegister<SRegister>(), in.AsRegister<Register>());
1822 __ vcvtsi(out.AsFpuRegister<SRegister>(), out.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001823 break;
1824 }
1825
Roland Levillain6d0e4832014-11-27 18:31:21 +00001826 case Primitive::kPrimLong: {
1827 // Processing a Dex `long-to-float' instruction.
1828 Register low = in.AsRegisterPairLow<Register>();
1829 Register high = in.AsRegisterPairHigh<Register>();
1830 SRegister output = out.AsFpuRegister<SRegister>();
1831 Register constant_low = locations->GetTemp(0).AsRegister<Register>();
1832 Register constant_high = locations->GetTemp(1).AsRegister<Register>();
1833 SRegister temp1_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1834 DRegister temp1_d = FromLowSToD(temp1_s);
1835 SRegister temp2_s = locations->GetTemp(3).AsFpuRegisterPairLow<SRegister>();
1836 DRegister temp2_d = FromLowSToD(temp2_s);
1837
1838 // Operations use doubles for precision reasons (each 32-bit
1839 // half of a long fits in the 53-bit mantissa of a double,
1840 // but not in the 24-bit mantissa of a float). This is
1841 // especially important for the low bits. The result is
1842 // eventually converted to float.
1843
1844 // temp1_d = int-to-double(high)
1845 __ vmovsr(temp1_s, high);
1846 __ vcvtdi(temp1_d, temp1_s);
1847 // Using vmovd to load the `k2Pow32EncodingForDouble` constant
1848 // as an immediate value into `temp2_d` does not work, as
1849 // this instruction only transfers 8 significant bits of its
1850 // immediate operand. Instead, use two 32-bit core
1851 // registers to load `k2Pow32EncodingForDouble` into
1852 // `temp2_d`.
1853 __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble));
1854 __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble));
1855 __ vmovdrr(temp2_d, constant_low, constant_high);
1856 // temp1_d = temp1_d * 2^32
1857 __ vmuld(temp1_d, temp1_d, temp2_d);
1858 // temp2_d = unsigned-to-double(low)
1859 __ vmovsr(temp2_s, low);
1860 __ vcvtdu(temp2_d, temp2_s);
1861 // temp1_d = temp1_d + temp2_d
1862 __ vaddd(temp1_d, temp1_d, temp2_d);
1863 // output = double-to-float(temp1_d);
1864 __ vcvtsd(output, temp1_d);
1865 break;
1866 }
1867
Roland Levillaincff13742014-11-17 14:32:17 +00001868 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001869 // Processing a Dex `double-to-float' instruction.
1870 __ vcvtsd(out.AsFpuRegister<SRegister>(),
1871 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillaincff13742014-11-17 14:32:17 +00001872 break;
1873
1874 default:
1875 LOG(FATAL) << "Unexpected type conversion from " << input_type
1876 << " to " << result_type;
1877 };
1878 break;
1879
Roland Levillaindff1f282014-11-05 14:15:05 +00001880 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001881 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001882 case Primitive::kPrimBoolean:
1883 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001884 case Primitive::kPrimByte:
1885 case Primitive::kPrimShort:
1886 case Primitive::kPrimInt:
1887 case Primitive::kPrimChar: {
1888 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001889 __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00001890 __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1891 out.AsFpuRegisterPairLow<SRegister>());
1892 break;
1893 }
1894
Roland Levillain647b9ed2014-11-27 12:06:00 +00001895 case Primitive::kPrimLong: {
1896 // Processing a Dex `long-to-double' instruction.
1897 Register low = in.AsRegisterPairLow<Register>();
1898 Register high = in.AsRegisterPairHigh<Register>();
1899 SRegister out_s = out.AsFpuRegisterPairLow<SRegister>();
1900 DRegister out_d = FromLowSToD(out_s);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001901 Register constant_low = locations->GetTemp(0).AsRegister<Register>();
1902 Register constant_high = locations->GetTemp(1).AsRegister<Register>();
Roland Levillain647b9ed2014-11-27 12:06:00 +00001903 SRegister temp_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1904 DRegister temp_d = FromLowSToD(temp_s);
1905
Roland Levillain647b9ed2014-11-27 12:06:00 +00001906 // out_d = int-to-double(high)
1907 __ vmovsr(out_s, high);
1908 __ vcvtdi(out_d, out_s);
Roland Levillain6d0e4832014-11-27 18:31:21 +00001909 // Using vmovd to load the `k2Pow32EncodingForDouble` constant
1910 // as an immediate value into `temp_d` does not work, as
1911 // this instruction only transfers 8 significant bits of its
1912 // immediate operand. Instead, use two 32-bit core
1913 // registers to load `k2Pow32EncodingForDouble` into `temp_d`.
1914 __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble));
1915 __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble));
Roland Levillain647b9ed2014-11-27 12:06:00 +00001916 __ vmovdrr(temp_d, constant_low, constant_high);
1917 // out_d = out_d * 2^32
1918 __ vmuld(out_d, out_d, temp_d);
1919 // temp_d = unsigned-to-double(low)
1920 __ vmovsr(temp_s, low);
1921 __ vcvtdu(temp_d, temp_s);
1922 // out_d = out_d + temp_d
1923 __ vaddd(out_d, out_d, temp_d);
1924 break;
1925 }
1926
Roland Levillaincff13742014-11-17 14:32:17 +00001927 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001928 // Processing a Dex `float-to-double' instruction.
1929 __ vcvtds(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1930 in.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001931 break;
1932
1933 default:
1934 LOG(FATAL) << "Unexpected type conversion from " << input_type
1935 << " to " << result_type;
1936 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001937 break;
1938
1939 default:
1940 LOG(FATAL) << "Unexpected type conversion from " << input_type
1941 << " to " << result_type;
1942 }
1943}
1944
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001945void LocationsBuilderARM::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001946 LocationSummary* locations =
1947 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001948 switch (add->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001949 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001950 locations->SetInAt(0, Location::RequiresRegister());
1951 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001952 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1953 break;
1954 }
1955
1956 case Primitive::kPrimLong: {
1957 locations->SetInAt(0, Location::RequiresRegister());
1958 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001959 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001960 break;
1961 }
1962
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001963 case Primitive::kPrimFloat:
1964 case Primitive::kPrimDouble: {
1965 locations->SetInAt(0, Location::RequiresFpuRegister());
1966 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001967 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001968 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001969 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001970
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001971 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001972 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001973 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001974}
1975
1976void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) {
1977 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001978 Location out = locations->Out();
1979 Location first = locations->InAt(0);
1980 Location second = locations->InAt(1);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001981 switch (add->GetResultType()) {
1982 case Primitive::kPrimInt:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001983 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00001984 __ add(out.AsRegister<Register>(),
1985 first.AsRegister<Register>(),
1986 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001987 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001988 __ AddConstant(out.AsRegister<Register>(),
1989 first.AsRegister<Register>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001990 second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001991 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001992 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001993
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001994 case Primitive::kPrimLong: {
1995 DCHECK(second.IsRegisterPair());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001996 __ adds(out.AsRegisterPairLow<Register>(),
1997 first.AsRegisterPairLow<Register>(),
1998 ShifterOperand(second.AsRegisterPairLow<Register>()));
1999 __ adc(out.AsRegisterPairHigh<Register>(),
2000 first.AsRegisterPairHigh<Register>(),
2001 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002002 break;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002003 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002004
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002005 case Primitive::kPrimFloat:
Roland Levillain199f3362014-11-27 17:15:16 +00002006 __ vadds(out.AsFpuRegister<SRegister>(),
2007 first.AsFpuRegister<SRegister>(),
2008 second.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002009 break;
2010
2011 case Primitive::kPrimDouble:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002012 __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2013 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2014 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002015 break;
2016
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002017 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002018 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002019 }
2020}
2021
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002022void LocationsBuilderARM::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002023 LocationSummary* locations =
2024 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002025 switch (sub->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002026 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002027 locations->SetInAt(0, Location::RequiresRegister());
2028 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002029 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2030 break;
2031 }
2032
2033 case Primitive::kPrimLong: {
2034 locations->SetInAt(0, Location::RequiresRegister());
2035 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002036 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002037 break;
2038 }
Calin Juravle11351682014-10-23 15:38:15 +01002039 case Primitive::kPrimFloat:
2040 case Primitive::kPrimDouble: {
2041 locations->SetInAt(0, Location::RequiresFpuRegister());
2042 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002043 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002044 break;
Calin Juravle11351682014-10-23 15:38:15 +01002045 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002046 default:
Calin Juravle11351682014-10-23 15:38:15 +01002047 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002048 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002049}
2050
2051void InstructionCodeGeneratorARM::VisitSub(HSub* sub) {
2052 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01002053 Location out = locations->Out();
2054 Location first = locations->InAt(0);
2055 Location second = locations->InAt(1);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002056 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002057 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01002058 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002059 __ sub(out.AsRegister<Register>(),
2060 first.AsRegister<Register>(),
2061 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002062 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002063 __ AddConstant(out.AsRegister<Register>(),
2064 first.AsRegister<Register>(),
Calin Juravle11351682014-10-23 15:38:15 +01002065 -second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002066 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002067 break;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002068 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002069
Calin Juravle11351682014-10-23 15:38:15 +01002070 case Primitive::kPrimLong: {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002071 DCHECK(second.IsRegisterPair());
Calin Juravle11351682014-10-23 15:38:15 +01002072 __ subs(out.AsRegisterPairLow<Register>(),
2073 first.AsRegisterPairLow<Register>(),
2074 ShifterOperand(second.AsRegisterPairLow<Register>()));
2075 __ sbc(out.AsRegisterPairHigh<Register>(),
2076 first.AsRegisterPairHigh<Register>(),
2077 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002078 break;
Calin Juravle11351682014-10-23 15:38:15 +01002079 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002080
Calin Juravle11351682014-10-23 15:38:15 +01002081 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002082 __ vsubs(out.AsFpuRegister<SRegister>(),
2083 first.AsFpuRegister<SRegister>(),
2084 second.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002085 break;
Calin Juravle11351682014-10-23 15:38:15 +01002086 }
2087
2088 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002089 __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2090 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2091 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravle11351682014-10-23 15:38:15 +01002092 break;
2093 }
2094
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002095
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002096 default:
Calin Juravle11351682014-10-23 15:38:15 +01002097 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002098 }
2099}
2100
Calin Juravle34bacdf2014-10-07 20:23:36 +01002101void LocationsBuilderARM::VisitMul(HMul* mul) {
2102 LocationSummary* locations =
2103 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2104 switch (mul->GetResultType()) {
2105 case Primitive::kPrimInt:
2106 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002107 locations->SetInAt(0, Location::RequiresRegister());
2108 locations->SetInAt(1, Location::RequiresRegister());
2109 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002110 break;
2111 }
2112
Calin Juravleb5bfa962014-10-21 18:02:24 +01002113 case Primitive::kPrimFloat:
2114 case Primitive::kPrimDouble: {
2115 locations->SetInAt(0, Location::RequiresFpuRegister());
2116 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002117 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002118 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002119 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002120
2121 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002122 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002123 }
2124}
2125
2126void InstructionCodeGeneratorARM::VisitMul(HMul* mul) {
2127 LocationSummary* locations = mul->GetLocations();
2128 Location out = locations->Out();
2129 Location first = locations->InAt(0);
2130 Location second = locations->InAt(1);
2131 switch (mul->GetResultType()) {
2132 case Primitive::kPrimInt: {
Roland Levillain199f3362014-11-27 17:15:16 +00002133 __ mul(out.AsRegister<Register>(),
2134 first.AsRegister<Register>(),
2135 second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002136 break;
2137 }
2138 case Primitive::kPrimLong: {
2139 Register out_hi = out.AsRegisterPairHigh<Register>();
2140 Register out_lo = out.AsRegisterPairLow<Register>();
2141 Register in1_hi = first.AsRegisterPairHigh<Register>();
2142 Register in1_lo = first.AsRegisterPairLow<Register>();
2143 Register in2_hi = second.AsRegisterPairHigh<Register>();
2144 Register in2_lo = second.AsRegisterPairLow<Register>();
2145
2146 // Extra checks to protect caused by the existence of R1_R2.
2147 // The algorithm is wrong if out.hi is either in1.lo or in2.lo:
2148 // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2);
2149 DCHECK_NE(out_hi, in1_lo);
2150 DCHECK_NE(out_hi, in2_lo);
2151
2152 // input: in1 - 64 bits, in2 - 64 bits
2153 // output: out
2154 // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
2155 // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
2156 // parts: out.lo = (in1.lo * in2.lo)[31:0]
2157
2158 // IP <- in1.lo * in2.hi
2159 __ mul(IP, in1_lo, in2_hi);
2160 // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2161 __ mla(out_hi, in1_hi, in2_lo, IP);
2162 // out.lo <- (in1.lo * in2.lo)[31:0];
2163 __ umull(out_lo, IP, in1_lo, in2_lo);
2164 // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2165 __ add(out_hi, out_hi, ShifterOperand(IP));
2166 break;
2167 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002168
2169 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002170 __ vmuls(out.AsFpuRegister<SRegister>(),
2171 first.AsFpuRegister<SRegister>(),
2172 second.AsFpuRegister<SRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002173 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002174 }
2175
2176 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002177 __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2178 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2179 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravleb5bfa962014-10-21 18:02:24 +01002180 break;
2181 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002182
2183 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002184 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002185 }
2186}
2187
Calin Juravle7c4954d2014-10-28 16:57:40 +00002188void LocationsBuilderARM::VisitDiv(HDiv* div) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002189 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2190 if (div->GetResultType() == Primitive::kPrimLong) {
2191 // pLdiv runtime call.
2192 call_kind = LocationSummary::kCall;
2193 } else if (div->GetResultType() == Primitive::kPrimInt &&
2194 !codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2195 // pIdivmod runtime call.
2196 call_kind = LocationSummary::kCall;
2197 }
2198
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002199 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2200
Calin Juravle7c4954d2014-10-28 16:57:40 +00002201 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002202 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002203 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2204 locations->SetInAt(0, Location::RequiresRegister());
2205 locations->SetInAt(1, Location::RequiresRegister());
2206 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2207 } else {
2208 InvokeRuntimeCallingConvention calling_convention;
2209 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2210 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2211 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2212 // we only need the former.
2213 locations->SetOut(Location::RegisterLocation(R0));
2214 }
Calin Juravled0d48522014-11-04 16:40:20 +00002215 break;
2216 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002217 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002218 InvokeRuntimeCallingConvention calling_convention;
2219 locations->SetInAt(0, Location::RegisterPairLocation(
2220 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2221 locations->SetInAt(1, Location::RegisterPairLocation(
2222 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002223 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Calin Juravle7c4954d2014-10-28 16:57:40 +00002224 break;
2225 }
2226 case Primitive::kPrimFloat:
2227 case Primitive::kPrimDouble: {
2228 locations->SetInAt(0, Location::RequiresFpuRegister());
2229 locations->SetInAt(1, Location::RequiresFpuRegister());
2230 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2231 break;
2232 }
2233
2234 default:
2235 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2236 }
2237}
2238
2239void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) {
2240 LocationSummary* locations = div->GetLocations();
2241 Location out = locations->Out();
2242 Location first = locations->InAt(0);
2243 Location second = locations->InAt(1);
2244
2245 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002246 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002247 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2248 __ sdiv(out.AsRegister<Register>(),
2249 first.AsRegister<Register>(),
2250 second.AsRegister<Register>());
2251 } else {
2252 InvokeRuntimeCallingConvention calling_convention;
2253 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2254 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2255 DCHECK_EQ(R0, out.AsRegister<Register>());
2256
2257 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), div, div->GetDexPc(), nullptr);
2258 }
Calin Juravled0d48522014-11-04 16:40:20 +00002259 break;
2260 }
2261
Calin Juravle7c4954d2014-10-28 16:57:40 +00002262 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002263 InvokeRuntimeCallingConvention calling_convention;
2264 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2265 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2266 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2267 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2268 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002269 DCHECK_EQ(R1, out.AsRegisterPairHigh<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002270
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002271 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv), div, div->GetDexPc(), nullptr);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002272 break;
2273 }
2274
2275 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002276 __ vdivs(out.AsFpuRegister<SRegister>(),
2277 first.AsFpuRegister<SRegister>(),
2278 second.AsFpuRegister<SRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002279 break;
2280 }
2281
2282 case Primitive::kPrimDouble: {
2283 __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2284 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2285 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
2286 break;
2287 }
2288
2289 default:
2290 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2291 }
2292}
2293
Calin Juravlebacfec32014-11-14 15:54:36 +00002294void LocationsBuilderARM::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002295 Primitive::Type type = rem->GetResultType();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002296
2297 // Most remainders are implemented in the runtime.
2298 LocationSummary::CallKind call_kind = LocationSummary::kCall;
2299 if (rem->GetResultType() == Primitive::kPrimInt &&
2300 codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2301 // Have hardware divide instruction for int, do it with three instructions.
2302 call_kind = LocationSummary::kNoCall;
2303 }
2304
Calin Juravlebacfec32014-11-14 15:54:36 +00002305 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2306
Calin Juravled2ec87d2014-12-08 14:24:46 +00002307 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002308 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002309 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2310 locations->SetInAt(0, Location::RequiresRegister());
2311 locations->SetInAt(1, Location::RequiresRegister());
2312 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2313 locations->AddTemp(Location::RequiresRegister());
2314 } else {
2315 InvokeRuntimeCallingConvention calling_convention;
2316 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2317 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2318 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2319 // we only need the latter.
2320 locations->SetOut(Location::RegisterLocation(R1));
2321 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002322 break;
2323 }
2324 case Primitive::kPrimLong: {
2325 InvokeRuntimeCallingConvention calling_convention;
2326 locations->SetInAt(0, Location::RegisterPairLocation(
2327 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2328 locations->SetInAt(1, Location::RegisterPairLocation(
2329 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2330 // The runtime helper puts the output in R2,R3.
2331 locations->SetOut(Location::RegisterPairLocation(R2, R3));
2332 break;
2333 }
Calin Juravled2ec87d2014-12-08 14:24:46 +00002334 case Primitive::kPrimFloat: {
2335 InvokeRuntimeCallingConvention calling_convention;
2336 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
2337 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
2338 locations->SetOut(Location::FpuRegisterLocation(S0));
2339 break;
2340 }
2341
Calin Juravlebacfec32014-11-14 15:54:36 +00002342 case Primitive::kPrimDouble: {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002343 InvokeRuntimeCallingConvention calling_convention;
2344 locations->SetInAt(0, Location::FpuRegisterPairLocation(
2345 calling_convention.GetFpuRegisterAt(0), calling_convention.GetFpuRegisterAt(1)));
2346 locations->SetInAt(1, Location::FpuRegisterPairLocation(
2347 calling_convention.GetFpuRegisterAt(2), calling_convention.GetFpuRegisterAt(3)));
2348 locations->SetOut(Location::Location::FpuRegisterPairLocation(S0, S1));
Calin Juravlebacfec32014-11-14 15:54:36 +00002349 break;
2350 }
2351
2352 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002353 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002354 }
2355}
2356
2357void InstructionCodeGeneratorARM::VisitRem(HRem* rem) {
2358 LocationSummary* locations = rem->GetLocations();
2359 Location out = locations->Out();
2360 Location first = locations->InAt(0);
2361 Location second = locations->InAt(1);
2362
Calin Juravled2ec87d2014-12-08 14:24:46 +00002363 Primitive::Type type = rem->GetResultType();
2364 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002365 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002366 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2367 Register reg1 = first.AsRegister<Register>();
2368 Register reg2 = second.AsRegister<Register>();
2369 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravlebacfec32014-11-14 15:54:36 +00002370
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002371 // temp = reg1 / reg2 (integer division)
2372 // temp = temp * reg2
2373 // dest = reg1 - temp
2374 __ sdiv(temp, reg1, reg2);
2375 __ mul(temp, temp, reg2);
2376 __ sub(out.AsRegister<Register>(), reg1, ShifterOperand(temp));
2377 } else {
2378 InvokeRuntimeCallingConvention calling_convention;
2379 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2380 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2381 DCHECK_EQ(R1, out.AsRegister<Register>());
2382
2383 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), rem, rem->GetDexPc(), nullptr);
2384 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002385 break;
2386 }
2387
2388 case Primitive::kPrimLong: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002389 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002390 break;
2391 }
2392
Calin Juravled2ec87d2014-12-08 14:24:46 +00002393 case Primitive::kPrimFloat: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002394 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmodf), rem, rem->GetDexPc(), nullptr);
Calin Juravled2ec87d2014-12-08 14:24:46 +00002395 break;
2396 }
2397
Calin Juravlebacfec32014-11-14 15:54:36 +00002398 case Primitive::kPrimDouble: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002399 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002400 break;
2401 }
2402
2403 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002404 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002405 }
2406}
2407
Calin Juravled0d48522014-11-04 16:40:20 +00002408void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2409 LocationSummary* locations =
2410 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002411 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Calin Juravled0d48522014-11-04 16:40:20 +00002412 if (instruction->HasUses()) {
2413 locations->SetOut(Location::SameAsFirstInput());
2414 }
2415}
2416
2417void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2418 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction);
2419 codegen_->AddSlowPath(slow_path);
2420
2421 LocationSummary* locations = instruction->GetLocations();
2422 Location value = locations->InAt(0);
2423
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002424 switch (instruction->GetType()) {
2425 case Primitive::kPrimInt: {
2426 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002427 __ cmp(value.AsRegister<Register>(), ShifterOperand(0));
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002428 __ b(slow_path->GetEntryLabel(), EQ);
2429 } else {
2430 DCHECK(value.IsConstant()) << value;
2431 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2432 __ b(slow_path->GetEntryLabel());
2433 }
2434 }
2435 break;
2436 }
2437 case Primitive::kPrimLong: {
2438 if (value.IsRegisterPair()) {
2439 __ orrs(IP,
2440 value.AsRegisterPairLow<Register>(),
2441 ShifterOperand(value.AsRegisterPairHigh<Register>()));
2442 __ b(slow_path->GetEntryLabel(), EQ);
2443 } else {
2444 DCHECK(value.IsConstant()) << value;
2445 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2446 __ b(slow_path->GetEntryLabel());
2447 }
2448 }
2449 break;
2450 default:
2451 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2452 }
2453 }
Calin Juravled0d48522014-11-04 16:40:20 +00002454}
2455
Calin Juravle9aec02f2014-11-18 23:06:35 +00002456void LocationsBuilderARM::HandleShift(HBinaryOperation* op) {
2457 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2458
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002459 LocationSummary* locations =
2460 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002461
2462 switch (op->GetResultType()) {
2463 case Primitive::kPrimInt: {
2464 locations->SetInAt(0, Location::RequiresRegister());
2465 locations->SetInAt(1, Location::RegisterOrConstant(op->InputAt(1)));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002466 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002467 break;
2468 }
2469 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002470 locations->SetInAt(0, Location::RequiresRegister());
2471 locations->SetInAt(1, Location::RequiresRegister());
2472 locations->AddTemp(Location::RequiresRegister());
2473 locations->SetOut(Location::RequiresRegister());
Calin Juravle9aec02f2014-11-18 23:06:35 +00002474 break;
2475 }
2476 default:
2477 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2478 }
2479}
2480
2481void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) {
2482 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2483
2484 LocationSummary* locations = op->GetLocations();
2485 Location out = locations->Out();
2486 Location first = locations->InAt(0);
2487 Location second = locations->InAt(1);
2488
2489 Primitive::Type type = op->GetResultType();
2490 switch (type) {
2491 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002492 Register out_reg = out.AsRegister<Register>();
2493 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002494 // Arm doesn't mask the shift count so we need to do it ourselves.
2495 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002496 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002497 __ and_(second_reg, second_reg, ShifterOperand(kMaxIntShiftValue));
2498 if (op->IsShl()) {
2499 __ Lsl(out_reg, first_reg, second_reg);
2500 } else if (op->IsShr()) {
2501 __ Asr(out_reg, first_reg, second_reg);
2502 } else {
2503 __ Lsr(out_reg, first_reg, second_reg);
2504 }
2505 } else {
2506 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
2507 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue);
2508 if (shift_value == 0) { // arm does not support shifting with 0 immediate.
2509 __ Mov(out_reg, first_reg);
2510 } else if (op->IsShl()) {
2511 __ Lsl(out_reg, first_reg, shift_value);
2512 } else if (op->IsShr()) {
2513 __ Asr(out_reg, first_reg, shift_value);
2514 } else {
2515 __ Lsr(out_reg, first_reg, shift_value);
2516 }
2517 }
2518 break;
2519 }
2520 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002521 Register o_h = out.AsRegisterPairHigh<Register>();
2522 Register o_l = out.AsRegisterPairLow<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002523
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002524 Register temp = locations->GetTemp(0).AsRegister<Register>();
2525
2526 Register high = first.AsRegisterPairHigh<Register>();
2527 Register low = first.AsRegisterPairLow<Register>();
2528
2529 Register second_reg = second.AsRegister<Register>();
2530
Calin Juravle9aec02f2014-11-18 23:06:35 +00002531 if (op->IsShl()) {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002532 // Shift the high part
2533 __ and_(second_reg, second_reg, ShifterOperand(63));
2534 __ Lsl(o_h, high, second_reg);
2535 // Shift the low part and `or` what overflew on the high part
2536 __ rsb(temp, second_reg, ShifterOperand(32));
2537 __ Lsr(temp, low, temp);
2538 __ orr(o_h, o_h, ShifterOperand(temp));
2539 // If the shift is > 32 bits, override the high part
2540 __ subs(temp, second_reg, ShifterOperand(32));
2541 __ it(PL);
2542 __ Lsl(o_h, low, temp, false, PL);
2543 // Shift the low part
2544 __ Lsl(o_l, low, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002545 } else if (op->IsShr()) {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002546 // Shift the low part
2547 __ and_(second_reg, second_reg, ShifterOperand(63));
2548 __ Lsr(o_l, low, second_reg);
2549 // Shift the high part and `or` what underflew on the low part
2550 __ rsb(temp, second_reg, ShifterOperand(32));
2551 __ Lsl(temp, high, temp);
2552 __ orr(o_l, o_l, ShifterOperand(temp));
2553 // If the shift is > 32 bits, override the low part
2554 __ subs(temp, second_reg, ShifterOperand(32));
2555 __ it(PL);
2556 __ Asr(o_l, high, temp, false, PL);
2557 // Shift the high part
2558 __ Asr(o_h, high, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002559 } else {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002560 // same as Shr except we use `Lsr`s and not `Asr`s
2561 __ and_(second_reg, second_reg, ShifterOperand(63));
2562 __ Lsr(o_l, low, second_reg);
2563 __ rsb(temp, second_reg, ShifterOperand(32));
2564 __ Lsl(temp, high, temp);
2565 __ orr(o_l, o_l, ShifterOperand(temp));
2566 __ subs(temp, second_reg, ShifterOperand(32));
2567 __ it(PL);
2568 __ Lsr(o_l, high, temp, false, PL);
2569 __ Lsr(o_h, high, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002570 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00002571 break;
2572 }
2573 default:
2574 LOG(FATAL) << "Unexpected operation type " << type;
2575 }
2576}
2577
2578void LocationsBuilderARM::VisitShl(HShl* shl) {
2579 HandleShift(shl);
2580}
2581
2582void InstructionCodeGeneratorARM::VisitShl(HShl* shl) {
2583 HandleShift(shl);
2584}
2585
2586void LocationsBuilderARM::VisitShr(HShr* shr) {
2587 HandleShift(shr);
2588}
2589
2590void InstructionCodeGeneratorARM::VisitShr(HShr* shr) {
2591 HandleShift(shr);
2592}
2593
2594void LocationsBuilderARM::VisitUShr(HUShr* ushr) {
2595 HandleShift(ushr);
2596}
2597
2598void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) {
2599 HandleShift(ushr);
2600}
2601
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002602void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002603 LocationSummary* locations =
2604 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002605 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002606 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2607 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2608 locations->SetOut(Location::RegisterLocation(R0));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002609}
2610
2611void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) {
2612 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002613 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002614 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002615 codegen_->InvokeRuntime(GetThreadOffset<kArmWordSize>(instruction->GetEntrypoint()).Int32Value(),
2616 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002617 instruction->GetDexPc(),
2618 nullptr);
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002619}
2620
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002621void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) {
2622 LocationSummary* locations =
2623 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2624 InvokeRuntimeCallingConvention calling_convention;
2625 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002626 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002627 locations->SetOut(Location::RegisterLocation(R0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002628 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002629}
2630
2631void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) {
2632 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002633 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(2));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002634 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002635 codegen_->InvokeRuntime(GetThreadOffset<kArmWordSize>(instruction->GetEntrypoint()).Int32Value(),
2636 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002637 instruction->GetDexPc(),
2638 nullptr);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002639}
2640
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002641void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002642 LocationSummary* locations =
2643 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002644 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2645 if (location.IsStackSlot()) {
2646 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2647 } else if (location.IsDoubleStackSlot()) {
2648 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002649 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002650 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002651}
2652
2653void InstructionCodeGeneratorARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002654 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002655 UNUSED(instruction);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002656}
2657
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002658void LocationsBuilderARM::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002659 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002660 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002661 locations->SetInAt(0, Location::RequiresRegister());
2662 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002663}
2664
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002665void InstructionCodeGeneratorARM::VisitNot(HNot* not_) {
2666 LocationSummary* locations = not_->GetLocations();
2667 Location out = locations->Out();
2668 Location in = locations->InAt(0);
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002669 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002670 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002671 __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002672 break;
2673
2674 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01002675 __ mvn(out.AsRegisterPairLow<Register>(),
2676 ShifterOperand(in.AsRegisterPairLow<Register>()));
2677 __ mvn(out.AsRegisterPairHigh<Register>(),
2678 ShifterOperand(in.AsRegisterPairHigh<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002679 break;
2680
2681 default:
2682 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2683 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002684}
2685
David Brazdil66d126e2015-04-03 16:02:44 +01002686void LocationsBuilderARM::VisitBooleanNot(HBooleanNot* bool_not) {
2687 LocationSummary* locations =
2688 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
2689 locations->SetInAt(0, Location::RequiresRegister());
2690 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2691}
2692
2693void InstructionCodeGeneratorARM::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01002694 LocationSummary* locations = bool_not->GetLocations();
2695 Location out = locations->Out();
2696 Location in = locations->InAt(0);
2697 __ eor(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(1));
2698}
2699
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002700void LocationsBuilderARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002701 LocationSummary* locations =
2702 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00002703 switch (compare->InputAt(0)->GetType()) {
2704 case Primitive::kPrimLong: {
2705 locations->SetInAt(0, Location::RequiresRegister());
2706 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002707 // Output overlaps because it is written before doing the low comparison.
2708 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Calin Juravleddb7df22014-11-25 20:56:51 +00002709 break;
2710 }
2711 case Primitive::kPrimFloat:
2712 case Primitive::kPrimDouble: {
2713 locations->SetInAt(0, Location::RequiresFpuRegister());
2714 locations->SetInAt(1, Location::RequiresFpuRegister());
2715 locations->SetOut(Location::RequiresRegister());
2716 break;
2717 }
2718 default:
2719 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
2720 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002721}
2722
2723void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002724 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002725 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00002726 Location left = locations->InAt(0);
2727 Location right = locations->InAt(1);
2728
2729 Label less, greater, done;
2730 Primitive::Type type = compare->InputAt(0)->GetType();
2731 switch (type) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002732 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002733 __ cmp(left.AsRegisterPairHigh<Register>(),
2734 ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002735 __ b(&less, LT);
2736 __ b(&greater, GT);
Calin Juravleddb7df22014-11-25 20:56:51 +00002737 // Do LoadImmediate before any `cmp`, as LoadImmediate might affect the status flags.
2738 __ LoadImmediate(out, 0);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002739 __ cmp(left.AsRegisterPairLow<Register>(),
2740 ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare.
Calin Juravleddb7df22014-11-25 20:56:51 +00002741 break;
2742 }
2743 case Primitive::kPrimFloat:
2744 case Primitive::kPrimDouble: {
2745 __ LoadImmediate(out, 0);
2746 if (type == Primitive::kPrimFloat) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002747 __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00002748 } else {
2749 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
2750 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
2751 }
2752 __ vmstat(); // transfer FP status register to ARM APSR.
2753 __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002754 break;
2755 }
2756 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00002757 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002758 }
Calin Juravleddb7df22014-11-25 20:56:51 +00002759 __ b(&done, EQ);
2760 __ b(&less, CC); // CC is for both: unsigned compare for longs and 'less than' for floats.
2761
2762 __ Bind(&greater);
2763 __ LoadImmediate(out, 1);
2764 __ b(&done);
2765
2766 __ Bind(&less);
2767 __ LoadImmediate(out, -1);
2768
2769 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002770}
2771
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002772void LocationsBuilderARM::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002773 LocationSummary* locations =
2774 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01002775 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2776 locations->SetInAt(i, Location::Any());
2777 }
2778 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002779}
2780
2781void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002782 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002783 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002784}
2785
Calin Juravle52c48962014-12-16 17:02:57 +00002786void InstructionCodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) {
2787 // TODO (ported from quick): revisit Arm barrier kinds
2788 DmbOptions flavour = DmbOptions::ISH; // quiet c++ warnings
2789 switch (kind) {
2790 case MemBarrierKind::kAnyStore:
2791 case MemBarrierKind::kLoadAny:
2792 case MemBarrierKind::kAnyAny: {
2793 flavour = DmbOptions::ISH;
2794 break;
2795 }
2796 case MemBarrierKind::kStoreStore: {
2797 flavour = DmbOptions::ISHST;
2798 break;
2799 }
2800 default:
2801 LOG(FATAL) << "Unexpected memory barrier " << kind;
2802 }
2803 __ dmb(flavour);
2804}
2805
2806void InstructionCodeGeneratorARM::GenerateWideAtomicLoad(Register addr,
2807 uint32_t offset,
2808 Register out_lo,
2809 Register out_hi) {
2810 if (offset != 0) {
2811 __ LoadImmediate(out_lo, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00002812 __ add(IP, addr, ShifterOperand(out_lo));
2813 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00002814 }
2815 __ ldrexd(out_lo, out_hi, addr);
2816}
2817
2818void InstructionCodeGeneratorARM::GenerateWideAtomicStore(Register addr,
2819 uint32_t offset,
2820 Register value_lo,
2821 Register value_hi,
2822 Register temp1,
Calin Juravle77520bc2015-01-12 18:45:46 +00002823 Register temp2,
2824 HInstruction* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00002825 Label fail;
2826 if (offset != 0) {
2827 __ LoadImmediate(temp1, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00002828 __ add(IP, addr, ShifterOperand(temp1));
2829 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00002830 }
2831 __ Bind(&fail);
2832 // We need a load followed by store. (The address used in a STREX instruction must
2833 // be the same as the address in the most recently executed LDREX instruction.)
2834 __ ldrexd(temp1, temp2, addr);
Calin Juravle77520bc2015-01-12 18:45:46 +00002835 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002836 __ strexd(temp1, value_lo, value_hi, addr);
2837 __ cmp(temp1, ShifterOperand(0));
2838 __ b(&fail, NE);
2839}
2840
2841void LocationsBuilderARM::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
2842 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2843
Nicolas Geoffray39468442014-09-02 15:17:15 +01002844 LocationSummary* locations =
2845 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002846 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002847
Calin Juravle52c48962014-12-16 17:02:57 +00002848 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002849 if (Primitive::IsFloatingPointType(field_type)) {
2850 locations->SetInAt(1, Location::RequiresFpuRegister());
2851 } else {
2852 locations->SetInAt(1, Location::RequiresRegister());
2853 }
2854
Calin Juravle52c48962014-12-16 17:02:57 +00002855 bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble;
Calin Juravle34166012014-12-19 17:22:29 +00002856 bool generate_volatile = field_info.IsVolatile()
2857 && is_wide
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002858 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002859 // Temporary registers for the write barrier.
Calin Juravle52c48962014-12-16 17:02:57 +00002860 // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark.
2861 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002862 locations->AddTemp(Location::RequiresRegister());
2863 locations->AddTemp(Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002864 } else if (generate_volatile) {
Calin Juravle52c48962014-12-16 17:02:57 +00002865 // Arm encoding have some additional constraints for ldrexd/strexd:
2866 // - registers need to be consecutive
2867 // - the first register should be even but not R14.
2868 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
2869 // enable Arm encoding.
2870 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
2871
2872 locations->AddTemp(Location::RequiresRegister());
2873 locations->AddTemp(Location::RequiresRegister());
2874 if (field_type == Primitive::kPrimDouble) {
2875 // For doubles we need two more registers to copy the value.
2876 locations->AddTemp(Location::RegisterLocation(R2));
2877 locations->AddTemp(Location::RegisterLocation(R3));
2878 }
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002879 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002880}
2881
Calin Juravle52c48962014-12-16 17:02:57 +00002882void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction,
2883 const FieldInfo& field_info) {
2884 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2885
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002886 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00002887 Register base = locations->InAt(0).AsRegister<Register>();
2888 Location value = locations->InAt(1);
2889
2890 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002891 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00002892 Primitive::Type field_type = field_info.GetFieldType();
2893 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
2894
2895 if (is_volatile) {
2896 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
2897 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002898
2899 switch (field_type) {
2900 case Primitive::kPrimBoolean:
2901 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00002902 __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002903 break;
2904 }
2905
2906 case Primitive::kPrimShort:
2907 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00002908 __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002909 break;
2910 }
2911
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002912 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002913 case Primitive::kPrimNot: {
Calin Juravle77520bc2015-01-12 18:45:46 +00002914 __ StoreToOffset(kStoreWord, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002915 break;
2916 }
2917
2918 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00002919 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002920 GenerateWideAtomicStore(base, offset,
2921 value.AsRegisterPairLow<Register>(),
2922 value.AsRegisterPairHigh<Register>(),
2923 locations->GetTemp(0).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002924 locations->GetTemp(1).AsRegister<Register>(),
2925 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002926 } else {
2927 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002928 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002929 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002930 break;
2931 }
2932
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002933 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00002934 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002935 break;
2936 }
2937
2938 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00002939 DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00002940 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002941 Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>();
2942 Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>();
2943
2944 __ vmovrrd(value_reg_lo, value_reg_hi, value_reg);
2945
2946 GenerateWideAtomicStore(base, offset,
2947 value_reg_lo,
2948 value_reg_hi,
2949 locations->GetTemp(2).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002950 locations->GetTemp(3).AsRegister<Register>(),
2951 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002952 } else {
2953 __ StoreDToOffset(value_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002954 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002955 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002956 break;
2957 }
2958
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002959 case Primitive::kPrimVoid:
2960 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07002961 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002962 }
Calin Juravle52c48962014-12-16 17:02:57 +00002963
Calin Juravle77520bc2015-01-12 18:45:46 +00002964 // Longs and doubles are handled in the switch.
2965 if (field_type != Primitive::kPrimLong && field_type != Primitive::kPrimDouble) {
2966 codegen_->MaybeRecordImplicitNullCheck(instruction);
2967 }
2968
2969 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
2970 Register temp = locations->GetTemp(0).AsRegister<Register>();
2971 Register card = locations->GetTemp(1).AsRegister<Register>();
2972 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>());
2973 }
2974
Calin Juravle52c48962014-12-16 17:02:57 +00002975 if (is_volatile) {
2976 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2977 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002978}
2979
Calin Juravle52c48962014-12-16 17:02:57 +00002980void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
2981 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002982 LocationSummary* locations =
2983 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002984 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00002985
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002986 bool volatile_for_double = field_info.IsVolatile()
Calin Juravle34166012014-12-19 17:22:29 +00002987 && (field_info.GetFieldType() == Primitive::kPrimDouble)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002988 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002989 bool overlap = field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong);
Nicolas Geoffrayacc0b8e2015-04-20 12:39:57 +01002990
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002991 if (Primitive::IsFloatingPointType(instruction->GetType())) {
2992 locations->SetOut(Location::RequiresFpuRegister());
2993 } else {
2994 locations->SetOut(Location::RequiresRegister(),
2995 (overlap ? Location::kOutputOverlap : Location::kNoOutputOverlap));
2996 }
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002997 if (volatile_for_double) {
Calin Juravle52c48962014-12-16 17:02:57 +00002998 // Arm encoding have some additional constraints for ldrexd/strexd:
2999 // - registers need to be consecutive
3000 // - the first register should be even but not R14.
3001 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
3002 // enable Arm encoding.
3003 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
3004 locations->AddTemp(Location::RequiresRegister());
3005 locations->AddTemp(Location::RequiresRegister());
3006 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003007}
3008
Calin Juravle52c48962014-12-16 17:02:57 +00003009void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction,
3010 const FieldInfo& field_info) {
3011 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003012
Calin Juravle52c48962014-12-16 17:02:57 +00003013 LocationSummary* locations = instruction->GetLocations();
3014 Register base = locations->InAt(0).AsRegister<Register>();
3015 Location out = locations->Out();
3016 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003017 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00003018 Primitive::Type field_type = field_info.GetFieldType();
3019 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3020
3021 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003022 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003023 __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003024 break;
3025 }
3026
3027 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003028 __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003029 break;
3030 }
3031
3032 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003033 __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003034 break;
3035 }
3036
3037 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003038 __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003039 break;
3040 }
3041
3042 case Primitive::kPrimInt:
3043 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003044 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003045 break;
3046 }
3047
3048 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00003049 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003050 GenerateWideAtomicLoad(base, offset,
3051 out.AsRegisterPairLow<Register>(),
3052 out.AsRegisterPairHigh<Register>());
3053 } else {
3054 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset);
3055 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003056 break;
3057 }
3058
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003059 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003060 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003061 break;
3062 }
3063
3064 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003065 DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00003066 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003067 Register lo = locations->GetTemp(0).AsRegister<Register>();
3068 Register hi = locations->GetTemp(1).AsRegister<Register>();
3069 GenerateWideAtomicLoad(base, offset, lo, hi);
Calin Juravle77520bc2015-01-12 18:45:46 +00003070 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003071 __ vmovdrr(out_reg, lo, hi);
3072 } else {
3073 __ LoadDFromOffset(out_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003074 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003075 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003076 break;
3077 }
3078
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003079 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003080 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003081 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003082 }
Calin Juravle52c48962014-12-16 17:02:57 +00003083
Calin Juravle77520bc2015-01-12 18:45:46 +00003084 // Doubles are handled in the switch.
3085 if (field_type != Primitive::kPrimDouble) {
3086 codegen_->MaybeRecordImplicitNullCheck(instruction);
3087 }
3088
Calin Juravle52c48962014-12-16 17:02:57 +00003089 if (is_volatile) {
3090 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3091 }
3092}
3093
3094void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3095 HandleFieldSet(instruction, instruction->GetFieldInfo());
3096}
3097
3098void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3099 HandleFieldSet(instruction, instruction->GetFieldInfo());
3100}
3101
3102void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3103 HandleFieldGet(instruction, instruction->GetFieldInfo());
3104}
3105
3106void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3107 HandleFieldGet(instruction, instruction->GetFieldInfo());
3108}
3109
3110void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3111 HandleFieldGet(instruction, instruction->GetFieldInfo());
3112}
3113
3114void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3115 HandleFieldGet(instruction, instruction->GetFieldInfo());
3116}
3117
3118void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3119 HandleFieldSet(instruction, instruction->GetFieldInfo());
3120}
3121
3122void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3123 HandleFieldSet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003124}
3125
3126void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003127 LocationSummary* locations =
3128 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravle77520bc2015-01-12 18:45:46 +00003129 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003130 if (instruction->HasUses()) {
3131 locations->SetOut(Location::SameAsFirstInput());
3132 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003133}
3134
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003135void InstructionCodeGeneratorARM::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003136 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3137 return;
3138 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003139 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003140
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003141 __ LoadFromOffset(kLoadWord, IP, obj.AsRegister<Register>(), 0);
3142 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3143}
3144
3145void InstructionCodeGeneratorARM::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003146 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003147 codegen_->AddSlowPath(slow_path);
3148
3149 LocationSummary* locations = instruction->GetLocations();
3150 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003151
Calin Juravle77520bc2015-01-12 18:45:46 +00003152 __ cmp(obj.AsRegister<Register>(), ShifterOperand(0));
3153 __ b(slow_path->GetEntryLabel(), EQ);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003154}
3155
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003156void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
3157 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3158 GenerateImplicitNullCheck(instruction);
3159 } else {
3160 GenerateExplicitNullCheck(instruction);
3161 }
3162}
3163
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003164void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003165 LocationSummary* locations =
3166 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003167 locations->SetInAt(0, Location::RequiresRegister());
3168 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003169 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3170 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3171 } else {
3172 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3173 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003174}
3175
3176void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
3177 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003178 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003179 Location index = locations->InAt(1);
3180
3181 switch (instruction->GetType()) {
3182 case Primitive::kPrimBoolean: {
3183 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003184 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003185 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003186 size_t offset =
3187 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003188 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
3189 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003190 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003191 __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset);
3192 }
3193 break;
3194 }
3195
3196 case Primitive::kPrimByte: {
3197 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003198 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003199 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003200 size_t offset =
3201 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003202 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
3203 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003204 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003205 __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset);
3206 }
3207 break;
3208 }
3209
3210 case Primitive::kPrimShort: {
3211 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003212 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003213 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003214 size_t offset =
3215 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003216 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
3217 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003218 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003219 __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset);
3220 }
3221 break;
3222 }
3223
3224 case Primitive::kPrimChar: {
3225 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003226 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003227 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003228 size_t offset =
3229 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003230 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
3231 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003232 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003233 __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset);
3234 }
3235 break;
3236 }
3237
3238 case Primitive::kPrimInt:
3239 case Primitive::kPrimNot: {
3240 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
3241 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003242 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003243 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003244 size_t offset =
3245 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003246 __ LoadFromOffset(kLoadWord, out, obj, offset);
3247 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003248 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003249 __ LoadFromOffset(kLoadWord, out, IP, data_offset);
3250 }
3251 break;
3252 }
3253
3254 case Primitive::kPrimLong: {
3255 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003256 Location out = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003257 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003258 size_t offset =
3259 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003260 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003261 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003262 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003263 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003264 }
3265 break;
3266 }
3267
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003268 case Primitive::kPrimFloat: {
3269 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3270 Location out = locations->Out();
3271 DCHECK(out.IsFpuRegister());
3272 if (index.IsConstant()) {
3273 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3274 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), obj, offset);
3275 } else {
3276 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3277 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), IP, data_offset);
3278 }
3279 break;
3280 }
3281
3282 case Primitive::kPrimDouble: {
3283 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3284 Location out = locations->Out();
3285 DCHECK(out.IsFpuRegisterPair());
3286 if (index.IsConstant()) {
3287 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3288 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3289 } else {
3290 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3291 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3292 }
3293 break;
3294 }
3295
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003296 case Primitive::kPrimVoid:
3297 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003298 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003299 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003300 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003301}
3302
3303void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003304 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003305
3306 bool needs_write_barrier =
3307 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
3308 bool needs_runtime_call = instruction->NeedsTypeCheck();
3309
Nicolas Geoffray39468442014-09-02 15:17:15 +01003310 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003311 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
3312 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003313 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003314 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3315 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3316 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003317 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003318 locations->SetInAt(0, Location::RequiresRegister());
3319 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003320 if (Primitive::IsFloatingPointType(value_type)) {
3321 locations->SetInAt(2, Location::RequiresFpuRegister());
3322 } else {
3323 locations->SetInAt(2, Location::RequiresRegister());
3324 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003325
3326 if (needs_write_barrier) {
3327 // Temporary registers for the write barrier.
3328 locations->AddTemp(Location::RequiresRegister());
3329 locations->AddTemp(Location::RequiresRegister());
3330 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003331 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003332}
3333
3334void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
3335 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003336 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003337 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003338 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003339 bool needs_runtime_call = locations->WillCall();
3340 bool needs_write_barrier =
3341 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003342
3343 switch (value_type) {
3344 case Primitive::kPrimBoolean:
3345 case Primitive::kPrimByte: {
3346 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003347 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003348 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003349 size_t offset =
3350 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003351 __ StoreToOffset(kStoreByte, value, obj, offset);
3352 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003353 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003354 __ StoreToOffset(kStoreByte, value, IP, data_offset);
3355 }
3356 break;
3357 }
3358
3359 case Primitive::kPrimShort:
3360 case Primitive::kPrimChar: {
3361 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003362 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003363 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003364 size_t offset =
3365 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003366 __ StoreToOffset(kStoreHalfword, value, obj, offset);
3367 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003368 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003369 __ StoreToOffset(kStoreHalfword, value, IP, data_offset);
3370 }
3371 break;
3372 }
3373
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003374 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003375 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003376 if (!needs_runtime_call) {
3377 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003378 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003379 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003380 size_t offset =
3381 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003382 __ StoreToOffset(kStoreWord, value, obj, offset);
3383 } else {
3384 DCHECK(index.IsRegister()) << index;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003385 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003386 __ StoreToOffset(kStoreWord, value, IP, data_offset);
3387 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003388 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003389 if (needs_write_barrier) {
3390 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003391 Register temp = locations->GetTemp(0).AsRegister<Register>();
3392 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003393 codegen_->MarkGCCard(temp, card, obj, value);
3394 }
3395 } else {
3396 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain199f3362014-11-27 17:15:16 +00003397 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
3398 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003399 instruction->GetDexPc(),
3400 nullptr);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003401 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003402 break;
3403 }
3404
3405 case Primitive::kPrimLong: {
3406 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003407 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003408 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003409 size_t offset =
3410 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003411 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003412 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003413 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003414 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003415 }
3416 break;
3417 }
3418
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003419 case Primitive::kPrimFloat: {
3420 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3421 Location value = locations->InAt(2);
3422 DCHECK(value.IsFpuRegister());
3423 if (index.IsConstant()) {
3424 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3425 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), obj, offset);
3426 } else {
3427 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3428 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), IP, data_offset);
3429 }
3430 break;
3431 }
3432
3433 case Primitive::kPrimDouble: {
3434 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3435 Location value = locations->InAt(2);
3436 DCHECK(value.IsFpuRegisterPair());
3437 if (index.IsConstant()) {
3438 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3439 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3440 } else {
3441 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3442 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3443 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003444
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003445 break;
3446 }
3447
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003448 case Primitive::kPrimVoid:
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003449 LOG(FATAL) << "Unreachable type " << value_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003450 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003451 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003452
3453 // Ints and objects are handled in the switch.
3454 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
3455 codegen_->MaybeRecordImplicitNullCheck(instruction);
3456 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003457}
3458
3459void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003460 LocationSummary* locations =
3461 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003462 locations->SetInAt(0, Location::RequiresRegister());
3463 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003464}
3465
3466void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
3467 LocationSummary* locations = instruction->GetLocations();
3468 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003469 Register obj = locations->InAt(0).AsRegister<Register>();
3470 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003471 __ LoadFromOffset(kLoadWord, out, obj, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003472 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003473}
3474
3475void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003476 LocationSummary* locations =
3477 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003478 locations->SetInAt(0, Location::RequiresRegister());
3479 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003480 if (instruction->HasUses()) {
3481 locations->SetOut(Location::SameAsFirstInput());
3482 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003483}
3484
3485void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
3486 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003487 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(
Nicolas Geoffray39468442014-09-02 15:17:15 +01003488 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003489 codegen_->AddSlowPath(slow_path);
3490
Roland Levillain271ab9c2014-11-27 15:23:57 +00003491 Register index = locations->InAt(0).AsRegister<Register>();
3492 Register length = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003493
3494 __ cmp(index, ShifterOperand(length));
3495 __ b(slow_path->GetEntryLabel(), CS);
3496}
3497
3498void CodeGeneratorARM::MarkGCCard(Register temp, Register card, Register object, Register value) {
3499 Label is_null;
3500 __ CompareAndBranchIfZero(value, &is_null);
3501 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value());
3502 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
3503 __ strb(card, Address(card, temp));
3504 __ Bind(&is_null);
3505}
3506
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003507void LocationsBuilderARM::VisitTemporary(HTemporary* temp) {
3508 temp->SetLocations(nullptr);
3509}
3510
3511void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp) {
3512 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003513 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003514}
3515
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003516void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003517 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003518 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003519}
3520
3521void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003522 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3523}
3524
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003525void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
3526 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3527}
3528
3529void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003530 HBasicBlock* block = instruction->GetBlock();
3531 if (block->GetLoopInformation() != nullptr) {
3532 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3533 // The back edge will generate the suspend check.
3534 return;
3535 }
3536 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3537 // The goto will generate the suspend check.
3538 return;
3539 }
3540 GenerateSuspendCheck(instruction, nullptr);
3541}
3542
3543void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
3544 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003545 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003546 new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003547 codegen_->AddSlowPath(slow_path);
3548
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003549 __ LoadFromOffset(
3550 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value());
3551 __ cmp(IP, ShifterOperand(0));
3552 // TODO: Figure out the branch offsets and use cbz/cbnz.
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003553 if (successor == nullptr) {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003554 __ b(slow_path->GetEntryLabel(), NE);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003555 __ Bind(slow_path->GetReturnLabel());
3556 } else {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003557 __ b(codegen_->GetLabelOf(successor), EQ);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003558 __ b(slow_path->GetEntryLabel());
3559 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003560}
3561
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003562ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
3563 return codegen_->GetAssembler();
3564}
3565
3566void ParallelMoveResolverARM::EmitMove(size_t index) {
3567 MoveOperands* move = moves_.Get(index);
3568 Location source = move->GetSource();
3569 Location destination = move->GetDestination();
3570
3571 if (source.IsRegister()) {
3572 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003573 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003574 } else {
3575 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003576 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003577 SP, destination.GetStackIndex());
3578 }
3579 } else if (source.IsStackSlot()) {
3580 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003581 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003582 SP, source.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003583 } else if (destination.IsFpuRegister()) {
3584 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003585 } else {
3586 DCHECK(destination.IsStackSlot());
3587 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
3588 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3589 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003590 } else if (source.IsFpuRegister()) {
3591 if (destination.IsFpuRegister()) {
3592 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003593 } else {
3594 DCHECK(destination.IsStackSlot());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003595 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
3596 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003597 } else if (source.IsDoubleStackSlot()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003598 if (destination.IsDoubleStackSlot()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003599 __ LoadDFromOffset(DTMP, SP, source.GetStackIndex());
3600 __ StoreDToOffset(DTMP, SP, destination.GetStackIndex());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003601 } else if (destination.IsRegisterPair()) {
3602 DCHECK(ExpectedPairLayout(destination));
3603 __ LoadFromOffset(
3604 kLoadWordPair, destination.AsRegisterPairLow<Register>(), SP, source.GetStackIndex());
3605 } else {
3606 DCHECK(destination.IsFpuRegisterPair()) << destination;
3607 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3608 SP,
3609 source.GetStackIndex());
3610 }
3611 } else if (source.IsRegisterPair()) {
3612 if (destination.IsRegisterPair()) {
3613 __ Mov(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
3614 __ Mov(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
3615 } else {
3616 DCHECK(destination.IsDoubleStackSlot()) << destination;
3617 DCHECK(ExpectedPairLayout(source));
3618 __ StoreToOffset(
3619 kStoreWordPair, source.AsRegisterPairLow<Register>(), SP, destination.GetStackIndex());
3620 }
3621 } else if (source.IsFpuRegisterPair()) {
3622 if (destination.IsFpuRegisterPair()) {
3623 __ vmovd(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3624 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
3625 } else {
3626 DCHECK(destination.IsDoubleStackSlot()) << destination;
3627 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
3628 SP,
3629 destination.GetStackIndex());
3630 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003631 } else {
3632 DCHECK(source.IsConstant()) << source;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003633 HConstant* constant = source.GetConstant();
3634 if (constant->IsIntConstant() || constant->IsNullConstant()) {
3635 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003636 if (destination.IsRegister()) {
3637 __ LoadImmediate(destination.AsRegister<Register>(), value);
3638 } else {
3639 DCHECK(destination.IsStackSlot());
3640 __ LoadImmediate(IP, value);
3641 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3642 }
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003643 } else if (constant->IsLongConstant()) {
3644 int64_t value = constant->AsLongConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003645 if (destination.IsRegisterPair()) {
3646 __ LoadImmediate(destination.AsRegisterPairLow<Register>(), Low32Bits(value));
3647 __ LoadImmediate(destination.AsRegisterPairHigh<Register>(), High32Bits(value));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003648 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003649 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003650 __ LoadImmediate(IP, Low32Bits(value));
3651 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3652 __ LoadImmediate(IP, High32Bits(value));
3653 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3654 }
3655 } else if (constant->IsDoubleConstant()) {
3656 double value = constant->AsDoubleConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003657 if (destination.IsFpuRegisterPair()) {
3658 __ LoadDImmediate(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003659 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003660 DCHECK(destination.IsDoubleStackSlot()) << destination;
3661 uint64_t int_value = bit_cast<uint64_t, double>(value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003662 __ LoadImmediate(IP, Low32Bits(int_value));
3663 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3664 __ LoadImmediate(IP, High32Bits(int_value));
3665 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3666 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003667 } else {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003668 DCHECK(constant->IsFloatConstant()) << constant->DebugName();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003669 float value = constant->AsFloatConstant()->GetValue();
3670 if (destination.IsFpuRegister()) {
3671 __ LoadSImmediate(destination.AsFpuRegister<SRegister>(), value);
3672 } else {
3673 DCHECK(destination.IsStackSlot());
3674 __ LoadImmediate(IP, bit_cast<int32_t, float>(value));
3675 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3676 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003677 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003678 }
3679}
3680
3681void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
3682 __ Mov(IP, reg);
3683 __ LoadFromOffset(kLoadWord, reg, SP, mem);
3684 __ StoreToOffset(kStoreWord, IP, SP, mem);
3685}
3686
3687void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
3688 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
3689 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
3690 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
3691 SP, mem1 + stack_offset);
3692 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
3693 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
3694 SP, mem2 + stack_offset);
3695 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
3696}
3697
3698void ParallelMoveResolverARM::EmitSwap(size_t index) {
3699 MoveOperands* move = moves_.Get(index);
3700 Location source = move->GetSource();
3701 Location destination = move->GetDestination();
3702
3703 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003704 DCHECK_NE(source.AsRegister<Register>(), IP);
3705 DCHECK_NE(destination.AsRegister<Register>(), IP);
3706 __ Mov(IP, source.AsRegister<Register>());
3707 __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>());
3708 __ Mov(destination.AsRegister<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003709 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003710 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003711 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003712 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003713 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
3714 Exchange(source.GetStackIndex(), destination.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003715 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003716 __ vmovrs(IP, source.AsFpuRegister<SRegister>());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003717 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>());
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003718 __ vmovsr(destination.AsFpuRegister<SRegister>(), IP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003719 } else if (source.IsRegisterPair() && destination.IsRegisterPair()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003720 __ vmovdrr(DTMP, source.AsRegisterPairLow<Register>(), source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003721 __ Mov(source.AsRegisterPairLow<Register>(), destination.AsRegisterPairLow<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003722 __ Mov(source.AsRegisterPairHigh<Register>(), destination.AsRegisterPairHigh<Register>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003723 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
3724 destination.AsRegisterPairHigh<Register>(),
3725 DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003726 } else if (source.IsRegisterPair() || destination.IsRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003727 Register low_reg = source.IsRegisterPair()
3728 ? source.AsRegisterPairLow<Register>()
3729 : destination.AsRegisterPairLow<Register>();
3730 int mem = source.IsRegisterPair()
3731 ? destination.GetStackIndex()
3732 : source.GetStackIndex();
3733 DCHECK(ExpectedPairLayout(source.IsRegisterPair() ? source : destination));
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003734 __ vmovdrr(DTMP, low_reg, static_cast<Register>(low_reg + 1));
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003735 __ LoadFromOffset(kLoadWordPair, low_reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003736 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003737 } else if (source.IsFpuRegisterPair() && destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003738 DRegister first = FromLowSToD(source.AsFpuRegisterPairLow<SRegister>());
3739 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003740 __ vmovd(DTMP, first);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003741 __ vmovd(first, second);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003742 __ vmovd(second, DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003743 } else if (source.IsFpuRegisterPair() || destination.IsFpuRegisterPair()) {
3744 DRegister reg = source.IsFpuRegisterPair()
3745 ? FromLowSToD(source.AsFpuRegisterPairLow<SRegister>())
3746 : FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
3747 int mem = source.IsFpuRegisterPair()
3748 ? destination.GetStackIndex()
3749 : source.GetStackIndex();
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003750 __ vmovd(DTMP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003751 __ LoadDFromOffset(reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003752 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003753 } else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
3754 SRegister reg = source.IsFpuRegister() ? source.AsFpuRegister<SRegister>()
3755 : destination.AsFpuRegister<SRegister>();
3756 int mem = source.IsFpuRegister()
3757 ? destination.GetStackIndex()
3758 : source.GetStackIndex();
3759
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003760 __ vmovrs(IP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003761 __ LoadSFromOffset(reg, SP, mem);
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003762 __ StoreToOffset(kStoreWord, IP, SP, mem);
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003763 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003764 Exchange(source.GetStackIndex(), destination.GetStackIndex());
3765 Exchange(source.GetHighStackIndex(kArmWordSize), destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003766 } else {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003767 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003768 }
3769}
3770
3771void ParallelMoveResolverARM::SpillScratch(int reg) {
3772 __ Push(static_cast<Register>(reg));
3773}
3774
3775void ParallelMoveResolverARM::RestoreScratch(int reg) {
3776 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003777}
3778
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003779void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003780 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3781 ? LocationSummary::kCallOnSlowPath
3782 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003783 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003784 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003785 locations->SetOut(Location::RequiresRegister());
3786}
3787
3788void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003789 Register out = cls->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003790 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003791 DCHECK(!cls->CanCallRuntime());
3792 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003793 codegen_->LoadCurrentMethod(out);
3794 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3795 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003796 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003797 codegen_->LoadCurrentMethod(out);
3798 __ LoadFromOffset(
3799 kLoadWord, out, out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value());
3800 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003801
3802 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3803 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3804 codegen_->AddSlowPath(slow_path);
3805 __ cmp(out, ShifterOperand(0));
3806 __ b(slow_path->GetEntryLabel(), EQ);
3807 if (cls->MustGenerateClinitCheck()) {
3808 GenerateClassInitializationCheck(slow_path, out);
3809 } else {
3810 __ Bind(slow_path->GetExitLabel());
3811 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003812 }
3813}
3814
3815void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
3816 LocationSummary* locations =
3817 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3818 locations->SetInAt(0, Location::RequiresRegister());
3819 if (check->HasUses()) {
3820 locations->SetOut(Location::SameAsFirstInput());
3821 }
3822}
3823
3824void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003825 // We assume the class is not null.
3826 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3827 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003828 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00003829 GenerateClassInitializationCheck(slow_path,
3830 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003831}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003832
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003833void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
3834 SlowPathCodeARM* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003835 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
3836 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
3837 __ b(slow_path->GetEntryLabel(), LT);
3838 // Even if the initialized flag is set, we may be in a situation where caches are not synced
3839 // properly. Therefore, we do a memory fence.
3840 __ dmb(ISH);
3841 __ Bind(slow_path->GetExitLabel());
3842}
3843
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003844void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
3845 LocationSummary* locations =
3846 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3847 locations->SetOut(Location::RequiresRegister());
3848}
3849
3850void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
3851 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
3852 codegen_->AddSlowPath(slow_path);
3853
Roland Levillain271ab9c2014-11-27 15:23:57 +00003854 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003855 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08003856 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3857 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003858 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
3859 __ cmp(out, ShifterOperand(0));
3860 __ b(slow_path->GetEntryLabel(), EQ);
3861 __ Bind(slow_path->GetExitLabel());
3862}
3863
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003864void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
3865 LocationSummary* locations =
3866 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3867 locations->SetOut(Location::RequiresRegister());
3868}
3869
3870void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003871 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003872 int32_t offset = Thread::ExceptionOffset<kArmWordSize>().Int32Value();
3873 __ LoadFromOffset(kLoadWord, out, TR, offset);
3874 __ LoadImmediate(IP, 0);
3875 __ StoreToOffset(kStoreWord, IP, TR, offset);
3876}
3877
3878void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
3879 LocationSummary* locations =
3880 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3881 InvokeRuntimeCallingConvention calling_convention;
3882 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3883}
3884
3885void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
3886 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003887 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003888}
3889
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003890void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003891 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
3892 ? LocationSummary::kNoCall
3893 : LocationSummary::kCallOnSlowPath;
3894 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3895 locations->SetInAt(0, Location::RequiresRegister());
3896 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003897 // The out register is used as a temporary, so it overlaps with the inputs.
3898 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003899}
3900
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003901void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003902 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003903 Register obj = locations->InAt(0).AsRegister<Register>();
3904 Register cls = locations->InAt(1).AsRegister<Register>();
3905 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003906 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3907 Label done, zero;
3908 SlowPathCodeARM* slow_path = nullptr;
3909
3910 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003911 // avoid null check if we know obj is not null.
3912 if (instruction->MustDoNullCheck()) {
3913 __ cmp(obj, ShifterOperand(0));
3914 __ b(&zero, EQ);
3915 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003916 // Compare the class of `obj` with `cls`.
3917 __ LoadFromOffset(kLoadWord, out, obj, class_offset);
3918 __ cmp(out, ShifterOperand(cls));
3919 if (instruction->IsClassFinal()) {
3920 // Classes must be equal for the instanceof to succeed.
3921 __ b(&zero, NE);
3922 __ LoadImmediate(out, 1);
3923 __ b(&done);
3924 } else {
3925 // If the classes are not equal, we go into a slow path.
3926 DCHECK(locations->OnlyCallsOnSlowPath());
3927 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003928 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003929 codegen_->AddSlowPath(slow_path);
3930 __ b(slow_path->GetEntryLabel(), NE);
3931 __ LoadImmediate(out, 1);
3932 __ b(&done);
3933 }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003934
3935 if (instruction->MustDoNullCheck() || instruction->IsClassFinal()) {
3936 __ Bind(&zero);
3937 __ LoadImmediate(out, 0);
3938 }
3939
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003940 if (slow_path != nullptr) {
3941 __ Bind(slow_path->GetExitLabel());
3942 }
3943 __ Bind(&done);
3944}
3945
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003946void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
3947 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3948 instruction, LocationSummary::kCallOnSlowPath);
3949 locations->SetInAt(0, Location::RequiresRegister());
3950 locations->SetInAt(1, Location::RequiresRegister());
3951 locations->AddTemp(Location::RequiresRegister());
3952}
3953
3954void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
3955 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003956 Register obj = locations->InAt(0).AsRegister<Register>();
3957 Register cls = locations->InAt(1).AsRegister<Register>();
3958 Register temp = locations->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003959 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3960
3961 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
3962 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
3963 codegen_->AddSlowPath(slow_path);
3964
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003965 // avoid null check if we know obj is not null.
3966 if (instruction->MustDoNullCheck()) {
3967 __ cmp(obj, ShifterOperand(0));
3968 __ b(slow_path->GetExitLabel(), EQ);
3969 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003970 // Compare the class of `obj` with `cls`.
3971 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
3972 __ cmp(temp, ShifterOperand(cls));
3973 __ b(slow_path->GetEntryLabel(), NE);
3974 __ Bind(slow_path->GetExitLabel());
3975}
3976
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003977void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3978 LocationSummary* locations =
3979 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3980 InvokeRuntimeCallingConvention calling_convention;
3981 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3982}
3983
3984void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3985 codegen_->InvokeRuntime(instruction->IsEnter()
3986 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3987 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003988 instruction->GetDexPc(),
3989 nullptr);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003990}
3991
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003992void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
3993void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
3994void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
3995
3996void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
3997 LocationSummary* locations =
3998 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3999 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
4000 || instruction->GetResultType() == Primitive::kPrimLong);
4001 locations->SetInAt(0, Location::RequiresRegister());
4002 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00004003 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004004}
4005
4006void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
4007 HandleBitwiseOperation(instruction);
4008}
4009
4010void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
4011 HandleBitwiseOperation(instruction);
4012}
4013
4014void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
4015 HandleBitwiseOperation(instruction);
4016}
4017
4018void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
4019 LocationSummary* locations = instruction->GetLocations();
4020
4021 if (instruction->GetResultType() == Primitive::kPrimInt) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004022 Register first = locations->InAt(0).AsRegister<Register>();
4023 Register second = locations->InAt(1).AsRegister<Register>();
4024 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004025 if (instruction->IsAnd()) {
4026 __ and_(out, first, ShifterOperand(second));
4027 } else if (instruction->IsOr()) {
4028 __ orr(out, first, ShifterOperand(second));
4029 } else {
4030 DCHECK(instruction->IsXor());
4031 __ eor(out, first, ShifterOperand(second));
4032 }
4033 } else {
4034 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
4035 Location first = locations->InAt(0);
4036 Location second = locations->InAt(1);
4037 Location out = locations->Out();
4038 if (instruction->IsAnd()) {
4039 __ and_(out.AsRegisterPairLow<Register>(),
4040 first.AsRegisterPairLow<Register>(),
4041 ShifterOperand(second.AsRegisterPairLow<Register>()));
4042 __ and_(out.AsRegisterPairHigh<Register>(),
4043 first.AsRegisterPairHigh<Register>(),
4044 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4045 } else if (instruction->IsOr()) {
4046 __ orr(out.AsRegisterPairLow<Register>(),
4047 first.AsRegisterPairLow<Register>(),
4048 ShifterOperand(second.AsRegisterPairLow<Register>()));
4049 __ orr(out.AsRegisterPairHigh<Register>(),
4050 first.AsRegisterPairHigh<Register>(),
4051 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4052 } else {
4053 DCHECK(instruction->IsXor());
4054 __ eor(out.AsRegisterPairLow<Register>(),
4055 first.AsRegisterPairLow<Register>(),
4056 ShifterOperand(second.AsRegisterPairLow<Register>()));
4057 __ eor(out.AsRegisterPairHigh<Register>(),
4058 first.AsRegisterPairHigh<Register>(),
4059 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4060 }
4061 }
4062}
4063
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004064void CodeGeneratorARM::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Register temp) {
4065 DCHECK_EQ(temp, kArtMethodRegister);
4066
4067 // TODO: Implement all kinds of calls:
4068 // 1) boot -> boot
4069 // 2) app -> boot
4070 // 3) app -> app
4071 //
4072 // Currently we implement the app -> app logic, which looks up in the resolve cache.
4073
Jeff Hao848f70a2014-01-15 13:49:50 -08004074 if (invoke->IsStringInit()) {
4075 // temp = thread->string_init_entrypoint
4076 __ LoadFromOffset(kLoadWord, temp, TR, invoke->GetStringInitOffset());
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004077 // LR = temp[offset_of_quick_compiled_code]
4078 __ LoadFromOffset(kLoadWord, LR, temp,
4079 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
4080 kArmWordSize).Int32Value());
4081 // LR()
4082 __ blx(LR);
4083 } else {
Jeff Hao848f70a2014-01-15 13:49:50 -08004084 // temp = method;
4085 LoadCurrentMethod(temp);
4086 if (!invoke->IsRecursive()) {
4087 // temp = temp->dex_cache_resolved_methods_;
4088 __ LoadFromOffset(
4089 kLoadWord, temp, temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value());
4090 // temp = temp[index_in_cache]
4091 __ LoadFromOffset(
4092 kLoadWord, temp, temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex()));
4093 // LR = temp[offset_of_quick_compiled_code]
4094 __ LoadFromOffset(kLoadWord, LR, temp,
4095 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
4096 kArmWordSize).Int32Value());
4097 // LR()
4098 __ blx(LR);
4099 } else {
4100 __ bl(GetFrameEntryLabel());
4101 }
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004102 }
4103
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004104 DCHECK(!IsLeafMethod());
4105}
4106
Calin Juravleb1498f62015-02-16 13:13:29 +00004107void LocationsBuilderARM::VisitBoundType(HBoundType* instruction) {
4108 // Nothing to do, this should be removed during prepare for register allocator.
4109 UNUSED(instruction);
4110 LOG(FATAL) << "Unreachable";
4111}
4112
4113void InstructionCodeGeneratorARM::VisitBoundType(HBoundType* instruction) {
4114 // Nothing to do, this should be removed during prepare for register allocator.
4115 UNUSED(instruction);
4116 LOG(FATAL) << "Unreachable";
4117}
4118
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00004119} // namespace arm
4120} // namespace art