blob: 037a4aef4dee7b55b891e14cf9ac1486d5d9c7b1 [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());
2837 locations->SetInAt(1, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00002838
Calin Juravle34166012014-12-19 17:22:29 +00002839
Calin Juravle52c48962014-12-16 17:02:57 +00002840 Primitive::Type field_type = field_info.GetFieldType();
2841 bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble;
Calin Juravle34166012014-12-19 17:22:29 +00002842 bool generate_volatile = field_info.IsVolatile()
2843 && is_wide
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002844 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002845 // Temporary registers for the write barrier.
Calin Juravle52c48962014-12-16 17:02:57 +00002846 // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark.
2847 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002848 locations->AddTemp(Location::RequiresRegister());
2849 locations->AddTemp(Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002850 } else if (generate_volatile) {
Calin Juravle52c48962014-12-16 17:02:57 +00002851 // Arm encoding have some additional constraints for ldrexd/strexd:
2852 // - registers need to be consecutive
2853 // - the first register should be even but not R14.
2854 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
2855 // enable Arm encoding.
2856 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
2857
2858 locations->AddTemp(Location::RequiresRegister());
2859 locations->AddTemp(Location::RequiresRegister());
2860 if (field_type == Primitive::kPrimDouble) {
2861 // For doubles we need two more registers to copy the value.
2862 locations->AddTemp(Location::RegisterLocation(R2));
2863 locations->AddTemp(Location::RegisterLocation(R3));
2864 }
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002865 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002866}
2867
Calin Juravle52c48962014-12-16 17:02:57 +00002868void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction,
2869 const FieldInfo& field_info) {
2870 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2871
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002872 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00002873 Register base = locations->InAt(0).AsRegister<Register>();
2874 Location value = locations->InAt(1);
2875
2876 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002877 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00002878 Primitive::Type field_type = field_info.GetFieldType();
2879 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
2880
2881 if (is_volatile) {
2882 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
2883 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002884
2885 switch (field_type) {
2886 case Primitive::kPrimBoolean:
2887 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00002888 __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002889 break;
2890 }
2891
2892 case Primitive::kPrimShort:
2893 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00002894 __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002895 break;
2896 }
2897
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002898 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002899 case Primitive::kPrimNot: {
Calin Juravle77520bc2015-01-12 18:45:46 +00002900 __ StoreToOffset(kStoreWord, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002901 break;
2902 }
2903
2904 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00002905 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002906 GenerateWideAtomicStore(base, offset,
2907 value.AsRegisterPairLow<Register>(),
2908 value.AsRegisterPairHigh<Register>(),
2909 locations->GetTemp(0).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002910 locations->GetTemp(1).AsRegister<Register>(),
2911 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002912 } else {
2913 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002914 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002915 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002916 break;
2917 }
2918
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002919 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00002920 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002921 break;
2922 }
2923
2924 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00002925 DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00002926 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002927 Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>();
2928 Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>();
2929
2930 __ vmovrrd(value_reg_lo, value_reg_hi, value_reg);
2931
2932 GenerateWideAtomicStore(base, offset,
2933 value_reg_lo,
2934 value_reg_hi,
2935 locations->GetTemp(2).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002936 locations->GetTemp(3).AsRegister<Register>(),
2937 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002938 } else {
2939 __ StoreDToOffset(value_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002940 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002941 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002942 break;
2943 }
2944
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002945 case Primitive::kPrimVoid:
2946 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07002947 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002948 }
Calin Juravle52c48962014-12-16 17:02:57 +00002949
Calin Juravle77520bc2015-01-12 18:45:46 +00002950 // Longs and doubles are handled in the switch.
2951 if (field_type != Primitive::kPrimLong && field_type != Primitive::kPrimDouble) {
2952 codegen_->MaybeRecordImplicitNullCheck(instruction);
2953 }
2954
2955 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
2956 Register temp = locations->GetTemp(0).AsRegister<Register>();
2957 Register card = locations->GetTemp(1).AsRegister<Register>();
2958 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>());
2959 }
2960
Calin Juravle52c48962014-12-16 17:02:57 +00002961 if (is_volatile) {
2962 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2963 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002964}
2965
Calin Juravle52c48962014-12-16 17:02:57 +00002966void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
2967 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002968 LocationSummary* locations =
2969 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002970 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00002971
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002972 bool volatile_for_double = field_info.IsVolatile()
Calin Juravle34166012014-12-19 17:22:29 +00002973 && (field_info.GetFieldType() == Primitive::kPrimDouble)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002974 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002975 bool overlap = field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong);
2976 locations->SetOut(Location::RequiresRegister(),
2977 (overlap ? Location::kOutputOverlap : Location::kNoOutputOverlap));
2978 if (volatile_for_double) {
Calin Juravle52c48962014-12-16 17:02:57 +00002979 // Arm encoding have some additional constraints for ldrexd/strexd:
2980 // - registers need to be consecutive
2981 // - the first register should be even but not R14.
2982 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
2983 // enable Arm encoding.
2984 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
2985 locations->AddTemp(Location::RequiresRegister());
2986 locations->AddTemp(Location::RequiresRegister());
2987 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002988}
2989
Calin Juravle52c48962014-12-16 17:02:57 +00002990void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction,
2991 const FieldInfo& field_info) {
2992 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002993
Calin Juravle52c48962014-12-16 17:02:57 +00002994 LocationSummary* locations = instruction->GetLocations();
2995 Register base = locations->InAt(0).AsRegister<Register>();
2996 Location out = locations->Out();
2997 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002998 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00002999 Primitive::Type field_type = field_info.GetFieldType();
3000 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3001
3002 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003003 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003004 __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003005 break;
3006 }
3007
3008 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003009 __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003010 break;
3011 }
3012
3013 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003014 __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003015 break;
3016 }
3017
3018 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003019 __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003020 break;
3021 }
3022
3023 case Primitive::kPrimInt:
3024 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003025 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003026 break;
3027 }
3028
3029 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00003030 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003031 GenerateWideAtomicLoad(base, offset,
3032 out.AsRegisterPairLow<Register>(),
3033 out.AsRegisterPairHigh<Register>());
3034 } else {
3035 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset);
3036 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003037 break;
3038 }
3039
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003040 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003041 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003042 break;
3043 }
3044
3045 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003046 DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00003047 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003048 Register lo = locations->GetTemp(0).AsRegister<Register>();
3049 Register hi = locations->GetTemp(1).AsRegister<Register>();
3050 GenerateWideAtomicLoad(base, offset, lo, hi);
Calin Juravle77520bc2015-01-12 18:45:46 +00003051 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003052 __ vmovdrr(out_reg, lo, hi);
3053 } else {
3054 __ LoadDFromOffset(out_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003055 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003056 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003057 break;
3058 }
3059
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003060 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003061 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003062 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003063 }
Calin Juravle52c48962014-12-16 17:02:57 +00003064
Calin Juravle77520bc2015-01-12 18:45:46 +00003065 // Doubles are handled in the switch.
3066 if (field_type != Primitive::kPrimDouble) {
3067 codegen_->MaybeRecordImplicitNullCheck(instruction);
3068 }
3069
Calin Juravle52c48962014-12-16 17:02:57 +00003070 if (is_volatile) {
3071 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3072 }
3073}
3074
3075void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3076 HandleFieldSet(instruction, instruction->GetFieldInfo());
3077}
3078
3079void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3080 HandleFieldSet(instruction, instruction->GetFieldInfo());
3081}
3082
3083void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3084 HandleFieldGet(instruction, instruction->GetFieldInfo());
3085}
3086
3087void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3088 HandleFieldGet(instruction, instruction->GetFieldInfo());
3089}
3090
3091void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3092 HandleFieldGet(instruction, instruction->GetFieldInfo());
3093}
3094
3095void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3096 HandleFieldGet(instruction, instruction->GetFieldInfo());
3097}
3098
3099void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3100 HandleFieldSet(instruction, instruction->GetFieldInfo());
3101}
3102
3103void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3104 HandleFieldSet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003105}
3106
3107void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003108 LocationSummary* locations =
3109 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravle77520bc2015-01-12 18:45:46 +00003110 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003111 if (instruction->HasUses()) {
3112 locations->SetOut(Location::SameAsFirstInput());
3113 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003114}
3115
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003116void InstructionCodeGeneratorARM::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003117 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3118 return;
3119 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003120 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003121
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003122 __ LoadFromOffset(kLoadWord, IP, obj.AsRegister<Register>(), 0);
3123 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3124}
3125
3126void InstructionCodeGeneratorARM::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003127 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003128 codegen_->AddSlowPath(slow_path);
3129
3130 LocationSummary* locations = instruction->GetLocations();
3131 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003132
Calin Juravle77520bc2015-01-12 18:45:46 +00003133 __ cmp(obj.AsRegister<Register>(), ShifterOperand(0));
3134 __ b(slow_path->GetEntryLabel(), EQ);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003135}
3136
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003137void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
3138 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3139 GenerateImplicitNullCheck(instruction);
3140 } else {
3141 GenerateExplicitNullCheck(instruction);
3142 }
3143}
3144
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003145void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003146 LocationSummary* locations =
3147 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003148 locations->SetInAt(0, Location::RequiresRegister());
3149 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
3150 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003151}
3152
3153void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
3154 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003155 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003156 Location index = locations->InAt(1);
3157
3158 switch (instruction->GetType()) {
3159 case Primitive::kPrimBoolean: {
3160 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003161 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003162 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003163 size_t offset =
3164 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003165 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
3166 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003167 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003168 __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset);
3169 }
3170 break;
3171 }
3172
3173 case Primitive::kPrimByte: {
3174 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003175 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003176 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003177 size_t offset =
3178 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003179 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
3180 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003181 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003182 __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset);
3183 }
3184 break;
3185 }
3186
3187 case Primitive::kPrimShort: {
3188 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003189 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003190 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003191 size_t offset =
3192 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003193 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
3194 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003195 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003196 __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset);
3197 }
3198 break;
3199 }
3200
3201 case Primitive::kPrimChar: {
3202 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003203 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003204 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003205 size_t offset =
3206 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003207 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
3208 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003209 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003210 __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset);
3211 }
3212 break;
3213 }
3214
3215 case Primitive::kPrimInt:
3216 case Primitive::kPrimNot: {
3217 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
3218 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003219 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003220 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003221 size_t offset =
3222 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003223 __ LoadFromOffset(kLoadWord, out, obj, offset);
3224 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003225 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003226 __ LoadFromOffset(kLoadWord, out, IP, data_offset);
3227 }
3228 break;
3229 }
3230
3231 case Primitive::kPrimLong: {
3232 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003233 Location out = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003234 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003235 size_t offset =
3236 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003237 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003238 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003239 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003240 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003241 }
3242 break;
3243 }
3244
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003245 case Primitive::kPrimFloat: {
3246 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3247 Location out = locations->Out();
3248 DCHECK(out.IsFpuRegister());
3249 if (index.IsConstant()) {
3250 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3251 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), obj, offset);
3252 } else {
3253 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3254 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), IP, data_offset);
3255 }
3256 break;
3257 }
3258
3259 case Primitive::kPrimDouble: {
3260 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3261 Location out = locations->Out();
3262 DCHECK(out.IsFpuRegisterPair());
3263 if (index.IsConstant()) {
3264 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3265 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3266 } else {
3267 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3268 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3269 }
3270 break;
3271 }
3272
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003273 case Primitive::kPrimVoid:
3274 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003275 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003276 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003277 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003278}
3279
3280void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003281 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003282
3283 bool needs_write_barrier =
3284 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
3285 bool needs_runtime_call = instruction->NeedsTypeCheck();
3286
Nicolas Geoffray39468442014-09-02 15:17:15 +01003287 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003288 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
3289 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003290 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003291 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3292 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3293 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003294 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003295 locations->SetInAt(0, Location::RequiresRegister());
3296 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
3297 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003298
3299 if (needs_write_barrier) {
3300 // Temporary registers for the write barrier.
3301 locations->AddTemp(Location::RequiresRegister());
3302 locations->AddTemp(Location::RequiresRegister());
3303 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003304 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003305}
3306
3307void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
3308 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003309 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003310 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003311 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003312 bool needs_runtime_call = locations->WillCall();
3313 bool needs_write_barrier =
3314 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003315
3316 switch (value_type) {
3317 case Primitive::kPrimBoolean:
3318 case Primitive::kPrimByte: {
3319 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003320 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003321 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003322 size_t offset =
3323 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003324 __ StoreToOffset(kStoreByte, value, obj, offset);
3325 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003326 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003327 __ StoreToOffset(kStoreByte, value, IP, data_offset);
3328 }
3329 break;
3330 }
3331
3332 case Primitive::kPrimShort:
3333 case Primitive::kPrimChar: {
3334 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003335 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003336 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003337 size_t offset =
3338 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003339 __ StoreToOffset(kStoreHalfword, value, obj, offset);
3340 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003341 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003342 __ StoreToOffset(kStoreHalfword, value, IP, data_offset);
3343 }
3344 break;
3345 }
3346
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003347 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003348 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003349 if (!needs_runtime_call) {
3350 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003351 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003352 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003353 size_t offset =
3354 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003355 __ StoreToOffset(kStoreWord, value, obj, offset);
3356 } else {
3357 DCHECK(index.IsRegister()) << index;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003358 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003359 __ StoreToOffset(kStoreWord, value, IP, data_offset);
3360 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003361 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003362 if (needs_write_barrier) {
3363 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003364 Register temp = locations->GetTemp(0).AsRegister<Register>();
3365 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003366 codegen_->MarkGCCard(temp, card, obj, value);
3367 }
3368 } else {
3369 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain199f3362014-11-27 17:15:16 +00003370 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
3371 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003372 instruction->GetDexPc(),
3373 nullptr);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003374 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003375 break;
3376 }
3377
3378 case Primitive::kPrimLong: {
3379 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003380 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003381 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003382 size_t offset =
3383 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003384 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003385 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003386 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003387 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003388 }
3389 break;
3390 }
3391
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003392 case Primitive::kPrimFloat: {
3393 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3394 Location value = locations->InAt(2);
3395 DCHECK(value.IsFpuRegister());
3396 if (index.IsConstant()) {
3397 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3398 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), obj, offset);
3399 } else {
3400 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3401 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), IP, data_offset);
3402 }
3403 break;
3404 }
3405
3406 case Primitive::kPrimDouble: {
3407 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3408 Location value = locations->InAt(2);
3409 DCHECK(value.IsFpuRegisterPair());
3410 if (index.IsConstant()) {
3411 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3412 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3413 } else {
3414 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3415 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3416 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003417
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003418 break;
3419 }
3420
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003421 case Primitive::kPrimVoid:
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003422 LOG(FATAL) << "Unreachable type " << value_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003423 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003424 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003425
3426 // Ints and objects are handled in the switch.
3427 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
3428 codegen_->MaybeRecordImplicitNullCheck(instruction);
3429 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003430}
3431
3432void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003433 LocationSummary* locations =
3434 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003435 locations->SetInAt(0, Location::RequiresRegister());
3436 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003437}
3438
3439void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
3440 LocationSummary* locations = instruction->GetLocations();
3441 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003442 Register obj = locations->InAt(0).AsRegister<Register>();
3443 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003444 __ LoadFromOffset(kLoadWord, out, obj, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003445 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003446}
3447
3448void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003449 LocationSummary* locations =
3450 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003451 locations->SetInAt(0, Location::RequiresRegister());
3452 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003453 if (instruction->HasUses()) {
3454 locations->SetOut(Location::SameAsFirstInput());
3455 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003456}
3457
3458void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
3459 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003460 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(
Nicolas Geoffray39468442014-09-02 15:17:15 +01003461 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003462 codegen_->AddSlowPath(slow_path);
3463
Roland Levillain271ab9c2014-11-27 15:23:57 +00003464 Register index = locations->InAt(0).AsRegister<Register>();
3465 Register length = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003466
3467 __ cmp(index, ShifterOperand(length));
3468 __ b(slow_path->GetEntryLabel(), CS);
3469}
3470
3471void CodeGeneratorARM::MarkGCCard(Register temp, Register card, Register object, Register value) {
3472 Label is_null;
3473 __ CompareAndBranchIfZero(value, &is_null);
3474 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value());
3475 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
3476 __ strb(card, Address(card, temp));
3477 __ Bind(&is_null);
3478}
3479
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003480void LocationsBuilderARM::VisitTemporary(HTemporary* temp) {
3481 temp->SetLocations(nullptr);
3482}
3483
3484void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp) {
3485 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003486 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003487}
3488
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003489void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003490 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003491 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003492}
3493
3494void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003495 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3496}
3497
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003498void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
3499 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3500}
3501
3502void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003503 HBasicBlock* block = instruction->GetBlock();
3504 if (block->GetLoopInformation() != nullptr) {
3505 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3506 // The back edge will generate the suspend check.
3507 return;
3508 }
3509 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3510 // The goto will generate the suspend check.
3511 return;
3512 }
3513 GenerateSuspendCheck(instruction, nullptr);
3514}
3515
3516void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
3517 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003518 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003519 new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003520 codegen_->AddSlowPath(slow_path);
3521
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003522 __ LoadFromOffset(
3523 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value());
3524 __ cmp(IP, ShifterOperand(0));
3525 // TODO: Figure out the branch offsets and use cbz/cbnz.
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003526 if (successor == nullptr) {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003527 __ b(slow_path->GetEntryLabel(), NE);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003528 __ Bind(slow_path->GetReturnLabel());
3529 } else {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003530 __ b(codegen_->GetLabelOf(successor), EQ);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003531 __ b(slow_path->GetEntryLabel());
3532 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003533}
3534
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003535ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
3536 return codegen_->GetAssembler();
3537}
3538
3539void ParallelMoveResolverARM::EmitMove(size_t index) {
3540 MoveOperands* move = moves_.Get(index);
3541 Location source = move->GetSource();
3542 Location destination = move->GetDestination();
3543
3544 if (source.IsRegister()) {
3545 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003546 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003547 } else {
3548 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003549 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003550 SP, destination.GetStackIndex());
3551 }
3552 } else if (source.IsStackSlot()) {
3553 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003554 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003555 SP, source.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003556 } else if (destination.IsFpuRegister()) {
3557 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003558 } else {
3559 DCHECK(destination.IsStackSlot());
3560 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
3561 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3562 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003563 } else if (source.IsFpuRegister()) {
3564 if (destination.IsFpuRegister()) {
3565 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003566 } else {
3567 DCHECK(destination.IsStackSlot());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003568 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
3569 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003570 } else if (source.IsDoubleStackSlot()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003571 if (destination.IsDoubleStackSlot()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003572 __ LoadDFromOffset(DTMP, SP, source.GetStackIndex());
3573 __ StoreDToOffset(DTMP, SP, destination.GetStackIndex());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003574 } else if (destination.IsRegisterPair()) {
3575 DCHECK(ExpectedPairLayout(destination));
3576 __ LoadFromOffset(
3577 kLoadWordPair, destination.AsRegisterPairLow<Register>(), SP, source.GetStackIndex());
3578 } else {
3579 DCHECK(destination.IsFpuRegisterPair()) << destination;
3580 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3581 SP,
3582 source.GetStackIndex());
3583 }
3584 } else if (source.IsRegisterPair()) {
3585 if (destination.IsRegisterPair()) {
3586 __ Mov(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
3587 __ Mov(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
3588 } else {
3589 DCHECK(destination.IsDoubleStackSlot()) << destination;
3590 DCHECK(ExpectedPairLayout(source));
3591 __ StoreToOffset(
3592 kStoreWordPair, source.AsRegisterPairLow<Register>(), SP, destination.GetStackIndex());
3593 }
3594 } else if (source.IsFpuRegisterPair()) {
3595 if (destination.IsFpuRegisterPair()) {
3596 __ vmovd(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3597 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
3598 } else {
3599 DCHECK(destination.IsDoubleStackSlot()) << destination;
3600 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
3601 SP,
3602 destination.GetStackIndex());
3603 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003604 } else {
3605 DCHECK(source.IsConstant()) << source;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003606 HConstant* constant = source.GetConstant();
3607 if (constant->IsIntConstant() || constant->IsNullConstant()) {
3608 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003609 if (destination.IsRegister()) {
3610 __ LoadImmediate(destination.AsRegister<Register>(), value);
3611 } else {
3612 DCHECK(destination.IsStackSlot());
3613 __ LoadImmediate(IP, value);
3614 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3615 }
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003616 } else if (constant->IsLongConstant()) {
3617 int64_t value = constant->AsLongConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003618 if (destination.IsRegisterPair()) {
3619 __ LoadImmediate(destination.AsRegisterPairLow<Register>(), Low32Bits(value));
3620 __ LoadImmediate(destination.AsRegisterPairHigh<Register>(), High32Bits(value));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003621 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003622 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003623 __ LoadImmediate(IP, Low32Bits(value));
3624 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3625 __ LoadImmediate(IP, High32Bits(value));
3626 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3627 }
3628 } else if (constant->IsDoubleConstant()) {
3629 double value = constant->AsDoubleConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003630 if (destination.IsFpuRegisterPair()) {
3631 __ LoadDImmediate(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003632 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003633 DCHECK(destination.IsDoubleStackSlot()) << destination;
3634 uint64_t int_value = bit_cast<uint64_t, double>(value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003635 __ LoadImmediate(IP, Low32Bits(int_value));
3636 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3637 __ LoadImmediate(IP, High32Bits(int_value));
3638 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3639 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003640 } else {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003641 DCHECK(constant->IsFloatConstant()) << constant->DebugName();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003642 float value = constant->AsFloatConstant()->GetValue();
3643 if (destination.IsFpuRegister()) {
3644 __ LoadSImmediate(destination.AsFpuRegister<SRegister>(), value);
3645 } else {
3646 DCHECK(destination.IsStackSlot());
3647 __ LoadImmediate(IP, bit_cast<int32_t, float>(value));
3648 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3649 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003650 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003651 }
3652}
3653
3654void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
3655 __ Mov(IP, reg);
3656 __ LoadFromOffset(kLoadWord, reg, SP, mem);
3657 __ StoreToOffset(kStoreWord, IP, SP, mem);
3658}
3659
3660void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
3661 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
3662 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
3663 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
3664 SP, mem1 + stack_offset);
3665 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
3666 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
3667 SP, mem2 + stack_offset);
3668 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
3669}
3670
3671void ParallelMoveResolverARM::EmitSwap(size_t index) {
3672 MoveOperands* move = moves_.Get(index);
3673 Location source = move->GetSource();
3674 Location destination = move->GetDestination();
3675
3676 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003677 DCHECK_NE(source.AsRegister<Register>(), IP);
3678 DCHECK_NE(destination.AsRegister<Register>(), IP);
3679 __ Mov(IP, source.AsRegister<Register>());
3680 __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>());
3681 __ Mov(destination.AsRegister<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003682 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003683 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003684 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003685 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003686 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
3687 Exchange(source.GetStackIndex(), destination.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003688 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003689 __ vmovrs(IP, source.AsFpuRegister<SRegister>());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003690 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>());
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003691 __ vmovsr(destination.AsFpuRegister<SRegister>(), IP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003692 } else if (source.IsRegisterPair() && destination.IsRegisterPair()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003693 __ vmovdrr(DTMP, source.AsRegisterPairLow<Register>(), source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003694 __ Mov(source.AsRegisterPairLow<Register>(), destination.AsRegisterPairLow<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003695 __ Mov(source.AsRegisterPairHigh<Register>(), destination.AsRegisterPairHigh<Register>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003696 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
3697 destination.AsRegisterPairHigh<Register>(),
3698 DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003699 } else if (source.IsRegisterPair() || destination.IsRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003700 Register low_reg = source.IsRegisterPair()
3701 ? source.AsRegisterPairLow<Register>()
3702 : destination.AsRegisterPairLow<Register>();
3703 int mem = source.IsRegisterPair()
3704 ? destination.GetStackIndex()
3705 : source.GetStackIndex();
3706 DCHECK(ExpectedPairLayout(source.IsRegisterPair() ? source : destination));
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003707 __ vmovdrr(DTMP, low_reg, static_cast<Register>(low_reg + 1));
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003708 __ LoadFromOffset(kLoadWordPair, low_reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003709 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003710 } else if (source.IsFpuRegisterPair() && destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003711 DRegister first = FromLowSToD(source.AsFpuRegisterPairLow<SRegister>());
3712 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003713 __ vmovd(DTMP, first);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003714 __ vmovd(first, second);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003715 __ vmovd(second, DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003716 } else if (source.IsFpuRegisterPair() || destination.IsFpuRegisterPair()) {
3717 DRegister reg = source.IsFpuRegisterPair()
3718 ? FromLowSToD(source.AsFpuRegisterPairLow<SRegister>())
3719 : FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
3720 int mem = source.IsFpuRegisterPair()
3721 ? destination.GetStackIndex()
3722 : source.GetStackIndex();
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003723 __ vmovd(DTMP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003724 __ LoadDFromOffset(reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003725 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003726 } else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
3727 SRegister reg = source.IsFpuRegister() ? source.AsFpuRegister<SRegister>()
3728 : destination.AsFpuRegister<SRegister>();
3729 int mem = source.IsFpuRegister()
3730 ? destination.GetStackIndex()
3731 : source.GetStackIndex();
3732
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003733 __ vmovrs(IP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003734 __ LoadSFromOffset(reg, SP, mem);
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003735 __ StoreToOffset(kStoreWord, IP, SP, mem);
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003736 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003737 Exchange(source.GetStackIndex(), destination.GetStackIndex());
3738 Exchange(source.GetHighStackIndex(kArmWordSize), destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003739 } else {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003740 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003741 }
3742}
3743
3744void ParallelMoveResolverARM::SpillScratch(int reg) {
3745 __ Push(static_cast<Register>(reg));
3746}
3747
3748void ParallelMoveResolverARM::RestoreScratch(int reg) {
3749 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003750}
3751
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003752void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003753 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3754 ? LocationSummary::kCallOnSlowPath
3755 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003756 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003757 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003758 locations->SetOut(Location::RequiresRegister());
3759}
3760
3761void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003762 Register out = cls->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003763 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003764 DCHECK(!cls->CanCallRuntime());
3765 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003766 codegen_->LoadCurrentMethod(out);
3767 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3768 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003769 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003770 codegen_->LoadCurrentMethod(out);
3771 __ LoadFromOffset(
3772 kLoadWord, out, out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value());
3773 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003774
3775 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3776 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3777 codegen_->AddSlowPath(slow_path);
3778 __ cmp(out, ShifterOperand(0));
3779 __ b(slow_path->GetEntryLabel(), EQ);
3780 if (cls->MustGenerateClinitCheck()) {
3781 GenerateClassInitializationCheck(slow_path, out);
3782 } else {
3783 __ Bind(slow_path->GetExitLabel());
3784 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003785 }
3786}
3787
3788void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
3789 LocationSummary* locations =
3790 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3791 locations->SetInAt(0, Location::RequiresRegister());
3792 if (check->HasUses()) {
3793 locations->SetOut(Location::SameAsFirstInput());
3794 }
3795}
3796
3797void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003798 // We assume the class is not null.
3799 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3800 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003801 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00003802 GenerateClassInitializationCheck(slow_path,
3803 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003804}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003805
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003806void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
3807 SlowPathCodeARM* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003808 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
3809 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
3810 __ b(slow_path->GetEntryLabel(), LT);
3811 // Even if the initialized flag is set, we may be in a situation where caches are not synced
3812 // properly. Therefore, we do a memory fence.
3813 __ dmb(ISH);
3814 __ Bind(slow_path->GetExitLabel());
3815}
3816
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003817void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
3818 LocationSummary* locations =
3819 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3820 locations->SetOut(Location::RequiresRegister());
3821}
3822
3823void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
3824 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
3825 codegen_->AddSlowPath(slow_path);
3826
Roland Levillain271ab9c2014-11-27 15:23:57 +00003827 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003828 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08003829 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3830 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003831 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
3832 __ cmp(out, ShifterOperand(0));
3833 __ b(slow_path->GetEntryLabel(), EQ);
3834 __ Bind(slow_path->GetExitLabel());
3835}
3836
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003837void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
3838 LocationSummary* locations =
3839 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3840 locations->SetOut(Location::RequiresRegister());
3841}
3842
3843void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003844 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003845 int32_t offset = Thread::ExceptionOffset<kArmWordSize>().Int32Value();
3846 __ LoadFromOffset(kLoadWord, out, TR, offset);
3847 __ LoadImmediate(IP, 0);
3848 __ StoreToOffset(kStoreWord, IP, TR, offset);
3849}
3850
3851void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
3852 LocationSummary* locations =
3853 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3854 InvokeRuntimeCallingConvention calling_convention;
3855 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3856}
3857
3858void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
3859 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003860 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003861}
3862
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003863void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003864 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
3865 ? LocationSummary::kNoCall
3866 : LocationSummary::kCallOnSlowPath;
3867 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3868 locations->SetInAt(0, Location::RequiresRegister());
3869 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003870 // The out register is used as a temporary, so it overlaps with the inputs.
3871 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003872}
3873
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003874void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003875 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003876 Register obj = locations->InAt(0).AsRegister<Register>();
3877 Register cls = locations->InAt(1).AsRegister<Register>();
3878 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003879 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3880 Label done, zero;
3881 SlowPathCodeARM* slow_path = nullptr;
3882
3883 // Return 0 if `obj` is null.
3884 // TODO: avoid this check if we know obj is not null.
3885 __ cmp(obj, ShifterOperand(0));
3886 __ b(&zero, EQ);
3887 // Compare the class of `obj` with `cls`.
3888 __ LoadFromOffset(kLoadWord, out, obj, class_offset);
3889 __ cmp(out, ShifterOperand(cls));
3890 if (instruction->IsClassFinal()) {
3891 // Classes must be equal for the instanceof to succeed.
3892 __ b(&zero, NE);
3893 __ LoadImmediate(out, 1);
3894 __ b(&done);
3895 } else {
3896 // If the classes are not equal, we go into a slow path.
3897 DCHECK(locations->OnlyCallsOnSlowPath());
3898 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003899 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003900 codegen_->AddSlowPath(slow_path);
3901 __ b(slow_path->GetEntryLabel(), NE);
3902 __ LoadImmediate(out, 1);
3903 __ b(&done);
3904 }
3905 __ Bind(&zero);
3906 __ LoadImmediate(out, 0);
3907 if (slow_path != nullptr) {
3908 __ Bind(slow_path->GetExitLabel());
3909 }
3910 __ Bind(&done);
3911}
3912
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003913void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
3914 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3915 instruction, LocationSummary::kCallOnSlowPath);
3916 locations->SetInAt(0, Location::RequiresRegister());
3917 locations->SetInAt(1, Location::RequiresRegister());
3918 locations->AddTemp(Location::RequiresRegister());
3919}
3920
3921void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
3922 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003923 Register obj = locations->InAt(0).AsRegister<Register>();
3924 Register cls = locations->InAt(1).AsRegister<Register>();
3925 Register temp = locations->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003926 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3927
3928 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
3929 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
3930 codegen_->AddSlowPath(slow_path);
3931
3932 // TODO: avoid this check if we know obj is not null.
3933 __ cmp(obj, ShifterOperand(0));
3934 __ b(slow_path->GetExitLabel(), EQ);
3935 // Compare the class of `obj` with `cls`.
3936 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
3937 __ cmp(temp, ShifterOperand(cls));
3938 __ b(slow_path->GetEntryLabel(), NE);
3939 __ Bind(slow_path->GetExitLabel());
3940}
3941
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003942void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3943 LocationSummary* locations =
3944 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3945 InvokeRuntimeCallingConvention calling_convention;
3946 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3947}
3948
3949void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3950 codegen_->InvokeRuntime(instruction->IsEnter()
3951 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3952 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003953 instruction->GetDexPc(),
3954 nullptr);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003955}
3956
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003957void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
3958void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
3959void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
3960
3961void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
3962 LocationSummary* locations =
3963 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3964 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
3965 || instruction->GetResultType() == Primitive::kPrimLong);
3966 locations->SetInAt(0, Location::RequiresRegister());
3967 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003968 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003969}
3970
3971void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
3972 HandleBitwiseOperation(instruction);
3973}
3974
3975void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
3976 HandleBitwiseOperation(instruction);
3977}
3978
3979void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
3980 HandleBitwiseOperation(instruction);
3981}
3982
3983void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
3984 LocationSummary* locations = instruction->GetLocations();
3985
3986 if (instruction->GetResultType() == Primitive::kPrimInt) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003987 Register first = locations->InAt(0).AsRegister<Register>();
3988 Register second = locations->InAt(1).AsRegister<Register>();
3989 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003990 if (instruction->IsAnd()) {
3991 __ and_(out, first, ShifterOperand(second));
3992 } else if (instruction->IsOr()) {
3993 __ orr(out, first, ShifterOperand(second));
3994 } else {
3995 DCHECK(instruction->IsXor());
3996 __ eor(out, first, ShifterOperand(second));
3997 }
3998 } else {
3999 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
4000 Location first = locations->InAt(0);
4001 Location second = locations->InAt(1);
4002 Location out = locations->Out();
4003 if (instruction->IsAnd()) {
4004 __ and_(out.AsRegisterPairLow<Register>(),
4005 first.AsRegisterPairLow<Register>(),
4006 ShifterOperand(second.AsRegisterPairLow<Register>()));
4007 __ and_(out.AsRegisterPairHigh<Register>(),
4008 first.AsRegisterPairHigh<Register>(),
4009 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4010 } else if (instruction->IsOr()) {
4011 __ orr(out.AsRegisterPairLow<Register>(),
4012 first.AsRegisterPairLow<Register>(),
4013 ShifterOperand(second.AsRegisterPairLow<Register>()));
4014 __ orr(out.AsRegisterPairHigh<Register>(),
4015 first.AsRegisterPairHigh<Register>(),
4016 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4017 } else {
4018 DCHECK(instruction->IsXor());
4019 __ eor(out.AsRegisterPairLow<Register>(),
4020 first.AsRegisterPairLow<Register>(),
4021 ShifterOperand(second.AsRegisterPairLow<Register>()));
4022 __ eor(out.AsRegisterPairHigh<Register>(),
4023 first.AsRegisterPairHigh<Register>(),
4024 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4025 }
4026 }
4027}
4028
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004029void CodeGeneratorARM::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Register temp) {
4030 DCHECK_EQ(temp, kArtMethodRegister);
4031
4032 // TODO: Implement all kinds of calls:
4033 // 1) boot -> boot
4034 // 2) app -> boot
4035 // 3) app -> app
4036 //
4037 // Currently we implement the app -> app logic, which looks up in the resolve cache.
4038
4039 // temp = method;
4040 LoadCurrentMethod(temp);
4041 if (!invoke->IsRecursive()) {
4042 // temp = temp->dex_cache_resolved_methods_;
4043 __ LoadFromOffset(
4044 kLoadWord, temp, temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value());
4045 // temp = temp[index_in_cache]
4046 __ LoadFromOffset(
4047 kLoadWord, temp, temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex()));
4048 // LR = temp[offset_of_quick_compiled_code]
4049 __ LoadFromOffset(kLoadWord, LR, temp,
4050 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
4051 kArmWordSize).Int32Value());
4052 // LR()
4053 __ blx(LR);
4054 } else {
4055 __ bl(GetFrameEntryLabel());
4056 }
4057
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004058 DCHECK(!IsLeafMethod());
4059}
4060
Calin Juravleb1498f62015-02-16 13:13:29 +00004061void LocationsBuilderARM::VisitBoundType(HBoundType* instruction) {
4062 // Nothing to do, this should be removed during prepare for register allocator.
4063 UNUSED(instruction);
4064 LOG(FATAL) << "Unreachable";
4065}
4066
4067void InstructionCodeGeneratorARM::VisitBoundType(HBoundType* instruction) {
4068 // Nothing to do, this should be removed during prepare for register allocator.
4069 UNUSED(instruction);
4070 LOG(FATAL) << "Unreachable";
4071}
4072
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00004073} // namespace arm
4074} // namespace art