blob: 6d052932776525de3ed3e235955a955baa25a580 [file] [log] [blame]
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "code_generator_arm.h"
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000018
Calin Juravle34166012014-12-19 17:22:29 +000019#include "arch/arm/instruction_set_features_arm.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070020#include "art_method.h"
Zheng Xuc6667102015-05-15 16:08:45 +080021#include "code_generator_utils.h"
Vladimir Marko58155012015-08-19 12:49:41 +000022#include "compiled_method.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070023#include "entrypoints/quick/quick_entrypoints.h"
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +010024#include "gc/accounting/card_table.h"
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -080025#include "intrinsics.h"
26#include "intrinsics_arm.h"
Ian Rogers7e70b002014-10-08 11:47:24 -070027#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070028#include "mirror/class-inl.h"
Ian Rogersb0fa5dc2014-04-28 16:47:08 -070029#include "thread.h"
Nicolas Geoffray9cf35522014-06-09 18:40:10 +010030#include "utils/arm/assembler_arm.h"
31#include "utils/arm/managed_register_arm.h"
Roland Levillain946e1432014-11-11 17:35:19 +000032#include "utils/assembler.h"
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010033#include "utils/stack_checks.h"
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +000034
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000035namespace art {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +010036
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000037namespace arm {
38
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +000039static bool ExpectedPairLayout(Location location) {
40 // We expected this for both core and fpu register pairs.
41 return ((location.low() & 1) == 0) && (location.low() + 1 == location.high());
42}
43
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010044static constexpr int kCurrentMethodStackOffset = 0;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010045static constexpr Register kMethodRegisterArgument = R0;
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010046
Nicolas Geoffray4dee6362015-01-23 18:23:14 +000047// We unconditionally allocate R5 to ensure we can do long operations
48// with baseline.
49static constexpr Register kCoreSavedRegisterForBaseline = R5;
50static constexpr Register kCoreCalleeSaves[] =
Andreas Gampe501fd632015-09-10 16:11:06 -070051 { R5, R6, R7, R8, R10, R11, LR };
Nicolas Geoffray4dee6362015-01-23 18:23:14 +000052static constexpr SRegister kFpuCalleeSaves[] =
53 { S16, S17, S18, S19, S20, S21, S22, S23, S24, S25, S26, S27, S28, S29, S30, S31 };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010054
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +000055// D31 cannot be split into two S registers, and the register allocator only works on
56// S registers. Therefore there is no need to block it.
57static constexpr DRegister DTMP = D31;
58
Andreas Gampe7cffc3b2015-10-19 21:31:53 -070059static constexpr uint32_t kPackedSwitchJumpTableThreshold = 6;
60
Roland Levillain62a46b22015-06-01 18:24:13 +010061#define __ down_cast<ArmAssembler*>(codegen->GetAssembler())->
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010062#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArmWordSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010063
Andreas Gampe85b62f22015-09-09 13:15:38 -070064class NullCheckSlowPathARM : public SlowPathCode {
Nicolas Geoffraye5038322014-07-04 09:41:32 +010065 public:
Nicolas Geoffray39468442014-09-02 15:17:15 +010066 explicit NullCheckSlowPathARM(HNullCheck* instruction) : instruction_(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +010067
Alexandre Rames67555f72014-11-18 10:55:16 +000068 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010069 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010070 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +000071 if (instruction_->CanThrowIntoCatchBlock()) {
72 // Live registers will be restored in the catch block if caught.
73 SaveLiveRegisters(codegen, instruction_->GetLocations());
74 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +010075 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +000076 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffraye5038322014-07-04 09:41:32 +010077 }
78
Alexandre Rames8158f282015-08-07 10:26:17 +010079 bool IsFatal() const OVERRIDE { return true; }
80
Alexandre Rames9931f312015-06-19 14:47:01 +010081 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathARM"; }
82
Nicolas Geoffraye5038322014-07-04 09:41:32 +010083 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +010084 HNullCheck* const instruction_;
Nicolas Geoffraye5038322014-07-04 09:41:32 +010085 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM);
86};
87
Andreas Gampe85b62f22015-09-09 13:15:38 -070088class DivZeroCheckSlowPathARM : public SlowPathCode {
Calin Juravled0d48522014-11-04 16:40:20 +000089 public:
90 explicit DivZeroCheckSlowPathARM(HDivZeroCheck* instruction) : instruction_(instruction) {}
91
Alexandre Rames67555f72014-11-18 10:55:16 +000092 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +000093 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
94 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +000095 if (instruction_->CanThrowIntoCatchBlock()) {
96 // Live registers will be restored in the catch block if caught.
97 SaveLiveRegisters(codegen, instruction_->GetLocations());
98 }
Calin Juravled0d48522014-11-04 16:40:20 +000099 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000100 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc(), this);
Calin Juravled0d48522014-11-04 16:40:20 +0000101 }
102
Alexandre Rames8158f282015-08-07 10:26:17 +0100103 bool IsFatal() const OVERRIDE { return true; }
104
Alexandre Rames9931f312015-06-19 14:47:01 +0100105 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathARM"; }
106
Calin Juravled0d48522014-11-04 16:40:20 +0000107 private:
108 HDivZeroCheck* const instruction_;
109 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM);
110};
111
Andreas Gampe85b62f22015-09-09 13:15:38 -0700112class SuspendCheckSlowPathARM : public SlowPathCode {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000113 public:
Alexandre Rames67555f72014-11-18 10:55:16 +0000114 SuspendCheckSlowPathARM(HSuspendCheck* instruction, HBasicBlock* successor)
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100115 : instruction_(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000116
Alexandre Rames67555f72014-11-18 10:55:16 +0000117 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100118 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000119 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000120 SaveLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100121 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000122 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000123 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100124 if (successor_ == nullptr) {
125 __ b(GetReturnLabel());
126 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100127 __ b(arm_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100128 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000129 }
130
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100131 Label* GetReturnLabel() {
132 DCHECK(successor_ == nullptr);
133 return &return_label_;
134 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000135
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100136 HBasicBlock* GetSuccessor() const {
137 return successor_;
138 }
139
Alexandre Rames9931f312015-06-19 14:47:01 +0100140 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathARM"; }
141
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000142 private:
143 HSuspendCheck* const instruction_;
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100144 // If not null, the block to branch to after the suspend check.
145 HBasicBlock* const successor_;
146
147 // If `successor_` is null, the label to branch to after the suspend check.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000148 Label return_label_;
149
150 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM);
151};
152
Andreas Gampe85b62f22015-09-09 13:15:38 -0700153class BoundsCheckSlowPathARM : public SlowPathCode {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100154 public:
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100155 explicit BoundsCheckSlowPathARM(HBoundsCheck* instruction)
156 : instruction_(instruction) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100157
Alexandre Rames67555f72014-11-18 10:55:16 +0000158 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100159 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100160 LocationSummary* locations = instruction_->GetLocations();
161
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100162 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000163 if (instruction_->CanThrowIntoCatchBlock()) {
164 // Live registers will be restored in the catch block if caught.
165 SaveLiveRegisters(codegen, instruction_->GetLocations());
166 }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000167 // We're moving two locations to locations that could overlap, so we need a parallel
168 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100169 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000170 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100171 locations->InAt(0),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000172 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100173 Primitive::kPrimInt,
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100174 locations->InAt(1),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100175 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
176 Primitive::kPrimInt);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100177 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000178 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100179 }
180
Alexandre Rames8158f282015-08-07 10:26:17 +0100181 bool IsFatal() const OVERRIDE { return true; }
182
Alexandre Rames9931f312015-06-19 14:47:01 +0100183 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathARM"; }
184
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100185 private:
Nicolas Geoffray39468442014-09-02 15:17:15 +0100186 HBoundsCheck* const instruction_;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100187
188 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM);
189};
190
Andreas Gampe85b62f22015-09-09 13:15:38 -0700191class LoadClassSlowPathARM : public SlowPathCode {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100192 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000193 LoadClassSlowPathARM(HLoadClass* cls,
194 HInstruction* at,
195 uint32_t dex_pc,
196 bool do_clinit)
197 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
198 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
199 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100200
Alexandre Rames67555f72014-11-18 10:55:16 +0000201 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000202 LocationSummary* locations = at_->GetLocations();
203
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100204 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
205 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000206 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100207
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100208 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000209 __ LoadImmediate(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex());
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000210 int32_t entry_point_offset = do_clinit_
211 ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
212 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000213 arm_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000214
215 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000216 Location out = locations->Out();
217 if (out.IsValid()) {
218 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000219 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
220 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000221 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100222 __ b(GetExitLabel());
223 }
224
Alexandre Rames9931f312015-06-19 14:47:01 +0100225 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathARM"; }
226
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100227 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
Andreas Gampe85b62f22015-09-09 13:15:38 -0700244class LoadStringSlowPathARM : public SlowPathCode {
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000245 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());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000254 SaveLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000255
256 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800257 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction_->GetStringIndex());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000258 arm_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000259 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000260 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
261
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000262 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000263 __ b(GetExitLabel());
264 }
265
Alexandre Rames9931f312015-06-19 14:47:01 +0100266 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathARM"; }
267
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000268 private:
269 HLoadString* const instruction_;
270
271 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM);
272};
273
Andreas Gampe85b62f22015-09-09 13:15:38 -0700274class TypeCheckSlowPathARM : public SlowPathCode {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000275 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000276 TypeCheckSlowPathARM(HInstruction* instruction, bool is_fatal)
277 : instruction_(instruction), is_fatal_(is_fatal) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000278
Alexandre Rames67555f72014-11-18 10:55:16 +0000279 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000280 LocationSummary* locations = instruction_->GetLocations();
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100281 Location object_class = instruction_->IsCheckCast() ? locations->GetTemp(0)
282 : locations->Out();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000283 DCHECK(instruction_->IsCheckCast()
284 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000285
286 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
287 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000288
289 if (instruction_->IsCheckCast()) {
290 // The codegen for the instruction overwrites `temp`, so put it back in place.
291 Register obj = locations->InAt(0).AsRegister<Register>();
292 Register temp = locations->GetTemp(0).AsRegister<Register>();
293 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
294 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
295 __ MaybeUnpoisonHeapReference(temp);
296 }
297
298 if (!is_fatal_) {
299 SaveLiveRegisters(codegen, locations);
300 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000301
302 // We're moving two locations to locations that could overlap, so we need a parallel
303 // move resolver.
304 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000305 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100306 locations->InAt(1),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000307 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100308 Primitive::kPrimNot,
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100309 object_class,
Nicolas Geoffray90218252015-04-15 11:56:51 +0100310 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
311 Primitive::kPrimNot);
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000312
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000313 if (instruction_->IsInstanceOf()) {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100314 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial),
315 instruction_,
316 instruction_->GetDexPc(),
317 this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000318 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
319 } else {
320 DCHECK(instruction_->IsCheckCast());
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100321 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast),
322 instruction_,
323 instruction_->GetDexPc(),
324 this);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000325 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000326
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000327 if (!is_fatal_) {
328 RestoreLiveRegisters(codegen, locations);
329 __ b(GetExitLabel());
330 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000331 }
332
Alexandre Rames9931f312015-06-19 14:47:01 +0100333 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathARM"; }
334
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000335 bool IsFatal() const OVERRIDE { return is_fatal_; }
336
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000337 private:
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000338 HInstruction* const instruction_;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000339 const bool is_fatal_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000340
341 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM);
342};
343
Andreas Gampe85b62f22015-09-09 13:15:38 -0700344class DeoptimizationSlowPathARM : public SlowPathCode {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700345 public:
346 explicit DeoptimizationSlowPathARM(HInstruction* instruction)
347 : instruction_(instruction) {}
348
349 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
350 __ Bind(GetEntryLabel());
351 SaveLiveRegisters(codegen, instruction_->GetLocations());
352 DCHECK(instruction_->IsDeoptimize());
353 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
354 uint32_t dex_pc = deoptimize->GetDexPc();
355 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
356 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
357 }
358
Alexandre Rames9931f312015-06-19 14:47:01 +0100359 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathARM"; }
360
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700361 private:
362 HInstruction* const instruction_;
363 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM);
364};
365
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100366class ArraySetSlowPathARM : public SlowPathCode {
367 public:
368 explicit ArraySetSlowPathARM(HInstruction* instruction) : instruction_(instruction) {}
369
370 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
371 LocationSummary* locations = instruction_->GetLocations();
372 __ Bind(GetEntryLabel());
373 SaveLiveRegisters(codegen, locations);
374
375 InvokeRuntimeCallingConvention calling_convention;
376 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
377 parallel_move.AddMove(
378 locations->InAt(0),
379 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
380 Primitive::kPrimNot,
381 nullptr);
382 parallel_move.AddMove(
383 locations->InAt(1),
384 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
385 Primitive::kPrimInt,
386 nullptr);
387 parallel_move.AddMove(
388 locations->InAt(2),
389 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
390 Primitive::kPrimNot,
391 nullptr);
392 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
393
394 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
395 arm_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
396 instruction_,
397 instruction_->GetDexPc(),
398 this);
399 RestoreLiveRegisters(codegen, locations);
400 __ b(GetExitLabel());
401 }
402
403 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathARM"; }
404
405 private:
406 HInstruction* const instruction_;
407
408 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathARM);
409};
410
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +0000411#undef __
Roland Levillain62a46b22015-06-01 18:24:13 +0100412#define __ down_cast<ArmAssembler*>(GetAssembler())->
Dave Allison20dfc792014-06-16 20:44:29 -0700413
Aart Bike9f37602015-10-09 11:15:55 -0700414inline Condition ARMCondition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -0700415 switch (cond) {
416 case kCondEQ: return EQ;
417 case kCondNE: return NE;
418 case kCondLT: return LT;
419 case kCondLE: return LE;
420 case kCondGT: return GT;
421 case kCondGE: return GE;
Aart Bike9f37602015-10-09 11:15:55 -0700422 case kCondB: return LO;
423 case kCondBE: return LS;
424 case kCondA: return HI;
425 case kCondAE: return HS;
Dave Allison20dfc792014-06-16 20:44:29 -0700426 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100427 LOG(FATAL) << "Unreachable";
428 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -0700429}
430
Aart Bike9f37602015-10-09 11:15:55 -0700431// Maps signed condition to unsigned condition.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100432inline Condition ARMUnsignedCondition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -0700433 switch (cond) {
Roland Levillain4fa13f62015-07-06 18:11:54 +0100434 case kCondEQ: return EQ;
435 case kCondNE: return NE;
Aart Bike9f37602015-10-09 11:15:55 -0700436 // Signed to unsigned.
Roland Levillain4fa13f62015-07-06 18:11:54 +0100437 case kCondLT: return LO;
438 case kCondLE: return LS;
439 case kCondGT: return HI;
440 case kCondGE: return HS;
Aart Bike9f37602015-10-09 11:15:55 -0700441 // Unsigned remain unchanged.
442 case kCondB: return LO;
443 case kCondBE: return LS;
444 case kCondA: return HI;
445 case kCondAE: return HS;
Dave Allison20dfc792014-06-16 20:44:29 -0700446 }
Roland Levillain4fa13f62015-07-06 18:11:54 +0100447 LOG(FATAL) << "Unreachable";
448 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -0700449}
450
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100451void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100452 stream << Register(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100453}
454
455void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100456 stream << SRegister(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +0100457}
458
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100459size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
460 __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index);
461 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100462}
463
Nicolas Geoffray102cbed2014-10-15 18:31:05 +0100464size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
465 __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index);
466 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +0100467}
468
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000469size_t CodeGeneratorARM::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
470 __ StoreSToOffset(static_cast<SRegister>(reg_id), SP, stack_index);
471 return kArmWordSize;
472}
473
474size_t CodeGeneratorARM::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
475 __ LoadSFromOffset(static_cast<SRegister>(reg_id), SP, stack_index);
476 return kArmWordSize;
477}
478
Calin Juravle34166012014-12-19 17:22:29 +0000479CodeGeneratorARM::CodeGeneratorARM(HGraph* graph,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000480 const ArmInstructionSetFeatures& isa_features,
Serban Constantinescuecc43662015-08-13 13:33:12 +0100481 const CompilerOptions& compiler_options,
482 OptimizingCompilerStats* stats)
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000483 : CodeGenerator(graph,
484 kNumberOfCoreRegisters,
485 kNumberOfSRegisters,
486 kNumberOfRegisterPairs,
487 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
488 arraysize(kCoreCalleeSaves)),
Nicolas Geoffray75d5b9b2015-10-05 07:40:35 +0000489 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
490 arraysize(kFpuCalleeSaves)),
Serban Constantinescuecc43662015-08-13 13:33:12 +0100491 compiler_options,
492 stats),
Vladimir Marko225b6462015-09-28 12:17:40 +0100493 block_labels_(nullptr),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100494 location_builder_(graph, this),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100495 instruction_visitor_(graph, this),
Nicolas Geoffray8d486732014-07-16 16:23:40 +0100496 move_resolver_(graph->GetArena(), this),
Vladimir Markocf93a5c2015-06-16 11:33:24 +0000497 assembler_(),
Vladimir Marko58155012015-08-19 12:49:41 +0000498 isa_features_(isa_features),
Vladimir Marko5233f932015-09-29 19:01:15 +0100499 method_patches_(MethodReferenceComparator(),
500 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
501 call_patches_(MethodReferenceComparator(),
502 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
503 relative_call_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)) {
Andreas Gampe501fd632015-09-10 16:11:06 -0700504 // Always save the LR register to mimic Quick.
505 AddAllocatedRegister(Location::RegisterLocation(LR));
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +0100506}
507
Vladimir Markocf93a5c2015-06-16 11:33:24 +0000508void CodeGeneratorARM::Finalize(CodeAllocator* allocator) {
509 // Ensure that we fix up branches and literal loads and emit the literal pool.
510 __ FinalizeCode();
511
512 // Adjust native pc offsets in stack maps.
513 for (size_t i = 0, num = stack_map_stream_.GetNumberOfStackMaps(); i != num; ++i) {
514 uint32_t old_position = stack_map_stream_.GetStackMap(i).native_pc_offset;
515 uint32_t new_position = __ GetAdjustedPosition(old_position);
516 stack_map_stream_.SetStackMapNativePcOffset(i, new_position);
517 }
Alexandre Rameseb7b7392015-06-19 14:47:01 +0100518 // Adjust pc offsets for the disassembly information.
519 if (disasm_info_ != nullptr) {
520 GeneratedCodeInterval* frame_entry_interval = disasm_info_->GetFrameEntryInterval();
521 frame_entry_interval->start = __ GetAdjustedPosition(frame_entry_interval->start);
522 frame_entry_interval->end = __ GetAdjustedPosition(frame_entry_interval->end);
523 for (auto& it : *disasm_info_->GetInstructionIntervals()) {
524 it.second.start = __ GetAdjustedPosition(it.second.start);
525 it.second.end = __ GetAdjustedPosition(it.second.end);
526 }
527 for (auto& it : *disasm_info_->GetSlowPathIntervals()) {
528 it.code_interval.start = __ GetAdjustedPosition(it.code_interval.start);
529 it.code_interval.end = __ GetAdjustedPosition(it.code_interval.end);
530 }
531 }
Vladimir Markocf93a5c2015-06-16 11:33:24 +0000532
533 CodeGenerator::Finalize(allocator);
534}
535
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100536Location CodeGeneratorARM::AllocateFreeRegister(Primitive::Type type) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100537 switch (type) {
538 case Primitive::kPrimLong: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100539 size_t reg = FindFreeEntry(blocked_register_pairs_, kNumberOfRegisterPairs);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100540 ArmManagedRegister pair =
541 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(reg));
Calin Juravle34bacdf2014-10-07 20:23:36 +0100542 DCHECK(!blocked_core_registers_[pair.AsRegisterPairLow()]);
543 DCHECK(!blocked_core_registers_[pair.AsRegisterPairHigh()]);
544
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100545 blocked_core_registers_[pair.AsRegisterPairLow()] = true;
546 blocked_core_registers_[pair.AsRegisterPairHigh()] = true;
Calin Juravle34bacdf2014-10-07 20:23:36 +0100547 UpdateBlockedPairRegisters();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100548 return Location::RegisterPairLocation(pair.AsRegisterPairLow(), pair.AsRegisterPairHigh());
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100549 }
550
551 case Primitive::kPrimByte:
552 case Primitive::kPrimBoolean:
553 case Primitive::kPrimChar:
554 case Primitive::kPrimShort:
555 case Primitive::kPrimInt:
556 case Primitive::kPrimNot: {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100557 int reg = FindFreeEntry(blocked_core_registers_, kNumberOfCoreRegisters);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100558 // Block all register pairs that contain `reg`.
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100559 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
560 ArmManagedRegister current =
561 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
562 if (current.AsRegisterPairLow() == reg || current.AsRegisterPairHigh() == reg) {
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100563 blocked_register_pairs_[i] = true;
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100564 }
565 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100566 return Location::RegisterLocation(reg);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100567 }
568
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000569 case Primitive::kPrimFloat: {
570 int reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfSRegisters);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100571 return Location::FpuRegisterLocation(reg);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100572 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100573
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000574 case Primitive::kPrimDouble: {
Nicolas Geoffray3c035032014-10-28 10:46:40 +0000575 int reg = FindTwoFreeConsecutiveAlignedEntries(blocked_fpu_registers_, kNumberOfSRegisters);
576 DCHECK_EQ(reg % 2, 0);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000577 return Location::FpuRegisterPairLocation(reg, reg + 1);
578 }
579
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100580 case Primitive::kPrimVoid:
581 LOG(FATAL) << "Unreachable type " << type;
582 }
583
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100584 return Location();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100585}
586
Nicolas Geoffraya0bb2bd2015-01-26 12:49:35 +0000587void CodeGeneratorARM::SetupBlockedRegisters(bool is_baseline) const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100588 // Don't allocate the dalvik style register pair passing.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100589 blocked_register_pairs_[R1_R2] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100590
591 // Stack register, LR and PC are always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100592 blocked_core_registers_[SP] = true;
593 blocked_core_registers_[LR] = true;
594 blocked_core_registers_[PC] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100595
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100596 // Reserve thread register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100597 blocked_core_registers_[TR] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100598
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100599 // Reserve temp register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +0100600 blocked_core_registers_[IP] = true;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +0100601
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000602 if (is_baseline) {
603 for (size_t i = 0; i < arraysize(kCoreCalleeSaves); ++i) {
604 blocked_core_registers_[kCoreCalleeSaves[i]] = true;
605 }
Nicolas Geoffray5b4b8982014-12-18 17:45:56 +0000606
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000607 blocked_core_registers_[kCoreSavedRegisterForBaseline] = false;
Nicolas Geoffrayecf680d2015-10-05 11:15:37 +0100608 }
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000609
Nicolas Geoffrayecf680d2015-10-05 11:15:37 +0100610 if (is_baseline || GetGraph()->IsDebuggable()) {
611 // Stubs do not save callee-save floating point registers. If the graph
612 // is debuggable, we need to deal with these registers differently. For
613 // now, just block them.
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000614 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
615 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
616 }
617 }
Calin Juravle34bacdf2014-10-07 20:23:36 +0100618
619 UpdateBlockedPairRegisters();
620}
621
622void CodeGeneratorARM::UpdateBlockedPairRegisters() const {
623 for (int i = 0; i < kNumberOfRegisterPairs; i++) {
624 ArmManagedRegister current =
625 ArmManagedRegister::FromRegisterPair(static_cast<RegisterPair>(i));
626 if (blocked_core_registers_[current.AsRegisterPairLow()]
627 || blocked_core_registers_[current.AsRegisterPairHigh()]) {
628 blocked_register_pairs_[i] = true;
629 }
630 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100631}
632
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100633InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen)
634 : HGraphVisitor(graph),
635 assembler_(codegen->GetAssembler()),
636 codegen_(codegen) {}
637
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000638void CodeGeneratorARM::ComputeSpillMask() {
639 core_spill_mask_ = allocated_registers_.GetCoreRegisters() & core_callee_save_mask_;
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000640 // Save one extra register for baseline. Note that on thumb2, there is no easy
641 // instruction to restore just the PC, so this actually helps both baseline
642 // and non-baseline to save and restore at least two registers at entry and exit.
643 core_spill_mask_ |= (1 << kCoreSavedRegisterForBaseline);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000644 DCHECK_NE(core_spill_mask_, 0u) << "At least the return address register must be saved";
645 fpu_spill_mask_ = allocated_registers_.GetFloatingPointRegisters() & fpu_callee_save_mask_;
646 // We use vpush and vpop for saving and restoring floating point registers, which take
647 // a SRegister and the number of registers to save/restore after that SRegister. We
648 // therefore update the `fpu_spill_mask_` to also contain those registers not allocated,
649 // but in the range.
650 if (fpu_spill_mask_ != 0) {
651 uint32_t least_significant_bit = LeastSignificantBit(fpu_spill_mask_);
652 uint32_t most_significant_bit = MostSignificantBit(fpu_spill_mask_);
653 for (uint32_t i = least_significant_bit + 1 ; i < most_significant_bit; ++i) {
654 fpu_spill_mask_ |= (1 << i);
655 }
656 }
657}
658
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100659static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100660 return dwarf::Reg::ArmCore(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100661}
662
663static dwarf::Reg DWARFReg(SRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +0100664 return dwarf::Reg::ArmFp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100665}
666
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000667void CodeGeneratorARM::GenerateFrameEntry() {
Roland Levillain199f3362014-11-27 17:15:16 +0000668 bool skip_overflow_check =
669 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000670 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000671 __ Bind(&frame_entry_label_);
672
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000673 if (HasEmptyFrame()) {
674 return;
675 }
676
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100677 if (!skip_overflow_check) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000678 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
679 __ LoadFromOffset(kLoadWord, IP, IP, 0);
680 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +0100681 }
682
Andreas Gampe501fd632015-09-10 16:11:06 -0700683 __ PushList(core_spill_mask_);
684 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(core_spill_mask_));
685 __ cfi().RelOffsetForMany(DWARFReg(kMethodRegisterArgument), 0, core_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000686 if (fpu_spill_mask_ != 0) {
687 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
688 __ vpushs(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100689 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(fpu_spill_mask_));
David Srbecky9d8606d2015-04-12 09:35:32 +0100690 __ cfi().RelOffsetForMany(DWARFReg(S0), 0, fpu_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000691 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100692 int adjust = GetFrameSize() - FrameEntrySpillSize();
693 __ AddConstant(SP, -adjust);
694 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100695 __ StoreToOffset(kStoreWord, kMethodRegisterArgument, SP, 0);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000696}
697
698void CodeGeneratorARM::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000699 if (HasEmptyFrame()) {
700 __ bx(LR);
701 return;
702 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100703 __ cfi().RememberState();
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100704 int adjust = GetFrameSize() - FrameEntrySpillSize();
705 __ AddConstant(SP, adjust);
706 __ cfi().AdjustCFAOffset(-adjust);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000707 if (fpu_spill_mask_ != 0) {
708 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
709 __ vpops(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100710 __ cfi().AdjustCFAOffset(-kArmPointerSize * POPCOUNT(fpu_spill_mask_));
711 __ cfi().RestoreMany(DWARFReg(SRegister(0)), fpu_spill_mask_);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +0000712 }
Andreas Gampe501fd632015-09-10 16:11:06 -0700713 // Pop LR into PC to return.
714 DCHECK_NE(core_spill_mask_ & (1 << LR), 0U);
715 uint32_t pop_mask = (core_spill_mask_ & (~(1 << LR))) | 1 << PC;
716 __ PopList(pop_mask);
David Srbeckyc34dc932015-04-12 09:27:43 +0100717 __ cfi().RestoreState();
718 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000719}
720
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100721void CodeGeneratorARM::Bind(HBasicBlock* block) {
Andreas Gampe7cffc3b2015-10-19 21:31:53 -0700722 Label* label = GetLabelOf(block);
723 __ BindTrackedLabel(label);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +0000724}
725
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100726Location CodeGeneratorARM::GetStackLocation(HLoadLocal* load) const {
727 switch (load->GetType()) {
728 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100729 case Primitive::kPrimDouble:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100730 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100731
732 case Primitive::kPrimInt:
733 case Primitive::kPrimNot:
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100734 case Primitive::kPrimFloat:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100735 return Location::StackSlot(GetStackSlot(load->GetLocal()));
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100736
737 case Primitive::kPrimBoolean:
738 case Primitive::kPrimByte:
739 case Primitive::kPrimChar:
740 case Primitive::kPrimShort:
741 case Primitive::kPrimVoid:
742 LOG(FATAL) << "Unexpected type " << load->GetType();
Andreas Gampe65b798e2015-04-06 09:35:22 -0700743 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100744 }
745
746 LOG(FATAL) << "Unreachable";
Andreas Gampe65b798e2015-04-06 09:35:22 -0700747 UNREACHABLE();
Nicolas Geoffraya7aca372014-04-28 17:47:12 +0100748}
749
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100750Location InvokeDexCallingConventionVisitorARM::GetNextLocation(Primitive::Type type) {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100751 switch (type) {
752 case Primitive::kPrimBoolean:
753 case Primitive::kPrimByte:
754 case Primitive::kPrimChar:
755 case Primitive::kPrimShort:
756 case Primitive::kPrimInt:
757 case Primitive::kPrimNot: {
758 uint32_t index = gp_index_++;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000759 uint32_t stack_index = stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100760 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100761 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100762 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000763 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100764 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100765 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100766
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000767 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100768 uint32_t index = gp_index_;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000769 uint32_t stack_index = stack_index_;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100770 gp_index_ += 2;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000771 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100772 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000773 if (calling_convention.GetRegisterAt(index) == R1) {
774 // Skip R1, and use R2_R3 instead.
775 gp_index_++;
776 index++;
777 }
778 }
779 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
780 DCHECK_EQ(calling_convention.GetRegisterAt(index) + 1,
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000781 calling_convention.GetRegisterAt(index + 1));
Calin Juravle175dc732015-08-25 15:42:32 +0100782
Nicolas Geoffray69c15d32015-01-13 11:42:13 +0000783 return Location::RegisterPairLocation(calling_convention.GetRegisterAt(index),
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +0000784 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100785 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000786 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
787 }
788 }
789
790 case Primitive::kPrimFloat: {
791 uint32_t stack_index = stack_index_++;
792 if (float_index_ % 2 == 0) {
793 float_index_ = std::max(double_index_, float_index_);
794 }
795 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) {
796 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++));
797 } else {
798 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
799 }
800 }
801
802 case Primitive::kPrimDouble: {
803 double_index_ = std::max(double_index_, RoundUp(float_index_, 2));
804 uint32_t stack_index = stack_index_;
805 stack_index_ += 2;
806 if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) {
807 uint32_t index = double_index_;
808 double_index_ += 2;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000809 Location result = Location::FpuRegisterPairLocation(
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000810 calling_convention.GetFpuRegisterAt(index),
811 calling_convention.GetFpuRegisterAt(index + 1));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000812 DCHECK(ExpectedPairLayout(result));
813 return result;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000814 } else {
815 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100816 }
817 }
818
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100819 case Primitive::kPrimVoid:
820 LOG(FATAL) << "Unexpected parameter type " << type;
821 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100822 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +0100823 return Location();
824}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +0100825
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100826Location InvokeDexCallingConventionVisitorARM::GetReturnLocation(Primitive::Type type) const {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000827 switch (type) {
828 case Primitive::kPrimBoolean:
829 case Primitive::kPrimByte:
830 case Primitive::kPrimChar:
831 case Primitive::kPrimShort:
832 case Primitive::kPrimInt:
833 case Primitive::kPrimNot: {
834 return Location::RegisterLocation(R0);
835 }
836
837 case Primitive::kPrimFloat: {
838 return Location::FpuRegisterLocation(S0);
839 }
840
841 case Primitive::kPrimLong: {
842 return Location::RegisterPairLocation(R0, R1);
843 }
844
845 case Primitive::kPrimDouble: {
846 return Location::FpuRegisterPairLocation(S0, S1);
847 }
848
849 case Primitive::kPrimVoid:
850 return Location();
851 }
Nicolas Geoffray0d1652e2015-06-03 12:12:19 +0100852
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000853 UNREACHABLE();
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000854}
855
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100856Location InvokeDexCallingConventionVisitorARM::GetMethodLocation() const {
857 return Location::RegisterLocation(kMethodRegisterArgument);
858}
859
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100860void CodeGeneratorARM::Move32(Location destination, Location source) {
861 if (source.Equals(destination)) {
862 return;
863 }
864 if (destination.IsRegister()) {
865 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000866 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100867 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000868 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100869 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000870 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100871 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100872 } else if (destination.IsFpuRegister()) {
873 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000874 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100875 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000876 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100877 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000878 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100879 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100880 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000881 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100882 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000883 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100884 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000885 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100886 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +0000887 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100888 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
889 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100890 }
891 }
892}
893
894void CodeGeneratorARM::Move64(Location destination, Location source) {
895 if (source.Equals(destination)) {
896 return;
897 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100898 if (destination.IsRegisterPair()) {
899 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000900 EmitParallelMoves(
901 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
902 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100903 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000904 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100905 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
906 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100907 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000908 UNIMPLEMENTED(FATAL);
Calin Juravlee460d1d2015-09-29 04:52:17 +0100909 } else if (source.IsFpuRegisterPair()) {
910 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
911 destination.AsRegisterPairHigh<Register>(),
912 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100913 } else {
914 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +0000915 DCHECK(ExpectedPairLayout(destination));
916 __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(),
917 SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100918 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000919 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100920 if (source.IsDoubleStackSlot()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000921 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
922 SP,
923 source.GetStackIndex());
Calin Juravlee460d1d2015-09-29 04:52:17 +0100924 } else if (source.IsRegisterPair()) {
925 __ vmovdrr(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
926 source.AsRegisterPairLow<Register>(),
927 source.AsRegisterPairHigh<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100928 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000929 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +0100930 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100931 } else {
932 DCHECK(destination.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100933 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000934 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100935 if (source.AsRegisterPairLow<Register>() == R1) {
936 DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +0100937 __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex());
938 __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100939 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +0100940 __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100941 SP, destination.GetStackIndex());
942 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +0000943 } else if (source.IsFpuRegisterPair()) {
944 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
945 SP,
946 destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100947 } else {
948 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000949 EmitParallelMoves(
950 Location::StackSlot(source.GetStackIndex()),
951 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100952 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +0000953 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100954 Location::StackSlot(destination.GetHighStackIndex(kArmWordSize)),
955 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100956 }
957 }
958}
959
Nicolas Geoffray4a34a422014-04-03 10:38:37 +0100960void CodeGeneratorARM::Move(HInstruction* instruction, Location location, HInstruction* move_for) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100961 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100962 if (instruction->IsCurrentMethod()) {
963 Move32(location, Location::StackSlot(kCurrentMethodStackOffset));
964 } else if (locations != nullptr && locations->Out().Equals(location)) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +0100965 return;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100966 } else if (locations != nullptr && locations->Out().IsConstant()) {
Calin Juravlea21f5982014-11-13 15:53:04 +0000967 HConstant* const_to_move = locations->Out().GetConstant();
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000968 if (const_to_move->IsIntConstant() || const_to_move->IsNullConstant()) {
969 int32_t value = GetInt32ValueOf(const_to_move);
Calin Juravlea21f5982014-11-13 15:53:04 +0000970 if (location.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +0000971 __ LoadImmediate(location.AsRegister<Register>(), value);
Calin Juravlea21f5982014-11-13 15:53:04 +0000972 } else {
973 DCHECK(location.IsStackSlot());
974 __ LoadImmediate(IP, value);
975 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
976 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000977 } else {
Nicolas Geoffray3747b482015-01-19 17:17:16 +0000978 DCHECK(const_to_move->IsLongConstant()) << const_to_move->DebugName();
Calin Juravlea21f5982014-11-13 15:53:04 +0000979 int64_t value = const_to_move->AsLongConstant()->GetValue();
980 if (location.IsRegisterPair()) {
981 __ LoadImmediate(location.AsRegisterPairLow<Register>(), Low32Bits(value));
982 __ LoadImmediate(location.AsRegisterPairHigh<Register>(), High32Bits(value));
983 } else {
984 DCHECK(location.IsDoubleStackSlot());
985 __ LoadImmediate(IP, Low32Bits(value));
986 __ StoreToOffset(kStoreWord, IP, SP, location.GetStackIndex());
987 __ LoadImmediate(IP, High32Bits(value));
988 __ StoreToOffset(kStoreWord, IP, SP, location.GetHighStackIndex(kArmWordSize));
989 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100990 }
Roland Levillain476df552014-10-09 17:51:36 +0100991 } else if (instruction->IsLoadLocal()) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +0100992 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
993 switch (instruction->GetType()) {
994 case Primitive::kPrimBoolean:
995 case Primitive::kPrimByte:
996 case Primitive::kPrimChar:
997 case Primitive::kPrimShort:
998 case Primitive::kPrimInt:
999 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001000 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001001 Move32(location, Location::StackSlot(stack_slot));
1002 break;
1003
1004 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001005 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001006 Move64(location, Location::DoubleStackSlot(stack_slot));
1007 break;
1008
1009 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001010 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001011 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +00001012 } else if (instruction->IsTemporary()) {
1013 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Calin Juravlef97f9fb2014-11-11 15:38:19 +00001014 if (temp_location.IsStackSlot()) {
1015 Move32(location, temp_location);
1016 } else {
1017 DCHECK(temp_location.IsDoubleStackSlot());
1018 Move64(location, temp_location);
1019 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001020 } else {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001021 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001022 switch (instruction->GetType()) {
1023 case Primitive::kPrimBoolean:
1024 case Primitive::kPrimByte:
1025 case Primitive::kPrimChar:
1026 case Primitive::kPrimShort:
1027 case Primitive::kPrimNot:
1028 case Primitive::kPrimInt:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001029 case Primitive::kPrimFloat:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001030 Move32(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001031 break;
1032
1033 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001034 case Primitive::kPrimDouble:
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001035 Move64(location, locations->Out());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001036 break;
1037
1038 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001039 LOG(FATAL) << "Unexpected type " << instruction->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001040 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001041 }
1042}
1043
Calin Juravle175dc732015-08-25 15:42:32 +01001044void CodeGeneratorARM::MoveConstant(Location location, int32_t value) {
1045 DCHECK(location.IsRegister());
1046 __ LoadImmediate(location.AsRegister<Register>(), value);
1047}
1048
Calin Juravlee460d1d2015-09-29 04:52:17 +01001049void CodeGeneratorARM::MoveLocation(Location dst, Location src, Primitive::Type dst_type) {
1050 if (Primitive::Is64BitType(dst_type)) {
1051 Move64(dst, src);
1052 } else {
1053 Move32(dst, src);
1054 }
1055}
1056
1057void CodeGeneratorARM::AddLocationAsTemp(Location location, LocationSummary* locations) {
1058 if (location.IsRegister()) {
1059 locations->AddTemp(location);
1060 } else if (location.IsRegisterPair()) {
1061 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairLow<Register>()));
1062 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairHigh<Register>()));
1063 } else {
1064 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1065 }
1066}
1067
Calin Juravle175dc732015-08-25 15:42:32 +01001068void CodeGeneratorARM::InvokeRuntime(QuickEntrypointEnum entrypoint,
1069 HInstruction* instruction,
1070 uint32_t dex_pc,
1071 SlowPathCode* slow_path) {
1072 InvokeRuntime(GetThreadOffset<kArmWordSize>(entrypoint).Int32Value(),
1073 instruction,
1074 dex_pc,
1075 slow_path);
1076}
1077
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001078void CodeGeneratorARM::InvokeRuntime(int32_t entry_point_offset,
1079 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001080 uint32_t dex_pc,
1081 SlowPathCode* slow_path) {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001082 ValidateInvokeRuntime(instruction, slow_path);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001083 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
1084 __ blx(LR);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001085 RecordPcInfo(instruction, dex_pc, slow_path);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001086}
1087
David Brazdilfc6a86a2015-06-26 10:33:45 +00001088void InstructionCodeGeneratorARM::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001089 DCHECK(!successor->IsExitBlock());
1090
1091 HBasicBlock* block = got->GetBlock();
1092 HInstruction* previous = got->GetPrevious();
1093
1094 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +00001095 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001096 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
1097 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1098 return;
1099 }
1100
1101 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1102 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1103 }
1104 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001105 __ b(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001106 }
1107}
1108
David Brazdilfc6a86a2015-06-26 10:33:45 +00001109void LocationsBuilderARM::VisitGoto(HGoto* got) {
1110 got->SetLocations(nullptr);
1111}
1112
1113void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
1114 HandleGoto(got, got->GetSuccessor());
1115}
1116
1117void LocationsBuilderARM::VisitTryBoundary(HTryBoundary* try_boundary) {
1118 try_boundary->SetLocations(nullptr);
1119}
1120
1121void InstructionCodeGeneratorARM::VisitTryBoundary(HTryBoundary* try_boundary) {
1122 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
1123 if (!successor->IsExitBlock()) {
1124 HandleGoto(try_boundary, successor);
1125 }
1126}
1127
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001128void LocationsBuilderARM::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001129 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001130}
1131
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001132void InstructionCodeGeneratorARM::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001133}
1134
Roland Levillain4fa13f62015-07-06 18:11:54 +01001135void InstructionCodeGeneratorARM::GenerateCompareWithImmediate(Register left, int32_t right) {
1136 ShifterOperand operand;
1137 if (GetAssembler()->ShifterOperandCanHold(R0, left, CMP, right, &operand)) {
1138 __ cmp(left, operand);
1139 } else {
1140 Register temp = IP;
1141 __ LoadImmediate(temp, right);
1142 __ cmp(left, ShifterOperand(temp));
1143 }
1144}
1145
1146void InstructionCodeGeneratorARM::GenerateFPJumps(HCondition* cond,
1147 Label* true_label,
1148 Label* false_label) {
1149 __ vmstat(); // transfer FP status register to ARM APSR.
Aart Bike9f37602015-10-09 11:15:55 -07001150 // TODO: merge into a single branch (except "equal or unordered" and "not equal")
Roland Levillain4fa13f62015-07-06 18:11:54 +01001151 if (cond->IsFPConditionTrueIfNaN()) {
1152 __ b(true_label, VS); // VS for unordered.
1153 } else if (cond->IsFPConditionFalseIfNaN()) {
1154 __ b(false_label, VS); // VS for unordered.
1155 }
Aart Bike9f37602015-10-09 11:15:55 -07001156 __ b(true_label, ARMCondition(cond->GetCondition()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001157}
1158
1159void InstructionCodeGeneratorARM::GenerateLongComparesAndJumps(HCondition* cond,
1160 Label* true_label,
1161 Label* false_label) {
1162 LocationSummary* locations = cond->GetLocations();
1163 Location left = locations->InAt(0);
1164 Location right = locations->InAt(1);
1165 IfCondition if_cond = cond->GetCondition();
1166
1167 Register left_high = left.AsRegisterPairHigh<Register>();
1168 Register left_low = left.AsRegisterPairLow<Register>();
1169 IfCondition true_high_cond = if_cond;
1170 IfCondition false_high_cond = cond->GetOppositeCondition();
Aart Bike9f37602015-10-09 11:15:55 -07001171 Condition final_condition = ARMUnsignedCondition(if_cond); // unsigned on lower part
Roland Levillain4fa13f62015-07-06 18:11:54 +01001172
1173 // Set the conditions for the test, remembering that == needs to be
1174 // decided using the low words.
Aart Bike9f37602015-10-09 11:15:55 -07001175 // TODO: consider avoiding jumps with temporary and CMP low+SBC high
Roland Levillain4fa13f62015-07-06 18:11:54 +01001176 switch (if_cond) {
1177 case kCondEQ:
1178 case kCondNE:
1179 // Nothing to do.
1180 break;
1181 case kCondLT:
1182 false_high_cond = kCondGT;
1183 break;
1184 case kCondLE:
1185 true_high_cond = kCondLT;
1186 break;
1187 case kCondGT:
1188 false_high_cond = kCondLT;
1189 break;
1190 case kCondGE:
1191 true_high_cond = kCondGT;
1192 break;
Aart Bike9f37602015-10-09 11:15:55 -07001193 case kCondB:
1194 false_high_cond = kCondA;
1195 break;
1196 case kCondBE:
1197 true_high_cond = kCondB;
1198 break;
1199 case kCondA:
1200 false_high_cond = kCondB;
1201 break;
1202 case kCondAE:
1203 true_high_cond = kCondA;
1204 break;
Roland Levillain4fa13f62015-07-06 18:11:54 +01001205 }
1206 if (right.IsConstant()) {
1207 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
1208 int32_t val_low = Low32Bits(value);
1209 int32_t val_high = High32Bits(value);
1210
1211 GenerateCompareWithImmediate(left_high, val_high);
1212 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001213 __ b(true_label, ARMCondition(true_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001214 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001215 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001216 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001217 __ b(true_label, ARMCondition(true_high_cond));
1218 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001219 }
1220 // Must be equal high, so compare the lows.
1221 GenerateCompareWithImmediate(left_low, val_low);
1222 } else {
1223 Register right_high = right.AsRegisterPairHigh<Register>();
1224 Register right_low = right.AsRegisterPairLow<Register>();
1225
1226 __ cmp(left_high, ShifterOperand(right_high));
1227 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001228 __ b(true_label, ARMCondition(true_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001229 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001230 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001231 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001232 __ b(true_label, ARMCondition(true_high_cond));
1233 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001234 }
1235 // Must be equal high, so compare the lows.
1236 __ cmp(left_low, ShifterOperand(right_low));
1237 }
1238 // The last comparison might be unsigned.
Aart Bike9f37602015-10-09 11:15:55 -07001239 // TODO: optimize cases where this is always true/false
Roland Levillain4fa13f62015-07-06 18:11:54 +01001240 __ b(true_label, final_condition);
1241}
1242
1243void InstructionCodeGeneratorARM::GenerateCompareTestAndBranch(HIf* if_instr,
1244 HCondition* condition,
1245 Label* true_target,
1246 Label* false_target,
1247 Label* always_true_target) {
1248 LocationSummary* locations = condition->GetLocations();
1249 Location left = locations->InAt(0);
1250 Location right = locations->InAt(1);
1251
1252 // We don't want true_target as a nullptr.
1253 if (true_target == nullptr) {
1254 true_target = always_true_target;
1255 }
1256 bool falls_through = (false_target == nullptr);
1257
1258 // FP compares don't like null false_targets.
1259 if (false_target == nullptr) {
1260 false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1261 }
1262
1263 Primitive::Type type = condition->InputAt(0)->GetType();
1264 switch (type) {
1265 case Primitive::kPrimLong:
1266 GenerateLongComparesAndJumps(condition, true_target, false_target);
1267 break;
1268 case Primitive::kPrimFloat:
1269 __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>());
1270 GenerateFPJumps(condition, true_target, false_target);
1271 break;
1272 case Primitive::kPrimDouble:
1273 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
1274 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
1275 GenerateFPJumps(condition, true_target, false_target);
1276 break;
1277 default:
1278 LOG(FATAL) << "Unexpected compare type " << type;
1279 }
1280
1281 if (!falls_through) {
1282 __ b(false_target);
1283 }
1284}
1285
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001286void InstructionCodeGeneratorARM::GenerateTestAndBranch(HInstruction* instruction,
1287 Label* true_target,
1288 Label* false_target,
1289 Label* always_true_target) {
1290 HInstruction* cond = instruction->InputAt(0);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001291 if (cond->IsIntConstant()) {
1292 // Constant condition, statically compared against 1.
1293 int32_t cond_value = cond->AsIntConstant()->GetValue();
1294 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001295 if (always_true_target != nullptr) {
1296 __ b(always_true_target);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001297 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001298 return;
1299 } else {
1300 DCHECK_EQ(cond_value, 0);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001301 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001302 } else {
Mark Mendellb8b97692015-05-22 16:58:19 -04001303 // Can we optimize the jump if we know that the next block is the true case?
1304 HCondition* condition = cond->AsCondition();
1305 bool can_jump_to_false = CanReverseCondition(always_true_target, false_target, condition);
1306 if (condition == nullptr || condition->NeedsMaterialization()) {
1307 // Condition has been materialized, compare the output to 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001308 DCHECK(instruction->GetLocations()->InAt(0).IsRegister());
Mark Mendellb8b97692015-05-22 16:58:19 -04001309 if (can_jump_to_false) {
1310 __ CompareAndBranchIfZero(instruction->GetLocations()->InAt(0).AsRegister<Register>(),
1311 false_target);
1312 return;
1313 }
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01001314 __ CompareAndBranchIfNonZero(instruction->GetLocations()->InAt(0).AsRegister<Register>(),
1315 true_target);
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001316 } else {
1317 // Condition has not been materialized, use its inputs as the
1318 // comparison and its condition as the branch condition.
Mark Mendellb8b97692015-05-22 16:58:19 -04001319 Primitive::Type type = (condition != nullptr)
1320 ? cond->InputAt(0)->GetType()
1321 : Primitive::kPrimInt;
Roland Levillain4fa13f62015-07-06 18:11:54 +01001322 // Is this a long or FP comparison that has been folded into the HCondition?
1323 if (type == Primitive::kPrimLong || Primitive::IsFloatingPointType(type)) {
1324 // Generate the comparison directly.
Mark Mendellb8b97692015-05-22 16:58:19 -04001325 GenerateCompareTestAndBranch(instruction->AsIf(), condition,
Roland Levillain4fa13f62015-07-06 18:11:54 +01001326 true_target, false_target, always_true_target);
1327 return;
1328 }
1329
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001330 LocationSummary* locations = cond->GetLocations();
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001331 DCHECK(locations->InAt(0).IsRegister()) << locations->InAt(0);
Nicolas Geoffray3bcc8ea2014-11-28 15:00:02 +00001332 Register left = locations->InAt(0).AsRegister<Register>();
Roland Levillain4fa13f62015-07-06 18:11:54 +01001333 Location right = locations->InAt(1);
1334 if (right.IsRegister()) {
1335 __ cmp(left, ShifterOperand(right.AsRegister<Register>()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001336 } else {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001337 DCHECK(right.IsConstant());
1338 GenerateCompareWithImmediate(left, CodeGenerator::GetInt32ValueOf(right.GetConstant()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001339 }
Mark Mendellb8b97692015-05-22 16:58:19 -04001340 if (can_jump_to_false) {
1341 __ b(false_target, ARMCondition(condition->GetOppositeCondition()));
1342 return;
1343 }
1344
1345 __ b(true_target, ARMCondition(condition->GetCondition()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001346 }
Dave Allison20dfc792014-06-16 20:44:29 -07001347 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001348 if (false_target != nullptr) {
1349 __ b(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001350 }
1351}
1352
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001353void LocationsBuilderARM::VisitIf(HIf* if_instr) {
1354 LocationSummary* locations =
1355 new (GetGraph()->GetArena()) LocationSummary(if_instr, LocationSummary::kNoCall);
1356 HInstruction* cond = if_instr->InputAt(0);
1357 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
1358 locations->SetInAt(0, Location::RequiresRegister());
1359 }
1360}
1361
1362void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) {
1363 Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1364 Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1365 Label* always_true_target = true_target;
1366 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1367 if_instr->IfTrueSuccessor())) {
1368 always_true_target = nullptr;
1369 }
1370 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1371 if_instr->IfFalseSuccessor())) {
1372 false_target = nullptr;
1373 }
1374 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1375}
1376
1377void LocationsBuilderARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1378 LocationSummary* locations = new (GetGraph()->GetArena())
1379 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
1380 HInstruction* cond = deoptimize->InputAt(0);
Aart Bikbb245d12015-10-19 11:05:03 -07001381 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001382 locations->SetInAt(0, Location::RequiresRegister());
1383 }
1384}
1385
1386void InstructionCodeGeneratorARM::VisitDeoptimize(HDeoptimize* deoptimize) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07001387 SlowPathCode* slow_path = new (GetGraph()->GetArena())
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001388 DeoptimizationSlowPathARM(deoptimize);
1389 codegen_->AddSlowPath(slow_path);
1390 Label* slow_path_entry = slow_path->GetEntryLabel();
1391 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
1392}
Dave Allison20dfc792014-06-16 20:44:29 -07001393
Roland Levillain0d37cd02015-05-27 16:39:19 +01001394void LocationsBuilderARM::VisitCondition(HCondition* cond) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001395 LocationSummary* locations =
Roland Levillain0d37cd02015-05-27 16:39:19 +01001396 new (GetGraph()->GetArena()) LocationSummary(cond, LocationSummary::kNoCall);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001397 // Handle the long/FP comparisons made in instruction simplification.
1398 switch (cond->InputAt(0)->GetType()) {
1399 case Primitive::kPrimLong:
1400 locations->SetInAt(0, Location::RequiresRegister());
1401 locations->SetInAt(1, Location::RegisterOrConstant(cond->InputAt(1)));
1402 if (cond->NeedsMaterialization()) {
1403 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
1404 }
1405 break;
1406
1407 case Primitive::kPrimFloat:
1408 case Primitive::kPrimDouble:
1409 locations->SetInAt(0, Location::RequiresFpuRegister());
1410 locations->SetInAt(1, Location::RequiresFpuRegister());
1411 if (cond->NeedsMaterialization()) {
1412 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1413 }
1414 break;
1415
1416 default:
1417 locations->SetInAt(0, Location::RequiresRegister());
1418 locations->SetInAt(1, Location::RegisterOrConstant(cond->InputAt(1)));
1419 if (cond->NeedsMaterialization()) {
1420 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1421 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01001422 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001423}
1424
Roland Levillain0d37cd02015-05-27 16:39:19 +01001425void InstructionCodeGeneratorARM::VisitCondition(HCondition* cond) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001426 if (!cond->NeedsMaterialization()) {
1427 return;
Dave Allison20dfc792014-06-16 20:44:29 -07001428 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001429
1430 LocationSummary* locations = cond->GetLocations();
1431 Location left = locations->InAt(0);
1432 Location right = locations->InAt(1);
1433 Register out = locations->Out().AsRegister<Register>();
1434 Label true_label, false_label;
1435
1436 switch (cond->InputAt(0)->GetType()) {
1437 default: {
1438 // Integer case.
1439 if (right.IsRegister()) {
1440 __ cmp(left.AsRegister<Register>(), ShifterOperand(right.AsRegister<Register>()));
1441 } else {
1442 DCHECK(right.IsConstant());
1443 GenerateCompareWithImmediate(left.AsRegister<Register>(),
1444 CodeGenerator::GetInt32ValueOf(right.GetConstant()));
1445 }
Aart Bike9f37602015-10-09 11:15:55 -07001446 __ it(ARMCondition(cond->GetCondition()), kItElse);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001447 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(1),
Aart Bike9f37602015-10-09 11:15:55 -07001448 ARMCondition(cond->GetCondition()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001449 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(0),
Aart Bike9f37602015-10-09 11:15:55 -07001450 ARMCondition(cond->GetOppositeCondition()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001451 return;
1452 }
1453 case Primitive::kPrimLong:
1454 GenerateLongComparesAndJumps(cond, &true_label, &false_label);
1455 break;
1456 case Primitive::kPrimFloat:
1457 __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>());
1458 GenerateFPJumps(cond, &true_label, &false_label);
1459 break;
1460 case Primitive::kPrimDouble:
1461 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
1462 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
1463 GenerateFPJumps(cond, &true_label, &false_label);
1464 break;
1465 }
1466
1467 // Convert the jumps into the result.
1468 Label done_label;
1469
1470 // False case: result = 0.
1471 __ Bind(&false_label);
1472 __ LoadImmediate(out, 0);
1473 __ b(&done_label);
1474
1475 // True case: result = 1.
1476 __ Bind(&true_label);
1477 __ LoadImmediate(out, 1);
1478 __ Bind(&done_label);
Dave Allison20dfc792014-06-16 20:44:29 -07001479}
1480
1481void LocationsBuilderARM::VisitEqual(HEqual* comp) {
1482 VisitCondition(comp);
1483}
1484
1485void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) {
1486 VisitCondition(comp);
1487}
1488
1489void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) {
1490 VisitCondition(comp);
1491}
1492
1493void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) {
1494 VisitCondition(comp);
1495}
1496
1497void LocationsBuilderARM::VisitLessThan(HLessThan* comp) {
1498 VisitCondition(comp);
1499}
1500
1501void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) {
1502 VisitCondition(comp);
1503}
1504
1505void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1506 VisitCondition(comp);
1507}
1508
1509void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
1510 VisitCondition(comp);
1511}
1512
1513void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) {
1514 VisitCondition(comp);
1515}
1516
1517void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) {
1518 VisitCondition(comp);
1519}
1520
1521void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1522 VisitCondition(comp);
1523}
1524
1525void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
1526 VisitCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001527}
1528
Aart Bike9f37602015-10-09 11:15:55 -07001529void LocationsBuilderARM::VisitBelow(HBelow* comp) {
1530 VisitCondition(comp);
1531}
1532
1533void InstructionCodeGeneratorARM::VisitBelow(HBelow* comp) {
1534 VisitCondition(comp);
1535}
1536
1537void LocationsBuilderARM::VisitBelowOrEqual(HBelowOrEqual* comp) {
1538 VisitCondition(comp);
1539}
1540
1541void InstructionCodeGeneratorARM::VisitBelowOrEqual(HBelowOrEqual* comp) {
1542 VisitCondition(comp);
1543}
1544
1545void LocationsBuilderARM::VisitAbove(HAbove* comp) {
1546 VisitCondition(comp);
1547}
1548
1549void InstructionCodeGeneratorARM::VisitAbove(HAbove* comp) {
1550 VisitCondition(comp);
1551}
1552
1553void LocationsBuilderARM::VisitAboveOrEqual(HAboveOrEqual* comp) {
1554 VisitCondition(comp);
1555}
1556
1557void InstructionCodeGeneratorARM::VisitAboveOrEqual(HAboveOrEqual* comp) {
1558 VisitCondition(comp);
1559}
1560
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001561void LocationsBuilderARM::VisitLocal(HLocal* local) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001562 local->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001563}
1564
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001565void InstructionCodeGeneratorARM::VisitLocal(HLocal* local) {
1566 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001567}
1568
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001569void LocationsBuilderARM::VisitLoadLocal(HLoadLocal* load) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001570 load->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001571}
1572
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001573void InstructionCodeGeneratorARM::VisitLoadLocal(HLoadLocal* load ATTRIBUTE_UNUSED) {
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001574 // Nothing to do, this is driven by the code generator.
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001575}
1576
1577void LocationsBuilderARM::VisitStoreLocal(HStoreLocal* store) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001578 LocationSummary* locations =
1579 new (GetGraph()->GetArena()) LocationSummary(store, LocationSummary::kNoCall);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001580 switch (store->InputAt(1)->GetType()) {
1581 case Primitive::kPrimBoolean:
1582 case Primitive::kPrimByte:
1583 case Primitive::kPrimChar:
1584 case Primitive::kPrimShort:
1585 case Primitive::kPrimInt:
1586 case Primitive::kPrimNot:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001587 case Primitive::kPrimFloat:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001588 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
1589 break;
1590
1591 case Primitive::kPrimLong:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001592 case Primitive::kPrimDouble:
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001593 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
1594 break;
1595
1596 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001597 LOG(FATAL) << "Unexpected local type " << store->InputAt(1)->GetType();
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001598 }
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001599}
1600
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001601void InstructionCodeGeneratorARM::VisitStoreLocal(HStoreLocal* store ATTRIBUTE_UNUSED) {
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001602}
1603
1604void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001605 LocationSummary* locations =
1606 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001607 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001608}
1609
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001610void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001611 // Will be generated at use site.
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001612}
1613
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001614void LocationsBuilderARM::VisitNullConstant(HNullConstant* constant) {
1615 LocationSummary* locations =
1616 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1617 locations->SetOut(Location::ConstantLocation(constant));
1618}
1619
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001620void InstructionCodeGeneratorARM::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001621 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001622}
1623
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001624void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001625 LocationSummary* locations =
1626 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001627 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001628}
1629
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001630void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001631 // Will be generated at use site.
1632}
1633
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001634void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) {
1635 LocationSummary* locations =
1636 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1637 locations->SetOut(Location::ConstantLocation(constant));
1638}
1639
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001640void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001641 // Will be generated at use site.
1642}
1643
1644void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) {
1645 LocationSummary* locations =
1646 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1647 locations->SetOut(Location::ConstantLocation(constant));
1648}
1649
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001650void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001651 // Will be generated at use site.
1652}
1653
Calin Juravle27df7582015-04-17 19:12:31 +01001654void LocationsBuilderARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1655 memory_barrier->SetLocations(nullptr);
1656}
1657
1658void InstructionCodeGeneratorARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
1659 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
1660}
1661
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001662void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001663 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00001664}
1665
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001666void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001667 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001668}
1669
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001670void LocationsBuilderARM::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001671 LocationSummary* locations =
1672 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001673 locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001674}
1675
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001676void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001677 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001678}
1679
Calin Juravle175dc732015-08-25 15:42:32 +01001680void LocationsBuilderARM::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
1681 // The trampoline uses the same calling convention as dex calling conventions,
1682 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
1683 // the method_idx.
1684 HandleInvoke(invoke);
1685}
1686
1687void InstructionCodeGeneratorARM::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
1688 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
1689}
1690
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001691void LocationsBuilderARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01001692 // When we do not run baseline, explicit clinit checks triggered by static
1693 // invokes must have been pruned by art::PrepareForRegisterAllocation.
1694 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01001695
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001696 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
Nicolas Geoffray5bd05a52015-10-13 09:48:30 +01001697 codegen_->GetAssembler(),
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001698 codegen_->GetInstructionSetFeatures());
1699 if (intrinsic.TryDispatch(invoke)) {
1700 return;
1701 }
1702
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001703 HandleInvoke(invoke);
1704}
1705
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001706static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM* codegen) {
1707 if (invoke->GetLocations()->Intrinsified()) {
1708 IntrinsicCodeGeneratorARM intrinsic(codegen);
1709 intrinsic.Dispatch(invoke);
1710 return true;
1711 }
1712 return false;
1713}
1714
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001715void InstructionCodeGeneratorARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01001716 // When we do not run baseline, explicit clinit checks triggered by static
1717 // invokes must have been pruned by art::PrepareForRegisterAllocation.
1718 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01001719
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001720 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1721 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001722 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001723
Nicolas Geoffray38207af2015-06-01 15:46:22 +01001724 LocationSummary* locations = invoke->GetLocations();
1725 codegen_->GenerateStaticOrDirectCall(
1726 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00001727 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001728}
1729
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001730void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001731 InvokeDexCallingConventionVisitorARM calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001732 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001733}
1734
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001735void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001736 IntrinsicLocationsBuilderARM intrinsic(GetGraph()->GetArena(),
Nicolas Geoffray5bd05a52015-10-13 09:48:30 +01001737 codegen_->GetAssembler(),
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001738 codegen_->GetInstructionSetFeatures());
1739 if (intrinsic.TryDispatch(invoke)) {
1740 return;
1741 }
1742
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001743 HandleInvoke(invoke);
1744}
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001745
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001746void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08001747 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1748 return;
1749 }
1750
Andreas Gampebfb5ba92015-09-01 15:45:02 +00001751 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001752 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01001753 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00001754}
1755
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001756void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1757 HandleInvoke(invoke);
1758 // Add the hidden argument.
1759 invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12));
1760}
1761
1762void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) {
1763 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain271ab9c2014-11-27 15:23:57 +00001764 Register temp = invoke->GetLocations()->GetTemp(0).AsRegister<Register>();
Mathieu Chartiere401d142015-04-22 13:56:20 -07001765 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
1766 invoke->GetImtIndex() % mirror::Class::kImtSize, kArmPointerSize).Uint32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001767 LocationSummary* locations = invoke->GetLocations();
1768 Location receiver = locations->InAt(0);
1769 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1770
1771 // Set the hidden argument.
Roland Levillain199f3362014-11-27 17:15:16 +00001772 __ LoadImmediate(invoke->GetLocations()->GetTemp(1).AsRegister<Register>(),
1773 invoke->GetDexMethodIndex());
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001774
1775 // temp = object->GetClass();
1776 if (receiver.IsStackSlot()) {
1777 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
1778 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
1779 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001780 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001781 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001782 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain4d027112015-07-01 15:41:14 +01001783 __ MaybeUnpoisonHeapReference(temp);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001784 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartiere401d142015-04-22 13:56:20 -07001785 uint32_t entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001786 kArmWordSize).Int32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00001787 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
1788 // LR = temp->GetEntryPoint();
1789 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
1790 // LR();
1791 __ blx(LR);
1792 DCHECK(!codegen_->IsLeafMethod());
1793 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1794}
1795
Roland Levillain88cb1752014-10-20 16:36:47 +01001796void LocationsBuilderARM::VisitNeg(HNeg* neg) {
1797 LocationSummary* locations =
1798 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
1799 switch (neg->GetResultType()) {
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001800 case Primitive::kPrimInt: {
Roland Levillain88cb1752014-10-20 16:36:47 +01001801 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00001802 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1803 break;
1804 }
1805 case Primitive::kPrimLong: {
1806 locations->SetInAt(0, Location::RequiresRegister());
1807 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001808 break;
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001809 }
Roland Levillain88cb1752014-10-20 16:36:47 +01001810
Roland Levillain88cb1752014-10-20 16:36:47 +01001811 case Primitive::kPrimFloat:
1812 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001813 locations->SetInAt(0, Location::RequiresFpuRegister());
1814 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01001815 break;
1816
1817 default:
1818 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1819 }
1820}
1821
1822void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) {
1823 LocationSummary* locations = neg->GetLocations();
1824 Location out = locations->Out();
1825 Location in = locations->InAt(0);
1826 switch (neg->GetResultType()) {
1827 case Primitive::kPrimInt:
1828 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001829 __ rsb(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(0));
Roland Levillain88cb1752014-10-20 16:36:47 +01001830 break;
1831
1832 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01001833 DCHECK(in.IsRegisterPair());
1834 // out.lo = 0 - in.lo (and update the carry/borrow (C) flag)
1835 __ rsbs(out.AsRegisterPairLow<Register>(),
1836 in.AsRegisterPairLow<Register>(),
1837 ShifterOperand(0));
1838 // We cannot emit an RSC (Reverse Subtract with Carry)
1839 // instruction here, as it does not exist in the Thumb-2
1840 // instruction set. We use the following approach
1841 // using SBC and SUB instead.
1842 //
1843 // out.hi = -C
1844 __ sbc(out.AsRegisterPairHigh<Register>(),
1845 out.AsRegisterPairHigh<Register>(),
1846 ShifterOperand(out.AsRegisterPairHigh<Register>()));
1847 // out.hi = out.hi - in.hi
1848 __ sub(out.AsRegisterPairHigh<Register>(),
1849 out.AsRegisterPairHigh<Register>(),
1850 ShifterOperand(in.AsRegisterPairHigh<Register>()));
1851 break;
1852
Roland Levillain88cb1752014-10-20 16:36:47 +01001853 case Primitive::kPrimFloat:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001854 DCHECK(in.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00001855 __ vnegs(out.AsFpuRegister<SRegister>(), in.AsFpuRegister<SRegister>());
Roland Levillain3dbcb382014-10-28 17:30:07 +00001856 break;
1857
Roland Levillain88cb1752014-10-20 16:36:47 +01001858 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00001859 DCHECK(in.IsFpuRegisterPair());
1860 __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
1861 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain88cb1752014-10-20 16:36:47 +01001862 break;
1863
1864 default:
1865 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
1866 }
1867}
1868
Roland Levillaindff1f282014-11-05 14:15:05 +00001869void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00001870 Primitive::Type result_type = conversion->GetResultType();
1871 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00001872 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00001873
Roland Levillain5b3ee562015-04-14 16:02:41 +01001874 // The float-to-long, double-to-long and long-to-float type conversions
1875 // rely on a call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00001876 LocationSummary::CallKind call_kind =
Roland Levillain5b3ee562015-04-14 16:02:41 +01001877 (((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
1878 && result_type == Primitive::kPrimLong)
1879 || (input_type == Primitive::kPrimLong && result_type == Primitive::kPrimFloat))
Roland Levillain624279f2014-12-04 11:54:28 +00001880 ? LocationSummary::kCall
1881 : LocationSummary::kNoCall;
1882 LocationSummary* locations =
1883 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
1884
David Brazdilb2bd1c52015-03-25 11:17:37 +00001885 // The Java language does not allow treating boolean as an integral type but
1886 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00001887
Roland Levillaindff1f282014-11-05 14:15:05 +00001888 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00001889 case Primitive::kPrimByte:
1890 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001891 case Primitive::kPrimBoolean:
1892 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001893 case Primitive::kPrimShort:
1894 case Primitive::kPrimInt:
1895 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001896 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00001897 locations->SetInAt(0, Location::RequiresRegister());
1898 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1899 break;
1900
1901 default:
1902 LOG(FATAL) << "Unexpected type conversion from " << input_type
1903 << " to " << result_type;
1904 }
1905 break;
1906
Roland Levillain01a8d712014-11-14 16:27:39 +00001907 case Primitive::kPrimShort:
1908 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001909 case Primitive::kPrimBoolean:
1910 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00001911 case Primitive::kPrimByte:
1912 case Primitive::kPrimInt:
1913 case Primitive::kPrimChar:
1914 // Processing a Dex `int-to-short' instruction.
1915 locations->SetInAt(0, Location::RequiresRegister());
1916 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1917 break;
1918
1919 default:
1920 LOG(FATAL) << "Unexpected type conversion from " << input_type
1921 << " to " << result_type;
1922 }
1923 break;
1924
Roland Levillain946e1432014-11-11 17:35:19 +00001925 case Primitive::kPrimInt:
1926 switch (input_type) {
1927 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00001928 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00001929 locations->SetInAt(0, Location::Any());
1930 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1931 break;
1932
1933 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00001934 // Processing a Dex `float-to-int' instruction.
1935 locations->SetInAt(0, Location::RequiresFpuRegister());
1936 locations->SetOut(Location::RequiresRegister());
1937 locations->AddTemp(Location::RequiresFpuRegister());
1938 break;
1939
Roland Levillain946e1432014-11-11 17:35:19 +00001940 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001941 // Processing a Dex `double-to-int' instruction.
1942 locations->SetInAt(0, Location::RequiresFpuRegister());
1943 locations->SetOut(Location::RequiresRegister());
1944 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00001945 break;
1946
1947 default:
1948 LOG(FATAL) << "Unexpected type conversion from " << input_type
1949 << " to " << result_type;
1950 }
1951 break;
1952
Roland Levillaindff1f282014-11-05 14:15:05 +00001953 case Primitive::kPrimLong:
1954 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001955 case Primitive::kPrimBoolean:
1956 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00001957 case Primitive::kPrimByte:
1958 case Primitive::kPrimShort:
1959 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00001960 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00001961 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00001962 locations->SetInAt(0, Location::RequiresRegister());
1963 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1964 break;
1965
Roland Levillain624279f2014-12-04 11:54:28 +00001966 case Primitive::kPrimFloat: {
1967 // Processing a Dex `float-to-long' instruction.
1968 InvokeRuntimeCallingConvention calling_convention;
1969 locations->SetInAt(0, Location::FpuRegisterLocation(
1970 calling_convention.GetFpuRegisterAt(0)));
1971 locations->SetOut(Location::RegisterPairLocation(R0, R1));
1972 break;
1973 }
1974
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001975 case Primitive::kPrimDouble: {
1976 // Processing a Dex `double-to-long' instruction.
1977 InvokeRuntimeCallingConvention calling_convention;
1978 locations->SetInAt(0, Location::FpuRegisterPairLocation(
1979 calling_convention.GetFpuRegisterAt(0),
1980 calling_convention.GetFpuRegisterAt(1)));
1981 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Roland Levillaindff1f282014-11-05 14:15:05 +00001982 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00001983 }
Roland Levillaindff1f282014-11-05 14:15:05 +00001984
1985 default:
1986 LOG(FATAL) << "Unexpected type conversion from " << input_type
1987 << " to " << result_type;
1988 }
1989 break;
1990
Roland Levillain981e4542014-11-14 11:47:14 +00001991 case Primitive::kPrimChar:
1992 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00001993 case Primitive::kPrimBoolean:
1994 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00001995 case Primitive::kPrimByte:
1996 case Primitive::kPrimShort:
1997 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00001998 // Processing a Dex `int-to-char' instruction.
1999 locations->SetInAt(0, Location::RequiresRegister());
2000 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2001 break;
2002
2003 default:
2004 LOG(FATAL) << "Unexpected type conversion from " << input_type
2005 << " to " << result_type;
2006 }
2007 break;
2008
Roland Levillaindff1f282014-11-05 14:15:05 +00002009 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002010 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002011 case Primitive::kPrimBoolean:
2012 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002013 case Primitive::kPrimByte:
2014 case Primitive::kPrimShort:
2015 case Primitive::kPrimInt:
2016 case Primitive::kPrimChar:
2017 // Processing a Dex `int-to-float' instruction.
2018 locations->SetInAt(0, Location::RequiresRegister());
2019 locations->SetOut(Location::RequiresFpuRegister());
2020 break;
2021
Roland Levillain5b3ee562015-04-14 16:02:41 +01002022 case Primitive::kPrimLong: {
Roland Levillain6d0e4832014-11-27 18:31:21 +00002023 // Processing a Dex `long-to-float' instruction.
Roland Levillain5b3ee562015-04-14 16:02:41 +01002024 InvokeRuntimeCallingConvention calling_convention;
2025 locations->SetInAt(0, Location::RegisterPairLocation(
2026 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2027 locations->SetOut(Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
Roland Levillain6d0e4832014-11-27 18:31:21 +00002028 break;
Roland Levillain5b3ee562015-04-14 16:02:41 +01002029 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002030
Roland Levillaincff13742014-11-17 14:32:17 +00002031 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002032 // Processing a Dex `double-to-float' instruction.
2033 locations->SetInAt(0, Location::RequiresFpuRegister());
2034 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002035 break;
2036
2037 default:
2038 LOG(FATAL) << "Unexpected type conversion from " << input_type
2039 << " to " << result_type;
2040 };
2041 break;
2042
Roland Levillaindff1f282014-11-05 14:15:05 +00002043 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002044 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002045 case Primitive::kPrimBoolean:
2046 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002047 case Primitive::kPrimByte:
2048 case Primitive::kPrimShort:
2049 case Primitive::kPrimInt:
2050 case Primitive::kPrimChar:
2051 // Processing a Dex `int-to-double' instruction.
2052 locations->SetInAt(0, Location::RequiresRegister());
2053 locations->SetOut(Location::RequiresFpuRegister());
2054 break;
2055
2056 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00002057 // Processing a Dex `long-to-double' instruction.
2058 locations->SetInAt(0, Location::RequiresRegister());
2059 locations->SetOut(Location::RequiresFpuRegister());
Roland Levillain682393c2015-04-14 15:57:52 +01002060 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain647b9ed2014-11-27 12:06:00 +00002061 locations->AddTemp(Location::RequiresFpuRegister());
2062 break;
2063
Roland Levillaincff13742014-11-17 14:32:17 +00002064 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002065 // Processing a Dex `float-to-double' instruction.
2066 locations->SetInAt(0, Location::RequiresFpuRegister());
2067 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002068 break;
2069
2070 default:
2071 LOG(FATAL) << "Unexpected type conversion from " << input_type
2072 << " to " << result_type;
2073 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002074 break;
2075
2076 default:
2077 LOG(FATAL) << "Unexpected type conversion from " << input_type
2078 << " to " << result_type;
2079 }
2080}
2081
2082void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) {
2083 LocationSummary* locations = conversion->GetLocations();
2084 Location out = locations->Out();
2085 Location in = locations->InAt(0);
2086 Primitive::Type result_type = conversion->GetResultType();
2087 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002088 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00002089 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002090 case Primitive::kPrimByte:
2091 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002092 case Primitive::kPrimBoolean:
2093 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002094 case Primitive::kPrimShort:
2095 case Primitive::kPrimInt:
2096 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002097 // Processing a Dex `int-to-byte' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002098 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 8);
Roland Levillain51d3fc42014-11-13 14:11:42 +00002099 break;
2100
2101 default:
2102 LOG(FATAL) << "Unexpected type conversion from " << input_type
2103 << " to " << result_type;
2104 }
2105 break;
2106
Roland Levillain01a8d712014-11-14 16:27:39 +00002107 case Primitive::kPrimShort:
2108 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002109 case Primitive::kPrimBoolean:
2110 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002111 case Primitive::kPrimByte:
2112 case Primitive::kPrimInt:
2113 case Primitive::kPrimChar:
2114 // Processing a Dex `int-to-short' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002115 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain01a8d712014-11-14 16:27:39 +00002116 break;
2117
2118 default:
2119 LOG(FATAL) << "Unexpected type conversion from " << input_type
2120 << " to " << result_type;
2121 }
2122 break;
2123
Roland Levillain946e1432014-11-11 17:35:19 +00002124 case Primitive::kPrimInt:
2125 switch (input_type) {
2126 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002127 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002128 DCHECK(out.IsRegister());
2129 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002130 __ Mov(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00002131 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002132 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), SP, in.GetStackIndex());
Roland Levillain946e1432014-11-11 17:35:19 +00002133 } else {
2134 DCHECK(in.IsConstant());
2135 DCHECK(in.GetConstant()->IsLongConstant());
2136 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002137 __ LoadImmediate(out.AsRegister<Register>(), static_cast<int32_t>(value));
Roland Levillain946e1432014-11-11 17:35:19 +00002138 }
2139 break;
2140
Roland Levillain3f8f9362014-12-02 17:45:01 +00002141 case Primitive::kPrimFloat: {
2142 // Processing a Dex `float-to-int' instruction.
2143 SRegister temp = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
2144 __ vmovs(temp, in.AsFpuRegister<SRegister>());
2145 __ vcvtis(temp, temp);
2146 __ vmovrs(out.AsRegister<Register>(), temp);
2147 break;
2148 }
2149
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002150 case Primitive::kPrimDouble: {
2151 // Processing a Dex `double-to-int' instruction.
2152 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
2153 DRegister temp_d = FromLowSToD(temp_s);
2154 __ vmovd(temp_d, FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
2155 __ vcvtid(temp_s, temp_d);
2156 __ vmovrs(out.AsRegister<Register>(), temp_s);
Roland Levillain946e1432014-11-11 17:35:19 +00002157 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002158 }
Roland Levillain946e1432014-11-11 17:35:19 +00002159
2160 default:
2161 LOG(FATAL) << "Unexpected type conversion from " << input_type
2162 << " to " << result_type;
2163 }
2164 break;
2165
Roland Levillaindff1f282014-11-05 14:15:05 +00002166 case Primitive::kPrimLong:
2167 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002168 case Primitive::kPrimBoolean:
2169 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002170 case Primitive::kPrimByte:
2171 case Primitive::kPrimShort:
2172 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002173 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002174 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002175 DCHECK(out.IsRegisterPair());
2176 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002177 __ Mov(out.AsRegisterPairLow<Register>(), in.AsRegister<Register>());
Roland Levillaindff1f282014-11-05 14:15:05 +00002178 // Sign extension.
2179 __ Asr(out.AsRegisterPairHigh<Register>(),
2180 out.AsRegisterPairLow<Register>(),
2181 31);
2182 break;
2183
2184 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00002185 // Processing a Dex `float-to-long' instruction.
Roland Levillain624279f2014-12-04 11:54:28 +00002186 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pF2l),
2187 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002188 conversion->GetDexPc(),
2189 nullptr);
Roland Levillain624279f2014-12-04 11:54:28 +00002190 break;
2191
Roland Levillaindff1f282014-11-05 14:15:05 +00002192 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002193 // Processing a Dex `double-to-long' instruction.
2194 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pD2l),
2195 conversion,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002196 conversion->GetDexPc(),
2197 nullptr);
Roland Levillaindff1f282014-11-05 14:15:05 +00002198 break;
2199
2200 default:
2201 LOG(FATAL) << "Unexpected type conversion from " << input_type
2202 << " to " << result_type;
2203 }
2204 break;
2205
Roland Levillain981e4542014-11-14 11:47:14 +00002206 case Primitive::kPrimChar:
2207 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002208 case Primitive::kPrimBoolean:
2209 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002210 case Primitive::kPrimByte:
2211 case Primitive::kPrimShort:
2212 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002213 // Processing a Dex `int-to-char' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002214 __ ubfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain981e4542014-11-14 11:47:14 +00002215 break;
2216
2217 default:
2218 LOG(FATAL) << "Unexpected type conversion from " << input_type
2219 << " to " << result_type;
2220 }
2221 break;
2222
Roland Levillaindff1f282014-11-05 14:15:05 +00002223 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002224 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002225 case Primitive::kPrimBoolean:
2226 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002227 case Primitive::kPrimByte:
2228 case Primitive::kPrimShort:
2229 case Primitive::kPrimInt:
2230 case Primitive::kPrimChar: {
2231 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002232 __ vmovsr(out.AsFpuRegister<SRegister>(), in.AsRegister<Register>());
2233 __ vcvtsi(out.AsFpuRegister<SRegister>(), out.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002234 break;
2235 }
2236
Roland Levillain5b3ee562015-04-14 16:02:41 +01002237 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002238 // Processing a Dex `long-to-float' instruction.
Roland Levillain5b3ee562015-04-14 16:02:41 +01002239 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pL2f),
2240 conversion,
2241 conversion->GetDexPc(),
2242 nullptr);
Roland Levillain6d0e4832014-11-27 18:31:21 +00002243 break;
Roland Levillain6d0e4832014-11-27 18:31:21 +00002244
Roland Levillaincff13742014-11-17 14:32:17 +00002245 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002246 // Processing a Dex `double-to-float' instruction.
2247 __ vcvtsd(out.AsFpuRegister<SRegister>(),
2248 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillaincff13742014-11-17 14:32:17 +00002249 break;
2250
2251 default:
2252 LOG(FATAL) << "Unexpected type conversion from " << input_type
2253 << " to " << result_type;
2254 };
2255 break;
2256
Roland Levillaindff1f282014-11-05 14:15:05 +00002257 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002258 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002259 case Primitive::kPrimBoolean:
2260 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002261 case Primitive::kPrimByte:
2262 case Primitive::kPrimShort:
2263 case Primitive::kPrimInt:
2264 case Primitive::kPrimChar: {
2265 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002266 __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002267 __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2268 out.AsFpuRegisterPairLow<SRegister>());
2269 break;
2270 }
2271
Roland Levillain647b9ed2014-11-27 12:06:00 +00002272 case Primitive::kPrimLong: {
2273 // Processing a Dex `long-to-double' instruction.
2274 Register low = in.AsRegisterPairLow<Register>();
2275 Register high = in.AsRegisterPairHigh<Register>();
2276 SRegister out_s = out.AsFpuRegisterPairLow<SRegister>();
2277 DRegister out_d = FromLowSToD(out_s);
Roland Levillain682393c2015-04-14 15:57:52 +01002278 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
Roland Levillain647b9ed2014-11-27 12:06:00 +00002279 DRegister temp_d = FromLowSToD(temp_s);
Roland Levillain682393c2015-04-14 15:57:52 +01002280 SRegister constant_s = locations->GetTemp(1).AsFpuRegisterPairLow<SRegister>();
2281 DRegister constant_d = FromLowSToD(constant_s);
Roland Levillain647b9ed2014-11-27 12:06:00 +00002282
Roland Levillain682393c2015-04-14 15:57:52 +01002283 // temp_d = int-to-double(high)
2284 __ vmovsr(temp_s, high);
2285 __ vcvtdi(temp_d, temp_s);
2286 // constant_d = k2Pow32EncodingForDouble
2287 __ LoadDImmediate(constant_d, bit_cast<double, int64_t>(k2Pow32EncodingForDouble));
2288 // out_d = unsigned-to-double(low)
2289 __ vmovsr(out_s, low);
2290 __ vcvtdu(out_d, out_s);
2291 // out_d += temp_d * constant_d
2292 __ vmlad(out_d, temp_d, constant_d);
Roland Levillain647b9ed2014-11-27 12:06:00 +00002293 break;
2294 }
2295
Roland Levillaincff13742014-11-17 14:32:17 +00002296 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002297 // Processing a Dex `float-to-double' instruction.
2298 __ vcvtds(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2299 in.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002300 break;
2301
2302 default:
2303 LOG(FATAL) << "Unexpected type conversion from " << input_type
2304 << " to " << result_type;
2305 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002306 break;
2307
2308 default:
2309 LOG(FATAL) << "Unexpected type conversion from " << input_type
2310 << " to " << result_type;
2311 }
2312}
2313
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002314void LocationsBuilderARM::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002315 LocationSummary* locations =
2316 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002317 switch (add->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002318 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002319 locations->SetInAt(0, Location::RequiresRegister());
2320 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002321 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2322 break;
2323 }
2324
2325 case Primitive::kPrimLong: {
2326 locations->SetInAt(0, Location::RequiresRegister());
2327 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002328 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002329 break;
2330 }
2331
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002332 case Primitive::kPrimFloat:
2333 case Primitive::kPrimDouble: {
2334 locations->SetInAt(0, Location::RequiresFpuRegister());
2335 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002336 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002337 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002338 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002339
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002340 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002341 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002342 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002343}
2344
2345void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) {
2346 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002347 Location out = locations->Out();
2348 Location first = locations->InAt(0);
2349 Location second = locations->InAt(1);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002350 switch (add->GetResultType()) {
2351 case Primitive::kPrimInt:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002352 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002353 __ add(out.AsRegister<Register>(),
2354 first.AsRegister<Register>(),
2355 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002356 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002357 __ AddConstant(out.AsRegister<Register>(),
2358 first.AsRegister<Register>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002359 second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002360 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002361 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002362
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002363 case Primitive::kPrimLong: {
2364 DCHECK(second.IsRegisterPair());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002365 __ adds(out.AsRegisterPairLow<Register>(),
2366 first.AsRegisterPairLow<Register>(),
2367 ShifterOperand(second.AsRegisterPairLow<Register>()));
2368 __ adc(out.AsRegisterPairHigh<Register>(),
2369 first.AsRegisterPairHigh<Register>(),
2370 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002371 break;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002372 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002373
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002374 case Primitive::kPrimFloat:
Roland Levillain199f3362014-11-27 17:15:16 +00002375 __ vadds(out.AsFpuRegister<SRegister>(),
2376 first.AsFpuRegister<SRegister>(),
2377 second.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002378 break;
2379
2380 case Primitive::kPrimDouble:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002381 __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2382 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2383 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002384 break;
2385
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002386 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002387 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002388 }
2389}
2390
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002391void LocationsBuilderARM::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002392 LocationSummary* locations =
2393 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002394 switch (sub->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002395 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002396 locations->SetInAt(0, Location::RequiresRegister());
2397 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002398 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2399 break;
2400 }
2401
2402 case Primitive::kPrimLong: {
2403 locations->SetInAt(0, Location::RequiresRegister());
2404 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002405 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002406 break;
2407 }
Calin Juravle11351682014-10-23 15:38:15 +01002408 case Primitive::kPrimFloat:
2409 case Primitive::kPrimDouble: {
2410 locations->SetInAt(0, Location::RequiresFpuRegister());
2411 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002412 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002413 break;
Calin Juravle11351682014-10-23 15:38:15 +01002414 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002415 default:
Calin Juravle11351682014-10-23 15:38:15 +01002416 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002417 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002418}
2419
2420void InstructionCodeGeneratorARM::VisitSub(HSub* sub) {
2421 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01002422 Location out = locations->Out();
2423 Location first = locations->InAt(0);
2424 Location second = locations->InAt(1);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002425 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002426 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01002427 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002428 __ sub(out.AsRegister<Register>(),
2429 first.AsRegister<Register>(),
2430 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002431 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002432 __ AddConstant(out.AsRegister<Register>(),
2433 first.AsRegister<Register>(),
Calin Juravle11351682014-10-23 15:38:15 +01002434 -second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002435 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002436 break;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002437 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002438
Calin Juravle11351682014-10-23 15:38:15 +01002439 case Primitive::kPrimLong: {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002440 DCHECK(second.IsRegisterPair());
Calin Juravle11351682014-10-23 15:38:15 +01002441 __ subs(out.AsRegisterPairLow<Register>(),
2442 first.AsRegisterPairLow<Register>(),
2443 ShifterOperand(second.AsRegisterPairLow<Register>()));
2444 __ sbc(out.AsRegisterPairHigh<Register>(),
2445 first.AsRegisterPairHigh<Register>(),
2446 ShifterOperand(second.AsRegisterPairHigh<Register>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002447 break;
Calin Juravle11351682014-10-23 15:38:15 +01002448 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002449
Calin Juravle11351682014-10-23 15:38:15 +01002450 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002451 __ vsubs(out.AsFpuRegister<SRegister>(),
2452 first.AsFpuRegister<SRegister>(),
2453 second.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002454 break;
Calin Juravle11351682014-10-23 15:38:15 +01002455 }
2456
2457 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002458 __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2459 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2460 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravle11351682014-10-23 15:38:15 +01002461 break;
2462 }
2463
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002464
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002465 default:
Calin Juravle11351682014-10-23 15:38:15 +01002466 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002467 }
2468}
2469
Calin Juravle34bacdf2014-10-07 20:23:36 +01002470void LocationsBuilderARM::VisitMul(HMul* mul) {
2471 LocationSummary* locations =
2472 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2473 switch (mul->GetResultType()) {
2474 case Primitive::kPrimInt:
2475 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002476 locations->SetInAt(0, Location::RequiresRegister());
2477 locations->SetInAt(1, Location::RequiresRegister());
2478 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002479 break;
2480 }
2481
Calin Juravleb5bfa962014-10-21 18:02:24 +01002482 case Primitive::kPrimFloat:
2483 case Primitive::kPrimDouble: {
2484 locations->SetInAt(0, Location::RequiresFpuRegister());
2485 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002486 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01002487 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002488 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002489
2490 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002491 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002492 }
2493}
2494
2495void InstructionCodeGeneratorARM::VisitMul(HMul* mul) {
2496 LocationSummary* locations = mul->GetLocations();
2497 Location out = locations->Out();
2498 Location first = locations->InAt(0);
2499 Location second = locations->InAt(1);
2500 switch (mul->GetResultType()) {
2501 case Primitive::kPrimInt: {
Roland Levillain199f3362014-11-27 17:15:16 +00002502 __ mul(out.AsRegister<Register>(),
2503 first.AsRegister<Register>(),
2504 second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002505 break;
2506 }
2507 case Primitive::kPrimLong: {
2508 Register out_hi = out.AsRegisterPairHigh<Register>();
2509 Register out_lo = out.AsRegisterPairLow<Register>();
2510 Register in1_hi = first.AsRegisterPairHigh<Register>();
2511 Register in1_lo = first.AsRegisterPairLow<Register>();
2512 Register in2_hi = second.AsRegisterPairHigh<Register>();
2513 Register in2_lo = second.AsRegisterPairLow<Register>();
2514
2515 // Extra checks to protect caused by the existence of R1_R2.
2516 // The algorithm is wrong if out.hi is either in1.lo or in2.lo:
2517 // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2);
2518 DCHECK_NE(out_hi, in1_lo);
2519 DCHECK_NE(out_hi, in2_lo);
2520
2521 // input: in1 - 64 bits, in2 - 64 bits
2522 // output: out
2523 // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
2524 // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
2525 // parts: out.lo = (in1.lo * in2.lo)[31:0]
2526
2527 // IP <- in1.lo * in2.hi
2528 __ mul(IP, in1_lo, in2_hi);
2529 // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo
2530 __ mla(out_hi, in1_hi, in2_lo, IP);
2531 // out.lo <- (in1.lo * in2.lo)[31:0];
2532 __ umull(out_lo, IP, in1_lo, in2_lo);
2533 // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
2534 __ add(out_hi, out_hi, ShifterOperand(IP));
2535 break;
2536 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01002537
2538 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002539 __ vmuls(out.AsFpuRegister<SRegister>(),
2540 first.AsFpuRegister<SRegister>(),
2541 second.AsFpuRegister<SRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01002542 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01002543 }
2544
2545 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002546 __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2547 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2548 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravleb5bfa962014-10-21 18:02:24 +01002549 break;
2550 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01002551
2552 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01002553 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01002554 }
2555}
2556
Zheng Xuc6667102015-05-15 16:08:45 +08002557void InstructionCodeGeneratorARM::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
2558 DCHECK(instruction->IsDiv() || instruction->IsRem());
2559 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
2560
2561 LocationSummary* locations = instruction->GetLocations();
2562 Location second = locations->InAt(1);
2563 DCHECK(second.IsConstant());
2564
2565 Register out = locations->Out().AsRegister<Register>();
2566 Register dividend = locations->InAt(0).AsRegister<Register>();
2567 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2568 DCHECK(imm == 1 || imm == -1);
2569
2570 if (instruction->IsRem()) {
2571 __ LoadImmediate(out, 0);
2572 } else {
2573 if (imm == 1) {
2574 __ Mov(out, dividend);
2575 } else {
2576 __ rsb(out, dividend, ShifterOperand(0));
2577 }
2578 }
2579}
2580
2581void InstructionCodeGeneratorARM::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
2582 DCHECK(instruction->IsDiv() || instruction->IsRem());
2583 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
2584
2585 LocationSummary* locations = instruction->GetLocations();
2586 Location second = locations->InAt(1);
2587 DCHECK(second.IsConstant());
2588
2589 Register out = locations->Out().AsRegister<Register>();
2590 Register dividend = locations->InAt(0).AsRegister<Register>();
2591 Register temp = locations->GetTemp(0).AsRegister<Register>();
2592 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Vladimir Marko80afd022015-05-19 18:08:00 +01002593 uint32_t abs_imm = static_cast<uint32_t>(std::abs(imm));
Zheng Xuc6667102015-05-15 16:08:45 +08002594 DCHECK(IsPowerOfTwo(abs_imm));
2595 int ctz_imm = CTZ(abs_imm);
2596
2597 if (ctz_imm == 1) {
2598 __ Lsr(temp, dividend, 32 - ctz_imm);
2599 } else {
2600 __ Asr(temp, dividend, 31);
2601 __ Lsr(temp, temp, 32 - ctz_imm);
2602 }
2603 __ add(out, temp, ShifterOperand(dividend));
2604
2605 if (instruction->IsDiv()) {
2606 __ Asr(out, out, ctz_imm);
2607 if (imm < 0) {
2608 __ rsb(out, out, ShifterOperand(0));
2609 }
2610 } else {
2611 __ ubfx(out, out, 0, ctz_imm);
2612 __ sub(out, out, ShifterOperand(temp));
2613 }
2614}
2615
2616void InstructionCodeGeneratorARM::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2617 DCHECK(instruction->IsDiv() || instruction->IsRem());
2618 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
2619
2620 LocationSummary* locations = instruction->GetLocations();
2621 Location second = locations->InAt(1);
2622 DCHECK(second.IsConstant());
2623
2624 Register out = locations->Out().AsRegister<Register>();
2625 Register dividend = locations->InAt(0).AsRegister<Register>();
2626 Register temp1 = locations->GetTemp(0).AsRegister<Register>();
2627 Register temp2 = locations->GetTemp(1).AsRegister<Register>();
2628 int64_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2629
2630 int64_t magic;
2631 int shift;
2632 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
2633
2634 __ LoadImmediate(temp1, magic);
2635 __ smull(temp2, temp1, dividend, temp1);
2636
2637 if (imm > 0 && magic < 0) {
2638 __ add(temp1, temp1, ShifterOperand(dividend));
2639 } else if (imm < 0 && magic > 0) {
2640 __ sub(temp1, temp1, ShifterOperand(dividend));
2641 }
2642
2643 if (shift != 0) {
2644 __ Asr(temp1, temp1, shift);
2645 }
2646
2647 if (instruction->IsDiv()) {
2648 __ sub(out, temp1, ShifterOperand(temp1, ASR, 31));
2649 } else {
2650 __ sub(temp1, temp1, ShifterOperand(temp1, ASR, 31));
2651 // TODO: Strength reduction for mls.
2652 __ LoadImmediate(temp2, imm);
2653 __ mls(out, temp1, temp2, dividend);
2654 }
2655}
2656
2657void InstructionCodeGeneratorARM::GenerateDivRemConstantIntegral(HBinaryOperation* instruction) {
2658 DCHECK(instruction->IsDiv() || instruction->IsRem());
2659 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
2660
2661 LocationSummary* locations = instruction->GetLocations();
2662 Location second = locations->InAt(1);
2663 DCHECK(second.IsConstant());
2664
2665 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
2666 if (imm == 0) {
2667 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
2668 } else if (imm == 1 || imm == -1) {
2669 DivRemOneOrMinusOne(instruction);
2670 } else if (IsPowerOfTwo(std::abs(imm))) {
2671 DivRemByPowerOfTwo(instruction);
2672 } else {
2673 DCHECK(imm <= -2 || imm >= 2);
2674 GenerateDivRemWithAnyConstant(instruction);
2675 }
2676}
2677
Calin Juravle7c4954d2014-10-28 16:57:40 +00002678void LocationsBuilderARM::VisitDiv(HDiv* div) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002679 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2680 if (div->GetResultType() == Primitive::kPrimLong) {
2681 // pLdiv runtime call.
2682 call_kind = LocationSummary::kCall;
Zheng Xuc6667102015-05-15 16:08:45 +08002683 } else if (div->GetResultType() == Primitive::kPrimInt && div->InputAt(1)->IsConstant()) {
2684 // sdiv will be replaced by other instruction sequence.
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002685 } else if (div->GetResultType() == Primitive::kPrimInt &&
2686 !codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
2687 // pIdivmod runtime call.
2688 call_kind = LocationSummary::kCall;
2689 }
2690
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002691 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
2692
Calin Juravle7c4954d2014-10-28 16:57:40 +00002693 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002694 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08002695 if (div->InputAt(1)->IsConstant()) {
2696 locations->SetInAt(0, Location::RequiresRegister());
2697 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
2698 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2699 int32_t abs_imm = std::abs(div->InputAt(1)->AsIntConstant()->GetValue());
2700 if (abs_imm <= 1) {
2701 // No temp register required.
2702 } else {
2703 locations->AddTemp(Location::RequiresRegister());
2704 if (!IsPowerOfTwo(abs_imm)) {
2705 locations->AddTemp(Location::RequiresRegister());
2706 }
2707 }
2708 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002709 locations->SetInAt(0, Location::RequiresRegister());
2710 locations->SetInAt(1, Location::RequiresRegister());
2711 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2712 } else {
2713 InvokeRuntimeCallingConvention calling_convention;
2714 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2715 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2716 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2717 // we only need the former.
2718 locations->SetOut(Location::RegisterLocation(R0));
2719 }
Calin Juravled0d48522014-11-04 16:40:20 +00002720 break;
2721 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00002722 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002723 InvokeRuntimeCallingConvention calling_convention;
2724 locations->SetInAt(0, Location::RegisterPairLocation(
2725 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2726 locations->SetInAt(1, Location::RegisterPairLocation(
2727 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002728 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Calin Juravle7c4954d2014-10-28 16:57:40 +00002729 break;
2730 }
2731 case Primitive::kPrimFloat:
2732 case Primitive::kPrimDouble: {
2733 locations->SetInAt(0, Location::RequiresFpuRegister());
2734 locations->SetInAt(1, Location::RequiresFpuRegister());
2735 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2736 break;
2737 }
2738
2739 default:
2740 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2741 }
2742}
2743
2744void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) {
2745 LocationSummary* locations = div->GetLocations();
2746 Location out = locations->Out();
2747 Location first = locations->InAt(0);
2748 Location second = locations->InAt(1);
2749
2750 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00002751 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08002752 if (second.IsConstant()) {
2753 GenerateDivRemConstantIntegral(div);
2754 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002755 __ sdiv(out.AsRegister<Register>(),
2756 first.AsRegister<Register>(),
2757 second.AsRegister<Register>());
2758 } else {
2759 InvokeRuntimeCallingConvention calling_convention;
2760 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2761 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2762 DCHECK_EQ(R0, out.AsRegister<Register>());
2763
2764 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), div, div->GetDexPc(), nullptr);
2765 }
Calin Juravled0d48522014-11-04 16:40:20 +00002766 break;
2767 }
2768
Calin Juravle7c4954d2014-10-28 16:57:40 +00002769 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002770 InvokeRuntimeCallingConvention calling_convention;
2771 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
2772 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
2773 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
2774 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
2775 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002776 DCHECK_EQ(R1, out.AsRegisterPairHigh<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002777
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002778 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLdiv), div, div->GetDexPc(), nullptr);
Calin Juravle7c4954d2014-10-28 16:57:40 +00002779 break;
2780 }
2781
2782 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00002783 __ vdivs(out.AsFpuRegister<SRegister>(),
2784 first.AsFpuRegister<SRegister>(),
2785 second.AsFpuRegister<SRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002786 break;
2787 }
2788
2789 case Primitive::kPrimDouble: {
2790 __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2791 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2792 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
2793 break;
2794 }
2795
2796 default:
2797 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2798 }
2799}
2800
Calin Juravlebacfec32014-11-14 15:54:36 +00002801void LocationsBuilderARM::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002802 Primitive::Type type = rem->GetResultType();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002803
2804 // Most remainders are implemented in the runtime.
2805 LocationSummary::CallKind call_kind = LocationSummary::kCall;
Zheng Xuc6667102015-05-15 16:08:45 +08002806 if (rem->GetResultType() == Primitive::kPrimInt && rem->InputAt(1)->IsConstant()) {
2807 // sdiv will be replaced by other instruction sequence.
2808 call_kind = LocationSummary::kNoCall;
2809 } else if ((rem->GetResultType() == Primitive::kPrimInt)
2810 && codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002811 // Have hardware divide instruction for int, do it with three instructions.
2812 call_kind = LocationSummary::kNoCall;
2813 }
2814
Calin Juravlebacfec32014-11-14 15:54:36 +00002815 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2816
Calin Juravled2ec87d2014-12-08 14:24:46 +00002817 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002818 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08002819 if (rem->InputAt(1)->IsConstant()) {
2820 locations->SetInAt(0, Location::RequiresRegister());
2821 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
2822 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2823 int32_t abs_imm = std::abs(rem->InputAt(1)->AsIntConstant()->GetValue());
2824 if (abs_imm <= 1) {
2825 // No temp register required.
2826 } else {
2827 locations->AddTemp(Location::RequiresRegister());
2828 if (!IsPowerOfTwo(abs_imm)) {
2829 locations->AddTemp(Location::RequiresRegister());
2830 }
2831 }
2832 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002833 locations->SetInAt(0, Location::RequiresRegister());
2834 locations->SetInAt(1, Location::RequiresRegister());
2835 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2836 locations->AddTemp(Location::RequiresRegister());
2837 } else {
2838 InvokeRuntimeCallingConvention calling_convention;
2839 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
2840 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
2841 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
2842 // we only need the latter.
2843 locations->SetOut(Location::RegisterLocation(R1));
2844 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002845 break;
2846 }
2847 case Primitive::kPrimLong: {
2848 InvokeRuntimeCallingConvention calling_convention;
2849 locations->SetInAt(0, Location::RegisterPairLocation(
2850 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2851 locations->SetInAt(1, Location::RegisterPairLocation(
2852 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
2853 // The runtime helper puts the output in R2,R3.
2854 locations->SetOut(Location::RegisterPairLocation(R2, R3));
2855 break;
2856 }
Calin Juravled2ec87d2014-12-08 14:24:46 +00002857 case Primitive::kPrimFloat: {
2858 InvokeRuntimeCallingConvention calling_convention;
2859 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
2860 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
2861 locations->SetOut(Location::FpuRegisterLocation(S0));
2862 break;
2863 }
2864
Calin Juravlebacfec32014-11-14 15:54:36 +00002865 case Primitive::kPrimDouble: {
Calin Juravled2ec87d2014-12-08 14:24:46 +00002866 InvokeRuntimeCallingConvention calling_convention;
2867 locations->SetInAt(0, Location::FpuRegisterPairLocation(
2868 calling_convention.GetFpuRegisterAt(0), calling_convention.GetFpuRegisterAt(1)));
2869 locations->SetInAt(1, Location::FpuRegisterPairLocation(
2870 calling_convention.GetFpuRegisterAt(2), calling_convention.GetFpuRegisterAt(3)));
2871 locations->SetOut(Location::Location::FpuRegisterPairLocation(S0, S1));
Calin Juravlebacfec32014-11-14 15:54:36 +00002872 break;
2873 }
2874
2875 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002876 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002877 }
2878}
2879
2880void InstructionCodeGeneratorARM::VisitRem(HRem* rem) {
2881 LocationSummary* locations = rem->GetLocations();
2882 Location out = locations->Out();
2883 Location first = locations->InAt(0);
2884 Location second = locations->InAt(1);
2885
Calin Juravled2ec87d2014-12-08 14:24:46 +00002886 Primitive::Type type = rem->GetResultType();
2887 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00002888 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08002889 if (second.IsConstant()) {
2890 GenerateDivRemConstantIntegral(rem);
2891 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002892 Register reg1 = first.AsRegister<Register>();
2893 Register reg2 = second.AsRegister<Register>();
2894 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravlebacfec32014-11-14 15:54:36 +00002895
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002896 // temp = reg1 / reg2 (integer division)
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01002897 // dest = reg1 - temp * reg2
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002898 __ sdiv(temp, reg1, reg2);
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01002899 __ mls(out.AsRegister<Register>(), temp, reg2, reg1);
Andreas Gampeb51cdb32015-03-29 17:32:48 -07002900 } else {
2901 InvokeRuntimeCallingConvention calling_convention;
2902 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
2903 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
2904 DCHECK_EQ(R1, out.AsRegister<Register>());
2905
2906 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pIdivmod), rem, rem->GetDexPc(), nullptr);
2907 }
Calin Juravlebacfec32014-11-14 15:54:36 +00002908 break;
2909 }
2910
2911 case Primitive::kPrimLong: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002912 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pLmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002913 break;
2914 }
2915
Calin Juravled2ec87d2014-12-08 14:24:46 +00002916 case Primitive::kPrimFloat: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002917 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmodf), rem, rem->GetDexPc(), nullptr);
Calin Juravled2ec87d2014-12-08 14:24:46 +00002918 break;
2919 }
2920
Calin Juravlebacfec32014-11-14 15:54:36 +00002921 case Primitive::kPrimDouble: {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002922 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pFmod), rem, rem->GetDexPc(), nullptr);
Calin Juravlebacfec32014-11-14 15:54:36 +00002923 break;
2924 }
2925
2926 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00002927 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00002928 }
2929}
2930
Calin Juravled0d48522014-11-04 16:40:20 +00002931void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00002932 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2933 ? LocationSummary::kCallOnSlowPath
2934 : LocationSummary::kNoCall;
2935 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002936 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Calin Juravled0d48522014-11-04 16:40:20 +00002937 if (instruction->HasUses()) {
2938 locations->SetOut(Location::SameAsFirstInput());
2939 }
2940}
2941
2942void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07002943 SlowPathCode* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction);
Calin Juravled0d48522014-11-04 16:40:20 +00002944 codegen_->AddSlowPath(slow_path);
2945
2946 LocationSummary* locations = instruction->GetLocations();
2947 Location value = locations->InAt(0);
2948
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002949 switch (instruction->GetType()) {
Serguei Katkov8c0676c2015-08-03 13:55:33 +06002950 case Primitive::kPrimByte:
2951 case Primitive::kPrimChar:
2952 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002953 case Primitive::kPrimInt: {
2954 if (value.IsRegister()) {
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01002955 __ CompareAndBranchIfZero(value.AsRegister<Register>(), slow_path->GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00002956 } else {
2957 DCHECK(value.IsConstant()) << value;
2958 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
2959 __ b(slow_path->GetEntryLabel());
2960 }
2961 }
2962 break;
2963 }
2964 case Primitive::kPrimLong: {
2965 if (value.IsRegisterPair()) {
2966 __ orrs(IP,
2967 value.AsRegisterPairLow<Register>(),
2968 ShifterOperand(value.AsRegisterPairHigh<Register>()));
2969 __ b(slow_path->GetEntryLabel(), EQ);
2970 } else {
2971 DCHECK(value.IsConstant()) << value;
2972 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
2973 __ b(slow_path->GetEntryLabel());
2974 }
2975 }
2976 break;
2977 default:
2978 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
2979 }
2980 }
Calin Juravled0d48522014-11-04 16:40:20 +00002981}
2982
Calin Juravle9aec02f2014-11-18 23:06:35 +00002983void LocationsBuilderARM::HandleShift(HBinaryOperation* op) {
2984 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
2985
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002986 LocationSummary* locations =
2987 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002988
2989 switch (op->GetResultType()) {
2990 case Primitive::kPrimInt: {
2991 locations->SetInAt(0, Location::RequiresRegister());
2992 locations->SetInAt(1, Location::RegisterOrConstant(op->InputAt(1)));
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01002993 // Make the output overlap, as it will be used to hold the masked
2994 // second input.
2995 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Calin Juravle9aec02f2014-11-18 23:06:35 +00002996 break;
2997 }
2998 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00002999 locations->SetInAt(0, Location::RequiresRegister());
3000 locations->SetInAt(1, Location::RequiresRegister());
3001 locations->AddTemp(Location::RequiresRegister());
3002 locations->SetOut(Location::RequiresRegister());
Calin Juravle9aec02f2014-11-18 23:06:35 +00003003 break;
3004 }
3005 default:
3006 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
3007 }
3008}
3009
3010void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) {
3011 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3012
3013 LocationSummary* locations = op->GetLocations();
3014 Location out = locations->Out();
3015 Location first = locations->InAt(0);
3016 Location second = locations->InAt(1);
3017
3018 Primitive::Type type = op->GetResultType();
3019 switch (type) {
3020 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003021 Register out_reg = out.AsRegister<Register>();
3022 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003023 // Arm doesn't mask the shift count so we need to do it ourselves.
3024 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003025 Register second_reg = second.AsRegister<Register>();
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003026 __ and_(out_reg, second_reg, ShifterOperand(kMaxIntShiftValue));
Calin Juravle9aec02f2014-11-18 23:06:35 +00003027 if (op->IsShl()) {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003028 __ Lsl(out_reg, first_reg, out_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003029 } else if (op->IsShr()) {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003030 __ Asr(out_reg, first_reg, out_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003031 } else {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003032 __ Lsr(out_reg, first_reg, out_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003033 }
3034 } else {
3035 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
3036 uint32_t shift_value = static_cast<uint32_t>(cst & kMaxIntShiftValue);
3037 if (shift_value == 0) { // arm does not support shifting with 0 immediate.
3038 __ Mov(out_reg, first_reg);
3039 } else if (op->IsShl()) {
3040 __ Lsl(out_reg, first_reg, shift_value);
3041 } else if (op->IsShr()) {
3042 __ Asr(out_reg, first_reg, shift_value);
3043 } else {
3044 __ Lsr(out_reg, first_reg, shift_value);
3045 }
3046 }
3047 break;
3048 }
3049 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003050 Register o_h = out.AsRegisterPairHigh<Register>();
3051 Register o_l = out.AsRegisterPairLow<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003052
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003053 Register temp = locations->GetTemp(0).AsRegister<Register>();
3054
3055 Register high = first.AsRegisterPairHigh<Register>();
3056 Register low = first.AsRegisterPairLow<Register>();
3057
3058 Register second_reg = second.AsRegister<Register>();
3059
Calin Juravle9aec02f2014-11-18 23:06:35 +00003060 if (op->IsShl()) {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003061 __ and_(o_l, second_reg, ShifterOperand(kMaxLongShiftValue));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003062 // Shift the high part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003063 __ Lsl(o_h, high, o_l);
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003064 // Shift the low part and `or` what overflew on the high part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003065 __ rsb(temp, o_l, ShifterOperand(kArmBitsPerWord));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003066 __ Lsr(temp, low, temp);
3067 __ orr(o_h, o_h, ShifterOperand(temp));
3068 // If the shift is > 32 bits, override the high part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003069 __ subs(temp, o_l, ShifterOperand(kArmBitsPerWord));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003070 __ it(PL);
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01003071 __ Lsl(o_h, low, temp, PL);
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003072 // Shift the low part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003073 __ Lsl(o_l, low, o_l);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003074 } else if (op->IsShr()) {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003075 __ and_(o_h, second_reg, ShifterOperand(kMaxLongShiftValue));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003076 // Shift the low part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003077 __ Lsr(o_l, low, o_h);
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003078 // Shift the high part and `or` what underflew on the low part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003079 __ rsb(temp, o_h, ShifterOperand(kArmBitsPerWord));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003080 __ Lsl(temp, high, temp);
3081 __ orr(o_l, o_l, ShifterOperand(temp));
3082 // If the shift is > 32 bits, override the low part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003083 __ subs(temp, o_h, ShifterOperand(kArmBitsPerWord));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003084 __ it(PL);
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01003085 __ Asr(o_l, high, temp, PL);
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003086 // Shift the high part
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003087 __ Asr(o_h, high, o_h);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003088 } else {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003089 __ and_(o_h, second_reg, ShifterOperand(kMaxLongShiftValue));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003090 // same as Shr except we use `Lsr`s and not `Asr`s
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003091 __ Lsr(o_l, low, o_h);
3092 __ rsb(temp, o_h, ShifterOperand(kArmBitsPerWord));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003093 __ Lsl(temp, high, temp);
3094 __ orr(o_l, o_l, ShifterOperand(temp));
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003095 __ subs(temp, o_h, ShifterOperand(kArmBitsPerWord));
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003096 __ it(PL);
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01003097 __ Lsr(o_l, high, temp, PL);
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003098 __ Lsr(o_h, high, o_h);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003099 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003100 break;
3101 }
3102 default:
3103 LOG(FATAL) << "Unexpected operation type " << type;
3104 }
3105}
3106
3107void LocationsBuilderARM::VisitShl(HShl* shl) {
3108 HandleShift(shl);
3109}
3110
3111void InstructionCodeGeneratorARM::VisitShl(HShl* shl) {
3112 HandleShift(shl);
3113}
3114
3115void LocationsBuilderARM::VisitShr(HShr* shr) {
3116 HandleShift(shr);
3117}
3118
3119void InstructionCodeGeneratorARM::VisitShr(HShr* shr) {
3120 HandleShift(shr);
3121}
3122
3123void LocationsBuilderARM::VisitUShr(HUShr* ushr) {
3124 HandleShift(ushr);
3125}
3126
3127void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) {
3128 HandleShift(ushr);
3129}
3130
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003131void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003132 LocationSummary* locations =
3133 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01003134 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003135 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003136 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003137 locations->SetOut(Location::RegisterLocation(R0));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003138}
3139
3140void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) {
3141 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003142 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003143 // Note: if heap poisoning is enabled, the entry point takes cares
3144 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003145 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00003146 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003147 instruction->GetDexPc(),
3148 nullptr);
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003149}
3150
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003151void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) {
3152 LocationSummary* locations =
3153 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3154 InvokeRuntimeCallingConvention calling_convention;
3155 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003156 locations->SetOut(Location::RegisterLocation(R0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003157 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003158 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003159}
3160
3161void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) {
3162 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003163 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003164 // Note: if heap poisoning is enabled, the entry point takes cares
3165 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003166 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00003167 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003168 instruction->GetDexPc(),
3169 nullptr);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003170}
3171
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003172void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003173 LocationSummary* locations =
3174 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01003175 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
3176 if (location.IsStackSlot()) {
3177 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3178 } else if (location.IsDoubleStackSlot()) {
3179 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003180 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01003181 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003182}
3183
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003184void InstructionCodeGeneratorARM::VisitParameterValue(
3185 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003186 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003187}
3188
3189void LocationsBuilderARM::VisitCurrentMethod(HCurrentMethod* instruction) {
3190 LocationSummary* locations =
3191 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3192 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
3193}
3194
3195void InstructionCodeGeneratorARM::VisitCurrentMethod(HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
3196 // Nothing to do, the method is already at its location.
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003197}
3198
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003199void LocationsBuilderARM::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003200 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003201 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003202 locations->SetInAt(0, Location::RequiresRegister());
3203 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01003204}
3205
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003206void InstructionCodeGeneratorARM::VisitNot(HNot* not_) {
3207 LocationSummary* locations = not_->GetLocations();
3208 Location out = locations->Out();
3209 Location in = locations->InAt(0);
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00003210 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003211 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00003212 __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003213 break;
3214
3215 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01003216 __ mvn(out.AsRegisterPairLow<Register>(),
3217 ShifterOperand(in.AsRegisterPairLow<Register>()));
3218 __ mvn(out.AsRegisterPairHigh<Register>(),
3219 ShifterOperand(in.AsRegisterPairHigh<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003220 break;
3221
3222 default:
3223 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
3224 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01003225}
3226
David Brazdil66d126e2015-04-03 16:02:44 +01003227void LocationsBuilderARM::VisitBooleanNot(HBooleanNot* bool_not) {
3228 LocationSummary* locations =
3229 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
3230 locations->SetInAt(0, Location::RequiresRegister());
3231 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3232}
3233
3234void InstructionCodeGeneratorARM::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01003235 LocationSummary* locations = bool_not->GetLocations();
3236 Location out = locations->Out();
3237 Location in = locations->InAt(0);
3238 __ eor(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(1));
3239}
3240
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003241void LocationsBuilderARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003242 LocationSummary* locations =
3243 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00003244 switch (compare->InputAt(0)->GetType()) {
3245 case Primitive::kPrimLong: {
3246 locations->SetInAt(0, Location::RequiresRegister());
3247 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003248 // Output overlaps because it is written before doing the low comparison.
3249 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Calin Juravleddb7df22014-11-25 20:56:51 +00003250 break;
3251 }
3252 case Primitive::kPrimFloat:
3253 case Primitive::kPrimDouble: {
3254 locations->SetInAt(0, Location::RequiresFpuRegister());
3255 locations->SetInAt(1, Location::RequiresFpuRegister());
3256 locations->SetOut(Location::RequiresRegister());
3257 break;
3258 }
3259 default:
3260 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
3261 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003262}
3263
3264void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003265 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003266 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00003267 Location left = locations->InAt(0);
3268 Location right = locations->InAt(1);
3269
Vladimir Markocf93a5c2015-06-16 11:33:24 +00003270 Label less, greater, done;
Calin Juravleddb7df22014-11-25 20:56:51 +00003271 Primitive::Type type = compare->InputAt(0)->GetType();
3272 switch (type) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003273 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003274 __ cmp(left.AsRegisterPairHigh<Register>(),
3275 ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003276 __ b(&less, LT);
3277 __ b(&greater, GT);
Roland Levillain4fa13f62015-07-06 18:11:54 +01003278 // Do LoadImmediate before the last `cmp`, as LoadImmediate might affect the status flags.
Calin Juravleddb7df22014-11-25 20:56:51 +00003279 __ LoadImmediate(out, 0);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003280 __ cmp(left.AsRegisterPairLow<Register>(),
3281 ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare.
Calin Juravleddb7df22014-11-25 20:56:51 +00003282 break;
3283 }
3284 case Primitive::kPrimFloat:
3285 case Primitive::kPrimDouble: {
3286 __ LoadImmediate(out, 0);
3287 if (type == Primitive::kPrimFloat) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003288 __ vcmps(left.AsFpuRegister<SRegister>(), right.AsFpuRegister<SRegister>());
Calin Juravleddb7df22014-11-25 20:56:51 +00003289 } else {
3290 __ vcmpd(FromLowSToD(left.AsFpuRegisterPairLow<SRegister>()),
3291 FromLowSToD(right.AsFpuRegisterPairLow<SRegister>()));
3292 }
3293 __ vmstat(); // transfer FP status register to ARM APSR.
3294 __ b(compare->IsGtBias() ? &greater : &less, VS); // VS for unordered.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003295 break;
3296 }
3297 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00003298 LOG(FATAL) << "Unexpected compare type " << type;
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003299 }
Calin Juravleddb7df22014-11-25 20:56:51 +00003300 __ b(&done, EQ);
Roland Levillain4fa13f62015-07-06 18:11:54 +01003301 __ b(&less, LO); // LO is for both: unsigned compare for longs and 'less than' for floats.
Calin Juravleddb7df22014-11-25 20:56:51 +00003302
3303 __ Bind(&greater);
3304 __ LoadImmediate(out, 1);
3305 __ b(&done);
3306
3307 __ Bind(&less);
3308 __ LoadImmediate(out, -1);
3309
3310 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01003311}
3312
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003313void LocationsBuilderARM::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003314 LocationSummary* locations =
3315 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01003316 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
3317 locations->SetInAt(i, Location::Any());
3318 }
3319 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003320}
3321
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003322void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01003323 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01003324}
3325
Calin Juravle52c48962014-12-16 17:02:57 +00003326void InstructionCodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) {
3327 // TODO (ported from quick): revisit Arm barrier kinds
Kenny Root1d8199d2015-06-02 11:01:10 -07003328 DmbOptions flavor = DmbOptions::ISH; // quiet c++ warnings
Calin Juravle52c48962014-12-16 17:02:57 +00003329 switch (kind) {
3330 case MemBarrierKind::kAnyStore:
3331 case MemBarrierKind::kLoadAny:
3332 case MemBarrierKind::kAnyAny: {
Kenny Root1d8199d2015-06-02 11:01:10 -07003333 flavor = DmbOptions::ISH;
Calin Juravle52c48962014-12-16 17:02:57 +00003334 break;
3335 }
3336 case MemBarrierKind::kStoreStore: {
Kenny Root1d8199d2015-06-02 11:01:10 -07003337 flavor = DmbOptions::ISHST;
Calin Juravle52c48962014-12-16 17:02:57 +00003338 break;
3339 }
3340 default:
3341 LOG(FATAL) << "Unexpected memory barrier " << kind;
3342 }
Kenny Root1d8199d2015-06-02 11:01:10 -07003343 __ dmb(flavor);
Calin Juravle52c48962014-12-16 17:02:57 +00003344}
3345
3346void InstructionCodeGeneratorARM::GenerateWideAtomicLoad(Register addr,
3347 uint32_t offset,
3348 Register out_lo,
3349 Register out_hi) {
3350 if (offset != 0) {
3351 __ LoadImmediate(out_lo, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00003352 __ add(IP, addr, ShifterOperand(out_lo));
3353 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00003354 }
3355 __ ldrexd(out_lo, out_hi, addr);
3356}
3357
3358void InstructionCodeGeneratorARM::GenerateWideAtomicStore(Register addr,
3359 uint32_t offset,
3360 Register value_lo,
3361 Register value_hi,
3362 Register temp1,
Calin Juravle77520bc2015-01-12 18:45:46 +00003363 Register temp2,
3364 HInstruction* instruction) {
Vladimir Markocf93a5c2015-06-16 11:33:24 +00003365 Label fail;
Calin Juravle52c48962014-12-16 17:02:57 +00003366 if (offset != 0) {
3367 __ LoadImmediate(temp1, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00003368 __ add(IP, addr, ShifterOperand(temp1));
3369 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00003370 }
3371 __ Bind(&fail);
3372 // We need a load followed by store. (The address used in a STREX instruction must
3373 // be the same as the address in the most recently executed LDREX instruction.)
3374 __ ldrexd(temp1, temp2, addr);
Calin Juravle77520bc2015-01-12 18:45:46 +00003375 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003376 __ strexd(temp1, value_lo, value_hi, addr);
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01003377 __ CompareAndBranchIfNonZero(temp1, &fail);
Calin Juravle52c48962014-12-16 17:02:57 +00003378}
3379
3380void LocationsBuilderARM::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
3381 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3382
Nicolas Geoffray39468442014-09-02 15:17:15 +01003383 LocationSummary* locations =
3384 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003385 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00003386
Calin Juravle52c48962014-12-16 17:02:57 +00003387 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003388 if (Primitive::IsFloatingPointType(field_type)) {
3389 locations->SetInAt(1, Location::RequiresFpuRegister());
3390 } else {
3391 locations->SetInAt(1, Location::RequiresRegister());
3392 }
3393
Calin Juravle52c48962014-12-16 17:02:57 +00003394 bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble;
Calin Juravle34166012014-12-19 17:22:29 +00003395 bool generate_volatile = field_info.IsVolatile()
3396 && is_wide
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003397 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Roland Levillain4d027112015-07-01 15:41:14 +01003398 bool needs_write_barrier =
3399 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01003400 // Temporary registers for the write barrier.
Calin Juravle52c48962014-12-16 17:02:57 +00003401 // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark.
Roland Levillain4d027112015-07-01 15:41:14 +01003402 if (needs_write_barrier) {
3403 locations->AddTemp(Location::RequiresRegister()); // Possibly used for reference poisoning too.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01003404 locations->AddTemp(Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00003405 } else if (generate_volatile) {
Calin Juravle52c48962014-12-16 17:02:57 +00003406 // Arm encoding have some additional constraints for ldrexd/strexd:
3407 // - registers need to be consecutive
3408 // - the first register should be even but not R14.
3409 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
3410 // enable Arm encoding.
3411 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
3412
3413 locations->AddTemp(Location::RequiresRegister());
3414 locations->AddTemp(Location::RequiresRegister());
3415 if (field_type == Primitive::kPrimDouble) {
3416 // For doubles we need two more registers to copy the value.
3417 locations->AddTemp(Location::RegisterLocation(R2));
3418 locations->AddTemp(Location::RegisterLocation(R3));
3419 }
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01003420 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003421}
3422
Calin Juravle52c48962014-12-16 17:02:57 +00003423void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003424 const FieldInfo& field_info,
3425 bool value_can_be_null) {
Calin Juravle52c48962014-12-16 17:02:57 +00003426 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
3427
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003428 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00003429 Register base = locations->InAt(0).AsRegister<Register>();
3430 Location value = locations->InAt(1);
3431
3432 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003433 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00003434 Primitive::Type field_type = field_info.GetFieldType();
3435 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01003436 bool needs_write_barrier =
3437 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Calin Juravle52c48962014-12-16 17:02:57 +00003438
3439 if (is_volatile) {
3440 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
3441 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003442
3443 switch (field_type) {
3444 case Primitive::kPrimBoolean:
3445 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003446 __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003447 break;
3448 }
3449
3450 case Primitive::kPrimShort:
3451 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003452 __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003453 break;
3454 }
3455
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003456 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003457 case Primitive::kPrimNot: {
Roland Levillain4d027112015-07-01 15:41:14 +01003458 if (kPoisonHeapReferences && needs_write_barrier) {
3459 // Note that in the case where `value` is a null reference,
3460 // we do not enter this block, as a null reference does not
3461 // need poisoning.
3462 DCHECK_EQ(field_type, Primitive::kPrimNot);
3463 Register temp = locations->GetTemp(0).AsRegister<Register>();
3464 __ Mov(temp, value.AsRegister<Register>());
3465 __ PoisonHeapReference(temp);
3466 __ StoreToOffset(kStoreWord, temp, base, offset);
3467 } else {
3468 __ StoreToOffset(kStoreWord, value.AsRegister<Register>(), base, offset);
3469 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003470 break;
3471 }
3472
3473 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00003474 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003475 GenerateWideAtomicStore(base, offset,
3476 value.AsRegisterPairLow<Register>(),
3477 value.AsRegisterPairHigh<Register>(),
3478 locations->GetTemp(0).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00003479 locations->GetTemp(1).AsRegister<Register>(),
3480 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003481 } else {
3482 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003483 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003484 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003485 break;
3486 }
3487
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003488 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003489 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003490 break;
3491 }
3492
3493 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003494 DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00003495 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003496 Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>();
3497 Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>();
3498
3499 __ vmovrrd(value_reg_lo, value_reg_hi, value_reg);
3500
3501 GenerateWideAtomicStore(base, offset,
3502 value_reg_lo,
3503 value_reg_hi,
3504 locations->GetTemp(2).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00003505 locations->GetTemp(3).AsRegister<Register>(),
3506 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003507 } else {
3508 __ StoreDToOffset(value_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003509 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003510 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003511 break;
3512 }
3513
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003514 case Primitive::kPrimVoid:
3515 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003516 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003517 }
Calin Juravle52c48962014-12-16 17:02:57 +00003518
Calin Juravle77520bc2015-01-12 18:45:46 +00003519 // Longs and doubles are handled in the switch.
3520 if (field_type != Primitive::kPrimLong && field_type != Primitive::kPrimDouble) {
3521 codegen_->MaybeRecordImplicitNullCheck(instruction);
3522 }
3523
3524 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
3525 Register temp = locations->GetTemp(0).AsRegister<Register>();
3526 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003527 codegen_->MarkGCCard(
3528 temp, card, base, value.AsRegister<Register>(), value_can_be_null);
Calin Juravle77520bc2015-01-12 18:45:46 +00003529 }
3530
Calin Juravle52c48962014-12-16 17:02:57 +00003531 if (is_volatile) {
3532 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
3533 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003534}
3535
Calin Juravle52c48962014-12-16 17:02:57 +00003536void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
3537 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffray39468442014-09-02 15:17:15 +01003538 LocationSummary* locations =
3539 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003540 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00003541
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003542 bool volatile_for_double = field_info.IsVolatile()
Calin Juravle34166012014-12-19 17:22:29 +00003543 && (field_info.GetFieldType() == Primitive::kPrimDouble)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003544 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003545 bool overlap = field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong);
Nicolas Geoffrayacc0b8e2015-04-20 12:39:57 +01003546
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003547 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3548 locations->SetOut(Location::RequiresFpuRegister());
3549 } else {
3550 locations->SetOut(Location::RequiresRegister(),
3551 (overlap ? Location::kOutputOverlap : Location::kNoOutputOverlap));
3552 }
Nicolas Geoffray829280c2015-01-28 10:20:37 +00003553 if (volatile_for_double) {
Calin Juravle52c48962014-12-16 17:02:57 +00003554 // Arm encoding have some additional constraints for ldrexd/strexd:
3555 // - registers need to be consecutive
3556 // - the first register should be even but not R14.
3557 // We don't test for Arm yet, and the assertion makes sure that we revisit this if we ever
3558 // enable Arm encoding.
3559 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
3560 locations->AddTemp(Location::RequiresRegister());
3561 locations->AddTemp(Location::RequiresRegister());
3562 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003563}
3564
Vladimir Markod2b4ca22015-09-14 15:13:26 +01003565Location LocationsBuilderARM::ArmEncodableConstantOrRegister(HInstruction* constant,
3566 Opcode opcode) {
3567 DCHECK(!Primitive::IsFloatingPointType(constant->GetType()));
3568 if (constant->IsConstant() &&
3569 CanEncodeConstantAsImmediate(constant->AsConstant(), opcode)) {
3570 return Location::ConstantLocation(constant->AsConstant());
3571 }
3572 return Location::RequiresRegister();
3573}
3574
3575bool LocationsBuilderARM::CanEncodeConstantAsImmediate(HConstant* input_cst,
3576 Opcode opcode) {
3577 uint64_t value = static_cast<uint64_t>(Int64FromConstant(input_cst));
3578 if (Primitive::Is64BitType(input_cst->GetType())) {
3579 return CanEncodeConstantAsImmediate(Low32Bits(value), opcode) &&
3580 CanEncodeConstantAsImmediate(High32Bits(value), opcode);
3581 } else {
3582 return CanEncodeConstantAsImmediate(Low32Bits(value), opcode);
3583 }
3584}
3585
3586bool LocationsBuilderARM::CanEncodeConstantAsImmediate(uint32_t value, Opcode opcode) {
3587 ShifterOperand so;
3588 ArmAssembler* assembler = codegen_->GetAssembler();
3589 if (assembler->ShifterOperandCanHold(kNoRegister, kNoRegister, opcode, value, &so)) {
3590 return true;
3591 }
3592 Opcode neg_opcode = kNoOperand;
3593 switch (opcode) {
3594 case AND:
3595 neg_opcode = BIC;
3596 break;
3597 case ORR:
3598 neg_opcode = ORN;
3599 break;
3600 default:
3601 return false;
3602 }
3603 return assembler->ShifterOperandCanHold(kNoRegister, kNoRegister, neg_opcode, ~value, &so);
3604}
3605
Calin Juravle52c48962014-12-16 17:02:57 +00003606void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction,
3607 const FieldInfo& field_info) {
3608 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003609
Calin Juravle52c48962014-12-16 17:02:57 +00003610 LocationSummary* locations = instruction->GetLocations();
3611 Register base = locations->InAt(0).AsRegister<Register>();
3612 Location out = locations->Out();
3613 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003614 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00003615 Primitive::Type field_type = field_info.GetFieldType();
3616 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
3617
3618 switch (field_type) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003619 case Primitive::kPrimBoolean: {
Calin Juravle52c48962014-12-16 17:02:57 +00003620 __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003621 break;
3622 }
3623
3624 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00003625 __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003626 break;
3627 }
3628
3629 case Primitive::kPrimShort: {
Calin Juravle52c48962014-12-16 17:02:57 +00003630 __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003631 break;
3632 }
3633
3634 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00003635 __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003636 break;
3637 }
3638
3639 case Primitive::kPrimInt:
3640 case Primitive::kPrimNot: {
Calin Juravle52c48962014-12-16 17:02:57 +00003641 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003642 break;
3643 }
3644
3645 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00003646 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003647 GenerateWideAtomicLoad(base, offset,
3648 out.AsRegisterPairLow<Register>(),
3649 out.AsRegisterPairHigh<Register>());
3650 } else {
3651 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset);
3652 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003653 break;
3654 }
3655
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003656 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00003657 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003658 break;
3659 }
3660
3661 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00003662 DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00003663 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00003664 Register lo = locations->GetTemp(0).AsRegister<Register>();
3665 Register hi = locations->GetTemp(1).AsRegister<Register>();
3666 GenerateWideAtomicLoad(base, offset, lo, hi);
Calin Juravle77520bc2015-01-12 18:45:46 +00003667 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003668 __ vmovdrr(out_reg, lo, hi);
3669 } else {
3670 __ LoadDFromOffset(out_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00003671 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00003672 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00003673 break;
3674 }
3675
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003676 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00003677 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003678 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003679 }
Calin Juravle52c48962014-12-16 17:02:57 +00003680
Calin Juravle77520bc2015-01-12 18:45:46 +00003681 // Doubles are handled in the switch.
3682 if (field_type != Primitive::kPrimDouble) {
3683 codegen_->MaybeRecordImplicitNullCheck(instruction);
3684 }
3685
Calin Juravle52c48962014-12-16 17:02:57 +00003686 if (is_volatile) {
3687 GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
3688 }
Roland Levillain4d027112015-07-01 15:41:14 +01003689
3690 if (field_type == Primitive::kPrimNot) {
3691 __ MaybeUnpoisonHeapReference(out.AsRegister<Register>());
3692 }
Calin Juravle52c48962014-12-16 17:02:57 +00003693}
3694
3695void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
3696 HandleFieldSet(instruction, instruction->GetFieldInfo());
3697}
3698
3699void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003700 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00003701}
3702
3703void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3704 HandleFieldGet(instruction, instruction->GetFieldInfo());
3705}
3706
3707void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
3708 HandleFieldGet(instruction, instruction->GetFieldInfo());
3709}
3710
3711void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3712 HandleFieldGet(instruction, instruction->GetFieldInfo());
3713}
3714
3715void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
3716 HandleFieldGet(instruction, instruction->GetFieldInfo());
3717}
3718
3719void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
3720 HandleFieldSet(instruction, instruction->GetFieldInfo());
3721}
3722
3723void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003724 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003725}
3726
Calin Juravlee460d1d2015-09-29 04:52:17 +01003727void LocationsBuilderARM::VisitUnresolvedInstanceFieldGet(
3728 HUnresolvedInstanceFieldGet* instruction) {
3729 FieldAccessCallingConventionARM calling_convention;
3730 codegen_->CreateUnresolvedFieldLocationSummary(
3731 instruction, instruction->GetFieldType(), calling_convention);
3732}
3733
3734void InstructionCodeGeneratorARM::VisitUnresolvedInstanceFieldGet(
3735 HUnresolvedInstanceFieldGet* instruction) {
3736 FieldAccessCallingConventionARM calling_convention;
3737 codegen_->GenerateUnresolvedFieldAccess(instruction,
3738 instruction->GetFieldType(),
3739 instruction->GetFieldIndex(),
3740 instruction->GetDexPc(),
3741 calling_convention);
3742}
3743
3744void LocationsBuilderARM::VisitUnresolvedInstanceFieldSet(
3745 HUnresolvedInstanceFieldSet* instruction) {
3746 FieldAccessCallingConventionARM calling_convention;
3747 codegen_->CreateUnresolvedFieldLocationSummary(
3748 instruction, instruction->GetFieldType(), calling_convention);
3749}
3750
3751void InstructionCodeGeneratorARM::VisitUnresolvedInstanceFieldSet(
3752 HUnresolvedInstanceFieldSet* instruction) {
3753 FieldAccessCallingConventionARM calling_convention;
3754 codegen_->GenerateUnresolvedFieldAccess(instruction,
3755 instruction->GetFieldType(),
3756 instruction->GetFieldIndex(),
3757 instruction->GetDexPc(),
3758 calling_convention);
3759}
3760
3761void LocationsBuilderARM::VisitUnresolvedStaticFieldGet(
3762 HUnresolvedStaticFieldGet* instruction) {
3763 FieldAccessCallingConventionARM calling_convention;
3764 codegen_->CreateUnresolvedFieldLocationSummary(
3765 instruction, instruction->GetFieldType(), calling_convention);
3766}
3767
3768void InstructionCodeGeneratorARM::VisitUnresolvedStaticFieldGet(
3769 HUnresolvedStaticFieldGet* instruction) {
3770 FieldAccessCallingConventionARM calling_convention;
3771 codegen_->GenerateUnresolvedFieldAccess(instruction,
3772 instruction->GetFieldType(),
3773 instruction->GetFieldIndex(),
3774 instruction->GetDexPc(),
3775 calling_convention);
3776}
3777
3778void LocationsBuilderARM::VisitUnresolvedStaticFieldSet(
3779 HUnresolvedStaticFieldSet* instruction) {
3780 FieldAccessCallingConventionARM calling_convention;
3781 codegen_->CreateUnresolvedFieldLocationSummary(
3782 instruction, instruction->GetFieldType(), calling_convention);
3783}
3784
3785void InstructionCodeGeneratorARM::VisitUnresolvedStaticFieldSet(
3786 HUnresolvedStaticFieldSet* instruction) {
3787 FieldAccessCallingConventionARM calling_convention;
3788 codegen_->GenerateUnresolvedFieldAccess(instruction,
3789 instruction->GetFieldType(),
3790 instruction->GetFieldIndex(),
3791 instruction->GetDexPc(),
3792 calling_convention);
3793}
3794
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003795void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003796 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
3797 ? LocationSummary::kCallOnSlowPath
3798 : LocationSummary::kNoCall;
3799 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Calin Juravle77520bc2015-01-12 18:45:46 +00003800 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01003801 if (instruction->HasUses()) {
3802 locations->SetOut(Location::SameAsFirstInput());
3803 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003804}
3805
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003806void InstructionCodeGeneratorARM::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003807 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3808 return;
3809 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003810 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003811
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003812 __ LoadFromOffset(kLoadWord, IP, obj.AsRegister<Register>(), 0);
3813 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3814}
3815
3816void InstructionCodeGeneratorARM::GenerateExplicitNullCheck(HNullCheck* instruction) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07003817 SlowPathCode* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003818 codegen_->AddSlowPath(slow_path);
3819
3820 LocationSummary* locations = instruction->GetLocations();
3821 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003822
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01003823 __ CompareAndBranchIfZero(obj.AsRegister<Register>(), slow_path->GetEntryLabel());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01003824}
3825
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003826void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003827 if (codegen_->IsImplicitNullCheckAllowed(instruction)) {
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003828 GenerateImplicitNullCheck(instruction);
3829 } else {
3830 GenerateExplicitNullCheck(instruction);
3831 }
3832}
3833
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003834void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003835 LocationSummary* locations =
3836 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003837 locations->SetInAt(0, Location::RequiresRegister());
3838 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01003839 if (Primitive::IsFloatingPointType(instruction->GetType())) {
3840 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3841 } else {
3842 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3843 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003844}
3845
3846void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
3847 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003848 Register obj = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003849 Location index = locations->InAt(1);
Roland Levillain4d027112015-07-01 15:41:14 +01003850 Primitive::Type type = instruction->GetType();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003851
Roland Levillain4d027112015-07-01 15:41:14 +01003852 switch (type) {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003853 case Primitive::kPrimBoolean: {
3854 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003855 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003856 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003857 size_t offset =
3858 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003859 __ LoadFromOffset(kLoadUnsignedByte, out, obj, offset);
3860 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003861 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003862 __ LoadFromOffset(kLoadUnsignedByte, out, IP, data_offset);
3863 }
3864 break;
3865 }
3866
3867 case Primitive::kPrimByte: {
3868 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003869 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003870 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003871 size_t offset =
3872 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003873 __ LoadFromOffset(kLoadSignedByte, out, obj, offset);
3874 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003875 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003876 __ LoadFromOffset(kLoadSignedByte, out, IP, data_offset);
3877 }
3878 break;
3879 }
3880
3881 case Primitive::kPrimShort: {
3882 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003883 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003884 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003885 size_t offset =
3886 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003887 __ LoadFromOffset(kLoadSignedHalfword, out, obj, offset);
3888 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003889 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003890 __ LoadFromOffset(kLoadSignedHalfword, out, IP, data_offset);
3891 }
3892 break;
3893 }
3894
3895 case Primitive::kPrimChar: {
3896 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003897 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003898 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003899 size_t offset =
3900 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003901 __ LoadFromOffset(kLoadUnsignedHalfword, out, obj, offset);
3902 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003903 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003904 __ LoadFromOffset(kLoadUnsignedHalfword, out, IP, data_offset);
3905 }
3906 break;
3907 }
3908
3909 case Primitive::kPrimInt:
3910 case Primitive::kPrimNot: {
Roland Levillain33d69032015-06-18 18:20:59 +01003911 static_assert(sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
3912 "art::mirror::HeapReference<mirror::Object> and int32_t have different sizes.");
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003913 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00003914 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003915 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003916 size_t offset =
3917 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003918 __ LoadFromOffset(kLoadWord, out, obj, offset);
3919 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003920 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003921 __ LoadFromOffset(kLoadWord, out, IP, data_offset);
3922 }
3923 break;
3924 }
3925
3926 case Primitive::kPrimLong: {
3927 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003928 Location out = locations->Out();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003929 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003930 size_t offset =
3931 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003932 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003933 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003934 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003935 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003936 }
3937 break;
3938 }
3939
Nicolas Geoffray840e5462015-01-07 16:01:24 +00003940 case Primitive::kPrimFloat: {
3941 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
3942 Location out = locations->Out();
3943 DCHECK(out.IsFpuRegister());
3944 if (index.IsConstant()) {
3945 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
3946 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), obj, offset);
3947 } else {
3948 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
3949 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), IP, data_offset);
3950 }
3951 break;
3952 }
3953
3954 case Primitive::kPrimDouble: {
3955 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
3956 Location out = locations->Out();
3957 DCHECK(out.IsFpuRegisterPair());
3958 if (index.IsConstant()) {
3959 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
3960 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), obj, offset);
3961 } else {
3962 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
3963 __ LoadDFromOffset(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
3964 }
3965 break;
3966 }
3967
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003968 case Primitive::kPrimVoid:
Roland Levillain4d027112015-07-01 15:41:14 +01003969 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07003970 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003971 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003972 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain4d027112015-07-01 15:41:14 +01003973
3974 if (type == Primitive::kPrimNot) {
3975 Register out = locations->Out().AsRegister<Register>();
3976 __ MaybeUnpoisonHeapReference(out);
3977 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003978}
3979
3980void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003981 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003982
3983 bool needs_write_barrier =
3984 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01003985 bool may_need_runtime_call = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003986
Nicolas Geoffray39468442014-09-02 15:17:15 +01003987 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01003988 instruction,
3989 may_need_runtime_call ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall);
3990 locations->SetInAt(0, Location::RequiresRegister());
3991 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
3992 if (Primitive::IsFloatingPointType(value_type)) {
3993 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01003994 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01003995 locations->SetInAt(2, Location::RequiresRegister());
3996 }
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00003997
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01003998 if (needs_write_barrier) {
3999 // Temporary registers for the write barrier.
4000 locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too.
4001 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004002 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004003}
4004
4005void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
4006 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004007 Register array = locations->InAt(0).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004008 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004009 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004010 bool may_need_runtime_call = locations->CanCall();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004011 bool needs_write_barrier =
4012 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004013
4014 switch (value_type) {
4015 case Primitive::kPrimBoolean:
4016 case Primitive::kPrimByte: {
4017 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint8_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004018 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004019 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004020 size_t offset =
4021 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_1) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004022 __ StoreToOffset(kStoreByte, value, array, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004023 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004024 __ add(IP, array, ShifterOperand(index.AsRegister<Register>()));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004025 __ StoreToOffset(kStoreByte, value, IP, data_offset);
4026 }
4027 break;
4028 }
4029
4030 case Primitive::kPrimShort:
4031 case Primitive::kPrimChar: {
4032 uint32_t data_offset = mirror::Array::DataOffset(sizeof(uint16_t)).Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004033 Register value = locations->InAt(2).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004034 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004035 size_t offset =
4036 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_2) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004037 __ StoreToOffset(kStoreHalfword, value, array, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004038 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004039 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_2));
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004040 __ StoreToOffset(kStoreHalfword, value, IP, data_offset);
4041 }
4042 break;
4043 }
4044
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004045 case Primitive::kPrimNot: {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004046 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
4047 Register value = locations->InAt(2).AsRegister<Register>();
4048 Register source = value;
4049
4050 if (instruction->InputAt(2)->IsNullConstant()) {
4051 // Just setting null.
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004052 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004053 size_t offset =
4054 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004055 __ StoreToOffset(kStoreWord, source, array, offset);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004056 } else {
4057 DCHECK(index.IsRegister()) << index;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004058 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Roland Levillain4d027112015-07-01 15:41:14 +01004059 __ StoreToOffset(kStoreWord, source, IP, data_offset);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004060 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004061 break;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00004062 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004063
4064 DCHECK(needs_write_barrier);
4065 Register temp1 = locations->GetTemp(0).AsRegister<Register>();
4066 Register temp2 = locations->GetTemp(1).AsRegister<Register>();
4067 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
4068 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
4069 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
4070 Label done;
4071 SlowPathCode* slow_path = nullptr;
4072
4073 if (may_need_runtime_call) {
4074 slow_path = new (GetGraph()->GetArena()) ArraySetSlowPathARM(instruction);
4075 codegen_->AddSlowPath(slow_path);
4076 if (instruction->GetValueCanBeNull()) {
4077 Label non_zero;
4078 __ CompareAndBranchIfNonZero(value, &non_zero);
4079 if (index.IsConstant()) {
4080 size_t offset =
4081 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
4082 __ StoreToOffset(kStoreWord, value, array, offset);
4083 } else {
4084 DCHECK(index.IsRegister()) << index;
4085 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
4086 __ StoreToOffset(kStoreWord, value, IP, data_offset);
4087 }
4088 codegen_->MaybeRecordImplicitNullCheck(instruction);
4089 __ b(&done);
4090 __ Bind(&non_zero);
4091 }
4092
4093 __ LoadFromOffset(kLoadWord, temp1, array, class_offset);
4094 codegen_->MaybeRecordImplicitNullCheck(instruction);
4095 __ MaybeUnpoisonHeapReference(temp1);
4096 __ LoadFromOffset(kLoadWord, temp1, temp1, component_offset);
4097 __ LoadFromOffset(kLoadWord, temp2, value, class_offset);
4098 // No need to poison/unpoison, we're comparing two poisoined references.
4099 __ cmp(temp1, ShifterOperand(temp2));
4100 if (instruction->StaticTypeOfArrayIsObjectArray()) {
4101 Label do_put;
4102 __ b(&do_put, EQ);
4103 __ MaybeUnpoisonHeapReference(temp1);
4104 __ LoadFromOffset(kLoadWord, temp1, temp1, super_offset);
4105 // No need to poison/unpoison, we're comparing against null.
4106 __ CompareAndBranchIfNonZero(temp1, slow_path->GetEntryLabel());
4107 __ Bind(&do_put);
4108 } else {
4109 __ b(slow_path->GetEntryLabel(), NE);
4110 }
4111 }
4112
4113 if (kPoisonHeapReferences) {
4114 // Note that in the case where `value` is a null reference,
4115 // we do not enter this block, as a null reference does not
4116 // need poisoning.
4117 DCHECK_EQ(value_type, Primitive::kPrimNot);
4118 __ Mov(temp1, value);
4119 __ PoisonHeapReference(temp1);
4120 source = temp1;
4121 }
4122
4123 if (index.IsConstant()) {
4124 size_t offset =
4125 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
4126 __ StoreToOffset(kStoreWord, source, array, offset);
4127 } else {
4128 DCHECK(index.IsRegister()) << index;
4129 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
4130 __ StoreToOffset(kStoreWord, source, IP, data_offset);
4131 }
4132
4133 if (!may_need_runtime_call) {
4134 codegen_->MaybeRecordImplicitNullCheck(instruction);
4135 }
4136
4137 codegen_->MarkGCCard(temp1, temp2, array, value, instruction->GetValueCanBeNull());
4138
4139 if (done.IsLinked()) {
4140 __ Bind(&done);
4141 }
4142
4143 if (slow_path != nullptr) {
4144 __ Bind(slow_path->GetExitLabel());
4145 }
4146
4147 break;
4148 }
4149
4150 case Primitive::kPrimInt: {
4151 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int32_t)).Uint32Value();
4152 Register value = locations->InAt(2).AsRegister<Register>();
4153 if (index.IsConstant()) {
4154 size_t offset =
4155 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
4156 __ StoreToOffset(kStoreWord, value, array, offset);
4157 } else {
4158 DCHECK(index.IsRegister()) << index;
4159 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
4160 __ StoreToOffset(kStoreWord, value, IP, data_offset);
4161 }
4162
4163 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004164 break;
4165 }
4166
4167 case Primitive::kPrimLong: {
4168 uint32_t data_offset = mirror::Array::DataOffset(sizeof(int64_t)).Uint32Value();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004169 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004170 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004171 size_t offset =
4172 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004173 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), array, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004174 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004175 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004176 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004177 }
4178 break;
4179 }
4180
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004181 case Primitive::kPrimFloat: {
4182 uint32_t data_offset = mirror::Array::DataOffset(sizeof(float)).Uint32Value();
4183 Location value = locations->InAt(2);
4184 DCHECK(value.IsFpuRegister());
4185 if (index.IsConstant()) {
4186 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004187 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), array, offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004188 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004189 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004190 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), IP, data_offset);
4191 }
4192 break;
4193 }
4194
4195 case Primitive::kPrimDouble: {
4196 uint32_t data_offset = mirror::Array::DataOffset(sizeof(double)).Uint32Value();
4197 Location value = locations->InAt(2);
4198 DCHECK(value.IsFpuRegisterPair());
4199 if (index.IsConstant()) {
4200 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004201 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), array, offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004202 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01004203 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004204 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
4205 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004206
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004207 break;
4208 }
4209
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004210 case Primitive::kPrimVoid:
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004211 LOG(FATAL) << "Unreachable type " << value_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004212 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004213 }
Calin Juravle77520bc2015-01-12 18:45:46 +00004214
4215 // Ints and objects are handled in the switch.
4216 if (value_type != Primitive::kPrimInt && value_type != Primitive::kPrimNot) {
4217 codegen_->MaybeRecordImplicitNullCheck(instruction);
4218 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004219}
4220
4221void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004222 LocationSummary* locations =
4223 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004224 locations->SetInAt(0, Location::RequiresRegister());
4225 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004226}
4227
4228void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
4229 LocationSummary* locations = instruction->GetLocations();
4230 uint32_t offset = mirror::Array::LengthOffset().Uint32Value();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004231 Register obj = locations->InAt(0).AsRegister<Register>();
4232 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004233 __ LoadFromOffset(kLoadWord, out, obj, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00004234 codegen_->MaybeRecordImplicitNullCheck(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004235}
4236
4237void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00004238 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
4239 ? LocationSummary::kCallOnSlowPath
4240 : LocationSummary::kNoCall;
4241 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004242 locations->SetInAt(0, Location::RequiresRegister());
4243 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray26a25ef2014-09-30 13:54:09 +01004244 if (instruction->HasUses()) {
4245 locations->SetOut(Location::SameAsFirstInput());
4246 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004247}
4248
4249void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
4250 LocationSummary* locations = instruction->GetLocations();
Andreas Gampe85b62f22015-09-09 13:15:38 -07004251 SlowPathCode* slow_path =
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01004252 new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004253 codegen_->AddSlowPath(slow_path);
4254
Roland Levillain271ab9c2014-11-27 15:23:57 +00004255 Register index = locations->InAt(0).AsRegister<Register>();
4256 Register length = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004257
4258 __ cmp(index, ShifterOperand(length));
Roland Levillain4fa13f62015-07-06 18:11:54 +01004259 __ b(slow_path->GetEntryLabel(), HS);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004260}
4261
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004262void CodeGeneratorARM::MarkGCCard(Register temp,
4263 Register card,
4264 Register object,
4265 Register value,
4266 bool can_be_null) {
Vladimir Markocf93a5c2015-06-16 11:33:24 +00004267 Label is_null;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004268 if (can_be_null) {
4269 __ CompareAndBranchIfZero(value, &is_null);
4270 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004271 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmWordSize>().Int32Value());
4272 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
4273 __ strb(card, Address(card, temp));
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004274 if (can_be_null) {
4275 __ Bind(&is_null);
4276 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004277}
4278
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004279void LocationsBuilderARM::VisitTemporary(HTemporary* temp) {
4280 temp->SetLocations(nullptr);
4281}
4282
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004283void InstructionCodeGeneratorARM::VisitTemporary(HTemporary* temp ATTRIBUTE_UNUSED) {
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004284 // Nothing to do, this is driven by the code generator.
4285}
4286
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004287void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004288 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01004289}
4290
4291void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004292 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
4293}
4294
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004295void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
4296 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
4297}
4298
4299void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004300 HBasicBlock* block = instruction->GetBlock();
4301 if (block->GetLoopInformation() != nullptr) {
4302 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
4303 // The back edge will generate the suspend check.
4304 return;
4305 }
4306 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
4307 // The goto will generate the suspend check.
4308 return;
4309 }
4310 GenerateSuspendCheck(instruction, nullptr);
4311}
4312
4313void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
4314 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004315 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01004316 down_cast<SuspendCheckSlowPathARM*>(instruction->GetSlowPath());
4317 if (slow_path == nullptr) {
4318 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
4319 instruction->SetSlowPath(slow_path);
4320 codegen_->AddSlowPath(slow_path);
4321 if (successor != nullptr) {
4322 DCHECK(successor->IsLoopHeader());
4323 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
4324 }
4325 } else {
4326 DCHECK_EQ(slow_path->GetSuccessor(), successor);
4327 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004328
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00004329 __ LoadFromOffset(
4330 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmWordSize>().Int32Value());
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004331 if (successor == nullptr) {
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01004332 __ CompareAndBranchIfNonZero(IP, slow_path->GetEntryLabel());
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004333 __ Bind(slow_path->GetReturnLabel());
4334 } else {
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01004335 __ CompareAndBranchIfZero(IP, codegen_->GetLabelOf(successor));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01004336 __ b(slow_path->GetEntryLabel());
4337 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00004338}
4339
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004340ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
4341 return codegen_->GetAssembler();
4342}
4343
4344void ParallelMoveResolverARM::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01004345 MoveOperands* move = moves_[index];
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004346 Location source = move->GetSource();
4347 Location destination = move->GetDestination();
4348
4349 if (source.IsRegister()) {
4350 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004351 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004352 } else {
4353 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00004354 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004355 SP, destination.GetStackIndex());
4356 }
4357 } else if (source.IsStackSlot()) {
4358 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004359 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004360 SP, source.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004361 } else if (destination.IsFpuRegister()) {
4362 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004363 } else {
4364 DCHECK(destination.IsStackSlot());
4365 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
4366 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
4367 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004368 } else if (source.IsFpuRegister()) {
4369 if (destination.IsFpuRegister()) {
4370 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01004371 } else {
4372 DCHECK(destination.IsStackSlot());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004373 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
4374 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004375 } else if (source.IsDoubleStackSlot()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004376 if (destination.IsDoubleStackSlot()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004377 __ LoadDFromOffset(DTMP, SP, source.GetStackIndex());
4378 __ StoreDToOffset(DTMP, SP, destination.GetStackIndex());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004379 } else if (destination.IsRegisterPair()) {
4380 DCHECK(ExpectedPairLayout(destination));
4381 __ LoadFromOffset(
4382 kLoadWordPair, destination.AsRegisterPairLow<Register>(), SP, source.GetStackIndex());
4383 } else {
4384 DCHECK(destination.IsFpuRegisterPair()) << destination;
4385 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
4386 SP,
4387 source.GetStackIndex());
4388 }
4389 } else if (source.IsRegisterPair()) {
4390 if (destination.IsRegisterPair()) {
4391 __ Mov(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
4392 __ Mov(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
4393 } else {
4394 DCHECK(destination.IsDoubleStackSlot()) << destination;
4395 DCHECK(ExpectedPairLayout(source));
4396 __ StoreToOffset(
4397 kStoreWordPair, source.AsRegisterPairLow<Register>(), SP, destination.GetStackIndex());
4398 }
4399 } else if (source.IsFpuRegisterPair()) {
4400 if (destination.IsFpuRegisterPair()) {
4401 __ vmovd(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
4402 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
4403 } else {
4404 DCHECK(destination.IsDoubleStackSlot()) << destination;
4405 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
4406 SP,
4407 destination.GetStackIndex());
4408 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004409 } else {
4410 DCHECK(source.IsConstant()) << source;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00004411 HConstant* constant = source.GetConstant();
4412 if (constant->IsIntConstant() || constant->IsNullConstant()) {
4413 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004414 if (destination.IsRegister()) {
4415 __ LoadImmediate(destination.AsRegister<Register>(), value);
4416 } else {
4417 DCHECK(destination.IsStackSlot());
4418 __ LoadImmediate(IP, value);
4419 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
4420 }
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00004421 } else if (constant->IsLongConstant()) {
4422 int64_t value = constant->AsLongConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004423 if (destination.IsRegisterPair()) {
4424 __ LoadImmediate(destination.AsRegisterPairLow<Register>(), Low32Bits(value));
4425 __ LoadImmediate(destination.AsRegisterPairHigh<Register>(), High32Bits(value));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00004426 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004427 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00004428 __ LoadImmediate(IP, Low32Bits(value));
4429 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
4430 __ LoadImmediate(IP, High32Bits(value));
4431 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
4432 }
4433 } else if (constant->IsDoubleConstant()) {
4434 double value = constant->AsDoubleConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004435 if (destination.IsFpuRegisterPair()) {
4436 __ LoadDImmediate(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00004437 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004438 DCHECK(destination.IsDoubleStackSlot()) << destination;
4439 uint64_t int_value = bit_cast<uint64_t, double>(value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00004440 __ LoadImmediate(IP, Low32Bits(int_value));
4441 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
4442 __ LoadImmediate(IP, High32Bits(int_value));
4443 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
4444 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004445 } else {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00004446 DCHECK(constant->IsFloatConstant()) << constant->DebugName();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004447 float value = constant->AsFloatConstant()->GetValue();
4448 if (destination.IsFpuRegister()) {
4449 __ LoadSImmediate(destination.AsFpuRegister<SRegister>(), value);
4450 } else {
4451 DCHECK(destination.IsStackSlot());
4452 __ LoadImmediate(IP, bit_cast<int32_t, float>(value));
4453 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
4454 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01004455 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004456 }
4457}
4458
4459void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
4460 __ Mov(IP, reg);
4461 __ LoadFromOffset(kLoadWord, reg, SP, mem);
4462 __ StoreToOffset(kStoreWord, IP, SP, mem);
4463}
4464
4465void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
4466 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
4467 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
4468 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
4469 SP, mem1 + stack_offset);
4470 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
4471 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
4472 SP, mem2 + stack_offset);
4473 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
4474}
4475
4476void ParallelMoveResolverARM::EmitSwap(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01004477 MoveOperands* move = moves_[index];
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004478 Location source = move->GetSource();
4479 Location destination = move->GetDestination();
4480
4481 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004482 DCHECK_NE(source.AsRegister<Register>(), IP);
4483 DCHECK_NE(destination.AsRegister<Register>(), IP);
4484 __ Mov(IP, source.AsRegister<Register>());
4485 __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>());
4486 __ Mov(destination.AsRegister<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004487 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004488 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004489 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004490 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004491 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
4492 Exchange(source.GetStackIndex(), destination.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004493 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00004494 __ vmovrs(IP, source.AsFpuRegister<SRegister>());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004495 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>());
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00004496 __ vmovsr(destination.AsFpuRegister<SRegister>(), IP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004497 } else if (source.IsRegisterPair() && destination.IsRegisterPair()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004498 __ vmovdrr(DTMP, source.AsRegisterPairLow<Register>(), source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004499 __ Mov(source.AsRegisterPairLow<Register>(), destination.AsRegisterPairLow<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004500 __ Mov(source.AsRegisterPairHigh<Register>(), destination.AsRegisterPairHigh<Register>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004501 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
4502 destination.AsRegisterPairHigh<Register>(),
4503 DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004504 } else if (source.IsRegisterPair() || destination.IsRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004505 Register low_reg = source.IsRegisterPair()
4506 ? source.AsRegisterPairLow<Register>()
4507 : destination.AsRegisterPairLow<Register>();
4508 int mem = source.IsRegisterPair()
4509 ? destination.GetStackIndex()
4510 : source.GetStackIndex();
4511 DCHECK(ExpectedPairLayout(source.IsRegisterPair() ? source : destination));
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004512 __ vmovdrr(DTMP, low_reg, static_cast<Register>(low_reg + 1));
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004513 __ LoadFromOffset(kLoadWordPair, low_reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004514 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004515 } else if (source.IsFpuRegisterPair() && destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004516 DRegister first = FromLowSToD(source.AsFpuRegisterPairLow<SRegister>());
4517 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004518 __ vmovd(DTMP, first);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004519 __ vmovd(first, second);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004520 __ vmovd(second, DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004521 } else if (source.IsFpuRegisterPair() || destination.IsFpuRegisterPair()) {
4522 DRegister reg = source.IsFpuRegisterPair()
4523 ? FromLowSToD(source.AsFpuRegisterPairLow<SRegister>())
4524 : FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
4525 int mem = source.IsFpuRegisterPair()
4526 ? destination.GetStackIndex()
4527 : source.GetStackIndex();
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004528 __ vmovd(DTMP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004529 __ LoadDFromOffset(reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00004530 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00004531 } else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
4532 SRegister reg = source.IsFpuRegister() ? source.AsFpuRegister<SRegister>()
4533 : destination.AsFpuRegister<SRegister>();
4534 int mem = source.IsFpuRegister()
4535 ? destination.GetStackIndex()
4536 : source.GetStackIndex();
4537
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00004538 __ vmovrs(IP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00004539 __ LoadSFromOffset(reg, SP, mem);
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00004540 __ StoreToOffset(kStoreWord, IP, SP, mem);
Nicolas Geoffray53f12622015-01-13 18:04:41 +00004541 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00004542 Exchange(source.GetStackIndex(), destination.GetStackIndex());
4543 Exchange(source.GetHighStackIndex(kArmWordSize), destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004544 } else {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00004545 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004546 }
4547}
4548
4549void ParallelMoveResolverARM::SpillScratch(int reg) {
4550 __ Push(static_cast<Register>(reg));
4551}
4552
4553void ParallelMoveResolverARM::RestoreScratch(int reg) {
4554 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01004555}
4556
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004557void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01004558 InvokeRuntimeCallingConvention calling_convention;
4559 CodeGenerator::CreateLoadClassLocationSummary(
4560 cls,
4561 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
4562 Location::RegisterLocation(R0));
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004563}
4564
4565void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004566 LocationSummary* locations = cls->GetLocations();
Calin Juravle98893e12015-10-02 21:05:03 +01004567 if (cls->NeedsAccessCheck()) {
4568 codegen_->MoveConstant(locations->GetTemp(0), cls->GetTypeIndex());
4569 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInitializeTypeAndVerifyAccess),
4570 cls,
4571 cls->GetDexPc(),
4572 nullptr);
Calin Juravle580b6092015-10-06 17:35:58 +01004573 return;
4574 }
4575
4576 Register out = locations->Out().AsRegister<Register>();
4577 Register current_method = locations->InAt(0).AsRegister<Register>();
4578 if (cls->IsReferrersClass()) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004579 DCHECK(!cls->CanCallRuntime());
4580 DCHECK(!cls->MustGenerateClinitCheck());
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004581 __ LoadFromOffset(
Mathieu Chartiere401d142015-04-22 13:56:20 -07004582 kLoadWord, out, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004583 } else {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004584 DCHECK(cls->CanCallRuntime());
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004585 __ LoadFromOffset(kLoadWord,
4586 out,
4587 current_method,
Vladimir Marko05792b92015-08-03 11:56:49 +01004588 ArtMethod::DexCacheResolvedTypesOffset(kArmPointerSize).Int32Value());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004589 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Vladimir Marko05792b92015-08-03 11:56:49 +01004590 // TODO: We will need a read barrier here.
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004591
Andreas Gampe85b62f22015-09-09 13:15:38 -07004592 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004593 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
4594 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01004595 __ CompareAndBranchIfZero(out, slow_path->GetEntryLabel());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004596 if (cls->MustGenerateClinitCheck()) {
4597 GenerateClassInitializationCheck(slow_path, out);
4598 } else {
4599 __ Bind(slow_path->GetExitLabel());
4600 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004601 }
4602}
4603
4604void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
4605 LocationSummary* locations =
4606 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
4607 locations->SetInAt(0, Location::RequiresRegister());
4608 if (check->HasUses()) {
4609 locations->SetOut(Location::SameAsFirstInput());
4610 }
4611}
4612
4613void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004614 // We assume the class is not null.
Andreas Gampe85b62f22015-09-09 13:15:38 -07004615 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004616 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004617 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00004618 GenerateClassInitializationCheck(slow_path,
4619 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004620}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004621
Nicolas Geoffray424f6762014-11-03 14:51:25 +00004622void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
Andreas Gampe85b62f22015-09-09 13:15:38 -07004623 SlowPathCode* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01004624 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
4625 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
4626 __ b(slow_path->GetEntryLabel(), LT);
4627 // Even if the initialized flag is set, we may be in a situation where caches are not synced
4628 // properly. Therefore, we do a memory fence.
4629 __ dmb(ISH);
4630 __ Bind(slow_path->GetExitLabel());
4631}
4632
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004633void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
4634 LocationSummary* locations =
4635 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01004636 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004637 locations->SetOut(Location::RequiresRegister());
4638}
4639
4640void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
Andreas Gampe85b62f22015-09-09 13:15:38 -07004641 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004642 codegen_->AddSlowPath(slow_path);
4643
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01004644 LocationSummary* locations = load->GetLocations();
4645 Register out = locations->Out().AsRegister<Register>();
4646 Register current_method = locations->InAt(0).AsRegister<Register>();
4647 __ LoadFromOffset(
Mathieu Chartiere401d142015-04-22 13:56:20 -07004648 kLoadWord, out, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
Mathieu Chartiereace4582014-11-24 18:29:54 -08004649 __ LoadFromOffset(kLoadWord, out, out, mirror::Class::DexCacheStringsOffset().Int32Value());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004650 __ LoadFromOffset(kLoadWord, out, out, CodeGenerator::GetCacheOffset(load->GetStringIndex()));
Vladimir Marko05792b92015-08-03 11:56:49 +01004651 // TODO: We will need a read barrier here.
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01004652 __ CompareAndBranchIfZero(out, slow_path->GetEntryLabel());
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00004653 __ Bind(slow_path->GetExitLabel());
4654}
4655
David Brazdilcb1c0552015-08-04 16:22:25 +01004656static int32_t GetExceptionTlsOffset() {
4657 return Thread::ExceptionOffset<kArmWordSize>().Int32Value();
4658}
4659
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004660void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
4661 LocationSummary* locations =
4662 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
4663 locations->SetOut(Location::RequiresRegister());
4664}
4665
4666void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00004667 Register out = load->GetLocations()->Out().AsRegister<Register>();
David Brazdilcb1c0552015-08-04 16:22:25 +01004668 __ LoadFromOffset(kLoadWord, out, TR, GetExceptionTlsOffset());
4669}
4670
4671void LocationsBuilderARM::VisitClearException(HClearException* clear) {
4672 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
4673}
4674
4675void InstructionCodeGeneratorARM::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004676 __ LoadImmediate(IP, 0);
David Brazdilcb1c0552015-08-04 16:22:25 +01004677 __ StoreToOffset(kStoreWord, IP, TR, GetExceptionTlsOffset());
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004678}
4679
4680void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
4681 LocationSummary* locations =
4682 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4683 InvokeRuntimeCallingConvention calling_convention;
4684 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4685}
4686
4687void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
4688 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00004689 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00004690}
4691
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004692void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004693 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
4694 switch (instruction->GetTypeCheckKind()) {
4695 case TypeCheckKind::kExactCheck:
4696 case TypeCheckKind::kAbstractClassCheck:
4697 case TypeCheckKind::kClassHierarchyCheck:
4698 case TypeCheckKind::kArrayObjectCheck:
4699 call_kind = LocationSummary::kNoCall;
4700 break;
Calin Juravle98893e12015-10-02 21:05:03 +01004701 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004702 case TypeCheckKind::kInterfaceCheck:
4703 call_kind = LocationSummary::kCall;
4704 break;
4705 case TypeCheckKind::kArrayCheck:
4706 call_kind = LocationSummary::kCallOnSlowPath;
4707 break;
4708 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004709 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004710 if (call_kind != LocationSummary::kCall) {
4711 locations->SetInAt(0, Location::RequiresRegister());
4712 locations->SetInAt(1, Location::RequiresRegister());
4713 // The out register is used as a temporary, so it overlaps with the inputs.
4714 // Note that TypeCheckSlowPathARM uses this register too.
4715 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
4716 } else {
4717 InvokeRuntimeCallingConvention calling_convention;
4718 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4719 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
4720 locations->SetOut(Location::RegisterLocation(R0));
4721 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004722}
4723
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004724void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004725 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004726 Register obj = locations->InAt(0).AsRegister<Register>();
4727 Register cls = locations->InAt(1).AsRegister<Register>();
4728 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004729 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004730 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
4731 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
4732 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Vladimir Markocf93a5c2015-06-16 11:33:24 +00004733 Label done, zero;
Andreas Gampe85b62f22015-09-09 13:15:38 -07004734 SlowPathCode* slow_path = nullptr;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004735
4736 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004737 // avoid null check if we know obj is not null.
4738 if (instruction->MustDoNullCheck()) {
Nicolas Geoffrayd56376c2015-05-21 12:32:34 +00004739 __ CompareAndBranchIfZero(obj, &zero);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004740 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004741
Calin Juravle98893e12015-10-02 21:05:03 +01004742 // In case of an interface/unresolved check, we put the object class into the object register.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004743 // This is safe, as the register is caller-save, and the object must be in another
4744 // register if it survives the runtime call.
Calin Juravle98893e12015-10-02 21:05:03 +01004745 Register target = (instruction->GetTypeCheckKind() == TypeCheckKind::kInterfaceCheck) ||
4746 (instruction->GetTypeCheckKind() == TypeCheckKind::kUnresolvedCheck)
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004747 ? obj
4748 : out;
4749 __ LoadFromOffset(kLoadWord, target, obj, class_offset);
4750 __ MaybeUnpoisonHeapReference(target);
4751
4752 switch (instruction->GetTypeCheckKind()) {
4753 case TypeCheckKind::kExactCheck: {
4754 __ cmp(out, ShifterOperand(cls));
4755 // Classes must be equal for the instanceof to succeed.
4756 __ b(&zero, NE);
4757 __ LoadImmediate(out, 1);
4758 __ b(&done);
4759 break;
4760 }
4761 case TypeCheckKind::kAbstractClassCheck: {
4762 // If the class is abstract, we eagerly fetch the super class of the
4763 // object to avoid doing a comparison we know will fail.
4764 Label loop;
4765 __ Bind(&loop);
4766 __ LoadFromOffset(kLoadWord, out, out, super_offset);
4767 __ MaybeUnpoisonHeapReference(out);
4768 // If `out` is null, we use it for the result, and jump to `done`.
4769 __ CompareAndBranchIfZero(out, &done);
4770 __ cmp(out, ShifterOperand(cls));
4771 __ b(&loop, NE);
4772 __ LoadImmediate(out, 1);
4773 if (zero.IsLinked()) {
4774 __ b(&done);
4775 }
4776 break;
4777 }
4778 case TypeCheckKind::kClassHierarchyCheck: {
4779 // Walk over the class hierarchy to find a match.
4780 Label loop, success;
4781 __ Bind(&loop);
4782 __ cmp(out, ShifterOperand(cls));
4783 __ b(&success, EQ);
4784 __ LoadFromOffset(kLoadWord, out, out, super_offset);
4785 __ MaybeUnpoisonHeapReference(out);
4786 __ CompareAndBranchIfNonZero(out, &loop);
4787 // If `out` is null, we use it for the result, and jump to `done`.
4788 __ b(&done);
4789 __ Bind(&success);
4790 __ LoadImmediate(out, 1);
4791 if (zero.IsLinked()) {
4792 __ b(&done);
4793 }
4794 break;
4795 }
4796 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01004797 // Do an exact check.
4798 Label exact_check;
4799 __ cmp(out, ShifterOperand(cls));
4800 __ b(&exact_check, EQ);
4801 // Otherwise, we need to check that the object's class is a non primitive array.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004802 __ LoadFromOffset(kLoadWord, out, out, component_offset);
4803 __ MaybeUnpoisonHeapReference(out);
4804 // If `out` is null, we use it for the result, and jump to `done`.
4805 __ CompareAndBranchIfZero(out, &done);
4806 __ LoadFromOffset(kLoadUnsignedHalfword, out, out, primitive_offset);
4807 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
4808 __ CompareAndBranchIfNonZero(out, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01004809 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004810 __ LoadImmediate(out, 1);
4811 __ b(&done);
4812 break;
4813 }
4814 case TypeCheckKind::kArrayCheck: {
4815 __ cmp(out, ShifterOperand(cls));
4816 DCHECK(locations->OnlyCallsOnSlowPath());
4817 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
4818 instruction, /* is_fatal */ false);
4819 codegen_->AddSlowPath(slow_path);
4820 __ b(slow_path->GetEntryLabel(), NE);
4821 __ LoadImmediate(out, 1);
4822 if (zero.IsLinked()) {
4823 __ b(&done);
4824 }
4825 break;
4826 }
Calin Juravle98893e12015-10-02 21:05:03 +01004827 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004828 case TypeCheckKind::kInterfaceCheck:
4829 default: {
4830 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial),
4831 instruction,
4832 instruction->GetDexPc(),
4833 nullptr);
4834 if (zero.IsLinked()) {
4835 __ b(&done);
4836 }
4837 break;
4838 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004839 }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004840
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004841 if (zero.IsLinked()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01004842 __ Bind(&zero);
4843 __ LoadImmediate(out, 0);
4844 }
4845
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004846 if (done.IsLinked()) {
4847 __ Bind(&done);
4848 }
4849
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004850 if (slow_path != nullptr) {
4851 __ Bind(slow_path->GetExitLabel());
4852 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00004853}
4854
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004855void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004856 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
4857 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
4858
4859 switch (instruction->GetTypeCheckKind()) {
4860 case TypeCheckKind::kExactCheck:
4861 case TypeCheckKind::kAbstractClassCheck:
4862 case TypeCheckKind::kClassHierarchyCheck:
4863 case TypeCheckKind::kArrayObjectCheck:
4864 call_kind = throws_into_catch
4865 ? LocationSummary::kCallOnSlowPath
4866 : LocationSummary::kNoCall;
4867 break;
Calin Juravle98893e12015-10-02 21:05:03 +01004868 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004869 case TypeCheckKind::kInterfaceCheck:
4870 call_kind = LocationSummary::kCall;
4871 break;
4872 case TypeCheckKind::kArrayCheck:
4873 call_kind = LocationSummary::kCallOnSlowPath;
4874 break;
4875 }
4876
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004877 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004878 instruction, call_kind);
4879 if (call_kind != LocationSummary::kCall) {
4880 locations->SetInAt(0, Location::RequiresRegister());
4881 locations->SetInAt(1, Location::RequiresRegister());
4882 // Note that TypeCheckSlowPathARM uses this register too.
4883 locations->AddTemp(Location::RequiresRegister());
4884 } else {
4885 InvokeRuntimeCallingConvention calling_convention;
4886 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4887 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
4888 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004889}
4890
4891void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
4892 LocationSummary* locations = instruction->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004893 Register obj = locations->InAt(0).AsRegister<Register>();
4894 Register cls = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004895 Register temp = locations->WillCall()
4896 ? Register(kNoRegister)
4897 : locations->GetTemp(0).AsRegister<Register>();
4898
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004899 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004900 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
4901 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
4902 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
4903 SlowPathCode* slow_path = nullptr;
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004904
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004905 if (!locations->WillCall()) {
4906 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(
4907 instruction, !locations->CanCall());
4908 codegen_->AddSlowPath(slow_path);
Nicolas Geoffray64acf302015-09-14 22:20:29 +01004909 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004910
4911 Label done;
4912 // Avoid null check if we know obj is not null.
4913 if (instruction->MustDoNullCheck()) {
4914 __ CompareAndBranchIfZero(obj, &done);
4915 }
4916
4917 if (locations->WillCall()) {
4918 __ LoadFromOffset(kLoadWord, obj, obj, class_offset);
4919 __ MaybeUnpoisonHeapReference(obj);
4920 } else {
4921 __ LoadFromOffset(kLoadWord, temp, obj, class_offset);
4922 __ MaybeUnpoisonHeapReference(temp);
4923 }
4924
4925 switch (instruction->GetTypeCheckKind()) {
4926 case TypeCheckKind::kExactCheck:
4927 case TypeCheckKind::kArrayCheck: {
4928 __ cmp(temp, ShifterOperand(cls));
4929 // Jump to slow path for throwing the exception or doing a
4930 // more involved array check.
4931 __ b(slow_path->GetEntryLabel(), NE);
4932 break;
4933 }
4934 case TypeCheckKind::kAbstractClassCheck: {
4935 // If the class is abstract, we eagerly fetch the super class of the
4936 // object to avoid doing a comparison we know will fail.
4937 Label loop;
4938 __ Bind(&loop);
4939 __ LoadFromOffset(kLoadWord, temp, temp, super_offset);
4940 __ MaybeUnpoisonHeapReference(temp);
4941 // Jump to the slow path to throw the exception.
4942 __ CompareAndBranchIfZero(temp, slow_path->GetEntryLabel());
4943 __ cmp(temp, ShifterOperand(cls));
4944 __ b(&loop, NE);
4945 break;
4946 }
4947 case TypeCheckKind::kClassHierarchyCheck: {
4948 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01004949 Label loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004950 __ Bind(&loop);
4951 __ cmp(temp, ShifterOperand(cls));
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01004952 __ b(&done, EQ);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004953 __ LoadFromOffset(kLoadWord, temp, temp, super_offset);
4954 __ MaybeUnpoisonHeapReference(temp);
4955 __ CompareAndBranchIfNonZero(temp, &loop);
4956 // Jump to the slow path to throw the exception.
4957 __ b(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004958 break;
4959 }
4960 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01004961 // Do an exact check.
4962 __ cmp(temp, ShifterOperand(cls));
4963 __ b(&done, EQ);
4964 // Otherwise, we need to check that the object's class is a non primitive array.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004965 __ LoadFromOffset(kLoadWord, temp, temp, component_offset);
4966 __ MaybeUnpoisonHeapReference(temp);
4967 __ CompareAndBranchIfZero(temp, slow_path->GetEntryLabel());
4968 __ LoadFromOffset(kLoadUnsignedHalfword, temp, temp, primitive_offset);
4969 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
4970 __ CompareAndBranchIfNonZero(temp, slow_path->GetEntryLabel());
4971 break;
4972 }
Calin Juravle98893e12015-10-02 21:05:03 +01004973 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00004974 case TypeCheckKind::kInterfaceCheck:
4975 default:
4976 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast),
4977 instruction,
4978 instruction->GetDexPc(),
4979 nullptr);
4980 break;
4981 }
4982 __ Bind(&done);
4983
4984 if (slow_path != nullptr) {
4985 __ Bind(slow_path->GetExitLabel());
4986 }
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00004987}
4988
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00004989void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
4990 LocationSummary* locations =
4991 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4992 InvokeRuntimeCallingConvention calling_convention;
4993 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
4994}
4995
4996void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
4997 codegen_->InvokeRuntime(instruction->IsEnter()
4998 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
4999 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00005000 instruction->GetDexPc(),
5001 nullptr);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00005002}
5003
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005004void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction, AND); }
5005void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction, ORR); }
5006void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction, EOR); }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005007
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005008void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction, Opcode opcode) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005009 LocationSummary* locations =
5010 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
5011 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
5012 || instruction->GetResultType() == Primitive::kPrimLong);
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005013 // Note: GVN reorders commutative operations to have the constant on the right hand side.
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005014 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005015 locations->SetInAt(1, ArmEncodableConstantOrRegister(instruction->InputAt(1), opcode));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00005016 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005017}
5018
5019void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
5020 HandleBitwiseOperation(instruction);
5021}
5022
5023void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
5024 HandleBitwiseOperation(instruction);
5025}
5026
5027void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
5028 HandleBitwiseOperation(instruction);
5029}
5030
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005031void InstructionCodeGeneratorARM::GenerateAndConst(Register out, Register first, uint32_t value) {
5032 // Optimize special cases for individual halfs of `and-long` (`and` is simplified earlier).
5033 if (value == 0xffffffffu) {
5034 if (out != first) {
5035 __ mov(out, ShifterOperand(first));
5036 }
5037 return;
5038 }
5039 if (value == 0u) {
5040 __ mov(out, ShifterOperand(0));
5041 return;
5042 }
5043 ShifterOperand so;
5044 if (__ ShifterOperandCanHold(kNoRegister, kNoRegister, AND, value, &so)) {
5045 __ and_(out, first, so);
5046 } else {
5047 DCHECK(__ ShifterOperandCanHold(kNoRegister, kNoRegister, BIC, ~value, &so));
5048 __ bic(out, first, ShifterOperand(~value));
5049 }
5050}
5051
5052void InstructionCodeGeneratorARM::GenerateOrrConst(Register out, Register first, uint32_t value) {
5053 // Optimize special cases for individual halfs of `or-long` (`or` is simplified earlier).
5054 if (value == 0u) {
5055 if (out != first) {
5056 __ mov(out, ShifterOperand(first));
5057 }
5058 return;
5059 }
5060 if (value == 0xffffffffu) {
5061 __ mvn(out, ShifterOperand(0));
5062 return;
5063 }
5064 ShifterOperand so;
5065 if (__ ShifterOperandCanHold(kNoRegister, kNoRegister, ORR, value, &so)) {
5066 __ orr(out, first, so);
5067 } else {
5068 DCHECK(__ ShifterOperandCanHold(kNoRegister, kNoRegister, ORN, ~value, &so));
5069 __ orn(out, first, ShifterOperand(~value));
5070 }
5071}
5072
5073void InstructionCodeGeneratorARM::GenerateEorConst(Register out, Register first, uint32_t value) {
5074 // Optimize special case for individual halfs of `xor-long` (`xor` is simplified earlier).
5075 if (value == 0u) {
5076 if (out != first) {
5077 __ mov(out, ShifterOperand(first));
5078 }
5079 return;
5080 }
5081 __ eor(out, first, ShifterOperand(value));
5082}
5083
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005084void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
5085 LocationSummary* locations = instruction->GetLocations();
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005086 Location first = locations->InAt(0);
5087 Location second = locations->InAt(1);
5088 Location out = locations->Out();
5089
5090 if (second.IsConstant()) {
5091 uint64_t value = static_cast<uint64_t>(Int64FromConstant(second.GetConstant()));
5092 uint32_t value_low = Low32Bits(value);
5093 if (instruction->GetResultType() == Primitive::kPrimInt) {
5094 Register first_reg = first.AsRegister<Register>();
5095 Register out_reg = out.AsRegister<Register>();
5096 if (instruction->IsAnd()) {
5097 GenerateAndConst(out_reg, first_reg, value_low);
5098 } else if (instruction->IsOr()) {
5099 GenerateOrrConst(out_reg, first_reg, value_low);
5100 } else {
5101 DCHECK(instruction->IsXor());
5102 GenerateEorConst(out_reg, first_reg, value_low);
5103 }
5104 } else {
5105 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
5106 uint32_t value_high = High32Bits(value);
5107 Register first_low = first.AsRegisterPairLow<Register>();
5108 Register first_high = first.AsRegisterPairHigh<Register>();
5109 Register out_low = out.AsRegisterPairLow<Register>();
5110 Register out_high = out.AsRegisterPairHigh<Register>();
5111 if (instruction->IsAnd()) {
5112 GenerateAndConst(out_low, first_low, value_low);
5113 GenerateAndConst(out_high, first_high, value_high);
5114 } else if (instruction->IsOr()) {
5115 GenerateOrrConst(out_low, first_low, value_low);
5116 GenerateOrrConst(out_high, first_high, value_high);
5117 } else {
5118 DCHECK(instruction->IsXor());
5119 GenerateEorConst(out_low, first_low, value_low);
5120 GenerateEorConst(out_high, first_high, value_high);
5121 }
5122 }
5123 return;
5124 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005125
5126 if (instruction->GetResultType() == Primitive::kPrimInt) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005127 Register first_reg = first.AsRegister<Register>();
5128 ShifterOperand second_reg(second.AsRegister<Register>());
5129 Register out_reg = out.AsRegister<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005130 if (instruction->IsAnd()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005131 __ and_(out_reg, first_reg, second_reg);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005132 } else if (instruction->IsOr()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005133 __ orr(out_reg, first_reg, second_reg);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005134 } else {
5135 DCHECK(instruction->IsXor());
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005136 __ eor(out_reg, first_reg, second_reg);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005137 }
5138 } else {
5139 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005140 Register first_low = first.AsRegisterPairLow<Register>();
5141 Register first_high = first.AsRegisterPairHigh<Register>();
5142 ShifterOperand second_low(second.AsRegisterPairLow<Register>());
5143 ShifterOperand second_high(second.AsRegisterPairHigh<Register>());
5144 Register out_low = out.AsRegisterPairLow<Register>();
5145 Register out_high = out.AsRegisterPairHigh<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005146 if (instruction->IsAnd()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005147 __ and_(out_low, first_low, second_low);
5148 __ and_(out_high, first_high, second_high);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005149 } else if (instruction->IsOr()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005150 __ orr(out_low, first_low, second_low);
5151 __ orr(out_high, first_high, second_high);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005152 } else {
5153 DCHECK(instruction->IsXor());
Vladimir Markod2b4ca22015-09-14 15:13:26 +01005154 __ eor(out_low, first_low, second_low);
5155 __ eor(out_high, first_high, second_high);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00005156 }
5157 }
5158}
5159
Vladimir Markodc151b22015-10-15 18:02:30 +01005160HInvokeStaticOrDirect::DispatchInfo CodeGeneratorARM::GetSupportedInvokeStaticOrDirectDispatch(
5161 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
5162 MethodReference target_method) {
5163 if (desired_dispatch_info.method_load_kind ==
5164 HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative) {
5165 // TODO: Implement this type. For the moment, we fall back to kDexCacheViaMethod.
5166 return HInvokeStaticOrDirect::DispatchInfo {
5167 HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod,
5168 HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod,
5169 0u,
5170 0u
5171 };
5172 }
5173 if (desired_dispatch_info.code_ptr_location ==
5174 HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative) {
5175 const DexFile& outer_dex_file = GetGraph()->GetDexFile();
5176 if (&outer_dex_file != target_method.dex_file) {
5177 // Calls across dex files are more likely to exceed the available BL range,
5178 // so use absolute patch with fixup if available and kCallArtMethod otherwise.
5179 HInvokeStaticOrDirect::CodePtrLocation code_ptr_location =
5180 (desired_dispatch_info.method_load_kind ==
5181 HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup)
5182 ? HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup
5183 : HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod;
5184 return HInvokeStaticOrDirect::DispatchInfo {
5185 desired_dispatch_info.method_load_kind,
5186 code_ptr_location,
5187 desired_dispatch_info.method_load_data,
5188 0u
5189 };
5190 }
5191 }
5192 return desired_dispatch_info;
5193}
5194
Nicolas Geoffray38207af2015-06-01 15:46:22 +01005195void CodeGeneratorARM::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00005196 // For better instruction scheduling we load the direct code pointer before the method pointer.
Vladimir Marko58155012015-08-19 12:49:41 +00005197 switch (invoke->GetCodePtrLocation()) {
Vladimir Marko58155012015-08-19 12:49:41 +00005198 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
5199 // LR = code address from literal pool with link-time patch.
5200 __ LoadLiteral(LR, DeduplicateMethodCodeLiteral(invoke->GetTargetMethod()));
Vladimir Marko58155012015-08-19 12:49:41 +00005201 break;
5202 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
5203 // LR = invoke->GetDirectCodePtr();
5204 __ LoadImmediate(LR, invoke->GetDirectCodePtr());
Vladimir Marko58155012015-08-19 12:49:41 +00005205 break;
5206 default:
5207 break;
5208 }
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08005209
Vladimir Marko58155012015-08-19 12:49:41 +00005210 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
5211 switch (invoke->GetMethodLoadKind()) {
5212 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
5213 // temp = thread->string_init_entrypoint
5214 __ LoadFromOffset(kLoadWord, temp.AsRegister<Register>(), TR, invoke->GetStringInitOffset());
5215 break;
5216 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
5217 callee_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
5218 break;
5219 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
5220 __ LoadImmediate(temp.AsRegister<Register>(), invoke->GetMethodAddress());
5221 break;
5222 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
5223 __ LoadLiteral(temp.AsRegister<Register>(),
5224 DeduplicateMethodAddressLiteral(invoke->GetTargetMethod()));
5225 break;
5226 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative:
Vladimir Markodc151b22015-10-15 18:02:30 +01005227 // TODO: Implement this type.
5228 // Currently filtered out by GetSupportedInvokeStaticOrDirectDispatch().
5229 LOG(FATAL) << "Unsupported";
5230 UNREACHABLE();
Vladimir Marko58155012015-08-19 12:49:41 +00005231 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
5232 Location current_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
5233 Register method_reg;
5234 Register reg = temp.AsRegister<Register>();
5235 if (current_method.IsRegister()) {
5236 method_reg = current_method.AsRegister<Register>();
5237 } else {
5238 DCHECK(invoke->GetLocations()->Intrinsified());
5239 DCHECK(!current_method.IsValid());
5240 method_reg = reg;
5241 __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset);
5242 }
5243 // temp = current_method->dex_cache_resolved_methods_;
5244 __ LoadFromOffset(
Vladimir Marko05792b92015-08-03 11:56:49 +01005245 kLoadWord, reg, method_reg, ArtMethod::DexCacheResolvedMethodsOffset(
5246 kArmPointerSize).Int32Value());
Vladimir Marko58155012015-08-19 12:49:41 +00005247 // temp = temp[index_in_cache]
5248 uint32_t index_in_cache = invoke->GetTargetMethod().dex_method_index;
5249 __ LoadFromOffset(kLoadWord, reg, reg, CodeGenerator::GetCachePointerOffset(index_in_cache));
5250 break;
Nicolas Geoffrayae71a052015-06-09 14:12:28 +01005251 }
Vladimir Marko58155012015-08-19 12:49:41 +00005252 }
5253
5254 switch (invoke->GetCodePtrLocation()) {
5255 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
5256 __ bl(GetFrameEntryLabel());
5257 break;
5258 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative:
Vladimir Markodc151b22015-10-15 18:02:30 +01005259 relative_call_patches_.emplace_back(invoke->GetTargetMethod());
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07005260 __ BindTrackedLabel(&relative_call_patches_.back().label);
Vladimir Markodc151b22015-10-15 18:02:30 +01005261 // Arbitrarily branch to the BL itself, override at link time.
5262 __ bl(&relative_call_patches_.back().label);
5263 break;
Vladimir Marko58155012015-08-19 12:49:41 +00005264 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
5265 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
5266 // LR prepared above for better instruction scheduling.
Vladimir Marko58155012015-08-19 12:49:41 +00005267 // LR()
5268 __ blx(LR);
5269 break;
5270 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
5271 // LR = callee_method->entry_point_from_quick_compiled_code_
5272 __ LoadFromOffset(
5273 kLoadWord, LR, callee_method.AsRegister<Register>(),
5274 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArmWordSize).Int32Value());
5275 // LR()
5276 __ blx(LR);
5277 break;
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08005278 }
5279
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08005280 DCHECK(!IsLeafMethod());
5281}
5282
Andreas Gampebfb5ba92015-09-01 15:45:02 +00005283void CodeGeneratorARM::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_location) {
5284 Register temp = temp_location.AsRegister<Register>();
5285 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
5286 invoke->GetVTableIndex(), kArmPointerSize).Uint32Value();
5287 LocationSummary* locations = invoke->GetLocations();
5288 Location receiver = locations->InAt(0);
5289 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
5290 // temp = object->GetClass();
5291 DCHECK(receiver.IsRegister());
5292 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
5293 MaybeRecordImplicitNullCheck(invoke);
5294 __ MaybeUnpoisonHeapReference(temp);
5295 // temp = temp->GetMethodAt(method_offset);
5296 uint32_t entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(
5297 kArmWordSize).Int32Value();
5298 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
5299 // LR = temp->GetEntryPoint();
5300 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
5301 // LR();
5302 __ blx(LR);
5303}
5304
Vladimir Marko58155012015-08-19 12:49:41 +00005305void CodeGeneratorARM::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
5306 DCHECK(linker_patches->empty());
5307 size_t size = method_patches_.size() + call_patches_.size() + relative_call_patches_.size();
5308 linker_patches->reserve(size);
5309 for (const auto& entry : method_patches_) {
5310 const MethodReference& target_method = entry.first;
5311 Literal* literal = entry.second;
5312 DCHECK(literal->GetLabel()->IsBound());
5313 uint32_t literal_offset = literal->GetLabel()->Position();
5314 linker_patches->push_back(LinkerPatch::MethodPatch(literal_offset,
5315 target_method.dex_file,
5316 target_method.dex_method_index));
5317 }
5318 for (const auto& entry : call_patches_) {
5319 const MethodReference& target_method = entry.first;
5320 Literal* literal = entry.second;
5321 DCHECK(literal->GetLabel()->IsBound());
5322 uint32_t literal_offset = literal->GetLabel()->Position();
5323 linker_patches->push_back(LinkerPatch::CodePatch(literal_offset,
5324 target_method.dex_file,
5325 target_method.dex_method_index));
5326 }
5327 for (const MethodPatchInfo<Label>& info : relative_call_patches_) {
5328 uint32_t literal_offset = info.label.Position();
5329 linker_patches->push_back(LinkerPatch::RelativeCodePatch(literal_offset,
5330 info.target_method.dex_file,
5331 info.target_method.dex_method_index));
5332 }
5333}
5334
5335Literal* CodeGeneratorARM::DeduplicateMethodLiteral(MethodReference target_method,
5336 MethodToLiteralMap* map) {
5337 // Look up the literal for target_method.
5338 auto lb = map->lower_bound(target_method);
5339 if (lb != map->end() && !map->key_comp()(target_method, lb->first)) {
5340 return lb->second;
5341 }
5342 // We don't have a literal for this method yet, insert a new one.
5343 Literal* literal = __ NewLiteral<uint32_t>(0u);
5344 map->PutBefore(lb, target_method, literal);
5345 return literal;
5346}
5347
5348Literal* CodeGeneratorARM::DeduplicateMethodAddressLiteral(MethodReference target_method) {
5349 return DeduplicateMethodLiteral(target_method, &method_patches_);
5350}
5351
5352Literal* CodeGeneratorARM::DeduplicateMethodCodeLiteral(MethodReference target_method) {
5353 return DeduplicateMethodLiteral(target_method, &call_patches_);
5354}
5355
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005356void LocationsBuilderARM::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00005357 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00005358 LOG(FATAL) << "Unreachable";
5359}
5360
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005361void InstructionCodeGeneratorARM::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00005362 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00005363 LOG(FATAL) << "Unreachable";
5364}
5365
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +01005366void LocationsBuilderARM::VisitFakeString(HFakeString* instruction) {
5367 DCHECK(codegen_->IsBaseline());
5368 LocationSummary* locations =
5369 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
5370 locations->SetOut(Location::ConstantLocation(GetGraph()->GetNullConstant()));
5371}
5372
5373void InstructionCodeGeneratorARM::VisitFakeString(HFakeString* instruction ATTRIBUTE_UNUSED) {
5374 DCHECK(codegen_->IsBaseline());
5375 // Will be generated at use site.
5376}
5377
Mark Mendellfe57faa2015-09-18 09:26:15 -04005378// Simple implementation of packed switch - generate cascaded compare/jumps.
5379void LocationsBuilderARM::VisitPackedSwitch(HPackedSwitch* switch_instr) {
5380 LocationSummary* locations =
5381 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
5382 locations->SetInAt(0, Location::RequiresRegister());
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07005383 if (switch_instr->GetNumEntries() >= kPackedSwitchJumpTableThreshold &&
5384 codegen_->GetAssembler()->IsThumb()) {
5385 locations->AddTemp(Location::RequiresRegister()); // We need a temp for the table base.
5386 if (switch_instr->GetStartValue() != 0) {
5387 locations->AddTemp(Location::RequiresRegister()); // We need a temp for the bias.
5388 }
5389 }
Mark Mendellfe57faa2015-09-18 09:26:15 -04005390}
5391
5392void InstructionCodeGeneratorARM::VisitPackedSwitch(HPackedSwitch* switch_instr) {
5393 int32_t lower_bound = switch_instr->GetStartValue();
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07005394 uint32_t num_entries = switch_instr->GetNumEntries();
Mark Mendellfe57faa2015-09-18 09:26:15 -04005395 LocationSummary* locations = switch_instr->GetLocations();
5396 Register value_reg = locations->InAt(0).AsRegister<Register>();
5397 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
5398
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07005399 if (num_entries < kPackedSwitchJumpTableThreshold || !codegen_->GetAssembler()->IsThumb()) {
5400 // Create a series of compare/jumps.
5401 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
5402 for (uint32_t i = 0; i < num_entries; i++) {
5403 GenerateCompareWithImmediate(value_reg, lower_bound + i);
5404 __ b(codegen_->GetLabelOf(successors[i]), EQ);
5405 }
Mark Mendellfe57faa2015-09-18 09:26:15 -04005406
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07005407 // And the default for any other value.
5408 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
5409 __ b(codegen_->GetLabelOf(default_block));
5410 }
5411 } else {
5412 // Create a table lookup.
5413 Register temp_reg = locations->GetTemp(0).AsRegister<Register>();
5414
5415 // Materialize a pointer to the switch table
5416 std::vector<Label*> labels(num_entries);
5417 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
5418 for (uint32_t i = 0; i < num_entries; i++) {
5419 labels[i] = codegen_->GetLabelOf(successors[i]);
5420 }
5421 JumpTable* table = __ CreateJumpTable(std::move(labels), temp_reg);
5422
5423 // Remove the bias.
5424 Register key_reg;
5425 if (lower_bound != 0) {
5426 key_reg = locations->GetTemp(1).AsRegister<Register>();
5427 __ AddConstant(key_reg, value_reg, -lower_bound);
5428 } else {
5429 key_reg = value_reg;
5430 }
5431
5432 // Check whether the value is in the table, jump to default block if not.
5433 __ CmpConstant(key_reg, num_entries - 1);
5434 __ b(codegen_->GetLabelOf(default_block), Condition::HI);
5435
5436 // Load the displacement from the table.
5437 __ ldr(temp_reg, Address(temp_reg, key_reg, Shift::LSL, 2));
5438
5439 // Dispatch is a direct add to the PC (for Thumb2).
5440 __ EmitJumpTableDispatch(table, temp_reg);
Mark Mendellfe57faa2015-09-18 09:26:15 -04005441 }
5442}
5443
Andreas Gampe85b62f22015-09-09 13:15:38 -07005444void CodeGeneratorARM::MoveFromReturnRegister(Location trg, Primitive::Type type) {
5445 if (!trg.IsValid()) {
5446 DCHECK(type == Primitive::kPrimVoid);
5447 return;
5448 }
5449
5450 DCHECK_NE(type, Primitive::kPrimVoid);
5451
5452 Location return_loc = InvokeDexCallingConventionVisitorARM().GetReturnLocation(type);
5453 if (return_loc.Equals(trg)) {
5454 return;
5455 }
5456
5457 // TODO: Consider pairs in the parallel move resolver, then this could be nicely merged
5458 // with the last branch.
5459 if (type == Primitive::kPrimLong) {
5460 HParallelMove parallel_move(GetGraph()->GetArena());
5461 parallel_move.AddMove(return_loc.ToLow(), trg.ToLow(), Primitive::kPrimInt, nullptr);
5462 parallel_move.AddMove(return_loc.ToHigh(), trg.ToHigh(), Primitive::kPrimInt, nullptr);
5463 GetMoveResolver()->EmitNativeCode(&parallel_move);
5464 } else if (type == Primitive::kPrimDouble) {
5465 HParallelMove parallel_move(GetGraph()->GetArena());
5466 parallel_move.AddMove(return_loc.ToLow(), trg.ToLow(), Primitive::kPrimFloat, nullptr);
5467 parallel_move.AddMove(return_loc.ToHigh(), trg.ToHigh(), Primitive::kPrimFloat, nullptr);
5468 GetMoveResolver()->EmitNativeCode(&parallel_move);
5469 } else {
5470 // Let the parallel move resolver take care of all of this.
5471 HParallelMove parallel_move(GetGraph()->GetArena());
5472 parallel_move.AddMove(return_loc, trg, type, nullptr);
5473 GetMoveResolver()->EmitNativeCode(&parallel_move);
5474 }
5475}
5476
Roland Levillain4d027112015-07-01 15:41:14 +01005477#undef __
5478#undef QUICK_ENTRY_POINT
5479
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00005480} // namespace arm
5481} // namespace art