blob: 42f9ebaabc185dcae5114bf586ee2dcf265e838a [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
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070019#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010020#include "gc/accounting/card_table.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070021#include "mirror/array-inl.h"
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000022#include "mirror/art_method.h"
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +010023#include "mirror/class.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070024#include "thread.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010025#include "utils/arm/assembler_arm.h"
26#include "utils/arm/managed_register_arm.h"
Roland Levillain946e1432014-11-11 17:35:19 +000027#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010028#include "utils/stack_checks.h"
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000029
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000030namespace art {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010031
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000032namespace arm {
33
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +000034static DRegister FromLowSToD(SRegister reg) {
35 DCHECK_EQ(reg % 2, 0);
36 return static_cast<DRegister>(reg / 2);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +010037}
38
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010039static constexpr bool kExplicitStackOverflowCheck = false;
40
41static constexpr int kNumberOfPushedRegistersAtEntry = 1 + 2; // LR, R6, R7
42static constexpr int kCurrentMethodStackOffset = 0;
43
Calin Juravled6fb6cf2014-11-11 19:07:44 +000044static constexpr Register kRuntimeParameterCoreRegisters[] = { R0, R1, R2, R3 };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010045static constexpr size_t kRuntimeParameterCoreRegistersLength =
46 arraysize(kRuntimeParameterCoreRegisters);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +000047static constexpr SRegister kRuntimeParameterFpuRegisters[] = { };
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +010048static constexpr size_t kRuntimeParameterFpuRegistersLength = 0;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010049
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +000050class InvokeRuntimeCallingConvention : public CallingConvention<Register, SRegister> {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010051 public:
52 InvokeRuntimeCallingConvention()
53 : CallingConvention(kRuntimeParameterCoreRegisters,
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +010054 kRuntimeParameterCoreRegistersLength,
55 kRuntimeParameterFpuRegisters,
56 kRuntimeParameterFpuRegistersLength) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010057
58 private:
59 DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention);
60};
61
Nicolas Geoffraye5038322014-07-04 09:41:32 +010062#define __ reinterpret_cast<ArmAssembler*>(codegen->GetAssembler())->
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010063#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArmWordSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010064
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +010065class SlowPathCodeARM : public SlowPathCode {
66 public:
67 SlowPathCodeARM() : entry_label_(), exit_label_() {}
68
69 Label* GetEntryLabel() { return &entry_label_; }
70 Label* GetExitLabel() { return &exit_label_; }
71
72 private:
73 Label entry_label_;
74 Label exit_label_;
75
76 DISALLOW_COPY_AND_ASSIGN(SlowPathCodeARM);
77};
78
79class NullCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010080 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010081 explicit NullCheckSlowPathARM(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010082
Alexandre Rames67555f72014-11-18 10:55:16 +000083 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010084 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010085 __ Bind(GetEntryLabel());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010086 arm_codegen->InvokeRuntime(
87 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc());
Nicolas Geoffraye5038322014-07-04 09:41:32 +010088 }
89
90 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010091 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010092 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM);
93};
94
Calin Juravled0d48522014-11-04 16:40:20 +000095class DivZeroCheckSlowPathARM : public SlowPathCodeARM {
96 public:
97 explicit DivZeroCheckSlowPathARM(HDivZeroCheck* instruction) : instruction_(instruction) {}
98
Alexandre Rames67555f72014-11-18 10:55:16 +000099 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +0000100 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
101 __ Bind(GetEntryLabel());
102 arm_codegen->InvokeRuntime(
103 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc());
104 }
105
106 private:
107 HDivZeroCheck* const instruction_;
108 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM);
109};
110
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100111class StackOverflowCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100112 public:
113 StackOverflowCheckSlowPathARM() {}
114
Alexandre Rames67555f72014-11-18 10:55:16 +0000115 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100116 __ Bind(GetEntryLabel());
117 __ LoadFromOffset(kLoadWord, PC, TR,
118 QUICK_ENTRYPOINT_OFFSET(kArmWordSize, pThrowStackOverflow).Int32Value());
119 }
120
121 private:
122 DISALLOW_COPY_AND_ASSIGN(StackOverflowCheckSlowPathARM);
123};
124
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100125class SuspendCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000126 public:
Alexandre Rames67555f72014-11-18 10:55:16 +0000127 SuspendCheckSlowPathARM(HSuspendCheck* instruction, HBasicBlock* successor)
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100128 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000129
Alexandre Rames67555f72014-11-18 10:55:16 +0000130 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100131 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000132 __ Bind(GetEntryLabel());
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100133 codegen->SaveLiveRegisters(instruction_->GetLocations());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100134 arm_codegen->InvokeRuntime(
135 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc());
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100136 codegen->RestoreLiveRegisters(instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100137 if (successor_ == nullptr) {
138 __ b(GetReturnLabel());
139 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100140 __ b(arm_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100141 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000142 }
143
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100144 Label* GetReturnLabel() {
145 DCHECK(successor_ == nullptr);
146 return &return_label_;
147 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000148
149 private:
150 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100151 // If not null, the block to branch to after the suspend check.
152 HBasicBlock* const successor_;
153
154 // If `successor_` is null, the label to branch to after the suspend check.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000155 Label return_label_;
156
157 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM);
158};
159
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100160class BoundsCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100161 public:
Roland Levillain5799fc02014-09-25 12:15:20 +0100162 BoundsCheckSlowPathARM(HBoundsCheck* instruction,
163 Location index_location,
164 Location length_location)
Nicolas Geoffray39468442014-09-02 15:17:15 +0100165 : instruction_(instruction),
166 index_location_(index_location),
167 length_location_(length_location) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100168
Alexandre Rames67555f72014-11-18 10:55:16 +0000169 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100170 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100171 __ Bind(GetEntryLabel());
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000172 // We're moving two locations to locations that could overlap, so we need a parallel
173 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100174 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000175 codegen->EmitParallelMoves(
176 index_location_,
177 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
178 length_location_,
179 Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100180 arm_codegen->InvokeRuntime(
181 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100182 }
183
184 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100185 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100186 const Location index_location_;
187 const Location length_location_;
188
189 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM);
190};
191
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000192class LoadClassSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100193 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000194 LoadClassSlowPathARM(HLoadClass* cls,
195 HInstruction* at,
196 uint32_t dex_pc,
197 bool do_clinit)
198 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
199 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
200 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100201
Alexandre Rames67555f72014-11-18 10:55:16 +0000202 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000203 LocationSummary* locations = at_->GetLocations();
204
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100205 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
206 __ Bind(GetEntryLabel());
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000207 codegen->SaveLiveRegisters(locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100208
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100209 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000210 __ LoadImmediate(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100211 arm_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000212 int32_t entry_point_offset = do_clinit_
213 ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
214 : QUICK_ENTRY_POINT(pInitializeType);
215 arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_);
216
217 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000218 Location out = locations->Out();
219 if (out.IsValid()) {
220 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000221 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
222 }
223 codegen->RestoreLiveRegisters(locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100224 __ b(GetExitLabel());
225 }
226
227 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000228 // The class this slow path will load.
229 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100230
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000231 // The instruction where this slow path is happening.
232 // (Might be the load class or an initialization check).
233 HInstruction* const at_;
234
235 // The dex PC of `at_`.
236 const uint32_t dex_pc_;
237
238 // Whether to initialize the class.
239 const bool do_clinit_;
240
241 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100242};
243
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000244class LoadStringSlowPathARM : public SlowPathCodeARM {
245 public:
246 explicit LoadStringSlowPathARM(HLoadString* instruction) : instruction_(instruction) {}
247
Alexandre Rames67555f72014-11-18 10:55:16 +0000248 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000249 LocationSummary* locations = instruction_->GetLocations();
250 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
251
252 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
253 __ Bind(GetEntryLabel());
254 codegen->SaveLiveRegisters(locations);
255
256 InvokeRuntimeCallingConvention calling_convention;
257 arm_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(0));
258 __ LoadImmediate(calling_convention.GetRegisterAt(1), instruction_->GetStringIndex());
259 arm_codegen->InvokeRuntime(
260 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc());
261 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
262
263 codegen->RestoreLiveRegisters(locations);
264 __ b(GetExitLabel());
265 }
266
267 private:
268 HLoadString* const instruction_;
269
270 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM);
271};
272
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000273class TypeCheckSlowPathARM : public SlowPathCodeARM {
274 public:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000275 TypeCheckSlowPathARM(HInstruction* instruction,
276 Location class_to_check,
277 Location object_class,
278 uint32_t dex_pc)
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000279 : instruction_(instruction),
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000280 class_to_check_(class_to_check),
281 object_class_(object_class),
282 dex_pc_(dex_pc) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000283
Alexandre Rames67555f72014-11-18 10:55:16 +0000284 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000285 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000286 DCHECK(instruction_->IsCheckCast()
287 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000288
289 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
290 __ Bind(GetEntryLabel());
291 codegen->SaveLiveRegisters(locations);
292
293 // We're moving two locations to locations that could overlap, so we need a parallel
294 // move resolver.
295 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000296 codegen->EmitParallelMoves(
297 class_to_check_,
298 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
299 object_class_,
300 Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000301
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000302 if (instruction_->IsInstanceOf()) {
303 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_);
304 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
305 } else {
306 DCHECK(instruction_->IsCheckCast());
307 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_);
308 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000309
310 codegen->RestoreLiveRegisters(locations);
311 __ b(GetExitLabel());
312 }
313
314 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000315 HInstruction* const instruction_;
316 const Location class_to_check_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000317 const Location object_class_;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000318 uint32_t dex_pc_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000319
320 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM);
321};
322
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000323#undef __
324
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100325#undef __
326#define __ reinterpret_cast<ArmAssembler*>(GetAssembler())->
Dave Allison20dfc792014-06-16 20:44:29 -0700327
328inline Condition ARMCondition(IfCondition cond) {
329 switch (cond) {
330 case kCondEQ: return EQ;
331 case kCondNE: return NE;
332 case kCondLT: return LT;
333 case kCondLE: return LE;
334 case kCondGT: return GT;
335 case kCondGE: return GE;
336 default:
337 LOG(FATAL) << "Unknown if condition";
338 }
339 return EQ; // Unreachable.
340}
341
342inline Condition ARMOppositeCondition(IfCondition cond) {
343 switch (cond) {
344 case kCondEQ: return NE;
345 case kCondNE: return EQ;
346 case kCondLT: return GE;
347 case kCondLE: return GT;
348 case kCondGT: return LE;
349 case kCondGE: return LT;
350 default:
351 LOG(FATAL) << "Unknown if condition";
352 }
353 return EQ; // Unreachable.
354}
355
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100356void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const {
357 stream << ArmManagedRegister::FromCoreRegister(Register(reg));
358}
359
360void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000361 stream << ArmManagedRegister::FromSRegister(SRegister(reg));
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100362}
363
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100364size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
365 __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index);
366 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100367}
368
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100369size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
370 __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index);
371 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100372}
373
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100374CodeGeneratorARM::CodeGeneratorARM(HGraph* graph)
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000375 : CodeGenerator(graph, kNumberOfCoreRegisters, kNumberOfSRegisters, kNumberOfRegisterPairs),
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100376 block_labels_(graph->GetArena(), 0),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100377 location_builder_(graph, this),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100378 instruction_visitor_(graph, this),
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100379 move_resolver_(graph->GetArena(), this),
380 assembler_(true) {}
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100381
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100382size_t CodeGeneratorARM::FrameEntrySpillSize() const {
383 return kNumberOfPushedRegistersAtEntry * kArmWordSize;
384}
385
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100386Location CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100387 switch (type) {
388 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100389 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100390 ArmManagedRegister pair =
391 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100392 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
393 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
394
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100395 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
396 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100397 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100398 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100399 }
400
401 case Primitive::kPrimByte:
402 case Primitive::kPrimBoolean:
403 case Primitive::kPrimChar:
404 case Primitive::kPrimShort:
405 case Primitive::kPrimInt:
406 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100407 int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100408 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100409 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
410 ArmManagedRegister current =
411 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
412 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100413 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100414 }
415 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100416 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100417 }
418
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000419 case Primitive::kPrimFloat: {
420 int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfSRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100421 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100422 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100423
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000424 case Primitive::kPrimDouble: {
Nicolas Geoffray3c035032014-10-28 10:46:40 +0000425 int reg = FindTwoFreeConsecutiveAlignedEntries(blocked_fpu_registers_, kNumberOfSRegisters);
426 DCHECK_EQ(reg % 2, 0);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000427 return Location::FpuRegisterPairLocation(reg, reg + 1);
428 }
429
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100430 case Primitive::kPrimVoid:
431 LOG(FATAL) << "Unreachable type " << type;
432 }
433
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100434 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100435}
436
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100437void CodeGeneratorARM::SetupBlockedRegisters() const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100438 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100439 blocked_register_pairs_[R1_R2] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100440
441 // Stack register, LR and PC are always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100442 blocked_core_registers_[SP] = true;
443 blocked_core_registers_[LR] = true;
444 blocked_core_registers_[PC] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100445
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100446 // Reserve thread register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100447 blocked_core_registers_[TR] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100448
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100449 // Reserve temp register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100450 blocked_core_registers_[IP] = true;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100451
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100452 // TODO: We currently don't use Quick's callee saved registers.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100453 // We always save and restore R6 and R7 to make sure we can use three
454 // register pairs for long operations.
Nicolas Geoffray44b819e2014-11-06 12:00:54 +0000455 blocked_core_registers_[R4] = true;
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100456 blocked_core_registers_[R5] = true;
457 blocked_core_registers_[R8] = true;
458 blocked_core_registers_[R10] = true;
459 blocked_core_registers_[R11] = true;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100460
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000461 blocked_fpu_registers_[S16] = true;
462 blocked_fpu_registers_[S17] = true;
463 blocked_fpu_registers_[S18] = true;
464 blocked_fpu_registers_[S19] = true;
465 blocked_fpu_registers_[S20] = true;
466 blocked_fpu_registers_[S21] = true;
467 blocked_fpu_registers_[S22] = true;
468 blocked_fpu_registers_[S23] = true;
Nicolas Geoffray3c035032014-10-28 10:46:40 +0000469 blocked_fpu_registers_[S24] = true;
470 blocked_fpu_registers_[S25] = true;
471 blocked_fpu_registers_[S26] = true;
472 blocked_fpu_registers_[S27] = true;
473 blocked_fpu_registers_[S28] = true;
474 blocked_fpu_registers_[S29] = true;
475 blocked_fpu_registers_[S30] = true;
476 blocked_fpu_registers_[S31] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100477
478 UpdateBlockedPairRegisters();
479}
480
481void CodeGeneratorARM::UpdateBlockedPairRegisters() const {
482 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
483 ArmManagedRegister current =
484 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
485 if (blocked_core_registers_[current.AsRegisterPairLow()]
486 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
487 blocked_register_pairs_[i] = true;
488 }
489 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100490}
491
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100492InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen)
493 : HGraphVisitor(graph),
494 assembler_(codegen->GetAssembler()),
495 codegen_(codegen) {}
496
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000497void CodeGeneratorARM::GenerateFrameEntry() {
Dave Allison648d7112014-07-25 16:15:27 -0700498 bool skip_overflow_check = IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100499 if (!skip_overflow_check) {
500 if (kExplicitStackOverflowCheck) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100501 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) StackOverflowCheckSlowPathARM();
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100502 AddSlowPath(slow_path);
503
504 __ LoadFromOffset(kLoadWord, IP, TR, Thread::StackEndOffset<kArmWordSize>().Int32Value());
505 __ cmp(SP, ShifterOperand(IP));
506 __ b(slow_path->GetEntryLabel(), CC);
507 } else {
508 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100509 __ LoadFromOffset(kLoadWord, IP, IP, 0);
Nicolas Geoffray39468442014-09-02 15:17:15 +0100510 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100511 }
512 }
513
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100514 core_spill_mask_ |= (1 << LR | 1 << R6 | 1 << R7);
515 __ PushList(1 << LR | 1 << R6 | 1 << R7);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +0000516
Nicolas Geoffrayf583e592014-04-07 13:20:42 +0100517 // The return PC has already been pushed on the stack.
Nicolas Geoffray707c8092014-04-04 10:50:14 +0100518 __ AddConstant(SP, -(GetFrameSize() - kNumberOfPushedRegistersAtEntry * kArmWordSize));
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100519 __ StoreToOffset(kStoreWord, R0, SP, 0);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000520}
521
522void CodeGeneratorARM::GenerateFrameExit() {
Nicolas Geoffray707c8092014-04-04 10:50:14 +0100523 __ AddConstant(SP, GetFrameSize() - kNumberOfPushedRegistersAtEntry * kArmWordSize);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100524 __ PopList(1 << PC | 1 << R6 | 1 << R7);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000525}
526
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100527void CodeGeneratorARM::Bind(HBasicBlock* block) {
528 __ Bind(GetLabelOf(block));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000529}
530
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100531Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
532 switch (load->GetType()) {
533 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100534 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100535 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
536 break;
537
538 case Primitive::kPrimInt:
539 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100540 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100541 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100542
543 case Primitive::kPrimBoolean:
544 case Primitive::kPrimByte:
545 case Primitive::kPrimChar:
546 case Primitive::kPrimShort:
547 case Primitive::kPrimVoid:
548 LOG(FATAL) << "Unexpected type " << load->GetType();
549 }
550
551 LOG(FATAL) << "Unreachable";
552 return Location();
553}
554
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100555Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
556 switch (type) {
557 case Primitive::kPrimBoolean:
558 case Primitive::kPrimByte:
559 case Primitive::kPrimChar:
560 case Primitive::kPrimShort:
561 case Primitive::kPrimInt:
562 case Primitive::kPrimNot: {
563 uint32_t index = gp_index_++;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000564 uint32_t stack_index = stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100565 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100566 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100567 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000568 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100569 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100570 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100571
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000572 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100573 uint32_t index = gp_index_;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000574 uint32_t stack_index = stack_index_;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100575 gp_index_ += 2;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000576 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100577 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100578 ArmManagedRegister pair = ArmManagedRegister::FromRegisterPair(
579 calling_convention.GetRegisterPairAt(index));
580 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100581 } else if (index + 1 == calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray0a6c4592014-10-30 16:37:57 +0000582 return Location::QuickParameter(index, stack_index);
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100583 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000584 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
585 }
586 }
587
588 case Primitive::kPrimFloat: {
589 uint32_t stack_index = stack_index_++;
590 if (float_index_ % 2 == 0) {
591 float_index_ = std::max(double_index_, float_index_);
592 }
593 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) {
594 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++));
595 } else {
596 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
597 }
598 }
599
600 case Primitive::kPrimDouble: {
601 double_index_ = std::max(double_index_, RoundUp(float_index_, 2));
602 uint32_t stack_index = stack_index_;
603 stack_index_ += 2;
604 if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) {
605 uint32_t index = double_index_;
606 double_index_ += 2;
607 return Location::FpuRegisterPairLocation(
608 calling_convention.GetFpuRegisterAt(index),
609 calling_convention.GetFpuRegisterAt(index + 1));
610 } else {
611 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100612 }
613 }
614
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100615 case Primitive::kPrimVoid:
616 LOG(FATAL) << "Unexpected parameter type " << type;
617 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100618 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100619 return Location();
620}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100621
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000622Location InvokeDexCallingConventionVisitor::GetReturnLocation(Primitive::Type type) {
623 switch (type) {
624 case Primitive::kPrimBoolean:
625 case Primitive::kPrimByte:
626 case Primitive::kPrimChar:
627 case Primitive::kPrimShort:
628 case Primitive::kPrimInt:
629 case Primitive::kPrimNot: {
630 return Location::RegisterLocation(R0);
631 }
632
633 case Primitive::kPrimFloat: {
634 return Location::FpuRegisterLocation(S0);
635 }
636
637 case Primitive::kPrimLong: {
638 return Location::RegisterPairLocation(R0, R1);
639 }
640
641 case Primitive::kPrimDouble: {
642 return Location::FpuRegisterPairLocation(S0, S1);
643 }
644
645 case Primitive::kPrimVoid:
646 return Location();
647 }
648 UNREACHABLE();
649 return Location();
650}
651
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100652void CodeGeneratorARM::Move32(Location destination, Location source) {
653 if (source.Equals(destination)) {
654 return;
655 }
656 if (destination.IsRegister()) {
657 if (source.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100658 __ Mov(destination.As<Register>(), source.As<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100659 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000660 __ vmovrs(destination.As<Register>(), source.As<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100661 } else {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100662 __ LoadFromOffset(kLoadWord, destination.As<Register>(), SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100663 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100664 } else if (destination.IsFpuRegister()) {
665 if (source.IsRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000666 __ vmovsr(destination.As<SRegister>(), source.As<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100667 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000668 __ vmovs(destination.As<SRegister>(), source.As<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100669 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000670 __ LoadSFromOffset(destination.As<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100671 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100672 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000673 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100674 if (source.IsRegister()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100675 __ StoreToOffset(kStoreWord, source.As<Register>(), SP, destination.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100676 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000677 __ StoreSToOffset(source.As<SRegister>(), SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100678 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000679 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100680 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
681 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100682 }
683 }
684}
685
686void CodeGeneratorARM::Move64(Location destination, Location source) {
687 if (source.Equals(destination)) {
688 return;
689 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100690 if (destination.IsRegisterPair()) {
691 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000692 EmitParallelMoves(
693 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
694 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
695 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
696 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()));
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100697 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000698 UNIMPLEMENTED(FATAL);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100699 } else if (source.IsQuickParameter()) {
Nicolas Geoffray0a6c4592014-10-30 16:37:57 +0000700 uint16_t register_index = source.GetQuickParameterRegisterIndex();
701 uint16_t stack_index = source.GetQuickParameterStackIndex();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100702 InvokeDexCallingConvention calling_convention;
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000703 EmitParallelMoves(
704 Location::RegisterLocation(calling_convention.GetRegisterAt(register_index)),
705 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
706 Location::StackSlot(
707 calling_convention.GetStackOffsetOf(stack_index + 1) + GetFrameSize()),
708 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100709 } else {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000710 // No conflict possible, so just do the moves.
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100711 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100712 if (destination.AsRegisterPairLow<Register>() == R1) {
713 DCHECK_EQ(destination.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100714 __ LoadFromOffset(kLoadWord, R1, SP, source.GetStackIndex());
715 __ LoadFromOffset(kLoadWord, R2, SP, source.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100716 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100717 __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100718 SP, source.GetStackIndex());
719 }
720 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000721 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100722 if (source.IsDoubleStackSlot()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000723 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
724 SP,
725 source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100726 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000727 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100728 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100729 } else if (destination.IsQuickParameter()) {
730 InvokeDexCallingConvention calling_convention;
Nicolas Geoffray0a6c4592014-10-30 16:37:57 +0000731 uint16_t register_index = destination.GetQuickParameterRegisterIndex();
732 uint16_t stack_index = destination.GetQuickParameterStackIndex();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100733 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000734 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100735 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000736 UNIMPLEMENTED(FATAL);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100737 } else {
738 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000739 EmitParallelMoves(
740 Location::StackSlot(source.GetStackIndex()),
741 Location::RegisterLocation(calling_convention.GetRegisterAt(register_index)),
742 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
743 Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index + 1)));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100744 }
745 } else {
746 DCHECK(destination.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100747 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000748 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100749 if (source.AsRegisterPairLow<Register>() == R1) {
750 DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100751 __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex());
752 __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100753 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100754 __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100755 SP, destination.GetStackIndex());
756 }
757 } else if (source.IsQuickParameter()) {
758 InvokeDexCallingConvention calling_convention;
Nicolas Geoffray0a6c4592014-10-30 16:37:57 +0000759 uint16_t register_index = source.GetQuickParameterRegisterIndex();
760 uint16_t stack_index = source.GetQuickParameterStackIndex();
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000761 // Just move the low part. The only time a source is a quick parameter is
762 // when moving the parameter to its stack locations. And the (Java) caller
763 // of this method has already done that.
Nicolas Geoffray0a6c4592014-10-30 16:37:57 +0000764 __ StoreToOffset(kStoreWord, calling_convention.GetRegisterAt(register_index),
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000765 SP, destination.GetStackIndex());
766 DCHECK_EQ(calling_convention.GetStackOffsetOf(stack_index + 1) + GetFrameSize(),
767 static_cast<size_t>(destination.GetHighStackIndex(kArmWordSize)));
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000768 } else if (source.IsFpuRegisterPair()) {
769 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
770 SP,
771 destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100772 } else {
773 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000774 EmitParallelMoves(
775 Location::StackSlot(source.GetStackIndex()),
776 Location::StackSlot(destination.GetStackIndex()),
777 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
778 Location::StackSlot(destination.GetHighStackIndex(kArmWordSize)));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100779 }
780 }
781}
782
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100783void CodeGeneratorARM::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100784 LocationSummary* locations = instruction->GetLocations();
785 if (locations != nullptr && locations->Out().Equals(location)) {
786 return;
787 }
788
Calin Juravlea21f5982014-11-13 15:53:04 +0000789 if (locations != nullptr && locations->Out().IsConstant()) {
790 HConstant* const_to_move = locations->Out().GetConstant();
791 if (const_to_move->IsIntConstant()) {
792 int32_t value = const_to_move->AsIntConstant()->GetValue();
793 if (location.IsRegister()) {
794 __ LoadImmediate(location.As<Register>(), value);
795 } else {
796 DCHECK(location.IsStackSlot());
797 __ LoadImmediate(IP, value);
798 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
799 }
800 } else if (const_to_move->IsLongConstant()) {
801 int64_t value = const_to_move->AsLongConstant()->GetValue();
802 if (location.IsRegisterPair()) {
803 __ LoadImmediate(location.AsRegisterPairLow<Register>(), Low32Bits(value));
804 __ LoadImmediate(location.AsRegisterPairHigh<Register>(), High32Bits(value));
805 } else {
806 DCHECK(location.IsDoubleStackSlot());
807 __ LoadImmediate(IP, Low32Bits(value));
808 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
809 __ LoadImmediate(IP, High32Bits(value));
810 __ StoreToOffset(kStoreWord, IP, SP, location.GetHighStackIndex(kArmWordSize));
811 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100812 }
Roland Levillain476df552014-10-09 17:51:36 +0100813 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100814 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
815 switch (instruction->GetType()) {
816 case Primitive::kPrimBoolean:
817 case Primitive::kPrimByte:
818 case Primitive::kPrimChar:
819 case Primitive::kPrimShort:
820 case Primitive::kPrimInt:
821 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100822 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100823 Move32(location, Location::StackSlot(stack_slot));
824 break;
825
826 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100827 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100828 Move64(location, Location::DoubleStackSlot(stack_slot));
829 break;
830
831 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100832 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100833 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000834 } else if (instruction->IsTemporary()) {
835 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +0000836 if (temp_location.IsStackSlot()) {
837 Move32(location, temp_location);
838 } else {
839 DCHECK(temp_location.IsDoubleStackSlot());
840 Move64(location, temp_location);
841 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000842 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100843 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100844 switch (instruction->GetType()) {
845 case Primitive::kPrimBoolean:
846 case Primitive::kPrimByte:
847 case Primitive::kPrimChar:
848 case Primitive::kPrimShort:
849 case Primitive::kPrimNot:
850 case Primitive::kPrimInt:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100851 case Primitive::kPrimFloat:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100852 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100853 break;
854
855 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100856 case Primitive::kPrimDouble:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100857 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100858 break;
859
860 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100861 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100862 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000863 }
864}
865
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100866void CodeGeneratorARM::InvokeRuntime(int32_t entry_point_offset,
867 HInstruction* instruction,
868 uint32_t dex_pc) {
869 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
870 __ blx(LR);
871 RecordPcInfo(instruction, dex_pc);
872 DCHECK(instruction->IsSuspendCheck()
873 || instruction->IsBoundsCheck()
874 || instruction->IsNullCheck()
Calin Juravled0d48522014-11-04 16:40:20 +0000875 || instruction->IsDivZeroCheck()
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100876 || !IsLeafMethod());
877}
878
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000879void LocationsBuilderARM::VisitGoto(HGoto* got) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000880 got->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000881}
882
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000883void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000884 HBasicBlock* successor = got->GetSuccessor();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100885 DCHECK(!successor->IsExitBlock());
886
887 HBasicBlock* block = got->GetBlock();
888 HInstruction* previous = got->GetPrevious();
889
890 HLoopInformation* info = block->GetLoopInformation();
891 if (info != nullptr && info->IsBackEdge(block) && info->HasSuspendCheck()) {
892 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
893 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
894 return;
895 }
896
897 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
898 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
899 }
900 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000901 __ b(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000902 }
903}
904
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000905void LocationsBuilderARM::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000906 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000907}
908
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000909void InstructionCodeGeneratorARM::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -0700910 UNUSED(exit);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000911 if (kIsDebugBuild) {
912 __ Comment("Unreachable");
913 __ bkpt(0);
914 }
915}
916
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000917void LocationsBuilderARM::VisitIf(HIf* if_instr) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100918 LocationSummary* locations =
919 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100920 HInstruction* cond = if_instr->InputAt(0);
Nicolas Geoffray01ef3452014-10-01 11:32:17 +0100921 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100922 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100923 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000924}
925
Nicolas Geoffray787c3072014-03-17 10:20:19 +0000926void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) {
Dave Allison20dfc792014-06-16 20:44:29 -0700927 HInstruction* cond = if_instr->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100928 if (cond->IsIntConstant()) {
929 // Constant condition, statically compared against 1.
930 int32_t cond_value = cond->AsIntConstant()->GetValue();
931 if (cond_value == 1) {
932 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
933 if_instr->IfTrueSuccessor())) {
934 __ b(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100935 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100936 return;
937 } else {
938 DCHECK_EQ(cond_value, 0);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100939 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100940 } else {
941 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
942 // Condition has been materialized, compare the output to 0
943 DCHECK(if_instr->GetLocations()->InAt(0).IsRegister());
944 __ cmp(if_instr->GetLocations()->InAt(0).As<Register>(),
945 ShifterOperand(0));
946 __ b(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()), NE);
947 } else {
948 // Condition has not been materialized, use its inputs as the
949 // comparison and its condition as the branch condition.
950 LocationSummary* locations = cond->GetLocations();
951 if (locations->InAt(1).IsRegister()) {
952 __ cmp(locations->InAt(0).As<Register>(),
953 ShifterOperand(locations->InAt(1).As<Register>()));
954 } else {
955 DCHECK(locations->InAt(1).IsConstant());
956 int32_t value =
957 locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
958 ShifterOperand operand;
959 if (ShifterOperand::CanHoldArm(value, &operand)) {
960 __ cmp(locations->InAt(0).As<Register>(), ShifterOperand(value));
961 } else {
962 Register temp = IP;
963 __ LoadImmediate(temp, value);
964 __ cmp(locations->InAt(0).As<Register>(), ShifterOperand(temp));
965 }
966 }
967 __ b(codegen_->GetLabelOf(if_instr->IfTrueSuccessor()),
968 ARMCondition(cond->AsCondition()->GetCondition()));
969 }
Dave Allison20dfc792014-06-16 20:44:29 -0700970 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +0100971 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(),
972 if_instr->IfFalseSuccessor())) {
Dave Allison20dfc792014-06-16 20:44:29 -0700973 __ b(codegen_->GetLabelOf(if_instr->IfFalseSuccessor()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +0000974 }
975}
976
Dave Allison20dfc792014-06-16 20:44:29 -0700977
978void LocationsBuilderARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray39468442014-09-02 15:17:15 +0100979 LocationSummary* locations =
980 new (GetGraph()->GetArena()) LocationSummary(comp, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100981 locations->SetInAt(0, Location::RequiresRegister());
982 locations->SetInAt(1, Location::RegisterOrConstant(comp->InputAt(1)));
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100983 if (comp->NeedsMaterialization()) {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +0100984 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100985 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000986}
987
Dave Allison20dfc792014-06-16 20:44:29 -0700988void InstructionCodeGeneratorARM::VisitCondition(HCondition* comp) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100989 if (!comp->NeedsMaterialization()) return;
990
991 LocationSummary* locations = comp->GetLocations();
992 if (locations->InAt(1).IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100993 __ cmp(locations->InAt(0).As<Register>(),
994 ShifterOperand(locations->InAt(1).As<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100995 } else {
996 DCHECK(locations->InAt(1).IsConstant());
997 int32_t value = locations->InAt(1).GetConstant()->AsIntConstant()->GetValue();
998 ShifterOperand operand;
999 if (ShifterOperand::CanHoldArm(value, &operand)) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001000 __ cmp(locations->InAt(0).As<Register>(), ShifterOperand(value));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001001 } else {
1002 Register temp = IP;
1003 __ LoadImmediate(temp, value);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001004 __ cmp(locations->InAt(0).As<Register>(), ShifterOperand(temp));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001005 }
Dave Allison20dfc792014-06-16 20:44:29 -07001006 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001007 __ it(ARMCondition(comp->GetCondition()), kItElse);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001008 __ mov(locations->Out().As<Register>(), ShifterOperand(1),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001009 ARMCondition(comp->GetCondition()));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001010 __ mov(locations->Out().As<Register>(), ShifterOperand(0),
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001011 ARMOppositeCondition(comp->GetCondition()));
Dave Allison20dfc792014-06-16 20:44:29 -07001012}
1013
1014void LocationsBuilderARM::VisitEqual(HEqual* comp) {
1015 VisitCondition(comp);
1016}
1017
1018void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) {
1019 VisitCondition(comp);
1020}
1021
1022void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) {
1023 VisitCondition(comp);
1024}
1025
1026void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) {
1027 VisitCondition(comp);
1028}
1029
1030void LocationsBuilderARM::VisitLessThan(HLessThan* comp) {
1031 VisitCondition(comp);
1032}
1033
1034void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) {
1035 VisitCondition(comp);
1036}
1037
1038void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1039 VisitCondition(comp);
1040}
1041
1042void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1043 VisitCondition(comp);
1044}
1045
1046void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) {
1047 VisitCondition(comp);
1048}
1049
1050void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) {
1051 VisitCondition(comp);
1052}
1053
1054void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1055 VisitCondition(comp);
1056}
1057
1058void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1059 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001060}
1061
1062void LocationsBuilderARM::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001063 local->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001064}
1065
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001066void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) {
1067 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001068}
1069
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001070void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001071 load->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001072}
1073
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001074void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001075 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001076 UNUSED(load);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001077}
1078
1079void LocationsBuilderARM::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001080 LocationSummary* locations =
1081 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001082 switch (store->InputAt(1)->GetType()) {
1083 case Primitive::kPrimBoolean:
1084 case Primitive::kPrimByte:
1085 case Primitive::kPrimChar:
1086 case Primitive::kPrimShort:
1087 case Primitive::kPrimInt:
1088 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001089 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001090 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1091 break;
1092
1093 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001094 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001095 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1096 break;
1097
1098 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001099 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001100 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001101}
1102
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001103void InstructionCodeGeneratorARM::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001104 UNUSED(store);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001105}
1106
1107void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001108 LocationSummary* locations =
1109 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001110 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001111}
1112
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001113void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001114 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001115 UNUSED(constant);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001116}
1117
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001118void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001119 LocationSummary* locations =
1120 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001121 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001122}
1123
1124void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant) {
1125 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001126 UNUSED(constant);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001127}
1128
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001129void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) {
1130 LocationSummary* locations =
1131 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1132 locations->SetOut(Location::ConstantLocation(constant));
1133}
1134
1135void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant) {
1136 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001137 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001138}
1139
1140void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) {
1141 LocationSummary* locations =
1142 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1143 locations->SetOut(Location::ConstantLocation(constant));
1144}
1145
1146void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant) {
1147 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001148 UNUSED(constant);
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001149}
1150
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001151void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001152 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001153}
1154
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001155void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001156 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001157 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001158}
1159
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001160void LocationsBuilderARM::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001161 LocationSummary* locations =
1162 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001163 locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001164}
1165
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001166void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001167 UNUSED(ret);
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001168 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001169}
1170
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001171void LocationsBuilderARM::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001172 HandleInvoke(invoke);
1173}
1174
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001175void CodeGeneratorARM::LoadCurrentMethod(Register reg) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001176 __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001177}
1178
1179void InstructionCodeGeneratorARM::VisitInvokeStatic(HInvokeStatic* invoke) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001180 Register temp = invoke->GetLocations()->GetTemp(0).As<Register>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001181
1182 // TODO: Implement all kinds of calls:
1183 // 1) boot -> boot
1184 // 2) app -> boot
1185 // 3) app -> app
1186 //
1187 // Currently we implement the app -> app logic, which looks up in the resolve cache.
1188
1189 // temp = method;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001190 codegen_->LoadCurrentMethod(temp);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001191 // temp = temp->dex_cache_resolved_methods_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001192 __ LoadFromOffset(
1193 kLoadWord, temp, temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset().Int32Value());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001194 // temp = temp[index_in_cache]
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001195 __ LoadFromOffset(
1196 kLoadWord, temp, temp, CodeGenerator::GetCacheOffset(invoke->GetIndexInDexCache()));
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001197 // LR = temp[offset_of_quick_compiled_code]
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001198 __ LoadFromOffset(kLoadWord, LR, temp,
Mathieu Chartier2d721012014-11-10 11:08:06 -08001199 mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001200 kArmWordSize).Int32Value());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001201 // LR()
1202 __ blx(LR);
1203
1204 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1205 DCHECK(!codegen_->IsLeafMethod());
1206}
1207
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001208void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001209 LocationSummary* locations =
1210 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001211 locations->AddTemp(Location::RegisterLocation(R0));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001212
1213 InvokeDexCallingConventionVisitor calling_convention_visitor;
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01001214 for (size_t i = 0; i < invoke->InputCount(); i++) {
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001215 HInstruction* input = invoke->InputAt(i);
1216 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1217 }
1218
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001219 locations->SetOut(calling_convention_visitor.GetReturnLocation(invoke->GetType()));
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001220}
1221
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001222void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
1223 HandleInvoke(invoke);
1224}
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001225
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001226void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001227 Register temp = invoke->GetLocations()->GetTemp(0).As<Register>();
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001228 uint32_t method_offset = mirror::Class::EmbeddedVTableOffset().Uint32Value() +
1229 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1230 LocationSummary* locations = invoke->GetLocations();
1231 Location receiver = locations->InAt(0);
1232 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1233 // temp = object->GetClass();
1234 if (receiver.IsStackSlot()) {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001235 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1236 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001237 } else {
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001238 __ LoadFromOffset(kLoadWord, temp, receiver.As<Register>(), class_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001239 }
1240 // temp = temp->GetMethodAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001241 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001242 kArmWordSize).Int32Value();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001243 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001244 // LR = temp->GetEntryPoint();
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001245 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001246 // LR();
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001247 __ blx(LR);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001248 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001249 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001250}
1251
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001252void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1253 HandleInvoke(invoke);
1254 // Add the hidden argument.
1255 invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12));
1256}
1257
1258void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1259 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
1260 Register temp = invoke->GetLocations()->GetTemp(0).As<Register>();
1261 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1262 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1263 LocationSummary* locations = invoke->GetLocations();
1264 Location receiver = locations->InAt(0);
1265 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1266
1267 // Set the hidden argument.
1268 __ LoadImmediate(invoke->GetLocations()->GetTemp(1).As<Register>(), invoke->GetDexMethodIndex());
1269
1270 // temp = object->GetClass();
1271 if (receiver.IsStackSlot()) {
1272 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1273 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
1274 } else {
1275 __ LoadFromOffset(kLoadWord, temp, receiver.As<Register>(), class_offset);
1276 }
1277 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartier2d721012014-11-10 11:08:06 -08001278 uint32_t entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001279 kArmWordSize).Int32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001280 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
1281 // LR = temp->GetEntryPoint();
1282 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
1283 // LR();
1284 __ blx(LR);
1285 DCHECK(!codegen_->IsLeafMethod());
1286 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1287}
1288
Roland Levillain88cb1752014-10-20 16:36:47 +01001289void LocationsBuilderARM::VisitNeg(HNeg* neg) {
1290 LocationSummary* locations =
1291 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1292 switch (neg->GetResultType()) {
1293 case Primitive::kPrimInt:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001294 case Primitive::kPrimLong: {
1295 bool output_overlaps = (neg->GetResultType() == Primitive::kPrimLong);
Roland Levillain88cb1752014-10-20 16:36:47 +01001296 locations->SetInAt(0, Location::RequiresRegister());
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001297 locations->SetOut(Location::RequiresRegister(), output_overlaps);
Roland Levillain88cb1752014-10-20 16:36:47 +01001298 break;
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001299 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001300
Roland Levillain88cb1752014-10-20 16:36:47 +01001301 case Primitive::kPrimFloat:
1302 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001303 locations->SetInAt(0, Location::RequiresFpuRegister());
1304 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001305 break;
1306
1307 default:
1308 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1309 }
1310}
1311
1312void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) {
1313 LocationSummary* locations = neg->GetLocations();
1314 Location out = locations->Out();
1315 Location in = locations->InAt(0);
1316 switch (neg->GetResultType()) {
1317 case Primitive::kPrimInt:
1318 DCHECK(in.IsRegister());
Roland Levillainb762d2e2014-10-22 10:11:06 +01001319 __ rsb(out.As<Register>(), in.As<Register>(), ShifterOperand(0));
Roland Levillain88cb1752014-10-20 16:36:47 +01001320 break;
1321
1322 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001323 DCHECK(in.IsRegisterPair());
1324 // out.lo = 0 - in.lo (and update the carry/borrow (C) flag)
1325 __ rsbs(out.AsRegisterPairLow<Register>(),
1326 in.AsRegisterPairLow<Register>(),
1327 ShifterOperand(0));
1328 // We cannot emit an RSC (Reverse Subtract with Carry)
1329 // instruction here, as it does not exist in the Thumb-2
1330 // instruction set. We use the following approach
1331 // using SBC and SUB instead.
1332 //
1333 // out.hi = -C
1334 __ sbc(out.AsRegisterPairHigh<Register>(),
1335 out.AsRegisterPairHigh<Register>(),
1336 ShifterOperand(out.AsRegisterPairHigh<Register>()));
1337 // out.hi = out.hi - in.hi
1338 __ sub(out.AsRegisterPairHigh<Register>(),
1339 out.AsRegisterPairHigh<Register>(),
1340 ShifterOperand(in.AsRegisterPairHigh<Register>()));
1341 break;
1342
Roland Levillain88cb1752014-10-20 16:36:47 +01001343 case Primitive::kPrimFloat:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001344 DCHECK(in.IsFpuRegister());
1345 __ vnegs(out.As<SRegister>(), in.As<SRegister>());
1346 break;
1347
Roland Levillain88cb1752014-10-20 16:36:47 +01001348 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001349 DCHECK(in.IsFpuRegisterPair());
1350 __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1351 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain88cb1752014-10-20 16:36:47 +01001352 break;
1353
1354 default:
1355 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1356 }
1357}
1358
Roland Levillaindff1f282014-11-05 14:15:05 +00001359void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) {
1360 LocationSummary* locations =
1361 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
1362 Primitive::Type result_type = conversion->GetResultType();
1363 Primitive::Type input_type = conversion->GetInputType();
1364 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001365 case Primitive::kPrimByte:
1366 switch (input_type) {
1367 case Primitive::kPrimShort:
1368 case Primitive::kPrimInt:
1369 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001370 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001371 locations->SetInAt(0, Location::RequiresRegister());
1372 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1373 break;
1374
1375 default:
1376 LOG(FATAL) << "Unexpected type conversion from " << input_type
1377 << " to " << result_type;
1378 }
1379 break;
1380
Roland Levillain01a8d712014-11-14 16:27:39 +00001381 case Primitive::kPrimShort:
1382 switch (input_type) {
1383 case Primitive::kPrimByte:
1384 case Primitive::kPrimInt:
1385 case Primitive::kPrimChar:
1386 // Processing a Dex `int-to-short' instruction.
1387 locations->SetInAt(0, Location::RequiresRegister());
1388 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1389 break;
1390
1391 default:
1392 LOG(FATAL) << "Unexpected type conversion from " << input_type
1393 << " to " << result_type;
1394 }
1395 break;
1396
Roland Levillain946e1432014-11-11 17:35:19 +00001397 case Primitive::kPrimInt:
1398 switch (input_type) {
1399 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001400 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001401 locations->SetInAt(0, Location::Any());
1402 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1403 break;
1404
1405 case Primitive::kPrimFloat:
1406 case Primitive::kPrimDouble:
1407 LOG(FATAL) << "Type conversion from " << input_type
1408 << " to " << result_type << " not yet implemented";
1409 break;
1410
1411 default:
1412 LOG(FATAL) << "Unexpected type conversion from " << input_type
1413 << " to " << result_type;
1414 }
1415 break;
1416
Roland Levillaindff1f282014-11-05 14:15:05 +00001417 case Primitive::kPrimLong:
1418 switch (input_type) {
1419 case Primitive::kPrimByte:
1420 case Primitive::kPrimShort:
1421 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001422 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001423 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001424 locations->SetInAt(0, Location::RequiresRegister());
1425 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1426 break;
1427
1428 case Primitive::kPrimFloat:
1429 case Primitive::kPrimDouble:
1430 LOG(FATAL) << "Type conversion from " << input_type << " to "
1431 << result_type << " not yet implemented";
1432 break;
1433
1434 default:
1435 LOG(FATAL) << "Unexpected type conversion from " << input_type
1436 << " to " << result_type;
1437 }
1438 break;
1439
Roland Levillain981e4542014-11-14 11:47:14 +00001440 case Primitive::kPrimChar:
1441 switch (input_type) {
1442 case Primitive::kPrimByte:
1443 case Primitive::kPrimShort:
1444 case Primitive::kPrimInt:
1445 case Primitive::kPrimChar:
1446 // Processing a Dex `int-to-char' instruction.
1447 locations->SetInAt(0, Location::RequiresRegister());
1448 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1449 break;
1450
1451 default:
1452 LOG(FATAL) << "Unexpected type conversion from " << input_type
1453 << " to " << result_type;
1454 }
1455 break;
1456
Roland Levillaindff1f282014-11-05 14:15:05 +00001457 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001458 switch (input_type) {
1459 case Primitive::kPrimByte:
1460 case Primitive::kPrimShort:
1461 case Primitive::kPrimInt:
1462 case Primitive::kPrimChar:
1463 // Processing a Dex `int-to-float' instruction.
1464 locations->SetInAt(0, Location::RequiresRegister());
1465 locations->SetOut(Location::RequiresFpuRegister());
1466 break;
1467
1468 case Primitive::kPrimLong:
1469 case Primitive::kPrimDouble:
1470 LOG(FATAL) << "Type conversion from " << input_type
1471 << " to " << result_type << " not yet implemented";
1472 break;
1473
1474 default:
1475 LOG(FATAL) << "Unexpected type conversion from " << input_type
1476 << " to " << result_type;
1477 };
1478 break;
1479
Roland Levillaindff1f282014-11-05 14:15:05 +00001480 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001481 switch (input_type) {
1482 case Primitive::kPrimByte:
1483 case Primitive::kPrimShort:
1484 case Primitive::kPrimInt:
1485 case Primitive::kPrimChar:
1486 // Processing a Dex `int-to-double' instruction.
1487 locations->SetInAt(0, Location::RequiresRegister());
1488 locations->SetOut(Location::RequiresFpuRegister());
1489 break;
1490
1491 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00001492 // Processing a Dex `long-to-double' instruction.
1493 locations->SetInAt(0, Location::RequiresRegister());
1494 locations->SetOut(Location::RequiresFpuRegister());
1495 locations->AddTemp(Location::RequiresRegister());
1496 locations->AddTemp(Location::RequiresRegister());
1497 locations->AddTemp(Location::RequiresFpuRegister());
1498 break;
1499
Roland Levillaincff13742014-11-17 14:32:17 +00001500 case Primitive::kPrimFloat:
1501 LOG(FATAL) << "Type conversion from " << input_type
1502 << " to " << result_type << " not yet implemented";
1503 break;
1504
1505 default:
1506 LOG(FATAL) << "Unexpected type conversion from " << input_type
1507 << " to " << result_type;
1508 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001509 break;
1510
1511 default:
1512 LOG(FATAL) << "Unexpected type conversion from " << input_type
1513 << " to " << result_type;
1514 }
1515}
1516
1517void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) {
1518 LocationSummary* locations = conversion->GetLocations();
1519 Location out = locations->Out();
1520 Location in = locations->InAt(0);
1521 Primitive::Type result_type = conversion->GetResultType();
1522 Primitive::Type input_type = conversion->GetInputType();
1523 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001524 case Primitive::kPrimByte:
1525 switch (input_type) {
1526 case Primitive::kPrimShort:
1527 case Primitive::kPrimInt:
1528 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001529 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001530 __ sbfx(out.As<Register>(), in.As<Register>(), 0, 8);
1531 break;
1532
1533 default:
1534 LOG(FATAL) << "Unexpected type conversion from " << input_type
1535 << " to " << result_type;
1536 }
1537 break;
1538
Roland Levillain01a8d712014-11-14 16:27:39 +00001539 case Primitive::kPrimShort:
1540 switch (input_type) {
1541 case Primitive::kPrimByte:
1542 case Primitive::kPrimInt:
1543 case Primitive::kPrimChar:
1544 // Processing a Dex `int-to-short' instruction.
1545 __ sbfx(out.As<Register>(), in.As<Register>(), 0, 16);
1546 break;
1547
1548 default:
1549 LOG(FATAL) << "Unexpected type conversion from " << input_type
1550 << " to " << result_type;
1551 }
1552 break;
1553
Roland Levillain946e1432014-11-11 17:35:19 +00001554 case Primitive::kPrimInt:
1555 switch (input_type) {
1556 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001557 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001558 DCHECK(out.IsRegister());
1559 if (in.IsRegisterPair()) {
1560 __ Mov(out.As<Register>(), in.AsRegisterPairLow<Register>());
1561 } else if (in.IsDoubleStackSlot()) {
1562 __ LoadFromOffset(kLoadWord, out.As<Register>(), SP, in.GetStackIndex());
1563 } else {
1564 DCHECK(in.IsConstant());
1565 DCHECK(in.GetConstant()->IsLongConstant());
1566 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
1567 __ LoadImmediate(out.As<Register>(), static_cast<int32_t>(value));
1568 }
1569 break;
1570
1571 case Primitive::kPrimFloat:
1572 case Primitive::kPrimDouble:
1573 LOG(FATAL) << "Type conversion from " << input_type
1574 << " to " << result_type << " not yet implemented";
1575 break;
1576
1577 default:
1578 LOG(FATAL) << "Unexpected type conversion from " << input_type
1579 << " to " << result_type;
1580 }
1581 break;
1582
Roland Levillaindff1f282014-11-05 14:15:05 +00001583 case Primitive::kPrimLong:
1584 switch (input_type) {
1585 case Primitive::kPrimByte:
1586 case Primitive::kPrimShort:
1587 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001588 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001589 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001590 DCHECK(out.IsRegisterPair());
1591 DCHECK(in.IsRegister());
1592 __ Mov(out.AsRegisterPairLow<Register>(), in.As<Register>());
1593 // Sign extension.
1594 __ Asr(out.AsRegisterPairHigh<Register>(),
1595 out.AsRegisterPairLow<Register>(),
1596 31);
1597 break;
1598
1599 case Primitive::kPrimFloat:
1600 case Primitive::kPrimDouble:
1601 LOG(FATAL) << "Type conversion from " << input_type << " to "
1602 << result_type << " not yet implemented";
1603 break;
1604
1605 default:
1606 LOG(FATAL) << "Unexpected type conversion from " << input_type
1607 << " to " << result_type;
1608 }
1609 break;
1610
Roland Levillain981e4542014-11-14 11:47:14 +00001611 case Primitive::kPrimChar:
1612 switch (input_type) {
1613 case Primitive::kPrimByte:
1614 case Primitive::kPrimShort:
1615 case Primitive::kPrimInt:
1616 case Primitive::kPrimChar:
1617 // Processing a Dex `int-to-char' instruction.
1618 __ ubfx(out.As<Register>(), in.As<Register>(), 0, 16);
1619 break;
1620
1621 default:
1622 LOG(FATAL) << "Unexpected type conversion from " << input_type
1623 << " to " << result_type;
1624 }
1625 break;
1626
Roland Levillaindff1f282014-11-05 14:15:05 +00001627 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00001628 switch (input_type) {
1629 case Primitive::kPrimByte:
1630 case Primitive::kPrimShort:
1631 case Primitive::kPrimInt:
1632 case Primitive::kPrimChar: {
1633 // Processing a Dex `int-to-float' instruction.
1634 __ vmovsr(out.As<SRegister>(), in.As<Register>());
1635 __ vcvtsi(out.As<SRegister>(), out.As<SRegister>());
1636 break;
1637 }
1638
1639 case Primitive::kPrimLong:
1640 case Primitive::kPrimDouble:
1641 LOG(FATAL) << "Type conversion from " << input_type
1642 << " to " << result_type << " not yet implemented";
1643 break;
1644
1645 default:
1646 LOG(FATAL) << "Unexpected type conversion from " << input_type
1647 << " to " << result_type;
1648 };
1649 break;
1650
Roland Levillaindff1f282014-11-05 14:15:05 +00001651 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00001652 switch (input_type) {
1653 case Primitive::kPrimByte:
1654 case Primitive::kPrimShort:
1655 case Primitive::kPrimInt:
1656 case Primitive::kPrimChar: {
1657 // Processing a Dex `int-to-double' instruction.
1658 __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.As<Register>());
1659 __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1660 out.AsFpuRegisterPairLow<SRegister>());
1661 break;
1662 }
1663
Roland Levillain647b9ed2014-11-27 12:06:00 +00001664 case Primitive::kPrimLong: {
1665 // Processing a Dex `long-to-double' instruction.
1666 Register low = in.AsRegisterPairLow<Register>();
1667 Register high = in.AsRegisterPairHigh<Register>();
1668 SRegister out_s = out.AsFpuRegisterPairLow<SRegister>();
1669 DRegister out_d = FromLowSToD(out_s);
1670 Register constant_low = locations->GetTemp(0).As<Register>();
1671 Register constant_high = locations->GetTemp(1).As<Register>();
1672 SRegister temp_s = locations->GetTemp(2).AsFpuRegisterPairLow<SRegister>();
1673 DRegister temp_d = FromLowSToD(temp_s);
1674
1675 // Binary encoding of 2^32 for type double.
1676 const uint64_t c = UINT64_C(0x41F0000000000000);
1677
1678 // out_d = int-to-double(high)
1679 __ vmovsr(out_s, high);
1680 __ vcvtdi(out_d, out_s);
1681 // Using vmovd to load the `c` constant as an immediate
1682 // value into `temp_d` does not work, as this instruction
1683 // only transfers 8 significant bits of its immediate
1684 // operand. Instead, use two 32-bit core registers to
1685 // load `c` into `temp_d`.
1686 __ LoadImmediate(constant_low, Low32Bits(c));
1687 __ LoadImmediate(constant_high, High32Bits(c));
1688 __ vmovdrr(temp_d, constant_low, constant_high);
1689 // out_d = out_d * 2^32
1690 __ vmuld(out_d, out_d, temp_d);
1691 // temp_d = unsigned-to-double(low)
1692 __ vmovsr(temp_s, low);
1693 __ vcvtdu(temp_d, temp_s);
1694 // out_d = out_d + temp_d
1695 __ vaddd(out_d, out_d, temp_d);
1696 break;
1697 }
1698
Roland Levillaincff13742014-11-17 14:32:17 +00001699 case Primitive::kPrimFloat:
1700 LOG(FATAL) << "Type conversion from " << input_type
1701 << " to " << result_type << " not yet implemented";
1702 break;
1703
1704 default:
1705 LOG(FATAL) << "Unexpected type conversion from " << input_type
1706 << " to " << result_type;
1707 };
Roland Levillaindff1f282014-11-05 14:15:05 +00001708 break;
1709
1710 default:
1711 LOG(FATAL) << "Unexpected type conversion from " << input_type
1712 << " to " << result_type;
1713 }
1714}
1715
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001716void LocationsBuilderARM::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001717 LocationSummary* locations =
1718 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001719 switch (add->GetResultType()) {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001720 case Primitive::kPrimInt:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001721 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001722 bool output_overlaps = (add->GetResultType() == Primitive::kPrimLong);
1723 locations->SetInAt(0, Location::RequiresRegister());
1724 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
1725 locations->SetOut(Location::RequiresRegister(), output_overlaps);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001726 break;
1727 }
1728
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001729 case Primitive::kPrimFloat:
1730 case Primitive::kPrimDouble: {
1731 locations->SetInAt(0, Location::RequiresFpuRegister());
1732 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001733 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001734 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001735 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001736
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001737 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001738 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001739 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001740}
1741
1742void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) {
1743 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001744 Location out = locations->Out();
1745 Location first = locations->InAt(0);
1746 Location second = locations->InAt(1);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001747 switch (add->GetResultType()) {
1748 case Primitive::kPrimInt:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001749 if (second.IsRegister()) {
1750 __ add(out.As<Register>(), first.As<Register>(), ShifterOperand(second.As<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001751 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001752 __ AddConstant(out.As<Register>(),
1753 first.As<Register>(),
1754 second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001755 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001756 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001757
1758 case Primitive::kPrimLong:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001759 __ adds(out.AsRegisterPairLow<Register>(),
1760 first.AsRegisterPairLow<Register>(),
1761 ShifterOperand(second.AsRegisterPairLow<Register>()));
1762 __ adc(out.AsRegisterPairHigh<Register>(),
1763 first.AsRegisterPairHigh<Register>(),
1764 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001765 break;
1766
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001767 case Primitive::kPrimFloat:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001768 __ vadds(out.As<SRegister>(), first.As<SRegister>(), second.As<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001769 break;
1770
1771 case Primitive::kPrimDouble:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001772 __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1773 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
1774 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001775 break;
1776
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001777 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001778 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00001779 }
1780}
1781
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001782void LocationsBuilderARM::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001783 LocationSummary* locations =
1784 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001785 switch (sub->GetResultType()) {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001786 case Primitive::kPrimInt:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001787 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001788 bool output_overlaps = (sub->GetResultType() == Primitive::kPrimLong);
1789 locations->SetInAt(0, Location::RequiresRegister());
1790 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
1791 locations->SetOut(Location::RequiresRegister(), output_overlaps);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001792 break;
1793 }
Calin Juravle11351682014-10-23 15:38:15 +01001794 case Primitive::kPrimFloat:
1795 case Primitive::kPrimDouble: {
1796 locations->SetInAt(0, Location::RequiresFpuRegister());
1797 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001798 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001799 break;
Calin Juravle11351682014-10-23 15:38:15 +01001800 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001801 default:
Calin Juravle11351682014-10-23 15:38:15 +01001802 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001803 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001804}
1805
1806void InstructionCodeGeneratorARM::VisitSub(HSub* sub) {
1807 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01001808 Location out = locations->Out();
1809 Location first = locations->InAt(0);
1810 Location second = locations->InAt(1);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001811 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001812 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01001813 if (second.IsRegister()) {
1814 __ sub(out.As<Register>(), first.As<Register>(), ShifterOperand(second.As<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001815 } else {
Calin Juravle11351682014-10-23 15:38:15 +01001816 __ AddConstant(out.As<Register>(),
1817 first.As<Register>(),
1818 -second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001819 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001820 break;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001821 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001822
Calin Juravle11351682014-10-23 15:38:15 +01001823 case Primitive::kPrimLong: {
1824 __ subs(out.AsRegisterPairLow<Register>(),
1825 first.AsRegisterPairLow<Register>(),
1826 ShifterOperand(second.AsRegisterPairLow<Register>()));
1827 __ sbc(out.AsRegisterPairHigh<Register>(),
1828 first.AsRegisterPairHigh<Register>(),
1829 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001830 break;
Calin Juravle11351682014-10-23 15:38:15 +01001831 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001832
Calin Juravle11351682014-10-23 15:38:15 +01001833 case Primitive::kPrimFloat: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001834 __ vsubs(out.As<SRegister>(), first.As<SRegister>(), second.As<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001835 break;
Calin Juravle11351682014-10-23 15:38:15 +01001836 }
1837
1838 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001839 __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1840 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
1841 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravle11351682014-10-23 15:38:15 +01001842 break;
1843 }
1844
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001845
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001846 default:
Calin Juravle11351682014-10-23 15:38:15 +01001847 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01001848 }
1849}
1850
Calin Juravle34bacdf2014-10-07 20:23:36 +01001851void LocationsBuilderARM::VisitMul(HMul* mul) {
1852 LocationSummary* locations =
1853 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
1854 switch (mul->GetResultType()) {
1855 case Primitive::kPrimInt:
1856 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01001857 locations->SetInAt(0, Location::RequiresRegister());
1858 locations->SetInAt(1, Location::RequiresRegister());
1859 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01001860 break;
1861 }
1862
Calin Juravleb5bfa962014-10-21 18:02:24 +01001863 case Primitive::kPrimFloat:
1864 case Primitive::kPrimDouble: {
1865 locations->SetInAt(0, Location::RequiresFpuRegister());
1866 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001867 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01001868 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001869 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001870
1871 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001872 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001873 }
1874}
1875
1876void InstructionCodeGeneratorARM::VisitMul(HMul* mul) {
1877 LocationSummary* locations = mul->GetLocations();
1878 Location out = locations->Out();
1879 Location first = locations->InAt(0);
1880 Location second = locations->InAt(1);
1881 switch (mul->GetResultType()) {
1882 case Primitive::kPrimInt: {
1883 __ mul(out.As<Register>(), first.As<Register>(), second.As<Register>());
1884 break;
1885 }
1886 case Primitive::kPrimLong: {
1887 Register out_hi = out.AsRegisterPairHigh<Register>();
1888 Register out_lo = out.AsRegisterPairLow<Register>();
1889 Register in1_hi = first.AsRegisterPairHigh<Register>();
1890 Register in1_lo = first.AsRegisterPairLow<Register>();
1891 Register in2_hi = second.AsRegisterPairHigh<Register>();
1892 Register in2_lo = second.AsRegisterPairLow<Register>();
1893
1894 // Extra checks to protect caused by the existence of R1_R2.
1895 // The algorithm is wrong if out.hi is either in1.lo or in2.lo:
1896 // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2);
1897 DCHECK_NE(out_hi, in1_lo);
1898 DCHECK_NE(out_hi, in2_lo);
1899
1900 // input: in1 - 64 bits, in2 - 64 bits
1901 // output: out
1902 // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
1903 // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
1904 // parts: out.lo = (in1.lo * in2.lo)[31:0]
1905
1906 // IP <- in1.lo * in2.hi
1907 __ mul(IP, in1_lo, in2_hi);
1908 // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo
1909 __ mla(out_hi, in1_hi, in2_lo, IP);
1910 // out.lo <- (in1.lo * in2.lo)[31:0];
1911 __ umull(out_lo, IP, in1_lo, in2_lo);
1912 // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
1913 __ add(out_hi, out_hi, ShifterOperand(IP));
1914 break;
1915 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01001916
1917 case Primitive::kPrimFloat: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001918 __ vmuls(out.As<SRegister>(), first.As<SRegister>(), second.As<SRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01001919 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01001920 }
1921
1922 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001923 __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1924 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
1925 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravleb5bfa962014-10-21 18:02:24 +01001926 break;
1927 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01001928
1929 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01001930 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01001931 }
1932}
1933
Calin Juravle7c4954d2014-10-28 16:57:40 +00001934void LocationsBuilderARM::VisitDiv(HDiv* div) {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001935 LocationSummary::CallKind call_kind = div->GetResultType() == Primitive::kPrimLong
1936 ? LocationSummary::kCall
1937 : LocationSummary::kNoCall;
1938 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
1939
Calin Juravle7c4954d2014-10-28 16:57:40 +00001940 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00001941 case Primitive::kPrimInt: {
1942 locations->SetInAt(0, Location::RequiresRegister());
1943 locations->SetInAt(1, Location::RequiresRegister());
1944 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1945 break;
1946 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00001947 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001948 InvokeRuntimeCallingConvention calling_convention;
1949 locations->SetInAt(0, Location::RegisterPairLocation(
1950 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
1951 locations->SetInAt(1, Location::RegisterPairLocation(
1952 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
1953 // The runtime helper puts the output in R0,R2.
1954 locations->SetOut(Location::RegisterPairLocation(R0, R2));
Calin Juravle7c4954d2014-10-28 16:57:40 +00001955 break;
1956 }
1957 case Primitive::kPrimFloat:
1958 case Primitive::kPrimDouble: {
1959 locations->SetInAt(0, Location::RequiresFpuRegister());
1960 locations->SetInAt(1, Location::RequiresFpuRegister());
1961 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1962 break;
1963 }
1964
1965 default:
1966 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
1967 }
1968}
1969
1970void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) {
1971 LocationSummary* locations = div->GetLocations();
1972 Location out = locations->Out();
1973 Location first = locations->InAt(0);
1974 Location second = locations->InAt(1);
1975
1976 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00001977 case Primitive::kPrimInt: {
1978 __ sdiv(out.As<Register>(), first.As<Register>(), second.As<Register>());
1979 break;
1980 }
1981
Calin Juravle7c4954d2014-10-28 16:57:40 +00001982 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00001983 InvokeRuntimeCallingConvention calling_convention;
1984 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
1985 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
1986 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
1987 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
1988 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
1989 DCHECK_EQ(R2, out.AsRegisterPairHigh<Register>());
1990
1991 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv), div, div->GetDexPc());
Calin Juravle7c4954d2014-10-28 16:57:40 +00001992 break;
1993 }
1994
1995 case Primitive::kPrimFloat: {
1996 __ vdivs(out.As<SRegister>(), first.As<SRegister>(), second.As<SRegister>());
1997 break;
1998 }
1999
2000 case Primitive::kPrimDouble: {
2001 __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2002 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2003 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
2004 break;
2005 }
2006
2007 default:
2008 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2009 }
2010}
2011
Calin Juravlebacfec32014-11-14 15:54:36 +00002012void LocationsBuilderARM::VisitRem(HRem* rem) {
2013 LocationSummary::CallKind call_kind = rem->GetResultType() == Primitive::kPrimLong
2014 ? LocationSummary::kCall
2015 : LocationSummary::kNoCall;
2016 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2017
2018 switch (rem->GetResultType()) {
2019 case Primitive::kPrimInt: {
2020 locations->SetInAt(0, Location::RequiresRegister());
2021 locations->SetInAt(1, Location::RequiresRegister());
2022 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2023 locations->AddTemp(Location::RequiresRegister());
2024 break;
2025 }
2026 case Primitive::kPrimLong: {
2027 InvokeRuntimeCallingConvention calling_convention;
2028 locations->SetInAt(0, Location::RegisterPairLocation(
2029 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2030 locations->SetInAt(1, Location::RegisterPairLocation(
2031 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2032 // The runtime helper puts the output in R2,R3.
2033 locations->SetOut(Location::RegisterPairLocation(R2, R3));
2034 break;
2035 }
2036 case Primitive::kPrimFloat:
2037 case Primitive::kPrimDouble: {
2038 LOG(FATAL) << "Unimplemented rem type " << rem->GetResultType();
2039 break;
2040 }
2041
2042 default:
2043 LOG(FATAL) << "Unexpected rem type " << rem->GetResultType();
2044 }
2045}
2046
2047void InstructionCodeGeneratorARM::VisitRem(HRem* rem) {
2048 LocationSummary* locations = rem->GetLocations();
2049 Location out = locations->Out();
2050 Location first = locations->InAt(0);
2051 Location second = locations->InAt(1);
2052
2053 switch (rem->GetResultType()) {
2054 case Primitive::kPrimInt: {
2055 Register reg1 = first.As<Register>();
2056 Register reg2 = second.As<Register>();
2057 Register temp = locations->GetTemp(0).As<Register>();
2058
2059 // temp = reg1 / reg2 (integer division)
2060 // temp = temp * reg2
2061 // dest = reg1 - temp
2062 __ sdiv(temp, reg1, reg2);
2063 __ mul(temp, temp, reg2);
2064 __ sub(out.As<Register>(), reg1, ShifterOperand(temp));
2065 break;
2066 }
2067
2068 case Primitive::kPrimLong: {
2069 InvokeRuntimeCallingConvention calling_convention;
2070 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2071 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2072 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2073 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2074 DCHECK_EQ(R2, out.AsRegisterPairLow<Register>());
2075 DCHECK_EQ(R3, out.AsRegisterPairHigh<Register>());
2076
2077 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod), rem, rem->GetDexPc());
2078 break;
2079 }
2080
2081 case Primitive::kPrimFloat:
2082 case Primitive::kPrimDouble: {
2083 LOG(FATAL) << "Unimplemented rem type " << rem->GetResultType();
2084 break;
2085 }
2086
2087 default:
2088 LOG(FATAL) << "Unexpected rem type " << rem->GetResultType();
2089 }
2090}
2091
Calin Juravled0d48522014-11-04 16:40:20 +00002092void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2093 LocationSummary* locations =
2094 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002095 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Calin Juravled0d48522014-11-04 16:40:20 +00002096 if (instruction->HasUses()) {
2097 locations->SetOut(Location::SameAsFirstInput());
2098 }
2099}
2100
2101void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2102 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction);
2103 codegen_->AddSlowPath(slow_path);
2104
2105 LocationSummary* locations = instruction->GetLocations();
2106 Location value = locations->InAt(0);
2107
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002108 switch (instruction->GetType()) {
2109 case Primitive::kPrimInt: {
2110 if (value.IsRegister()) {
2111 __ cmp(value.As<Register>(), ShifterOperand(0));
2112 __ b(slow_path->GetEntryLabel(), EQ);
2113 } else {
2114 DCHECK(value.IsConstant()) << value;
2115 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2116 __ b(slow_path->GetEntryLabel());
2117 }
2118 }
2119 break;
2120 }
2121 case Primitive::kPrimLong: {
2122 if (value.IsRegisterPair()) {
2123 __ orrs(IP,
2124 value.AsRegisterPairLow<Register>(),
2125 ShifterOperand(value.AsRegisterPairHigh<Register>()));
2126 __ b(slow_path->GetEntryLabel(), EQ);
2127 } else {
2128 DCHECK(value.IsConstant()) << value;
2129 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2130 __ b(slow_path->GetEntryLabel());
2131 }
2132 }
2133 break;
2134 default:
2135 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2136 }
2137 }
Calin Juravled0d48522014-11-04 16:40:20 +00002138}
2139
Calin Juravle9aec02f2014-11-18 23:06:35 +00002140void LocationsBuilderARM::HandleShift(HBinaryOperation* op) {
2141 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2142
2143 LocationSummary::CallKind call_kind = op->GetResultType() == Primitive::kPrimLong
2144 ? LocationSummary::kCall
2145 : LocationSummary::kNoCall;
2146 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(op, call_kind);
2147
2148 switch (op->GetResultType()) {
2149 case Primitive::kPrimInt: {
2150 locations->SetInAt(0, Location::RequiresRegister());
2151 locations->SetInAt(1, Location::RegisterOrConstant(op->InputAt(1)));
2152 locations->SetOut(Location::RequiresRegister());
2153 break;
2154 }
2155 case Primitive::kPrimLong: {
2156 InvokeRuntimeCallingConvention calling_convention;
2157 locations->SetInAt(0, Location::RegisterPairLocation(
2158 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2159 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
2160 // The runtime helper puts the output in R0,R2.
2161 locations->SetOut(Location::RegisterPairLocation(R0, R2));
2162 break;
2163 }
2164 default:
2165 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
2166 }
2167}
2168
2169void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) {
2170 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2171
2172 LocationSummary* locations = op->GetLocations();
2173 Location out = locations->Out();
2174 Location first = locations->InAt(0);
2175 Location second = locations->InAt(1);
2176
2177 Primitive::Type type = op->GetResultType();
2178 switch (type) {
2179 case Primitive::kPrimInt: {
2180 Register out_reg = out.As<Register>();
2181 Register first_reg = first.As<Register>();
2182 // Arm doesn't mask the shift count so we need to do it ourselves.
2183 if (second.IsRegister()) {
2184 Register second_reg = second.As<Register>();
2185 __ and_(second_reg, second_reg, ShifterOperand(kMaxIntShiftValue));
2186 if (op->IsShl()) {
2187 __ Lsl(out_reg, first_reg, second_reg);
2188 } else if (op->IsShr()) {
2189 __ Asr(out_reg, first_reg, second_reg);
2190 } else {
2191 __ Lsr(out_reg, first_reg, second_reg);
2192 }
2193 } else {
2194 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
2195 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue);
2196 if (shift_value == 0) { // arm does not support shifting with 0 immediate.
2197 __ Mov(out_reg, first_reg);
2198 } else if (op->IsShl()) {
2199 __ Lsl(out_reg, first_reg, shift_value);
2200 } else if (op->IsShr()) {
2201 __ Asr(out_reg, first_reg, shift_value);
2202 } else {
2203 __ Lsr(out_reg, first_reg, shift_value);
2204 }
2205 }
2206 break;
2207 }
2208 case Primitive::kPrimLong: {
2209 // TODO: Inline the assembly instead of calling the runtime.
2210 InvokeRuntimeCallingConvention calling_convention;
2211 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2212 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2213 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.As<Register>());
2214 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
2215 DCHECK_EQ(R2, out.AsRegisterPairHigh<Register>());
2216
2217 int32_t entry_point_offset;
2218 if (op->IsShl()) {
2219 entry_point_offset = QUICK_ENTRY_POINT(pShlLong);
2220 } else if (op->IsShr()) {
2221 entry_point_offset = QUICK_ENTRY_POINT(pShrLong);
2222 } else {
2223 entry_point_offset = QUICK_ENTRY_POINT(pUshrLong);
2224 }
2225 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
2226 __ blx(LR);
2227 break;
2228 }
2229 default:
2230 LOG(FATAL) << "Unexpected operation type " << type;
2231 }
2232}
2233
2234void LocationsBuilderARM::VisitShl(HShl* shl) {
2235 HandleShift(shl);
2236}
2237
2238void InstructionCodeGeneratorARM::VisitShl(HShl* shl) {
2239 HandleShift(shl);
2240}
2241
2242void LocationsBuilderARM::VisitShr(HShr* shr) {
2243 HandleShift(shr);
2244}
2245
2246void InstructionCodeGeneratorARM::VisitShr(HShr* shr) {
2247 HandleShift(shr);
2248}
2249
2250void LocationsBuilderARM::VisitUShr(HUShr* ushr) {
2251 HandleShift(ushr);
2252}
2253
2254void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) {
2255 HandleShift(ushr);
2256}
2257
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002258void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002259 LocationSummary* locations =
2260 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01002261 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002262 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2263 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2264 locations->SetOut(Location::RegisterLocation(R0));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002265}
2266
2267void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) {
2268 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002269 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002270 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002271 codegen_->InvokeRuntime(
2272 QUICK_ENTRY_POINT(pAllocObjectWithAccessCheck), instruction, instruction->GetDexPc());
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01002273}
2274
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002275void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) {
2276 LocationSummary* locations =
2277 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2278 InvokeRuntimeCallingConvention calling_convention;
2279 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2280 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2281 locations->SetOut(Location::RegisterLocation(R0));
2282 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
2283}
2284
2285void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) {
2286 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002287 codegen_->LoadCurrentMethod(calling_convention.GetRegisterAt(1));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002288 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01002289 codegen_->InvokeRuntime(
2290 QUICK_ENTRY_POINT(pAllocArrayWithAccessCheck), instruction, instruction->GetDexPc());
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01002291}
2292
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002293void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002294 LocationSummary* locations =
2295 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002296 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2297 if (location.IsStackSlot()) {
2298 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2299 } else if (location.IsDoubleStackSlot()) {
2300 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002301 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01002302 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002303}
2304
2305void InstructionCodeGeneratorARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002306 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002307 UNUSED(instruction);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002308}
2309
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002310void LocationsBuilderARM::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002311 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002312 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002313 locations->SetInAt(0, Location::RequiresRegister());
2314 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002315}
2316
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002317void InstructionCodeGeneratorARM::VisitNot(HNot* not_) {
2318 LocationSummary* locations = not_->GetLocations();
2319 Location out = locations->Out();
2320 Location in = locations->InAt(0);
2321 switch (not_->InputAt(0)->GetType()) {
2322 case Primitive::kPrimBoolean:
2323 __ eor(out.As<Register>(), in.As<Register>(), ShifterOperand(1));
2324 break;
2325
2326 case Primitive::kPrimInt:
2327 __ mvn(out.As<Register>(), ShifterOperand(in.As<Register>()));
2328 break;
2329
2330 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01002331 __ mvn(out.AsRegisterPairLow<Register>(),
2332 ShifterOperand(in.AsRegisterPairLow<Register>()));
2333 __ mvn(out.AsRegisterPairHigh<Register>(),
2334 ShifterOperand(in.AsRegisterPairHigh<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01002335 break;
2336
2337 default:
2338 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
2339 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01002340}
2341
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002342void LocationsBuilderARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002343 LocationSummary* locations =
2344 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00002345 switch (compare->InputAt(0)->GetType()) {
2346 case Primitive::kPrimLong: {
2347 locations->SetInAt(0, Location::RequiresRegister());
2348 locations->SetInAt(1, Location::RequiresRegister());
2349 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2350 break;
2351 }
2352 case Primitive::kPrimFloat:
2353 case Primitive::kPrimDouble: {
2354 locations->SetInAt(0, Location::RequiresFpuRegister());
2355 locations->SetInAt(1, Location::RequiresFpuRegister());
2356 locations->SetOut(Location::RequiresRegister());
2357 break;
2358 }
2359 default:
2360 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
2361 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002362}
2363
2364void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002365 LocationSummary* locations = compare->GetLocations();
Calin Juravleddb7df22014-11-25 20:56:51 +00002366 Register out = locations->Out().As<Register>();
2367 Location left = locations->InAt(0);
2368 Location right = locations->InAt(1);
2369
2370 Label less, greater, done;
2371 Primitive::Type type = compare->InputAt(0)->GetType();
2372 switch (type) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002373 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002374 __ cmp(left.AsRegisterPairHigh<Register>(),
2375 ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002376 __ b(&less, LT);
2377 __ b(&greater, GT);
Calin Juravleddb7df22014-11-25 20:56:51 +00002378 // Do LoadImmediate before any `cmp`, as LoadImmediate might affect the status flags.
2379 __ LoadImmediate(out, 0);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002380 __ cmp(left.AsRegisterPairLow<Register>(),
2381 ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare.
Calin Juravleddb7df22014-11-25 20:56:51 +00002382 break;
2383 }
2384 case Primitive::kPrimFloat:
2385 case Primitive::kPrimDouble: {
2386 __ LoadImmediate(out, 0);
2387 if (type == Primitive::kPrimFloat) {
2388 __ vcmps(left.As<SRegister>(), right.As<SRegister>());
2389 } else {
2390 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
2391 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
2392 }
2393 __ vmstat(); // transfer FP status register to ARM APSR.
2394 __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002395 break;
2396 }
2397 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00002398 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002399 }
Calin Juravleddb7df22014-11-25 20:56:51 +00002400 __ b(&done, EQ);
2401 __ b(&less, CC); // CC is for both: unsigned compare for longs and 'less than' for floats.
2402
2403 __ Bind(&greater);
2404 __ LoadImmediate(out, 1);
2405 __ b(&done);
2406
2407 __ Bind(&less);
2408 __ LoadImmediate(out, -1);
2409
2410 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01002411}
2412
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002413void LocationsBuilderARM::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002414 LocationSummary* locations =
2415 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01002416 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2417 locations->SetInAt(i, Location::Any());
2418 }
2419 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002420}
2421
2422void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002423 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002424 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01002425}
2426
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002427void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002428 LocationSummary* locations =
2429 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002430 bool needs_write_barrier =
2431 CodeGenerator::StoreNeedsWriteBarrier(instruction->GetFieldType(), instruction->GetValue());
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002432 locations->SetInAt(0, Location::RequiresRegister());
2433 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002434 // Temporary registers for the write barrier.
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002435 if (needs_write_barrier) {
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01002436 locations->AddTemp(Location::RequiresRegister());
2437 locations->AddTemp(Location::RequiresRegister());
2438 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002439}
2440
2441void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
2442 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002443 Register obj = locations->InAt(0).As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002444 uint32_t offset = instruction->GetFieldOffset().Uint32Value();
Nicolas Geoffray39468442014-09-02 15:17:15 +01002445 Primitive::Type field_type = instruction->GetFieldType();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002446
2447 switch (field_type) {
2448 case Primitive::kPrimBoolean:
2449 case Primitive::kPrimByte: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002450 Register value = locations->InAt(1).As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002451 __ StoreToOffset(kStoreByte, value, obj, offset);
2452 break;
2453 }
2454
2455 case Primitive::kPrimShort:
2456 case Primitive::kPrimChar: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002457 Register value = locations->InAt(1).As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002458 __ StoreToOffset(kStoreHalfword, value, obj, offset);
2459 break;
2460 }
2461
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002462 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002463 case Primitive::kPrimNot: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002464 Register value = locations->InAt(1).As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002465 __ StoreToOffset(kStoreWord, value, obj, offset);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002466 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->GetValue())) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002467 Register temp = locations->GetTemp(0).As<Register>();
2468 Register card = locations->GetTemp(1).As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002469 codegen_->MarkGCCard(temp, card, obj, value);
2470 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002471 break;
2472 }
2473
2474 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002475 Location value = locations->InAt(1);
2476 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002477 break;
2478 }
2479
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002480 case Primitive::kPrimFloat: {
2481 SRegister value = locations->InAt(1).As<SRegister>();
2482 __ StoreSToOffset(value, obj, offset);
2483 break;
2484 }
2485
2486 case Primitive::kPrimDouble: {
2487 DRegister value = FromLowSToD(locations->InAt(1).AsFpuRegisterPairLow<SRegister>());
2488 __ StoreDToOffset(value, obj, offset);
2489 break;
2490 }
2491
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002492 case Primitive::kPrimVoid:
2493 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07002494 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002495 }
2496}
2497
2498void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002499 LocationSummary* locations =
2500 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002501 locations->SetInAt(0, Location::RequiresRegister());
2502 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002503}
2504
2505void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
2506 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002507 Register obj = locations->InAt(0).As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002508 uint32_t offset = instruction->GetFieldOffset().Uint32Value();
2509
2510 switch (instruction->GetType()) {
2511 case Primitive::kPrimBoolean: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002512 Register out = locations->Out().As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002513 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
2514 break;
2515 }
2516
2517 case Primitive::kPrimByte: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002518 Register out = locations->Out().As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002519 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
2520 break;
2521 }
2522
2523 case Primitive::kPrimShort: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002524 Register out = locations->Out().As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002525 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
2526 break;
2527 }
2528
2529 case Primitive::kPrimChar: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002530 Register out = locations->Out().As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002531 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
2532 break;
2533 }
2534
2535 case Primitive::kPrimInt:
2536 case Primitive::kPrimNot: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002537 Register out = locations->Out().As<Register>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002538 __ LoadFromOffset(kLoadWord, out, obj, offset);
2539 break;
2540 }
2541
2542 case Primitive::kPrimLong: {
2543 // TODO: support volatile.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002544 Location out = locations->Out();
2545 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002546 break;
2547 }
2548
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00002549 case Primitive::kPrimFloat: {
2550 SRegister out = locations->Out().As<SRegister>();
2551 __ LoadSFromOffset(out, obj, offset);
2552 break;
2553 }
2554
2555 case Primitive::kPrimDouble: {
2556 DRegister out = FromLowSToD(locations->Out().AsFpuRegisterPairLow<SRegister>());
2557 __ LoadDFromOffset(out, obj, offset);
2558 break;
2559 }
2560
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002561 case Primitive::kPrimVoid:
2562 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002563 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002564 }
2565}
2566
2567void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002568 LocationSummary* locations =
2569 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002570 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002571 if (instruction->HasUses()) {
2572 locations->SetOut(Location::SameAsFirstInput());
2573 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002574}
2575
2576void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01002577 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002578 codegen_->AddSlowPath(slow_path);
2579
2580 LocationSummary* locations = instruction->GetLocations();
2581 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002582
2583 if (obj.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002584 __ cmp(obj.As<Register>(), ShifterOperand(0));
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002585 __ b(slow_path->GetEntryLabel(), EQ);
2586 } else {
2587 DCHECK(obj.IsConstant()) << obj;
2588 DCHECK_EQ(obj.GetConstant()->AsIntConstant()->GetValue(), 0);
2589 __ b(slow_path->GetEntryLabel());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002590 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002591}
2592
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002593void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002594 LocationSummary* locations =
2595 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002596 locations->SetInAt(0, Location::RequiresRegister());
2597 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
2598 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002599}
2600
2601void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
2602 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002603 Register obj = locations->InAt(0).As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002604 Location index = locations->InAt(1);
2605
2606 switch (instruction->GetType()) {
2607 case Primitive::kPrimBoolean: {
2608 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002609 Register out = locations->Out().As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002610 if (index.IsConstant()) {
2611 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
2612 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
2613 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002614 __ add(IP, obj, ShifterOperand(index.As<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002615 __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset);
2616 }
2617 break;
2618 }
2619
2620 case Primitive::kPrimByte: {
2621 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002622 Register out = locations->Out().As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002623 if (index.IsConstant()) {
2624 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
2625 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
2626 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002627 __ add(IP, obj, ShifterOperand(index.As<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002628 __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset);
2629 }
2630 break;
2631 }
2632
2633 case Primitive::kPrimShort: {
2634 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002635 Register out = locations->Out().As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002636 if (index.IsConstant()) {
2637 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
2638 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
2639 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002640 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002641 __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset);
2642 }
2643 break;
2644 }
2645
2646 case Primitive::kPrimChar: {
2647 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002648 Register out = locations->Out().As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002649 if (index.IsConstant()) {
2650 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
2651 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
2652 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002653 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002654 __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset);
2655 }
2656 break;
2657 }
2658
2659 case Primitive::kPrimInt:
2660 case Primitive::kPrimNot: {
2661 DCHECK_EQ(sizeof(mirror::HeapReference<mirror::Object>), sizeof(int32_t));
2662 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002663 Register out = locations->Out().As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002664 if (index.IsConstant()) {
2665 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
2666 __ LoadFromOffset(kLoadWord, out, obj, offset);
2667 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002668 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_4));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002669 __ LoadFromOffset(kLoadWord, out, IP, data_offset);
2670 }
2671 break;
2672 }
2673
2674 case Primitive::kPrimLong: {
2675 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002676 Location out = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002677 if (index.IsConstant()) {
2678 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002679 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002680 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002681 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_8));
2682 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002683 }
2684 break;
2685 }
2686
2687 case Primitive::kPrimFloat:
2688 case Primitive::kPrimDouble:
2689 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002690 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002691 case Primitive::kPrimVoid:
2692 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002693 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002694 }
2695}
2696
2697void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002698 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002699
2700 bool needs_write_barrier =
2701 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
2702 bool needs_runtime_call = instruction->NeedsTypeCheck();
2703
Nicolas Geoffray39468442014-09-02 15:17:15 +01002704 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002705 instruction, needs_runtime_call ? LocationSummary::kCall : LocationSummary::kNoCall);
2706 if (needs_runtime_call) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002707 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002708 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2709 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2710 locations->SetInAt(2, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002711 } else {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002712 locations->SetInAt(0, Location::RequiresRegister());
2713 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
2714 locations->SetInAt(2, Location::RequiresRegister());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002715
2716 if (needs_write_barrier) {
2717 // Temporary registers for the write barrier.
2718 locations->AddTemp(Location::RequiresRegister());
2719 locations->AddTemp(Location::RequiresRegister());
2720 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002721 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002722}
2723
2724void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
2725 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002726 Register obj = locations->InAt(0).As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002727 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01002728 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002729 bool needs_runtime_call = locations->WillCall();
2730 bool needs_write_barrier =
2731 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002732
2733 switch (value_type) {
2734 case Primitive::kPrimBoolean:
2735 case Primitive::kPrimByte: {
2736 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002737 Register value = locations->InAt(2).As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002738 if (index.IsConstant()) {
2739 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
2740 __ StoreToOffset(kStoreByte, value, obj, offset);
2741 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002742 __ add(IP, obj, ShifterOperand(index.As<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002743 __ StoreToOffset(kStoreByte, value, IP, data_offset);
2744 }
2745 break;
2746 }
2747
2748 case Primitive::kPrimShort:
2749 case Primitive::kPrimChar: {
2750 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002751 Register value = locations->InAt(2).As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002752 if (index.IsConstant()) {
2753 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
2754 __ StoreToOffset(kStoreHalfword, value, obj, offset);
2755 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002756 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002757 __ StoreToOffset(kStoreHalfword, value, IP, data_offset);
2758 }
2759 break;
2760 }
2761
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002762 case Primitive::kPrimInt:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002763 case Primitive::kPrimNot: {
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00002764 if (!needs_runtime_call) {
2765 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
2766 Register value = locations->InAt(2).As<Register>();
2767 if (index.IsConstant()) {
2768 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
2769 __ StoreToOffset(kStoreWord, value, obj, offset);
2770 } else {
2771 DCHECK(index.IsRegister()) << index;
2772 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_4));
2773 __ StoreToOffset(kStoreWord, value, IP, data_offset);
2774 }
2775 if (needs_write_barrier) {
2776 DCHECK_EQ(value_type, Primitive::kPrimNot);
2777 Register temp = locations->GetTemp(0).As<Register>();
2778 Register card = locations->GetTemp(1).As<Register>();
2779 codegen_->MarkGCCard(temp, card, obj, value);
2780 }
2781 } else {
2782 DCHECK_EQ(value_type, Primitive::kPrimNot);
2783 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject), instruction, instruction->GetDexPc());
2784 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002785 break;
2786 }
2787
2788 case Primitive::kPrimLong: {
2789 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002790 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002791 if (index.IsConstant()) {
2792 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002793 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002794 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002795 __ add(IP, obj, ShifterOperand(index.As<Register>(), LSL, TIMES_8));
2796 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002797 }
2798 break;
2799 }
2800
2801 case Primitive::kPrimFloat:
2802 case Primitive::kPrimDouble:
2803 LOG(FATAL) << "Unimplemented register type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002804 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002805 case Primitive::kPrimVoid:
2806 LOG(FATAL) << "Unreachable type " << instruction->GetType();
Ian Rogersfc787ec2014-10-09 21:56:44 -07002807 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002808 }
2809}
2810
2811void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002812 LocationSummary* locations =
2813 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002814 locations->SetInAt(0, Location::RequiresRegister());
2815 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002816}
2817
2818void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
2819 LocationSummary* locations = instruction->GetLocations();
2820 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002821 Register obj = locations->InAt(0).As<Register>();
2822 Register out = locations->Out().As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002823 __ LoadFromOffset(kLoadWord, out, obj, offset);
2824}
2825
2826void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002827 LocationSummary* locations =
2828 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002829 locations->SetInAt(0, Location::RequiresRegister());
2830 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01002831 if (instruction->HasUses()) {
2832 locations->SetOut(Location::SameAsFirstInput());
2833 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002834}
2835
2836void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
2837 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01002838 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(
Nicolas Geoffray39468442014-09-02 15:17:15 +01002839 instruction, locations->InAt(0), locations->InAt(1));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002840 codegen_->AddSlowPath(slow_path);
2841
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002842 Register index = locations->InAt(0).As<Register>();
2843 Register length = locations->InAt(1).As<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01002844
2845 __ cmp(index, ShifterOperand(length));
2846 __ b(slow_path->GetEntryLabel(), CS);
2847}
2848
2849void CodeGeneratorARM::MarkGCCard(Register temp, Register card, Register object, Register value) {
2850 Label is_null;
2851 __ CompareAndBranchIfZero(value, &is_null);
2852 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value());
2853 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
2854 __ strb(card, Address(card, temp));
2855 __ Bind(&is_null);
2856}
2857
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002858void LocationsBuilderARM::VisitTemporary(HTemporary* temp) {
2859 temp->SetLocations(nullptr);
2860}
2861
2862void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp) {
2863 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002864 UNUSED(temp);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002865}
2866
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01002867void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002868 UNUSED(instruction);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002869 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01002870}
2871
2872void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002873 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
2874}
2875
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002876void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
2877 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
2878}
2879
2880void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002881 HBasicBlock* block = instruction->GetBlock();
2882 if (block->GetLoopInformation() != nullptr) {
2883 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
2884 // The back edge will generate the suspend check.
2885 return;
2886 }
2887 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
2888 // The goto will generate the suspend check.
2889 return;
2890 }
2891 GenerateSuspendCheck(instruction, nullptr);
2892}
2893
2894void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
2895 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002896 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002897 new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002898 codegen_->AddSlowPath(slow_path);
2899
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00002900 __ LoadFromOffset(
2901 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value());
2902 __ cmp(IP, ShifterOperand(0));
2903 // TODO: Figure out the branch offsets and use cbz/cbnz.
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002904 if (successor == nullptr) {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00002905 __ b(slow_path->GetEntryLabel(), NE);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002906 __ Bind(slow_path->GetReturnLabel());
2907 } else {
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00002908 __ b(codegen_->GetLabelOf(successor), EQ);
Nicolas Geoffray3c049742014-09-24 18:10:46 +01002909 __ b(slow_path->GetEntryLabel());
2910 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00002911}
2912
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002913ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
2914 return codegen_->GetAssembler();
2915}
2916
2917void ParallelMoveResolverARM::EmitMove(size_t index) {
2918 MoveOperands* move = moves_.Get(index);
2919 Location source = move->GetSource();
2920 Location destination = move->GetDestination();
2921
2922 if (source.IsRegister()) {
2923 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002924 __ Mov(destination.As<Register>(), source.As<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002925 } else {
2926 DCHECK(destination.IsStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002927 __ StoreToOffset(kStoreWord, source.As<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002928 SP, destination.GetStackIndex());
2929 }
2930 } else if (source.IsStackSlot()) {
2931 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002932 __ LoadFromOffset(kLoadWord, destination.As<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002933 SP, source.GetStackIndex());
2934 } else {
2935 DCHECK(destination.IsStackSlot());
2936 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
2937 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
2938 }
2939 } else {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002940 DCHECK(source.IsConstant());
Roland Levillain476df552014-10-09 17:51:36 +01002941 DCHECK(source.GetConstant()->IsIntConstant());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002942 int32_t value = source.GetConstant()->AsIntConstant()->GetValue();
2943 if (destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002944 __ LoadImmediate(destination.As<Register>(), value);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002945 } else {
2946 DCHECK(destination.IsStackSlot());
2947 __ LoadImmediate(IP, value);
Nicolas Geoffray360231a2014-10-08 21:07:48 +01002948 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002949 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002950 }
2951}
2952
2953void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
2954 __ Mov(IP, reg);
2955 __ LoadFromOffset(kLoadWord, reg, SP, mem);
2956 __ StoreToOffset(kStoreWord, IP, SP, mem);
2957}
2958
2959void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
2960 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
2961 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
2962 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
2963 SP, mem1 + stack_offset);
2964 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
2965 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
2966 SP, mem2 + stack_offset);
2967 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
2968}
2969
2970void ParallelMoveResolverARM::EmitSwap(size_t index) {
2971 MoveOperands* move = moves_.Get(index);
2972 Location source = move->GetSource();
2973 Location destination = move->GetDestination();
2974
2975 if (source.IsRegister() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002976 DCHECK_NE(source.As<Register>(), IP);
2977 DCHECK_NE(destination.As<Register>(), IP);
2978 __ Mov(IP, source.As<Register>());
2979 __ Mov(source.As<Register>(), destination.As<Register>());
2980 __ Mov(destination.As<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002981 } else if (source.IsRegister() && destination.IsStackSlot()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002982 Exchange(source.As<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002983 } else if (source.IsStackSlot() && destination.IsRegister()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002984 Exchange(destination.As<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01002985 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
2986 Exchange(source.GetStackIndex(), destination.GetStackIndex());
2987 } else {
2988 LOG(FATAL) << "Unimplemented";
2989 }
2990}
2991
2992void ParallelMoveResolverARM::SpillScratch(int reg) {
2993 __ Push(static_cast<Register>(reg));
2994}
2995
2996void ParallelMoveResolverARM::RestoreScratch(int reg) {
2997 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01002998}
2999
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003000void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003001 LocationSummary::CallKind call_kind = cls->CanCallRuntime()
3002 ? LocationSummary::kCallOnSlowPath
3003 : LocationSummary::kNoCall;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003004 LocationSummary* locations =
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003005 new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003006 locations->SetOut(Location::RequiresRegister());
3007}
3008
3009void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
3010 Register out = cls->GetLocations()->Out().As<Register>();
3011 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003012 DCHECK(!cls->CanCallRuntime());
3013 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003014 codegen_->LoadCurrentMethod(out);
3015 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3016 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003017 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003018 codegen_->LoadCurrentMethod(out);
3019 __ LoadFromOffset(
3020 kLoadWord, out, out, mirror::ArtMethod::DexCacheResolvedTypesOffset().Int32Value());
3021 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003022
3023 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3024 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3025 codegen_->AddSlowPath(slow_path);
3026 __ cmp(out, ShifterOperand(0));
3027 __ b(slow_path->GetEntryLabel(), EQ);
3028 if (cls->MustGenerateClinitCheck()) {
3029 GenerateClassInitializationCheck(slow_path, out);
3030 } else {
3031 __ Bind(slow_path->GetExitLabel());
3032 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003033 }
3034}
3035
3036void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
3037 LocationSummary* locations =
3038 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
3039 locations->SetInAt(0, Location::RequiresRegister());
3040 if (check->HasUses()) {
3041 locations->SetOut(Location::SameAsFirstInput());
3042 }
3043}
3044
3045void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003046 // We assume the class is not null.
3047 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
3048 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003049 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003050 GenerateClassInitializationCheck(slow_path, check->GetLocations()->InAt(0).As<Register>());
3051}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003052
Nicolas Geoffray424f6762014-11-03 14:51:25 +00003053void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
3054 SlowPathCodeARM* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003055 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
3056 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
3057 __ b(slow_path->GetEntryLabel(), LT);
3058 // Even if the initialized flag is set, we may be in a situation where caches are not synced
3059 // properly. Therefore, we do a memory fence.
3060 __ dmb(ISH);
3061 __ Bind(slow_path->GetExitLabel());
3062}
3063
3064void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3065 LocationSummary* locations =
3066 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3067 locations->SetInAt(0, Location::RequiresRegister());
3068 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3069}
3070
3071void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3072 LocationSummary* locations = instruction->GetLocations();
3073 Register cls = locations->InAt(0).As<Register>();
3074 uint32_t offset = instruction->GetFieldOffset().Uint32Value();
3075
3076 switch (instruction->GetType()) {
3077 case Primitive::kPrimBoolean: {
3078 Register out = locations->Out().As<Register>();
3079 __ LoadFromOffset(kLoadUnsignedByte, out, cls, offset);
3080 break;
3081 }
3082
3083 case Primitive::kPrimByte: {
3084 Register out = locations->Out().As<Register>();
3085 __ LoadFromOffset(kLoadSignedByte, out, cls, offset);
3086 break;
3087 }
3088
3089 case Primitive::kPrimShort: {
3090 Register out = locations->Out().As<Register>();
3091 __ LoadFromOffset(kLoadSignedHalfword, out, cls, offset);
3092 break;
3093 }
3094
3095 case Primitive::kPrimChar: {
3096 Register out = locations->Out().As<Register>();
3097 __ LoadFromOffset(kLoadUnsignedHalfword, out, cls, offset);
3098 break;
3099 }
3100
3101 case Primitive::kPrimInt:
3102 case Primitive::kPrimNot: {
3103 Register out = locations->Out().As<Register>();
3104 __ LoadFromOffset(kLoadWord, out, cls, offset);
3105 break;
3106 }
3107
3108 case Primitive::kPrimLong: {
3109 // TODO: support volatile.
3110 Location out = locations->Out();
3111 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), cls, offset);
3112 break;
3113 }
3114
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003115 case Primitive::kPrimFloat: {
3116 SRegister out = locations->Out().As<SRegister>();
3117 __ LoadSFromOffset(out, cls, offset);
3118 break;
3119 }
3120
3121 case Primitive::kPrimDouble: {
3122 DRegister out = FromLowSToD(locations->Out().AsFpuRegisterPairLow<SRegister>());
3123 __ LoadDFromOffset(out, cls, offset);
3124 break;
3125 }
3126
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003127 case Primitive::kPrimVoid:
3128 LOG(FATAL) << "Unreachable type " << instruction->GetType();
3129 UNREACHABLE();
3130 }
3131}
3132
3133void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3134 LocationSummary* locations =
3135 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003136 bool needs_write_barrier =
3137 CodeGenerator::StoreNeedsWriteBarrier(instruction->GetFieldType(), instruction->GetValue());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003138 locations->SetInAt(0, Location::RequiresRegister());
3139 locations->SetInAt(1, Location::RequiresRegister());
3140 // Temporary registers for the write barrier.
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003141 if (needs_write_barrier) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003142 locations->AddTemp(Location::RequiresRegister());
3143 locations->AddTemp(Location::RequiresRegister());
3144 }
3145}
3146
3147void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3148 LocationSummary* locations = instruction->GetLocations();
3149 Register cls = locations->InAt(0).As<Register>();
3150 uint32_t offset = instruction->GetFieldOffset().Uint32Value();
3151 Primitive::Type field_type = instruction->GetFieldType();
3152
3153 switch (field_type) {
3154 case Primitive::kPrimBoolean:
3155 case Primitive::kPrimByte: {
3156 Register value = locations->InAt(1).As<Register>();
3157 __ StoreToOffset(kStoreByte, value, cls, offset);
3158 break;
3159 }
3160
3161 case Primitive::kPrimShort:
3162 case Primitive::kPrimChar: {
3163 Register value = locations->InAt(1).As<Register>();
3164 __ StoreToOffset(kStoreHalfword, value, cls, offset);
3165 break;
3166 }
3167
3168 case Primitive::kPrimInt:
3169 case Primitive::kPrimNot: {
3170 Register value = locations->InAt(1).As<Register>();
3171 __ StoreToOffset(kStoreWord, value, cls, offset);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003172 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->GetValue())) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003173 Register temp = locations->GetTemp(0).As<Register>();
3174 Register card = locations->GetTemp(1).As<Register>();
3175 codegen_->MarkGCCard(temp, card, cls, value);
3176 }
3177 break;
3178 }
3179
3180 case Primitive::kPrimLong: {
3181 Location value = locations->InAt(1);
3182 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), cls, offset);
3183 break;
3184 }
3185
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003186 case Primitive::kPrimFloat: {
3187 SRegister value = locations->InAt(1).As<SRegister>();
3188 __ StoreSToOffset(value, cls, offset);
3189 break;
3190 }
3191
3192 case Primitive::kPrimDouble: {
3193 DRegister value = FromLowSToD(locations->InAt(1).AsFpuRegisterPairLow<SRegister>());
3194 __ StoreDToOffset(value, cls, offset);
3195 break;
3196 }
3197
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01003198 case Primitive::kPrimVoid:
3199 LOG(FATAL) << "Unreachable type " << field_type;
3200 UNREACHABLE();
3201 }
3202}
3203
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003204void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
3205 LocationSummary* locations =
3206 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
3207 locations->SetOut(Location::RequiresRegister());
3208}
3209
3210void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
3211 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
3212 codegen_->AddSlowPath(slow_path);
3213
3214 Register out = load->GetLocations()->Out().As<Register>();
3215 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08003216 __ LoadFromOffset(kLoadWord, out, out, mirror::ArtMethod::DeclaringClassOffset().Int32Value());
3217 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00003218 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
3219 __ cmp(out, ShifterOperand(0));
3220 __ b(slow_path->GetEntryLabel(), EQ);
3221 __ Bind(slow_path->GetExitLabel());
3222}
3223
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00003224void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
3225 LocationSummary* locations =
3226 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3227 locations->SetOut(Location::RequiresRegister());
3228}
3229
3230void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
3231 Register out = load->GetLocations()->Out().As<Register>();
3232 int32_t offset = Thread::ExceptionOffset<kArmWordSize>().Int32Value();
3233 __ LoadFromOffset(kLoadWord, out, TR, offset);
3234 __ LoadImmediate(IP, 0);
3235 __ StoreToOffset(kStoreWord, IP, TR, offset);
3236}
3237
3238void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
3239 LocationSummary* locations =
3240 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3241 InvokeRuntimeCallingConvention calling_convention;
3242 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3243}
3244
3245void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
3246 codegen_->InvokeRuntime(
3247 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc());
3248}
3249
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003250void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003251 LocationSummary::CallKind call_kind = instruction->IsClassFinal()
3252 ? LocationSummary::kNoCall
3253 : LocationSummary::kCallOnSlowPath;
3254 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3255 locations->SetInAt(0, Location::RequiresRegister());
3256 locations->SetInAt(1, Location::RequiresRegister());
3257 locations->SetOut(Location::RequiresRegister());
3258}
3259
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003260void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003261 LocationSummary* locations = instruction->GetLocations();
3262 Register obj = locations->InAt(0).As<Register>();
3263 Register cls = locations->InAt(1).As<Register>();
3264 Register out = locations->Out().As<Register>();
3265 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3266 Label done, zero;
3267 SlowPathCodeARM* slow_path = nullptr;
3268
3269 // Return 0 if `obj` is null.
3270 // TODO: avoid this check if we know obj is not null.
3271 __ cmp(obj, ShifterOperand(0));
3272 __ b(&zero, EQ);
3273 // Compare the class of `obj` with `cls`.
3274 __ LoadFromOffset(kLoadWord, out, obj, class_offset);
3275 __ cmp(out, ShifterOperand(cls));
3276 if (instruction->IsClassFinal()) {
3277 // Classes must be equal for the instanceof to succeed.
3278 __ b(&zero, NE);
3279 __ LoadImmediate(out, 1);
3280 __ b(&done);
3281 } else {
3282 // If the classes are not equal, we go into a slow path.
3283 DCHECK(locations->OnlyCallsOnSlowPath());
3284 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003285 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00003286 codegen_->AddSlowPath(slow_path);
3287 __ b(slow_path->GetEntryLabel(), NE);
3288 __ LoadImmediate(out, 1);
3289 __ b(&done);
3290 }
3291 __ Bind(&zero);
3292 __ LoadImmediate(out, 0);
3293 if (slow_path != nullptr) {
3294 __ Bind(slow_path->GetExitLabel());
3295 }
3296 __ Bind(&done);
3297}
3298
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00003299void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
3300 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
3301 instruction, LocationSummary::kCallOnSlowPath);
3302 locations->SetInAt(0, Location::RequiresRegister());
3303 locations->SetInAt(1, Location::RequiresRegister());
3304 locations->AddTemp(Location::RequiresRegister());
3305}
3306
3307void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
3308 LocationSummary* locations = instruction->GetLocations();
3309 Register obj = locations->InAt(0).As<Register>();
3310 Register cls = locations->InAt(1).As<Register>();
3311 Register temp = locations->GetTemp(0).As<Register>();
3312 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3313
3314 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
3315 instruction, locations->InAt(1), locations->GetTemp(0), instruction->GetDexPc());
3316 codegen_->AddSlowPath(slow_path);
3317
3318 // TODO: avoid this check if we know obj is not null.
3319 __ cmp(obj, ShifterOperand(0));
3320 __ b(slow_path->GetExitLabel(), EQ);
3321 // Compare the class of `obj` with `cls`.
3322 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
3323 __ cmp(temp, ShifterOperand(cls));
3324 __ b(slow_path->GetEntryLabel(), NE);
3325 __ Bind(slow_path->GetExitLabel());
3326}
3327
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00003328void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3329 LocationSummary* locations =
3330 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3331 InvokeRuntimeCallingConvention calling_convention;
3332 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3333}
3334
3335void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
3336 codegen_->InvokeRuntime(instruction->IsEnter()
3337 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3338 instruction,
3339 instruction->GetDexPc());
3340}
3341
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00003342void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction); }
3343void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction); }
3344void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction); }
3345
3346void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
3347 LocationSummary* locations =
3348 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3349 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
3350 || instruction->GetResultType() == Primitive::kPrimLong);
3351 locations->SetInAt(0, Location::RequiresRegister());
3352 locations->SetInAt(1, Location::RequiresRegister());
3353 bool output_overlaps = (instruction->GetResultType() == Primitive::kPrimLong);
3354 locations->SetOut(Location::RequiresRegister(), output_overlaps);
3355}
3356
3357void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
3358 HandleBitwiseOperation(instruction);
3359}
3360
3361void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
3362 HandleBitwiseOperation(instruction);
3363}
3364
3365void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
3366 HandleBitwiseOperation(instruction);
3367}
3368
3369void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
3370 LocationSummary* locations = instruction->GetLocations();
3371
3372 if (instruction->GetResultType() == Primitive::kPrimInt) {
3373 Register first = locations->InAt(0).As<Register>();
3374 Register second = locations->InAt(1).As<Register>();
3375 Register out = locations->Out().As<Register>();
3376 if (instruction->IsAnd()) {
3377 __ and_(out, first, ShifterOperand(second));
3378 } else if (instruction->IsOr()) {
3379 __ orr(out, first, ShifterOperand(second));
3380 } else {
3381 DCHECK(instruction->IsXor());
3382 __ eor(out, first, ShifterOperand(second));
3383 }
3384 } else {
3385 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
3386 Location first = locations->InAt(0);
3387 Location second = locations->InAt(1);
3388 Location out = locations->Out();
3389 if (instruction->IsAnd()) {
3390 __ and_(out.AsRegisterPairLow<Register>(),
3391 first.AsRegisterPairLow<Register>(),
3392 ShifterOperand(second.AsRegisterPairLow<Register>()));
3393 __ and_(out.AsRegisterPairHigh<Register>(),
3394 first.AsRegisterPairHigh<Register>(),
3395 ShifterOperand(second.AsRegisterPairHigh<Register>()));
3396 } else if (instruction->IsOr()) {
3397 __ orr(out.AsRegisterPairLow<Register>(),
3398 first.AsRegisterPairLow<Register>(),
3399 ShifterOperand(second.AsRegisterPairLow<Register>()));
3400 __ orr(out.AsRegisterPairHigh<Register>(),
3401 first.AsRegisterPairHigh<Register>(),
3402 ShifterOperand(second.AsRegisterPairHigh<Register>()));
3403 } else {
3404 DCHECK(instruction->IsXor());
3405 __ eor(out.AsRegisterPairLow<Register>(),
3406 first.AsRegisterPairLow<Register>(),
3407 ShifterOperand(second.AsRegisterPairLow<Register>()));
3408 __ eor(out.AsRegisterPairHigh<Register>(),
3409 first.AsRegisterPairHigh<Register>(),
3410 ShifterOperand(second.AsRegisterPairHigh<Register>()));
3411 }
3412 }
3413}
3414
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00003415} // namespace arm
3416} // namespace art