blob: f56e446605500871f3fbf4196237c961ea9d6dad [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
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100115 HBasicBlock* GetSuccessor() const {
116 return successor_;
117 }
118
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000119 private:
120 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100121 // If not null, the block to branch to after the suspend check.
122 HBasicBlock* const successor_;
123
124 // If `successor_` is null, the label to branch to after the suspend check.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000125 Label return_label_;
126
127 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM);
128};
129
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100130class BoundsCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100131 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100132 BoundsCheckSlowPathARM(HBoundsCheck* instruction,
133 Location index_location,
134 Location length_location)
Nicolas Geoffray39468442014-09-02 15:17:15 +0100135 : instruction_(instruction),
136 index_location_(index_location),
137 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100138
Alexandre Rames67555f72014-11-18 10:55:16 +0000139 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100140 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100141 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000142 // We're moving two locations to locations that could overlap, so we need a parallel
143 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100144 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000145 codegen->EmitParallelMoves(
146 index_location_,
147 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100148 Primitive::kPrimInt,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000149 length_location_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100150 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
151 Primitive::kPrimInt);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100152 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000153 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100154 }
155
156 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100157 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100158 const Location index_location_;
159 const Location length_location_;
160
161 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM);
162};
163
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000164class LoadClassSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100165 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000166 LoadClassSlowPathARM(HLoadClass* cls,
167 HInstruction* at,
168 uint32_t dex_pc,
169 bool do_clinit)
170 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
171 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
172 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100173
Alexandre Rames67555f72014-11-18 10:55:16 +0000174 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000175 LocationSummary* locations = at_->GetLocations();
176
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100177 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
178 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000179 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100180
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100181 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000182 __ LoadImmediate(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex());
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000183 int32_t entry_point_offset = do_clinit_
184 ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
185 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000186 arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000187
188 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000189 Location out = locations->Out();
190 if (out.IsValid()) {
191 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000192 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
193 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000194 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100195 __ b(GetExitLabel());
196 }
197
198 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000199 // The class this slow path will load.
200 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100201
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000202 // The instruction where this slow path is happening.
203 // (Might be the load class or an initialization check).
204 HInstruction* const at_;
205
206 // The dex PC of `at_`.
207 const uint32_t dex_pc_;
208
209 // Whether to initialize the class.
210 const bool do_clinit_;
211
212 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100213};
214
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000215class LoadStringSlowPathARM : public SlowPathCodeARM {
216 public:
217 explicit LoadStringSlowPathARM(HLoadString* instruction) : instruction_(instruction) {}
218
Alexandre Rames67555f72014-11-18 10:55:16 +0000219 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000220 LocationSummary* locations = instruction_->GetLocations();
221 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
222
223 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
224 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000225 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000226
227 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800228 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction_->GetStringIndex());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000229 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000230 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000231 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
232
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000233 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000234 __ b(GetExitLabel());
235 }
236
237 private:
238 HLoadString* const instruction_;
239
240 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM);
241};
242
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000243class TypeCheckSlowPathARM : public SlowPathCodeARM {
244 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000245 TypeCheckSlowPathARM(HInstruction* instruction,
246 Location class_to_check,
247 Location object_class,
248 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000249 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000250 class_to_check_(class_to_check),
251 object_class_(object_class),
252 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000253
Alexandre Rames67555f72014-11-18 10:55:16 +0000254 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000255 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000256 DCHECK(instruction_->IsCheckCast()
257 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000258
259 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
260 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000261 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000262
263 // We're moving two locations to locations that could overlap, so we need a parallel
264 // move resolver.
265 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000266 codegen->EmitParallelMoves(
267 class_to_check_,
268 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100269 Primitive::kPrimNot,
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000270 object_class_,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100271 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
272 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000273
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000274 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000275 arm_codegen->InvokeRuntime(
276 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_, this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000277 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
278 } else {
279 DCHECK(instruction_->IsCheckCast());
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000280 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_, this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000281 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000282
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000283 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000284 __ b(GetExitLabel());
285 }
286
287 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000288 HInstruction* const instruction_;
289 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000290 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000291 uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000292
293 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM);
294};
295
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700296class DeoptimizationSlowPathARM : public SlowPathCodeARM {
297 public:
298 explicit DeoptimizationSlowPathARM(HInstruction* instruction)
299 : instruction_(instruction) {}
300
301 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
302 __ Bind(GetEntryLabel());
303 SaveLiveRegisters(codegen, instruction_->GetLocations());
304 DCHECK(instruction_->IsDeoptimize());
305 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
306 uint32_t dex_pc = deoptimize->GetDexPc();
307 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
308 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
309 }
310
311 private:
312 HInstruction* const instruction_;
313 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM);
314};
315
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000316#undef __
317
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100318#undef __
319#define __ reinterpret_cast<ArmAssembler*>(GetAssembler())->
Dave Allison20dfc792014-06-16 20:44:29 -0700320
321inline Condition ARMCondition(IfCondition cond) {
322 switch (cond) {
323 case kCondEQ: return EQ;
324 case kCondNE: return NE;
325 case kCondLT: return LT;
326 case kCondLE: return LE;
327 case kCondGT: return GT;
328 case kCondGE: return GE;
329 default:
330 LOG(FATAL) << "Unknown if condition";
331 }
332 return EQ; // Unreachable.
333}
334
335inline Condition ARMOppositeCondition(IfCondition cond) {
336 switch (cond) {
337 case kCondEQ: return NE;
338 case kCondNE: return EQ;
339 case kCondLT: return GE;
340 case kCondLE: return GT;
341 case kCondGT: return LE;
342 case kCondGE: return LT;
343 default:
344 LOG(FATAL) << "Unknown if condition";
345 }
346 return EQ; // Unreachable.
347}
348
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100349void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const {
350 stream << ArmManagedRegister::FromCoreRegister(Register(reg));
351}
352
353void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000354 stream << ArmManagedRegister::FromSRegister(SRegister(reg));
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100355}
356
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100357size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
358 __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index);
359 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100360}
361
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100362size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
363 __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index);
364 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100365}
366
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000367size_t CodeGeneratorARM::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
368 __ StoreSToOffset(static_cast<SRegister>(reg_id), SP, stack_index);
369 return kArmWordSize;
370}
371
372size_t CodeGeneratorARM::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
373 __ LoadSFromOffset(static_cast<SRegister>(reg_id), SP, stack_index);
374 return kArmWordSize;
375}
376
Calin Juravle34166012014-12-19 17:22:29 +0000377CodeGeneratorARM::CodeGeneratorARM(HGraph* graph,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000378 const ArmInstructionSetFeatures& isa_features,
379 const CompilerOptions& compiler_options)
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000380 : CodeGenerator(graph,
381 kNumberOfCoreRegisters,
382 kNumberOfSRegisters,
383 kNumberOfRegisterPairs,
384 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
385 arraysize(kCoreCalleeSaves)),
386 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
387 arraysize(kFpuCalleeSaves)),
388 compiler_options),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100389 block_labels_(graph->GetArena(), 0),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100390 location_builder_(graph, this),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100391 instruction_visitor_(graph, this),
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100392 move_resolver_(graph->GetArena(), this),
Calin Juravle34166012014-12-19 17:22:29 +0000393 assembler_(true),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000394 isa_features_(isa_features) {
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000395 // Save the PC register to mimic Quick.
396 AddAllocatedRegister(Location::RegisterLocation(PC));
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100397}
398
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100399Location CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100400 switch (type) {
401 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100402 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100403 ArmManagedRegister pair =
404 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100405 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
406 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
407
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100408 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
409 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100410 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100411 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100412 }
413
414 case Primitive::kPrimByte:
415 case Primitive::kPrimBoolean:
416 case Primitive::kPrimChar:
417 case Primitive::kPrimShort:
418 case Primitive::kPrimInt:
419 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100420 int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100421 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100422 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
423 ArmManagedRegister current =
424 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
425 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100426 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100427 }
428 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100429 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100430 }
431
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000432 case Primitive::kPrimFloat: {
433 int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfSRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100434 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100435 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100436
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000437 case Primitive::kPrimDouble: {
Nicolas Geoffray3c035032014-10-28 10:46:40 +0000438 int reg = FindTwoFreeConsecutiveAlignedEntries(blocked_fpu_registers_, kNumberOfSRegisters);
439 DCHECK_EQ(reg % 2, 0);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000440 return Location::FpuRegisterPairLocation(reg, reg + 1);
441 }
442
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100443 case Primitive::kPrimVoid:
444 LOG(FATAL) << "Unreachable type " << type;
445 }
446
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100447 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100448}
449
Nicolas Geoffraya0bb2bd2015-01-26 12:49:35 +0000450void CodeGeneratorARM::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100451 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100452 blocked_register_pairs_[R1_R2] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100453
454 // Stack register, LR and PC are always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100455 blocked_core_registers_[SP] = true;
456 blocked_core_registers_[LR] = true;
457 blocked_core_registers_[PC] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100458
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100459 // Reserve thread register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100460 blocked_core_registers_[TR] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100461
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100462 // Reserve temp register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100463 blocked_core_registers_[IP] = true;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100464
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000465 if (is_baseline) {
466 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
467 blocked_core_registers_[kCoreCalleeSaves[i]] = true;
468 }
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +0000469
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000470 blocked_core_registers_[kCoreSavedRegisterForBaseline] = false;
471
472 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
473 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
474 }
475 }
Calin Juravle34bacdf2014-10-07 20:23:36 +0100476
477 UpdateBlockedPairRegisters();
478}
479
480void CodeGeneratorARM::UpdateBlockedPairRegisters() const {
481 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
482 ArmManagedRegister current =
483 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
484 if (blocked_core_registers_[current.AsRegisterPairLow()]
485 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
486 blocked_register_pairs_[i] = true;
487 }
488 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100489}
490
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100491InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen)
492 : HGraphVisitor(graph),
493 assembler_(codegen->GetAssembler()),
494 codegen_(codegen) {}
495
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000496static uint32_t LeastSignificantBit(uint32_t mask) {
497 // ffs starts at 1.
498 return ffs(mask) - 1;
499}
500
501void CodeGeneratorARM::ComputeSpillMask() {
502 core_spill_mask_ = allocated_registers_.GetCoreRegisters() & core_callee_save_mask_;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000503 // Save one extra register for baseline. Note that on thumb2, there is no easy
504 // instruction to restore just the PC, so this actually helps both baseline
505 // and non-baseline to save and restore at least two registers at entry and exit.
506 core_spill_mask_ |= (1 << kCoreSavedRegisterForBaseline);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000507 DCHECK_NE(core_spill_mask_, 0u) << "At least the return address register must be saved";
508 fpu_spill_mask_ = allocated_registers_.GetFloatingPointRegisters() & fpu_callee_save_mask_;
509 // We use vpush and vpop for saving and restoring floating point registers, which take
510 // a SRegister and the number of registers to save/restore after that SRegister. We
511 // therefore update the `fpu_spill_mask_` to also contain those registers not allocated,
512 // but in the range.
513 if (fpu_spill_mask_ != 0) {
514 uint32_t least_significant_bit = LeastSignificantBit(fpu_spill_mask_);
515 uint32_t most_significant_bit = MostSignificantBit(fpu_spill_mask_);
516 for (uint32_t i = least_significant_bit + 1 ; i < most_significant_bit; ++i) {
517 fpu_spill_mask_ |= (1 << i);
518 }
519 }
520}
521
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100522static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100523 return dwarf::Reg::ArmCore(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100524}
525
526static dwarf::Reg DWARFReg(SRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100527 return dwarf::Reg::ArmFp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100528}
529
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000530void CodeGeneratorARM::GenerateFrameEntry() {
Roland Levillain199f3362014-11-27 17:15:16 +0000531 bool skip_overflow_check =
532 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000533 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000534 __ Bind(&frame_entry_label_);
535
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000536 if (HasEmptyFrame()) {
537 return;
538 }
539
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100540 if (!skip_overflow_check) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000541 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
542 __ LoadFromOffset(kLoadWord, IP, IP, 0);
543 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100544 }
545
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000546 // PC is in the list of callee-save to mimic Quick, but we need to push
547 // LR at entry instead.
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100548 uint32_t push_mask = (core_spill_mask_ & (~(1 << PC))) | 1 << LR;
549 __ PushList(push_mask);
550 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(push_mask));
David Srbecky9d8606d2015-04-12 09:35:32 +0100551 __ cfi().RelOffsetForMany(DWARFReg(R0), 0, push_mask, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000552 if (fpu_spill_mask_ != 0) {
553 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
554 __ vpushs(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100555 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(fpu_spill_mask_));
David Srbecky9d8606d2015-04-12 09:35:32 +0100556 __ cfi().RelOffsetForMany(DWARFReg(S0), 0, fpu_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000557 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100558 int adjust = GetFrameSize() - FrameEntrySpillSize();
559 __ AddConstant(SP, -adjust);
560 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100561 __ StoreToOffset(kStoreWord, R0, SP, 0);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000562}
563
564void CodeGeneratorARM::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000565 if (HasEmptyFrame()) {
566 __ bx(LR);
567 return;
568 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100569 __ cfi().RememberState();
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100570 int adjust = GetFrameSize() - FrameEntrySpillSize();
571 __ AddConstant(SP, adjust);
572 __ cfi().AdjustCFAOffset(-adjust);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000573 if (fpu_spill_mask_ != 0) {
574 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
575 __ vpops(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100576 __ cfi().AdjustCFAOffset(-kArmPointerSize * POPCOUNT(fpu_spill_mask_));
577 __ cfi().RestoreMany(DWARFReg(SRegister(0)), fpu_spill_mask_);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000578 }
579 __ PopList(core_spill_mask_);
David Srbeckyc34dc932015-04-12 09:27:43 +0100580 __ cfi().RestoreState();
581 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000582}
583
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100584void CodeGeneratorARM::Bind(HBasicBlock* block) {
585 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000586}
587
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100588Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
589 switch (load->GetType()) {
590 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100591 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100592 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100593
594 case Primitive::kPrimInt:
595 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100596 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100597 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100598
599 case Primitive::kPrimBoolean:
600 case Primitive::kPrimByte:
601 case Primitive::kPrimChar:
602 case Primitive::kPrimShort:
603 case Primitive::kPrimVoid:
604 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700605 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100606 }
607
608 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700609 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100610}
611
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100612Location InvokeDexCallingConventionVisitorARM::GetNextLocation(Primitive::Type type) {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100613 switch (type) {
614 case Primitive::kPrimBoolean:
615 case Primitive::kPrimByte:
616 case Primitive::kPrimChar:
617 case Primitive::kPrimShort:
618 case Primitive::kPrimInt:
619 case Primitive::kPrimNot: {
620 uint32_t index = gp_index_++;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000621 uint32_t stack_index = stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100622 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100623 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100624 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000625 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100626 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100627 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100628
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000629 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100630 uint32_t index = gp_index_;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000631 uint32_t stack_index = stack_index_;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100632 gp_index_ += 2;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000633 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100634 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000635 if (calling_convention.GetRegisterAt(index) == R1) {
636 // Skip R1, and use R2_R3 instead.
637 gp_index_++;
638 index++;
639 }
640 }
641 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
642 DCHECK_EQ(calling_convention.GetRegisterAt(index) + 1,
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000643 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000644 return Location::RegisterPairLocation(calling_convention.GetRegisterAt(index),
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000645 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100646 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000647 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
648 }
649 }
650
651 case Primitive::kPrimFloat: {
652 uint32_t stack_index = stack_index_++;
653 if (float_index_ % 2 == 0) {
654 float_index_ = std::max(double_index_, float_index_);
655 }
656 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) {
657 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++));
658 } else {
659 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
660 }
661 }
662
663 case Primitive::kPrimDouble: {
664 double_index_ = std::max(double_index_, RoundUp(float_index_, 2));
665 uint32_t stack_index = stack_index_;
666 stack_index_ += 2;
667 if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) {
668 uint32_t index = double_index_;
669 double_index_ += 2;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000670 Location result = Location::FpuRegisterPairLocation(
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000671 calling_convention.GetFpuRegisterAt(index),
672 calling_convention.GetFpuRegisterAt(index + 1));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000673 DCHECK(ExpectedPairLayout(result));
674 return result;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000675 } else {
676 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100677 }
678 }
679
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100680 case Primitive::kPrimVoid:
681 LOG(FATAL) << "Unexpected parameter type " << type;
682 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100683 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100684 return Location();
685}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100686
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100687Location InvokeDexCallingConventionVisitorARM::GetReturnLocation(Primitive::Type type) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000688 switch (type) {
689 case Primitive::kPrimBoolean:
690 case Primitive::kPrimByte:
691 case Primitive::kPrimChar:
692 case Primitive::kPrimShort:
693 case Primitive::kPrimInt:
694 case Primitive::kPrimNot: {
695 return Location::RegisterLocation(R0);
696 }
697
698 case Primitive::kPrimFloat: {
699 return Location::FpuRegisterLocation(S0);
700 }
701
702 case Primitive::kPrimLong: {
703 return Location::RegisterPairLocation(R0, R1);
704 }
705
706 case Primitive::kPrimDouble: {
707 return Location::FpuRegisterPairLocation(S0, S1);
708 }
709
710 case Primitive::kPrimVoid:
711 return Location();
712 }
713 UNREACHABLE();
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000714}
715
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100716void CodeGeneratorARM::Move32(Location destination, Location source) {
717 if (source.Equals(destination)) {
718 return;
719 }
720 if (destination.IsRegister()) {
721 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000722 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100723 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000724 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100725 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000726 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100727 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100728 } else if (destination.IsFpuRegister()) {
729 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000730 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100731 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000732 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100733 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000734 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100735 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100736 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000737 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100738 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000739 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100740 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000741 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100742 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000743 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100744 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
745 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100746 }
747 }
748}
749
750void CodeGeneratorARM::Move64(Location destination, Location source) {
751 if (source.Equals(destination)) {
752 return;
753 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100754 if (destination.IsRegisterPair()) {
755 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000756 EmitParallelMoves(
757 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
758 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100759 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000760 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100761 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
762 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100763 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000764 UNIMPLEMENTED(FATAL);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100765 } else {
766 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000767 DCHECK(ExpectedPairLayout(destination));
768 __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(),
769 SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100770 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000771 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100772 if (source.IsDoubleStackSlot()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000773 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
774 SP,
775 source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100776 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000777 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100778 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100779 } else {
780 DCHECK(destination.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100781 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000782 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100783 if (source.AsRegisterPairLow<Register>() == R1) {
784 DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100785 __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex());
786 __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100787 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100788 __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100789 SP, destination.GetStackIndex());
790 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000791 } else if (source.IsFpuRegisterPair()) {
792 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
793 SP,
794 destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100795 } else {
796 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000797 EmitParallelMoves(
798 Location::StackSlot(source.GetStackIndex()),
799 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100800 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000801 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100802 Location::StackSlot(destination.GetHighStackIndex(kArmWordSize)),
803 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100804 }
805 }
806}
807
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100808void CodeGeneratorARM::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100809 LocationSummary* locations = instruction->GetLocations();
810 if (locations != nullptr && locations->Out().Equals(location)) {
811 return;
812 }
813
Calin Juravlea21f5982014-11-13 15:53:04 +0000814 if (locations != nullptr && locations->Out().IsConstant()) {
815 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000816 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
817 int32_t value = GetInt32ValueOf(const_to_move);
Calin Juravlea21f5982014-11-13 15:53:04 +0000818 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000819 __ LoadImmediate(location.AsRegister<Register>(), value);
Calin Juravlea21f5982014-11-13 15:53:04 +0000820 } else {
821 DCHECK(location.IsStackSlot());
822 __ LoadImmediate(IP, value);
823 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
824 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000825 } else {
Nicolas Geoffray3747b482015-01-19 17:17:16 +0000826 DCHECK(const_to_move->IsLongConstant()) << const_to_move->DebugName();
Calin Juravlea21f5982014-11-13 15:53:04 +0000827 int64_t value = const_to_move->AsLongConstant()->GetValue();
828 if (location.IsRegisterPair()) {
829 __ LoadImmediate(location.AsRegisterPairLow<Register>(), Low32Bits(value));
830 __ LoadImmediate(location.AsRegisterPairHigh<Register>(), High32Bits(value));
831 } else {
832 DCHECK(location.IsDoubleStackSlot());
833 __ LoadImmediate(IP, Low32Bits(value));
834 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
835 __ LoadImmediate(IP, High32Bits(value));
836 __ StoreToOffset(kStoreWord, IP, SP, location.GetHighStackIndex(kArmWordSize));
837 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100838 }
Roland Levillain476df552014-10-09 17:51:36 +0100839 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100840 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
841 switch (instruction->GetType()) {
842 case Primitive::kPrimBoolean:
843 case Primitive::kPrimByte:
844 case Primitive::kPrimChar:
845 case Primitive::kPrimShort:
846 case Primitive::kPrimInt:
847 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100848 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100849 Move32(location, Location::StackSlot(stack_slot));
850 break;
851
852 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100853 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100854 Move64(location, Location::DoubleStackSlot(stack_slot));
855 break;
856
857 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100858 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100859 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000860 } else if (instruction->IsTemporary()) {
861 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000862 if (temp_location.IsStackSlot()) {
863 Move32(location, temp_location);
864 } else {
865 DCHECK(temp_location.IsDoubleStackSlot());
866 Move64(location, temp_location);
867 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000868 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100869 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100870 switch (instruction->GetType()) {
871 case Primitive::kPrimBoolean:
872 case Primitive::kPrimByte:
873 case Primitive::kPrimChar:
874 case Primitive::kPrimShort:
875 case Primitive::kPrimNot:
876 case Primitive::kPrimInt:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100877 case Primitive::kPrimFloat:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100878 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100879 break;
880
881 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100882 case Primitive::kPrimDouble:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100883 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100884 break;
885
886 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100887 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100888 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000889 }
890}
891
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100892void CodeGeneratorARM::InvokeRuntime(int32_t entry_point_offset,
893 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000894 uint32_t dex_pc,
895 SlowPathCode* slow_path) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100896 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
897 __ blx(LR);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000898 RecordPcInfo(instruction, dex_pc, slow_path);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100899 DCHECK(instruction->IsSuspendCheck()
900 || instruction->IsBoundsCheck()
901 || instruction->IsNullCheck()
Calin Juravled0d48522014-11-04 16:40:20 +0000902 || instruction->IsDivZeroCheck()
Roland Levillain624279f2014-12-04 11:54:28 +0000903 || instruction->GetLocations()->CanCall()
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100904 || !IsLeafMethod());
905}
906
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000907void LocationsBuilderARM::VisitGoto(HGoto* got) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000908 got->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000909}
910
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000911void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000912 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100913 DCHECK(!successor->IsExitBlock());
914
915 HBasicBlock* block = got->GetBlock();
916 HInstruction* previous = got->GetPrevious();
917
918 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +0000919 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100920 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
921 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
922 return;
923 }
924
925 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
926 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
927 }
928 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000929 __ b(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000930 }
931}
932
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000933void LocationsBuilderARM::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000934 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000935}
936
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000937void InstructionCodeGeneratorARM::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700938 UNUSED(exit);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000939}
940
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700941void InstructionCodeGeneratorARM::GenerateTestAndBranch(HInstruction* instruction,
942 Label* true_target,
943 Label* false_target,
944 Label* always_true_target) {
945 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100946 if (cond->IsIntConstant()) {
947 // Constant condition, statically compared against 1.
948 int32_t cond_value = cond->AsIntConstant()->GetValue();
949 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700950 if (always_true_target != nullptr) {
951 __ b(always_true_target);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100952 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100953 return;
954 } else {
955 DCHECK_EQ(cond_value, 0);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100956 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100957 } else {
958 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
959 // Condition has been materialized, compare the output to 0
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700960 DCHECK(instruction->GetLocations()->InAt(0).IsRegister());
961 __ cmp(instruction->GetLocations()->InAt(0).AsRegister<Register>(),
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100962 ShifterOperand(0));
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700963 __ b(true_target, NE);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100964 } else {
965 // Condition has not been materialized, use its inputs as the
966 // comparison and its condition as the branch condition.
967 LocationSummary* locations = cond->GetLocations();
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000968 DCHECK(locations->InAt(0).IsRegister()) << locations->InAt(0);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000969 Register left = locations->InAt(0).AsRegister<Register>();
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100970 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000971 __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100972 } else {
973 DCHECK(locations->InAt(1).IsConstant());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000974 HConstant* constant = locations->InAt(1).GetConstant();
975 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100976 ShifterOperand operand;
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000977 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) {
978 __ cmp(left, operand);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100979 } else {
980 Register temp = IP;
981 __ LoadImmediate(temp, value);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +0000982 __ cmp(left, ShifterOperand(temp));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100983 }
984 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700985 __ b(true_target, ARMCondition(cond->AsCondition()->GetCondition()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100986 }
Dave Allison20dfc792014-06-16 20:44:29 -0700987 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700988 if (false_target != nullptr) {
989 __ b(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000990 }
991}
992
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700993void LocationsBuilderARM::VisitIf(HIf* if_instr) {
994 LocationSummary* locations =
995 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
996 HInstruction* cond = if_instr->InputAt(0);
997 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
998 locations->SetInAt(0, Location::RequiresRegister());
999 }
1000}
1001
1002void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) {
1003 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1004 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1005 Label* always_true_target = true_target;
1006 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1007 if_instr->IfTrueSuccessor())) {
1008 always_true_target = nullptr;
1009 }
1010 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1011 if_instr->IfFalseSuccessor())) {
1012 false_target = nullptr;
1013 }
1014 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1015}
1016
1017void LocationsBuilderARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1018 LocationSummary* locations = new (GetGraph()->GetArena())
1019 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
1020 HInstruction* cond = deoptimize->InputAt(0);
1021 DCHECK(cond->IsCondition());
1022 if (cond->AsCondition()->NeedsMaterialization()) {
1023 locations->SetInAt(0, Location::RequiresRegister());
1024 }
1025}
1026
1027void InstructionCodeGeneratorARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1028 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena())
1029 DeoptimizationSlowPathARM(deoptimize);
1030 codegen_->AddSlowPath(slow_path);
1031 Label* slow_path_entry = slow_path->GetEntryLabel();
1032 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
1033}
Dave Allison20dfc792014-06-16 20:44:29 -07001034
1035void LocationsBuilderARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001036 LocationSummary* locations =
1037 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001038 locations->SetInAt(0, Location::RequiresRegister());
1039 locations->SetInAt(1, Location::RegisterOrConstant(comp->InputAt(1)));
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001040 if (comp->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001041 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001042 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001043}
1044
Dave Allison20dfc792014-06-16 20:44:29 -07001045void InstructionCodeGeneratorARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001046 if (!comp->NeedsMaterialization()) return;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001047 LocationSummary* locations = comp->GetLocations();
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001048 Register left = locations->InAt(0).AsRegister<Register>();
1049
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001050 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001051 __ cmp(left, ShifterOperand(locations->InAt(1).AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001052 } else {
1053 DCHECK(locations->InAt(1).IsConstant());
Mingyao Yangdc5ac732015-02-25 11:28:05 -08001054 int32_t value = CodeGenerator::GetInt32ValueOf(locations->InAt(1).GetConstant());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001055 ShifterOperand operand;
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001056 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, value, &operand)) {
1057 __ cmp(left, operand);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001058 } else {
1059 Register temp = IP;
1060 __ LoadImmediate(temp, value);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001061 __ cmp(left, ShifterOperand(temp));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001062 }
Dave Allison20dfc792014-06-16 20:44:29 -07001063 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001064 __ it(ARMCondition(comp->GetCondition()), kItElse);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001065 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(1),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001066 ARMCondition(comp->GetCondition()));
Roland Levillain271ab9c2014-11-27 15:23:57 +00001067 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(0),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001068 ARMOppositeCondition(comp->GetCondition()));
Dave Allison20dfc792014-06-16 20:44:29 -07001069}
1070
1071void LocationsBuilderARM::VisitEqual(HEqual* comp) {
1072 VisitCondition(comp);
1073}
1074
1075void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) {
1076 VisitCondition(comp);
1077}
1078
1079void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) {
1080 VisitCondition(comp);
1081}
1082
1083void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) {
1084 VisitCondition(comp);
1085}
1086
1087void LocationsBuilderARM::VisitLessThan(HLessThan* comp) {
1088 VisitCondition(comp);
1089}
1090
1091void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) {
1092 VisitCondition(comp);
1093}
1094
1095void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1096 VisitCondition(comp);
1097}
1098
1099void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1100 VisitCondition(comp);
1101}
1102
1103void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) {
1104 VisitCondition(comp);
1105}
1106
1107void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) {
1108 VisitCondition(comp);
1109}
1110
1111void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1112 VisitCondition(comp);
1113}
1114
1115void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1116 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001117}
1118
1119void LocationsBuilderARM::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001120 local->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001121}
1122
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001123void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) {
1124 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001125}
1126
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001127void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001128 load->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001129}
1130
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001131void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001132 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001133 UNUSED(load);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001134}
1135
1136void LocationsBuilderARM::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001137 LocationSummary* locations =
1138 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001139 switch (store->InputAt(1)->GetType()) {
1140 case Primitive::kPrimBoolean:
1141 case Primitive::kPrimByte:
1142 case Primitive::kPrimChar:
1143 case Primitive::kPrimShort:
1144 case Primitive::kPrimInt:
1145 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001146 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001147 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1148 break;
1149
1150 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001151 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001152 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1153 break;
1154
1155 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001156 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001157 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001158}
1159
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001160void InstructionCodeGeneratorARM::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001161 UNUSED(store);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001162}
1163
1164void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001165 LocationSummary* locations =
1166 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001167 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001168}
1169
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001170void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001171 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001172 UNUSED(constant);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001173}
1174
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001175void LocationsBuilderARM::VisitNullConstant(HNullConstant* constant) {
1176 LocationSummary* locations =
1177 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1178 locations->SetOut(Location::ConstantLocation(constant));
1179}
1180
1181void InstructionCodeGeneratorARM::VisitNullConstant(HNullConstant* constant) {
1182 // Will be generated at use site.
1183 UNUSED(constant);
1184}
1185
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001186void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001187 LocationSummary* locations =
1188 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001189 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001190}
1191
1192void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) {
1193 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001194 UNUSED(constant);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001195}
1196
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001197void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) {
1198 LocationSummary* locations =
1199 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1200 locations->SetOut(Location::ConstantLocation(constant));
1201}
1202
1203void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant) {
1204 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001205 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001206}
1207
1208void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) {
1209 LocationSummary* locations =
1210 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1211 locations->SetOut(Location::ConstantLocation(constant));
1212}
1213
1214void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant) {
1215 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001216 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001217}
1218
Calin Juravle27df7582015-04-17 19:12:31 +01001219void LocationsBuilderARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1220 memory_barrier->SetLocations(nullptr);
1221}
1222
1223void InstructionCodeGeneratorARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1224 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
1225}
1226
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001227void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001228 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001229}
1230
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001231void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001232 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001233 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001234}
1235
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001236void LocationsBuilderARM::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001237 LocationSummary* locations =
1238 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001239 locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001240}
1241
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001242void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001243 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001244 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001245}
1246
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001247void LocationsBuilderARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01001248 // When we do not run baseline, explicit clinit checks triggered by static
1249 // invokes must have been pruned by art::PrepareForRegisterAllocation.
1250 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01001251
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001252 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
1253 codegen_->GetInstructionSetFeatures());
1254 if (intrinsic.TryDispatch(invoke)) {
1255 return;
1256 }
1257
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001258 HandleInvoke(invoke);
1259}
1260
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001261void CodeGeneratorARM::LoadCurrentMethod(Register reg) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001262 DCHECK(RequiresCurrentMethod());
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001263 __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001264}
1265
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001266static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM* codegen) {
1267 if (invoke->GetLocations()->Intrinsified()) {
1268 IntrinsicCodeGeneratorARM intrinsic(codegen);
1269 intrinsic.Dispatch(invoke);
1270 return true;
1271 }
1272 return false;
1273}
1274
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001275void InstructionCodeGeneratorARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01001276 // When we do not run baseline, explicit clinit checks triggered by static
1277 // invokes must have been pruned by art::PrepareForRegisterAllocation.
1278 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01001279
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001280 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1281 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001282 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001283
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001284 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
1285
1286 codegen_->GenerateStaticOrDirectCall(invoke, temp);
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00001287 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001288}
1289
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001290void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001291 LocationSummary* locations =
1292 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001293 locations->AddTemp(Location::RegisterLocation(R0));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001294
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001295 InvokeDexCallingConventionVisitorARM calling_convention_visitor;
Roland Levillain3e3d7332015-04-28 11:00:54 +01001296 for (size_t i = 0; i < invoke->GetNumberOfArguments(); i++) {
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001297 HInstruction* input = invoke->InputAt(i);
1298 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1299 }
1300
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001301 locations->SetOut(calling_convention_visitor.GetReturnLocation(invoke->GetType()));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001302}
1303
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001304void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001305 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
1306 codegen_->GetInstructionSetFeatures());
1307 if (intrinsic.TryDispatch(invoke)) {
1308 return;
1309 }
1310
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001311 HandleInvoke(invoke);
1312}
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001313
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001314void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001315 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1316 return;
1317 }
1318
Roland Levillain271ab9c2014-11-27 15:23:57 +00001319 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001320 uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() +
1321 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1322 LocationSummary* locations = invoke->GetLocations();
1323 Location receiver = locations->InAt(0);
1324 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1325 // temp = object->GetClass();
1326 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001327 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1328 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001329 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001330 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001331 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001332 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001333 // temp = temp->GetMethodAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001334 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001335 kArmWordSize).Int32Value();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001336 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001337 // LR = temp->GetEntryPoint();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001338 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001339 // LR();
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001340 __ blx(LR);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001341 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001342 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001343}
1344
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001345void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1346 HandleInvoke(invoke);
1347 // Add the hidden argument.
1348 invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12));
1349}
1350
1351void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1352 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001353 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001354 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1355 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1356 LocationSummary* locations = invoke->GetLocations();
1357 Location receiver = locations->InAt(0);
1358 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1359
1360 // Set the hidden argument.
Roland Levillain199f3362014-11-27 17:15:16 +00001361 __ LoadImmediate(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
1362 invoke->GetDexMethodIndex());
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001363
1364 // temp = object->GetClass();
1365 if (receiver.IsStackSlot()) {
1366 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1367 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
1368 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001369 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001370 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001371 codegen_->MaybeRecordImplicitNullCheck(invoke);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001372 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001373 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001374 kArmWordSize).Int32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001375 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
1376 // LR = temp->GetEntryPoint();
1377 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
1378 // LR();
1379 __ blx(LR);
1380 DCHECK(!codegen_->IsLeafMethod());
1381 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1382}
1383
Roland Levillain88cb1752014-10-20 16:36:47 +01001384void LocationsBuilderARM::VisitNeg(HNeg* neg) {
1385 LocationSummary* locations =
1386 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1387 switch (neg->GetResultType()) {
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001388 case Primitive::kPrimInt: {
Roland Levillain88cb1752014-10-20 16:36:47 +01001389 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001390 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1391 break;
1392 }
1393 case Primitive::kPrimLong: {
1394 locations->SetInAt(0, Location::RequiresRegister());
1395 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001396 break;
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001397 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001398
Roland Levillain88cb1752014-10-20 16:36:47 +01001399 case Primitive::kPrimFloat:
1400 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001401 locations->SetInAt(0, Location::RequiresFpuRegister());
1402 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001403 break;
1404
1405 default:
1406 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1407 }
1408}
1409
1410void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) {
1411 LocationSummary* locations = neg->GetLocations();
1412 Location out = locations->Out();
1413 Location in = locations->InAt(0);
1414 switch (neg->GetResultType()) {
1415 case Primitive::kPrimInt:
1416 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001417 __ rsb(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(0));
Roland Levillain88cb1752014-10-20 16:36:47 +01001418 break;
1419
1420 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001421 DCHECK(in.IsRegisterPair());
1422 // out.lo = 0 - in.lo (and update the carry/borrow (C) flag)
1423 __ rsbs(out.AsRegisterPairLow<Register>(),
1424 in.AsRegisterPairLow<Register>(),
1425 ShifterOperand(0));
1426 // We cannot emit an RSC (Reverse Subtract with Carry)
1427 // instruction here, as it does not exist in the Thumb-2
1428 // instruction set. We use the following approach
1429 // using SBC and SUB instead.
1430 //
1431 // out.hi = -C
1432 __ sbc(out.AsRegisterPairHigh<Register>(),
1433 out.AsRegisterPairHigh<Register>(),
1434 ShifterOperand(out.AsRegisterPairHigh<Register>()));
1435 // out.hi = out.hi - in.hi
1436 __ sub(out.AsRegisterPairHigh<Register>(),
1437 out.AsRegisterPairHigh<Register>(),
1438 ShifterOperand(in.AsRegisterPairHigh<Register>()));
1439 break;
1440
Roland Levillain88cb1752014-10-20 16:36:47 +01001441 case Primitive::kPrimFloat:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001442 DCHECK(in.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001443 __ vnegs(out.AsFpuRegister<SRegister>(), in.AsFpuRegister<SRegister>());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001444 break;
1445
Roland Levillain88cb1752014-10-20 16:36:47 +01001446 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001447 DCHECK(in.IsFpuRegisterPair());
1448 __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1449 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain88cb1752014-10-20 16:36:47 +01001450 break;
1451
1452 default:
1453 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1454 }
1455}
1456
Roland Levillaindff1f282014-11-05 14:15:05 +00001457void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00001458 Primitive::Type result_type = conversion->GetResultType();
1459 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001460 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00001461
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001462 // The float-to-long and double-to-long type conversions rely on a
1463 // call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00001464 LocationSummary::CallKind call_kind =
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001465 ((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
1466 && result_type == Primitive::kPrimLong)
Roland Levillain624279f2014-12-04 11:54:28 +00001467 ? LocationSummary::kCall
1468 : LocationSummary::kNoCall;
1469 LocationSummary* locations =
1470 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
1471
David Brazdilb2bd1c52015-03-25 11:17:37 +00001472 // The Java language does not allow treating boolean as an integral type but
1473 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001474
Roland Levillaindff1f282014-11-05 14:15:05 +00001475 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001476 case Primitive::kPrimByte:
1477 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001478 case Primitive::kPrimBoolean:
1479 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001480 case Primitive::kPrimShort:
1481 case Primitive::kPrimInt:
1482 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001483 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001484 locations->SetInAt(0, Location::RequiresRegister());
1485 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1486 break;
1487
1488 default:
1489 LOG(FATAL) << "Unexpected type conversion from " << input_type
1490 << " to " << result_type;
1491 }
1492 break;
1493
Roland Levillain01a8d712014-11-14 16:27:39 +00001494 case Primitive::kPrimShort:
1495 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001496 case Primitive::kPrimBoolean:
1497 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001498 case Primitive::kPrimByte:
1499 case Primitive::kPrimInt:
1500 case Primitive::kPrimChar:
1501 // Processing a Dex `int-to-short' instruction.
1502 locations->SetInAt(0, Location::RequiresRegister());
1503 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1504 break;
1505
1506 default:
1507 LOG(FATAL) << "Unexpected type conversion from " << input_type
1508 << " to " << result_type;
1509 }
1510 break;
1511
Roland Levillain946e1432014-11-11 17:35:19 +00001512 case Primitive::kPrimInt:
1513 switch (input_type) {
1514 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001515 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001516 locations->SetInAt(0, Location::Any());
1517 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1518 break;
1519
1520 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001521 // Processing a Dex `float-to-int' instruction.
1522 locations->SetInAt(0, Location::RequiresFpuRegister());
1523 locations->SetOut(Location::RequiresRegister());
1524 locations->AddTemp(Location::RequiresFpuRegister());
1525 break;
1526
Roland Levillain946e1432014-11-11 17:35:19 +00001527 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001528 // Processing a Dex `double-to-int' instruction.
1529 locations->SetInAt(0, Location::RequiresFpuRegister());
1530 locations->SetOut(Location::RequiresRegister());
1531 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001532 break;
1533
1534 default:
1535 LOG(FATAL) << "Unexpected type conversion from " << input_type
1536 << " to " << result_type;
1537 }
1538 break;
1539
Roland Levillaindff1f282014-11-05 14:15:05 +00001540 case Primitive::kPrimLong:
1541 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001542 case Primitive::kPrimBoolean:
1543 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001544 case Primitive::kPrimByte:
1545 case Primitive::kPrimShort:
1546 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001547 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001548 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001549 locations->SetInAt(0, Location::RequiresRegister());
1550 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1551 break;
1552
Roland Levillain624279f2014-12-04 11:54:28 +00001553 case Primitive::kPrimFloat: {
1554 // Processing a Dex `float-to-long' instruction.
1555 InvokeRuntimeCallingConvention calling_convention;
1556 locations->SetInAt(0, Location::FpuRegisterLocation(
1557 calling_convention.GetFpuRegisterAt(0)));
1558 locations->SetOut(Location::RegisterPairLocation(R0, R1));
1559 break;
1560 }
1561
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001562 case Primitive::kPrimDouble: {
1563 // Processing a Dex `double-to-long' instruction.
1564 InvokeRuntimeCallingConvention calling_convention;
1565 locations->SetInAt(0, Location::FpuRegisterPairLocation(
1566 calling_convention.GetFpuRegisterAt(0),
1567 calling_convention.GetFpuRegisterAt(1)));
1568 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Roland Levillaindff1f282014-11-05 14:15:05 +00001569 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001570 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001571
1572 default:
1573 LOG(FATAL) << "Unexpected type conversion from " << input_type
1574 << " to " << result_type;
1575 }
1576 break;
1577
Roland Levillain981e4542014-11-14 11:47:14 +00001578 case Primitive::kPrimChar:
1579 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001580 case Primitive::kPrimBoolean:
1581 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001582 case Primitive::kPrimByte:
1583 case Primitive::kPrimShort:
1584 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001585 // Processing a Dex `int-to-char' instruction.
1586 locations->SetInAt(0, Location::RequiresRegister());
1587 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1588 break;
1589
1590 default:
1591 LOG(FATAL) << "Unexpected type conversion from " << input_type
1592 << " to " << result_type;
1593 }
1594 break;
1595
Roland Levillaindff1f282014-11-05 14:15:05 +00001596 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001597 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001598 case Primitive::kPrimBoolean:
1599 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001600 case Primitive::kPrimByte:
1601 case Primitive::kPrimShort:
1602 case Primitive::kPrimInt:
1603 case Primitive::kPrimChar:
1604 // Processing a Dex `int-to-float' instruction.
1605 locations->SetInAt(0, Location::RequiresRegister());
1606 locations->SetOut(Location::RequiresFpuRegister());
1607 break;
1608
1609 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00001610 // Processing a Dex `long-to-float' instruction.
1611 locations->SetInAt(0, Location::RequiresRegister());
1612 locations->SetOut(Location::RequiresFpuRegister());
1613 locations->AddTemp(Location::RequiresRegister());
1614 locations->AddTemp(Location::RequiresRegister());
1615 locations->AddTemp(Location::RequiresFpuRegister());
1616 locations->AddTemp(Location::RequiresFpuRegister());
1617 break;
1618
Roland Levillaincff13742014-11-17 14:32:17 +00001619 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001620 // Processing a Dex `double-to-float' instruction.
1621 locations->SetInAt(0, Location::RequiresFpuRegister());
1622 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001623 break;
1624
1625 default:
1626 LOG(FATAL) << "Unexpected type conversion from " << input_type
1627 << " to " << result_type;
1628 };
1629 break;
1630
Roland Levillaindff1f282014-11-05 14:15:05 +00001631 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001632 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001633 case Primitive::kPrimBoolean:
1634 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001635 case Primitive::kPrimByte:
1636 case Primitive::kPrimShort:
1637 case Primitive::kPrimInt:
1638 case Primitive::kPrimChar:
1639 // Processing a Dex `int-to-double' instruction.
1640 locations->SetInAt(0, Location::RequiresRegister());
1641 locations->SetOut(Location::RequiresFpuRegister());
1642 break;
1643
1644 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001645 // Processing a Dex `long-to-double' instruction.
1646 locations->SetInAt(0, Location::RequiresRegister());
1647 locations->SetOut(Location::RequiresFpuRegister());
1648 locations->AddTemp(Location::RequiresRegister());
1649 locations->AddTemp(Location::RequiresRegister());
1650 locations->AddTemp(Location::RequiresFpuRegister());
1651 break;
1652
Roland Levillaincff13742014-11-17 14:32:17 +00001653 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001654 // Processing a Dex `float-to-double' instruction.
1655 locations->SetInAt(0, Location::RequiresFpuRegister());
1656 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00001657 break;
1658
1659 default:
1660 LOG(FATAL) << "Unexpected type conversion from " << input_type
1661 << " to " << result_type;
1662 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001663 break;
1664
1665 default:
1666 LOG(FATAL) << "Unexpected type conversion from " << input_type
1667 << " to " << result_type;
1668 }
1669}
1670
1671void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) {
1672 LocationSummary* locations = conversion->GetLocations();
1673 Location out = locations->Out();
1674 Location in = locations->InAt(0);
1675 Primitive::Type result_type = conversion->GetResultType();
1676 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001677 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00001678 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001679 case Primitive::kPrimByte:
1680 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001681 case Primitive::kPrimBoolean:
1682 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001683 case Primitive::kPrimShort:
1684 case Primitive::kPrimInt:
1685 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001686 // Processing a Dex `int-to-byte' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001687 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 8);
Roland Levillain51d3fc42014-11-13 14:11:42 +00001688 break;
1689
1690 default:
1691 LOG(FATAL) << "Unexpected type conversion from " << input_type
1692 << " to " << result_type;
1693 }
1694 break;
1695
Roland Levillain01a8d712014-11-14 16:27:39 +00001696 case Primitive::kPrimShort:
1697 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001698 case Primitive::kPrimBoolean:
1699 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001700 case Primitive::kPrimByte:
1701 case Primitive::kPrimInt:
1702 case Primitive::kPrimChar:
1703 // Processing a Dex `int-to-short' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001704 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain01a8d712014-11-14 16:27:39 +00001705 break;
1706
1707 default:
1708 LOG(FATAL) << "Unexpected type conversion from " << input_type
1709 << " to " << result_type;
1710 }
1711 break;
1712
Roland Levillain946e1432014-11-11 17:35:19 +00001713 case Primitive::kPrimInt:
1714 switch (input_type) {
1715 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001716 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001717 DCHECK(out.IsRegister());
1718 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001719 __ Mov(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00001720 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001721 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), SP, in.GetStackIndex());
Roland Levillain946e1432014-11-11 17:35:19 +00001722 } else {
1723 DCHECK(in.IsConstant());
1724 DCHECK(in.GetConstant()->IsLongConstant());
1725 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00001726 __ LoadImmediate(out.AsRegister<Register>(), static_cast<int32_t>(value));
Roland Levillain946e1432014-11-11 17:35:19 +00001727 }
1728 break;
1729
Roland Levillain3f8f9362014-12-02 17:45:01 +00001730 case Primitive::kPrimFloat: {
1731 // Processing a Dex `float-to-int' instruction.
1732 SRegister temp = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
1733 __ vmovs(temp, in.AsFpuRegister<SRegister>());
1734 __ vcvtis(temp, temp);
1735 __ vmovrs(out.AsRegister<Register>(), temp);
1736 break;
1737 }
1738
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001739 case Primitive::kPrimDouble: {
1740 // Processing a Dex `double-to-int' instruction.
1741 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
1742 DRegister temp_d = FromLowSToD(temp_s);
1743 __ vmovd(temp_d, FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
1744 __ vcvtid(temp_s, temp_d);
1745 __ vmovrs(out.AsRegister<Register>(), temp_s);
Roland Levillain946e1432014-11-11 17:35:19 +00001746 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001747 }
Roland Levillain946e1432014-11-11 17:35:19 +00001748
1749 default:
1750 LOG(FATAL) << "Unexpected type conversion from " << input_type
1751 << " to " << result_type;
1752 }
1753 break;
1754
Roland Levillaindff1f282014-11-05 14:15:05 +00001755 case Primitive::kPrimLong:
1756 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001757 case Primitive::kPrimBoolean:
1758 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001759 case Primitive::kPrimByte:
1760 case Primitive::kPrimShort:
1761 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001762 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001763 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001764 DCHECK(out.IsRegisterPair());
1765 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001766 __ Mov(out.AsRegisterPairLow<Register>(), in.AsRegister<Register>());
Roland Levillaindff1f282014-11-05 14:15:05 +00001767 // Sign extension.
1768 __ Asr(out.AsRegisterPairHigh<Register>(),
1769 out.AsRegisterPairLow<Register>(),
1770 31);
1771 break;
1772
1773 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00001774 // Processing a Dex `float-to-long' instruction.
Roland Levillain624279f2014-12-04 11:54:28 +00001775 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pF2l),
1776 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001777 conversion->GetDexPc(),
1778 nullptr);
Roland Levillain624279f2014-12-04 11:54:28 +00001779 break;
1780
Roland Levillaindff1f282014-11-05 14:15:05 +00001781 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001782 // Processing a Dex `double-to-long' instruction.
1783 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pD2l),
1784 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001785 conversion->GetDexPc(),
1786 nullptr);
Roland Levillaindff1f282014-11-05 14:15:05 +00001787 break;
1788
1789 default:
1790 LOG(FATAL) << "Unexpected type conversion from " << input_type
1791 << " to " << result_type;
1792 }
1793 break;
1794
Roland Levillain981e4542014-11-14 11:47:14 +00001795 case Primitive::kPrimChar:
1796 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001797 case Primitive::kPrimBoolean:
1798 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001799 case Primitive::kPrimByte:
1800 case Primitive::kPrimShort:
1801 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001802 // Processing a Dex `int-to-char' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001803 __ ubfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain981e4542014-11-14 11:47:14 +00001804 break;
1805
1806 default:
1807 LOG(FATAL) << "Unexpected type conversion from " << input_type
1808 << " to " << result_type;
1809 }
1810 break;
1811
Roland Levillaindff1f282014-11-05 14:15:05 +00001812 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001813 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001814 case Primitive::kPrimBoolean:
1815 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001816 case Primitive::kPrimByte:
1817 case Primitive::kPrimShort:
1818 case Primitive::kPrimInt:
1819 case Primitive::kPrimChar: {
1820 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001821 __ vmovsr(out.AsFpuRegister<SRegister>(), in.AsRegister<Register>());
1822 __ vcvtsi(out.AsFpuRegister<SRegister>(), out.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001823 break;
1824 }
1825
Roland Levillain6d0e4832014-11-27 18:31:21 +00001826 case Primitive::kPrimLong: {
1827 // Processing a Dex `long-to-float' instruction.
1828 Register low = in.AsRegisterPairLow<Register>();
1829 Register high = in.AsRegisterPairHigh<Register>();
1830 SRegister output = out.AsFpuRegister<SRegister>();
1831 Register constant_low = locations->GetTemp(0).AsRegister<Register>();
1832 Register constant_high = locations->GetTemp(1).AsRegister<Register>();
1833 SRegister temp1_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1834 DRegister temp1_d = FromLowSToD(temp1_s);
1835 SRegister temp2_s = locations->GetTemp(3).AsFpuRegisterPairLow<SRegister>();
1836 DRegister temp2_d = FromLowSToD(temp2_s);
1837
1838 // Operations use doubles for precision reasons (each 32-bit
1839 // half of a long fits in the 53-bit mantissa of a double,
1840 // but not in the 24-bit mantissa of a float). This is
1841 // especially important for the low bits. The result is
1842 // eventually converted to float.
1843
1844 // temp1_d = int-to-double(high)
1845 __ vmovsr(temp1_s, high);
1846 __ vcvtdi(temp1_d, temp1_s);
1847 // Using vmovd to load the `k2Pow32EncodingForDouble` constant
1848 // as an immediate value into `temp2_d` does not work, as
1849 // this instruction only transfers 8 significant bits of its
1850 // immediate operand. Instead, use two 32-bit core
1851 // registers to load `k2Pow32EncodingForDouble` into
1852 // `temp2_d`.
1853 __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble));
1854 __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble));
1855 __ vmovdrr(temp2_d, constant_low, constant_high);
1856 // temp1_d = temp1_d * 2^32
1857 __ vmuld(temp1_d, temp1_d, temp2_d);
1858 // temp2_d = unsigned-to-double(low)
1859 __ vmovsr(temp2_s, low);
1860 __ vcvtdu(temp2_d, temp2_s);
1861 // temp1_d = temp1_d + temp2_d
1862 __ vaddd(temp1_d, temp1_d, temp2_d);
1863 // output = double-to-float(temp1_d);
1864 __ vcvtsd(output, temp1_d);
1865 break;
1866 }
1867
Roland Levillaincff13742014-11-17 14:32:17 +00001868 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001869 // Processing a Dex `double-to-float' instruction.
1870 __ vcvtsd(out.AsFpuRegister<SRegister>(),
1871 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillaincff13742014-11-17 14:32:17 +00001872 break;
1873
1874 default:
1875 LOG(FATAL) << "Unexpected type conversion from " << input_type
1876 << " to " << result_type;
1877 };
1878 break;
1879
Roland Levillaindff1f282014-11-05 14:15:05 +00001880 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001881 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001882 case Primitive::kPrimBoolean:
1883 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00001884 case Primitive::kPrimByte:
1885 case Primitive::kPrimShort:
1886 case Primitive::kPrimInt:
1887 case Primitive::kPrimChar: {
1888 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001889 __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00001890 __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1891 out.AsFpuRegisterPairLow<SRegister>());
1892 break;
1893 }
1894
Roland Levillain647b9ed2014-11-27 12:06:00 +00001895 case Primitive::kPrimLong: {
1896 // Processing a Dex `long-to-double' instruction.
1897 Register low = in.AsRegisterPairLow<Register>();
1898 Register high = in.AsRegisterPairHigh<Register>();
1899 SRegister out_s = out.AsFpuRegisterPairLow<SRegister>();
1900 DRegister out_d = FromLowSToD(out_s);
Roland Levillain271ab9c2014-11-27 15:23:57 +00001901 Register constant_low = locations->GetTemp(0).AsRegister<Register>();
1902 Register constant_high = locations->GetTemp(1).AsRegister<Register>();
Roland Levillain647b9ed2014-11-27 12:06:00 +00001903 SRegister temp_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1904 DRegister temp_d = FromLowSToD(temp_s);
1905
Roland Levillain647b9ed2014-11-27 12:06:00 +00001906 // out_d = int-to-double(high)
1907 __ vmovsr(out_s, high);
1908 __ vcvtdi(out_d, out_s);
Roland Levillain6d0e4832014-11-27 18:31:21 +00001909 // Using vmovd to load the `k2Pow32EncodingForDouble` constant
1910 // as an immediate value into `temp_d` does not work, as
1911 // this instruction only transfers 8 significant bits of its
1912 // immediate operand. Instead, use two 32-bit core
1913 // registers to load `k2Pow32EncodingForDouble` into `temp_d`.
1914 __ LoadImmediate(constant_low, Low32Bits(k2Pow32EncodingForDouble));
1915 __ LoadImmediate(constant_high, High32Bits(k2Pow32EncodingForDouble));
Roland Levillain647b9ed2014-11-27 12:06:00 +00001916 __ vmovdrr(temp_d, constant_low, constant_high);
1917 // out_d = out_d * 2^32
1918 __ vmuld(out_d, out_d, temp_d);
1919 // temp_d = unsigned-to-double(low)
1920 __ vmovsr(temp_s, low);
1921 __ vcvtdu(temp_d, temp_s);
1922 // out_d = out_d + temp_d
1923 __ vaddd(out_d, out_d, temp_d);
1924 break;
1925 }
1926
Roland Levillaincff13742014-11-17 14:32:17 +00001927 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00001928 // Processing a Dex `float-to-double' instruction.
1929 __ vcvtds(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1930 in.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00001931 break;
1932
1933 default:
1934 LOG(FATAL) << "Unexpected type conversion from " << input_type
1935 << " to " << result_type;
1936 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001937 break;
1938
1939 default:
1940 LOG(FATAL) << "Unexpected type conversion from " << input_type
1941 << " to " << result_type;
1942 }
1943}
1944
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001945void LocationsBuilderARM::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001946 LocationSummary* locations =
1947 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001948 switch (add->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001949 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001950 locations->SetInAt(0, Location::RequiresRegister());
1951 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001952 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1953 break;
1954 }
1955
1956 case Primitive::kPrimLong: {
1957 locations->SetInAt(0, Location::RequiresRegister());
1958 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001959 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001960 break;
1961 }
1962
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001963 case Primitive::kPrimFloat:
1964 case Primitive::kPrimDouble: {
1965 locations->SetInAt(0, Location::RequiresFpuRegister());
1966 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001967 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001968 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001969 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001970
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001971 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001972 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001973 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001974}
1975
1976void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) {
1977 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001978 Location out = locations->Out();
1979 Location first = locations->InAt(0);
1980 Location second = locations->InAt(1);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001981 switch (add->GetResultType()) {
1982 case Primitive::kPrimInt:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001983 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00001984 __ add(out.AsRegister<Register>(),
1985 first.AsRegister<Register>(),
1986 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001987 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001988 __ AddConstant(out.AsRegister<Register>(),
1989 first.AsRegister<Register>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001990 second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001991 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001992 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001993
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001994 case Primitive::kPrimLong: {
1995 DCHECK(second.IsRegisterPair());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001996 __ adds(out.AsRegisterPairLow<Register>(),
1997 first.AsRegisterPairLow<Register>(),
1998 ShifterOperand(second.AsRegisterPairLow<Register>()));
1999 __ adc(out.AsRegisterPairHigh<Register>(),
2000 first.AsRegisterPairHigh<Register>(),
2001 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002002 break;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002003 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002004
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002005 case Primitive::kPrimFloat:
Roland Levillain199f3362014-11-27 17:15:16 +00002006 __ vadds(out.AsFpuRegister<SRegister>(),
2007 first.AsFpuRegister<SRegister>(),
2008 second.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002009 break;
2010
2011 case Primitive::kPrimDouble:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002012 __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2013 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2014 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002015 break;
2016
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002017 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002018 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002019 }
2020}
2021
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002022void LocationsBuilderARM::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002023 LocationSummary* locations =
2024 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002025 switch (sub->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002026 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002027 locations->SetInAt(0, Location::RequiresRegister());
2028 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002029 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2030 break;
2031 }
2032
2033 case Primitive::kPrimLong: {
2034 locations->SetInAt(0, Location::RequiresRegister());
2035 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002036 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002037 break;
2038 }
Calin Juravle11351682014-10-23 15:38:15 +01002039 case Primitive::kPrimFloat:
2040 case Primitive::kPrimDouble: {
2041 locations->SetInAt(0, Location::RequiresFpuRegister());
2042 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002043 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002044 break;
Calin Juravle11351682014-10-23 15:38:15 +01002045 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002046 default:
Calin Juravle11351682014-10-23 15:38:15 +01002047 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002048 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002049}
2050
2051void InstructionCodeGeneratorARM::VisitSub(HSub* sub) {
2052 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01002053 Location out = locations->Out();
2054 Location first = locations->InAt(0);
2055 Location second = locations->InAt(1);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002056 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002057 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01002058 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002059 __ sub(out.AsRegister<Register>(),
2060 first.AsRegister<Register>(),
2061 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002062 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002063 __ AddConstant(out.AsRegister<Register>(),
2064 first.AsRegister<Register>(),
Calin Juravle11351682014-10-23 15:38:15 +01002065 -second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002066 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002067 break;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002068 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002069
Calin Juravle11351682014-10-23 15:38:15 +01002070 case Primitive::kPrimLong: {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002071 DCHECK(second.IsRegisterPair());
Calin Juravle11351682014-10-23 15:38:15 +01002072 __ subs(out.AsRegisterPairLow<Register>(),
2073 first.AsRegisterPairLow<Register>(),
2074 ShifterOperand(second.AsRegisterPairLow<Register>()));
2075 __ sbc(out.AsRegisterPairHigh<Register>(),
2076 first.AsRegisterPairHigh<Register>(),
2077 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002078 break;
Calin Juravle11351682014-10-23 15:38:15 +01002079 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002080
Calin Juravle11351682014-10-23 15:38:15 +01002081 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002082 __ vsubs(out.AsFpuRegister<SRegister>(),
2083 first.AsFpuRegister<SRegister>(),
2084 second.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002085 break;
Calin Juravle11351682014-10-23 15:38:15 +01002086 }
2087
2088 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002089 __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2090 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2091 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravle11351682014-10-23 15:38:15 +01002092 break;
2093 }
2094
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002095
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002096 default:
Calin Juravle11351682014-10-23 15:38:15 +01002097 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002098 }
2099}
2100
Calin Juravle34bacdf2014-10-07 20:23:36 +01002101void LocationsBuilderARM::VisitMul(HMul* mul) {
2102 LocationSummary* locations =
2103 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2104 switch (mul->GetResultType()) {
2105 case Primitive::kPrimInt:
2106 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002107 locations->SetInAt(0, Location::RequiresRegister());
2108 locations->SetInAt(1, Location::RequiresRegister());
2109 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002110 break;
2111 }
2112
Calin Juravleb5bfa962014-10-21 18:02:24 +01002113 case Primitive::kPrimFloat:
2114 case Primitive::kPrimDouble: {
2115 locations->SetInAt(0, Location::RequiresFpuRegister());
2116 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002117 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002118 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002119 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002120
2121 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002122 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002123 }
2124}
2125
2126void InstructionCodeGeneratorARM::VisitMul(HMul* mul) {
2127 LocationSummary* locations = mul->GetLocations();
2128 Location out = locations->Out();
2129 Location first = locations->InAt(0);
2130 Location second = locations->InAt(1);
2131 switch (mul->GetResultType()) {
2132 case Primitive::kPrimInt: {
Roland Levillain199f3362014-11-27 17:15:16 +00002133 __ mul(out.AsRegister<Register>(),
2134 first.AsRegister<Register>(),
2135 second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002136 break;
2137 }
2138 case Primitive::kPrimLong: {
2139 Register out_hi = out.AsRegisterPairHigh<Register>();
2140 Register out_lo = out.AsRegisterPairLow<Register>();
2141 Register in1_hi = first.AsRegisterPairHigh<Register>();
2142 Register in1_lo = first.AsRegisterPairLow<Register>();
2143 Register in2_hi = second.AsRegisterPairHigh<Register>();
2144 Register in2_lo = second.AsRegisterPairLow<Register>();
2145
2146 // Extra checks to protect caused by the existence of R1_R2.
2147 // The algorithm is wrong if out.hi is either in1.lo or in2.lo:
2148 // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2);
2149 DCHECK_NE(out_hi, in1_lo);
2150 DCHECK_NE(out_hi, in2_lo);
2151
2152 // input: in1 - 64 bits, in2 - 64 bits
2153 // output: out
2154 // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
2155 // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
2156 // parts: out.lo = (in1.lo * in2.lo)[31:0]
2157
2158 // IP <- in1.lo * in2.hi
2159 __ mul(IP, in1_lo, in2_hi);
2160 // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2161 __ mla(out_hi, in1_hi, in2_lo, IP);
2162 // out.lo <- (in1.lo * in2.lo)[31:0];
2163 __ umull(out_lo, IP, in1_lo, in2_lo);
2164 // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2165 __ add(out_hi, out_hi, ShifterOperand(IP));
2166 break;
2167 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002168
2169 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002170 __ vmuls(out.AsFpuRegister<SRegister>(),
2171 first.AsFpuRegister<SRegister>(),
2172 second.AsFpuRegister<SRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002173 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002174 }
2175
2176 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002177 __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2178 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2179 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravleb5bfa962014-10-21 18:02:24 +01002180 break;
2181 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002182
2183 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002184 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002185 }
2186}
2187
Calin Juravle7c4954d2014-10-28 16:57:40 +00002188void LocationsBuilderARM::VisitDiv(HDiv* div) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002189 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2190 if (div->GetResultType() == Primitive::kPrimLong) {
2191 // pLdiv runtime call.
2192 call_kind = LocationSummary::kCall;
2193 } else if (div->GetResultType() == Primitive::kPrimInt &&
2194 !codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2195 // pIdivmod runtime call.
2196 call_kind = LocationSummary::kCall;
2197 }
2198
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002199 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2200
Calin Juravle7c4954d2014-10-28 16:57:40 +00002201 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002202 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002203 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2204 locations->SetInAt(0, Location::RequiresRegister());
2205 locations->SetInAt(1, Location::RequiresRegister());
2206 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2207 } else {
2208 InvokeRuntimeCallingConvention calling_convention;
2209 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2210 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2211 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2212 // we only need the former.
2213 locations->SetOut(Location::RegisterLocation(R0));
2214 }
Calin Juravled0d48522014-11-04 16:40:20 +00002215 break;
2216 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002217 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002218 InvokeRuntimeCallingConvention calling_convention;
2219 locations->SetInAt(0, Location::RegisterPairLocation(
2220 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2221 locations->SetInAt(1, Location::RegisterPairLocation(
2222 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002223 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Calin Juravle7c4954d2014-10-28 16:57:40 +00002224 break;
2225 }
2226 case Primitive::kPrimFloat:
2227 case Primitive::kPrimDouble: {
2228 locations->SetInAt(0, Location::RequiresFpuRegister());
2229 locations->SetInAt(1, Location::RequiresFpuRegister());
2230 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2231 break;
2232 }
2233
2234 default:
2235 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2236 }
2237}
2238
2239void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) {
2240 LocationSummary* locations = div->GetLocations();
2241 Location out = locations->Out();
2242 Location first = locations->InAt(0);
2243 Location second = locations->InAt(1);
2244
2245 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002246 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002247 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2248 __ sdiv(out.AsRegister<Register>(),
2249 first.AsRegister<Register>(),
2250 second.AsRegister<Register>());
2251 } else {
2252 InvokeRuntimeCallingConvention calling_convention;
2253 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2254 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2255 DCHECK_EQ(R0, out.AsRegister<Register>());
2256
2257 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), div, div->GetDexPc(), nullptr);
2258 }
Calin Juravled0d48522014-11-04 16:40:20 +00002259 break;
2260 }
2261
Calin Juravle7c4954d2014-10-28 16:57:40 +00002262 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002263 InvokeRuntimeCallingConvention calling_convention;
2264 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2265 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2266 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2267 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2268 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002269 DCHECK_EQ(R1, out.AsRegisterPairHigh<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002270
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002271 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv), div, div->GetDexPc(), nullptr);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002272 break;
2273 }
2274
2275 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002276 __ vdivs(out.AsFpuRegister<SRegister>(),
2277 first.AsFpuRegister<SRegister>(),
2278 second.AsFpuRegister<SRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002279 break;
2280 }
2281
2282 case Primitive::kPrimDouble: {
2283 __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2284 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2285 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
2286 break;
2287 }
2288
2289 default:
2290 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2291 }
2292}
2293
Calin Juravlebacfec32014-11-14 15:54:36 +00002294void LocationsBuilderARM::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002295 Primitive::Type type = rem->GetResultType();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002296
2297 // Most remainders are implemented in the runtime.
2298 LocationSummary::CallKind call_kind = LocationSummary::kCall;
2299 if (rem->GetResultType() == Primitive::kPrimInt &&
2300 codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2301 // Have hardware divide instruction for int, do it with three instructions.
2302 call_kind = LocationSummary::kNoCall;
2303 }
2304
Calin Juravlebacfec32014-11-14 15:54:36 +00002305 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2306
Calin Juravled2ec87d2014-12-08 14:24:46 +00002307 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002308 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002309 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2310 locations->SetInAt(0, Location::RequiresRegister());
2311 locations->SetInAt(1, Location::RequiresRegister());
2312 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2313 locations->AddTemp(Location::RequiresRegister());
2314 } else {
2315 InvokeRuntimeCallingConvention calling_convention;
2316 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2317 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2318 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2319 // we only need the latter.
2320 locations->SetOut(Location::RegisterLocation(R1));
2321 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002322 break;
2323 }
2324 case Primitive::kPrimLong: {
2325 InvokeRuntimeCallingConvention calling_convention;
2326 locations->SetInAt(0, Location::RegisterPairLocation(
2327 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2328 locations->SetInAt(1, Location::RegisterPairLocation(
2329 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2330 // The runtime helper puts the output in R2,R3.
2331 locations->SetOut(Location::RegisterPairLocation(R2, R3));
2332 break;
2333 }
Calin Juravled2ec87d2014-12-08 14:24:46 +00002334 case Primitive::kPrimFloat: {
2335 InvokeRuntimeCallingConvention calling_convention;
2336 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
2337 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
2338 locations->SetOut(Location::FpuRegisterLocation(S0));
2339 break;
2340 }
2341
Calin Juravlebacfec32014-11-14 15:54:36 +00002342 case Primitive::kPrimDouble: {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002343 InvokeRuntimeCallingConvention calling_convention;
2344 locations->SetInAt(0, Location::FpuRegisterPairLocation(
2345 calling_convention.GetFpuRegisterAt(0), calling_convention.GetFpuRegisterAt(1)));
2346 locations->SetInAt(1, Location::FpuRegisterPairLocation(
2347 calling_convention.GetFpuRegisterAt(2), calling_convention.GetFpuRegisterAt(3)));
2348 locations->SetOut(Location::Location::FpuRegisterPairLocation(S0, S1));
Calin Juravlebacfec32014-11-14 15:54:36 +00002349 break;
2350 }
2351
2352 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002353 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002354 }
2355}
2356
2357void InstructionCodeGeneratorARM::VisitRem(HRem* rem) {
2358 LocationSummary* locations = rem->GetLocations();
2359 Location out = locations->Out();
2360 Location first = locations->InAt(0);
2361 Location second = locations->InAt(1);
2362
Calin Juravled2ec87d2014-12-08 14:24:46 +00002363 Primitive::Type type = rem->GetResultType();
2364 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002365 case Primitive::kPrimInt: {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002366 if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2367 Register reg1 = first.AsRegister<Register>();
2368 Register reg2 = second.AsRegister<Register>();
2369 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravlebacfec32014-11-14 15:54:36 +00002370
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002371 // temp = reg1 / reg2 (integer division)
2372 // temp = temp * reg2
2373 // dest = reg1 - temp
2374 __ sdiv(temp, reg1, reg2);
2375 __ mul(temp, temp, reg2);
2376 __ sub(out.AsRegister<Register>(), reg1, ShifterOperand(temp));
2377 } else {
2378 InvokeRuntimeCallingConvention calling_convention;
2379 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2380 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2381 DCHECK_EQ(R1, out.AsRegister<Register>());
2382
2383 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), rem, rem->GetDexPc(), nullptr);
2384 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002385 break;
2386 }
2387
2388 case Primitive::kPrimLong: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002389 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002390 break;
2391 }
2392
Calin Juravled2ec87d2014-12-08 14:24:46 +00002393 case Primitive::kPrimFloat: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002394 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmodf), rem, rem->GetDexPc(), nullptr);
Calin Juravled2ec87d2014-12-08 14:24:46 +00002395 break;
2396 }
2397
Calin Juravlebacfec32014-11-14 15:54:36 +00002398 case Primitive::kPrimDouble: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002399 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002400 break;
2401 }
2402
2403 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002404 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002405 }
2406}
2407
Calin Juravled0d48522014-11-04 16:40:20 +00002408void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2409 LocationSummary* locations =
2410 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002411 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Calin Juravled0d48522014-11-04 16:40:20 +00002412 if (instruction->HasUses()) {
2413 locations->SetOut(Location::SameAsFirstInput());
2414 }
2415}
2416
2417void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2418 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction);
2419 codegen_->AddSlowPath(slow_path);
2420
2421 LocationSummary* locations = instruction->GetLocations();
2422 Location value = locations->InAt(0);
2423
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002424 switch (instruction->GetType()) {
2425 case Primitive::kPrimInt: {
2426 if (value.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002427 __ cmp(value.AsRegister<Register>(), ShifterOperand(0));
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002428 __ b(slow_path->GetEntryLabel(), EQ);
2429 } else {
2430 DCHECK(value.IsConstant()) << value;
2431 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2432 __ b(slow_path->GetEntryLabel());
2433 }
2434 }
2435 break;
2436 }
2437 case Primitive::kPrimLong: {
2438 if (value.IsRegisterPair()) {
2439 __ orrs(IP,
2440 value.AsRegisterPairLow<Register>(),
2441 ShifterOperand(value.AsRegisterPairHigh<Register>()));
2442 __ b(slow_path->GetEntryLabel(), EQ);
2443 } else {
2444 DCHECK(value.IsConstant()) << value;
2445 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2446 __ b(slow_path->GetEntryLabel());
2447 }
2448 }
2449 break;
2450 default:
2451 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2452 }
2453 }
Calin Juravled0d48522014-11-04 16:40:20 +00002454}
2455
Calin Juravle9aec02f2014-11-18 23:06:35 +00002456void LocationsBuilderARM::HandleShift(HBinaryOperation* op) {
2457 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2458
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002459 LocationSummary* locations =
2460 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002461
2462 switch (op->GetResultType()) {
2463 case Primitive::kPrimInt: {
2464 locations->SetInAt(0, Location::RequiresRegister());
2465 locations->SetInAt(1, Location::RegisterOrConstant(op->InputAt(1)));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002466 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002467 break;
2468 }
2469 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002470 locations->SetInAt(0, Location::RequiresRegister());
2471 locations->SetInAt(1, Location::RequiresRegister());
2472 locations->AddTemp(Location::RequiresRegister());
2473 locations->SetOut(Location::RequiresRegister());
Calin Juravle9aec02f2014-11-18 23:06:35 +00002474 break;
2475 }
2476 default:
2477 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2478 }
2479}
2480
2481void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) {
2482 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2483
2484 LocationSummary* locations = op->GetLocations();
2485 Location out = locations->Out();
2486 Location first = locations->InAt(0);
2487 Location second = locations->InAt(1);
2488
2489 Primitive::Type type = op->GetResultType();
2490 switch (type) {
2491 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002492 Register out_reg = out.AsRegister<Register>();
2493 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002494 // Arm doesn't mask the shift count so we need to do it ourselves.
2495 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002496 Register second_reg = second.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002497 __ and_(second_reg, second_reg, ShifterOperand(kMaxIntShiftValue));
2498 if (op->IsShl()) {
2499 __ Lsl(out_reg, first_reg, second_reg);
2500 } else if (op->IsShr()) {
2501 __ Asr(out_reg, first_reg, second_reg);
2502 } else {
2503 __ Lsr(out_reg, first_reg, second_reg);
2504 }
2505 } else {
2506 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
2507 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue);
2508 if (shift_value == 0) { // arm does not support shifting with 0 immediate.
2509 __ Mov(out_reg, first_reg);
2510 } else if (op->IsShl()) {
2511 __ Lsl(out_reg, first_reg, shift_value);
2512 } else if (op->IsShr()) {
2513 __ Asr(out_reg, first_reg, shift_value);
2514 } else {
2515 __ Lsr(out_reg, first_reg, shift_value);
2516 }
2517 }
2518 break;
2519 }
2520 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002521 Register o_h = out.AsRegisterPairHigh<Register>();
2522 Register o_l = out.AsRegisterPairLow<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00002523
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002524 Register temp = locations->GetTemp(0).AsRegister<Register>();
2525
2526 Register high = first.AsRegisterPairHigh<Register>();
2527 Register low = first.AsRegisterPairLow<Register>();
2528
2529 Register second_reg = second.AsRegister<Register>();
2530
Calin Juravle9aec02f2014-11-18 23:06:35 +00002531 if (op->IsShl()) {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002532 // Shift the high part
2533 __ and_(second_reg, second_reg, ShifterOperand(63));
2534 __ Lsl(o_h, high, second_reg);
2535 // Shift the low part and `or` what overflew on the high part
2536 __ rsb(temp, second_reg, ShifterOperand(32));
2537 __ Lsr(temp, low, temp);
2538 __ orr(o_h, o_h, ShifterOperand(temp));
2539 // If the shift is > 32 bits, override the high part
2540 __ subs(temp, second_reg, ShifterOperand(32));
2541 __ it(PL);
2542 __ Lsl(o_h, low, temp, false, PL);
2543 // Shift the low part
2544 __ Lsl(o_l, low, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002545 } else if (op->IsShr()) {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002546 // Shift the low part
2547 __ and_(second_reg, second_reg, ShifterOperand(63));
2548 __ Lsr(o_l, low, second_reg);
2549 // Shift the high part and `or` what underflew on the low part
2550 __ rsb(temp, second_reg, ShifterOperand(32));
2551 __ Lsl(temp, high, temp);
2552 __ orr(o_l, o_l, ShifterOperand(temp));
2553 // If the shift is > 32 bits, override the low part
2554 __ subs(temp, second_reg, ShifterOperand(32));
2555 __ it(PL);
2556 __ Asr(o_l, high, temp, false, PL);
2557 // Shift the high part
2558 __ Asr(o_h, high, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002559 } else {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002560 // same as Shr except we use `Lsr`s and not `Asr`s
2561 __ and_(second_reg, second_reg, ShifterOperand(63));
2562 __ Lsr(o_l, low, second_reg);
2563 __ rsb(temp, second_reg, ShifterOperand(32));
2564 __ Lsl(temp, high, temp);
2565 __ orr(o_l, o_l, ShifterOperand(temp));
2566 __ subs(temp, second_reg, ShifterOperand(32));
2567 __ it(PL);
2568 __ Lsr(o_l, high, temp, false, PL);
2569 __ Lsr(o_h, high, second_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002570 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00002571 break;
2572 }
2573 default:
2574 LOG(FATAL) << "Unexpected operation type " << type;
2575 }
2576}
2577
2578void LocationsBuilderARM::VisitShl(HShl* shl) {
2579 HandleShift(shl);
2580}
2581
2582void InstructionCodeGeneratorARM::VisitShl(HShl* shl) {
2583 HandleShift(shl);
2584}
2585
2586void LocationsBuilderARM::VisitShr(HShr* shr) {
2587 HandleShift(shr);
2588}
2589
2590void InstructionCodeGeneratorARM::VisitShr(HShr* shr) {
2591 HandleShift(shr);
2592}
2593
2594void LocationsBuilderARM::VisitUShr(HUShr* ushr) {
2595 HandleShift(ushr);
2596}
2597
2598void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) {
2599 HandleShift(ushr);
2600}
2601
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002602void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002603 LocationSummary* locations =
2604 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002605 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002606 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2607 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2608 locations->SetOut(Location::RegisterLocation(R0));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002609}
2610
2611void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) {
2612 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002613 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002614 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002615 codegen_->InvokeRuntime(GetThreadOffset<kArmWordSize>(instruction->GetEntrypoint()).Int32Value(),
2616 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002617 instruction->GetDexPc(),
2618 nullptr);
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002619}
2620
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002621void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) {
2622 LocationSummary* locations =
2623 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2624 InvokeRuntimeCallingConvention calling_convention;
2625 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002626 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002627 locations->SetOut(Location::RegisterLocation(R0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002628 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002629}
2630
2631void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) {
2632 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002633 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(2));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002634 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002635 codegen_->InvokeRuntime(GetThreadOffset<kArmWordSize>(instruction->GetEntrypoint()).Int32Value(),
2636 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002637 instruction->GetDexPc(),
2638 nullptr);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002639}
2640
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002641void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002642 LocationSummary* locations =
2643 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002644 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2645 if (location.IsStackSlot()) {
2646 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2647 } else if (location.IsDoubleStackSlot()) {
2648 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002649 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002650 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002651}
2652
2653void InstructionCodeGeneratorARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002654 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002655 UNUSED(instruction);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002656}
2657
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002658void LocationsBuilderARM::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002659 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002660 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002661 locations->SetInAt(0, Location::RequiresRegister());
2662 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002663}
2664
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002665void InstructionCodeGeneratorARM::VisitNot(HNot* not_) {
2666 LocationSummary* locations = not_->GetLocations();
2667 Location out = locations->Out();
2668 Location in = locations->InAt(0);
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002669 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002670 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00002671 __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002672 break;
2673
2674 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01002675 __ mvn(out.AsRegisterPairLow<Register>(),
2676 ShifterOperand(in.AsRegisterPairLow<Register>()));
2677 __ mvn(out.AsRegisterPairHigh<Register>(),
2678 ShifterOperand(in.AsRegisterPairHigh<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002679 break;
2680
2681 default:
2682 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2683 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002684}
2685
David Brazdil66d126e2015-04-03 16:02:44 +01002686void LocationsBuilderARM::VisitBooleanNot(HBooleanNot* bool_not) {
2687 LocationSummary* locations =
2688 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
2689 locations->SetInAt(0, Location::RequiresRegister());
2690 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2691}
2692
2693void InstructionCodeGeneratorARM::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01002694 LocationSummary* locations = bool_not->GetLocations();
2695 Location out = locations->Out();
2696 Location in = locations->InAt(0);
2697 __ eor(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(1));
2698}
2699
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002700void LocationsBuilderARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002701 LocationSummary* locations =
2702 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00002703 switch (compare->InputAt(0)->GetType()) {
2704 case Primitive::kPrimLong: {
2705 locations->SetInAt(0, Location::RequiresRegister());
2706 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002707 // Output overlaps because it is written before doing the low comparison.
2708 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Calin Juravleddb7df22014-11-25 20:56:51 +00002709 break;
2710 }
2711 case Primitive::kPrimFloat:
2712 case Primitive::kPrimDouble: {
2713 locations->SetInAt(0, Location::RequiresFpuRegister());
2714 locations->SetInAt(1, Location::RequiresFpuRegister());
2715 locations->SetOut(Location::RequiresRegister());
2716 break;
2717 }
2718 default:
2719 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
2720 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002721}
2722
2723void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002724 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002725 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00002726 Location left = locations->InAt(0);
2727 Location right = locations->InAt(1);
2728
2729 Label less, greater, done;
2730 Primitive::Type type = compare->InputAt(0)->GetType();
2731 switch (type) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002732 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002733 __ cmp(left.AsRegisterPairHigh<Register>(),
2734 ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002735 __ b(&less, LT);
2736 __ b(&greater, GT);
Calin Juravleddb7df22014-11-25 20:56:51 +00002737 // Do LoadImmediate before any `cmp`, as LoadImmediate might affect the status flags.
2738 __ LoadImmediate(out, 0);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002739 __ cmp(left.AsRegisterPairLow<Register>(),
2740 ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare.
Calin Juravleddb7df22014-11-25 20:56:51 +00002741 break;
2742 }
2743 case Primitive::kPrimFloat:
2744 case Primitive::kPrimDouble: {
2745 __ LoadImmediate(out, 0);
2746 if (type == Primitive::kPrimFloat) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002747 __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00002748 } else {
2749 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
2750 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
2751 }
2752 __ vmstat(); // transfer FP status register to ARM APSR.
2753 __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002754 break;
2755 }
2756 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00002757 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002758 }
Calin Juravleddb7df22014-11-25 20:56:51 +00002759 __ b(&done, EQ);
2760 __ b(&less, CC); // CC is for both: unsigned compare for longs and 'less than' for floats.
2761
2762 __ Bind(&greater);
2763 __ LoadImmediate(out, 1);
2764 __ b(&done);
2765
2766 __ Bind(&less);
2767 __ LoadImmediate(out, -1);
2768
2769 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002770}
2771
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002772void LocationsBuilderARM::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002773 LocationSummary* locations =
2774 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01002775 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2776 locations->SetInAt(i, Location::Any());
2777 }
2778 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002779}
2780
2781void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002782 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002783 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002784}
2785
Calin Juravle52c48962014-12-16 17:02:57 +00002786void InstructionCodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) {
2787 // TODO (ported from quick): revisit Arm barrier kinds
2788 DmbOptions flavour = DmbOptions::ISH; // quiet c++ warnings
2789 switch (kind) {
2790 case MemBarrierKind::kAnyStore:
2791 case MemBarrierKind::kLoadAny:
2792 case MemBarrierKind::kAnyAny: {
2793 flavour = DmbOptions::ISH;
2794 break;
2795 }
2796 case MemBarrierKind::kStoreStore: {
2797 flavour = DmbOptions::ISHST;
2798 break;
2799 }
2800 default:
2801 LOG(FATAL) << "Unexpected memory barrier " << kind;
2802 }
2803 __ dmb(flavour);
2804}
2805
2806void InstructionCodeGeneratorARM::GenerateWideAtomicLoad(Register addr,
2807 uint32_t offset,
2808 Register out_lo,
2809 Register out_hi) {
2810 if (offset != 0) {
2811 __ LoadImmediate(out_lo, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00002812 __ add(IP, addr, ShifterOperand(out_lo));
2813 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00002814 }
2815 __ ldrexd(out_lo, out_hi, addr);
2816}
2817
2818void InstructionCodeGeneratorARM::GenerateWideAtomicStore(Register addr,
2819 uint32_t offset,
2820 Register value_lo,
2821 Register value_hi,
2822 Register temp1,
Calin Juravle77520bc2015-01-12 18:45:46 +00002823 Register temp2,
2824 HInstruction* instruction) {
Calin Juravle52c48962014-12-16 17:02:57 +00002825 Label fail;
2826 if (offset != 0) {
2827 __ LoadImmediate(temp1, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00002828 __ add(IP, addr, ShifterOperand(temp1));
2829 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00002830 }
2831 __ Bind(&fail);
2832 // We need a load followed by store. (The address used in a STREX instruction must
2833 // be the same as the address in the most recently executed LDREX instruction.)
2834 __ ldrexd(temp1, temp2, addr);
Calin Juravle77520bc2015-01-12 18:45:46 +00002835 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002836 __ strexd(temp1, value_lo, value_hi, addr);
2837 __ cmp(temp1, ShifterOperand(0));
2838 __ b(&fail, NE);
2839}
2840
2841void LocationsBuilderARM::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
2842 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2843
Nicolas Geoffray39468442014-09-02 15:17:15 +01002844 LocationSummary* locations =
2845 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002846 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002847
Calin Juravle52c48962014-12-16 17:02:57 +00002848 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002849 if (Primitive::IsFloatingPointType(field_type)) {
2850 locations->SetInAt(1, Location::RequiresFpuRegister());
2851 } else {
2852 locations->SetInAt(1, Location::RequiresRegister());
2853 }
2854
Calin Juravle52c48962014-12-16 17:02:57 +00002855 bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble;
Calin Juravle34166012014-12-19 17:22:29 +00002856 bool generate_volatile = field_info.IsVolatile()
2857 && is_wide
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002858 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002859 // Temporary registers for the write barrier.
Calin Juravle52c48962014-12-16 17:02:57 +00002860 // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark.
2861 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002862 locations->AddTemp(Location::RequiresRegister());
2863 locations->AddTemp(Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00002864 } else if (generate_volatile) {
Calin Juravle52c48962014-12-16 17:02:57 +00002865 // Arm encoding have some additional constraints for ldrexd/strexd:
2866 // - registers need to be consecutive
2867 // - the first register should be even but not R14.
2868 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
2869 // enable Arm encoding.
2870 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
2871
2872 locations->AddTemp(Location::RequiresRegister());
2873 locations->AddTemp(Location::RequiresRegister());
2874 if (field_type == Primitive::kPrimDouble) {
2875 // For doubles we need two more registers to copy the value.
2876 locations->AddTemp(Location::RegisterLocation(R2));
2877 locations->AddTemp(Location::RegisterLocation(R3));
2878 }
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002879 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002880}
2881
Calin Juravle52c48962014-12-16 17:02:57 +00002882void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction,
2883 const FieldInfo& field_info) {
2884 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
2885
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002886 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00002887 Register base = locations->InAt(0).AsRegister<Register>();
2888 Location value = locations->InAt(1);
2889
2890 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002891 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00002892 Primitive::Type field_type = field_info.GetFieldType();
2893 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
2894
2895 if (is_volatile) {
2896 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
2897 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002898
2899 switch (field_type) {
2900 case Primitive::kPrimBoolean:
2901 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00002902 __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002903 break;
2904 }
2905
2906 case Primitive::kPrimShort:
2907 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00002908 __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002909 break;
2910 }
2911
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002912 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002913 case Primitive::kPrimNot: {
Calin Juravle77520bc2015-01-12 18:45:46 +00002914 __ StoreToOffset(kStoreWord, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002915 break;
2916 }
2917
2918 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00002919 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002920 GenerateWideAtomicStore(base, offset,
2921 value.AsRegisterPairLow<Register>(),
2922 value.AsRegisterPairHigh<Register>(),
2923 locations->GetTemp(0).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002924 locations->GetTemp(1).AsRegister<Register>(),
2925 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002926 } else {
2927 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002928 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002929 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002930 break;
2931 }
2932
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002933 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00002934 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002935 break;
2936 }
2937
2938 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00002939 DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00002940 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00002941 Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>();
2942 Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>();
2943
2944 __ vmovrrd(value_reg_lo, value_reg_hi, value_reg);
2945
2946 GenerateWideAtomicStore(base, offset,
2947 value_reg_lo,
2948 value_reg_hi,
2949 locations->GetTemp(2).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00002950 locations->GetTemp(3).AsRegister<Register>(),
2951 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002952 } else {
2953 __ StoreDToOffset(value_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00002954 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00002955 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002956 break;
2957 }
2958
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002959 case Primitive::kPrimVoid:
2960 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07002961 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002962 }
Calin Juravle52c48962014-12-16 17:02:57 +00002963
Calin Juravle77520bc2015-01-12 18:45:46 +00002964 // Longs and doubles are handled in the switch.
2965 if (field_type != Primitive::kPrimLong && field_type != Primitive::kPrimDouble) {
2966 codegen_->MaybeRecordImplicitNullCheck(instruction);
2967 }
2968
2969 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
2970 Register temp = locations->GetTemp(0).AsRegister<Register>();
2971 Register card = locations->GetTemp(1).AsRegister<Register>();
2972 codegen_->MarkGCCard(temp, card, base, value.AsRegister<Register>());
2973 }
2974
Calin Juravle52c48962014-12-16 17:02:57 +00002975 if (is_volatile) {
2976 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2977 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002978}
2979
Calin Juravle52c48962014-12-16 17:02:57 +00002980void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
2981 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01002982 LocationSummary* locations =
2983 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002984 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00002985
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002986 bool volatile_for_double = field_info.IsVolatile()
Calin Juravle34166012014-12-19 17:22:29 +00002987 && (field_info.GetFieldType() == Primitive::kPrimDouble)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002988 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002989 bool overlap = field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong);
Nicolas Geoffrayacc0b8e2015-04-20 12:39:57 +01002990
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002991 if (Primitive::IsFloatingPointType(instruction->GetType())) {
2992 locations->SetOut(Location::RequiresFpuRegister());
2993 } else {
2994 locations->SetOut(Location::RequiresRegister(),
2995 (overlap ? Location::kOutputOverlap : Location::kNoOutputOverlap));
2996 }
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002997 if (volatile_for_double) {
Calin Juravle52c48962014-12-16 17:02:57 +00002998 // Arm encoding have some additional constraints for ldrexd/strexd:
2999 // - registers need to be consecutive
3000 // - the first register should be even but not R14.
3001 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
3002 // enable Arm encoding.
3003 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
3004 locations->AddTemp(Location::RequiresRegister());
3005 locations->AddTemp(Location::RequiresRegister());
3006 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003007}
3008
Calin Juravle52c48962014-12-16 17:02:57 +00003009void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction,
3010 const FieldInfo& field_info) {
3011 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003012
Calin Juravle52c48962014-12-16 17:02:57 +00003013 LocationSummary* locations = instruction->GetLocations();
3014 Register base = locations->InAt(0).AsRegister<Register>();
3015 Location out = locations->Out();
3016 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003017 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00003018 Primitive::Type field_type = field_info.GetFieldType();
3019 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3020
3021 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003022 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003023 __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003024 break;
3025 }
3026
3027 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003028 __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003029 break;
3030 }
3031
3032 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003033 __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003034 break;
3035 }
3036
3037 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003038 __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003039 break;
3040 }
3041
3042 case Primitive::kPrimInt:
3043 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003044 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003045 break;
3046 }
3047
3048 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00003049 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003050 GenerateWideAtomicLoad(base, offset,
3051 out.AsRegisterPairLow<Register>(),
3052 out.AsRegisterPairHigh<Register>());
3053 } else {
3054 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset);
3055 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003056 break;
3057 }
3058
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003059 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003060 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003061 break;
3062 }
3063
3064 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003065 DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00003066 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003067 Register lo = locations->GetTemp(0).AsRegister<Register>();
3068 Register hi = locations->GetTemp(1).AsRegister<Register>();
3069 GenerateWideAtomicLoad(base, offset, lo, hi);
Calin Juravle77520bc2015-01-12 18:45:46 +00003070 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003071 __ vmovdrr(out_reg, lo, hi);
3072 } else {
3073 __ LoadDFromOffset(out_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003074 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003075 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003076 break;
3077 }
3078
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003079 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003080 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003081 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003082 }
Calin Juravle52c48962014-12-16 17:02:57 +00003083
Calin Juravle77520bc2015-01-12 18:45:46 +00003084 // Doubles are handled in the switch.
3085 if (field_type != Primitive::kPrimDouble) {
3086 codegen_->MaybeRecordImplicitNullCheck(instruction);
3087 }
3088
Calin Juravle52c48962014-12-16 17:02:57 +00003089 if (is_volatile) {
3090 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3091 }
3092}
3093
3094void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3095 HandleFieldSet(instruction, instruction->GetFieldInfo());
3096}
3097
3098void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3099 HandleFieldSet(instruction, instruction->GetFieldInfo());
3100}
3101
3102void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3103 HandleFieldGet(instruction, instruction->GetFieldInfo());
3104}
3105
3106void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3107 HandleFieldGet(instruction, instruction->GetFieldInfo());
3108}
3109
3110void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3111 HandleFieldGet(instruction, instruction->GetFieldInfo());
3112}
3113
3114void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3115 HandleFieldGet(instruction, instruction->GetFieldInfo());
3116}
3117
3118void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3119 HandleFieldSet(instruction, instruction->GetFieldInfo());
3120}
3121
3122void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3123 HandleFieldSet(instruction, instruction->GetFieldInfo());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003124}
3125
3126void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003127 LocationSummary* locations =
3128 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravle77520bc2015-01-12 18:45:46 +00003129 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003130 if (instruction->HasUses()) {
3131 locations->SetOut(Location::SameAsFirstInput());
3132 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003133}
3134
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003135void InstructionCodeGeneratorARM::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003136 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3137 return;
3138 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003139 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003140
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003141 __ LoadFromOffset(kLoadWord, IP, obj.AsRegister<Register>(), 0);
3142 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3143}
3144
3145void InstructionCodeGeneratorARM::GenerateExplicitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003146 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003147 codegen_->AddSlowPath(slow_path);
3148
3149 LocationSummary* locations = instruction->GetLocations();
3150 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003151
Calin Juravle77520bc2015-01-12 18:45:46 +00003152 __ cmp(obj.AsRegister<Register>(), ShifterOperand(0));
3153 __ b(slow_path->GetEntryLabel(), EQ);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003154}
3155
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003156void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
3157 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
3158 GenerateImplicitNullCheck(instruction);
3159 } else {
3160 GenerateExplicitNullCheck(instruction);
3161 }
3162}
3163
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003164void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003165 LocationSummary* locations =
3166 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003167 locations->SetInAt(0, Location::RequiresRegister());
3168 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003169 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3170 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3171 } else {
3172 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3173 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003174}
3175
3176void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
3177 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003178 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003179 Location index = locations->InAt(1);
3180
3181 switch (instruction->GetType()) {
3182 case Primitive::kPrimBoolean: {
3183 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003184 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003185 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003186 size_t offset =
3187 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003188 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
3189 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003190 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003191 __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset);
3192 }
3193 break;
3194 }
3195
3196 case Primitive::kPrimByte: {
3197 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003198 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003199 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003200 size_t offset =
3201 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003202 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
3203 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003204 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003205 __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset);
3206 }
3207 break;
3208 }
3209
3210 case Primitive::kPrimShort: {
3211 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003212 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003213 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003214 size_t offset =
3215 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003216 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
3217 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003218 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003219 __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset);
3220 }
3221 break;
3222 }
3223
3224 case Primitive::kPrimChar: {
3225 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003226 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003227 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003228 size_t offset =
3229 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003230 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
3231 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003232 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003233 __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset);
3234 }
3235 break;
3236 }
3237
3238 case Primitive::kPrimInt:
3239 case Primitive::kPrimNot: {
3240 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
3241 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003242 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003243 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003244 size_t offset =
3245 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003246 __ LoadFromOffset(kLoadWord, out, obj, offset);
3247 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003248 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003249 __ LoadFromOffset(kLoadWord, out, IP, data_offset);
3250 }
3251 break;
3252 }
3253
3254 case Primitive::kPrimLong: {
3255 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003256 Location out = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003257 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003258 size_t offset =
3259 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003260 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003261 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003262 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003263 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003264 }
3265 break;
3266 }
3267
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003268 case Primitive::kPrimFloat: {
3269 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3270 Location out = locations->Out();
3271 DCHECK(out.IsFpuRegister());
3272 if (index.IsConstant()) {
3273 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3274 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), obj, offset);
3275 } else {
3276 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3277 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), IP, data_offset);
3278 }
3279 break;
3280 }
3281
3282 case Primitive::kPrimDouble: {
3283 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3284 Location out = locations->Out();
3285 DCHECK(out.IsFpuRegisterPair());
3286 if (index.IsConstant()) {
3287 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3288 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3289 } else {
3290 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3291 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3292 }
3293 break;
3294 }
3295
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003296 case Primitive::kPrimVoid:
3297 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07003298 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003299 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003300 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003301}
3302
3303void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003304 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003305
3306 bool needs_write_barrier =
3307 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
3308 bool needs_runtime_call = instruction->NeedsTypeCheck();
3309
Nicolas Geoffray39468442014-09-02 15:17:15 +01003310 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003311 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
3312 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003313 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003314 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3315 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3316 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003317 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003318 locations->SetInAt(0, Location::RequiresRegister());
3319 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003320 if (Primitive::IsFloatingPointType(value_type)) {
3321 locations->SetInAt(2, Location::RequiresFpuRegister());
3322 } else {
3323 locations->SetInAt(2, Location::RequiresRegister());
3324 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003325
3326 if (needs_write_barrier) {
3327 // Temporary registers for the write barrier.
3328 locations->AddTemp(Location::RequiresRegister());
3329 locations->AddTemp(Location::RequiresRegister());
3330 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003331 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003332}
3333
3334void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
3335 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003336 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003337 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01003338 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003339 bool needs_runtime_call = locations->WillCall();
3340 bool needs_write_barrier =
3341 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003342
3343 switch (value_type) {
3344 case Primitive::kPrimBoolean:
3345 case Primitive::kPrimByte: {
3346 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003347 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003348 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003349 size_t offset =
3350 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003351 __ StoreToOffset(kStoreByte, value, obj, offset);
3352 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003353 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003354 __ StoreToOffset(kStoreByte, value, IP, data_offset);
3355 }
3356 break;
3357 }
3358
3359 case Primitive::kPrimShort:
3360 case Primitive::kPrimChar: {
3361 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003362 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003363 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003364 size_t offset =
3365 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003366 __ StoreToOffset(kStoreHalfword, value, obj, offset);
3367 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003368 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003369 __ StoreToOffset(kStoreHalfword, value, IP, data_offset);
3370 }
3371 break;
3372 }
3373
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003374 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003375 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003376 if (!needs_runtime_call) {
3377 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003378 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003379 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003380 size_t offset =
3381 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003382 __ StoreToOffset(kStoreWord, value, obj, offset);
3383 } else {
3384 DCHECK(index.IsRegister()) << index;
Roland Levillain271ab9c2014-11-27 15:23:57 +00003385 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003386 __ StoreToOffset(kStoreWord, value, IP, data_offset);
3387 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003388 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003389 if (needs_write_barrier) {
3390 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain271ab9c2014-11-27 15:23:57 +00003391 Register temp = locations->GetTemp(0).AsRegister<Register>();
3392 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003393 codegen_->MarkGCCard(temp, card, obj, value);
3394 }
3395 } else {
3396 DCHECK_EQ(value_type, Primitive::kPrimNot);
Roland Levillain199f3362014-11-27 17:15:16 +00003397 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
3398 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003399 instruction->GetDexPc(),
3400 nullptr);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003401 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003402 break;
3403 }
3404
3405 case Primitive::kPrimLong: {
3406 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003407 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003408 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003409 size_t offset =
3410 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003411 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003412 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003413 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003414 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003415 }
3416 break;
3417 }
3418
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003419 case Primitive::kPrimFloat: {
3420 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3421 Location value = locations->InAt(2);
3422 DCHECK(value.IsFpuRegister());
3423 if (index.IsConstant()) {
3424 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3425 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), obj, offset);
3426 } else {
3427 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3428 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), IP, data_offset);
3429 }
3430 break;
3431 }
3432
3433 case Primitive::kPrimDouble: {
3434 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3435 Location value = locations->InAt(2);
3436 DCHECK(value.IsFpuRegisterPair());
3437 if (index.IsConstant()) {
3438 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3439 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3440 } else {
3441 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3442 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3443 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003444
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003445 break;
3446 }
3447
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003448 case Primitive::kPrimVoid:
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003449 LOG(FATAL) << "Unreachable type " << value_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003450 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003451 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003452
3453 // Ints and objects are handled in the switch.
3454 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
3455 codegen_->MaybeRecordImplicitNullCheck(instruction);
3456 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003457}
3458
3459void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003460 LocationSummary* locations =
3461 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003462 locations->SetInAt(0, Location::RequiresRegister());
3463 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003464}
3465
3466void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
3467 LocationSummary* locations = instruction->GetLocations();
3468 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003469 Register obj = locations->InAt(0).AsRegister<Register>();
3470 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003471 __ LoadFromOffset(kLoadWord, out, obj, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003472 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003473}
3474
3475void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003476 LocationSummary* locations =
3477 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003478 locations->SetInAt(0, Location::RequiresRegister());
3479 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003480 if (instruction->HasUses()) {
3481 locations->SetOut(Location::SameAsFirstInput());
3482 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003483}
3484
3485void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
3486 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01003487 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(
Nicolas Geoffray39468442014-09-02 15:17:15 +01003488 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003489 codegen_->AddSlowPath(slow_path);
3490
Roland Levillain271ab9c2014-11-27 15:23:57 +00003491 Register index = locations->InAt(0).AsRegister<Register>();
3492 Register length = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003493
3494 __ cmp(index, ShifterOperand(length));
3495 __ b(slow_path->GetEntryLabel(), CS);
3496}
3497
3498void CodeGeneratorARM::MarkGCCard(Register temp, Register card, Register object, Register value) {
3499 Label is_null;
3500 __ CompareAndBranchIfZero(value, &is_null);
3501 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value());
3502 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
3503 __ strb(card, Address(card, temp));
3504 __ Bind(&is_null);
3505}
3506
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003507void LocationsBuilderARM::VisitTemporary(HTemporary* temp) {
3508 temp->SetLocations(nullptr);
3509}
3510
3511void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp) {
3512 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003513 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003514}
3515
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003516void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003517 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003518 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003519}
3520
3521void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003522 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3523}
3524
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003525void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
3526 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3527}
3528
3529void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003530 HBasicBlock* block = instruction->GetBlock();
3531 if (block->GetLoopInformation() != nullptr) {
3532 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3533 // The back edge will generate the suspend check.
3534 return;
3535 }
3536 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3537 // The goto will generate the suspend check.
3538 return;
3539 }
3540 GenerateSuspendCheck(instruction, nullptr);
3541}
3542
3543void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
3544 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003545 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01003546 down_cast<SuspendCheckSlowPathARM*>(instruction->GetSlowPath());
3547 if (slow_path == nullptr) {
3548 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
3549 instruction->SetSlowPath(slow_path);
3550 codegen_->AddSlowPath(slow_path);
3551 if (successor != nullptr) {
3552 DCHECK(successor->IsLoopHeader());
3553 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
3554 }
3555 } else {
3556 DCHECK_EQ(slow_path->GetSuccessor(), successor);
3557 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003558
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003559 __ LoadFromOffset(
3560 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value());
3561 __ cmp(IP, ShifterOperand(0));
3562 // TODO: Figure out the branch offsets and use cbz/cbnz.
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003563 if (successor == nullptr) {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003564 __ b(slow_path->GetEntryLabel(), NE);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003565 __ Bind(slow_path->GetReturnLabel());
3566 } else {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00003567 __ b(codegen_->GetLabelOf(successor), EQ);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01003568 __ b(slow_path->GetEntryLabel());
3569 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00003570}
3571
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003572ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
3573 return codegen_->GetAssembler();
3574}
3575
3576void ParallelMoveResolverARM::EmitMove(size_t index) {
3577 MoveOperands* move = moves_.Get(index);
3578 Location source = move->GetSource();
3579 Location destination = move->GetDestination();
3580
3581 if (source.IsRegister()) {
3582 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003583 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003584 } else {
3585 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00003586 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003587 SP, destination.GetStackIndex());
3588 }
3589 } else if (source.IsStackSlot()) {
3590 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003591 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003592 SP, source.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003593 } else if (destination.IsFpuRegister()) {
3594 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003595 } else {
3596 DCHECK(destination.IsStackSlot());
3597 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
3598 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3599 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003600 } else if (source.IsFpuRegister()) {
3601 if (destination.IsFpuRegister()) {
3602 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003603 } else {
3604 DCHECK(destination.IsStackSlot());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003605 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
3606 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003607 } else if (source.IsDoubleStackSlot()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003608 if (destination.IsDoubleStackSlot()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003609 __ LoadDFromOffset(DTMP, SP, source.GetStackIndex());
3610 __ StoreDToOffset(DTMP, SP, destination.GetStackIndex());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003611 } else if (destination.IsRegisterPair()) {
3612 DCHECK(ExpectedPairLayout(destination));
3613 __ LoadFromOffset(
3614 kLoadWordPair, destination.AsRegisterPairLow<Register>(), SP, source.GetStackIndex());
3615 } else {
3616 DCHECK(destination.IsFpuRegisterPair()) << destination;
3617 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3618 SP,
3619 source.GetStackIndex());
3620 }
3621 } else if (source.IsRegisterPair()) {
3622 if (destination.IsRegisterPair()) {
3623 __ Mov(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
3624 __ Mov(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
3625 } else {
3626 DCHECK(destination.IsDoubleStackSlot()) << destination;
3627 DCHECK(ExpectedPairLayout(source));
3628 __ StoreToOffset(
3629 kStoreWordPair, source.AsRegisterPairLow<Register>(), SP, destination.GetStackIndex());
3630 }
3631 } else if (source.IsFpuRegisterPair()) {
3632 if (destination.IsFpuRegisterPair()) {
3633 __ vmovd(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
3634 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
3635 } else {
3636 DCHECK(destination.IsDoubleStackSlot()) << destination;
3637 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
3638 SP,
3639 destination.GetStackIndex());
3640 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003641 } else {
3642 DCHECK(source.IsConstant()) << source;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003643 HConstant* constant = source.GetConstant();
3644 if (constant->IsIntConstant() || constant->IsNullConstant()) {
3645 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003646 if (destination.IsRegister()) {
3647 __ LoadImmediate(destination.AsRegister<Register>(), value);
3648 } else {
3649 DCHECK(destination.IsStackSlot());
3650 __ LoadImmediate(IP, value);
3651 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3652 }
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003653 } else if (constant->IsLongConstant()) {
3654 int64_t value = constant->AsLongConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003655 if (destination.IsRegisterPair()) {
3656 __ LoadImmediate(destination.AsRegisterPairLow<Register>(), Low32Bits(value));
3657 __ LoadImmediate(destination.AsRegisterPairHigh<Register>(), High32Bits(value));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003658 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003659 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003660 __ LoadImmediate(IP, Low32Bits(value));
3661 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3662 __ LoadImmediate(IP, High32Bits(value));
3663 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3664 }
3665 } else if (constant->IsDoubleConstant()) {
3666 double value = constant->AsDoubleConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003667 if (destination.IsFpuRegisterPair()) {
3668 __ LoadDImmediate(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003669 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003670 DCHECK(destination.IsDoubleStackSlot()) << destination;
3671 uint64_t int_value = bit_cast<uint64_t, double>(value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003672 __ LoadImmediate(IP, Low32Bits(int_value));
3673 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3674 __ LoadImmediate(IP, High32Bits(int_value));
3675 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
3676 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003677 } else {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003678 DCHECK(constant->IsFloatConstant()) << constant->DebugName();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003679 float value = constant->AsFloatConstant()->GetValue();
3680 if (destination.IsFpuRegister()) {
3681 __ LoadSImmediate(destination.AsFpuRegister<SRegister>(), value);
3682 } else {
3683 DCHECK(destination.IsStackSlot());
3684 __ LoadImmediate(IP, bit_cast<int32_t, float>(value));
3685 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
3686 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003687 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003688 }
3689}
3690
3691void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
3692 __ Mov(IP, reg);
3693 __ LoadFromOffset(kLoadWord, reg, SP, mem);
3694 __ StoreToOffset(kStoreWord, IP, SP, mem);
3695}
3696
3697void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
3698 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
3699 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
3700 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
3701 SP, mem1 + stack_offset);
3702 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
3703 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
3704 SP, mem2 + stack_offset);
3705 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
3706}
3707
3708void ParallelMoveResolverARM::EmitSwap(size_t index) {
3709 MoveOperands* move = moves_.Get(index);
3710 Location source = move->GetSource();
3711 Location destination = move->GetDestination();
3712
3713 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003714 DCHECK_NE(source.AsRegister<Register>(), IP);
3715 DCHECK_NE(destination.AsRegister<Register>(), IP);
3716 __ Mov(IP, source.AsRegister<Register>());
3717 __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>());
3718 __ Mov(destination.AsRegister<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003719 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003720 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003721 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003722 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003723 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
3724 Exchange(source.GetStackIndex(), destination.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003725 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003726 __ vmovrs(IP, source.AsFpuRegister<SRegister>());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003727 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>());
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003728 __ vmovsr(destination.AsFpuRegister<SRegister>(), IP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003729 } else if (source.IsRegisterPair() && destination.IsRegisterPair()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003730 __ vmovdrr(DTMP, source.AsRegisterPairLow<Register>(), source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003731 __ Mov(source.AsRegisterPairLow<Register>(), destination.AsRegisterPairLow<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003732 __ Mov(source.AsRegisterPairHigh<Register>(), destination.AsRegisterPairHigh<Register>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003733 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
3734 destination.AsRegisterPairHigh<Register>(),
3735 DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003736 } else if (source.IsRegisterPair() || destination.IsRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003737 Register low_reg = source.IsRegisterPair()
3738 ? source.AsRegisterPairLow<Register>()
3739 : destination.AsRegisterPairLow<Register>();
3740 int mem = source.IsRegisterPair()
3741 ? destination.GetStackIndex()
3742 : source.GetStackIndex();
3743 DCHECK(ExpectedPairLayout(source.IsRegisterPair() ? source : destination));
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003744 __ vmovdrr(DTMP, low_reg, static_cast<Register>(low_reg + 1));
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003745 __ LoadFromOffset(kLoadWordPair, low_reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003746 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003747 } else if (source.IsFpuRegisterPair() && destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003748 DRegister first = FromLowSToD(source.AsFpuRegisterPairLow<SRegister>());
3749 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003750 __ vmovd(DTMP, first);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003751 __ vmovd(first, second);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003752 __ vmovd(second, DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003753 } else if (source.IsFpuRegisterPair() || destination.IsFpuRegisterPair()) {
3754 DRegister reg = source.IsFpuRegisterPair()
3755 ? FromLowSToD(source.AsFpuRegisterPairLow<SRegister>())
3756 : FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
3757 int mem = source.IsFpuRegisterPair()
3758 ? destination.GetStackIndex()
3759 : source.GetStackIndex();
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003760 __ vmovd(DTMP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003761 __ LoadDFromOffset(reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00003762 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003763 } else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
3764 SRegister reg = source.IsFpuRegister() ? source.AsFpuRegister<SRegister>()
3765 : destination.AsFpuRegister<SRegister>();
3766 int mem = source.IsFpuRegister()
3767 ? destination.GetStackIndex()
3768 : source.GetStackIndex();
3769
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003770 __ vmovrs(IP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00003771 __ LoadSFromOffset(reg, SP, mem);
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00003772 __ StoreToOffset(kStoreWord, IP, SP, mem);
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003773 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003774 Exchange(source.GetStackIndex(), destination.GetStackIndex());
3775 Exchange(source.GetHighStackIndex(kArmWordSize), destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003776 } else {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00003777 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003778 }
3779}
3780
3781void ParallelMoveResolverARM::SpillScratch(int reg) {
3782 __ Push(static_cast<Register>(reg));
3783}
3784
3785void ParallelMoveResolverARM::RestoreScratch(int reg) {
3786 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01003787}
3788
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003789void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003790 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3791 ? LocationSummary::kCallOnSlowPath
3792 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003793 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003794 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003795 locations->SetOut(Location::RequiresRegister());
3796}
3797
3798void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003799 Register out = cls->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003800 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003801 DCHECK(!cls->CanCallRuntime());
3802 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003803 codegen_->LoadCurrentMethod(out);
3804 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3805 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003806 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003807 codegen_->LoadCurrentMethod(out);
3808 __ LoadFromOffset(
3809 kLoadWord, out, out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value());
3810 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003811
3812 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3813 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3814 codegen_->AddSlowPath(slow_path);
3815 __ cmp(out, ShifterOperand(0));
3816 __ b(slow_path->GetEntryLabel(), EQ);
3817 if (cls->MustGenerateClinitCheck()) {
3818 GenerateClassInitializationCheck(slow_path, out);
3819 } else {
3820 __ Bind(slow_path->GetExitLabel());
3821 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003822 }
3823}
3824
3825void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
3826 LocationSummary* locations =
3827 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3828 locations->SetInAt(0, Location::RequiresRegister());
3829 if (check->HasUses()) {
3830 locations->SetOut(Location::SameAsFirstInput());
3831 }
3832}
3833
3834void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003835 // We assume the class is not null.
3836 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3837 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003838 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00003839 GenerateClassInitializationCheck(slow_path,
3840 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003841}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003842
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003843void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
3844 SlowPathCodeARM* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003845 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
3846 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
3847 __ b(slow_path->GetEntryLabel(), LT);
3848 // Even if the initialized flag is set, we may be in a situation where caches are not synced
3849 // properly. Therefore, we do a memory fence.
3850 __ dmb(ISH);
3851 __ Bind(slow_path->GetExitLabel());
3852}
3853
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003854void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
3855 LocationSummary* locations =
3856 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3857 locations->SetOut(Location::RequiresRegister());
3858}
3859
3860void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
3861 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
3862 codegen_->AddSlowPath(slow_path);
3863
Roland Levillain271ab9c2014-11-27 15:23:57 +00003864 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003865 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08003866 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3867 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003868 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
3869 __ cmp(out, ShifterOperand(0));
3870 __ b(slow_path->GetEntryLabel(), EQ);
3871 __ Bind(slow_path->GetExitLabel());
3872}
3873
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003874void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
3875 LocationSummary* locations =
3876 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3877 locations->SetOut(Location::RequiresRegister());
3878}
3879
3880void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003881 Register out = load->GetLocations()->Out().AsRegister<Register>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003882 int32_t offset = Thread::ExceptionOffset<kArmWordSize>().Int32Value();
3883 __ LoadFromOffset(kLoadWord, out, TR, offset);
3884 __ LoadImmediate(IP, 0);
3885 __ StoreToOffset(kStoreWord, IP, TR, offset);
3886}
3887
3888void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
3889 LocationSummary* locations =
3890 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3891 InvokeRuntimeCallingConvention calling_convention;
3892 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3893}
3894
3895void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
3896 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003897 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003898}
3899
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003900void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003901 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
3902 ? LocationSummary::kNoCall
3903 : LocationSummary::kCallOnSlowPath;
3904 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3905 locations->SetInAt(0, Location::RequiresRegister());
3906 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003907 // The out register is used as a temporary, so it overlaps with the inputs.
3908 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003909}
3910
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003911void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003912 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003913 Register obj = locations->InAt(0).AsRegister<Register>();
3914 Register cls = locations->InAt(1).AsRegister<Register>();
3915 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003916 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3917 Label done, zero;
3918 SlowPathCodeARM* slow_path = nullptr;
3919
3920 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003921 // avoid null check if we know obj is not null.
3922 if (instruction->MustDoNullCheck()) {
3923 __ cmp(obj, ShifterOperand(0));
3924 __ b(&zero, EQ);
3925 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003926 // Compare the class of `obj` with `cls`.
3927 __ LoadFromOffset(kLoadWord, out, obj, class_offset);
3928 __ cmp(out, ShifterOperand(cls));
3929 if (instruction->IsClassFinal()) {
3930 // Classes must be equal for the instanceof to succeed.
3931 __ b(&zero, NE);
3932 __ LoadImmediate(out, 1);
3933 __ b(&done);
3934 } else {
3935 // If the classes are not equal, we go into a slow path.
3936 DCHECK(locations->OnlyCallsOnSlowPath());
3937 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003938 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003939 codegen_->AddSlowPath(slow_path);
3940 __ b(slow_path->GetEntryLabel(), NE);
3941 __ LoadImmediate(out, 1);
3942 __ b(&done);
3943 }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003944
3945 if (instruction->MustDoNullCheck() || instruction->IsClassFinal()) {
3946 __ Bind(&zero);
3947 __ LoadImmediate(out, 0);
3948 }
3949
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003950 if (slow_path != nullptr) {
3951 __ Bind(slow_path->GetExitLabel());
3952 }
3953 __ Bind(&done);
3954}
3955
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003956void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
3957 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3958 instruction, LocationSummary::kCallOnSlowPath);
3959 locations->SetInAt(0, Location::RequiresRegister());
3960 locations->SetInAt(1, Location::RequiresRegister());
3961 locations->AddTemp(Location::RequiresRegister());
3962}
3963
3964void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
3965 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003966 Register obj = locations->InAt(0).AsRegister<Register>();
3967 Register cls = locations->InAt(1).AsRegister<Register>();
3968 Register temp = locations->GetTemp(0).AsRegister<Register>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003969 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3970
3971 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
3972 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
3973 codegen_->AddSlowPath(slow_path);
3974
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003975 // avoid null check if we know obj is not null.
3976 if (instruction->MustDoNullCheck()) {
3977 __ cmp(obj, ShifterOperand(0));
3978 __ b(slow_path->GetExitLabel(), EQ);
3979 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003980 // Compare the class of `obj` with `cls`.
3981 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
3982 __ cmp(temp, ShifterOperand(cls));
3983 __ b(slow_path->GetEntryLabel(), NE);
3984 __ Bind(slow_path->GetExitLabel());
3985}
3986
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003987void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3988 LocationSummary* locations =
3989 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3990 InvokeRuntimeCallingConvention calling_convention;
3991 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3992}
3993
3994void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3995 codegen_->InvokeRuntime(instruction->IsEnter()
3996 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3997 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003998 instruction->GetDexPc(),
3999 nullptr);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00004000}
4001
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004002void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
4003void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
4004void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
4005
4006void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
4007 LocationSummary* locations =
4008 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
4009 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
4010 || instruction->GetResultType() == Primitive::kPrimLong);
4011 locations->SetInAt(0, Location::RequiresRegister());
4012 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00004013 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004014}
4015
4016void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
4017 HandleBitwiseOperation(instruction);
4018}
4019
4020void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
4021 HandleBitwiseOperation(instruction);
4022}
4023
4024void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
4025 HandleBitwiseOperation(instruction);
4026}
4027
4028void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
4029 LocationSummary* locations = instruction->GetLocations();
4030
4031 if (instruction->GetResultType() == Primitive::kPrimInt) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004032 Register first = locations->InAt(0).AsRegister<Register>();
4033 Register second = locations->InAt(1).AsRegister<Register>();
4034 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00004035 if (instruction->IsAnd()) {
4036 __ and_(out, first, ShifterOperand(second));
4037 } else if (instruction->IsOr()) {
4038 __ orr(out, first, ShifterOperand(second));
4039 } else {
4040 DCHECK(instruction->IsXor());
4041 __ eor(out, first, ShifterOperand(second));
4042 }
4043 } else {
4044 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
4045 Location first = locations->InAt(0);
4046 Location second = locations->InAt(1);
4047 Location out = locations->Out();
4048 if (instruction->IsAnd()) {
4049 __ and_(out.AsRegisterPairLow<Register>(),
4050 first.AsRegisterPairLow<Register>(),
4051 ShifterOperand(second.AsRegisterPairLow<Register>()));
4052 __ and_(out.AsRegisterPairHigh<Register>(),
4053 first.AsRegisterPairHigh<Register>(),
4054 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4055 } else if (instruction->IsOr()) {
4056 __ orr(out.AsRegisterPairLow<Register>(),
4057 first.AsRegisterPairLow<Register>(),
4058 ShifterOperand(second.AsRegisterPairLow<Register>()));
4059 __ orr(out.AsRegisterPairHigh<Register>(),
4060 first.AsRegisterPairHigh<Register>(),
4061 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4062 } else {
4063 DCHECK(instruction->IsXor());
4064 __ eor(out.AsRegisterPairLow<Register>(),
4065 first.AsRegisterPairLow<Register>(),
4066 ShifterOperand(second.AsRegisterPairLow<Register>()));
4067 __ eor(out.AsRegisterPairHigh<Register>(),
4068 first.AsRegisterPairHigh<Register>(),
4069 ShifterOperand(second.AsRegisterPairHigh<Register>()));
4070 }
4071 }
4072}
4073
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004074void CodeGeneratorARM::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Register temp) {
4075 DCHECK_EQ(temp, kArtMethodRegister);
4076
4077 // TODO: Implement all kinds of calls:
4078 // 1) boot -> boot
4079 // 2) app -> boot
4080 // 3) app -> app
4081 //
4082 // Currently we implement the app -> app logic, which looks up in the resolve cache.
4083
Jeff Hao848f70a2014-01-15 13:49:50 -08004084 if (invoke->IsStringInit()) {
4085 // temp = thread->string_init_entrypoint
4086 __ LoadFromOffset(kLoadWord, temp, TR, invoke->GetStringInitOffset());
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004087 // LR = temp[offset_of_quick_compiled_code]
4088 __ LoadFromOffset(kLoadWord, LR, temp,
4089 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
4090 kArmWordSize).Int32Value());
4091 // LR()
4092 __ blx(LR);
4093 } else {
Jeff Hao848f70a2014-01-15 13:49:50 -08004094 // temp = method;
4095 LoadCurrentMethod(temp);
4096 if (!invoke->IsRecursive()) {
4097 // temp = temp->dex_cache_resolved_methods_;
4098 __ LoadFromOffset(
4099 kLoadWord, temp, temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value());
4100 // temp = temp[index_in_cache]
4101 __ LoadFromOffset(
4102 kLoadWord, temp, temp, CodeGenerator::GetCacheOffset(invoke->GetDexMethodIndex()));
4103 // LR = temp[offset_of_quick_compiled_code]
4104 __ LoadFromOffset(kLoadWord, LR, temp,
4105 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
4106 kArmWordSize).Int32Value());
4107 // LR()
4108 __ blx(LR);
4109 } else {
4110 __ bl(GetFrameEntryLabel());
4111 }
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004112 }
4113
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08004114 DCHECK(!IsLeafMethod());
4115}
4116
Calin Juravleb1498f62015-02-16 13:13:29 +00004117void LocationsBuilderARM::VisitBoundType(HBoundType* instruction) {
4118 // Nothing to do, this should be removed during prepare for register allocator.
4119 UNUSED(instruction);
4120 LOG(FATAL) << "Unreachable";
4121}
4122
4123void InstructionCodeGeneratorARM::VisitBoundType(HBoundType* instruction) {
4124 // Nothing to do, this should be removed during prepare for register allocator.
4125 UNUSED(instruction);
4126 LOG(FATAL) << "Unreachable";
4127}
4128
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00004129} // namespace arm
4130} // namespace art