blob: 38fa04315a181b44a5e68d874b9b8ff196767568 [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 Geoffray19a19cf2014-10-22 16:07:05 +0100179 arm_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000180 int32_t entry_point_offset = do_clinit_
181 ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
182 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000183 arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000184
185 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000186 Location out = locations->Out();
187 if (out.IsValid()) {
188 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000189 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
190 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000191 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100192 __ b(GetExitLabel());
193 }
194
195 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000196 // The class this slow path will load.
197 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100198
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000199 // The instruction where this slow path is happening.
200 // (Might be the load class or an initialization check).
201 HInstruction* const at_;
202
203 // The dex PC of `at_`.
204 const uint32_t dex_pc_;
205
206 // Whether to initialize the class.
207 const bool do_clinit_;
208
209 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100210};
211
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000212class LoadStringSlowPathARM : public SlowPathCodeARM {
213 public:
214 explicit LoadStringSlowPathARM(HLoadString* instruction) : instruction_(instruction) {}
215
Alexandre Rames67555f72014-11-18 10:55:16 +0000216 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000217 LocationSummary* locations = instruction_->GetLocations();
218 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
219
220 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
221 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000222 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000223
224 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800225 arm_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
226 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction_->GetStringIndex());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000227 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000228 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000229 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
230
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000231 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000232 __ b(GetExitLabel());
233 }
234
235 private:
236 HLoadString* const instruction_;
237
238 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM);
239};
240
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000241class TypeCheckSlowPathARM : public SlowPathCodeARM {
242 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000243 TypeCheckSlowPathARM(HInstruction* instruction,
244 Location class_to_check,
245 Location object_class,
246 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000247 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000248 class_to_check_(class_to_check),
249 object_class_(object_class),
250 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000251
Alexandre Rames67555f72014-11-18 10:55:16 +0000252 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000253 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000254 DCHECK(instruction_->IsCheckCast()
255 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000256
257 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
258 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000259 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000260
261 // We're moving two locations to locations that could overlap, so we need a parallel
262 // move resolver.
263 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000264 codegen->EmitParallelMoves(
265 class_to_check_,
266 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100267 Primitive::kPrimNot,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000268 object_class_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100269 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
270 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000271
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000272 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000273 arm_codegen->InvokeRuntime(
274 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_, this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000275 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
276 } else {
277 DCHECK(instruction_->IsCheckCast());
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000278 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_, this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000279 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000280
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000281 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000282 __ b(GetExitLabel());
283 }
284
285 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000286 HInstruction* const instruction_;
287 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000288 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000289 uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000290
291 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM);
292};
293
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700294class DeoptimizationSlowPathARM : public SlowPathCodeARM {
295 public:
296 explicit DeoptimizationSlowPathARM(HInstruction* instruction)
297 : instruction_(instruction) {}
298
299 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
300 __ Bind(GetEntryLabel());
301 SaveLiveRegisters(codegen, instruction_->GetLocations());
302 DCHECK(instruction_->IsDeoptimize());
303 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
304 uint32_t dex_pc = deoptimize->GetDexPc();
305 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
306 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
307 }
308
309 private:
310 HInstruction* const instruction_;
311 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM);
312};
313
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000314#undef __
315
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100316#undef __
317#define __ reinterpret_cast<ArmAssembler*>(GetAssembler())->
Dave Allison20dfc792014-06-16 20:44:29 -0700318
319inline Condition ARMCondition(IfCondition cond) {
320 switch (cond) {
321 case kCondEQ: return EQ;
322 case kCondNE: return NE;
323 case kCondLT: return LT;
324 case kCondLE: return LE;
325 case kCondGT: return GT;
326 case kCondGE: return GE;
327 default:
328 LOG(FATAL) << "Unknown if condition";
329 }
330 return EQ; // Unreachable.
331}
332
333inline Condition ARMOppositeCondition(IfCondition cond) {
334 switch (cond) {
335 case kCondEQ: return NE;
336 case kCondNE: return EQ;
337 case kCondLT: return GE;
338 case kCondLE: return GT;
339 case kCondGT: return LE;
340 case kCondGE: return LT;
341 default:
342 LOG(FATAL) << "Unknown if condition";
343 }
344 return EQ; // Unreachable.
345}
346
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100347void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const {
348 stream << ArmManagedRegister::FromCoreRegister(Register(reg));
349}
350
351void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000352 stream << ArmManagedRegister::FromSRegister(SRegister(reg));
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100353}
354
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100355size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
356 __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index);
357 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100358}
359
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100360size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
361 __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index);
362 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100363}
364
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000365size_t CodeGeneratorARM::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
366 __ StoreSToOffset(static_cast<SRegister>(reg_id), SP, stack_index);
367 return kArmWordSize;
368}
369
370size_t CodeGeneratorARM::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
371 __ LoadSFromOffset(static_cast<SRegister>(reg_id), SP, stack_index);
372 return kArmWordSize;
373}
374
Calin Juravle34166012014-12-19 17:22:29 +0000375CodeGeneratorARM::CodeGeneratorARM(HGraph* graph,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000376 const ArmInstructionSetFeatures& isa_features,
377 const CompilerOptions& compiler_options)
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000378 : CodeGenerator(graph,
379 kNumberOfCoreRegisters,
380 kNumberOfSRegisters,
381 kNumberOfRegisterPairs,
382 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
383 arraysize(kCoreCalleeSaves)),
384 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
385 arraysize(kFpuCalleeSaves)),
386 compiler_options),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100387 block_labels_(graph->GetArena(), 0),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100388 location_builder_(graph, this),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100389 instruction_visitor_(graph, this),
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100390 move_resolver_(graph->GetArena(), this),
Calin Juravle34166012014-12-19 17:22:29 +0000391 assembler_(true),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000392 isa_features_(isa_features) {
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000393 // Save the PC register to mimic Quick.
394 AddAllocatedRegister(Location::RegisterLocation(PC));
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100395}
396
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100397Location CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100398 switch (type) {
399 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100400 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100401 ArmManagedRegister pair =
402 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100403 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
404 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
405
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100406 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
407 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100408 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100409 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100410 }
411
412 case Primitive::kPrimByte:
413 case Primitive::kPrimBoolean:
414 case Primitive::kPrimChar:
415 case Primitive::kPrimShort:
416 case Primitive::kPrimInt:
417 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100418 int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100419 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100420 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
421 ArmManagedRegister current =
422 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
423 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100424 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100425 }
426 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100427 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100428 }
429
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000430 case Primitive::kPrimFloat: {
431 int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfSRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100432 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100433 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100434
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000435 case Primitive::kPrimDouble: {
Nicolas Geoffray3c035032014-10-28 10:46:40 +0000436 int reg = FindTwoFreeConsecutiveAlignedEntries(blocked_fpu_registers_, kNumberOfSRegisters);
437 DCHECK_EQ(reg % 2, 0);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000438 return Location::FpuRegisterPairLocation(reg, reg + 1);
439 }
440
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100441 case Primitive::kPrimVoid:
442 LOG(FATAL) << "Unreachable type " << type;
443 }
444
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100445 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100446}
447
Nicolas Geoffraya0bb2bd2015-01-26 12:49:35 +0000448void CodeGeneratorARM::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100449 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100450 blocked_register_pairs_[R1_R2] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100451
452 // Stack register, LR and PC are always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100453 blocked_core_registers_[SP] = true;
454 blocked_core_registers_[LR] = true;
455 blocked_core_registers_[PC] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100456
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100457 // Reserve thread register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100458 blocked_core_registers_[TR] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100459
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100460 // Reserve temp register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100461 blocked_core_registers_[IP] = true;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100462
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000463 if (is_baseline) {
464 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
465 blocked_core_registers_[kCoreCalleeSaves[i]] = true;
466 }
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +0000467
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000468 blocked_core_registers_[kCoreSavedRegisterForBaseline] = false;
469
470 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
471 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
472 }
473 }
Calin Juravle34bacdf2014-10-07 20:23:36 +0100474
475 UpdateBlockedPairRegisters();
476}
477
478void CodeGeneratorARM::UpdateBlockedPairRegisters() const {
479 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
480 ArmManagedRegister current =
481 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
482 if (blocked_core_registers_[current.AsRegisterPairLow()]
483 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
484 blocked_register_pairs_[i] = true;
485 }
486 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100487}
488
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100489InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen)
490 : HGraphVisitor(graph),
491 assembler_(codegen->GetAssembler()),
492 codegen_(codegen) {}
493
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000494static uint32_t LeastSignificantBit(uint32_t mask) {
495 // ffs starts at 1.
496 return ffs(mask) - 1;
497}
498
499void CodeGeneratorARM::ComputeSpillMask() {
500 core_spill_mask_ = allocated_registers_.GetCoreRegisters() & core_callee_save_mask_;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000501 // Save one extra register for baseline. Note that on thumb2, there is no easy
502 // instruction to restore just the PC, so this actually helps both baseline
503 // and non-baseline to save and restore at least two registers at entry and exit.
504 core_spill_mask_ |= (1 << kCoreSavedRegisterForBaseline);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000505 DCHECK_NE(core_spill_mask_, 0u) << "At least the return address register must be saved";
506 fpu_spill_mask_ = allocated_registers_.GetFloatingPointRegisters() & fpu_callee_save_mask_;
507 // We use vpush and vpop for saving and restoring floating point registers, which take
508 // a SRegister and the number of registers to save/restore after that SRegister. We
509 // therefore update the `fpu_spill_mask_` to also contain those registers not allocated,
510 // but in the range.
511 if (fpu_spill_mask_ != 0) {
512 uint32_t least_significant_bit = LeastSignificantBit(fpu_spill_mask_);
513 uint32_t most_significant_bit = MostSignificantBit(fpu_spill_mask_);
514 for (uint32_t i = least_significant_bit + 1 ; i < most_significant_bit; ++i) {
515 fpu_spill_mask_ |= (1 << i);
516 }
517 }
518}
519
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100520static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100521 return dwarf::Reg::ArmCore(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100522}
523
524static dwarf::Reg DWARFReg(SRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100525 return dwarf::Reg::ArmFp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100526}
527
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000528void CodeGeneratorARM::GenerateFrameEntry() {
Roland Levillain199f3362014-11-27 17:15:16 +0000529 bool skip_overflow_check =
530 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000531 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000532 __ Bind(&frame_entry_label_);
533
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000534 if (HasEmptyFrame()) {
535 return;
536 }
537
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100538 if (!skip_overflow_check) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000539 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
540 __ LoadFromOffset(kLoadWord, IP, IP, 0);
541 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100542 }
543
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000544 // PC is in the list of callee-save to mimic Quick, but we need to push
545 // LR at entry instead.
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100546 uint32_t push_mask = (core_spill_mask_ & (~(1 << PC))) | 1 << LR;
547 __ PushList(push_mask);
548 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(push_mask));
David Srbecky9d8606d2015-04-12 09:35:32 +0100549 __ cfi().RelOffsetForMany(DWARFReg(R0), 0, push_mask, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000550 if (fpu_spill_mask_ != 0) {
551 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
552 __ vpushs(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100553 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(fpu_spill_mask_));
David Srbecky9d8606d2015-04-12 09:35:32 +0100554 __ cfi().RelOffsetForMany(DWARFReg(S0), 0, fpu_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000555 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100556 int adjust = GetFrameSize() - FrameEntrySpillSize();
557 __ AddConstant(SP, -adjust);
558 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100559 __ StoreToOffset(kStoreWord, R0, SP, 0);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000560}
561
562void CodeGeneratorARM::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000563 if (HasEmptyFrame()) {
564 __ bx(LR);
565 return;
566 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100567 __ cfi().RememberState();
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100568 int adjust = GetFrameSize() - FrameEntrySpillSize();
569 __ AddConstant(SP, adjust);
570 __ cfi().AdjustCFAOffset(-adjust);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000571 if (fpu_spill_mask_ != 0) {
572 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
573 __ vpops(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100574 __ cfi().AdjustCFAOffset(-kArmPointerSize * POPCOUNT(fpu_spill_mask_));
575 __ cfi().RestoreMany(DWARFReg(SRegister(0)), fpu_spill_mask_);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000576 }
577 __ PopList(core_spill_mask_);
David Srbeckyc34dc932015-04-12 09:27:43 +0100578 __ cfi().RestoreState();
579 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000580}
581
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100582void CodeGeneratorARM::Bind(HBasicBlock* block) {
583 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000584}
585
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100586Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
587 switch (load->GetType()) {
588 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100589 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100590 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100591
592 case Primitive::kPrimInt:
593 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100594 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100595 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100596
597 case Primitive::kPrimBoolean:
598 case Primitive::kPrimByte:
599 case Primitive::kPrimChar:
600 case Primitive::kPrimShort:
601 case Primitive::kPrimVoid:
602 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700603 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100604 }
605
606 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700607 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100608}
609
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100610Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
611 switch (type) {
612 case Primitive::kPrimBoolean:
613 case Primitive::kPrimByte:
614 case Primitive::kPrimChar:
615 case Primitive::kPrimShort:
616 case Primitive::kPrimInt:
617 case Primitive::kPrimNot: {
618 uint32_t index = gp_index_++;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000619 uint32_t stack_index = stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100620 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100621 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100622 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000623 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100624 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100625 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100626
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000627 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100628 uint32_t index = gp_index_;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000629 uint32_t stack_index = stack_index_;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100630 gp_index_ += 2;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000631 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100632 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000633 if (calling_convention.GetRegisterAt(index) == R1) {
634 // Skip R1, and use R2_R3 instead.
635 gp_index_++;
636 index++;
637 }
638 }
639 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
640 DCHECK_EQ(calling_convention.GetRegisterAt(index) + 1,
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000641 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000642 return Location::RegisterPairLocation(calling_convention.GetRegisterAt(index),
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000643 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100644 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000645 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
646 }
647 }
648
649 case Primitive::kPrimFloat: {
650 uint32_t stack_index = stack_index_++;
651 if (float_index_ % 2 == 0) {
652 float_index_ = std::max(double_index_, float_index_);
653 }
654 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) {
655 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++));
656 } else {
657 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
658 }
659 }
660
661 case Primitive::kPrimDouble: {
662 double_index_ = std::max(double_index_, RoundUp(float_index_, 2));
663 uint32_t stack_index = stack_index_;
664 stack_index_ += 2;
665 if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) {
666 uint32_t index = double_index_;
667 double_index_ += 2;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000668 Location result = Location::FpuRegisterPairLocation(
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000669 calling_convention.GetFpuRegisterAt(index),
670 calling_convention.GetFpuRegisterAt(index + 1));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000671 DCHECK(ExpectedPairLayout(result));
672 return result;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000673 } else {
674 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100675 }
676 }
677
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100678 case Primitive::kPrimVoid:
679 LOG(FATAL) << "Unexpected parameter type " << type;
680 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100681 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100682 return Location();
683}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100684
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000685Location InvokeDexCallingConventionVisitor::GetReturnLocation(Primitive::Type type) {
686 switch (type) {
687 case Primitive::kPrimBoolean:
688 case Primitive::kPrimByte:
689 case Primitive::kPrimChar:
690 case Primitive::kPrimShort:
691 case Primitive::kPrimInt:
692 case Primitive::kPrimNot: {
693 return Location::RegisterLocation(R0);
694 }
695
696 case Primitive::kPrimFloat: {
697 return Location::FpuRegisterLocation(S0);
698 }
699
700 case Primitive::kPrimLong: {
701 return Location::RegisterPairLocation(R0, R1);
702 }
703
704 case Primitive::kPrimDouble: {
705 return Location::FpuRegisterPairLocation(S0, S1);
706 }
707
708 case Primitive::kPrimVoid:
709 return Location();
710 }
711 UNREACHABLE();
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000712}
713
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100714void CodeGeneratorARM::Move32(Location destination, Location source) {
715 if (source.Equals(destination)) {
716 return;
717 }
718 if (destination.IsRegister()) {
719 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000720 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100721 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000722 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100723 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000724 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100725 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100726 } else if (destination.IsFpuRegister()) {
727 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000728 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100729 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000730 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100731 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000732 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100733 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100734 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000735 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100736 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000737 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100738 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000739 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100740 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000741 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100742 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
743 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100744 }
745 }
746}
747
748void CodeGeneratorARM::Move64(Location destination, Location source) {
749 if (source.Equals(destination)) {
750 return;
751 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100752 if (destination.IsRegisterPair()) {
753 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000754 EmitParallelMoves(
755 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
756 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100757 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000758 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100759 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
760 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100761 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000762 UNIMPLEMENTED(FATAL);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100763 } else {
764 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000765 DCHECK(ExpectedPairLayout(destination));
766 __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(),
767 SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100768 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000769 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100770 if (source.IsDoubleStackSlot()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000771 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
772 SP,
773 source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100774 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000775 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100776 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100777 } else {
778 DCHECK(destination.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100779 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000780 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100781 if (source.AsRegisterPairLow<Register>() == R1) {
782 DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100783 __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex());
784 __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100785 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100786 __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100787 SP, destination.GetStackIndex());
788 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000789 } else if (source.IsFpuRegisterPair()) {
790 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
791 SP,
792 destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100793 } else {
794 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000795 EmitParallelMoves(
796 Location::StackSlot(source.GetStackIndex()),
797 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100798 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000799 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100800 Location::StackSlot(destination.GetHighStackIndex(kArmWordSize)),
801 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100802 }
803 }
804}
805
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100806void CodeGeneratorARM::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100807 LocationSummary* locations = instruction->GetLocations();
808 if (locations != nullptr && locations->Out().Equals(location)) {
809 return;
810 }
811
Calin Juravlea21f5982014-11-13 15:53:04 +0000812 if (locations != nullptr && locations->Out().IsConstant()) {
813 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000814 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
815 int32_t value = GetInt32ValueOf(const_to_move);
Calin Juravlea21f5982014-11-13 15:53:04 +0000816 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000817 __ LoadImmediate(location.AsRegister<Register>(), value);
Calin Juravlea21f5982014-11-13 15:53:04 +0000818 } else {
819 DCHECK(location.IsStackSlot());
820 __ LoadImmediate(IP, value);
821 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
822 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000823 } else {
Nicolas Geoffray3747b482015-01-19 17:17:16 +0000824 DCHECK(const_to_move->IsLongConstant()) << const_to_move->DebugName();
Calin Juravlea21f5982014-11-13 15:53:04 +0000825 int64_t value = const_to_move->AsLongConstant()->GetValue();
826 if (location.IsRegisterPair()) {
827 __ LoadImmediate(location.AsRegisterPairLow<Register>(), Low32Bits(value));
828 __ LoadImmediate(location.AsRegisterPairHigh<Register>(), High32Bits(value));
829 } else {
830 DCHECK(location.IsDoubleStackSlot());
831 __ LoadImmediate(IP, Low32Bits(value));
832 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
833 __ LoadImmediate(IP, High32Bits(value));
834 __ StoreToOffset(kStoreWord, IP, SP, location.GetHighStackIndex(kArmWordSize));
835 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100836 }
Roland Levillain476df552014-10-09 17:51:36 +0100837 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100838 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
839 switch (instruction->GetType()) {
840 case Primitive::kPrimBoolean:
841 case Primitive::kPrimByte:
842 case Primitive::kPrimChar:
843 case Primitive::kPrimShort:
844 case Primitive::kPrimInt:
845 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100846 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100847 Move32(location, Location::StackSlot(stack_slot));
848 break;
849
850 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100851 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100852 Move64(location, Location::DoubleStackSlot(stack_slot));
853 break;
854
855 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100856 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100857 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000858 } else if (instruction->IsTemporary()) {
859 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000860 if (temp_location.IsStackSlot()) {
861 Move32(location, temp_location);
862 } else {
863 DCHECK(temp_location.IsDoubleStackSlot());
864 Move64(location, temp_location);
865 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000866 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100867 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100868 switch (instruction->GetType()) {
869 case Primitive::kPrimBoolean:
870 case Primitive::kPrimByte:
871 case Primitive::kPrimChar:
872 case Primitive::kPrimShort:
873 case Primitive::kPrimNot:
874 case Primitive::kPrimInt:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100875 case Primitive::kPrimFloat:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100876 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100877 break;
878
879 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100880 case Primitive::kPrimDouble:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100881 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100882 break;
883
884 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100885 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100886 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000887 }
888}
889
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100890void CodeGeneratorARM::InvokeRuntime(int32_t entry_point_offset,
891 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000892 uint32_t dex_pc,
893 SlowPathCode* slow_path) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100894 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
895 __ blx(LR);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000896 RecordPcInfo(instruction, dex_pc, slow_path);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100897 DCHECK(instruction->IsSuspendCheck()
898 || instruction->IsBoundsCheck()
899 || instruction->IsNullCheck()
Calin Juravled0d48522014-11-04 16:40:20 +0000900 || instruction->IsDivZeroCheck()
Roland Levillain624279f2014-12-04 11:54:28 +0000901 || instruction->GetLocations()->CanCall()
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100902 || !IsLeafMethod());
903}
904
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000905void LocationsBuilderARM::VisitGoto(HGoto* got) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000906 got->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000907}
908
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000909void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000910 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100911 DCHECK(!successor->IsExitBlock());
912
913 HBasicBlock* block = got->GetBlock();
914 HInstruction* previous = got->GetPrevious();
915
916 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000917 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100918 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
919 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
920 return;
921 }
922
923 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
924 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
925 }
926 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000927 __ b(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000928 }
929}
930
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000931void LocationsBuilderARM::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000932 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000933}
934
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000935void InstructionCodeGeneratorARM::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700936 UNUSED(exit);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000937}
938
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700939void InstructionCodeGeneratorARM::GenerateTestAndBranch(HInstruction* instruction,
940 Label* true_target,
941 Label* false_target,
942 Label* always_true_target) {
943 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100944 if (cond->IsIntConstant()) {
945 // Constant condition, statically compared against 1.
946 int32_t cond_value = cond->AsIntConstant()->GetValue();
947 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700948 if (always_true_target != nullptr) {
949 __ b(always_true_target);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100950 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100951 return;
952 } else {
953 DCHECK_EQ(cond_value, 0);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100954 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100955 } else {
956 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
957 // Condition has been materialized, compare the output to 0
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700958 DCHECK(instruction->GetLocations()->InAt(0).IsRegister());
959 __ cmp(instruction->GetLocations()->InAt(0).AsRegister<Register>(),
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100960 ShifterOperand(0));
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700961 __ b(true_target, NE);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100962 } else {
963 // Condition has not been materialized, use its inputs as the
964 // comparison and its condition as the branch condition.
965 LocationSummary* locations = cond->GetLocations();
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000966 DCHECK(locations->InAt(0).IsRegister()) << locations->InAt(0);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000967 Register left = locations->InAt(0).AsRegister<Register>();
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100968 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000969 __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100970 } else {
971 DCHECK(locations->InAt(1).IsConstant());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000972 HConstant* constant = locations->InAt(1).GetConstant();
973 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100974 ShifterOperand operand;
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000975 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) {
976 __ cmp(left, operand);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100977 } else {
978 Register temp = IP;
979 __ LoadImmediate(temp, value);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000980 __ cmp(left, ShifterOperand(temp));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100981 }
982 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700983 __ b(true_target, ARMCondition(cond->AsCondition()->GetCondition()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100984 }
Dave Allison20dfc792014-06-16 20:44:29 -0700985 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700986 if (false_target != nullptr) {
987 __ b(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000988 }
989}
990
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700991void LocationsBuilderARM::VisitIf(HIf* if_instr) {
992 LocationSummary* locations =
993 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
994 HInstruction* cond = if_instr->InputAt(0);
995 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
996 locations->SetInAt(0, Location::RequiresRegister());
997 }
998}
999
1000void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) {
1001 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1002 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1003 Label* always_true_target = true_target;
1004 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1005 if_instr->IfTrueSuccessor())) {
1006 always_true_target = nullptr;
1007 }
1008 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1009 if_instr->IfFalseSuccessor())) {
1010 false_target = nullptr;
1011 }
1012 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1013}
1014
1015void LocationsBuilderARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1016 LocationSummary* locations = new (GetGraph()->GetArena())
1017 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
1018 HInstruction* cond = deoptimize->InputAt(0);
1019 DCHECK(cond->IsCondition());
1020 if (cond->AsCondition()->NeedsMaterialization()) {
1021 locations->SetInAt(0, Location::RequiresRegister());
1022 }
1023}
1024
1025void InstructionCodeGeneratorARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1026 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena())
1027 DeoptimizationSlowPathARM(deoptimize);
1028 codegen_->AddSlowPath(slow_path);
1029 Label* slow_path_entry = slow_path->GetEntryLabel();
1030 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
1031}
Dave Allison20dfc792014-06-16 20:44:29 -07001032
1033void LocationsBuilderARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001034 LocationSummary* locations =
1035 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001036 locations->SetInAt(0, Location::RequiresRegister());
1037 locations->SetInAt(1, Location::RegisterOrConstant(comp->InputAt(1)));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001038 if (comp->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001039 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001040 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001041}
1042
Dave Allison20dfc792014-06-16 20:44:29 -07001043void InstructionCodeGeneratorARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001044 if (!comp->NeedsMaterialization()) return;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001045 LocationSummary* locations = comp->GetLocations();
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001046 Register left = locations->InAt(0).AsRegister<Register>();
1047
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001048 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001049 __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001050 } else {
1051 DCHECK(locations->InAt(1).IsConstant());
Mingyao Yangdc5ac732015-02-25 11:28:05 -08001052 int32_t value = CodeGenerator::GetInt32ValueOf(locations->InAt(1).GetConstant());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001053 ShifterOperand operand;
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001054 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) {
1055 __ cmp(left, operand);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001056 } else {
1057 Register temp = IP;
1058 __ LoadImmediate(temp, value);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001059 __ cmp(left, ShifterOperand(temp));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001060 }
Dave Allison20dfc792014-06-16 20:44:29 -07001061 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001062 __ it(ARMCondition(comp->GetCondition()), kItElse);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001063 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(1),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001064 ARMCondition(comp->GetCondition()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001065 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(0),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001066 ARMOppositeCondition(comp->GetCondition()));
Dave Allison20dfc792014-06-16 20:44:29 -07001067}
1068
1069void LocationsBuilderARM::VisitEqual(HEqual* comp) {
1070 VisitCondition(comp);
1071}
1072
1073void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) {
1074 VisitCondition(comp);
1075}
1076
1077void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) {
1078 VisitCondition(comp);
1079}
1080
1081void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) {
1082 VisitCondition(comp);
1083}
1084
1085void LocationsBuilderARM::VisitLessThan(HLessThan* comp) {
1086 VisitCondition(comp);
1087}
1088
1089void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) {
1090 VisitCondition(comp);
1091}
1092
1093void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1094 VisitCondition(comp);
1095}
1096
1097void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1098 VisitCondition(comp);
1099}
1100
1101void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) {
1102 VisitCondition(comp);
1103}
1104
1105void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) {
1106 VisitCondition(comp);
1107}
1108
1109void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1110 VisitCondition(comp);
1111}
1112
1113void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1114 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001115}
1116
1117void LocationsBuilderARM::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001118 local->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001119}
1120
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001121void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) {
1122 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001123}
1124
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001125void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001126 load->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001127}
1128
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001129void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001130 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001131 UNUSED(load);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001132}
1133
1134void LocationsBuilderARM::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001135 LocationSummary* locations =
1136 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001137 switch (store->InputAt(1)->GetType()) {
1138 case Primitive::kPrimBoolean:
1139 case Primitive::kPrimByte:
1140 case Primitive::kPrimChar:
1141 case Primitive::kPrimShort:
1142 case Primitive::kPrimInt:
1143 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001144 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001145 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1146 break;
1147
1148 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001149 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001150 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1151 break;
1152
1153 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001154 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001155 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001156}
1157
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001158void InstructionCodeGeneratorARM::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001159 UNUSED(store);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001160}
1161
1162void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001163 LocationSummary* locations =
1164 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001165 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001166}
1167
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001168void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001169 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001170 UNUSED(constant);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001171}
1172
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001173void LocationsBuilderARM::VisitNullConstant(HNullConstant* constant) {
1174 LocationSummary* locations =
1175 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1176 locations->SetOut(Location::ConstantLocation(constant));
1177}
1178
1179void InstructionCodeGeneratorARM::VisitNullConstant(HNullConstant* constant) {
1180 // Will be generated at use site.
1181 UNUSED(constant);
1182}
1183
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001184void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001185 LocationSummary* locations =
1186 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001187 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001188}
1189
1190void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) {
1191 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001192 UNUSED(constant);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001193}
1194
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001195void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) {
1196 LocationSummary* locations =
1197 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1198 locations->SetOut(Location::ConstantLocation(constant));
1199}
1200
1201void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant) {
1202 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001203 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001204}
1205
1206void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) {
1207 LocationSummary* locations =
1208 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1209 locations->SetOut(Location::ConstantLocation(constant));
1210}
1211
1212void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant) {
1213 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001214 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001215}
1216
Calin Juravle27df7582015-04-17 19:12:31 +01001217void LocationsBuilderARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1218 memory_barrier->SetLocations(nullptr);
1219}
1220
1221void InstructionCodeGeneratorARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1222 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
1223}
1224
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001225void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001226 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001227}
1228
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001229void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001230 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001231 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001232}
1233
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001234void LocationsBuilderARM::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001235 LocationSummary* locations =
1236 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001237 locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001238}
1239
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001240void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001241 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001242 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001243}
1244
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001245void LocationsBuilderARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001246 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
1247 codegen_->GetInstructionSetFeatures());
1248 if (intrinsic.TryDispatch(invoke)) {
1249 return;
1250 }
1251
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001252 HandleInvoke(invoke);
1253}
1254
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001255void CodeGeneratorARM::LoadCurrentMethod(Register reg) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001256 DCHECK(RequiresCurrentMethod());
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001257 __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001258}
1259
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001260static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM* codegen) {
1261 if (invoke->GetLocations()->Intrinsified()) {
1262 IntrinsicCodeGeneratorARM intrinsic(codegen);
1263 intrinsic.Dispatch(invoke);
1264 return true;
1265 }
1266 return false;
1267}
1268
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001269void InstructionCodeGeneratorARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001270 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1271 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001272 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001273
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001274 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
1275
1276 codegen_->GenerateStaticOrDirectCall(invoke, temp);
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00001277 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001278}
1279
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001280void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001281 LocationSummary* locations =
1282 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001283 locations->AddTemp(Location::RegisterLocation(R0));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001284
1285 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001286 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001287 HInstruction* input = invoke->InputAt(i);
1288 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1289 }
1290
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001291 locations->SetOut(calling_convention_visitor.GetReturnLocation(invoke->GetType()));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001292}
1293
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001294void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001295 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
1296 codegen_->GetInstructionSetFeatures());
1297 if (intrinsic.TryDispatch(invoke)) {
1298 return;
1299 }
1300
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001301 HandleInvoke(invoke);
1302}
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001303
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001304void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001305 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1306 return;
1307 }
1308
Roland Levillain271ab9c2014-11-27 15:23:57 +00001309 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001310 uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() +
1311 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1312 LocationSummary* locations = invoke->GetLocations();
1313 Location receiver = locations->InAt(0);
1314 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1315 // temp = object->GetClass();
1316 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001317 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1318 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001319 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001320 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001321 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001322 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001323 // temp = temp->GetMethodAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001324 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001325 kArmWordSize).Int32Value();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001326 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001327 // LR = temp->GetEntryPoint();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001328 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001329 // LR();
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001330 __ blx(LR);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001331 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001332 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001333}
1334
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001335void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1336 HandleInvoke(invoke);
1337 // Add the hidden argument.
1338 invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12));
1339}
1340
1341void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1342 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001343 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001344 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1345 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1346 LocationSummary* locations = invoke->GetLocations();
1347 Location receiver = locations->InAt(0);
1348 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1349
1350 // Set the hidden argument.
Roland Levillain199f3362014-11-27 17:15:16 +00001351 __ LoadImmediate(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
1352 invoke->GetDexMethodIndex());
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001353
1354 // temp = object->GetClass();
1355 if (receiver.IsStackSlot()) {
1356 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1357 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
1358 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001359 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001360 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001361 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001362 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001363 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001364 kArmWordSize).Int32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001365 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
1366 // LR = temp->GetEntryPoint();
1367 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
1368 // LR();
1369 __ blx(LR);
1370 DCHECK(!codegen_->IsLeafMethod());
1371 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1372}
1373
Roland Levillain88cb1752014-10-20 16:36:47 +01001374void LocationsBuilderARM::VisitNeg(HNeg* neg) {
1375 LocationSummary* locations =
1376 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1377 switch (neg->GetResultType()) {
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001378 case Primitive::kPrimInt: {
Roland Levillain88cb1752014-10-20 16:36:47 +01001379 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001380 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1381 break;
1382 }
1383 case Primitive::kPrimLong: {
1384 locations->SetInAt(0, Location::RequiresRegister());
1385 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001386 break;
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001387 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001388
Roland Levillain88cb1752014-10-20 16:36:47 +01001389 case Primitive::kPrimFloat:
1390 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001391 locations->SetInAt(0, Location::RequiresFpuRegister());
1392 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001393 break;
1394
1395 default:
1396 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1397 }
1398}
1399
1400void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) {
1401 LocationSummary* locations = neg->GetLocations();
1402 Location out = locations->Out();
1403 Location in = locations->InAt(0);
1404 switch (neg->GetResultType()) {
1405 case Primitive::kPrimInt:
1406 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001407 __ rsb(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(0));
Roland Levillain88cb1752014-10-20 16:36:47 +01001408 break;
1409
1410 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001411 DCHECK(in.IsRegisterPair());
1412 // out.lo = 0 - in.lo (and update the carry/borrow (C) flag)
1413 __ rsbs(out.AsRegisterPairLow<Register>(),
1414 in.AsRegisterPairLow<Register>(),
1415 ShifterOperand(0));
1416 // We cannot emit an RSC (Reverse Subtract with Carry)
1417 // instruction here, as it does not exist in the Thumb-2
1418 // instruction set. We use the following approach
1419 // using SBC and SUB instead.
1420 //
1421 // out.hi = -C
1422 __ sbc(out.AsRegisterPairHigh<Register>(),
1423 out.AsRegisterPairHigh<Register>(),
1424 ShifterOperand(out.AsRegisterPairHigh<Register>()));
1425 // out.hi = out.hi - in.hi
1426 __ sub(out.AsRegisterPairHigh<Register>(),
1427 out.AsRegisterPairHigh<Register>(),
1428 ShifterOperand(in.AsRegisterPairHigh<Register>()));
1429 break;
1430
Roland Levillain88cb1752014-10-20 16:36:47 +01001431 case Primitive::kPrimFloat:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001432 DCHECK(in.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001433 __ vnegs(out.AsFpuRegister<SRegister>(), in.AsFpuRegister<SRegister>());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001434 break;
1435
Roland Levillain88cb1752014-10-20 16:36:47 +01001436 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001437 DCHECK(in.IsFpuRegisterPair());
1438 __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1439 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain88cb1752014-10-20 16:36:47 +01001440 break;
1441
1442 default:
1443 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1444 }
1445}
1446
Roland Levillaindff1f282014-11-05 14:15:05 +00001447void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00001448 Primitive::Type result_type = conversion->GetResultType();
1449 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001450 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00001451
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001452 // The float-to-long and double-to-long type conversions rely on a
1453 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00001454 LocationSummary::CallKind call_kind =
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001455 ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
1456 && result_type == Primitive::kPrimLong)
Roland Levillain624279f2014-12-04 11:54:28 +00001457 ? LocationSummary::kCall
1458 : LocationSummary::kNoCall;
1459 LocationSummary* locations =
1460 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
1461
David Brazdilb2bd1c52015-03-25 11:17:37 +00001462 // The Java language does not allow treating boolean as an integral type but
1463 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001464
Roland Levillaindff1f282014-11-05 14:15:05 +00001465 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001466 case Primitive::kPrimByte:
1467 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001468 case Primitive::kPrimBoolean:
1469 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001470 case Primitive::kPrimShort:
1471 case Primitive::kPrimInt:
1472 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001473 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001474 locations->SetInAt(0, Location::RequiresRegister());
1475 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1476 break;
1477
1478 default:
1479 LOG(FATAL) << "Unexpected type conversion from " << input_type
1480 << " to " << result_type;
1481 }
1482 break;
1483
Roland Levillain01a8d712014-11-14 16:27:39 +00001484 case Primitive::kPrimShort:
1485 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001486 case Primitive::kPrimBoolean:
1487 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001488 case Primitive::kPrimByte:
1489 case Primitive::kPrimInt:
1490 case Primitive::kPrimChar:
1491 // Processing a Dex `int-to-short' instruction.
1492 locations->SetInAt(0, Location::RequiresRegister());
1493 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1494 break;
1495
1496 default:
1497 LOG(FATAL) << "Unexpected type conversion from " << input_type
1498 << " to " << result_type;
1499 }
1500 break;
1501
Roland Levillain946e1432014-11-11 17:35:19 +00001502 case Primitive::kPrimInt:
1503 switch (input_type) {
1504 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001505 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001506 locations->SetInAt(0, Location::Any());
1507 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1508 break;
1509
1510 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001511 // Processing a Dex `float-to-int' instruction.
1512 locations->SetInAt(0, Location::RequiresFpuRegister());
1513 locations->SetOut(Location::RequiresRegister());
1514 locations->AddTemp(Location::RequiresFpuRegister());
1515 break;
1516
Roland Levillain946e1432014-11-11 17:35:19 +00001517 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001518 // Processing a Dex `double-to-int' instruction.
1519 locations->SetInAt(0, Location::RequiresFpuRegister());
1520 locations->SetOut(Location::RequiresRegister());
1521 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001522 break;
1523
1524 default:
1525 LOG(FATAL) << "Unexpected type conversion from " << input_type
1526 << " to " << result_type;
1527 }
1528 break;
1529
Roland Levillaindff1f282014-11-05 14:15:05 +00001530 case Primitive::kPrimLong:
1531 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001532 case Primitive::kPrimBoolean:
1533 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001534 case Primitive::kPrimByte:
1535 case Primitive::kPrimShort:
1536 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001537 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001538 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001539 locations->SetInAt(0, Location::RequiresRegister());
1540 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1541 break;
1542
Roland Levillain624279f2014-12-04 11:54:28 +00001543 case Primitive::kPrimFloat: {
1544 // Processing a Dex `float-to-long' instruction.
1545 InvokeRuntimeCallingConvention calling_convention;
1546 locations->SetInAt(0, Location::FpuRegisterLocation(
1547 calling_convention.GetFpuRegisterAt(0)));
1548 locations->SetOut(Location::RegisterPairLocation(R0, R1));
1549 break;
1550 }
1551
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001552 case Primitive::kPrimDouble: {
1553 // Processing a Dex `double-to-long' instruction.
1554 InvokeRuntimeCallingConvention calling_convention;
1555 locations->SetInAt(0, Location::FpuRegisterPairLocation(
1556 calling_convention.GetFpuRegisterAt(0),
1557 calling_convention.GetFpuRegisterAt(1)));
1558 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Roland Levillaindff1f282014-11-05 14:15:05 +00001559 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001560 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001561
1562 default:
1563 LOG(FATAL) << "Unexpected type conversion from " << input_type
1564 << " to " << result_type;
1565 }
1566 break;
1567
Roland Levillain981e4542014-11-14 11:47:14 +00001568 case Primitive::kPrimChar:
1569 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001570 case Primitive::kPrimBoolean:
1571 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001572 case Primitive::kPrimByte:
1573 case Primitive::kPrimShort:
1574 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001575 // Processing a Dex `int-to-char' instruction.
1576 locations->SetInAt(0, Location::RequiresRegister());
1577 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1578 break;
1579
1580 default:
1581 LOG(FATAL) << "Unexpected type conversion from " << input_type
1582 << " to " << result_type;
1583 }
1584 break;
1585
Roland Levillaindff1f282014-11-05 14:15:05 +00001586 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001587 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001588 case Primitive::kPrimBoolean:
1589 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001590 case Primitive::kPrimByte:
1591 case Primitive::kPrimShort:
1592 case Primitive::kPrimInt:
1593 case Primitive::kPrimChar:
1594 // Processing a Dex `int-to-float' instruction.
1595 locations->SetInAt(0, Location::RequiresRegister());
1596 locations->SetOut(Location::RequiresFpuRegister());
1597 break;
1598
1599 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001600 // Processing a Dex `long-to-float' instruction.
1601 locations->SetInAt(0, Location::RequiresRegister());
1602 locations->SetOut(Location::RequiresFpuRegister());
1603 locations->AddTemp(Location::RequiresRegister());
1604 locations->AddTemp(Location::RequiresRegister());
1605 locations->AddTemp(Location::RequiresFpuRegister());
1606 locations->AddTemp(Location::RequiresFpuRegister());
1607 break;
1608
Roland Levillaincff13742014-11-17 14:32:17 +00001609 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001610 // Processing a Dex `double-to-float' instruction.
1611 locations->SetInAt(0, Location::RequiresFpuRegister());
1612 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001613 break;
1614
1615 default:
1616 LOG(FATAL) << "Unexpected type conversion from " << input_type
1617 << " to " << result_type;
1618 };
1619 break;
1620
Roland Levillaindff1f282014-11-05 14:15:05 +00001621 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001622 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001623 case Primitive::kPrimBoolean:
1624 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001625 case Primitive::kPrimByte:
1626 case Primitive::kPrimShort:
1627 case Primitive::kPrimInt:
1628 case Primitive::kPrimChar:
1629 // Processing a Dex `int-to-double' instruction.
1630 locations->SetInAt(0, Location::RequiresRegister());
1631 locations->SetOut(Location::RequiresFpuRegister());
1632 break;
1633
1634 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001635 // Processing a Dex `long-to-double' instruction.
1636 locations->SetInAt(0, Location::RequiresRegister());
1637 locations->SetOut(Location::RequiresFpuRegister());
1638 locations->AddTemp(Location::RequiresRegister());
1639 locations->AddTemp(Location::RequiresRegister());
1640 locations->AddTemp(Location::RequiresFpuRegister());
1641 break;
1642
Roland Levillaincff13742014-11-17 14:32:17 +00001643 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001644 // Processing a Dex `float-to-double' instruction.
1645 locations->SetInAt(0, Location::RequiresFpuRegister());
1646 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001647 break;
1648
1649 default:
1650 LOG(FATAL) << "Unexpected type conversion from " << input_type
1651 << " to " << result_type;
1652 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001653 break;
1654
1655 default:
1656 LOG(FATAL) << "Unexpected type conversion from " << input_type
1657 << " to " << result_type;
1658 }
1659}
1660
1661void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) {
1662 LocationSummary* locations = conversion->GetLocations();
1663 Location out = locations->Out();
1664 Location in = locations->InAt(0);
1665 Primitive::Type result_type = conversion->GetResultType();
1666 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001667 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001668 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001669 case Primitive::kPrimByte:
1670 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001671 case Primitive::kPrimBoolean:
1672 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001673 case Primitive::kPrimShort:
1674 case Primitive::kPrimInt:
1675 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001676 // Processing a Dex `int-to-byte' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001677 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 8);
Roland Levillain51d3fc42014-11-13 14:11:42 +00001678 break;
1679
1680 default:
1681 LOG(FATAL) << "Unexpected type conversion from " << input_type
1682 << " to " << result_type;
1683 }
1684 break;
1685
Roland Levillain01a8d712014-11-14 16:27:39 +00001686 case Primitive::kPrimShort:
1687 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001688 case Primitive::kPrimBoolean:
1689 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001690 case Primitive::kPrimByte:
1691 case Primitive::kPrimInt:
1692 case Primitive::kPrimChar:
1693 // Processing a Dex `int-to-short' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001694 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain01a8d712014-11-14 16:27:39 +00001695 break;
1696
1697 default:
1698 LOG(FATAL) << "Unexpected type conversion from " << input_type
1699 << " to " << result_type;
1700 }
1701 break;
1702
Roland Levillain946e1432014-11-11 17:35:19 +00001703 case Primitive::kPrimInt:
1704 switch (input_type) {
1705 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001706 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001707 DCHECK(out.IsRegister());
1708 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001709 __ Mov(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00001710 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001711 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), SP, in.GetStackIndex());
Roland Levillain946e1432014-11-11 17:35:19 +00001712 } else {
1713 DCHECK(in.IsConstant());
1714 DCHECK(in.GetConstant()->IsLongConstant());
1715 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001716 __ LoadImmediate(out.AsRegister<Register>(), static_cast<int32_t>(value));
Roland Levillain946e1432014-11-11 17:35:19 +00001717 }
1718 break;
1719
Roland Levillain3f8f9362014-12-02 17:45:01 +00001720 case Primitive::kPrimFloat: {
1721 // Processing a Dex `float-to-int' instruction.
1722 SRegister temp = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
1723 __ vmovs(temp, in.AsFpuRegister<SRegister>());
1724 __ vcvtis(temp, temp);
1725 __ vmovrs(out.AsRegister<Register>(), temp);
1726 break;
1727 }
1728
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001729 case Primitive::kPrimDouble: {
1730 // Processing a Dex `double-to-int' instruction.
1731 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
1732 DRegister temp_d = FromLowSToD(temp_s);
1733 __ vmovd(temp_d, FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
1734 __ vcvtid(temp_s, temp_d);
1735 __ vmovrs(out.AsRegister<Register>(), temp_s);
Roland Levillain946e1432014-11-11 17:35:19 +00001736 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001737 }
Roland Levillain946e1432014-11-11 17:35:19 +00001738
1739 default:
1740 LOG(FATAL) << "Unexpected type conversion from " << input_type
1741 << " to " << result_type;
1742 }
1743 break;
1744
Roland Levillaindff1f282014-11-05 14:15:05 +00001745 case Primitive::kPrimLong:
1746 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001747 case Primitive::kPrimBoolean:
1748 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001749 case Primitive::kPrimByte:
1750 case Primitive::kPrimShort:
1751 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001752 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001753 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001754 DCHECK(out.IsRegisterPair());
1755 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001756 __ Mov(out.AsRegisterPairLow<Register>(), in.AsRegister<Register>());
Roland Levillaindff1f282014-11-05 14:15:05 +00001757 // Sign extension.
1758 __ Asr(out.AsRegisterPairHigh<Register>(),
1759 out.AsRegisterPairLow<Register>(),
1760 31);
1761 break;
1762
1763 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00001764 // Processing a Dex `float-to-long' instruction.
Roland Levillain624279f2014-12-04 11:54:28 +00001765 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pF2l),
1766 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001767 conversion->GetDexPc(),
1768 nullptr);
Roland Levillain624279f2014-12-04 11:54:28 +00001769 break;
1770
Roland Levillaindff1f282014-11-05 14:15:05 +00001771 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001772 // Processing a Dex `double-to-long' instruction.
1773 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pD2l),
1774 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001775 conversion->GetDexPc(),
1776 nullptr);
Roland Levillaindff1f282014-11-05 14:15:05 +00001777 break;
1778
1779 default:
1780 LOG(FATAL) << "Unexpected type conversion from " << input_type
1781 << " to " << result_type;
1782 }
1783 break;
1784
Roland Levillain981e4542014-11-14 11:47:14 +00001785 case Primitive::kPrimChar:
1786 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001787 case Primitive::kPrimBoolean:
1788 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001789 case Primitive::kPrimByte:
1790 case Primitive::kPrimShort:
1791 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001792 // Processing a Dex `int-to-char' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001793 __ ubfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain981e4542014-11-14 11:47:14 +00001794 break;
1795
1796 default:
1797 LOG(FATAL) << "Unexpected type conversion from " << input_type
1798 << " to " << result_type;
1799 }
1800 break;
1801
Roland Levillaindff1f282014-11-05 14:15:05 +00001802 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001803 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001804 case Primitive::kPrimBoolean:
1805 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001806 case Primitive::kPrimByte:
1807 case Primitive::kPrimShort:
1808 case Primitive::kPrimInt:
1809 case Primitive::kPrimChar: {
1810 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001811 __ vmovsr(out.AsFpuRegister<SRegister>(), in.AsRegister<Register>());
1812 __ vcvtsi(out.AsFpuRegister<SRegister>(), out.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001813 break;
1814 }
1815
Roland Levillain6d0e4832014-11-27 18:31:21 +00001816 case Primitive::kPrimLong: {
1817 // Processing a Dex `long-to-float' instruction.
1818 Register low = in.AsRegisterPairLow<Register>();
1819 Register high = in.AsRegisterPairHigh<Register>();
1820 SRegister output = out.AsFpuRegister<SRegister>();
1821 Register constant_low = locations->GetTemp(0).AsRegister<Register>();
1822 Register constant_high = locations->GetTemp(1).AsRegister<Register>();
1823 SRegister temp1_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1824 DRegister temp1_d = FromLowSToD(temp1_s);
1825 SRegister temp2_s = locations->GetTemp(3).AsFpuRegisterPairLow<SRegister>();
1826 DRegister temp2_d = FromLowSToD(temp2_s);
1827
1828 // Operations use doubles for precision reasons (each 32-bit
1829 // half of a long fits in the 53-bit mantissa of a double,
1830 // but not in the 24-bit mantissa of a float). This is
1831 // especially important for the low bits. The result is
1832 // eventually converted to float.
1833
1834 // temp1_d = int-to-double(high)
1835 __ vmovsr(temp1_s, high);
1836 __ vcvtdi(temp1_d, temp1_s);
1837 // Using vmovd to load the `k2Pow32EncodingForDouble` constant
1838 // as an immediate value into `temp2_d` does not work, as
1839 // this instruction only transfers 8 significant bits of its
1840 // immediate operand. Instead, use two 32-bit core
1841 // registers to load `k2Pow32EncodingForDouble` into
1842 // `temp2_d`.
1843 __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble));
1844 __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble));
1845 __ vmovdrr(temp2_d, constant_low, constant_high);
1846 // temp1_d = temp1_d * 2^32
1847 __ vmuld(temp1_d, temp1_d, temp2_d);
1848 // temp2_d = unsigned-to-double(low)
1849 __ vmovsr(temp2_s, low);
1850 __ vcvtdu(temp2_d, temp2_s);
1851 // temp1_d = temp1_d + temp2_d
1852 __ vaddd(temp1_d, temp1_d, temp2_d);
1853 // output = double-to-float(temp1_d);
1854 __ vcvtsd(output, temp1_d);
1855 break;
1856 }
1857
Roland Levillaincff13742014-11-17 14:32:17 +00001858 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001859 // Processing a Dex `double-to-float' instruction.
1860 __ vcvtsd(out.AsFpuRegister<SRegister>(),
1861 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillaincff13742014-11-17 14:32:17 +00001862 break;
1863
1864 default:
1865 LOG(FATAL) << "Unexpected type conversion from " << input_type
1866 << " to " << result_type;
1867 };
1868 break;
1869
Roland Levillaindff1f282014-11-05 14:15:05 +00001870 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001871 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001872 case Primitive::kPrimBoolean:
1873 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001874 case Primitive::kPrimByte:
1875 case Primitive::kPrimShort:
1876 case Primitive::kPrimInt:
1877 case Primitive::kPrimChar: {
1878 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001879 __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00001880 __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1881 out.AsFpuRegisterPairLow<SRegister>());
1882 break;
1883 }
1884
Roland Levillain647b9ed2014-11-27 12:06:00 +00001885 case Primitive::kPrimLong: {
1886 // Processing a Dex `long-to-double' instruction.
1887 Register low = in.AsRegisterPairLow<Register>();
1888 Register high = in.AsRegisterPairHigh<Register>();
1889 SRegister out_s = out.AsFpuRegisterPairLow<SRegister>();
1890 DRegister out_d = FromLowSToD(out_s);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001891 Register constant_low = locations->GetTemp(0).AsRegister<Register>();
1892 Register constant_high = locations->GetTemp(1).AsRegister<Register>();
Roland Levillain647b9ed2014-11-27 12:06:00 +00001893 SRegister temp_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1894 DRegister temp_d = FromLowSToD(temp_s);
1895
Roland Levillain647b9ed2014-11-27 12:06:00 +00001896 // out_d = int-to-double(high)
1897 __ vmovsr(out_s, high);
1898 __ vcvtdi(out_d, out_s);
Roland Levillain6d0e4832014-11-27 18:31:21 +00001899 // Using vmovd to load the `k2Pow32EncodingForDouble` constant
1900 // as an immediate value into `temp_d` does not work, as
1901 // this instruction only transfers 8 significant bits of its
1902 // immediate operand. Instead, use two 32-bit core
1903 // registers to load `k2Pow32EncodingForDouble` into `temp_d`.
1904 __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble));
1905 __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble));
Roland Levillain647b9ed2014-11-27 12:06:00 +00001906 __ vmovdrr(temp_d, constant_low, constant_high);
1907 // out_d = out_d * 2^32
1908 __ vmuld(out_d, out_d, temp_d);
1909 // temp_d = unsigned-to-double(low)
1910 __ vmovsr(temp_s, low);
1911 __ vcvtdu(temp_d, temp_s);
1912 // out_d = out_d + temp_d
1913 __ vaddd(out_d, out_d, temp_d);
1914 break;
1915 }
1916
Roland Levillaincff13742014-11-17 14:32:17 +00001917 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001918 // Processing a Dex `float-to-double' instruction.
1919 __ vcvtds(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1920 in.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001921 break;
1922
1923 default:
1924 LOG(FATAL) << "Unexpected type conversion from " << input_type
1925 << " to " << result_type;
1926 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001927 break;
1928
1929 default:
1930 LOG(FATAL) << "Unexpected type conversion from " << input_type
1931 << " to " << result_type;
1932 }
1933}
1934
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001935void LocationsBuilderARM::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001936 LocationSummary* locations =
1937 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001938 switch (add->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001939 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001940 locations->SetInAt(0, Location::RequiresRegister());
1941 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001942 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1943 break;
1944 }
1945
1946 case Primitive::kPrimLong: {
1947 locations->SetInAt(0, Location::RequiresRegister());
1948 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001949 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001950 break;
1951 }
1952
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001953 case Primitive::kPrimFloat:
1954 case Primitive::kPrimDouble: {
1955 locations->SetInAt(0, Location::RequiresFpuRegister());
1956 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001957 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001958 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001959 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001960
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001961 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001962 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001963 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001964}
1965
1966void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) {
1967 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001968 Location out = locations->Out();
1969 Location first = locations->InAt(0);
1970 Location second = locations->InAt(1);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001971 switch (add->GetResultType()) {
1972 case Primitive::kPrimInt:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001973 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00001974 __ add(out.AsRegister<Register>(),
1975 first.AsRegister<Register>(),
1976 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001977 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001978 __ AddConstant(out.AsRegister<Register>(),
1979 first.AsRegister<Register>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001980 second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001981 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001982 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001983
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001984 case Primitive::kPrimLong: {
1985 DCHECK(second.IsRegisterPair());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001986 __ adds(out.AsRegisterPairLow<Register>(),
1987 first.AsRegisterPairLow<Register>(),
1988 ShifterOperand(second.AsRegisterPairLow<Register>()));
1989 __ adc(out.AsRegisterPairHigh<Register>(),
1990 first.AsRegisterPairHigh<Register>(),
1991 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001992 break;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001993 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001994
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001995 case Primitive::kPrimFloat:
Roland Levillain199f3362014-11-27 17:15:16 +00001996 __ vadds(out.AsFpuRegister<SRegister>(),
1997 first.AsFpuRegister<SRegister>(),
1998 second.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001999 break;
2000
2001 case Primitive::kPrimDouble:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002002 __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2003 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2004 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002005 break;
2006
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002007 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002008 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002009 }
2010}
2011
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002012void LocationsBuilderARM::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002013 LocationSummary* locations =
2014 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002015 switch (sub->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002016 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002017 locations->SetInAt(0, Location::RequiresRegister());
2018 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002019 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2020 break;
2021 }
2022
2023 case Primitive::kPrimLong: {
2024 locations->SetInAt(0, Location::RequiresRegister());
2025 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002026 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002027 break;
2028 }
Calin Juravle11351682014-10-23 15:38:15 +01002029 case Primitive::kPrimFloat:
2030 case Primitive::kPrimDouble: {
2031 locations->SetInAt(0, Location::RequiresFpuRegister());
2032 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002033 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002034 break;
Calin Juravle11351682014-10-23 15:38:15 +01002035 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002036 default:
Calin Juravle11351682014-10-23 15:38:15 +01002037 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002038 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002039}
2040
2041void InstructionCodeGeneratorARM::VisitSub(HSub* sub) {
2042 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01002043 Location out = locations->Out();
2044 Location first = locations->InAt(0);
2045 Location second = locations->InAt(1);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002046 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002047 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01002048 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002049 __ sub(out.AsRegister<Register>(),
2050 first.AsRegister<Register>(),
2051 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002052 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002053 __ AddConstant(out.AsRegister<Register>(),
2054 first.AsRegister<Register>(),
Calin Juravle11351682014-10-23 15:38:15 +01002055 -second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002056 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002057 break;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002058 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002059
Calin Juravle11351682014-10-23 15:38:15 +01002060 case Primitive::kPrimLong: {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002061 DCHECK(second.IsRegisterPair());
Calin Juravle11351682014-10-23 15:38:15 +01002062 __ subs(out.AsRegisterPairLow<Register>(),
2063 first.AsRegisterPairLow<Register>(),
2064 ShifterOperand(second.AsRegisterPairLow<Register>()));
2065 __ sbc(out.AsRegisterPairHigh<Register>(),
2066 first.AsRegisterPairHigh<Register>(),
2067 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002068 break;
Calin Juravle11351682014-10-23 15:38:15 +01002069 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002070
Calin Juravle11351682014-10-23 15:38:15 +01002071 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002072 __ vsubs(out.AsFpuRegister<SRegister>(),
2073 first.AsFpuRegister<SRegister>(),
2074 second.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002075 break;
Calin Juravle11351682014-10-23 15:38:15 +01002076 }
2077
2078 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002079 __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2080 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2081 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravle11351682014-10-23 15:38:15 +01002082 break;
2083 }
2084
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002085
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002086 default:
Calin Juravle11351682014-10-23 15:38:15 +01002087 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002088 }
2089}
2090
Calin Juravle34bacdf2014-10-07 20:23:36 +01002091void LocationsBuilderARM::VisitMul(HMul* mul) {
2092 LocationSummary* locations =
2093 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2094 switch (mul->GetResultType()) {
2095 case Primitive::kPrimInt:
2096 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002097 locations->SetInAt(0, Location::RequiresRegister());
2098 locations->SetInAt(1, Location::RequiresRegister());
2099 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002100 break;
2101 }
2102
Calin Juravleb5bfa962014-10-21 18:02:24 +01002103 case Primitive::kPrimFloat:
2104 case Primitive::kPrimDouble: {
2105 locations->SetInAt(0, Location::RequiresFpuRegister());
2106 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002107 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002108 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002109 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002110
2111 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002112 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002113 }
2114}
2115
2116void InstructionCodeGeneratorARM::VisitMul(HMul* mul) {
2117 LocationSummary* locations = mul->GetLocations();
2118 Location out = locations->Out();
2119 Location first = locations->InAt(0);
2120 Location second = locations->InAt(1);
2121 switch (mul->GetResultType()) {
2122 case Primitive::kPrimInt: {
Roland Levillain199f3362014-11-27 17:15:16 +00002123 __ mul(out.AsRegister<Register>(),
2124 first.AsRegister<Register>(),
2125 second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002126 break;
2127 }
2128 case Primitive::kPrimLong: {
2129 Register out_hi = out.AsRegisterPairHigh<Register>();
2130 Register out_lo = out.AsRegisterPairLow<Register>();
2131 Register in1_hi = first.AsRegisterPairHigh<Register>();
2132 Register in1_lo = first.AsRegisterPairLow<Register>();
2133 Register in2_hi = second.AsRegisterPairHigh<Register>();
2134 Register in2_lo = second.AsRegisterPairLow<Register>();
2135
2136 // Extra checks to protect caused by the existence of R1_R2.
2137 // The algorithm is wrong if out.hi is either in1.lo or in2.lo:
2138 // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2);
2139 DCHECK_NE(out_hi, in1_lo);
2140 DCHECK_NE(out_hi, in2_lo);
2141
2142 // input: in1 - 64 bits, in2 - 64 bits
2143 // output: out
2144 // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
2145 // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
2146 // parts: out.lo = (in1.lo * in2.lo)[31:0]
2147
2148 // IP <- in1.lo * in2.hi
2149 __ mul(IP, in1_lo, in2_hi);
2150 // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2151 __ mla(out_hi, in1_hi, in2_lo, IP);
2152 // out.lo <- (in1.lo * in2.lo)[31:0];
2153 __ umull(out_lo, IP, in1_lo, in2_lo);
2154 // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2155 __ add(out_hi, out_hi, ShifterOperand(IP));
2156 break;
2157 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002158
2159 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002160 __ vmuls(out.AsFpuRegister<SRegister>(),
2161 first.AsFpuRegister<SRegister>(),
2162 second.AsFpuRegister<SRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002163 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002164 }
2165
2166 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002167 __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2168 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2169 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravleb5bfa962014-10-21 18:02:24 +01002170 break;
2171 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002172
2173 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002174 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002175 }
2176}
2177
Calin Juravle7c4954d2014-10-28 16:57:40 +00002178void LocationsBuilderARM::VisitDiv(HDiv* div) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002179 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2180 if (div->GetResultType() == Primitive::kPrimLong) {
2181 // pLdiv runtime call.
2182 call_kind = LocationSummary::kCall;
2183 } else if (div->GetResultType() == Primitive::kPrimInt &&
2184 !codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2185 // pIdivmod runtime call.
2186 call_kind = LocationSummary::kCall;
2187 }
2188
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002189 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2190
Calin Juravle7c4954d2014-10-28 16:57:40 +00002191 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002192 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002193 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2194 locations->SetInAt(0, Location::RequiresRegister());
2195 locations->SetInAt(1, Location::RequiresRegister());
2196 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2197 } else {
2198 InvokeRuntimeCallingConvention calling_convention;
2199 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2200 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2201 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2202 // we only need the former.
2203 locations->SetOut(Location::RegisterLocation(R0));
2204 }
Calin Juravled0d48522014-11-04 16:40:20 +00002205 break;
2206 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002207 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002208 InvokeRuntimeCallingConvention calling_convention;
2209 locations->SetInAt(0, Location::RegisterPairLocation(
2210 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2211 locations->SetInAt(1, Location::RegisterPairLocation(
2212 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002213 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Calin Juravle7c4954d2014-10-28 16:57:40 +00002214 break;
2215 }
2216 case Primitive::kPrimFloat:
2217 case Primitive::kPrimDouble: {
2218 locations->SetInAt(0, Location::RequiresFpuRegister());
2219 locations->SetInAt(1, Location::RequiresFpuRegister());
2220 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2221 break;
2222 }
2223
2224 default:
2225 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2226 }
2227}
2228
2229void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) {
2230 LocationSummary* locations = div->GetLocations();
2231 Location out = locations->Out();
2232 Location first = locations->InAt(0);
2233 Location second = locations->InAt(1);
2234
2235 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002236 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002237 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2238 __ sdiv(out.AsRegister<Register>(),
2239 first.AsRegister<Register>(),
2240 second.AsRegister<Register>());
2241 } else {
2242 InvokeRuntimeCallingConvention calling_convention;
2243 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2244 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2245 DCHECK_EQ(R0, out.AsRegister<Register>());
2246
2247 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), div, div->GetDexPc(), nullptr);
2248 }
Calin Juravled0d48522014-11-04 16:40:20 +00002249 break;
2250 }
2251
Calin Juravle7c4954d2014-10-28 16:57:40 +00002252 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002253 InvokeRuntimeCallingConvention calling_convention;
2254 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2255 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2256 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2257 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2258 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002259 DCHECK_EQ(R1, out.AsRegisterPairHigh<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002260
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002261 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv), div, div->GetDexPc(), nullptr);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002262 break;
2263 }
2264
2265 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002266 __ vdivs(out.AsFpuRegister<SRegister>(),
2267 first.AsFpuRegister<SRegister>(),
2268 second.AsFpuRegister<SRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002269 break;
2270 }
2271
2272 case Primitive::kPrimDouble: {
2273 __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2274 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2275 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
2276 break;
2277 }
2278
2279 default:
2280 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2281 }
2282}
2283
Calin Juravlebacfec32014-11-14 15:54:36 +00002284void LocationsBuilderARM::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002285 Primitive::Type type = rem->GetResultType();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002286
2287 // Most remainders are implemented in the runtime.
2288 LocationSummary::CallKind call_kind = LocationSummary::kCall;
2289 if (rem->GetResultType() == Primitive::kPrimInt &&
2290 codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2291 // Have hardware divide instruction for int, do it with three instructions.
2292 call_kind = LocationSummary::kNoCall;
2293 }
2294
Calin Juravlebacfec32014-11-14 15:54:36 +00002295 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2296
Calin Juravled2ec87d2014-12-08 14:24:46 +00002297 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002298 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002299 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2300 locations->SetInAt(0, Location::RequiresRegister());
2301 locations->SetInAt(1, Location::RequiresRegister());
2302 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2303 locations->AddTemp(Location::RequiresRegister());
2304 } else {
2305 InvokeRuntimeCallingConvention calling_convention;
2306 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2307 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2308 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2309 // we only need the latter.
2310 locations->SetOut(Location::RegisterLocation(R1));
2311 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002312 break;
2313 }
2314 case Primitive::kPrimLong: {
2315 InvokeRuntimeCallingConvention calling_convention;
2316 locations->SetInAt(0, Location::RegisterPairLocation(
2317 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2318 locations->SetInAt(1, Location::RegisterPairLocation(
2319 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2320 // The runtime helper puts the output in R2,R3.
2321 locations->SetOut(Location::RegisterPairLocation(R2, R3));
2322 break;
2323 }
Calin Juravled2ec87d2014-12-08 14:24:46 +00002324 case Primitive::kPrimFloat: {
2325 InvokeRuntimeCallingConvention calling_convention;
2326 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
2327 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
2328 locations->SetOut(Location::FpuRegisterLocation(S0));
2329 break;
2330 }
2331
Calin Juravlebacfec32014-11-14 15:54:36 +00002332 case Primitive::kPrimDouble: {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002333 InvokeRuntimeCallingConvention calling_convention;
2334 locations->SetInAt(0, Location::FpuRegisterPairLocation(
2335 calling_convention.GetFpuRegisterAt(0), calling_convention.GetFpuRegisterAt(1)));
2336 locations->SetInAt(1, Location::FpuRegisterPairLocation(
2337 calling_convention.GetFpuRegisterAt(2), calling_convention.GetFpuRegisterAt(3)));
2338 locations->SetOut(Location::Location::FpuRegisterPairLocation(S0, S1));
Calin Juravlebacfec32014-11-14 15:54:36 +00002339 break;
2340 }
2341
2342 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002343 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002344 }
2345}
2346
2347void InstructionCodeGeneratorARM::VisitRem(HRem* rem) {
2348 LocationSummary* locations = rem->GetLocations();
2349 Location out = locations->Out();
2350 Location first = locations->InAt(0);
2351 Location second = locations->InAt(1);
2352
Calin Juravled2ec87d2014-12-08 14:24:46 +00002353 Primitive::Type type = rem->GetResultType();
2354 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002355 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002356 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2357 Register reg1 = first.AsRegister<Register>();
2358 Register reg2 = second.AsRegister<Register>();
2359 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravlebacfec32014-11-14 15:54:36 +00002360
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002361 // temp = reg1 / reg2 (integer division)
2362 // temp = temp * reg2
2363 // dest = reg1 - temp
2364 __ sdiv(temp, reg1, reg2);
2365 __ mul(temp, temp, reg2);
2366 __ sub(out.AsRegister<Register>(), reg1, ShifterOperand(temp));
2367 } else {
2368 InvokeRuntimeCallingConvention calling_convention;
2369 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2370 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2371 DCHECK_EQ(R1, out.AsRegister<Register>());
2372
2373 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), rem, rem->GetDexPc(), nullptr);
2374 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002375 break;
2376 }
2377
2378 case Primitive::kPrimLong: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002379 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002380 break;
2381 }
2382
Calin Juravled2ec87d2014-12-08 14:24:46 +00002383 case Primitive::kPrimFloat: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002384 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmodf), rem, rem->GetDexPc(), nullptr);
Calin Juravled2ec87d2014-12-08 14:24:46 +00002385 break;
2386 }
2387
Calin Juravlebacfec32014-11-14 15:54:36 +00002388 case Primitive::kPrimDouble: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002389 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002390 break;
2391 }
2392
2393 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002394 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002395 }
2396}
2397
Calin Juravled0d48522014-11-04 16:40:20 +00002398void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2399 LocationSummary* locations =
2400 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002401 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Calin Juravled0d48522014-11-04 16:40:20 +00002402 if (instruction->HasUses()) {
2403 locations->SetOut(Location::SameAsFirstInput());
2404 }
2405}
2406
2407void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2408 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction);
2409 codegen_->AddSlowPath(slow_path);
2410
2411 LocationSummary* locations = instruction->GetLocations();
2412 Location value = locations->InAt(0);
2413
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002414 switch (instruction->GetType()) {
2415 case Primitive::kPrimInt: {
2416 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002417 __ cmp(value.AsRegister<Register>(), ShifterOperand(0));
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002418 __ b(slow_path->GetEntryLabel(), EQ);
2419 } else {
2420 DCHECK(value.IsConstant()) << value;
2421 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2422 __ b(slow_path->GetEntryLabel());
2423 }
2424 }
2425 break;
2426 }
2427 case Primitive::kPrimLong: {
2428 if (value.IsRegisterPair()) {
2429 __ orrs(IP,
2430 value.AsRegisterPairLow<Register>(),
2431 ShifterOperand(value.AsRegisterPairHigh<Register>()));
2432 __ b(slow_path->GetEntryLabel(), EQ);
2433 } else {
2434 DCHECK(value.IsConstant()) << value;
2435 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2436 __ b(slow_path->GetEntryLabel());
2437 }
2438 }
2439 break;
2440 default:
2441 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2442 }
2443 }
Calin Juravled0d48522014-11-04 16:40:20 +00002444}
2445
Calin Juravle9aec02f2014-11-18 23:06:35 +00002446void LocationsBuilderARM::HandleShift(HBinaryOperation* op) {
2447 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2448
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002449 LocationSummary* locations =
2450 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002451
2452 switch (op->GetResultType()) {
2453 case Primitive::kPrimInt: {
2454 locations->SetInAt(0, Location::RequiresRegister());
2455 locations->SetInAt(1, Location::RegisterOrConstant(op->InputAt(1)));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002456 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002457 break;
2458 }
2459 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002460 locations->SetInAt(0, Location::RequiresRegister());
2461 locations->SetInAt(1, Location::RequiresRegister());
2462 locations->AddTemp(Location::RequiresRegister());
2463 locations->SetOut(Location::RequiresRegister());
Calin Juravle9aec02f2014-11-18 23:06:35 +00002464 break;
2465 }
2466 default:
2467 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2468 }
2469}
2470
2471void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) {
2472 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2473
2474 LocationSummary* locations = op->GetLocations();
2475 Location out = locations->Out();
2476 Location first = locations->InAt(0);
2477 Location second = locations->InAt(1);
2478
2479 Primitive::Type type = op->GetResultType();
2480 switch (type) {
2481 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002482 Register out_reg = out.AsRegister<Register>();
2483 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002484 // Arm doesn't mask the shift count so we need to do it ourselves.
2485 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002486 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002487 __ and_(second_reg, second_reg, ShifterOperand(kMaxIntShiftValue));
2488 if (op->IsShl()) {
2489 __ Lsl(out_reg, first_reg, second_reg);
2490 } else if (op->IsShr()) {
2491 __ Asr(out_reg, first_reg, second_reg);
2492 } else {
2493 __ Lsr(out_reg, first_reg, second_reg);
2494 }
2495 } else {
2496 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
2497 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue);
2498 if (shift_value == 0) { // arm does not support shifting with 0 immediate.
2499 __ Mov(out_reg, first_reg);
2500 } else if (op->IsShl()) {
2501 __ Lsl(out_reg, first_reg, shift_value);
2502 } else if (op->IsShr()) {
2503 __ Asr(out_reg, first_reg, shift_value);
2504 } else {
2505 __ Lsr(out_reg, first_reg, shift_value);
2506 }
2507 }
2508 break;
2509 }
2510 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002511 Register o_h = out.AsRegisterPairHigh<Register>();
2512 Register o_l = out.AsRegisterPairLow<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002513
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002514 Register temp = locations->GetTemp(0).AsRegister<Register>();
2515
2516 Register high = first.AsRegisterPairHigh<Register>();
2517 Register low = first.AsRegisterPairLow<Register>();
2518
2519 Register second_reg = second.AsRegister<Register>();
2520
Calin Juravle9aec02f2014-11-18 23:06:35 +00002521 if (op->IsShl()) {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002522 // Shift the high part
2523 __ and_(second_reg, second_reg, ShifterOperand(63));
2524 __ Lsl(o_h, high, second_reg);
2525 // Shift the low part and `or` what overflew on the high part
2526 __ rsb(temp, second_reg, ShifterOperand(32));
2527 __ Lsr(temp, low, temp);
2528 __ orr(o_h, o_h, ShifterOperand(temp));
2529 // If the shift is > 32 bits, override the high part
2530 __ subs(temp, second_reg, ShifterOperand(32));
2531 __ it(PL);
2532 __ Lsl(o_h, low, temp, false, PL);
2533 // Shift the low part
2534 __ Lsl(o_l, low, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002535 } else if (op->IsShr()) {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002536 // Shift the low part
2537 __ and_(second_reg, second_reg, ShifterOperand(63));
2538 __ Lsr(o_l, low, second_reg);
2539 // Shift the high part and `or` what underflew on the low part
2540 __ rsb(temp, second_reg, ShifterOperand(32));
2541 __ Lsl(temp, high, temp);
2542 __ orr(o_l, o_l, ShifterOperand(temp));
2543 // If the shift is > 32 bits, override the low part
2544 __ subs(temp, second_reg, ShifterOperand(32));
2545 __ it(PL);
2546 __ Asr(o_l, high, temp, false, PL);
2547 // Shift the high part
2548 __ Asr(o_h, high, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002549 } else {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002550 // same as Shr except we use `Lsr`s and not `Asr`s
2551 __ and_(second_reg, second_reg, ShifterOperand(63));
2552 __ Lsr(o_l, low, second_reg);
2553 __ rsb(temp, second_reg, ShifterOperand(32));
2554 __ Lsl(temp, high, temp);
2555 __ orr(o_l, o_l, ShifterOperand(temp));
2556 __ subs(temp, second_reg, ShifterOperand(32));
2557 __ it(PL);
2558 __ Lsr(o_l, high, temp, false, PL);
2559 __ Lsr(o_h, high, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002560 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00002561 break;
2562 }
2563 default:
2564 LOG(FATAL) << "Unexpected operation type " << type;
2565 }
2566}
2567
2568void LocationsBuilderARM::VisitShl(HShl* shl) {
2569 HandleShift(shl);
2570}
2571
2572void InstructionCodeGeneratorARM::VisitShl(HShl* shl) {
2573 HandleShift(shl);
2574}
2575
2576void LocationsBuilderARM::VisitShr(HShr* shr) {
2577 HandleShift(shr);
2578}
2579
2580void InstructionCodeGeneratorARM::VisitShr(HShr* shr) {
2581 HandleShift(shr);
2582}
2583
2584void LocationsBuilderARM::VisitUShr(HUShr* ushr) {
2585 HandleShift(ushr);
2586}
2587
2588void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) {
2589 HandleShift(ushr);
2590}
2591
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002592void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002593 LocationSummary* locations =
2594 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002595 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002596 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2597 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2598 locations->SetOut(Location::RegisterLocation(R0));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002599}
2600
2601void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) {
2602 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002603 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002604 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002605 codegen_->InvokeRuntime(GetThreadOffset<kArmWordSize>(instruction->GetEntrypoint()).Int32Value(),
2606 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002607 instruction->GetDexPc(),
2608 nullptr);
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002609}
2610
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002611void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) {
2612 LocationSummary* locations =
2613 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2614 InvokeRuntimeCallingConvention calling_convention;
2615 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002616 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002617 locations->SetOut(Location::RegisterLocation(R0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002618 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002619}
2620
2621void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) {
2622 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002623 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(2));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002624 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002625 codegen_->InvokeRuntime(GetThreadOffset<kArmWordSize>(instruction->GetEntrypoint()).Int32Value(),
2626 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002627 instruction->GetDexPc(),
2628 nullptr);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002629}
2630
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002631void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002632 LocationSummary* locations =
2633 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002634 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2635 if (location.IsStackSlot()) {
2636 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2637 } else if (location.IsDoubleStackSlot()) {
2638 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002639 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002640 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002641}
2642
2643void InstructionCodeGeneratorARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002644 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002645 UNUSED(instruction);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002646}
2647
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002648void LocationsBuilderARM::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002649 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002650 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002651 locations->SetInAt(0, Location::RequiresRegister());
2652 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002653}
2654
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002655void InstructionCodeGeneratorARM::VisitNot(HNot* not_) {
2656 LocationSummary* locations = not_->GetLocations();
2657 Location out = locations->Out();
2658 Location in = locations->InAt(0);
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002659 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002660 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002661 __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002662 break;
2663
2664 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01002665 __ mvn(out.AsRegisterPairLow<Register>(),
2666 ShifterOperand(in.AsRegisterPairLow<Register>()));
2667 __ mvn(out.AsRegisterPairHigh<Register>(),
2668 ShifterOperand(in.AsRegisterPairHigh<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002669 break;
2670
2671 default:
2672 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2673 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002674}
2675
David Brazdil66d126e2015-04-03 16:02:44 +01002676void LocationsBuilderARM::VisitBooleanNot(HBooleanNot* bool_not) {
2677 LocationSummary* locations =
2678 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
2679 locations->SetInAt(0, Location::RequiresRegister());
2680 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2681}
2682
2683void InstructionCodeGeneratorARM::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01002684 LocationSummary* locations = bool_not->GetLocations();
2685 Location out = locations->Out();
2686 Location in = locations->InAt(0);
2687 __ eor(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(1));
2688}
2689
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002690void LocationsBuilderARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002691 LocationSummary* locations =
2692 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00002693 switch (compare->InputAt(0)->GetType()) {
2694 case Primitive::kPrimLong: {
2695 locations->SetInAt(0, Location::RequiresRegister());
2696 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002697 // Output overlaps because it is written before doing the low comparison.
2698 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Calin Juravleddb7df22014-11-25 20:56:51 +00002699 break;
2700 }
2701 case Primitive::kPrimFloat:
2702 case Primitive::kPrimDouble: {
2703 locations->SetInAt(0, Location::RequiresFpuRegister());
2704 locations->SetInAt(1, Location::RequiresFpuRegister());
2705 locations->SetOut(Location::RequiresRegister());
2706 break;
2707 }
2708 default:
2709 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
2710 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002711}
2712
2713void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002714 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002715 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00002716 Location left = locations->InAt(0);
2717 Location right = locations->InAt(1);
2718
2719 Label less, greater, done;
2720 Primitive::Type type = compare->InputAt(0)->GetType();
2721 switch (type) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002722 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002723 __ cmp(left.AsRegisterPairHigh<Register>(),
2724 ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002725 __ b(&less, LT);
2726 __ b(&greater, GT);
Calin Juravleddb7df22014-11-25 20:56:51 +00002727 // Do LoadImmediate before any `cmp`, as LoadImmediate might affect the status flags.
2728 __ LoadImmediate(out, 0);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002729 __ cmp(left.AsRegisterPairLow<Register>(),
2730 ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare.
Calin Juravleddb7df22014-11-25 20:56:51 +00002731 break;
2732 }
2733 case Primitive::kPrimFloat:
2734 case Primitive::kPrimDouble: {
2735 __ LoadImmediate(out, 0);
2736 if (type == Primitive::kPrimFloat) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002737 __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00002738 } else {
2739 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
2740 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
2741 }
2742 __ vmstat(); // transfer FP status register to ARM APSR.
2743 __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002744 break;
2745 }
2746 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00002747 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002748 }
Calin Juravleddb7df22014-11-25 20:56:51 +00002749 __ b(&done, EQ);
2750 __ b(&less, CC); // CC is for both: unsigned compare for longs and 'less than' for floats.
2751
2752 __ Bind(&greater);
2753 __ LoadImmediate(out, 1);
2754 __ b(&done);
2755
2756 __ Bind(&less);
2757 __ LoadImmediate(out, -1);
2758
2759 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002760}
2761
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002762void LocationsBuilderARM::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002763 LocationSummary* locations =
2764 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01002765 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2766 locations->SetInAt(i, Location::Any());
2767 }
2768 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002769}
2770
2771void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002772 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002773 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002774}
2775
Calin Juravle52c48962014-12-16 17:02:57 +00002776void InstructionCodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) {
2777 // TODO (ported from quick): revisit Arm barrier kinds
2778 DmbOptions flavour = DmbOptions::ISH; // quiet c++ warnings
2779 switch (kind) {
2780 case MemBarrierKind::kAnyStore:
2781 case MemBarrierKind::kLoadAny:
2782 case MemBarrierKind::kAnyAny: {
2783 flavour = DmbOptions::ISH;
2784 break;
2785 }
2786 case MemBarrierKind::kStoreStore: {
2787 flavour = DmbOptions::ISHST;
2788 break;
2789 }
2790 default:
2791 LOG(FATAL) << "Unexpected memory barrier " << kind;
2792 }
2793 __ dmb(flavour);
2794}
2795
2796void InstructionCodeGeneratorARM::GenerateWideAtomicLoad(Register addr,
2797 uint32_t offset,
2798 Register out_lo,
2799 Register out_hi) {
2800 if (offset != 0) {
2801 __ LoadImmediate(out_lo, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00002802 __ add(IP, addr, ShifterOperand(out_lo));
2803 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00002804 }
2805 __ ldrexd(out_lo, out_hi, addr);
2806}
2807
2808void InstructionCodeGeneratorARM::GenerateWideAtomicStore(Register addr,
2809 uint32_t offset,
2810 Register value_lo,
2811 Register value_hi,
2812 Register temp1,
Calin Juravle77520bc2015-01-12 18:45:46 +00002813 Register temp2,
2814 HInstruction* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00002815 Label fail;
2816 if (offset != 0) {
2817 __ LoadImmediate(temp1, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00002818 __ add(IP, addr, ShifterOperand(temp1));
2819 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00002820 }
2821 __ Bind(&fail);
2822 // We need a load followed by store. (The address used in a STREX instruction must
2823 // be the same as the address in the most recently executed LDREX instruction.)
2824 __ ldrexd(temp1, temp2, addr);
Calin Juravle77520bc2015-01-12 18:45:46 +00002825 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002826 __ strexd(temp1, value_lo, value_hi, addr);
2827 __ cmp(temp1, ShifterOperand(0));
2828 __ b(&fail, NE);
2829}
2830
2831void LocationsBuilderARM::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
2832 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2833
Nicolas Geoffray39468442014-09-02 15:17:15 +01002834 LocationSummary* locations =
2835 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002836 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002837
Calin Juravle52c48962014-12-16 17:02:57 +00002838 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002839 if (Primitive::IsFloatingPointType(field_type)) {
2840 locations->SetInAt(1, Location::RequiresFpuRegister());
2841 } else {
2842 locations->SetInAt(1, Location::RequiresRegister());
2843 }
2844
Calin Juravle52c48962014-12-16 17:02:57 +00002845 bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble;
Calin Juravle34166012014-12-19 17:22:29 +00002846 bool generate_volatile = field_info.IsVolatile()
2847 && is_wide
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002848 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002849 // Temporary registers for the write barrier.
Calin Juravle52c48962014-12-16 17:02:57 +00002850 // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark.
2851 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002852 locations->AddTemp(Location::RequiresRegister());
2853 locations->AddTemp(Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002854 } else if (generate_volatile) {
Calin Juravle52c48962014-12-16 17:02:57 +00002855 // Arm encoding have some additional constraints for ldrexd/strexd:
2856 // - registers need to be consecutive
2857 // - the first register should be even but not R14.
2858 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
2859 // enable Arm encoding.
2860 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
2861
2862 locations->AddTemp(Location::RequiresRegister());
2863 locations->AddTemp(Location::RequiresRegister());
2864 if (field_type == Primitive::kPrimDouble) {
2865 // For doubles we need two more registers to copy the value.
2866 locations->AddTemp(Location::RegisterLocation(R2));
2867 locations->AddTemp(Location::RegisterLocation(R3));
2868 }
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002869 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002870}
2871
Calin Juravle52c48962014-12-16 17:02:57 +00002872void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction,
2873 const FieldInfo& field_info) {
2874 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2875
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002876 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00002877 Register base = locations->InAt(0).AsRegister<Register>();
2878 Location value = locations->InAt(1);
2879
2880 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002881 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00002882 Primitive::Type field_type = field_info.GetFieldType();
2883 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
2884
2885 if (is_volatile) {
2886 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
2887 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002888
2889 switch (field_type) {
2890 case Primitive::kPrimBoolean:
2891 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00002892 __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002893 break;
2894 }
2895
2896 case Primitive::kPrimShort:
2897 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00002898 __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002899 break;
2900 }
2901
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002902 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002903 case Primitive::kPrimNot: {
Calin Juravle77520bc2015-01-12 18:45:46 +00002904 __ StoreToOffset(kStoreWord, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002905 break;
2906 }
2907
2908 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00002909 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002910 GenerateWideAtomicStore(base, offset,
2911 value.AsRegisterPairLow<Register>(),
2912 value.AsRegisterPairHigh<Register>(),
2913 locations->GetTemp(0).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002914 locations->GetTemp(1).AsRegister<Register>(),
2915 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002916 } else {
2917 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002918 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002919 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002920 break;
2921 }
2922
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002923 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00002924 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002925 break;
2926 }
2927
2928 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00002929 DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00002930 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002931 Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>();
2932 Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>();
2933
2934 __ vmovrrd(value_reg_lo, value_reg_hi, value_reg);
2935
2936 GenerateWideAtomicStore(base, offset,
2937 value_reg_lo,
2938 value_reg_hi,
2939 locations->GetTemp(2).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002940 locations->GetTemp(3).AsRegister<Register>(),
2941 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002942 } else {
2943 __ StoreDToOffset(value_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002944 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002945 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002946 break;
2947 }
2948
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002949 case Primitive::kPrimVoid:
2950 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07002951 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002952 }
Calin Juravle52c48962014-12-16 17:02:57 +00002953
Calin Juravle77520bc2015-01-12 18:45:46 +00002954 // Longs and doubles are handled in the switch.
2955 if (field_type != Primitive::kPrimLong && field_type != Primitive::kPrimDouble) {
2956 codegen_->MaybeRecordImplicitNullCheck(instruction);
2957 }
2958
2959 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
2960 Register temp = locations->GetTemp(0).AsRegister<Register>();
2961 Register card = locations->GetTemp(1).AsRegister<Register>();
2962 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>());
2963 }
2964
Calin Juravle52c48962014-12-16 17:02:57 +00002965 if (is_volatile) {
2966 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2967 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002968}
2969
Calin Juravle52c48962014-12-16 17:02:57 +00002970void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
2971 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002972 LocationSummary* locations =
2973 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002974 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00002975
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002976 bool volatile_for_double = field_info.IsVolatile()
Calin Juravle34166012014-12-19 17:22:29 +00002977 && (field_info.GetFieldType() == Primitive::kPrimDouble)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002978 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002979 bool overlap = field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong);
Nicolas Geoffrayacc0b8e2015-04-20 12:39:57 +01002980
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002981 if (Primitive::IsFloatingPointType(instruction->GetType())) {
2982 locations->SetOut(Location::RequiresFpuRegister());
2983 } else {
2984 locations->SetOut(Location::RequiresRegister(),
2985 (overlap ? Location::kOutputOverlap : Location::kNoOutputOverlap));
2986 }
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002987 if (volatile_for_double) {
Calin Juravle52c48962014-12-16 17:02:57 +00002988 // Arm encoding have some additional constraints for ldrexd/strexd:
2989 // - registers need to be consecutive
2990 // - the first register should be even but not R14.
2991 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
2992 // enable Arm encoding.
2993 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
2994 locations->AddTemp(Location::RequiresRegister());
2995 locations->AddTemp(Location::RequiresRegister());
2996 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002997}
2998
Calin Juravle52c48962014-12-16 17:02:57 +00002999void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction,
3000 const FieldInfo& field_info) {
3001 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003002
Calin Juravle52c48962014-12-16 17:02:57 +00003003 LocationSummary* locations = instruction->GetLocations();
3004 Register base = locations->InAt(0).AsRegister<Register>();
3005 Location out = locations->Out();
3006 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003007 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00003008 Primitive::Type field_type = field_info.GetFieldType();
3009 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3010
3011 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003012 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003013 __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003014 break;
3015 }
3016
3017 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003018 __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003019 break;
3020 }
3021
3022 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003023 __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003024 break;
3025 }
3026
3027 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003028 __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003029 break;
3030 }
3031
3032 case Primitive::kPrimInt:
3033 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003034 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003035 break;
3036 }
3037
3038 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00003039 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003040 GenerateWideAtomicLoad(base, offset,
3041 out.AsRegisterPairLow<Register>(),
3042 out.AsRegisterPairHigh<Register>());
3043 } else {
3044 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset);
3045 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003046 break;
3047 }
3048
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003049 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003050 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003051 break;
3052 }
3053
3054 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003055 DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00003056 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003057 Register lo = locations->GetTemp(0).AsRegister<Register>();
3058 Register hi = locations->GetTemp(1).AsRegister<Register>();
3059 GenerateWideAtomicLoad(base, offset, lo, hi);
Calin Juravle77520bc2015-01-12 18:45:46 +00003060 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003061 __ vmovdrr(out_reg, lo, hi);
3062 } else {
3063 __ LoadDFromOffset(out_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003064 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003065 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003066 break;
3067 }
3068
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003069 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003070 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003071 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003072 }
Calin Juravle52c48962014-12-16 17:02:57 +00003073
Calin Juravle77520bc2015-01-12 18:45:46 +00003074 // Doubles are handled in the switch.
3075 if (field_type != Primitive::kPrimDouble) {
3076 codegen_->MaybeRecordImplicitNullCheck(instruction);
3077 }
3078
Calin Juravle52c48962014-12-16 17:02:57 +00003079 if (is_volatile) {
3080 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3081 }
3082}
3083
3084void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3085 HandleFieldSet(instruction, instruction->GetFieldInfo());
3086}
3087
3088void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3089 HandleFieldSet(instruction, instruction->GetFieldInfo());
3090}
3091
3092void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3093 HandleFieldGet(instruction, instruction->GetFieldInfo());
3094}
3095
3096void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3097 HandleFieldGet(instruction, instruction->GetFieldInfo());
3098}
3099
3100void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3101 HandleFieldGet(instruction, instruction->GetFieldInfo());
3102}
3103
3104void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3105 HandleFieldGet(instruction, instruction->GetFieldInfo());
3106}
3107
3108void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3109 HandleFieldSet(instruction, instruction->GetFieldInfo());
3110}
3111
3112void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3113 HandleFieldSet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003114}
3115
3116void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003117 LocationSummary* locations =
3118 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravle77520bc2015-01-12 18:45:46 +00003119 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003120 if (instruction->HasUses()) {
3121 locations->SetOut(Location::SameAsFirstInput());
3122 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003123}
3124
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003125void InstructionCodeGeneratorARM::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003126 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3127 return;
3128 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003129 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003130
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003131 __ LoadFromOffset(kLoadWord, IP, obj.AsRegister<Register>(), 0);
3132 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3133}
3134
3135void InstructionCodeGeneratorARM::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003136 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003137 codegen_->AddSlowPath(slow_path);
3138
3139 LocationSummary* locations = instruction->GetLocations();
3140 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003141
Calin Juravle77520bc2015-01-12 18:45:46 +00003142 __ cmp(obj.AsRegister<Register>(), ShifterOperand(0));
3143 __ b(slow_path->GetEntryLabel(), EQ);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003144}
3145
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003146void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
3147 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3148 GenerateImplicitNullCheck(instruction);
3149 } else {
3150 GenerateExplicitNullCheck(instruction);
3151 }
3152}
3153
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003154void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003155 LocationSummary* locations =
3156 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003157 locations->SetInAt(0, Location::RequiresRegister());
3158 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003159 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3160 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3161 } else {
3162 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3163 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003164}
3165
3166void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
3167 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003168 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003169 Location index = locations->InAt(1);
3170
3171 switch (instruction->GetType()) {
3172 case Primitive::kPrimBoolean: {
3173 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003174 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003175 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003176 size_t offset =
3177 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003178 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
3179 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003180 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003181 __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset);
3182 }
3183 break;
3184 }
3185
3186 case Primitive::kPrimByte: {
3187 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003188 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003189 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003190 size_t offset =
3191 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003192 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
3193 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003194 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003195 __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset);
3196 }
3197 break;
3198 }
3199
3200 case Primitive::kPrimShort: {
3201 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003202 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003203 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003204 size_t offset =
3205 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003206 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
3207 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003208 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003209 __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset);
3210 }
3211 break;
3212 }
3213
3214 case Primitive::kPrimChar: {
3215 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003216 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003217 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003218 size_t offset =
3219 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003220 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
3221 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003222 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003223 __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset);
3224 }
3225 break;
3226 }
3227
3228 case Primitive::kPrimInt:
3229 case Primitive::kPrimNot: {
3230 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
3231 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003232 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003233 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003234 size_t offset =
3235 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003236 __ LoadFromOffset(kLoadWord, out, obj, offset);
3237 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003238 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003239 __ LoadFromOffset(kLoadWord, out, IP, data_offset);
3240 }
3241 break;
3242 }
3243
3244 case Primitive::kPrimLong: {
3245 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003246 Location out = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003247 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003248 size_t offset =
3249 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003250 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003251 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003252 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003253 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003254 }
3255 break;
3256 }
3257
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003258 case Primitive::kPrimFloat: {
3259 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3260 Location out = locations->Out();
3261 DCHECK(out.IsFpuRegister());
3262 if (index.IsConstant()) {
3263 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3264 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), obj, offset);
3265 } else {
3266 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3267 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), IP, data_offset);
3268 }
3269 break;
3270 }
3271
3272 case Primitive::kPrimDouble: {
3273 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3274 Location out = locations->Out();
3275 DCHECK(out.IsFpuRegisterPair());
3276 if (index.IsConstant()) {
3277 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3278 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3279 } else {
3280 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3281 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3282 }
3283 break;
3284 }
3285
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003286 case Primitive::kPrimVoid:
3287 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003288 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003289 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003290 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003291}
3292
3293void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003294 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003295
3296 bool needs_write_barrier =
3297 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
3298 bool needs_runtime_call = instruction->NeedsTypeCheck();
3299
Nicolas Geoffray39468442014-09-02 15:17:15 +01003300 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003301 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
3302 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003303 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003304 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3305 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3306 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003307 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003308 locations->SetInAt(0, Location::RequiresRegister());
3309 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003310 if (Primitive::IsFloatingPointType(value_type)) {
3311 locations->SetInAt(2, Location::RequiresFpuRegister());
3312 } else {
3313 locations->SetInAt(2, Location::RequiresRegister());
3314 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003315
3316 if (needs_write_barrier) {
3317 // Temporary registers for the write barrier.
3318 locations->AddTemp(Location::RequiresRegister());
3319 locations->AddTemp(Location::RequiresRegister());
3320 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003321 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003322}
3323
3324void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
3325 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003326 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003327 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003328 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003329 bool needs_runtime_call = locations->WillCall();
3330 bool needs_write_barrier =
3331 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003332
3333 switch (value_type) {
3334 case Primitive::kPrimBoolean:
3335 case Primitive::kPrimByte: {
3336 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003337 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003338 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003339 size_t offset =
3340 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003341 __ StoreToOffset(kStoreByte, value, obj, offset);
3342 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003343 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003344 __ StoreToOffset(kStoreByte, value, IP, data_offset);
3345 }
3346 break;
3347 }
3348
3349 case Primitive::kPrimShort:
3350 case Primitive::kPrimChar: {
3351 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003352 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003353 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003354 size_t offset =
3355 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003356 __ StoreToOffset(kStoreHalfword, value, obj, offset);
3357 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003358 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003359 __ StoreToOffset(kStoreHalfword, value, IP, data_offset);
3360 }
3361 break;
3362 }
3363
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003364 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003365 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003366 if (!needs_runtime_call) {
3367 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003368 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003369 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003370 size_t offset =
3371 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003372 __ StoreToOffset(kStoreWord, value, obj, offset);
3373 } else {
3374 DCHECK(index.IsRegister()) << index;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003375 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003376 __ StoreToOffset(kStoreWord, value, IP, data_offset);
3377 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003378 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003379 if (needs_write_barrier) {
3380 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003381 Register temp = locations->GetTemp(0).AsRegister<Register>();
3382 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003383 codegen_->MarkGCCard(temp, card, obj, value);
3384 }
3385 } else {
3386 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain199f3362014-11-27 17:15:16 +00003387 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
3388 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003389 instruction->GetDexPc(),
3390 nullptr);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003391 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003392 break;
3393 }
3394
3395 case Primitive::kPrimLong: {
3396 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003397 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003398 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003399 size_t offset =
3400 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003401 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003402 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003403 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003404 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003405 }
3406 break;
3407 }
3408
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003409 case Primitive::kPrimFloat: {
3410 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3411 Location value = locations->InAt(2);
3412 DCHECK(value.IsFpuRegister());
3413 if (index.IsConstant()) {
3414 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3415 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), obj, offset);
3416 } else {
3417 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3418 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), IP, data_offset);
3419 }
3420 break;
3421 }
3422
3423 case Primitive::kPrimDouble: {
3424 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3425 Location value = locations->InAt(2);
3426 DCHECK(value.IsFpuRegisterPair());
3427 if (index.IsConstant()) {
3428 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3429 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3430 } else {
3431 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3432 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3433 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003434
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003435 break;
3436 }
3437
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003438 case Primitive::kPrimVoid:
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003439 LOG(FATAL) << "Unreachable type " << value_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003440 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003441 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003442
3443 // Ints and objects are handled in the switch.
3444 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
3445 codegen_->MaybeRecordImplicitNullCheck(instruction);
3446 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003447}
3448
3449void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003450 LocationSummary* locations =
3451 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003452 locations->SetInAt(0, Location::RequiresRegister());
3453 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003454}
3455
3456void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
3457 LocationSummary* locations = instruction->GetLocations();
3458 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003459 Register obj = locations->InAt(0).AsRegister<Register>();
3460 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003461 __ LoadFromOffset(kLoadWord, out, obj, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003462 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003463}
3464
3465void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003466 LocationSummary* locations =
3467 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003468 locations->SetInAt(0, Location::RequiresRegister());
3469 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003470 if (instruction->HasUses()) {
3471 locations->SetOut(Location::SameAsFirstInput());
3472 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003473}
3474
3475void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
3476 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003477 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(
Nicolas Geoffray39468442014-09-02 15:17:15 +01003478 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003479 codegen_->AddSlowPath(slow_path);
3480
Roland Levillain271ab9c2014-11-27 15:23:57 +00003481 Register index = locations->InAt(0).AsRegister<Register>();
3482 Register length = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003483
3484 __ cmp(index, ShifterOperand(length));
3485 __ b(slow_path->GetEntryLabel(), CS);
3486}
3487
3488void CodeGeneratorARM::MarkGCCard(Register temp, Register card, Register object, Register value) {
3489 Label is_null;
3490 __ CompareAndBranchIfZero(value, &is_null);
3491 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value());
3492 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
3493 __ strb(card, Address(card, temp));
3494 __ Bind(&is_null);
3495}
3496
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003497void LocationsBuilderARM::VisitTemporary(HTemporary* temp) {
3498 temp->SetLocations(nullptr);
3499}
3500
3501void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp) {
3502 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003503 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003504}
3505
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003506void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003507 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003508 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003509}
3510
3511void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003512 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3513}
3514
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003515void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
3516 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3517}
3518
3519void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003520 HBasicBlock* block = instruction->GetBlock();
3521 if (block->GetLoopInformation() != nullptr) {
3522 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3523 // The back edge will generate the suspend check.
3524 return;
3525 }
3526 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3527 // The goto will generate the suspend check.
3528 return;
3529 }
3530 GenerateSuspendCheck(instruction, nullptr);
3531}
3532
3533void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
3534 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003535 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003536 new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003537 codegen_->AddSlowPath(slow_path);
3538
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003539 __ LoadFromOffset(
3540 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value());
3541 __ cmp(IP, ShifterOperand(0));
3542 // TODO: Figure out the branch offsets and use cbz/cbnz.
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003543 if (successor == nullptr) {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003544 __ b(slow_path->GetEntryLabel(), NE);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003545 __ Bind(slow_path->GetReturnLabel());
3546 } else {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003547 __ b(codegen_->GetLabelOf(successor), EQ);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003548 __ b(slow_path->GetEntryLabel());
3549 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003550}
3551
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003552ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
3553 return codegen_->GetAssembler();
3554}
3555
3556void ParallelMoveResolverARM::EmitMove(size_t index) {
3557 MoveOperands* move = moves_.Get(index);
3558 Location source = move->GetSource();
3559 Location destination = move->GetDestination();
3560
3561 if (source.IsRegister()) {
3562 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003563 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003564 } else {
3565 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003566 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003567 SP, destination.GetStackIndex());
3568 }
3569 } else if (source.IsStackSlot()) {
3570 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003571 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003572 SP, source.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003573 } else if (destination.IsFpuRegister()) {
3574 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003575 } else {
3576 DCHECK(destination.IsStackSlot());
3577 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
3578 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3579 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003580 } else if (source.IsFpuRegister()) {
3581 if (destination.IsFpuRegister()) {
3582 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003583 } else {
3584 DCHECK(destination.IsStackSlot());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003585 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
3586 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003587 } else if (source.IsDoubleStackSlot()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003588 if (destination.IsDoubleStackSlot()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003589 __ LoadDFromOffset(DTMP, SP, source.GetStackIndex());
3590 __ StoreDToOffset(DTMP, SP, destination.GetStackIndex());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003591 } else if (destination.IsRegisterPair()) {
3592 DCHECK(ExpectedPairLayout(destination));
3593 __ LoadFromOffset(
3594 kLoadWordPair, destination.AsRegisterPairLow<Register>(), SP, source.GetStackIndex());
3595 } else {
3596 DCHECK(destination.IsFpuRegisterPair()) << destination;
3597 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3598 SP,
3599 source.GetStackIndex());
3600 }
3601 } else if (source.IsRegisterPair()) {
3602 if (destination.IsRegisterPair()) {
3603 __ Mov(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
3604 __ Mov(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
3605 } else {
3606 DCHECK(destination.IsDoubleStackSlot()) << destination;
3607 DCHECK(ExpectedPairLayout(source));
3608 __ StoreToOffset(
3609 kStoreWordPair, source.AsRegisterPairLow<Register>(), SP, destination.GetStackIndex());
3610 }
3611 } else if (source.IsFpuRegisterPair()) {
3612 if (destination.IsFpuRegisterPair()) {
3613 __ vmovd(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3614 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
3615 } else {
3616 DCHECK(destination.IsDoubleStackSlot()) << destination;
3617 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
3618 SP,
3619 destination.GetStackIndex());
3620 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003621 } else {
3622 DCHECK(source.IsConstant()) << source;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003623 HConstant* constant = source.GetConstant();
3624 if (constant->IsIntConstant() || constant->IsNullConstant()) {
3625 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003626 if (destination.IsRegister()) {
3627 __ LoadImmediate(destination.AsRegister<Register>(), value);
3628 } else {
3629 DCHECK(destination.IsStackSlot());
3630 __ LoadImmediate(IP, value);
3631 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3632 }
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003633 } else if (constant->IsLongConstant()) {
3634 int64_t value = constant->AsLongConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003635 if (destination.IsRegisterPair()) {
3636 __ LoadImmediate(destination.AsRegisterPairLow<Register>(), Low32Bits(value));
3637 __ LoadImmediate(destination.AsRegisterPairHigh<Register>(), High32Bits(value));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003638 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003639 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003640 __ LoadImmediate(IP, Low32Bits(value));
3641 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3642 __ LoadImmediate(IP, High32Bits(value));
3643 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3644 }
3645 } else if (constant->IsDoubleConstant()) {
3646 double value = constant->AsDoubleConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003647 if (destination.IsFpuRegisterPair()) {
3648 __ LoadDImmediate(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003649 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003650 DCHECK(destination.IsDoubleStackSlot()) << destination;
3651 uint64_t int_value = bit_cast<uint64_t, double>(value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003652 __ LoadImmediate(IP, Low32Bits(int_value));
3653 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3654 __ LoadImmediate(IP, High32Bits(int_value));
3655 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3656 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003657 } else {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003658 DCHECK(constant->IsFloatConstant()) << constant->DebugName();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003659 float value = constant->AsFloatConstant()->GetValue();
3660 if (destination.IsFpuRegister()) {
3661 __ LoadSImmediate(destination.AsFpuRegister<SRegister>(), value);
3662 } else {
3663 DCHECK(destination.IsStackSlot());
3664 __ LoadImmediate(IP, bit_cast<int32_t, float>(value));
3665 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3666 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003667 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003668 }
3669}
3670
3671void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
3672 __ Mov(IP, reg);
3673 __ LoadFromOffset(kLoadWord, reg, SP, mem);
3674 __ StoreToOffset(kStoreWord, IP, SP, mem);
3675}
3676
3677void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
3678 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
3679 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
3680 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
3681 SP, mem1 + stack_offset);
3682 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
3683 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
3684 SP, mem2 + stack_offset);
3685 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
3686}
3687
3688void ParallelMoveResolverARM::EmitSwap(size_t index) {
3689 MoveOperands* move = moves_.Get(index);
3690 Location source = move->GetSource();
3691 Location destination = move->GetDestination();
3692
3693 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003694 DCHECK_NE(source.AsRegister<Register>(), IP);
3695 DCHECK_NE(destination.AsRegister<Register>(), IP);
3696 __ Mov(IP, source.AsRegister<Register>());
3697 __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>());
3698 __ Mov(destination.AsRegister<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003699 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003700 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003701 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003702 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003703 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
3704 Exchange(source.GetStackIndex(), destination.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003705 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003706 __ vmovrs(IP, source.AsFpuRegister<SRegister>());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003707 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>());
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003708 __ vmovsr(destination.AsFpuRegister<SRegister>(), IP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003709 } else if (source.IsRegisterPair() && destination.IsRegisterPair()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003710 __ vmovdrr(DTMP, source.AsRegisterPairLow<Register>(), source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003711 __ Mov(source.AsRegisterPairLow<Register>(), destination.AsRegisterPairLow<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003712 __ Mov(source.AsRegisterPairHigh<Register>(), destination.AsRegisterPairHigh<Register>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003713 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
3714 destination.AsRegisterPairHigh<Register>(),
3715 DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003716 } else if (source.IsRegisterPair() || destination.IsRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003717 Register low_reg = source.IsRegisterPair()
3718 ? source.AsRegisterPairLow<Register>()
3719 : destination.AsRegisterPairLow<Register>();
3720 int mem = source.IsRegisterPair()
3721 ? destination.GetStackIndex()
3722 : source.GetStackIndex();
3723 DCHECK(ExpectedPairLayout(source.IsRegisterPair() ? source : destination));
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003724 __ vmovdrr(DTMP, low_reg, static_cast<Register>(low_reg + 1));
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003725 __ LoadFromOffset(kLoadWordPair, low_reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003726 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003727 } else if (source.IsFpuRegisterPair() && destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003728 DRegister first = FromLowSToD(source.AsFpuRegisterPairLow<SRegister>());
3729 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003730 __ vmovd(DTMP, first);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003731 __ vmovd(first, second);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003732 __ vmovd(second, DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003733 } else if (source.IsFpuRegisterPair() || destination.IsFpuRegisterPair()) {
3734 DRegister reg = source.IsFpuRegisterPair()
3735 ? FromLowSToD(source.AsFpuRegisterPairLow<SRegister>())
3736 : FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
3737 int mem = source.IsFpuRegisterPair()
3738 ? destination.GetStackIndex()
3739 : source.GetStackIndex();
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003740 __ vmovd(DTMP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003741 __ LoadDFromOffset(reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003742 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003743 } else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
3744 SRegister reg = source.IsFpuRegister() ? source.AsFpuRegister<SRegister>()
3745 : destination.AsFpuRegister<SRegister>();
3746 int mem = source.IsFpuRegister()
3747 ? destination.GetStackIndex()
3748 : source.GetStackIndex();
3749
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003750 __ vmovrs(IP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003751 __ LoadSFromOffset(reg, SP, mem);
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003752 __ StoreToOffset(kStoreWord, IP, SP, mem);
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003753 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003754 Exchange(source.GetStackIndex(), destination.GetStackIndex());
3755 Exchange(source.GetHighStackIndex(kArmWordSize), destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003756 } else {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003757 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003758 }
3759}
3760
3761void ParallelMoveResolverARM::SpillScratch(int reg) {
3762 __ Push(static_cast<Register>(reg));
3763}
3764
3765void ParallelMoveResolverARM::RestoreScratch(int reg) {
3766 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003767}
3768
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003769void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003770 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3771 ? LocationSummary::kCallOnSlowPath
3772 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003773 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003774 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003775 locations->SetOut(Location::RequiresRegister());
3776}
3777
3778void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003779 Register out = cls->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003780 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003781 DCHECK(!cls->CanCallRuntime());
3782 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003783 codegen_->LoadCurrentMethod(out);
3784 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3785 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003786 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003787 codegen_->LoadCurrentMethod(out);
3788 __ LoadFromOffset(
3789 kLoadWord, out, out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value());
3790 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003791
3792 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3793 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3794 codegen_->AddSlowPath(slow_path);
3795 __ cmp(out, ShifterOperand(0));
3796 __ b(slow_path->GetEntryLabel(), EQ);
3797 if (cls->MustGenerateClinitCheck()) {
3798 GenerateClassInitializationCheck(slow_path, out);
3799 } else {
3800 __ Bind(slow_path->GetExitLabel());
3801 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003802 }
3803}
3804
3805void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
3806 LocationSummary* locations =
3807 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3808 locations->SetInAt(0, Location::RequiresRegister());
3809 if (check->HasUses()) {
3810 locations->SetOut(Location::SameAsFirstInput());
3811 }
3812}
3813
3814void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003815 // We assume the class is not null.
3816 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3817 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003818 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00003819 GenerateClassInitializationCheck(slow_path,
3820 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003821}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003822
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003823void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
3824 SlowPathCodeARM* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003825 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
3826 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
3827 __ b(slow_path->GetEntryLabel(), LT);
3828 // Even if the initialized flag is set, we may be in a situation where caches are not synced
3829 // properly. Therefore, we do a memory fence.
3830 __ dmb(ISH);
3831 __ Bind(slow_path->GetExitLabel());
3832}
3833
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003834void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
3835 LocationSummary* locations =
3836 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3837 locations->SetOut(Location::RequiresRegister());
3838}
3839
3840void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
3841 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
3842 codegen_->AddSlowPath(slow_path);
3843
Roland Levillain271ab9c2014-11-27 15:23:57 +00003844 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003845 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08003846 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3847 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003848 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
3849 __ cmp(out, ShifterOperand(0));
3850 __ b(slow_path->GetEntryLabel(), EQ);
3851 __ Bind(slow_path->GetExitLabel());
3852}
3853
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003854void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
3855 LocationSummary* locations =
3856 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3857 locations->SetOut(Location::RequiresRegister());
3858}
3859
3860void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003861 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003862 int32_t offset = Thread::ExceptionOffset<kArmWordSize>().Int32Value();
3863 __ LoadFromOffset(kLoadWord, out, TR, offset);
3864 __ LoadImmediate(IP, 0);
3865 __ StoreToOffset(kStoreWord, IP, TR, offset);
3866}
3867
3868void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
3869 LocationSummary* locations =
3870 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3871 InvokeRuntimeCallingConvention calling_convention;
3872 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3873}
3874
3875void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
3876 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003877 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003878}
3879
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003880void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003881 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
3882 ? LocationSummary::kNoCall
3883 : LocationSummary::kCallOnSlowPath;
3884 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3885 locations->SetInAt(0, Location::RequiresRegister());
3886 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003887 // The out register is used as a temporary, so it overlaps with the inputs.
3888 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003889}
3890
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003891void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003892 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003893 Register obj = locations->InAt(0).AsRegister<Register>();
3894 Register cls = locations->InAt(1).AsRegister<Register>();
3895 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003896 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3897 Label done, zero;
3898 SlowPathCodeARM* slow_path = nullptr;
3899
3900 // Return 0 if `obj` is null.
3901 // TODO: avoid this check if we know obj is not null.
3902 __ cmp(obj, ShifterOperand(0));
3903 __ b(&zero, EQ);
3904 // Compare the class of `obj` with `cls`.
3905 __ LoadFromOffset(kLoadWord, out, obj, class_offset);
3906 __ cmp(out, ShifterOperand(cls));
3907 if (instruction->IsClassFinal()) {
3908 // Classes must be equal for the instanceof to succeed.
3909 __ b(&zero, NE);
3910 __ LoadImmediate(out, 1);
3911 __ b(&done);
3912 } else {
3913 // If the classes are not equal, we go into a slow path.
3914 DCHECK(locations->OnlyCallsOnSlowPath());
3915 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003916 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003917 codegen_->AddSlowPath(slow_path);
3918 __ b(slow_path->GetEntryLabel(), NE);
3919 __ LoadImmediate(out, 1);
3920 __ b(&done);
3921 }
3922 __ Bind(&zero);
3923 __ LoadImmediate(out, 0);
3924 if (slow_path != nullptr) {
3925 __ Bind(slow_path->GetExitLabel());
3926 }
3927 __ Bind(&done);
3928}
3929
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003930void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
3931 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3932 instruction, LocationSummary::kCallOnSlowPath);
3933 locations->SetInAt(0, Location::RequiresRegister());
3934 locations->SetInAt(1, Location::RequiresRegister());
3935 locations->AddTemp(Location::RequiresRegister());
3936}
3937
3938void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
3939 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003940 Register obj = locations->InAt(0).AsRegister<Register>();
3941 Register cls = locations->InAt(1).AsRegister<Register>();
3942 Register temp = locations->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003943 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3944
3945 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
3946 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
3947 codegen_->AddSlowPath(slow_path);
3948
3949 // TODO: avoid this check if we know obj is not null.
3950 __ cmp(obj, ShifterOperand(0));
3951 __ b(slow_path->GetExitLabel(), EQ);
3952 // Compare the class of `obj` with `cls`.
3953 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
3954 __ cmp(temp, ShifterOperand(cls));
3955 __ b(slow_path->GetEntryLabel(), NE);
3956 __ Bind(slow_path->GetExitLabel());
3957}
3958
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003959void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3960 LocationSummary* locations =
3961 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3962 InvokeRuntimeCallingConvention calling_convention;
3963 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3964}
3965
3966void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3967 codegen_->InvokeRuntime(instruction->IsEnter()
3968 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3969 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003970 instruction->GetDexPc(),
3971 nullptr);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003972}
3973
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003974void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
3975void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
3976void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
3977
3978void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
3979 LocationSummary* locations =
3980 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3981 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
3982 || instruction->GetResultType() == Primitive::kPrimLong);
3983 locations->SetInAt(0, Location::RequiresRegister());
3984 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003985 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003986}
3987
3988void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
3989 HandleBitwiseOperation(instruction);
3990}
3991
3992void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
3993 HandleBitwiseOperation(instruction);
3994}
3995
3996void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
3997 HandleBitwiseOperation(instruction);
3998}
3999
4000void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
4001 LocationSummary* locations = instruction->GetLocations();
4002
4003 if (instruction->GetResultType() == Primitive::kPrimInt) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004004 Register first = locations->InAt(0).AsRegister<Register>();
4005 Register second = locations->InAt(1).AsRegister<Register>();
4006 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004007 if (instruction->IsAnd()) {
4008 __ and_(out, first, ShifterOperand(second));
4009 } else if (instruction->IsOr()) {
4010 __ orr(out, first, ShifterOperand(second));
4011 } else {
4012 DCHECK(instruction->IsXor());
4013 __ eor(out, first, ShifterOperand(second));
4014 }
4015 } else {
4016 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
4017 Location first = locations->InAt(0);
4018 Location second = locations->InAt(1);
4019 Location out = locations->Out();
4020 if (instruction->IsAnd()) {
4021 __ and_(out.AsRegisterPairLow<Register>(),
4022 first.AsRegisterPairLow<Register>(),
4023 ShifterOperand(second.AsRegisterPairLow<Register>()));
4024 __ and_(out.AsRegisterPairHigh<Register>(),
4025 first.AsRegisterPairHigh<Register>(),
4026 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4027 } else if (instruction->IsOr()) {
4028 __ orr(out.AsRegisterPairLow<Register>(),
4029 first.AsRegisterPairLow<Register>(),
4030 ShifterOperand(second.AsRegisterPairLow<Register>()));
4031 __ orr(out.AsRegisterPairHigh<Register>(),
4032 first.AsRegisterPairHigh<Register>(),
4033 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4034 } else {
4035 DCHECK(instruction->IsXor());
4036 __ eor(out.AsRegisterPairLow<Register>(),
4037 first.AsRegisterPairLow<Register>(),
4038 ShifterOperand(second.AsRegisterPairLow<Register>()));
4039 __ eor(out.AsRegisterPairHigh<Register>(),
4040 first.AsRegisterPairHigh<Register>(),
4041 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4042 }
4043 }
4044}
4045
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004046void CodeGeneratorARM::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Register temp) {
4047 DCHECK_EQ(temp, kArtMethodRegister);
4048
4049 // TODO: Implement all kinds of calls:
4050 // 1) boot -> boot
4051 // 2) app -> boot
4052 // 3) app -> app
4053 //
4054 // Currently we implement the app -> app logic, which looks up in the resolve cache.
4055
4056 // temp = method;
4057 LoadCurrentMethod(temp);
4058 if (!invoke->IsRecursive()) {
4059 // temp = temp->dex_cache_resolved_methods_;
4060 __ LoadFromOffset(
4061 kLoadWord, temp, temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value());
4062 // temp = temp[index_in_cache]
4063 __ LoadFromOffset(
4064 kLoadWord, temp, temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex()));
4065 // LR = temp[offset_of_quick_compiled_code]
4066 __ LoadFromOffset(kLoadWord, LR, temp,
4067 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
4068 kArmWordSize).Int32Value());
4069 // LR()
4070 __ blx(LR);
4071 } else {
4072 __ bl(GetFrameEntryLabel());
4073 }
4074
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004075 DCHECK(!IsLeafMethod());
4076}
4077
Calin Juravleb1498f62015-02-16 13:13:29 +00004078void LocationsBuilderARM::VisitBoundType(HBoundType* instruction) {
4079 // Nothing to do, this should be removed during prepare for register allocator.
4080 UNUSED(instruction);
4081 LOG(FATAL) << "Unreachable";
4082}
4083
4084void InstructionCodeGeneratorARM::VisitBoundType(HBoundType* instruction) {
4085 // Nothing to do, this should be removed during prepare for register allocator.
4086 UNUSED(instruction);
4087 LOG(FATAL) << "Unreachable";
4088}
4089
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00004090} // namespace arm
4091} // namespace art