blob: 8a6b94e0ea8b140231ea4322c1332da5ac3b94ed [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
Roland Levillain3b359c72015-11-17 19:35:12 +000037template<class MirrorType>
38class GcRoot;
39
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +000040namespace arm {
41
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +000042static bool ExpectedPairLayout(Location location) {
43 // We expected this for both core and fpu register pairs.
44 return ((location.low() & 1) == 0) && (location.low() + 1 == location.high());
45}
46
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010047static constexpr int kCurrentMethodStackOffset = 0;
Nicolas Geoffray76b1e172015-05-27 17:18:33 +010048static constexpr Register kMethodRegisterArgument = R0;
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +010049
David Brazdil58282f42016-01-14 12:45:10 +000050static constexpr Register kCoreAlwaysSpillRegister = R5;
Nicolas Geoffray4dee6362015-01-23 18:23:14 +000051static constexpr Register kCoreCalleeSaves[] =
Andreas Gampe501fd632015-09-10 16:11:06 -070052 { R5, R6, R7, R8, R10, R11, LR };
Nicolas Geoffray4dee6362015-01-23 18:23:14 +000053static constexpr SRegister kFpuCalleeSaves[] =
54 { S16, S17, S18, S19, S20, S21, S22, S23, S24, S25, S26, S27, S28, S29, S30, S31 };
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +010055
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +000056// D31 cannot be split into two S registers, and the register allocator only works on
57// S registers. Therefore there is no need to block it.
58static constexpr DRegister DTMP = D31;
59
Vladimir Markof3e0ee22015-12-17 15:23:13 +000060static constexpr uint32_t kPackedSwitchCompareJumpThreshold = 7;
Andreas Gampe7cffc3b2015-10-19 21:31:53 -070061
Roland Levillain7cbd27f2016-08-11 23:53:33 +010062// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
63#define __ down_cast<ArmAssembler*>(codegen->GetAssembler())-> // NOLINT
Andreas Gampe542451c2016-07-26 09:02:02 -070064#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArmPointerSize, x).Int32Value()
Nicolas Geoffraye5038322014-07-04 09:41:32 +010065
Artem Serovf4d6aee2016-07-11 10:41:45 +010066static constexpr int kRegListThreshold = 4;
67
Artem Serovd300d8f2016-07-15 14:00:56 +010068// SaveLiveRegisters and RestoreLiveRegisters from SlowPathCodeARM operate on sets of S registers,
69// for each live D registers they treat two corresponding S registers as live ones.
70//
71// Two following functions (SaveContiguousSRegisterList, RestoreContiguousSRegisterList) build
72// from a list of contiguous S registers a list of contiguous D registers (processing first/last
73// S registers corner cases) and save/restore this new list treating them as D registers.
74// - decreasing code size
75// - avoiding hazards on Cortex-A57, when a pair of S registers for an actual live D register is
76// restored and then used in regular non SlowPath code as D register.
77//
78// For the following example (v means the S register is live):
79// D names: | D0 | D1 | D2 | D4 | ...
80// S names: | S0 | S1 | S2 | S3 | S4 | S5 | S6 | S7 | ...
81// Live? | | v | v | v | v | v | v | | ...
82//
83// S1 and S6 will be saved/restored independently; D registers list (D1, D2) will be processed
84// as D registers.
85static size_t SaveContiguousSRegisterList(size_t first,
86 size_t last,
87 CodeGenerator* codegen,
88 size_t stack_offset) {
89 DCHECK_LE(first, last);
90 if ((first == last) && (first == 0)) {
91 stack_offset += codegen->SaveFloatingPointRegister(stack_offset, first);
92 return stack_offset;
93 }
94 if (first % 2 == 1) {
95 stack_offset += codegen->SaveFloatingPointRegister(stack_offset, first++);
96 }
97
98 bool save_last = false;
99 if (last % 2 == 0) {
100 save_last = true;
101 --last;
102 }
103
104 if (first < last) {
105 DRegister d_reg = static_cast<DRegister>(first / 2);
106 DCHECK_EQ((last - first + 1) % 2, 0u);
107 size_t number_of_d_regs = (last - first + 1) / 2;
108
109 if (number_of_d_regs == 1) {
Scott Wakelinga7812ae2016-10-17 10:03:36 +0100110 __ StoreDToOffset(d_reg, SP, stack_offset);
Artem Serovd300d8f2016-07-15 14:00:56 +0100111 } else if (number_of_d_regs > 1) {
112 __ add(IP, SP, ShifterOperand(stack_offset));
113 __ vstmiad(IP, d_reg, number_of_d_regs);
114 }
115 stack_offset += number_of_d_regs * kArmWordSize * 2;
116 }
117
118 if (save_last) {
119 stack_offset += codegen->SaveFloatingPointRegister(stack_offset, last + 1);
120 }
121
122 return stack_offset;
123}
124
125static size_t RestoreContiguousSRegisterList(size_t first,
126 size_t last,
127 CodeGenerator* codegen,
128 size_t stack_offset) {
129 DCHECK_LE(first, last);
130 if ((first == last) && (first == 0)) {
131 stack_offset += codegen->RestoreFloatingPointRegister(stack_offset, first);
132 return stack_offset;
133 }
134 if (first % 2 == 1) {
135 stack_offset += codegen->RestoreFloatingPointRegister(stack_offset, first++);
136 }
137
138 bool restore_last = false;
139 if (last % 2 == 0) {
140 restore_last = true;
141 --last;
142 }
143
144 if (first < last) {
145 DRegister d_reg = static_cast<DRegister>(first / 2);
146 DCHECK_EQ((last - first + 1) % 2, 0u);
147 size_t number_of_d_regs = (last - first + 1) / 2;
148 if (number_of_d_regs == 1) {
149 __ LoadDFromOffset(d_reg, SP, stack_offset);
150 } else if (number_of_d_regs > 1) {
151 __ add(IP, SP, ShifterOperand(stack_offset));
152 __ vldmiad(IP, d_reg, number_of_d_regs);
153 }
154 stack_offset += number_of_d_regs * kArmWordSize * 2;
155 }
156
157 if (restore_last) {
158 stack_offset += codegen->RestoreFloatingPointRegister(stack_offset, last + 1);
159 }
160
161 return stack_offset;
162}
163
Artem Serovf4d6aee2016-07-11 10:41:45 +0100164void SlowPathCodeARM::SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
165 size_t stack_offset = codegen->GetFirstRegisterSlotInSlowPath();
166 size_t orig_offset = stack_offset;
167
168 const uint32_t core_spills = codegen->GetSlowPathSpills(locations, /* core_registers */ true);
169 for (uint32_t i : LowToHighBits(core_spills)) {
170 // If the register holds an object, update the stack mask.
171 if (locations->RegisterContainsObject(i)) {
172 locations->SetStackBit(stack_offset / kVRegSize);
173 }
174 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
175 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
176 saved_core_stack_offsets_[i] = stack_offset;
177 stack_offset += kArmWordSize;
178 }
179
180 int reg_num = POPCOUNT(core_spills);
181 if (reg_num != 0) {
182 if (reg_num > kRegListThreshold) {
183 __ StoreList(RegList(core_spills), orig_offset);
184 } else {
185 stack_offset = orig_offset;
186 for (uint32_t i : LowToHighBits(core_spills)) {
187 stack_offset += codegen->SaveCoreRegister(stack_offset, i);
188 }
189 }
190 }
191
Artem Serovd300d8f2016-07-15 14:00:56 +0100192 uint32_t fp_spills = codegen->GetSlowPathSpills(locations, /* core_registers */ false);
193 orig_offset = stack_offset;
Vladimir Marko804b03f2016-09-14 16:26:36 +0100194 for (uint32_t i : LowToHighBits(fp_spills)) {
Artem Serovf4d6aee2016-07-11 10:41:45 +0100195 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
196 saved_fpu_stack_offsets_[i] = stack_offset;
Artem Serovd300d8f2016-07-15 14:00:56 +0100197 stack_offset += kArmWordSize;
Artem Serovf4d6aee2016-07-11 10:41:45 +0100198 }
Artem Serovd300d8f2016-07-15 14:00:56 +0100199
200 stack_offset = orig_offset;
201 while (fp_spills != 0u) {
202 uint32_t begin = CTZ(fp_spills);
203 uint32_t tmp = fp_spills + (1u << begin);
204 fp_spills &= tmp; // Clear the contiguous range of 1s.
205 uint32_t end = (tmp == 0u) ? 32u : CTZ(tmp); // CTZ(0) is undefined.
206 stack_offset = SaveContiguousSRegisterList(begin, end - 1, codegen, stack_offset);
207 }
208 DCHECK_LE(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
Artem Serovf4d6aee2016-07-11 10:41:45 +0100209}
210
211void SlowPathCodeARM::RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
212 size_t stack_offset = codegen->GetFirstRegisterSlotInSlowPath();
213 size_t orig_offset = stack_offset;
214
215 const uint32_t core_spills = codegen->GetSlowPathSpills(locations, /* core_registers */ true);
216 for (uint32_t i : LowToHighBits(core_spills)) {
217 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
218 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
219 stack_offset += kArmWordSize;
220 }
221
222 int reg_num = POPCOUNT(core_spills);
223 if (reg_num != 0) {
224 if (reg_num > kRegListThreshold) {
225 __ LoadList(RegList(core_spills), orig_offset);
226 } else {
227 stack_offset = orig_offset;
228 for (uint32_t i : LowToHighBits(core_spills)) {
229 stack_offset += codegen->RestoreCoreRegister(stack_offset, i);
230 }
231 }
232 }
233
Artem Serovd300d8f2016-07-15 14:00:56 +0100234 uint32_t fp_spills = codegen->GetSlowPathSpills(locations, /* core_registers */ false);
235 while (fp_spills != 0u) {
236 uint32_t begin = CTZ(fp_spills);
237 uint32_t tmp = fp_spills + (1u << begin);
238 fp_spills &= tmp; // Clear the contiguous range of 1s.
239 uint32_t end = (tmp == 0u) ? 32u : CTZ(tmp); // CTZ(0) is undefined.
240 stack_offset = RestoreContiguousSRegisterList(begin, end - 1, codegen, stack_offset);
Artem Serovf4d6aee2016-07-11 10:41:45 +0100241 }
Artem Serovd300d8f2016-07-15 14:00:56 +0100242 DCHECK_LE(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
Artem Serovf4d6aee2016-07-11 10:41:45 +0100243}
244
245class NullCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100246 public:
Artem Serovf4d6aee2016-07-11 10:41:45 +0100247 explicit NullCheckSlowPathARM(HNullCheck* instruction) : SlowPathCodeARM(instruction) {}
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100248
Alexandre Rames67555f72014-11-18 10:55:16 +0000249 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100250 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100251 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000252 if (instruction_->CanThrowIntoCatchBlock()) {
253 // Live registers will be restored in the catch block if caught.
254 SaveLiveRegisters(codegen, instruction_->GetLocations());
255 }
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100256 arm_codegen->InvokeRuntime(kQuickThrowNullPointer,
257 instruction_,
258 instruction_->GetDexPc(),
259 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000260 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100261 }
262
Alexandre Rames8158f282015-08-07 10:26:17 +0100263 bool IsFatal() const OVERRIDE { return true; }
264
Alexandre Rames9931f312015-06-19 14:47:01 +0100265 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathARM"; }
266
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100267 private:
Nicolas Geoffraye5038322014-07-04 09:41:32 +0100268 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM);
269};
270
Artem Serovf4d6aee2016-07-11 10:41:45 +0100271class DivZeroCheckSlowPathARM : public SlowPathCodeARM {
Calin Juravled0d48522014-11-04 16:40:20 +0000272 public:
Artem Serovf4d6aee2016-07-11 10:41:45 +0100273 explicit DivZeroCheckSlowPathARM(HDivZeroCheck* instruction) : SlowPathCodeARM(instruction) {}
Calin Juravled0d48522014-11-04 16:40:20 +0000274
Alexandre Rames67555f72014-11-18 10:55:16 +0000275 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Calin Juravled0d48522014-11-04 16:40:20 +0000276 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
277 __ Bind(GetEntryLabel());
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100278 arm_codegen->InvokeRuntime(kQuickThrowDivZero, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000279 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Calin Juravled0d48522014-11-04 16:40:20 +0000280 }
281
Alexandre Rames8158f282015-08-07 10:26:17 +0100282 bool IsFatal() const OVERRIDE { return true; }
283
Alexandre Rames9931f312015-06-19 14:47:01 +0100284 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathARM"; }
285
Calin Juravled0d48522014-11-04 16:40:20 +0000286 private:
Calin Juravled0d48522014-11-04 16:40:20 +0000287 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM);
288};
289
Artem Serovf4d6aee2016-07-11 10:41:45 +0100290class SuspendCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000291 public:
Alexandre Rames67555f72014-11-18 10:55:16 +0000292 SuspendCheckSlowPathARM(HSuspendCheck* instruction, HBasicBlock* successor)
Artem Serovf4d6aee2016-07-11 10:41:45 +0100293 : SlowPathCodeARM(instruction), successor_(successor) {}
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000294
Alexandre Rames67555f72014-11-18 10:55:16 +0000295 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100296 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000297 __ Bind(GetEntryLabel());
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100298 arm_codegen->InvokeRuntime(kQuickTestSuspend, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000299 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100300 if (successor_ == nullptr) {
301 __ b(GetReturnLabel());
302 } else {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100303 __ b(arm_codegen->GetLabelOf(successor_));
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100304 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000305 }
306
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100307 Label* GetReturnLabel() {
308 DCHECK(successor_ == nullptr);
309 return &return_label_;
310 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000311
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100312 HBasicBlock* GetSuccessor() const {
313 return successor_;
314 }
315
Alexandre Rames9931f312015-06-19 14:47:01 +0100316 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathARM"; }
317
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000318 private:
Nicolas Geoffray3c049742014-09-24 18:10:46 +0100319 // If not null, the block to branch to after the suspend check.
320 HBasicBlock* const successor_;
321
322 // If `successor_` is null, the label to branch to after the suspend check.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +0000323 Label return_label_;
324
325 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM);
326};
327
Artem Serovf4d6aee2016-07-11 10:41:45 +0100328class BoundsCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100329 public:
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100330 explicit BoundsCheckSlowPathARM(HBoundsCheck* instruction)
Artem Serovf4d6aee2016-07-11 10:41:45 +0100331 : SlowPathCodeARM(instruction) {}
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100332
Alexandre Rames67555f72014-11-18 10:55:16 +0000333 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +0100334 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100335 LocationSummary* locations = instruction_->GetLocations();
336
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100337 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000338 if (instruction_->CanThrowIntoCatchBlock()) {
339 // Live registers will be restored in the catch block if caught.
340 SaveLiveRegisters(codegen, instruction_->GetLocations());
341 }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000342 // We're moving two locations to locations that could overlap, so we need a parallel
343 // move resolver.
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100344 InvokeRuntimeCallingConvention calling_convention;
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000345 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100346 locations->InAt(0),
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000347 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100348 Primitive::kPrimInt,
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100349 locations->InAt(1),
Nicolas Geoffray90218252015-04-15 11:56:51 +0100350 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
351 Primitive::kPrimInt);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100352 QuickEntrypointEnum entrypoint = instruction_->AsBoundsCheck()->IsStringCharAt()
353 ? kQuickThrowStringBounds
354 : kQuickThrowArrayBounds;
355 arm_codegen->InvokeRuntime(entrypoint, instruction_, instruction_->GetDexPc(), this);
Vladimir Marko87f3fcb2016-04-28 15:52:11 +0100356 CheckEntrypointTypes<kQuickThrowStringBounds, void, int32_t, int32_t>();
Roland Levillain888d0672015-11-23 18:53:50 +0000357 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100358 }
359
Alexandre Rames8158f282015-08-07 10:26:17 +0100360 bool IsFatal() const OVERRIDE { return true; }
361
Alexandre Rames9931f312015-06-19 14:47:01 +0100362 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathARM"; }
363
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100364 private:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +0100365 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM);
366};
367
Artem Serovf4d6aee2016-07-11 10:41:45 +0100368class LoadClassSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100369 public:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000370 LoadClassSlowPathARM(HLoadClass* cls,
371 HInstruction* at,
372 uint32_t dex_pc,
373 bool do_clinit)
Artem Serovf4d6aee2016-07-11 10:41:45 +0100374 : SlowPathCodeARM(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000375 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
376 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100377
Alexandre Rames67555f72014-11-18 10:55:16 +0000378 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000379 LocationSummary* locations = at_->GetLocations();
380
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100381 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
382 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000383 SaveLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100384
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100385 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampea5b09a62016-11-17 15:21:22 -0800386 __ LoadImmediate(calling_convention.GetRegisterAt(0), cls_->GetTypeIndex().index_);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100387 QuickEntrypointEnum entrypoint = do_clinit_ ? kQuickInitializeStaticStorage
388 : kQuickInitializeType;
389 arm_codegen->InvokeRuntime(entrypoint, at_, dex_pc_, this);
Roland Levillain888d0672015-11-23 18:53:50 +0000390 if (do_clinit_) {
391 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
392 } else {
393 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
394 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000395
396 // Move the class to the desired location.
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000397 Location out = locations->Out();
398 if (out.IsValid()) {
399 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000400 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
401 }
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000402 RestoreLiveRegisters(codegen, locations);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100403 __ b(GetExitLabel());
404 }
405
Alexandre Rames9931f312015-06-19 14:47:01 +0100406 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathARM"; }
407
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100408 private:
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000409 // The class this slow path will load.
410 HLoadClass* const cls_;
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100411
Nicolas Geoffray424f6762014-11-03 14:51:25 +0000412 // The instruction where this slow path is happening.
413 // (Might be the load class or an initialization check).
414 HInstruction* const at_;
415
416 // The dex PC of `at_`.
417 const uint32_t dex_pc_;
418
419 // Whether to initialize the class.
420 const bool do_clinit_;
421
422 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +0100423};
424
Vladimir Markoaad75c62016-10-03 08:46:48 +0000425class LoadStringSlowPathARM : public SlowPathCodeARM {
426 public:
427 explicit LoadStringSlowPathARM(HLoadString* instruction) : SlowPathCodeARM(instruction) {}
428
429 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
430 LocationSummary* locations = instruction_->GetLocations();
431 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Vladimir Marko94ce9c22016-09-30 14:50:51 +0100432 HLoadString* load = instruction_->AsLoadString();
433 const uint32_t string_index = load->GetStringIndex();
434 Register out = locations->Out().AsRegister<Register>();
435 Register temp = locations->GetTemp(0).AsRegister<Register>();
436 constexpr bool call_saves_everything_except_r0 = (!kUseReadBarrier || kUseBakerReadBarrier);
Vladimir Markoaad75c62016-10-03 08:46:48 +0000437
438 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
439 __ Bind(GetEntryLabel());
440 SaveLiveRegisters(codegen, locations);
441
442 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko94ce9c22016-09-30 14:50:51 +0100443 // In the unlucky case that the `temp` is R0, we preserve the address in `out` across
444 // the kSaveEverything call (or use `out` for the address after non-kSaveEverything call).
445 bool temp_is_r0 = (temp == calling_convention.GetRegisterAt(0));
446 Register entry_address = temp_is_r0 ? out : temp;
447 DCHECK_NE(entry_address, calling_convention.GetRegisterAt(0));
448 if (call_saves_everything_except_r0 && temp_is_r0) {
449 __ mov(entry_address, ShifterOperand(temp));
450 }
451
Vladimir Markoaad75c62016-10-03 08:46:48 +0000452 __ LoadImmediate(calling_convention.GetRegisterAt(0), string_index);
453 arm_codegen->InvokeRuntime(kQuickResolveString, instruction_, instruction_->GetDexPc(), this);
454 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Vladimir Marko94ce9c22016-09-30 14:50:51 +0100455
456 // Store the resolved String to the .bss entry.
457 if (call_saves_everything_except_r0) {
458 // The string entry address was preserved in `entry_address` thanks to kSaveEverything.
459 __ str(R0, Address(entry_address));
460 } else {
461 // For non-Baker read barrier, we need to re-calculate the address of the string entry.
462 CodeGeneratorARM::PcRelativePatchInfo* labels =
463 arm_codegen->NewPcRelativeStringPatch(load->GetDexFile(), string_index);
464 __ BindTrackedLabel(&labels->movw_label);
465 __ movw(entry_address, /* placeholder */ 0u);
466 __ BindTrackedLabel(&labels->movt_label);
467 __ movt(entry_address, /* placeholder */ 0u);
468 __ BindTrackedLabel(&labels->add_pc_label);
469 __ add(entry_address, entry_address, ShifterOperand(PC));
470 __ str(R0, Address(entry_address));
471 }
472
Vladimir Markoaad75c62016-10-03 08:46:48 +0000473 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
Vladimir Markoaad75c62016-10-03 08:46:48 +0000474 RestoreLiveRegisters(codegen, locations);
475
Vladimir Markoaad75c62016-10-03 08:46:48 +0000476 __ b(GetExitLabel());
477 }
478
479 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathARM"; }
480
481 private:
482 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM);
483};
484
Artem Serovf4d6aee2016-07-11 10:41:45 +0100485class TypeCheckSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000486 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000487 TypeCheckSlowPathARM(HInstruction* instruction, bool is_fatal)
Artem Serovf4d6aee2016-07-11 10:41:45 +0100488 : SlowPathCodeARM(instruction), is_fatal_(is_fatal) {}
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000489
Alexandre Rames67555f72014-11-18 10:55:16 +0000490 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000491 LocationSummary* locations = instruction_->GetLocations();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000492 DCHECK(instruction_->IsCheckCast()
493 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000494
495 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
496 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000497
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000498 if (!is_fatal_) {
499 SaveLiveRegisters(codegen, locations);
500 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000501
502 // We're moving two locations to locations that could overlap, so we need a parallel
503 // move resolver.
504 InvokeRuntimeCallingConvention calling_convention;
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800505 codegen->EmitParallelMoves(locations->InAt(0),
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800506 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
507 Primitive::kPrimNot,
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800508 locations->InAt(1),
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800509 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
510 Primitive::kPrimNot);
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000511 if (instruction_->IsInstanceOf()) {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100512 arm_codegen->InvokeRuntime(kQuickInstanceofNonTrivial,
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100513 instruction_,
514 instruction_->GetDexPc(),
515 this);
Mathieu Chartier9fd8c602016-11-14 14:38:53 -0800516 CheckEntrypointTypes<kQuickInstanceofNonTrivial, size_t, mirror::Object*, mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000517 arm_codegen->Move32(locations->Out(), Location::RegisterLocation(R0));
518 } else {
519 DCHECK(instruction_->IsCheckCast());
Mathieu Chartierb99f4d62016-11-07 16:17:26 -0800520 arm_codegen->InvokeRuntime(kQuickCheckInstanceOf,
521 instruction_,
522 instruction_->GetDexPc(),
523 this);
524 CheckEntrypointTypes<kQuickCheckInstanceOf, void, mirror::Object*, mirror::Class*>();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +0000525 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000526
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000527 if (!is_fatal_) {
528 RestoreLiveRegisters(codegen, locations);
529 __ b(GetExitLabel());
530 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000531 }
532
Alexandre Rames9931f312015-06-19 14:47:01 +0100533 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathARM"; }
534
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000535 bool IsFatal() const OVERRIDE { return is_fatal_; }
536
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000537 private:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000538 const bool is_fatal_;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +0000539
540 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM);
541};
542
Artem Serovf4d6aee2016-07-11 10:41:45 +0100543class DeoptimizationSlowPathARM : public SlowPathCodeARM {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700544 public:
Aart Bik42249c32016-01-07 15:33:50 -0800545 explicit DeoptimizationSlowPathARM(HDeoptimize* instruction)
Artem Serovf4d6aee2016-07-11 10:41:45 +0100546 : SlowPathCodeARM(instruction) {}
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700547
548 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Aart Bik42249c32016-01-07 15:33:50 -0800549 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700550 __ Bind(GetEntryLabel());
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100551 arm_codegen->InvokeRuntime(kQuickDeoptimize, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000552 CheckEntrypointTypes<kQuickDeoptimize, void, void>();
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700553 }
554
Alexandre Rames9931f312015-06-19 14:47:01 +0100555 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathARM"; }
556
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700557 private:
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700558 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM);
559};
560
Artem Serovf4d6aee2016-07-11 10:41:45 +0100561class ArraySetSlowPathARM : public SlowPathCodeARM {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100562 public:
Artem Serovf4d6aee2016-07-11 10:41:45 +0100563 explicit ArraySetSlowPathARM(HInstruction* instruction) : SlowPathCodeARM(instruction) {}
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100564
565 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
566 LocationSummary* locations = instruction_->GetLocations();
567 __ Bind(GetEntryLabel());
568 SaveLiveRegisters(codegen, locations);
569
570 InvokeRuntimeCallingConvention calling_convention;
571 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
572 parallel_move.AddMove(
573 locations->InAt(0),
574 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
575 Primitive::kPrimNot,
576 nullptr);
577 parallel_move.AddMove(
578 locations->InAt(1),
579 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
580 Primitive::kPrimInt,
581 nullptr);
582 parallel_move.AddMove(
583 locations->InAt(2),
584 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
585 Primitive::kPrimNot,
586 nullptr);
587 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
588
589 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +0100590 arm_codegen->InvokeRuntime(kQuickAputObject, instruction_, instruction_->GetDexPc(), this);
Roland Levillain888d0672015-11-23 18:53:50 +0000591 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100592 RestoreLiveRegisters(codegen, locations);
593 __ b(GetExitLabel());
594 }
595
596 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathARM"; }
597
598 private:
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100599 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathARM);
600};
601
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100602// Slow path marking an object reference `ref` during a read
603// barrier. The field `obj.field` in the object `obj` holding this
604// reference does not get updated by this slow path after marking (see
605// ReadBarrierMarkAndUpdateFieldSlowPathARM below for that).
606//
607// This means that after the execution of this slow path, `ref` will
608// always be up-to-date, but `obj.field` may not; i.e., after the
609// flip, `ref` will be a to-space reference, but `obj.field` will
610// probably still be a from-space reference (unless it gets updated by
611// another thread, or if another thread installed another object
612// reference (different from `ref`) in `obj.field`).
Artem Serovf4d6aee2016-07-11 10:41:45 +0100613class ReadBarrierMarkSlowPathARM : public SlowPathCodeARM {
Roland Levillainc9285912015-12-18 10:38:42 +0000614 public:
Mathieu Chartierfe814e82016-11-09 14:32:49 -0800615 ReadBarrierMarkSlowPathARM(HInstruction* instruction,
616 Location ref,
617 Location entrypoint = Location::NoLocation())
618 : SlowPathCodeARM(instruction), ref_(ref), entrypoint_(entrypoint) {
Roland Levillainc9285912015-12-18 10:38:42 +0000619 DCHECK(kEmitCompilerReadBarrier);
620 }
621
622 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkSlowPathARM"; }
623
624 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
625 LocationSummary* locations = instruction_->GetLocations();
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100626 Register ref_reg = ref_.AsRegister<Register>();
Roland Levillainc9285912015-12-18 10:38:42 +0000627 DCHECK(locations->CanCall());
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100628 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
Roland Levillainc9285912015-12-18 10:38:42 +0000629 DCHECK(instruction_->IsInstanceFieldGet() ||
630 instruction_->IsStaticFieldGet() ||
631 instruction_->IsArrayGet() ||
Roland Levillain16d9f942016-08-25 17:27:56 +0100632 instruction_->IsArraySet() ||
Roland Levillainc9285912015-12-18 10:38:42 +0000633 instruction_->IsLoadClass() ||
634 instruction_->IsLoadString() ||
635 instruction_->IsInstanceOf() ||
Roland Levillain3d312422016-06-23 13:53:42 +0100636 instruction_->IsCheckCast() ||
Roland Levillain0b671c02016-08-19 12:02:34 +0100637 (instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()) ||
638 (instruction_->IsInvokeStaticOrDirect() && instruction_->GetLocations()->Intrinsified()))
Roland Levillainc9285912015-12-18 10:38:42 +0000639 << "Unexpected instruction in read barrier marking slow path: "
640 << instruction_->DebugName();
Roland Levillain19c54192016-11-04 13:44:09 +0000641 // The read barrier instrumentation of object ArrayGet
642 // instructions does not support the HIntermediateAddress
643 // instruction.
644 DCHECK(!(instruction_->IsArrayGet() &&
645 instruction_->AsArrayGet()->GetArray()->IsIntermediateAddress()));
Roland Levillainc9285912015-12-18 10:38:42 +0000646
647 __ Bind(GetEntryLabel());
Roland Levillain4359e612016-07-20 11:32:19 +0100648 // No need to save live registers; it's taken care of by the
649 // entrypoint. Also, there is no need to update the stack mask,
650 // as this runtime call will not trigger a garbage collection.
Roland Levillainc9285912015-12-18 10:38:42 +0000651 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100652 DCHECK_NE(ref_reg, SP);
653 DCHECK_NE(ref_reg, LR);
654 DCHECK_NE(ref_reg, PC);
Roland Levillain0b671c02016-08-19 12:02:34 +0100655 // IP is used internally by the ReadBarrierMarkRegX entry point
656 // as a temporary, it cannot be the entry point's input/output.
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100657 DCHECK_NE(ref_reg, IP);
658 DCHECK(0 <= ref_reg && ref_reg < kNumberOfCoreRegisters) << ref_reg;
Roland Levillain02b75802016-07-13 11:54:35 +0100659 // "Compact" slow path, saving two moves.
660 //
661 // Instead of using the standard runtime calling convention (input
662 // and output in R0):
663 //
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100664 // R0 <- ref
Roland Levillain02b75802016-07-13 11:54:35 +0100665 // R0 <- ReadBarrierMark(R0)
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100666 // ref <- R0
Roland Levillain02b75802016-07-13 11:54:35 +0100667 //
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100668 // we just use rX (the register containing `ref`) as input and output
Roland Levillain02b75802016-07-13 11:54:35 +0100669 // of a dedicated entrypoint:
670 //
671 // rX <- ReadBarrierMarkRegX(rX)
672 //
Mathieu Chartierfe814e82016-11-09 14:32:49 -0800673 if (entrypoint_.IsValid()) {
674 arm_codegen->ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction_, this);
675 __ blx(entrypoint_.AsRegister<Register>());
676 } else {
677 int32_t entry_point_offset =
678 CodeGenerator::GetReadBarrierMarkEntryPointsOffset<kArmPointerSize>(ref_reg);
679 // This runtime call does not require a stack map.
680 arm_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this);
681 }
Roland Levillainc9285912015-12-18 10:38:42 +0000682 __ b(GetExitLabel());
683 }
684
685 private:
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100686 // The location (register) of the marked object reference.
687 const Location ref_;
Roland Levillainc9285912015-12-18 10:38:42 +0000688
Mathieu Chartierfe814e82016-11-09 14:32:49 -0800689 // The location of the entrypoint if already loaded.
690 const Location entrypoint_;
691
Roland Levillainc9285912015-12-18 10:38:42 +0000692 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathARM);
693};
694
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100695// Slow path marking an object reference `ref` during a read barrier,
696// and if needed, atomically updating the field `obj.field` in the
697// object `obj` holding this reference after marking (contrary to
698// ReadBarrierMarkSlowPathARM above, which never tries to update
699// `obj.field`).
700//
701// This means that after the execution of this slow path, both `ref`
702// and `obj.field` will be up-to-date; i.e., after the flip, both will
703// hold the same to-space reference (unless another thread installed
704// another object reference (different from `ref`) in `obj.field`).
705class ReadBarrierMarkAndUpdateFieldSlowPathARM : public SlowPathCodeARM {
706 public:
707 ReadBarrierMarkAndUpdateFieldSlowPathARM(HInstruction* instruction,
708 Location ref,
709 Register obj,
710 Location field_offset,
711 Register temp1,
712 Register temp2)
713 : SlowPathCodeARM(instruction),
714 ref_(ref),
715 obj_(obj),
716 field_offset_(field_offset),
717 temp1_(temp1),
718 temp2_(temp2) {
719 DCHECK(kEmitCompilerReadBarrier);
720 }
721
722 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkAndUpdateFieldSlowPathARM"; }
723
724 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
725 LocationSummary* locations = instruction_->GetLocations();
726 Register ref_reg = ref_.AsRegister<Register>();
727 DCHECK(locations->CanCall());
728 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(ref_reg)) << ref_reg;
729 // This slow path is only used by the UnsafeCASObject intrinsic.
730 DCHECK((instruction_->IsInvokeVirtual() && instruction_->GetLocations()->Intrinsified()))
731 << "Unexpected instruction in read barrier marking and field updating slow path: "
732 << instruction_->DebugName();
733 DCHECK(instruction_->GetLocations()->Intrinsified());
734 DCHECK_EQ(instruction_->AsInvoke()->GetIntrinsic(), Intrinsics::kUnsafeCASObject);
735 DCHECK(field_offset_.IsRegisterPair()) << field_offset_;
736
737 __ Bind(GetEntryLabel());
738
739 // Save the old reference.
740 // Note that we cannot use IP to save the old reference, as IP is
741 // used internally by the ReadBarrierMarkRegX entry point, and we
742 // need the old reference after the call to that entry point.
743 DCHECK_NE(temp1_, IP);
744 __ Mov(temp1_, ref_reg);
745
746 // No need to save live registers; it's taken care of by the
747 // entrypoint. Also, there is no need to update the stack mask,
748 // as this runtime call will not trigger a garbage collection.
749 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
750 DCHECK_NE(ref_reg, SP);
751 DCHECK_NE(ref_reg, LR);
752 DCHECK_NE(ref_reg, PC);
753 // IP is used internally by the ReadBarrierMarkRegX entry point
754 // as a temporary, it cannot be the entry point's input/output.
755 DCHECK_NE(ref_reg, IP);
756 DCHECK(0 <= ref_reg && ref_reg < kNumberOfCoreRegisters) << ref_reg;
757 // "Compact" slow path, saving two moves.
758 //
759 // Instead of using the standard runtime calling convention (input
760 // and output in R0):
761 //
762 // R0 <- ref
763 // R0 <- ReadBarrierMark(R0)
764 // ref <- R0
765 //
766 // we just use rX (the register containing `ref`) as input and output
767 // of a dedicated entrypoint:
768 //
769 // rX <- ReadBarrierMarkRegX(rX)
770 //
771 int32_t entry_point_offset =
772 CodeGenerator::GetReadBarrierMarkEntryPointsOffset<kArmPointerSize>(ref_reg);
773 // This runtime call does not require a stack map.
774 arm_codegen->InvokeRuntimeWithoutRecordingPcInfo(entry_point_offset, instruction_, this);
775
776 // If the new reference is different from the old reference,
777 // update the field in the holder (`*(obj_ + field_offset_)`).
778 //
779 // Note that this field could also hold a different object, if
780 // another thread had concurrently changed it. In that case, the
781 // LDREX/SUBS/ITNE sequence of instructions in the compare-and-set
782 // (CAS) operation below would abort the CAS, leaving the field
783 // as-is.
784 Label done;
785 __ cmp(temp1_, ShifterOperand(ref_reg));
786 __ b(&done, EQ);
787
788 // Update the the holder's field atomically. This may fail if
789 // mutator updates before us, but it's OK. This is achieved
790 // using a strong compare-and-set (CAS) operation with relaxed
791 // memory synchronization ordering, where the expected value is
792 // the old reference and the desired value is the new reference.
793
794 // Convenience aliases.
795 Register base = obj_;
796 // The UnsafeCASObject intrinsic uses a register pair as field
797 // offset ("long offset"), of which only the low part contains
798 // data.
799 Register offset = field_offset_.AsRegisterPairLow<Register>();
800 Register expected = temp1_;
801 Register value = ref_reg;
802 Register tmp_ptr = IP; // Pointer to actual memory.
803 Register tmp = temp2_; // Value in memory.
804
805 __ add(tmp_ptr, base, ShifterOperand(offset));
806
807 if (kPoisonHeapReferences) {
808 __ PoisonHeapReference(expected);
809 if (value == expected) {
810 // Do not poison `value`, as it is the same register as
811 // `expected`, which has just been poisoned.
812 } else {
813 __ PoisonHeapReference(value);
814 }
815 }
816
817 // do {
818 // tmp = [r_ptr] - expected;
819 // } while (tmp == 0 && failure([r_ptr] <- r_new_value));
820
Roland Levillain24a4d112016-10-26 13:10:46 +0100821 Label loop_head, exit_loop;
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100822 __ Bind(&loop_head);
823
824 __ ldrex(tmp, tmp_ptr);
825
826 __ subs(tmp, tmp, ShifterOperand(expected));
827
Roland Levillain24a4d112016-10-26 13:10:46 +0100828 __ it(NE);
829 __ clrex(NE);
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100830
Roland Levillain24a4d112016-10-26 13:10:46 +0100831 __ b(&exit_loop, NE);
832
833 __ strex(tmp, value, tmp_ptr);
834 __ cmp(tmp, ShifterOperand(1));
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100835 __ b(&loop_head, EQ);
836
Roland Levillain24a4d112016-10-26 13:10:46 +0100837 __ Bind(&exit_loop);
838
Roland Levillaina1aa3b12016-10-26 13:03:38 +0100839 if (kPoisonHeapReferences) {
840 __ UnpoisonHeapReference(expected);
841 if (value == expected) {
842 // Do not unpoison `value`, as it is the same register as
843 // `expected`, which has just been unpoisoned.
844 } else {
845 __ UnpoisonHeapReference(value);
846 }
847 }
848
849 __ Bind(&done);
850 __ b(GetExitLabel());
851 }
852
853 private:
854 // The location (register) of the marked object reference.
855 const Location ref_;
856 // The register containing the object holding the marked object reference field.
857 const Register obj_;
858 // The location of the offset of the marked reference field within `obj_`.
859 Location field_offset_;
860
861 const Register temp1_;
862 const Register temp2_;
863
864 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkAndUpdateFieldSlowPathARM);
865};
866
Roland Levillain3b359c72015-11-17 19:35:12 +0000867// Slow path generating a read barrier for a heap reference.
Artem Serovf4d6aee2016-07-11 10:41:45 +0100868class ReadBarrierForHeapReferenceSlowPathARM : public SlowPathCodeARM {
Roland Levillain3b359c72015-11-17 19:35:12 +0000869 public:
870 ReadBarrierForHeapReferenceSlowPathARM(HInstruction* instruction,
871 Location out,
872 Location ref,
873 Location obj,
874 uint32_t offset,
875 Location index)
Artem Serovf4d6aee2016-07-11 10:41:45 +0100876 : SlowPathCodeARM(instruction),
Roland Levillain3b359c72015-11-17 19:35:12 +0000877 out_(out),
878 ref_(ref),
879 obj_(obj),
880 offset_(offset),
881 index_(index) {
882 DCHECK(kEmitCompilerReadBarrier);
883 // If `obj` is equal to `out` or `ref`, it means the initial object
884 // has been overwritten by (or after) the heap object reference load
885 // to be instrumented, e.g.:
886 //
887 // __ LoadFromOffset(kLoadWord, out, out, offset);
Roland Levillainc9285912015-12-18 10:38:42 +0000888 // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset);
Roland Levillain3b359c72015-11-17 19:35:12 +0000889 //
890 // In that case, we have lost the information about the original
891 // object, and the emitted read barrier cannot work properly.
892 DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out;
893 DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref;
894 }
895
896 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
897 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
898 LocationSummary* locations = instruction_->GetLocations();
899 Register reg_out = out_.AsRegister<Register>();
900 DCHECK(locations->CanCall());
901 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
Roland Levillain3d312422016-06-23 13:53:42 +0100902 DCHECK(instruction_->IsInstanceFieldGet() ||
903 instruction_->IsStaticFieldGet() ||
904 instruction_->IsArrayGet() ||
905 instruction_->IsInstanceOf() ||
906 instruction_->IsCheckCast() ||
Roland Levillaindec8f632016-07-22 17:10:06 +0100907 (instruction_->IsInvokeVirtual()) && instruction_->GetLocations()->Intrinsified())
Roland Levillainc9285912015-12-18 10:38:42 +0000908 << "Unexpected instruction in read barrier for heap reference slow path: "
909 << instruction_->DebugName();
Roland Levillain19c54192016-11-04 13:44:09 +0000910 // The read barrier instrumentation of object ArrayGet
911 // instructions does not support the HIntermediateAddress
912 // instruction.
913 DCHECK(!(instruction_->IsArrayGet() &&
914 instruction_->AsArrayGet()->GetArray()->IsIntermediateAddress()));
Roland Levillain3b359c72015-11-17 19:35:12 +0000915
916 __ Bind(GetEntryLabel());
917 SaveLiveRegisters(codegen, locations);
918
919 // We may have to change the index's value, but as `index_` is a
920 // constant member (like other "inputs" of this slow path),
921 // introduce a copy of it, `index`.
922 Location index = index_;
923 if (index_.IsValid()) {
Roland Levillain3d312422016-06-23 13:53:42 +0100924 // Handle `index_` for HArrayGet and UnsafeGetObject/UnsafeGetObjectVolatile intrinsics.
Roland Levillain3b359c72015-11-17 19:35:12 +0000925 if (instruction_->IsArrayGet()) {
926 // Compute the actual memory offset and store it in `index`.
927 Register index_reg = index_.AsRegister<Register>();
928 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_reg));
929 if (codegen->IsCoreCalleeSaveRegister(index_reg)) {
930 // We are about to change the value of `index_reg` (see the
931 // calls to art::arm::Thumb2Assembler::Lsl and
932 // art::arm::Thumb2Assembler::AddConstant below), but it has
933 // not been saved by the previous call to
934 // art::SlowPathCode::SaveLiveRegisters, as it is a
935 // callee-save register --
936 // art::SlowPathCode::SaveLiveRegisters does not consider
937 // callee-save registers, as it has been designed with the
938 // assumption that callee-save registers are supposed to be
939 // handled by the called function. So, as a callee-save
940 // register, `index_reg` _would_ eventually be saved onto
941 // the stack, but it would be too late: we would have
942 // changed its value earlier. Therefore, we manually save
943 // it here into another freely available register,
944 // `free_reg`, chosen of course among the caller-save
945 // registers (as a callee-save `free_reg` register would
946 // exhibit the same problem).
947 //
948 // Note we could have requested a temporary register from
949 // the register allocator instead; but we prefer not to, as
950 // this is a slow path, and we know we can find a
951 // caller-save register that is available.
952 Register free_reg = FindAvailableCallerSaveRegister(codegen);
953 __ Mov(free_reg, index_reg);
954 index_reg = free_reg;
955 index = Location::RegisterLocation(index_reg);
956 } else {
957 // The initial register stored in `index_` has already been
958 // saved in the call to art::SlowPathCode::SaveLiveRegisters
959 // (as it is not a callee-save register), so we can freely
960 // use it.
961 }
962 // Shifting the index value contained in `index_reg` by the scale
963 // factor (2) cannot overflow in practice, as the runtime is
964 // unable to allocate object arrays with a size larger than
965 // 2^26 - 1 (that is, 2^28 - 4 bytes).
966 __ Lsl(index_reg, index_reg, TIMES_4);
967 static_assert(
968 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
969 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
970 __ AddConstant(index_reg, index_reg, offset_);
971 } else {
Roland Levillain3d312422016-06-23 13:53:42 +0100972 // In the case of the UnsafeGetObject/UnsafeGetObjectVolatile
973 // intrinsics, `index_` is not shifted by a scale factor of 2
974 // (as in the case of ArrayGet), as it is actually an offset
975 // to an object field within an object.
976 DCHECK(instruction_->IsInvoke()) << instruction_->DebugName();
Roland Levillain3b359c72015-11-17 19:35:12 +0000977 DCHECK(instruction_->GetLocations()->Intrinsified());
978 DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) ||
979 (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile))
980 << instruction_->AsInvoke()->GetIntrinsic();
981 DCHECK_EQ(offset_, 0U);
982 DCHECK(index_.IsRegisterPair());
983 // UnsafeGet's offset location is a register pair, the low
984 // part contains the correct offset.
985 index = index_.ToLow();
986 }
987 }
988
989 // We're moving two or three locations to locations that could
990 // overlap, so we need a parallel move resolver.
991 InvokeRuntimeCallingConvention calling_convention;
992 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
993 parallel_move.AddMove(ref_,
994 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
995 Primitive::kPrimNot,
996 nullptr);
997 parallel_move.AddMove(obj_,
998 Location::RegisterLocation(calling_convention.GetRegisterAt(1)),
999 Primitive::kPrimNot,
1000 nullptr);
1001 if (index.IsValid()) {
1002 parallel_move.AddMove(index,
1003 Location::RegisterLocation(calling_convention.GetRegisterAt(2)),
1004 Primitive::kPrimInt,
1005 nullptr);
1006 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
1007 } else {
1008 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
1009 __ LoadImmediate(calling_convention.GetRegisterAt(2), offset_);
1010 }
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01001011 arm_codegen->InvokeRuntime(kQuickReadBarrierSlow, instruction_, instruction_->GetDexPc(), this);
Roland Levillain3b359c72015-11-17 19:35:12 +00001012 CheckEntrypointTypes<
1013 kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>();
1014 arm_codegen->Move32(out_, Location::RegisterLocation(R0));
1015
1016 RestoreLiveRegisters(codegen, locations);
1017 __ b(GetExitLabel());
1018 }
1019
1020 const char* GetDescription() const OVERRIDE { return "ReadBarrierForHeapReferenceSlowPathARM"; }
1021
1022 private:
1023 Register FindAvailableCallerSaveRegister(CodeGenerator* codegen) {
1024 size_t ref = static_cast<int>(ref_.AsRegister<Register>());
1025 size_t obj = static_cast<int>(obj_.AsRegister<Register>());
1026 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
1027 if (i != ref && i != obj && !codegen->IsCoreCalleeSaveRegister(i)) {
1028 return static_cast<Register>(i);
1029 }
1030 }
1031 // We shall never fail to find a free caller-save register, as
1032 // there are more than two core caller-save registers on ARM
1033 // (meaning it is possible to find one which is different from
1034 // `ref` and `obj`).
1035 DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u);
1036 LOG(FATAL) << "Could not find a free caller-save register";
1037 UNREACHABLE();
1038 }
1039
Roland Levillain3b359c72015-11-17 19:35:12 +00001040 const Location out_;
1041 const Location ref_;
1042 const Location obj_;
1043 const uint32_t offset_;
1044 // An additional location containing an index to an array.
1045 // Only used for HArrayGet and the UnsafeGetObject &
1046 // UnsafeGetObjectVolatile intrinsics.
1047 const Location index_;
1048
1049 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathARM);
1050};
1051
1052// Slow path generating a read barrier for a GC root.
Artem Serovf4d6aee2016-07-11 10:41:45 +01001053class ReadBarrierForRootSlowPathARM : public SlowPathCodeARM {
Roland Levillain3b359c72015-11-17 19:35:12 +00001054 public:
1055 ReadBarrierForRootSlowPathARM(HInstruction* instruction, Location out, Location root)
Artem Serovf4d6aee2016-07-11 10:41:45 +01001056 : SlowPathCodeARM(instruction), out_(out), root_(root) {
Roland Levillainc9285912015-12-18 10:38:42 +00001057 DCHECK(kEmitCompilerReadBarrier);
1058 }
Roland Levillain3b359c72015-11-17 19:35:12 +00001059
1060 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
1061 LocationSummary* locations = instruction_->GetLocations();
1062 Register reg_out = out_.AsRegister<Register>();
1063 DCHECK(locations->CanCall());
1064 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(reg_out));
Roland Levillainc9285912015-12-18 10:38:42 +00001065 DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString())
1066 << "Unexpected instruction in read barrier for GC root slow path: "
1067 << instruction_->DebugName();
Roland Levillain3b359c72015-11-17 19:35:12 +00001068
1069 __ Bind(GetEntryLabel());
1070 SaveLiveRegisters(codegen, locations);
1071
1072 InvokeRuntimeCallingConvention calling_convention;
1073 CodeGeneratorARM* arm_codegen = down_cast<CodeGeneratorARM*>(codegen);
1074 arm_codegen->Move32(Location::RegisterLocation(calling_convention.GetRegisterAt(0)), root_);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01001075 arm_codegen->InvokeRuntime(kQuickReadBarrierForRootSlow,
Roland Levillain3b359c72015-11-17 19:35:12 +00001076 instruction_,
1077 instruction_->GetDexPc(),
1078 this);
1079 CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>();
1080 arm_codegen->Move32(out_, Location::RegisterLocation(R0));
1081
1082 RestoreLiveRegisters(codegen, locations);
1083 __ b(GetExitLabel());
1084 }
1085
1086 const char* GetDescription() const OVERRIDE { return "ReadBarrierForRootSlowPathARM"; }
1087
1088 private:
Roland Levillain3b359c72015-11-17 19:35:12 +00001089 const Location out_;
1090 const Location root_;
1091
1092 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathARM);
1093};
1094
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00001095#undef __
Roland Levillain7cbd27f2016-08-11 23:53:33 +01001096// NOLINT on __ macro to suppress wrong warning/fix (misc-macro-parentheses) from clang-tidy.
1097#define __ down_cast<ArmAssembler*>(GetAssembler())-> // NOLINT
Dave Allison20dfc792014-06-16 20:44:29 -07001098
Aart Bike9f37602015-10-09 11:15:55 -07001099inline Condition ARMCondition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -07001100 switch (cond) {
1101 case kCondEQ: return EQ;
1102 case kCondNE: return NE;
1103 case kCondLT: return LT;
1104 case kCondLE: return LE;
1105 case kCondGT: return GT;
1106 case kCondGE: return GE;
Aart Bike9f37602015-10-09 11:15:55 -07001107 case kCondB: return LO;
1108 case kCondBE: return LS;
1109 case kCondA: return HI;
1110 case kCondAE: return HS;
Dave Allison20dfc792014-06-16 20:44:29 -07001111 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001112 LOG(FATAL) << "Unreachable";
1113 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -07001114}
1115
Aart Bike9f37602015-10-09 11:15:55 -07001116// Maps signed condition to unsigned condition.
Roland Levillain4fa13f62015-07-06 18:11:54 +01001117inline Condition ARMUnsignedCondition(IfCondition cond) {
Dave Allison20dfc792014-06-16 20:44:29 -07001118 switch (cond) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001119 case kCondEQ: return EQ;
1120 case kCondNE: return NE;
Aart Bike9f37602015-10-09 11:15:55 -07001121 // Signed to unsigned.
Roland Levillain4fa13f62015-07-06 18:11:54 +01001122 case kCondLT: return LO;
1123 case kCondLE: return LS;
1124 case kCondGT: return HI;
1125 case kCondGE: return HS;
Aart Bike9f37602015-10-09 11:15:55 -07001126 // Unsigned remain unchanged.
1127 case kCondB: return LO;
1128 case kCondBE: return LS;
1129 case kCondA: return HI;
1130 case kCondAE: return HS;
Dave Allison20dfc792014-06-16 20:44:29 -07001131 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001132 LOG(FATAL) << "Unreachable";
1133 UNREACHABLE();
Dave Allison20dfc792014-06-16 20:44:29 -07001134}
1135
Vladimir Markod6e069b2016-01-18 11:11:01 +00001136inline Condition ARMFPCondition(IfCondition cond, bool gt_bias) {
1137 // The ARM condition codes can express all the necessary branches, see the
1138 // "Meaning (floating-point)" column in the table A8-1 of the ARMv7 reference manual.
1139 // There is no dex instruction or HIR that would need the missing conditions
1140 // "equal or unordered" or "not equal".
1141 switch (cond) {
1142 case kCondEQ: return EQ;
1143 case kCondNE: return NE /* unordered */;
1144 case kCondLT: return gt_bias ? CC : LT /* unordered */;
1145 case kCondLE: return gt_bias ? LS : LE /* unordered */;
1146 case kCondGT: return gt_bias ? HI /* unordered */ : GT;
1147 case kCondGE: return gt_bias ? CS /* unordered */ : GE;
1148 default:
1149 LOG(FATAL) << "UNREACHABLE";
1150 UNREACHABLE();
1151 }
1152}
1153
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01001154void CodeGeneratorARM::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +01001155 stream << Register(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01001156}
1157
1158void CodeGeneratorARM::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +01001159 stream << SRegister(reg);
Nicolas Geoffraya7062e02014-05-22 12:50:17 +01001160}
1161
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001162size_t CodeGeneratorARM::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
1163 __ StoreToOffset(kStoreWord, static_cast<Register>(reg_id), SP, stack_index);
1164 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +01001165}
1166
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01001167size_t CodeGeneratorARM::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
1168 __ LoadFromOffset(kLoadWord, static_cast<Register>(reg_id), SP, stack_index);
1169 return kArmWordSize;
Nicolas Geoffray3bca0df2014-09-19 11:01:00 +01001170}
1171
Nicolas Geoffray840e5462015-01-07 16:01:24 +00001172size_t CodeGeneratorARM::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
1173 __ StoreSToOffset(static_cast<SRegister>(reg_id), SP, stack_index);
1174 return kArmWordSize;
1175}
1176
1177size_t CodeGeneratorARM::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
1178 __ LoadSFromOffset(static_cast<SRegister>(reg_id), SP, stack_index);
1179 return kArmWordSize;
1180}
1181
Calin Juravle34166012014-12-19 17:22:29 +00001182CodeGeneratorARM::CodeGeneratorARM(HGraph* graph,
Calin Juravlecd6dffe2015-01-08 17:35:35 +00001183 const ArmInstructionSetFeatures& isa_features,
Serban Constantinescuecc43662015-08-13 13:33:12 +01001184 const CompilerOptions& compiler_options,
1185 OptimizingCompilerStats* stats)
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001186 : CodeGenerator(graph,
1187 kNumberOfCoreRegisters,
1188 kNumberOfSRegisters,
1189 kNumberOfRegisterPairs,
1190 ComputeRegisterMask(reinterpret_cast<const int*>(kCoreCalleeSaves),
1191 arraysize(kCoreCalleeSaves)),
Nicolas Geoffray75d5b9b2015-10-05 07:40:35 +00001192 ComputeRegisterMask(reinterpret_cast<const int*>(kFpuCalleeSaves),
1193 arraysize(kFpuCalleeSaves)),
Serban Constantinescuecc43662015-08-13 13:33:12 +01001194 compiler_options,
1195 stats),
Vladimir Marko225b6462015-09-28 12:17:40 +01001196 block_labels_(nullptr),
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001197 location_builder_(graph, this),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01001198 instruction_visitor_(graph, this),
Nicolas Geoffray8d486732014-07-16 16:23:40 +01001199 move_resolver_(graph->GetArena(), this),
Vladimir Marko93205e32016-04-13 11:59:46 +01001200 assembler_(graph->GetArena()),
Vladimir Marko58155012015-08-19 12:49:41 +00001201 isa_features_(isa_features),
Vladimir Markocac5a7e2016-02-22 10:39:50 +00001202 uint32_literals_(std::less<uint32_t>(),
1203 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Marko5233f932015-09-29 19:01:15 +01001204 method_patches_(MethodReferenceComparator(),
1205 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1206 call_patches_(MethodReferenceComparator(),
1207 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markob4536b72015-11-24 13:45:23 +00001208 relative_call_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markocac5a7e2016-02-22 10:39:50 +00001209 pc_relative_dex_cache_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1210 boot_image_string_patches_(StringReferenceValueComparator(),
1211 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1212 pc_relative_string_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01001213 boot_image_type_patches_(TypeReferenceValueComparator(),
1214 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1215 pc_relative_type_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markocac5a7e2016-02-22 10:39:50 +00001216 boot_image_address_patches_(std::less<uint32_t>(),
Nicolas Geoffray132d8362016-11-16 09:19:42 +00001217 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
1218 jit_string_patches_(StringReferenceValueComparator(),
1219 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)) {
Andreas Gampe501fd632015-09-10 16:11:06 -07001220 // Always save the LR register to mimic Quick.
1221 AddAllocatedRegister(Location::RegisterLocation(LR));
Nicolas Geoffrayab032bc2014-07-15 12:55:21 +01001222}
1223
Vladimir Markocf93a5c2015-06-16 11:33:24 +00001224void CodeGeneratorARM::Finalize(CodeAllocator* allocator) {
1225 // Ensure that we fix up branches and literal loads and emit the literal pool.
1226 __ FinalizeCode();
1227
1228 // Adjust native pc offsets in stack maps.
1229 for (size_t i = 0, num = stack_map_stream_.GetNumberOfStackMaps(); i != num; ++i) {
1230 uint32_t old_position = stack_map_stream_.GetStackMap(i).native_pc_offset;
1231 uint32_t new_position = __ GetAdjustedPosition(old_position);
1232 stack_map_stream_.SetStackMapNativePcOffset(i, new_position);
1233 }
Alexandre Rameseb7b7392015-06-19 14:47:01 +01001234 // Adjust pc offsets for the disassembly information.
1235 if (disasm_info_ != nullptr) {
1236 GeneratedCodeInterval* frame_entry_interval = disasm_info_->GetFrameEntryInterval();
1237 frame_entry_interval->start = __ GetAdjustedPosition(frame_entry_interval->start);
1238 frame_entry_interval->end = __ GetAdjustedPosition(frame_entry_interval->end);
1239 for (auto& it : *disasm_info_->GetInstructionIntervals()) {
1240 it.second.start = __ GetAdjustedPosition(it.second.start);
1241 it.second.end = __ GetAdjustedPosition(it.second.end);
1242 }
1243 for (auto& it : *disasm_info_->GetSlowPathIntervals()) {
1244 it.code_interval.start = __ GetAdjustedPosition(it.code_interval.start);
1245 it.code_interval.end = __ GetAdjustedPosition(it.code_interval.end);
1246 }
1247 }
Vladimir Markocf93a5c2015-06-16 11:33:24 +00001248
1249 CodeGenerator::Finalize(allocator);
1250}
1251
David Brazdil58282f42016-01-14 12:45:10 +00001252void CodeGeneratorARM::SetupBlockedRegisters() const {
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001253 // Stack register, LR and PC are always reserved.
Nicolas Geoffray71175b72014-10-09 22:13:55 +01001254 blocked_core_registers_[SP] = true;
1255 blocked_core_registers_[LR] = true;
1256 blocked_core_registers_[PC] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001257
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001258 // Reserve thread register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +01001259 blocked_core_registers_[TR] = true;
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001260
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01001261 // Reserve temp register.
Nicolas Geoffray71175b72014-10-09 22:13:55 +01001262 blocked_core_registers_[IP] = true;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01001263
David Brazdil58282f42016-01-14 12:45:10 +00001264 if (GetGraph()->IsDebuggable()) {
Nicolas Geoffrayecf680d2015-10-05 11:15:37 +01001265 // Stubs do not save callee-save floating point registers. If the graph
1266 // is debuggable, we need to deal with these registers differently. For
1267 // now, just block them.
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001268 for (size_t i = 0; i < arraysize(kFpuCalleeSaves); ++i) {
1269 blocked_fpu_registers_[kFpuCalleeSaves[i]] = true;
1270 }
1271 }
Nicolas Geoffraya7aca372014-04-28 17:47:12 +01001272}
1273
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001274InstructionCodeGeneratorARM::InstructionCodeGeneratorARM(HGraph* graph, CodeGeneratorARM* codegen)
Aart Bik42249c32016-01-07 15:33:50 -08001275 : InstructionCodeGenerator(graph, codegen),
Nicolas Geoffray4a34a422014-04-03 10:38:37 +01001276 assembler_(codegen->GetAssembler()),
1277 codegen_(codegen) {}
1278
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001279void CodeGeneratorARM::ComputeSpillMask() {
1280 core_spill_mask_ = allocated_registers_.GetCoreRegisters() & core_callee_save_mask_;
1281 DCHECK_NE(core_spill_mask_, 0u) << "At least the return address register must be saved";
David Brazdil58282f42016-01-14 12:45:10 +00001282 // There is no easy instruction to restore just the PC on thumb2. We spill and
1283 // restore another arbitrary register.
1284 core_spill_mask_ |= (1 << kCoreAlwaysSpillRegister);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001285 fpu_spill_mask_ = allocated_registers_.GetFloatingPointRegisters() & fpu_callee_save_mask_;
1286 // We use vpush and vpop for saving and restoring floating point registers, which take
1287 // a SRegister and the number of registers to save/restore after that SRegister. We
1288 // therefore update the `fpu_spill_mask_` to also contain those registers not allocated,
1289 // but in the range.
1290 if (fpu_spill_mask_ != 0) {
1291 uint32_t least_significant_bit = LeastSignificantBit(fpu_spill_mask_);
1292 uint32_t most_significant_bit = MostSignificantBit(fpu_spill_mask_);
1293 for (uint32_t i = least_significant_bit + 1 ; i < most_significant_bit; ++i) {
1294 fpu_spill_mask_ |= (1 << i);
1295 }
1296 }
1297}
1298
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001299static dwarf::Reg DWARFReg(Register reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +01001300 return dwarf::Reg::ArmCore(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001301}
1302
1303static dwarf::Reg DWARFReg(SRegister reg) {
David Srbecky9d8606d2015-04-12 09:35:32 +01001304 return dwarf::Reg::ArmFp(static_cast<int>(reg));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001305}
1306
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001307void CodeGeneratorARM::GenerateFrameEntry() {
Roland Levillain199f3362014-11-27 17:15:16 +00001308 bool skip_overflow_check =
1309 IsLeafMethod() && !FrameNeedsStackCheck(GetFrameSize(), InstructionSet::kArm);
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001310 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001311 __ Bind(&frame_entry_label_);
1312
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001313 if (HasEmptyFrame()) {
1314 return;
1315 }
1316
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001317 if (!skip_overflow_check) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001318 __ AddConstant(IP, SP, -static_cast<int32_t>(GetStackOverflowReservedBytes(kArm)));
1319 __ LoadFromOffset(kLoadWord, IP, IP, 0);
1320 RecordPcInfo(nullptr, 0);
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01001321 }
1322
Andreas Gampe501fd632015-09-10 16:11:06 -07001323 __ PushList(core_spill_mask_);
1324 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(core_spill_mask_));
1325 __ cfi().RelOffsetForMany(DWARFReg(kMethodRegisterArgument), 0, core_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001326 if (fpu_spill_mask_ != 0) {
1327 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
1328 __ vpushs(start_register, POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001329 __ cfi().AdjustCFAOffset(kArmWordSize * POPCOUNT(fpu_spill_mask_));
David Srbecky9d8606d2015-04-12 09:35:32 +01001330 __ cfi().RelOffsetForMany(DWARFReg(S0), 0, fpu_spill_mask_, kArmWordSize);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001331 }
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001332 int adjust = GetFrameSize() - FrameEntrySpillSize();
1333 __ AddConstant(SP, -adjust);
1334 __ cfi().AdjustCFAOffset(adjust);
Nicolas Geoffray96eeb4e2016-10-12 22:03:31 +01001335
1336 // Save the current method if we need it. Note that we do not
1337 // do this in HCurrentMethod, as the instruction might have been removed
1338 // in the SSA graph.
1339 if (RequiresCurrentMethod()) {
1340 __ StoreToOffset(kStoreWord, kMethodRegisterArgument, SP, 0);
1341 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001342}
1343
1344void CodeGeneratorARM::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001345 if (HasEmptyFrame()) {
1346 __ bx(LR);
1347 return;
1348 }
David Srbeckyc34dc932015-04-12 09:27:43 +01001349 __ cfi().RememberState();
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001350 int adjust = GetFrameSize() - FrameEntrySpillSize();
1351 __ AddConstant(SP, adjust);
1352 __ cfi().AdjustCFAOffset(-adjust);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001353 if (fpu_spill_mask_ != 0) {
1354 SRegister start_register = SRegister(LeastSignificantBit(fpu_spill_mask_));
1355 __ vpops(start_register, POPCOUNT(fpu_spill_mask_));
Andreas Gampe542451c2016-07-26 09:02:02 -07001356 __ cfi().AdjustCFAOffset(-static_cast<int>(kArmPointerSize) * POPCOUNT(fpu_spill_mask_));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001357 __ cfi().RestoreMany(DWARFReg(SRegister(0)), fpu_spill_mask_);
Nicolas Geoffray4dee6362015-01-23 18:23:14 +00001358 }
Andreas Gampe501fd632015-09-10 16:11:06 -07001359 // Pop LR into PC to return.
1360 DCHECK_NE(core_spill_mask_ & (1 << LR), 0U);
1361 uint32_t pop_mask = (core_spill_mask_ & (~(1 << LR))) | 1 << PC;
1362 __ PopList(pop_mask);
David Srbeckyc34dc932015-04-12 09:27:43 +01001363 __ cfi().RestoreState();
1364 __ cfi().DefCFAOffset(GetFrameSize());
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001365}
1366
Nicolas Geoffray92a73ae2014-10-16 11:12:52 +01001367void CodeGeneratorARM::Bind(HBasicBlock* block) {
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07001368 Label* label = GetLabelOf(block);
1369 __ BindTrackedLabel(label);
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001370}
1371
Roland Levillain2d27c8e2015-04-28 15:48:45 +01001372Location InvokeDexCallingConventionVisitorARM::GetNextLocation(Primitive::Type type) {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001373 switch (type) {
1374 case Primitive::kPrimBoolean:
1375 case Primitive::kPrimByte:
1376 case Primitive::kPrimChar:
1377 case Primitive::kPrimShort:
1378 case Primitive::kPrimInt:
1379 case Primitive::kPrimNot: {
1380 uint32_t index = gp_index_++;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001381 uint32_t stack_index = stack_index_++;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001382 if (index < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001383 return Location::RegisterLocation(calling_convention.GetRegisterAt(index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001384 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001385 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001386 }
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001387 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001388
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001389 case Primitive::kPrimLong: {
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001390 uint32_t index = gp_index_;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001391 uint32_t stack_index = stack_index_;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001392 gp_index_ += 2;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001393 stack_index_ += 2;
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001394 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
Nicolas Geoffray69c15d32015-01-13 11:42:13 +00001395 if (calling_convention.GetRegisterAt(index) == R1) {
1396 // Skip R1, and use R2_R3 instead.
1397 gp_index_++;
1398 index++;
1399 }
1400 }
1401 if (index + 1 < calling_convention.GetNumberOfRegisters()) {
1402 DCHECK_EQ(calling_convention.GetRegisterAt(index) + 1,
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +00001403 calling_convention.GetRegisterAt(index + 1));
Calin Juravle175dc732015-08-25 15:42:32 +01001404
Nicolas Geoffray69c15d32015-01-13 11:42:13 +00001405 return Location::RegisterPairLocation(calling_convention.GetRegisterAt(index),
Nicolas Geoffrayaf2c65c2015-01-14 09:40:32 +00001406 calling_convention.GetRegisterAt(index + 1));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001407 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001408 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
1409 }
1410 }
1411
1412 case Primitive::kPrimFloat: {
1413 uint32_t stack_index = stack_index_++;
1414 if (float_index_ % 2 == 0) {
1415 float_index_ = std::max(double_index_, float_index_);
1416 }
1417 if (float_index_ < calling_convention.GetNumberOfFpuRegisters()) {
1418 return Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(float_index_++));
1419 } else {
1420 return Location::StackSlot(calling_convention.GetStackOffsetOf(stack_index));
1421 }
1422 }
1423
1424 case Primitive::kPrimDouble: {
1425 double_index_ = std::max(double_index_, RoundUp(float_index_, 2));
1426 uint32_t stack_index = stack_index_;
1427 stack_index_ += 2;
1428 if (double_index_ + 1 < calling_convention.GetNumberOfFpuRegisters()) {
1429 uint32_t index = double_index_;
1430 double_index_ += 2;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001431 Location result = Location::FpuRegisterPairLocation(
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001432 calling_convention.GetFpuRegisterAt(index),
1433 calling_convention.GetFpuRegisterAt(index + 1));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001434 DCHECK(ExpectedPairLayout(result));
1435 return result;
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001436 } else {
1437 return Location::DoubleStackSlot(calling_convention.GetStackOffsetOf(stack_index));
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001438 }
1439 }
1440
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001441 case Primitive::kPrimVoid:
1442 LOG(FATAL) << "Unexpected parameter type " << type;
1443 break;
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001444 }
Roland Levillain3b359c72015-11-17 19:35:12 +00001445 return Location::NoLocation();
Nicolas Geoffraya747a392014-04-17 14:56:23 +01001446}
Nicolas Geoffraydb928fc2014-04-16 17:38:32 +01001447
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001448Location InvokeDexCallingConventionVisitorARM::GetReturnLocation(Primitive::Type type) const {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001449 switch (type) {
1450 case Primitive::kPrimBoolean:
1451 case Primitive::kPrimByte:
1452 case Primitive::kPrimChar:
1453 case Primitive::kPrimShort:
1454 case Primitive::kPrimInt:
1455 case Primitive::kPrimNot: {
1456 return Location::RegisterLocation(R0);
1457 }
1458
1459 case Primitive::kPrimFloat: {
1460 return Location::FpuRegisterLocation(S0);
1461 }
1462
1463 case Primitive::kPrimLong: {
1464 return Location::RegisterPairLocation(R0, R1);
1465 }
1466
1467 case Primitive::kPrimDouble: {
1468 return Location::FpuRegisterPairLocation(S0, S1);
1469 }
1470
1471 case Primitive::kPrimVoid:
Roland Levillain3b359c72015-11-17 19:35:12 +00001472 return Location::NoLocation();
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001473 }
Nicolas Geoffray0d1652e2015-06-03 12:12:19 +01001474
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001475 UNREACHABLE();
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001476}
1477
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01001478Location InvokeDexCallingConventionVisitorARM::GetMethodLocation() const {
1479 return Location::RegisterLocation(kMethodRegisterArgument);
1480}
1481
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001482void CodeGeneratorARM::Move32(Location destination, Location source) {
1483 if (source.Equals(destination)) {
1484 return;
1485 }
1486 if (destination.IsRegister()) {
1487 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001488 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001489 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001490 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001491 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001492 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(), SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001493 }
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001494 } else if (destination.IsFpuRegister()) {
1495 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001496 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001497 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001498 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001499 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001500 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001501 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001502 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +00001503 DCHECK(destination.IsStackSlot()) << destination;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001504 if (source.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001505 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(), SP, destination.GetStackIndex());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001506 } else if (source.IsFpuRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00001507 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001508 } else {
Calin Juravlea21f5982014-11-13 15:53:04 +00001509 DCHECK(source.IsStackSlot()) << source;
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001510 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
1511 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001512 }
1513 }
1514}
1515
1516void CodeGeneratorARM::Move64(Location destination, Location source) {
1517 if (source.Equals(destination)) {
1518 return;
1519 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001520 if (destination.IsRegisterPair()) {
1521 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001522 EmitParallelMoves(
1523 Location::RegisterLocation(source.AsRegisterPairHigh<Register>()),
1524 Location::RegisterLocation(destination.AsRegisterPairHigh<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001525 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001526 Location::RegisterLocation(source.AsRegisterPairLow<Register>()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001527 Location::RegisterLocation(destination.AsRegisterPairLow<Register>()),
1528 Primitive::kPrimInt);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001529 } else if (source.IsFpuRegister()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001530 UNIMPLEMENTED(FATAL);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001531 } else if (source.IsFpuRegisterPair()) {
1532 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
1533 destination.AsRegisterPairHigh<Register>(),
1534 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001535 } else {
1536 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001537 DCHECK(ExpectedPairLayout(destination));
1538 __ LoadFromOffset(kLoadWordPair, destination.AsRegisterPairLow<Register>(),
1539 SP, source.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001540 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001541 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001542 if (source.IsDoubleStackSlot()) {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001543 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
1544 SP,
1545 source.GetStackIndex());
Calin Juravlee460d1d2015-09-29 04:52:17 +01001546 } else if (source.IsRegisterPair()) {
1547 __ vmovdrr(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
1548 source.AsRegisterPairLow<Register>(),
1549 source.AsRegisterPairHigh<Register>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001550 } else {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001551 UNIMPLEMENTED(FATAL);
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01001552 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001553 } else {
1554 DCHECK(destination.IsDoubleStackSlot());
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001555 if (source.IsRegisterPair()) {
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001556 // No conflict possible, so just do the moves.
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001557 if (source.AsRegisterPairLow<Register>() == R1) {
1558 DCHECK_EQ(source.AsRegisterPairHigh<Register>(), R2);
Nicolas Geoffray360231a2014-10-08 21:07:48 +01001559 __ StoreToOffset(kStoreWord, R1, SP, destination.GetStackIndex());
1560 __ StoreToOffset(kStoreWord, R2, SP, destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001561 } else {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01001562 __ StoreToOffset(kStoreWordPair, source.AsRegisterPairLow<Register>(),
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001563 SP, destination.GetStackIndex());
1564 }
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00001565 } else if (source.IsFpuRegisterPair()) {
1566 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
1567 SP,
1568 destination.GetStackIndex());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001569 } else {
1570 DCHECK(source.IsDoubleStackSlot());
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001571 EmitParallelMoves(
1572 Location::StackSlot(source.GetStackIndex()),
1573 Location::StackSlot(destination.GetStackIndex()),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001574 Primitive::kPrimInt,
Nicolas Geoffray32b2a522014-11-27 14:54:18 +00001575 Location::StackSlot(source.GetHighStackIndex(kArmWordSize)),
Nicolas Geoffray90218252015-04-15 11:56:51 +01001576 Location::StackSlot(destination.GetHighStackIndex(kArmWordSize)),
1577 Primitive::kPrimInt);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01001578 }
1579 }
1580}
1581
Calin Juravle175dc732015-08-25 15:42:32 +01001582void CodeGeneratorARM::MoveConstant(Location location, int32_t value) {
1583 DCHECK(location.IsRegister());
1584 __ LoadImmediate(location.AsRegister<Register>(), value);
1585}
1586
Calin Juravlee460d1d2015-09-29 04:52:17 +01001587void CodeGeneratorARM::MoveLocation(Location dst, Location src, Primitive::Type dst_type) {
David Brazdil74eb1b22015-12-14 11:44:01 +00001588 HParallelMove move(GetGraph()->GetArena());
1589 move.AddMove(src, dst, dst_type, nullptr);
1590 GetMoveResolver()->EmitNativeCode(&move);
Calin Juravlee460d1d2015-09-29 04:52:17 +01001591}
1592
1593void CodeGeneratorARM::AddLocationAsTemp(Location location, LocationSummary* locations) {
1594 if (location.IsRegister()) {
1595 locations->AddTemp(location);
1596 } else if (location.IsRegisterPair()) {
1597 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairLow<Register>()));
1598 locations->AddTemp(Location::RegisterLocation(location.AsRegisterPairHigh<Register>()));
1599 } else {
1600 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1601 }
1602}
1603
Calin Juravle175dc732015-08-25 15:42:32 +01001604void CodeGeneratorARM::InvokeRuntime(QuickEntrypointEnum entrypoint,
1605 HInstruction* instruction,
1606 uint32_t dex_pc,
1607 SlowPathCode* slow_path) {
Alexandre Rames91a65162016-09-19 13:54:30 +01001608 ValidateInvokeRuntime(entrypoint, instruction, slow_path);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01001609 GenerateInvokeRuntime(GetThreadOffset<kArmPointerSize>(entrypoint).Int32Value());
Serban Constantinescuda8ffec2016-03-09 12:02:11 +00001610 if (EntrypointRequiresStackMap(entrypoint)) {
1611 RecordPcInfo(instruction, dex_pc, slow_path);
1612 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01001613}
1614
Roland Levillaindec8f632016-07-22 17:10:06 +01001615void CodeGeneratorARM::InvokeRuntimeWithoutRecordingPcInfo(int32_t entry_point_offset,
1616 HInstruction* instruction,
1617 SlowPathCode* slow_path) {
1618 ValidateInvokeRuntimeWithoutRecordingPcInfo(instruction, slow_path);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01001619 GenerateInvokeRuntime(entry_point_offset);
1620}
1621
1622void CodeGeneratorARM::GenerateInvokeRuntime(int32_t entry_point_offset) {
Roland Levillaindec8f632016-07-22 17:10:06 +01001623 __ LoadFromOffset(kLoadWord, LR, TR, entry_point_offset);
1624 __ blx(LR);
1625}
1626
David Brazdilfc6a86a2015-06-26 10:33:45 +00001627void InstructionCodeGeneratorARM::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001628 DCHECK(!successor->IsExitBlock());
1629
1630 HBasicBlock* block = got->GetBlock();
1631 HInstruction* previous = got->GetPrevious();
1632
1633 HLoopInformation* info = block->GetLoopInformation();
David Brazdil46e2a392015-03-16 17:31:52 +00001634 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01001635 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
1636 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1637 return;
1638 }
1639
1640 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1641 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1642 }
1643 if (!codegen_->GoesToNextBlock(got->GetBlock(), successor)) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001644 __ b(codegen_->GetLabelOf(successor));
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001645 }
1646}
1647
David Brazdilfc6a86a2015-06-26 10:33:45 +00001648void LocationsBuilderARM::VisitGoto(HGoto* got) {
1649 got->SetLocations(nullptr);
1650}
1651
1652void InstructionCodeGeneratorARM::VisitGoto(HGoto* got) {
1653 HandleGoto(got, got->GetSuccessor());
1654}
1655
1656void LocationsBuilderARM::VisitTryBoundary(HTryBoundary* try_boundary) {
1657 try_boundary->SetLocations(nullptr);
1658}
1659
1660void InstructionCodeGeneratorARM::VisitTryBoundary(HTryBoundary* try_boundary) {
1661 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
1662 if (!successor->IsExitBlock()) {
1663 HandleGoto(try_boundary, successor);
1664 }
1665}
1666
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001667void LocationsBuilderARM::VisitExit(HExit* exit) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00001668 exit->SetLocations(nullptr);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001669}
1670
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001671void InstructionCodeGeneratorARM::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00001672}
1673
Vladimir Marko37dd80d2016-08-01 17:41:45 +01001674void InstructionCodeGeneratorARM::GenerateVcmp(HInstruction* instruction) {
1675 Primitive::Type type = instruction->InputAt(0)->GetType();
1676 Location lhs_loc = instruction->GetLocations()->InAt(0);
1677 Location rhs_loc = instruction->GetLocations()->InAt(1);
1678 if (rhs_loc.IsConstant()) {
1679 // 0.0 is the only immediate that can be encoded directly in
1680 // a VCMP instruction.
1681 //
1682 // Both the JLS (section 15.20.1) and the JVMS (section 6.5)
1683 // specify that in a floating-point comparison, positive zero
1684 // and negative zero are considered equal, so we can use the
1685 // literal 0.0 for both cases here.
1686 //
1687 // Note however that some methods (Float.equal, Float.compare,
1688 // Float.compareTo, Double.equal, Double.compare,
1689 // Double.compareTo, Math.max, Math.min, StrictMath.max,
1690 // StrictMath.min) consider 0.0 to be (strictly) greater than
1691 // -0.0. So if we ever translate calls to these methods into a
1692 // HCompare instruction, we must handle the -0.0 case with
1693 // care here.
1694 DCHECK(rhs_loc.GetConstant()->IsArithmeticZero());
1695 if (type == Primitive::kPrimFloat) {
1696 __ vcmpsz(lhs_loc.AsFpuRegister<SRegister>());
1697 } else {
1698 DCHECK_EQ(type, Primitive::kPrimDouble);
1699 __ vcmpdz(FromLowSToD(lhs_loc.AsFpuRegisterPairLow<SRegister>()));
1700 }
1701 } else {
1702 if (type == Primitive::kPrimFloat) {
1703 __ vcmps(lhs_loc.AsFpuRegister<SRegister>(), rhs_loc.AsFpuRegister<SRegister>());
1704 } else {
1705 DCHECK_EQ(type, Primitive::kPrimDouble);
1706 __ vcmpd(FromLowSToD(lhs_loc.AsFpuRegisterPairLow<SRegister>()),
1707 FromLowSToD(rhs_loc.AsFpuRegisterPairLow<SRegister>()));
1708 }
1709 }
1710}
1711
Roland Levillain4fa13f62015-07-06 18:11:54 +01001712void InstructionCodeGeneratorARM::GenerateFPJumps(HCondition* cond,
1713 Label* true_label,
Vladimir Markod6e069b2016-01-18 11:11:01 +00001714 Label* false_label ATTRIBUTE_UNUSED) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001715 __ vmstat(); // transfer FP status register to ARM APSR.
Vladimir Markod6e069b2016-01-18 11:11:01 +00001716 __ b(true_label, ARMFPCondition(cond->GetCondition(), cond->IsGtBias()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001717}
1718
1719void InstructionCodeGeneratorARM::GenerateLongComparesAndJumps(HCondition* cond,
1720 Label* true_label,
1721 Label* false_label) {
1722 LocationSummary* locations = cond->GetLocations();
1723 Location left = locations->InAt(0);
1724 Location right = locations->InAt(1);
1725 IfCondition if_cond = cond->GetCondition();
1726
1727 Register left_high = left.AsRegisterPairHigh<Register>();
1728 Register left_low = left.AsRegisterPairLow<Register>();
1729 IfCondition true_high_cond = if_cond;
1730 IfCondition false_high_cond = cond->GetOppositeCondition();
Aart Bike9f37602015-10-09 11:15:55 -07001731 Condition final_condition = ARMUnsignedCondition(if_cond); // unsigned on lower part
Roland Levillain4fa13f62015-07-06 18:11:54 +01001732
1733 // Set the conditions for the test, remembering that == needs to be
1734 // decided using the low words.
Aart Bike9f37602015-10-09 11:15:55 -07001735 // TODO: consider avoiding jumps with temporary and CMP low+SBC high
Roland Levillain4fa13f62015-07-06 18:11:54 +01001736 switch (if_cond) {
1737 case kCondEQ:
1738 case kCondNE:
1739 // Nothing to do.
1740 break;
1741 case kCondLT:
1742 false_high_cond = kCondGT;
1743 break;
1744 case kCondLE:
1745 true_high_cond = kCondLT;
1746 break;
1747 case kCondGT:
1748 false_high_cond = kCondLT;
1749 break;
1750 case kCondGE:
1751 true_high_cond = kCondGT;
1752 break;
Aart Bike9f37602015-10-09 11:15:55 -07001753 case kCondB:
1754 false_high_cond = kCondA;
1755 break;
1756 case kCondBE:
1757 true_high_cond = kCondB;
1758 break;
1759 case kCondA:
1760 false_high_cond = kCondB;
1761 break;
1762 case kCondAE:
1763 true_high_cond = kCondA;
1764 break;
Roland Levillain4fa13f62015-07-06 18:11:54 +01001765 }
1766 if (right.IsConstant()) {
1767 int64_t value = right.GetConstant()->AsLongConstant()->GetValue();
1768 int32_t val_low = Low32Bits(value);
1769 int32_t val_high = High32Bits(value);
1770
Vladimir Markoac6ac102015-12-17 12:14:00 +00001771 __ CmpConstant(left_high, val_high);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001772 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001773 __ b(true_label, ARMCondition(true_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001774 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001775 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001776 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001777 __ b(true_label, ARMCondition(true_high_cond));
1778 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001779 }
1780 // Must be equal high, so compare the lows.
Vladimir Markoac6ac102015-12-17 12:14:00 +00001781 __ CmpConstant(left_low, val_low);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001782 } else {
1783 Register right_high = right.AsRegisterPairHigh<Register>();
1784 Register right_low = right.AsRegisterPairLow<Register>();
1785
1786 __ cmp(left_high, ShifterOperand(right_high));
1787 if (if_cond == kCondNE) {
Aart Bike9f37602015-10-09 11:15:55 -07001788 __ b(true_label, ARMCondition(true_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001789 } else if (if_cond == kCondEQ) {
Aart Bike9f37602015-10-09 11:15:55 -07001790 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001791 } else {
Aart Bike9f37602015-10-09 11:15:55 -07001792 __ b(true_label, ARMCondition(true_high_cond));
1793 __ b(false_label, ARMCondition(false_high_cond));
Roland Levillain4fa13f62015-07-06 18:11:54 +01001794 }
1795 // Must be equal high, so compare the lows.
1796 __ cmp(left_low, ShifterOperand(right_low));
1797 }
1798 // The last comparison might be unsigned.
Aart Bike9f37602015-10-09 11:15:55 -07001799 // TODO: optimize cases where this is always true/false
Roland Levillain4fa13f62015-07-06 18:11:54 +01001800 __ b(true_label, final_condition);
1801}
1802
David Brazdil0debae72015-11-12 18:37:00 +00001803void InstructionCodeGeneratorARM::GenerateCompareTestAndBranch(HCondition* condition,
1804 Label* true_target_in,
1805 Label* false_target_in) {
1806 // Generated branching requires both targets to be explicit. If either of the
1807 // targets is nullptr (fallthrough) use and bind `fallthrough_target` instead.
1808 Label fallthrough_target;
1809 Label* true_target = true_target_in == nullptr ? &fallthrough_target : true_target_in;
1810 Label* false_target = false_target_in == nullptr ? &fallthrough_target : false_target_in;
1811
Roland Levillain4fa13f62015-07-06 18:11:54 +01001812 Primitive::Type type = condition->InputAt(0)->GetType();
1813 switch (type) {
1814 case Primitive::kPrimLong:
1815 GenerateLongComparesAndJumps(condition, true_target, false_target);
1816 break;
1817 case Primitive::kPrimFloat:
Roland Levillain4fa13f62015-07-06 18:11:54 +01001818 case Primitive::kPrimDouble:
Vladimir Marko37dd80d2016-08-01 17:41:45 +01001819 GenerateVcmp(condition);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001820 GenerateFPJumps(condition, true_target, false_target);
1821 break;
1822 default:
1823 LOG(FATAL) << "Unexpected compare type " << type;
1824 }
1825
David Brazdil0debae72015-11-12 18:37:00 +00001826 if (false_target != &fallthrough_target) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001827 __ b(false_target);
1828 }
David Brazdil0debae72015-11-12 18:37:00 +00001829
1830 if (fallthrough_target.IsLinked()) {
1831 __ Bind(&fallthrough_target);
1832 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01001833}
1834
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001835void InstructionCodeGeneratorARM::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00001836 size_t condition_input_index,
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001837 Label* true_target,
David Brazdil0debae72015-11-12 18:37:00 +00001838 Label* false_target) {
1839 HInstruction* cond = instruction->InputAt(condition_input_index);
1840
1841 if (true_target == nullptr && false_target == nullptr) {
1842 // Nothing to do. The code always falls through.
1843 return;
1844 } else if (cond->IsIntConstant()) {
Roland Levillain1a653882016-03-18 18:05:57 +00001845 // Constant condition, statically compared against "true" (integer value 1).
1846 if (cond->AsIntConstant()->IsTrue()) {
David Brazdil0debae72015-11-12 18:37:00 +00001847 if (true_target != nullptr) {
1848 __ b(true_target);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001849 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001850 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00001851 DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue();
David Brazdil0debae72015-11-12 18:37:00 +00001852 if (false_target != nullptr) {
1853 __ b(false_target);
1854 }
1855 }
1856 return;
1857 }
1858
1859 // The following code generates these patterns:
1860 // (1) true_target == nullptr && false_target != nullptr
1861 // - opposite condition true => branch to false_target
1862 // (2) true_target != nullptr && false_target == nullptr
1863 // - condition true => branch to true_target
1864 // (3) true_target != nullptr && false_target != nullptr
1865 // - condition true => branch to true_target
1866 // - branch to false_target
1867 if (IsBooleanValueOrMaterializedCondition(cond)) {
1868 // Condition has been materialized, compare the output to 0.
1869 Location cond_val = instruction->GetLocations()->InAt(condition_input_index);
1870 DCHECK(cond_val.IsRegister());
1871 if (true_target == nullptr) {
1872 __ CompareAndBranchIfZero(cond_val.AsRegister<Register>(), false_target);
1873 } else {
1874 __ CompareAndBranchIfNonZero(cond_val.AsRegister<Register>(), true_target);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01001875 }
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001876 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001877 // Condition has not been materialized. Use its inputs as the comparison and
1878 // its condition as the branch condition.
Mark Mendellb8b97692015-05-22 16:58:19 -04001879 HCondition* condition = cond->AsCondition();
David Brazdil0debae72015-11-12 18:37:00 +00001880
1881 // If this is a long or FP comparison that has been folded into
1882 // the HCondition, generate the comparison directly.
1883 Primitive::Type type = condition->InputAt(0)->GetType();
1884 if (type == Primitive::kPrimLong || Primitive::IsFloatingPointType(type)) {
1885 GenerateCompareTestAndBranch(condition, true_target, false_target);
1886 return;
1887 }
1888
1889 LocationSummary* locations = cond->GetLocations();
1890 DCHECK(locations->InAt(0).IsRegister());
1891 Register left = locations->InAt(0).AsRegister<Register>();
1892 Location right = locations->InAt(1);
1893 if (right.IsRegister()) {
1894 __ cmp(left, ShifterOperand(right.AsRegister<Register>()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001895 } else {
David Brazdil0debae72015-11-12 18:37:00 +00001896 DCHECK(right.IsConstant());
Vladimir Markoac6ac102015-12-17 12:14:00 +00001897 __ CmpConstant(left, CodeGenerator::GetInt32ValueOf(right.GetConstant()));
David Brazdil0debae72015-11-12 18:37:00 +00001898 }
1899 if (true_target == nullptr) {
1900 __ b(false_target, ARMCondition(condition->GetOppositeCondition()));
1901 } else {
Mark Mendellb8b97692015-05-22 16:58:19 -04001902 __ b(true_target, ARMCondition(condition->GetCondition()));
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01001903 }
Dave Allison20dfc792014-06-16 20:44:29 -07001904 }
David Brazdil0debae72015-11-12 18:37:00 +00001905
1906 // If neither branch falls through (case 3), the conditional branch to `true_target`
1907 // was already emitted (case 2) and we need to emit a jump to `false_target`.
1908 if (true_target != nullptr && false_target != nullptr) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001909 __ b(false_target);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00001910 }
1911}
1912
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001913void LocationsBuilderARM::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001914 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
1915 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001916 locations->SetInAt(0, Location::RequiresRegister());
1917 }
1918}
1919
1920void InstructionCodeGeneratorARM::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00001921 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
1922 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
1923 Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
1924 nullptr : codegen_->GetLabelOf(true_successor);
1925 Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
1926 nullptr : codegen_->GetLabelOf(false_successor);
1927 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001928}
1929
1930void LocationsBuilderARM::VisitDeoptimize(HDeoptimize* deoptimize) {
1931 LocationSummary* locations = new (GetGraph()->GetArena())
1932 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
Vladimir Marko804b03f2016-09-14 16:26:36 +01001933 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
David Brazdil0debae72015-11-12 18:37:00 +00001934 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001935 locations->SetInAt(0, Location::RequiresRegister());
1936 }
1937}
1938
1939void InstructionCodeGeneratorARM::VisitDeoptimize(HDeoptimize* deoptimize) {
Artem Serovf4d6aee2016-07-11 10:41:45 +01001940 SlowPathCodeARM* slow_path = deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathARM>(deoptimize);
David Brazdil0debae72015-11-12 18:37:00 +00001941 GenerateTestAndBranch(deoptimize,
1942 /* condition_input_index */ 0,
1943 slow_path->GetEntryLabel(),
1944 /* false_target */ nullptr);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001945}
Dave Allison20dfc792014-06-16 20:44:29 -07001946
David Brazdil74eb1b22015-12-14 11:44:01 +00001947void LocationsBuilderARM::VisitSelect(HSelect* select) {
1948 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(select);
1949 if (Primitive::IsFloatingPointType(select->GetType())) {
1950 locations->SetInAt(0, Location::RequiresFpuRegister());
1951 locations->SetInAt(1, Location::RequiresFpuRegister());
1952 } else {
1953 locations->SetInAt(0, Location::RequiresRegister());
1954 locations->SetInAt(1, Location::RequiresRegister());
1955 }
1956 if (IsBooleanValueOrMaterializedCondition(select->GetCondition())) {
1957 locations->SetInAt(2, Location::RequiresRegister());
1958 }
1959 locations->SetOut(Location::SameAsFirstInput());
1960}
1961
1962void InstructionCodeGeneratorARM::VisitSelect(HSelect* select) {
1963 LocationSummary* locations = select->GetLocations();
1964 Label false_target;
1965 GenerateTestAndBranch(select,
1966 /* condition_input_index */ 2,
1967 /* true_target */ nullptr,
1968 &false_target);
1969 codegen_->MoveLocation(locations->Out(), locations->InAt(1), select->GetType());
1970 __ Bind(&false_target);
1971}
1972
David Srbecky0cf44932015-12-09 14:09:59 +00001973void LocationsBuilderARM::VisitNativeDebugInfo(HNativeDebugInfo* info) {
1974 new (GetGraph()->GetArena()) LocationSummary(info);
1975}
1976
David Srbeckyd28f4a02016-03-14 17:14:24 +00001977void InstructionCodeGeneratorARM::VisitNativeDebugInfo(HNativeDebugInfo*) {
1978 // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile.
David Srbeckyc7098ff2016-02-09 14:30:11 +00001979}
1980
1981void CodeGeneratorARM::GenerateNop() {
1982 __ nop();
David Srbecky0cf44932015-12-09 14:09:59 +00001983}
1984
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00001985void LocationsBuilderARM::HandleCondition(HCondition* cond) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01001986 LocationSummary* locations =
Roland Levillain0d37cd02015-05-27 16:39:19 +01001987 new (GetGraph()->GetArena()) LocationSummary(cond, LocationSummary::kNoCall);
Roland Levillain4fa13f62015-07-06 18:11:54 +01001988 // Handle the long/FP comparisons made in instruction simplification.
1989 switch (cond->InputAt(0)->GetType()) {
1990 case Primitive::kPrimLong:
1991 locations->SetInAt(0, Location::RequiresRegister());
1992 locations->SetInAt(1, Location::RegisterOrConstant(cond->InputAt(1)));
David Brazdilb3e773e2016-01-26 11:28:37 +00001993 if (!cond->IsEmittedAtUseSite()) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01001994 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
1995 }
1996 break;
1997
1998 case Primitive::kPrimFloat:
1999 case Primitive::kPrimDouble:
2000 locations->SetInAt(0, Location::RequiresFpuRegister());
Vladimir Marko37dd80d2016-08-01 17:41:45 +01002001 locations->SetInAt(1, ArithmeticZeroOrFpuRegister(cond->InputAt(1)));
David Brazdilb3e773e2016-01-26 11:28:37 +00002002 if (!cond->IsEmittedAtUseSite()) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01002003 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2004 }
2005 break;
2006
2007 default:
2008 locations->SetInAt(0, Location::RequiresRegister());
2009 locations->SetInAt(1, Location::RegisterOrConstant(cond->InputAt(1)));
David Brazdilb3e773e2016-01-26 11:28:37 +00002010 if (!cond->IsEmittedAtUseSite()) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01002011 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2012 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01002013 }
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002014}
2015
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002016void InstructionCodeGeneratorARM::HandleCondition(HCondition* cond) {
David Brazdilb3e773e2016-01-26 11:28:37 +00002017 if (cond->IsEmittedAtUseSite()) {
Roland Levillain4fa13f62015-07-06 18:11:54 +01002018 return;
Dave Allison20dfc792014-06-16 20:44:29 -07002019 }
Roland Levillain4fa13f62015-07-06 18:11:54 +01002020
2021 LocationSummary* locations = cond->GetLocations();
2022 Location left = locations->InAt(0);
2023 Location right = locations->InAt(1);
2024 Register out = locations->Out().AsRegister<Register>();
2025 Label true_label, false_label;
2026
2027 switch (cond->InputAt(0)->GetType()) {
2028 default: {
2029 // Integer case.
2030 if (right.IsRegister()) {
2031 __ cmp(left.AsRegister<Register>(), ShifterOperand(right.AsRegister<Register>()));
2032 } else {
2033 DCHECK(right.IsConstant());
Vladimir Markoac6ac102015-12-17 12:14:00 +00002034 __ CmpConstant(left.AsRegister<Register>(),
2035 CodeGenerator::GetInt32ValueOf(right.GetConstant()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01002036 }
Aart Bike9f37602015-10-09 11:15:55 -07002037 __ it(ARMCondition(cond->GetCondition()), kItElse);
Roland Levillain4fa13f62015-07-06 18:11:54 +01002038 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(1),
Aart Bike9f37602015-10-09 11:15:55 -07002039 ARMCondition(cond->GetCondition()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01002040 __ mov(locations->Out().AsRegister<Register>(), ShifterOperand(0),
Aart Bike9f37602015-10-09 11:15:55 -07002041 ARMCondition(cond->GetOppositeCondition()));
Roland Levillain4fa13f62015-07-06 18:11:54 +01002042 return;
2043 }
2044 case Primitive::kPrimLong:
2045 GenerateLongComparesAndJumps(cond, &true_label, &false_label);
2046 break;
2047 case Primitive::kPrimFloat:
Roland Levillain4fa13f62015-07-06 18:11:54 +01002048 case Primitive::kPrimDouble:
Vladimir Marko37dd80d2016-08-01 17:41:45 +01002049 GenerateVcmp(cond);
Roland Levillain4fa13f62015-07-06 18:11:54 +01002050 GenerateFPJumps(cond, &true_label, &false_label);
2051 break;
2052 }
2053
2054 // Convert the jumps into the result.
2055 Label done_label;
2056
2057 // False case: result = 0.
2058 __ Bind(&false_label);
2059 __ LoadImmediate(out, 0);
2060 __ b(&done_label);
2061
2062 // True case: result = 1.
2063 __ Bind(&true_label);
2064 __ LoadImmediate(out, 1);
2065 __ Bind(&done_label);
Dave Allison20dfc792014-06-16 20:44:29 -07002066}
2067
2068void LocationsBuilderARM::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002069 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002070}
2071
2072void InstructionCodeGeneratorARM::VisitEqual(HEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002073 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002074}
2075
2076void LocationsBuilderARM::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002077 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002078}
2079
2080void InstructionCodeGeneratorARM::VisitNotEqual(HNotEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002081 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002082}
2083
2084void LocationsBuilderARM::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002085 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002086}
2087
2088void InstructionCodeGeneratorARM::VisitLessThan(HLessThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002089 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002090}
2091
2092void LocationsBuilderARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002093 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002094}
2095
2096void InstructionCodeGeneratorARM::VisitLessThanOrEqual(HLessThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002097 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002098}
2099
2100void LocationsBuilderARM::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002101 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002102}
2103
2104void InstructionCodeGeneratorARM::VisitGreaterThan(HGreaterThan* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002105 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002106}
2107
2108void LocationsBuilderARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002109 HandleCondition(comp);
Dave Allison20dfc792014-06-16 20:44:29 -07002110}
2111
2112void InstructionCodeGeneratorARM::VisitGreaterThanOrEqual(HGreaterThanOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002113 HandleCondition(comp);
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002114}
2115
Aart Bike9f37602015-10-09 11:15:55 -07002116void LocationsBuilderARM::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002117 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002118}
2119
2120void InstructionCodeGeneratorARM::VisitBelow(HBelow* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002121 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002122}
2123
2124void LocationsBuilderARM::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002125 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002126}
2127
2128void InstructionCodeGeneratorARM::VisitBelowOrEqual(HBelowOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002129 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002130}
2131
2132void LocationsBuilderARM::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002133 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002134}
2135
2136void InstructionCodeGeneratorARM::VisitAbove(HAbove* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002137 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002138}
2139
2140void LocationsBuilderARM::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002141 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002142}
2143
2144void InstructionCodeGeneratorARM::VisitAboveOrEqual(HAboveOrEqual* comp) {
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002145 HandleCondition(comp);
Aart Bike9f37602015-10-09 11:15:55 -07002146}
2147
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002148void LocationsBuilderARM::VisitIntConstant(HIntConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002149 LocationSummary* locations =
2150 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002151 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002152}
2153
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002154void InstructionCodeGeneratorARM::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Roland Levillain3a3fd0f2014-10-10 13:56:31 +01002155 // Will be generated at use site.
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002156}
2157
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002158void LocationsBuilderARM::VisitNullConstant(HNullConstant* constant) {
2159 LocationSummary* locations =
2160 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2161 locations->SetOut(Location::ConstantLocation(constant));
2162}
2163
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002164void InstructionCodeGeneratorARM::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002165 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002166}
2167
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002168void LocationsBuilderARM::VisitLongConstant(HLongConstant* constant) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002169 LocationSummary* locations =
2170 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002171 locations->SetOut(Location::ConstantLocation(constant));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002172}
2173
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002174void InstructionCodeGeneratorARM::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002175 // Will be generated at use site.
2176}
2177
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002178void LocationsBuilderARM::VisitFloatConstant(HFloatConstant* constant) {
2179 LocationSummary* locations =
2180 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2181 locations->SetOut(Location::ConstantLocation(constant));
2182}
2183
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002184void InstructionCodeGeneratorARM::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002185 // Will be generated at use site.
2186}
2187
2188void LocationsBuilderARM::VisitDoubleConstant(HDoubleConstant* constant) {
2189 LocationSummary* locations =
2190 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2191 locations->SetOut(Location::ConstantLocation(constant));
2192}
2193
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002194void InstructionCodeGeneratorARM::VisitDoubleConstant(HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffray102cbed2014-10-15 18:31:05 +01002195 // Will be generated at use site.
2196}
2197
Calin Juravle27df7582015-04-17 19:12:31 +01002198void LocationsBuilderARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
2199 memory_barrier->SetLocations(nullptr);
2200}
2201
2202void InstructionCodeGeneratorARM::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
Roland Levillainc9285912015-12-18 10:38:42 +00002203 codegen_->GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
Calin Juravle27df7582015-04-17 19:12:31 +01002204}
2205
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002206void LocationsBuilderARM::VisitReturnVoid(HReturnVoid* ret) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002207 ret->SetLocations(nullptr);
Nicolas Geoffray3ff386a2014-03-04 14:46:47 +00002208}
2209
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002210void InstructionCodeGeneratorARM::VisitReturnVoid(HReturnVoid* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002211 codegen_->GenerateFrameExit();
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00002212}
2213
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002214void LocationsBuilderARM::VisitReturn(HReturn* ret) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002215 LocationSummary* locations =
2216 new (GetGraph()->GetArena()) LocationSummary(ret, LocationSummary::kNoCall);
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002217 locations->SetInAt(0, parameter_visitor_.GetReturnLocation(ret->InputAt(0)->GetType()));
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002218}
2219
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002220void InstructionCodeGeneratorARM::VisitReturn(HReturn* ret ATTRIBUTE_UNUSED) {
Nicolas Geoffray787c3072014-03-17 10:20:19 +00002221 codegen_->GenerateFrameExit();
Nicolas Geoffraybab4ed72014-03-11 17:53:17 +00002222}
2223
Calin Juravle175dc732015-08-25 15:42:32 +01002224void LocationsBuilderARM::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2225 // The trampoline uses the same calling convention as dex calling conventions,
2226 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
2227 // the method_idx.
2228 HandleInvoke(invoke);
2229}
2230
2231void InstructionCodeGeneratorARM::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2232 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
2233}
2234
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002235void LocationsBuilderARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002236 // Explicit clinit checks triggered by static invokes must have been pruned by
2237 // art::PrepareForRegisterAllocation.
2238 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002239
Vladimir Marko68c981f2016-08-26 13:13:33 +01002240 IntrinsicLocationsBuilderARM intrinsic(codegen_);
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08002241 if (intrinsic.TryDispatch(invoke)) {
Vladimir Markob4536b72015-11-24 13:45:23 +00002242 if (invoke->GetLocations()->CanCall() && invoke->HasPcRelativeDexCache()) {
2243 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::Any());
2244 }
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08002245 return;
2246 }
2247
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002248 HandleInvoke(invoke);
Vladimir Markob4536b72015-11-24 13:45:23 +00002249
2250 // For PC-relative dex cache the invoke has an extra input, the PC-relative address base.
2251 if (invoke->HasPcRelativeDexCache()) {
2252 invoke->GetLocations()->SetInAt(invoke->GetSpecialInputIndex(), Location::RequiresRegister());
2253 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002254}
2255
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08002256static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM* codegen) {
2257 if (invoke->GetLocations()->Intrinsified()) {
2258 IntrinsicCodeGeneratorARM intrinsic(codegen);
2259 intrinsic.Dispatch(invoke);
2260 return true;
2261 }
2262 return false;
2263}
2264
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002265void InstructionCodeGeneratorARM::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00002266 // Explicit clinit checks triggered by static invokes must have been pruned by
2267 // art::PrepareForRegisterAllocation.
2268 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002269
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08002270 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2271 return;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00002272 }
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002273
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002274 LocationSummary* locations = invoke->GetLocations();
2275 codegen_->GenerateStaticOrDirectCall(
2276 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00002277 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002278}
2279
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002280void LocationsBuilderARM::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002281 InvokeDexCallingConventionVisitorARM calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002282 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002283}
2284
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002285void LocationsBuilderARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Vladimir Marko68c981f2016-08-26 13:13:33 +01002286 IntrinsicLocationsBuilderARM intrinsic(codegen_);
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08002287 if (intrinsic.TryDispatch(invoke)) {
2288 return;
2289 }
2290
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002291 HandleInvoke(invoke);
2292}
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002293
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002294void InstructionCodeGeneratorARM::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08002295 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2296 return;
2297 }
2298
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002299 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Nicolas Geoffrayf12feb82014-07-17 18:32:41 +01002300 DCHECK(!codegen_->IsLeafMethod());
Nicolas Geoffraye982f0b2014-08-13 02:11:24 +01002301 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Nicolas Geoffray8ccc3f52014-03-19 10:34:11 +00002302}
2303
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002304void LocationsBuilderARM::VisitInvokeInterface(HInvokeInterface* invoke) {
2305 HandleInvoke(invoke);
2306 // Add the hidden argument.
2307 invoke->GetLocations()->AddTemp(Location::RegisterLocation(R12));
2308}
2309
2310void InstructionCodeGeneratorARM::VisitInvokeInterface(HInvokeInterface* invoke) {
2311 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain3b359c72015-11-17 19:35:12 +00002312 LocationSummary* locations = invoke->GetLocations();
2313 Register temp = locations->GetTemp(0).AsRegister<Register>();
2314 Register hidden_reg = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002315 Location receiver = locations->InAt(0);
2316 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2317
Roland Levillain3b359c72015-11-17 19:35:12 +00002318 // Set the hidden argument. This is safe to do this here, as R12
2319 // won't be modified thereafter, before the `blx` (call) instruction.
2320 DCHECK_EQ(R12, hidden_reg);
2321 __ LoadImmediate(hidden_reg, invoke->GetDexMethodIndex());
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002322
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002323 if (receiver.IsStackSlot()) {
2324 __ LoadFromOffset(kLoadWord, temp, SP, receiver.GetStackIndex());
Roland Levillain3b359c72015-11-17 19:35:12 +00002325 // /* HeapReference<Class> */ temp = temp->klass_
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002326 __ LoadFromOffset(kLoadWord, temp, temp, class_offset);
2327 } else {
Roland Levillain3b359c72015-11-17 19:35:12 +00002328 // /* HeapReference<Class> */ temp = receiver->klass_
Roland Levillain271ab9c2014-11-27 15:23:57 +00002329 __ LoadFromOffset(kLoadWord, temp, receiver.AsRegister<Register>(), class_offset);
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002330 }
Calin Juravle77520bc2015-01-12 18:45:46 +00002331 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain3b359c72015-11-17 19:35:12 +00002332 // Instead of simply (possibly) unpoisoning `temp` here, we should
2333 // emit a read barrier for the previous class reference load.
2334 // However this is not required in practice, as this is an
2335 // intermediate/temporary reference and because the current
2336 // concurrent copying collector keeps the from-space memory
2337 // intact/accessible until the end of the marking phase (the
2338 // concurrent copying collector may not in the future).
Roland Levillain4d027112015-07-01 15:41:14 +01002339 __ MaybeUnpoisonHeapReference(temp);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002340 __ LoadFromOffset(kLoadWord, temp, temp,
2341 mirror::Class::ImtPtrOffset(kArmPointerSize).Uint32Value());
2342 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00002343 invoke->GetImtIndex(), kArmPointerSize));
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002344 // temp = temp->GetImtEntryAt(method_offset);
Artem Udovichenkoa62cb9b2016-06-30 09:18:25 +00002345 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
Roland Levillain3b359c72015-11-17 19:35:12 +00002346 uint32_t entry_point =
Andreas Gampe542451c2016-07-26 09:02:02 -07002347 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArmPointerSize).Int32Value();
Nicolas Geoffray52839d12014-11-07 17:47:25 +00002348 // LR = temp->GetEntryPoint();
2349 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
2350 // LR();
2351 __ blx(LR);
2352 DCHECK(!codegen_->IsLeafMethod());
2353 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2354}
2355
Roland Levillain88cb1752014-10-20 16:36:47 +01002356void LocationsBuilderARM::VisitNeg(HNeg* neg) {
2357 LocationSummary* locations =
2358 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2359 switch (neg->GetResultType()) {
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002360 case Primitive::kPrimInt: {
Roland Levillain88cb1752014-10-20 16:36:47 +01002361 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002362 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2363 break;
2364 }
2365 case Primitive::kPrimLong: {
2366 locations->SetInAt(0, Location::RequiresRegister());
2367 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01002368 break;
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002369 }
Roland Levillain88cb1752014-10-20 16:36:47 +01002370
Roland Levillain88cb1752014-10-20 16:36:47 +01002371 case Primitive::kPrimFloat:
2372 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00002373 locations->SetInAt(0, Location::RequiresFpuRegister());
2374 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillain88cb1752014-10-20 16:36:47 +01002375 break;
2376
2377 default:
2378 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2379 }
2380}
2381
2382void InstructionCodeGeneratorARM::VisitNeg(HNeg* neg) {
2383 LocationSummary* locations = neg->GetLocations();
2384 Location out = locations->Out();
2385 Location in = locations->InAt(0);
2386 switch (neg->GetResultType()) {
2387 case Primitive::kPrimInt:
2388 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002389 __ rsb(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(0));
Roland Levillain88cb1752014-10-20 16:36:47 +01002390 break;
2391
2392 case Primitive::kPrimLong:
Roland Levillain2e07b4f2014-10-23 18:12:09 +01002393 DCHECK(in.IsRegisterPair());
2394 // out.lo = 0 - in.lo (and update the carry/borrow (C) flag)
2395 __ rsbs(out.AsRegisterPairLow<Register>(),
2396 in.AsRegisterPairLow<Register>(),
2397 ShifterOperand(0));
2398 // We cannot emit an RSC (Reverse Subtract with Carry)
2399 // instruction here, as it does not exist in the Thumb-2
2400 // instruction set. We use the following approach
2401 // using SBC and SUB instead.
2402 //
2403 // out.hi = -C
2404 __ sbc(out.AsRegisterPairHigh<Register>(),
2405 out.AsRegisterPairHigh<Register>(),
2406 ShifterOperand(out.AsRegisterPairHigh<Register>()));
2407 // out.hi = out.hi - in.hi
2408 __ sub(out.AsRegisterPairHigh<Register>(),
2409 out.AsRegisterPairHigh<Register>(),
2410 ShifterOperand(in.AsRegisterPairHigh<Register>()));
2411 break;
2412
Roland Levillain88cb1752014-10-20 16:36:47 +01002413 case Primitive::kPrimFloat:
Roland Levillain3dbcb382014-10-28 17:30:07 +00002414 DCHECK(in.IsFpuRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002415 __ vnegs(out.AsFpuRegister<SRegister>(), in.AsFpuRegister<SRegister>());
Roland Levillain3dbcb382014-10-28 17:30:07 +00002416 break;
2417
Roland Levillain88cb1752014-10-20 16:36:47 +01002418 case Primitive::kPrimDouble:
Roland Levillain3dbcb382014-10-28 17:30:07 +00002419 DCHECK(in.IsFpuRegisterPair());
2420 __ vnegd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2421 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain88cb1752014-10-20 16:36:47 +01002422 break;
2423
2424 default:
2425 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2426 }
2427}
2428
Roland Levillaindff1f282014-11-05 14:15:05 +00002429void LocationsBuilderARM::VisitTypeConversion(HTypeConversion* conversion) {
Roland Levillaindff1f282014-11-05 14:15:05 +00002430 Primitive::Type result_type = conversion->GetResultType();
2431 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002432 DCHECK_NE(result_type, input_type);
Roland Levillain624279f2014-12-04 11:54:28 +00002433
Roland Levillain5b3ee562015-04-14 16:02:41 +01002434 // The float-to-long, double-to-long and long-to-float type conversions
2435 // rely on a call to the runtime.
Roland Levillain624279f2014-12-04 11:54:28 +00002436 LocationSummary::CallKind call_kind =
Roland Levillain5b3ee562015-04-14 16:02:41 +01002437 (((input_type == Primitive::kPrimFloat || input_type == Primitive::kPrimDouble)
2438 && result_type == Primitive::kPrimLong)
2439 || (input_type == Primitive::kPrimLong && result_type == Primitive::kPrimFloat))
Serban Constantinescu54ff4822016-07-07 18:03:19 +01002440 ? LocationSummary::kCallOnMainOnly
Roland Levillain624279f2014-12-04 11:54:28 +00002441 : LocationSummary::kNoCall;
2442 LocationSummary* locations =
2443 new (GetGraph()->GetArena()) LocationSummary(conversion, call_kind);
2444
David Brazdilb2bd1c52015-03-25 11:17:37 +00002445 // The Java language does not allow treating boolean as an integral type but
2446 // our bit representation makes it safe.
David Brazdil46e2a392015-03-16 17:31:52 +00002447
Roland Levillaindff1f282014-11-05 14:15:05 +00002448 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002449 case Primitive::kPrimByte:
2450 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002451 case Primitive::kPrimLong:
2452 // Type conversion from long to byte is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002453 case Primitive::kPrimBoolean:
2454 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002455 case Primitive::kPrimShort:
2456 case Primitive::kPrimInt:
2457 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002458 // Processing a Dex `int-to-byte' instruction.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002459 locations->SetInAt(0, Location::RequiresRegister());
2460 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2461 break;
2462
2463 default:
2464 LOG(FATAL) << "Unexpected type conversion from " << input_type
2465 << " to " << result_type;
2466 }
2467 break;
2468
Roland Levillain01a8d712014-11-14 16:27:39 +00002469 case Primitive::kPrimShort:
2470 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002471 case Primitive::kPrimLong:
2472 // Type conversion from long to short is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002473 case Primitive::kPrimBoolean:
2474 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002475 case Primitive::kPrimByte:
2476 case Primitive::kPrimInt:
2477 case Primitive::kPrimChar:
2478 // Processing a Dex `int-to-short' instruction.
2479 locations->SetInAt(0, Location::RequiresRegister());
2480 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2481 break;
2482
2483 default:
2484 LOG(FATAL) << "Unexpected type conversion from " << input_type
2485 << " to " << result_type;
2486 }
2487 break;
2488
Roland Levillain946e1432014-11-11 17:35:19 +00002489 case Primitive::kPrimInt:
2490 switch (input_type) {
2491 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002492 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002493 locations->SetInAt(0, Location::Any());
2494 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2495 break;
2496
2497 case Primitive::kPrimFloat:
Roland Levillain3f8f9362014-12-02 17:45:01 +00002498 // Processing a Dex `float-to-int' instruction.
2499 locations->SetInAt(0, Location::RequiresFpuRegister());
2500 locations->SetOut(Location::RequiresRegister());
2501 locations->AddTemp(Location::RequiresFpuRegister());
2502 break;
2503
Roland Levillain946e1432014-11-11 17:35:19 +00002504 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002505 // Processing a Dex `double-to-int' instruction.
2506 locations->SetInAt(0, Location::RequiresFpuRegister());
2507 locations->SetOut(Location::RequiresRegister());
2508 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain946e1432014-11-11 17:35:19 +00002509 break;
2510
2511 default:
2512 LOG(FATAL) << "Unexpected type conversion from " << input_type
2513 << " to " << result_type;
2514 }
2515 break;
2516
Roland Levillaindff1f282014-11-05 14:15:05 +00002517 case Primitive::kPrimLong:
2518 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002519 case Primitive::kPrimBoolean:
2520 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002521 case Primitive::kPrimByte:
2522 case Primitive::kPrimShort:
2523 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002524 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002525 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002526 locations->SetInAt(0, Location::RequiresRegister());
2527 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2528 break;
2529
Roland Levillain624279f2014-12-04 11:54:28 +00002530 case Primitive::kPrimFloat: {
2531 // Processing a Dex `float-to-long' instruction.
2532 InvokeRuntimeCallingConvention calling_convention;
2533 locations->SetInAt(0, Location::FpuRegisterLocation(
2534 calling_convention.GetFpuRegisterAt(0)));
2535 locations->SetOut(Location::RegisterPairLocation(R0, R1));
2536 break;
2537 }
2538
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002539 case Primitive::kPrimDouble: {
2540 // Processing a Dex `double-to-long' instruction.
2541 InvokeRuntimeCallingConvention calling_convention;
2542 locations->SetInAt(0, Location::FpuRegisterPairLocation(
2543 calling_convention.GetFpuRegisterAt(0),
2544 calling_convention.GetFpuRegisterAt(1)));
2545 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Roland Levillaindff1f282014-11-05 14:15:05 +00002546 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002547 }
Roland Levillaindff1f282014-11-05 14:15:05 +00002548
2549 default:
2550 LOG(FATAL) << "Unexpected type conversion from " << input_type
2551 << " to " << result_type;
2552 }
2553 break;
2554
Roland Levillain981e4542014-11-14 11:47:14 +00002555 case Primitive::kPrimChar:
2556 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002557 case Primitive::kPrimLong:
2558 // Type conversion from long to char is a result of code transformations.
David Brazdil46e2a392015-03-16 17:31:52 +00002559 case Primitive::kPrimBoolean:
2560 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002561 case Primitive::kPrimByte:
2562 case Primitive::kPrimShort:
2563 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002564 // Processing a Dex `int-to-char' instruction.
2565 locations->SetInAt(0, Location::RequiresRegister());
2566 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2567 break;
2568
2569 default:
2570 LOG(FATAL) << "Unexpected type conversion from " << input_type
2571 << " to " << result_type;
2572 }
2573 break;
2574
Roland Levillaindff1f282014-11-05 14:15:05 +00002575 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002576 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002577 case Primitive::kPrimBoolean:
2578 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002579 case Primitive::kPrimByte:
2580 case Primitive::kPrimShort:
2581 case Primitive::kPrimInt:
2582 case Primitive::kPrimChar:
2583 // Processing a Dex `int-to-float' instruction.
2584 locations->SetInAt(0, Location::RequiresRegister());
2585 locations->SetOut(Location::RequiresFpuRegister());
2586 break;
2587
Roland Levillain5b3ee562015-04-14 16:02:41 +01002588 case Primitive::kPrimLong: {
Roland Levillain6d0e4832014-11-27 18:31:21 +00002589 // Processing a Dex `long-to-float' instruction.
Roland Levillain5b3ee562015-04-14 16:02:41 +01002590 InvokeRuntimeCallingConvention calling_convention;
2591 locations->SetInAt(0, Location::RegisterPairLocation(
2592 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
2593 locations->SetOut(Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
Roland Levillain6d0e4832014-11-27 18:31:21 +00002594 break;
Roland Levillain5b3ee562015-04-14 16:02:41 +01002595 }
Roland Levillain6d0e4832014-11-27 18:31:21 +00002596
Roland Levillaincff13742014-11-17 14:32:17 +00002597 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002598 // Processing a Dex `double-to-float' instruction.
2599 locations->SetInAt(0, Location::RequiresFpuRegister());
2600 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002601 break;
2602
2603 default:
2604 LOG(FATAL) << "Unexpected type conversion from " << input_type
2605 << " to " << result_type;
2606 };
2607 break;
2608
Roland Levillaindff1f282014-11-05 14:15:05 +00002609 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002610 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002611 case Primitive::kPrimBoolean:
2612 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002613 case Primitive::kPrimByte:
2614 case Primitive::kPrimShort:
2615 case Primitive::kPrimInt:
2616 case Primitive::kPrimChar:
2617 // Processing a Dex `int-to-double' instruction.
2618 locations->SetInAt(0, Location::RequiresRegister());
2619 locations->SetOut(Location::RequiresFpuRegister());
2620 break;
2621
2622 case Primitive::kPrimLong:
Roland Levillain647b9ed2014-11-27 12:06:00 +00002623 // Processing a Dex `long-to-double' instruction.
2624 locations->SetInAt(0, Location::RequiresRegister());
2625 locations->SetOut(Location::RequiresFpuRegister());
Roland Levillain682393c2015-04-14 15:57:52 +01002626 locations->AddTemp(Location::RequiresFpuRegister());
Roland Levillain647b9ed2014-11-27 12:06:00 +00002627 locations->AddTemp(Location::RequiresFpuRegister());
2628 break;
2629
Roland Levillaincff13742014-11-17 14:32:17 +00002630 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002631 // Processing a Dex `float-to-double' instruction.
2632 locations->SetInAt(0, Location::RequiresFpuRegister());
2633 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Roland Levillaincff13742014-11-17 14:32:17 +00002634 break;
2635
2636 default:
2637 LOG(FATAL) << "Unexpected type conversion from " << input_type
2638 << " to " << result_type;
2639 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002640 break;
2641
2642 default:
2643 LOG(FATAL) << "Unexpected type conversion from " << input_type
2644 << " to " << result_type;
2645 }
2646}
2647
2648void InstructionCodeGeneratorARM::VisitTypeConversion(HTypeConversion* conversion) {
2649 LocationSummary* locations = conversion->GetLocations();
2650 Location out = locations->Out();
2651 Location in = locations->InAt(0);
2652 Primitive::Type result_type = conversion->GetResultType();
2653 Primitive::Type input_type = conversion->GetInputType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002654 DCHECK_NE(result_type, input_type);
Roland Levillaindff1f282014-11-05 14:15:05 +00002655 switch (result_type) {
Roland Levillain51d3fc42014-11-13 14:11:42 +00002656 case Primitive::kPrimByte:
2657 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002658 case Primitive::kPrimLong:
2659 // Type conversion from long to byte is a result of code transformations.
2660 __ sbfx(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>(), 0, 8);
2661 break;
David Brazdil46e2a392015-03-16 17:31:52 +00002662 case Primitive::kPrimBoolean:
2663 // Boolean input is a result of code transformations.
Roland Levillain51d3fc42014-11-13 14:11:42 +00002664 case Primitive::kPrimShort:
2665 case Primitive::kPrimInt:
2666 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002667 // Processing a Dex `int-to-byte' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002668 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 8);
Roland Levillain51d3fc42014-11-13 14:11:42 +00002669 break;
2670
2671 default:
2672 LOG(FATAL) << "Unexpected type conversion from " << input_type
2673 << " to " << result_type;
2674 }
2675 break;
2676
Roland Levillain01a8d712014-11-14 16:27:39 +00002677 case Primitive::kPrimShort:
2678 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002679 case Primitive::kPrimLong:
2680 // Type conversion from long to short is a result of code transformations.
2681 __ sbfx(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>(), 0, 16);
2682 break;
David Brazdil46e2a392015-03-16 17:31:52 +00002683 case Primitive::kPrimBoolean:
2684 // Boolean input is a result of code transformations.
Roland Levillain01a8d712014-11-14 16:27:39 +00002685 case Primitive::kPrimByte:
2686 case Primitive::kPrimInt:
2687 case Primitive::kPrimChar:
2688 // Processing a Dex `int-to-short' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002689 __ sbfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain01a8d712014-11-14 16:27:39 +00002690 break;
2691
2692 default:
2693 LOG(FATAL) << "Unexpected type conversion from " << input_type
2694 << " to " << result_type;
2695 }
2696 break;
2697
Roland Levillain946e1432014-11-11 17:35:19 +00002698 case Primitive::kPrimInt:
2699 switch (input_type) {
2700 case Primitive::kPrimLong:
Roland Levillain981e4542014-11-14 11:47:14 +00002701 // Processing a Dex `long-to-int' instruction.
Roland Levillain946e1432014-11-11 17:35:19 +00002702 DCHECK(out.IsRegister());
2703 if (in.IsRegisterPair()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002704 __ Mov(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>());
Roland Levillain946e1432014-11-11 17:35:19 +00002705 } else if (in.IsDoubleStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002706 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), SP, in.GetStackIndex());
Roland Levillain946e1432014-11-11 17:35:19 +00002707 } else {
2708 DCHECK(in.IsConstant());
2709 DCHECK(in.GetConstant()->IsLongConstant());
2710 int64_t value = in.GetConstant()->AsLongConstant()->GetValue();
Roland Levillain271ab9c2014-11-27 15:23:57 +00002711 __ LoadImmediate(out.AsRegister<Register>(), static_cast<int32_t>(value));
Roland Levillain946e1432014-11-11 17:35:19 +00002712 }
2713 break;
2714
Roland Levillain3f8f9362014-12-02 17:45:01 +00002715 case Primitive::kPrimFloat: {
2716 // Processing a Dex `float-to-int' instruction.
2717 SRegister temp = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
Vladimir Marko8c5d3102016-07-07 12:07:44 +01002718 __ vcvtis(temp, in.AsFpuRegister<SRegister>());
Roland Levillain3f8f9362014-12-02 17:45:01 +00002719 __ vmovrs(out.AsRegister<Register>(), temp);
2720 break;
2721 }
2722
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002723 case Primitive::kPrimDouble: {
2724 // Processing a Dex `double-to-int' instruction.
2725 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
Vladimir Marko8c5d3102016-07-07 12:07:44 +01002726 __ vcvtid(temp_s, FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002727 __ vmovrs(out.AsRegister<Register>(), temp_s);
Roland Levillain946e1432014-11-11 17:35:19 +00002728 break;
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002729 }
Roland Levillain946e1432014-11-11 17:35:19 +00002730
2731 default:
2732 LOG(FATAL) << "Unexpected type conversion from " << input_type
2733 << " to " << result_type;
2734 }
2735 break;
2736
Roland Levillaindff1f282014-11-05 14:15:05 +00002737 case Primitive::kPrimLong:
2738 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002739 case Primitive::kPrimBoolean:
2740 // Boolean input is a result of code transformations.
Roland Levillaindff1f282014-11-05 14:15:05 +00002741 case Primitive::kPrimByte:
2742 case Primitive::kPrimShort:
2743 case Primitive::kPrimInt:
Roland Levillain666c7322014-11-10 13:39:43 +00002744 case Primitive::kPrimChar:
Roland Levillain981e4542014-11-14 11:47:14 +00002745 // Processing a Dex `int-to-long' instruction.
Roland Levillaindff1f282014-11-05 14:15:05 +00002746 DCHECK(out.IsRegisterPair());
2747 DCHECK(in.IsRegister());
Roland Levillain271ab9c2014-11-27 15:23:57 +00002748 __ Mov(out.AsRegisterPairLow<Register>(), in.AsRegister<Register>());
Roland Levillaindff1f282014-11-05 14:15:05 +00002749 // Sign extension.
2750 __ Asr(out.AsRegisterPairHigh<Register>(),
2751 out.AsRegisterPairLow<Register>(),
2752 31);
2753 break;
2754
2755 case Primitive::kPrimFloat:
Roland Levillain624279f2014-12-04 11:54:28 +00002756 // Processing a Dex `float-to-long' instruction.
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01002757 codegen_->InvokeRuntime(kQuickF2l, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002758 CheckEntrypointTypes<kQuickF2l, int64_t, float>();
Roland Levillain624279f2014-12-04 11:54:28 +00002759 break;
2760
Roland Levillaindff1f282014-11-05 14:15:05 +00002761 case Primitive::kPrimDouble:
Roland Levillain4c0b61f2014-12-05 12:06:01 +00002762 // Processing a Dex `double-to-long' instruction.
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01002763 codegen_->InvokeRuntime(kQuickD2l, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002764 CheckEntrypointTypes<kQuickD2l, int64_t, double>();
Roland Levillaindff1f282014-11-05 14:15:05 +00002765 break;
2766
2767 default:
2768 LOG(FATAL) << "Unexpected type conversion from " << input_type
2769 << " to " << result_type;
2770 }
2771 break;
2772
Roland Levillain981e4542014-11-14 11:47:14 +00002773 case Primitive::kPrimChar:
2774 switch (input_type) {
Vladimir Markob52bbde2016-02-12 12:06:05 +00002775 case Primitive::kPrimLong:
2776 // Type conversion from long to char is a result of code transformations.
2777 __ ubfx(out.AsRegister<Register>(), in.AsRegisterPairLow<Register>(), 0, 16);
2778 break;
David Brazdil46e2a392015-03-16 17:31:52 +00002779 case Primitive::kPrimBoolean:
2780 // Boolean input is a result of code transformations.
Roland Levillain981e4542014-11-14 11:47:14 +00002781 case Primitive::kPrimByte:
2782 case Primitive::kPrimShort:
2783 case Primitive::kPrimInt:
Roland Levillain981e4542014-11-14 11:47:14 +00002784 // Processing a Dex `int-to-char' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002785 __ ubfx(out.AsRegister<Register>(), in.AsRegister<Register>(), 0, 16);
Roland Levillain981e4542014-11-14 11:47:14 +00002786 break;
2787
2788 default:
2789 LOG(FATAL) << "Unexpected type conversion from " << input_type
2790 << " to " << result_type;
2791 }
2792 break;
2793
Roland Levillaindff1f282014-11-05 14:15:05 +00002794 case Primitive::kPrimFloat:
Roland Levillaincff13742014-11-17 14:32:17 +00002795 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002796 case Primitive::kPrimBoolean:
2797 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002798 case Primitive::kPrimByte:
2799 case Primitive::kPrimShort:
2800 case Primitive::kPrimInt:
2801 case Primitive::kPrimChar: {
2802 // Processing a Dex `int-to-float' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002803 __ vmovsr(out.AsFpuRegister<SRegister>(), in.AsRegister<Register>());
2804 __ vcvtsi(out.AsFpuRegister<SRegister>(), out.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002805 break;
2806 }
2807
Roland Levillain5b3ee562015-04-14 16:02:41 +01002808 case Primitive::kPrimLong:
Roland Levillain6d0e4832014-11-27 18:31:21 +00002809 // Processing a Dex `long-to-float' instruction.
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01002810 codegen_->InvokeRuntime(kQuickL2f, conversion, conversion->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00002811 CheckEntrypointTypes<kQuickL2f, float, int64_t>();
Roland Levillain6d0e4832014-11-27 18:31:21 +00002812 break;
Roland Levillain6d0e4832014-11-27 18:31:21 +00002813
Roland Levillaincff13742014-11-17 14:32:17 +00002814 case Primitive::kPrimDouble:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002815 // Processing a Dex `double-to-float' instruction.
2816 __ vcvtsd(out.AsFpuRegister<SRegister>(),
2817 FromLowSToD(in.AsFpuRegisterPairLow<SRegister>()));
Roland Levillaincff13742014-11-17 14:32:17 +00002818 break;
2819
2820 default:
2821 LOG(FATAL) << "Unexpected type conversion from " << input_type
2822 << " to " << result_type;
2823 };
2824 break;
2825
Roland Levillaindff1f282014-11-05 14:15:05 +00002826 case Primitive::kPrimDouble:
Roland Levillaincff13742014-11-17 14:32:17 +00002827 switch (input_type) {
David Brazdil46e2a392015-03-16 17:31:52 +00002828 case Primitive::kPrimBoolean:
2829 // Boolean input is a result of code transformations.
Roland Levillaincff13742014-11-17 14:32:17 +00002830 case Primitive::kPrimByte:
2831 case Primitive::kPrimShort:
2832 case Primitive::kPrimInt:
2833 case Primitive::kPrimChar: {
2834 // Processing a Dex `int-to-double' instruction.
Roland Levillain271ab9c2014-11-27 15:23:57 +00002835 __ vmovsr(out.AsFpuRegisterPairLow<SRegister>(), in.AsRegister<Register>());
Roland Levillaincff13742014-11-17 14:32:17 +00002836 __ vcvtdi(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2837 out.AsFpuRegisterPairLow<SRegister>());
2838 break;
2839 }
2840
Roland Levillain647b9ed2014-11-27 12:06:00 +00002841 case Primitive::kPrimLong: {
2842 // Processing a Dex `long-to-double' instruction.
2843 Register low = in.AsRegisterPairLow<Register>();
2844 Register high = in.AsRegisterPairHigh<Register>();
2845 SRegister out_s = out.AsFpuRegisterPairLow<SRegister>();
2846 DRegister out_d = FromLowSToD(out_s);
Roland Levillain682393c2015-04-14 15:57:52 +01002847 SRegister temp_s = locations->GetTemp(0).AsFpuRegisterPairLow<SRegister>();
Roland Levillain647b9ed2014-11-27 12:06:00 +00002848 DRegister temp_d = FromLowSToD(temp_s);
Roland Levillain682393c2015-04-14 15:57:52 +01002849 SRegister constant_s = locations->GetTemp(1).AsFpuRegisterPairLow<SRegister>();
2850 DRegister constant_d = FromLowSToD(constant_s);
Roland Levillain647b9ed2014-11-27 12:06:00 +00002851
Roland Levillain682393c2015-04-14 15:57:52 +01002852 // temp_d = int-to-double(high)
2853 __ vmovsr(temp_s, high);
2854 __ vcvtdi(temp_d, temp_s);
2855 // constant_d = k2Pow32EncodingForDouble
2856 __ LoadDImmediate(constant_d, bit_cast<double, int64_t>(k2Pow32EncodingForDouble));
2857 // out_d = unsigned-to-double(low)
2858 __ vmovsr(out_s, low);
2859 __ vcvtdu(out_d, out_s);
2860 // out_d += temp_d * constant_d
2861 __ vmlad(out_d, temp_d, constant_d);
Roland Levillain647b9ed2014-11-27 12:06:00 +00002862 break;
2863 }
2864
Roland Levillaincff13742014-11-17 14:32:17 +00002865 case Primitive::kPrimFloat:
Roland Levillain8964e2b2014-12-04 12:10:50 +00002866 // Processing a Dex `float-to-double' instruction.
2867 __ vcvtds(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2868 in.AsFpuRegister<SRegister>());
Roland Levillaincff13742014-11-17 14:32:17 +00002869 break;
2870
2871 default:
2872 LOG(FATAL) << "Unexpected type conversion from " << input_type
2873 << " to " << result_type;
2874 };
Roland Levillaindff1f282014-11-05 14:15:05 +00002875 break;
2876
2877 default:
2878 LOG(FATAL) << "Unexpected type conversion from " << input_type
2879 << " to " << result_type;
2880 }
2881}
2882
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002883void LocationsBuilderARM::VisitAdd(HAdd* add) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002884 LocationSummary* locations =
2885 new (GetGraph()->GetArena()) LocationSummary(add, LocationSummary::kNoCall);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002886 switch (add->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002887 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002888 locations->SetInAt(0, Location::RequiresRegister());
2889 locations->SetInAt(1, Location::RegisterOrConstant(add->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002890 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2891 break;
2892 }
2893
2894 case Primitive::kPrimLong: {
2895 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Marko59751a72016-08-05 14:37:27 +01002896 locations->SetInAt(1, ArmEncodableConstantOrRegister(add->InputAt(1), ADD));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002897 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002898 break;
2899 }
2900
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002901 case Primitive::kPrimFloat:
2902 case Primitive::kPrimDouble: {
2903 locations->SetInAt(0, Location::RequiresFpuRegister());
2904 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002905 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002906 break;
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002907 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002908
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002909 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002910 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002911 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002912}
2913
2914void InstructionCodeGeneratorARM::VisitAdd(HAdd* add) {
2915 LocationSummary* locations = add->GetLocations();
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002916 Location out = locations->Out();
2917 Location first = locations->InAt(0);
2918 Location second = locations->InAt(1);
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002919 switch (add->GetResultType()) {
2920 case Primitive::kPrimInt:
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002921 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00002922 __ add(out.AsRegister<Register>(),
2923 first.AsRegister<Register>(),
2924 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002925 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00002926 __ AddConstant(out.AsRegister<Register>(),
2927 first.AsRegister<Register>(),
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01002928 second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01002929 }
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002930 break;
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002931
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002932 case Primitive::kPrimLong: {
Vladimir Marko59751a72016-08-05 14:37:27 +01002933 if (second.IsConstant()) {
2934 uint64_t value = static_cast<uint64_t>(Int64FromConstant(second.GetConstant()));
2935 GenerateAddLongConst(out, first, value);
2936 } else {
2937 DCHECK(second.IsRegisterPair());
2938 __ adds(out.AsRegisterPairLow<Register>(),
2939 first.AsRegisterPairLow<Register>(),
2940 ShifterOperand(second.AsRegisterPairLow<Register>()));
2941 __ adc(out.AsRegisterPairHigh<Register>(),
2942 first.AsRegisterPairHigh<Register>(),
2943 ShifterOperand(second.AsRegisterPairHigh<Register>()));
2944 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002945 break;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002946 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002947
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002948 case Primitive::kPrimFloat:
Roland Levillain199f3362014-11-27 17:15:16 +00002949 __ vadds(out.AsFpuRegister<SRegister>(),
2950 first.AsFpuRegister<SRegister>(),
2951 second.AsFpuRegister<SRegister>());
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002952 break;
2953
2954 case Primitive::kPrimDouble:
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00002955 __ vaddd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
2956 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
2957 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002958 break;
2959
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002960 default:
Nicolas Geoffray7fb49da2014-10-06 09:12:41 +01002961 LOG(FATAL) << "Unexpected add type " << add->GetResultType();
Nicolas Geoffrayd8ee7372014-03-28 15:43:40 +00002962 }
2963}
2964
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002965void LocationsBuilderARM::VisitSub(HSub* sub) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01002966 LocationSummary* locations =
2967 new (GetGraph()->GetArena()) LocationSummary(sub, LocationSummary::kNoCall);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002968 switch (sub->GetResultType()) {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002969 case Primitive::kPrimInt: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01002970 locations->SetInAt(0, Location::RequiresRegister());
2971 locations->SetInAt(1, Location::RegisterOrConstant(sub->InputAt(1)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002972 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2973 break;
2974 }
2975
2976 case Primitive::kPrimLong: {
2977 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Marko59751a72016-08-05 14:37:27 +01002978 locations->SetInAt(1, ArmEncodableConstantOrRegister(sub->InputAt(1), SUB));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00002979 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002980 break;
2981 }
Calin Juravle11351682014-10-23 15:38:15 +01002982 case Primitive::kPrimFloat:
2983 case Primitive::kPrimDouble: {
2984 locations->SetInAt(0, Location::RequiresFpuRegister());
2985 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00002986 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01002987 break;
Calin Juravle11351682014-10-23 15:38:15 +01002988 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002989 default:
Calin Juravle11351682014-10-23 15:38:15 +01002990 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002991 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002992}
2993
2994void InstructionCodeGeneratorARM::VisitSub(HSub* sub) {
2995 LocationSummary* locations = sub->GetLocations();
Calin Juravle11351682014-10-23 15:38:15 +01002996 Location out = locations->Out();
2997 Location first = locations->InAt(0);
2998 Location second = locations->InAt(1);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01002999 switch (sub->GetResultType()) {
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003000 case Primitive::kPrimInt: {
Calin Juravle11351682014-10-23 15:38:15 +01003001 if (second.IsRegister()) {
Roland Levillain199f3362014-11-27 17:15:16 +00003002 __ sub(out.AsRegister<Register>(),
3003 first.AsRegister<Register>(),
3004 ShifterOperand(second.AsRegister<Register>()));
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003005 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003006 __ AddConstant(out.AsRegister<Register>(),
3007 first.AsRegister<Register>(),
Calin Juravle11351682014-10-23 15:38:15 +01003008 -second.GetConstant()->AsIntConstant()->GetValue());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003009 }
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003010 break;
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01003011 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003012
Calin Juravle11351682014-10-23 15:38:15 +01003013 case Primitive::kPrimLong: {
Vladimir Marko59751a72016-08-05 14:37:27 +01003014 if (second.IsConstant()) {
3015 uint64_t value = static_cast<uint64_t>(Int64FromConstant(second.GetConstant()));
3016 GenerateAddLongConst(out, first, -value);
3017 } else {
3018 DCHECK(second.IsRegisterPair());
3019 __ subs(out.AsRegisterPairLow<Register>(),
3020 first.AsRegisterPairLow<Register>(),
3021 ShifterOperand(second.AsRegisterPairLow<Register>()));
3022 __ sbc(out.AsRegisterPairHigh<Register>(),
3023 first.AsRegisterPairHigh<Register>(),
3024 ShifterOperand(second.AsRegisterPairHigh<Register>()));
3025 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003026 break;
Calin Juravle11351682014-10-23 15:38:15 +01003027 }
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003028
Calin Juravle11351682014-10-23 15:38:15 +01003029 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00003030 __ vsubs(out.AsFpuRegister<SRegister>(),
3031 first.AsFpuRegister<SRegister>(),
3032 second.AsFpuRegister<SRegister>());
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003033 break;
Calin Juravle11351682014-10-23 15:38:15 +01003034 }
3035
3036 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00003037 __ vsubd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
3038 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
3039 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravle11351682014-10-23 15:38:15 +01003040 break;
3041 }
3042
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003043
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003044 default:
Calin Juravle11351682014-10-23 15:38:15 +01003045 LOG(FATAL) << "Unexpected sub type " << sub->GetResultType();
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003046 }
3047}
3048
Calin Juravle34bacdf2014-10-07 20:23:36 +01003049void LocationsBuilderARM::VisitMul(HMul* mul) {
3050 LocationSummary* locations =
3051 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
3052 switch (mul->GetResultType()) {
3053 case Primitive::kPrimInt:
3054 case Primitive::kPrimLong: {
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003055 locations->SetInAt(0, Location::RequiresRegister());
3056 locations->SetInAt(1, Location::RequiresRegister());
3057 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01003058 break;
3059 }
3060
Calin Juravleb5bfa962014-10-21 18:02:24 +01003061 case Primitive::kPrimFloat:
3062 case Primitive::kPrimDouble: {
3063 locations->SetInAt(0, Location::RequiresFpuRegister());
3064 locations->SetInAt(1, Location::RequiresFpuRegister());
Calin Juravle7c4954d2014-10-28 16:57:40 +00003065 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Calin Juravle34bacdf2014-10-07 20:23:36 +01003066 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003067 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003068
3069 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003070 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003071 }
3072}
3073
3074void InstructionCodeGeneratorARM::VisitMul(HMul* mul) {
3075 LocationSummary* locations = mul->GetLocations();
3076 Location out = locations->Out();
3077 Location first = locations->InAt(0);
3078 Location second = locations->InAt(1);
3079 switch (mul->GetResultType()) {
3080 case Primitive::kPrimInt: {
Roland Levillain199f3362014-11-27 17:15:16 +00003081 __ mul(out.AsRegister<Register>(),
3082 first.AsRegister<Register>(),
3083 second.AsRegister<Register>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003084 break;
3085 }
3086 case Primitive::kPrimLong: {
3087 Register out_hi = out.AsRegisterPairHigh<Register>();
3088 Register out_lo = out.AsRegisterPairLow<Register>();
3089 Register in1_hi = first.AsRegisterPairHigh<Register>();
3090 Register in1_lo = first.AsRegisterPairLow<Register>();
3091 Register in2_hi = second.AsRegisterPairHigh<Register>();
3092 Register in2_lo = second.AsRegisterPairLow<Register>();
3093
3094 // Extra checks to protect caused by the existence of R1_R2.
3095 // The algorithm is wrong if out.hi is either in1.lo or in2.lo:
3096 // (e.g. in1=r0_r1, in2=r2_r3 and out=r1_r2);
3097 DCHECK_NE(out_hi, in1_lo);
3098 DCHECK_NE(out_hi, in2_lo);
3099
3100 // input: in1 - 64 bits, in2 - 64 bits
3101 // output: out
3102 // formula: out.hi : out.lo = (in1.lo * in2.hi + in1.hi * in2.lo)* 2^32 + in1.lo * in2.lo
3103 // parts: out.hi = in1.lo * in2.hi + in1.hi * in2.lo + (in1.lo * in2.lo)[63:32]
3104 // parts: out.lo = (in1.lo * in2.lo)[31:0]
3105
3106 // IP <- in1.lo * in2.hi
3107 __ mul(IP, in1_lo, in2_hi);
3108 // out.hi <- in1.lo * in2.hi + in1.hi * in2.lo
3109 __ mla(out_hi, in1_hi, in2_lo, IP);
3110 // out.lo <- (in1.lo * in2.lo)[31:0];
3111 __ umull(out_lo, IP, in1_lo, in2_lo);
3112 // out.hi <- in2.hi * in1.lo + in2.lo * in1.hi + (in1.lo * in2.lo)[63:32]
3113 __ add(out_hi, out_hi, ShifterOperand(IP));
3114 break;
3115 }
Calin Juravleb5bfa962014-10-21 18:02:24 +01003116
3117 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00003118 __ vmuls(out.AsFpuRegister<SRegister>(),
3119 first.AsFpuRegister<SRegister>(),
3120 second.AsFpuRegister<SRegister>());
Calin Juravle34bacdf2014-10-07 20:23:36 +01003121 break;
Calin Juravleb5bfa962014-10-21 18:02:24 +01003122 }
3123
3124 case Primitive::kPrimDouble: {
Nicolas Geoffray1ba0f592014-10-27 15:14:55 +00003125 __ vmuld(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
3126 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
3127 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
Calin Juravleb5bfa962014-10-21 18:02:24 +01003128 break;
3129 }
Calin Juravle34bacdf2014-10-07 20:23:36 +01003130
3131 default:
Calin Juravleb5bfa962014-10-21 18:02:24 +01003132 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
Calin Juravle34bacdf2014-10-07 20:23:36 +01003133 }
3134}
3135
Zheng Xuc6667102015-05-15 16:08:45 +08003136void InstructionCodeGeneratorARM::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
3137 DCHECK(instruction->IsDiv() || instruction->IsRem());
3138 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
3139
3140 LocationSummary* locations = instruction->GetLocations();
3141 Location second = locations->InAt(1);
3142 DCHECK(second.IsConstant());
3143
3144 Register out = locations->Out().AsRegister<Register>();
3145 Register dividend = locations->InAt(0).AsRegister<Register>();
3146 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
3147 DCHECK(imm == 1 || imm == -1);
3148
3149 if (instruction->IsRem()) {
3150 __ LoadImmediate(out, 0);
3151 } else {
3152 if (imm == 1) {
3153 __ Mov(out, dividend);
3154 } else {
3155 __ rsb(out, dividend, ShifterOperand(0));
3156 }
3157 }
3158}
3159
3160void InstructionCodeGeneratorARM::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
3161 DCHECK(instruction->IsDiv() || instruction->IsRem());
3162 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
3163
3164 LocationSummary* locations = instruction->GetLocations();
3165 Location second = locations->InAt(1);
3166 DCHECK(second.IsConstant());
3167
3168 Register out = locations->Out().AsRegister<Register>();
3169 Register dividend = locations->InAt(0).AsRegister<Register>();
3170 Register temp = locations->GetTemp(0).AsRegister<Register>();
3171 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003172 uint32_t abs_imm = static_cast<uint32_t>(AbsOrMin(imm));
Zheng Xuc6667102015-05-15 16:08:45 +08003173 int ctz_imm = CTZ(abs_imm);
3174
3175 if (ctz_imm == 1) {
3176 __ Lsr(temp, dividend, 32 - ctz_imm);
3177 } else {
3178 __ Asr(temp, dividend, 31);
3179 __ Lsr(temp, temp, 32 - ctz_imm);
3180 }
3181 __ add(out, temp, ShifterOperand(dividend));
3182
3183 if (instruction->IsDiv()) {
3184 __ Asr(out, out, ctz_imm);
3185 if (imm < 0) {
3186 __ rsb(out, out, ShifterOperand(0));
3187 }
3188 } else {
3189 __ ubfx(out, out, 0, ctz_imm);
3190 __ sub(out, out, ShifterOperand(temp));
3191 }
3192}
3193
3194void InstructionCodeGeneratorARM::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
3195 DCHECK(instruction->IsDiv() || instruction->IsRem());
3196 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
3197
3198 LocationSummary* locations = instruction->GetLocations();
3199 Location second = locations->InAt(1);
3200 DCHECK(second.IsConstant());
3201
3202 Register out = locations->Out().AsRegister<Register>();
3203 Register dividend = locations->InAt(0).AsRegister<Register>();
3204 Register temp1 = locations->GetTemp(0).AsRegister<Register>();
3205 Register temp2 = locations->GetTemp(1).AsRegister<Register>();
3206 int64_t imm = second.GetConstant()->AsIntConstant()->GetValue();
3207
3208 int64_t magic;
3209 int shift;
3210 CalculateMagicAndShiftForDivRem(imm, false /* is_long */, &magic, &shift);
3211
3212 __ LoadImmediate(temp1, magic);
3213 __ smull(temp2, temp1, dividend, temp1);
3214
3215 if (imm > 0 && magic < 0) {
3216 __ add(temp1, temp1, ShifterOperand(dividend));
3217 } else if (imm < 0 && magic > 0) {
3218 __ sub(temp1, temp1, ShifterOperand(dividend));
3219 }
3220
3221 if (shift != 0) {
3222 __ Asr(temp1, temp1, shift);
3223 }
3224
3225 if (instruction->IsDiv()) {
3226 __ sub(out, temp1, ShifterOperand(temp1, ASR, 31));
3227 } else {
3228 __ sub(temp1, temp1, ShifterOperand(temp1, ASR, 31));
3229 // TODO: Strength reduction for mls.
3230 __ LoadImmediate(temp2, imm);
3231 __ mls(out, temp1, temp2, dividend);
3232 }
3233}
3234
3235void InstructionCodeGeneratorARM::GenerateDivRemConstantIntegral(HBinaryOperation* instruction) {
3236 DCHECK(instruction->IsDiv() || instruction->IsRem());
3237 DCHECK(instruction->GetResultType() == Primitive::kPrimInt);
3238
3239 LocationSummary* locations = instruction->GetLocations();
3240 Location second = locations->InAt(1);
3241 DCHECK(second.IsConstant());
3242
3243 int32_t imm = second.GetConstant()->AsIntConstant()->GetValue();
3244 if (imm == 0) {
3245 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
3246 } else if (imm == 1 || imm == -1) {
3247 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003248 } else if (IsPowerOfTwo(AbsOrMin(imm))) {
Zheng Xuc6667102015-05-15 16:08:45 +08003249 DivRemByPowerOfTwo(instruction);
3250 } else {
3251 DCHECK(imm <= -2 || imm >= 2);
3252 GenerateDivRemWithAnyConstant(instruction);
3253 }
3254}
3255
Calin Juravle7c4954d2014-10-28 16:57:40 +00003256void LocationsBuilderARM::VisitDiv(HDiv* div) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003257 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
3258 if (div->GetResultType() == Primitive::kPrimLong) {
3259 // pLdiv runtime call.
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003260 call_kind = LocationSummary::kCallOnMainOnly;
Zheng Xuc6667102015-05-15 16:08:45 +08003261 } else if (div->GetResultType() == Primitive::kPrimInt && div->InputAt(1)->IsConstant()) {
3262 // sdiv will be replaced by other instruction sequence.
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003263 } else if (div->GetResultType() == Primitive::kPrimInt &&
3264 !codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
3265 // pIdivmod runtime call.
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003266 call_kind = LocationSummary::kCallOnMainOnly;
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003267 }
3268
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003269 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(div, call_kind);
3270
Calin Juravle7c4954d2014-10-28 16:57:40 +00003271 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00003272 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08003273 if (div->InputAt(1)->IsConstant()) {
3274 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Marko13c86fd2015-11-11 12:37:46 +00003275 locations->SetInAt(1, Location::ConstantLocation(div->InputAt(1)->AsConstant()));
Zheng Xuc6667102015-05-15 16:08:45 +08003276 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003277 int32_t value = div->InputAt(1)->AsIntConstant()->GetValue();
3278 if (value == 1 || value == 0 || value == -1) {
Zheng Xuc6667102015-05-15 16:08:45 +08003279 // No temp register required.
3280 } else {
3281 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003282 if (!IsPowerOfTwo(AbsOrMin(value))) {
Zheng Xuc6667102015-05-15 16:08:45 +08003283 locations->AddTemp(Location::RequiresRegister());
3284 }
3285 }
3286 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003287 locations->SetInAt(0, Location::RequiresRegister());
3288 locations->SetInAt(1, Location::RequiresRegister());
3289 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3290 } else {
3291 InvokeRuntimeCallingConvention calling_convention;
3292 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3293 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3294 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
3295 // we only need the former.
3296 locations->SetOut(Location::RegisterLocation(R0));
3297 }
Calin Juravled0d48522014-11-04 16:40:20 +00003298 break;
3299 }
Calin Juravle7c4954d2014-10-28 16:57:40 +00003300 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003301 InvokeRuntimeCallingConvention calling_convention;
3302 locations->SetInAt(0, Location::RegisterPairLocation(
3303 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3304 locations->SetInAt(1, Location::RegisterPairLocation(
3305 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003306 locations->SetOut(Location::RegisterPairLocation(R0, R1));
Calin Juravle7c4954d2014-10-28 16:57:40 +00003307 break;
3308 }
3309 case Primitive::kPrimFloat:
3310 case Primitive::kPrimDouble: {
3311 locations->SetInAt(0, Location::RequiresFpuRegister());
3312 locations->SetInAt(1, Location::RequiresFpuRegister());
3313 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3314 break;
3315 }
3316
3317 default:
3318 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3319 }
3320}
3321
3322void InstructionCodeGeneratorARM::VisitDiv(HDiv* div) {
3323 LocationSummary* locations = div->GetLocations();
3324 Location out = locations->Out();
3325 Location first = locations->InAt(0);
3326 Location second = locations->InAt(1);
3327
3328 switch (div->GetResultType()) {
Calin Juravled0d48522014-11-04 16:40:20 +00003329 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08003330 if (second.IsConstant()) {
3331 GenerateDivRemConstantIntegral(div);
3332 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003333 __ sdiv(out.AsRegister<Register>(),
3334 first.AsRegister<Register>(),
3335 second.AsRegister<Register>());
3336 } else {
3337 InvokeRuntimeCallingConvention calling_convention;
3338 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
3339 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
3340 DCHECK_EQ(R0, out.AsRegister<Register>());
3341
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003342 codegen_->InvokeRuntime(kQuickIdivmod, div, div->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003343 CheckEntrypointTypes<kQuickIdivmod, int32_t, int32_t, int32_t>();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003344 }
Calin Juravled0d48522014-11-04 16:40:20 +00003345 break;
3346 }
3347
Calin Juravle7c4954d2014-10-28 16:57:40 +00003348 case Primitive::kPrimLong: {
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003349 InvokeRuntimeCallingConvention calling_convention;
3350 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegisterPairLow<Register>());
3351 DCHECK_EQ(calling_convention.GetRegisterAt(1), first.AsRegisterPairHigh<Register>());
3352 DCHECK_EQ(calling_convention.GetRegisterAt(2), second.AsRegisterPairLow<Register>());
3353 DCHECK_EQ(calling_convention.GetRegisterAt(3), second.AsRegisterPairHigh<Register>());
3354 DCHECK_EQ(R0, out.AsRegisterPairLow<Register>());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00003355 DCHECK_EQ(R1, out.AsRegisterPairHigh<Register>());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003356
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003357 codegen_->InvokeRuntime(kQuickLdiv, div, div->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003358 CheckEntrypointTypes<kQuickLdiv, int64_t, int64_t, int64_t>();
Calin Juravle7c4954d2014-10-28 16:57:40 +00003359 break;
3360 }
3361
3362 case Primitive::kPrimFloat: {
Roland Levillain199f3362014-11-27 17:15:16 +00003363 __ vdivs(out.AsFpuRegister<SRegister>(),
3364 first.AsFpuRegister<SRegister>(),
3365 second.AsFpuRegister<SRegister>());
Calin Juravle7c4954d2014-10-28 16:57:40 +00003366 break;
3367 }
3368
3369 case Primitive::kPrimDouble: {
3370 __ vdivd(FromLowSToD(out.AsFpuRegisterPairLow<SRegister>()),
3371 FromLowSToD(first.AsFpuRegisterPairLow<SRegister>()),
3372 FromLowSToD(second.AsFpuRegisterPairLow<SRegister>()));
3373 break;
3374 }
3375
3376 default:
3377 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
3378 }
3379}
3380
Calin Juravlebacfec32014-11-14 15:54:36 +00003381void LocationsBuilderARM::VisitRem(HRem* rem) {
Calin Juravled2ec87d2014-12-08 14:24:46 +00003382 Primitive::Type type = rem->GetResultType();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003383
3384 // Most remainders are implemented in the runtime.
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003385 LocationSummary::CallKind call_kind = LocationSummary::kCallOnMainOnly;
Zheng Xuc6667102015-05-15 16:08:45 +08003386 if (rem->GetResultType() == Primitive::kPrimInt && rem->InputAt(1)->IsConstant()) {
3387 // sdiv will be replaced by other instruction sequence.
3388 call_kind = LocationSummary::kNoCall;
3389 } else if ((rem->GetResultType() == Primitive::kPrimInt)
3390 && codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003391 // Have hardware divide instruction for int, do it with three instructions.
3392 call_kind = LocationSummary::kNoCall;
3393 }
3394
Calin Juravlebacfec32014-11-14 15:54:36 +00003395 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
3396
Calin Juravled2ec87d2014-12-08 14:24:46 +00003397 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00003398 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08003399 if (rem->InputAt(1)->IsConstant()) {
3400 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Marko13c86fd2015-11-11 12:37:46 +00003401 locations->SetInAt(1, Location::ConstantLocation(rem->InputAt(1)->AsConstant()));
Zheng Xuc6667102015-05-15 16:08:45 +08003402 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003403 int32_t value = rem->InputAt(1)->AsIntConstant()->GetValue();
3404 if (value == 1 || value == 0 || value == -1) {
Zheng Xuc6667102015-05-15 16:08:45 +08003405 // No temp register required.
3406 } else {
3407 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray68f62892016-01-04 08:39:49 +00003408 if (!IsPowerOfTwo(AbsOrMin(value))) {
Zheng Xuc6667102015-05-15 16:08:45 +08003409 locations->AddTemp(Location::RequiresRegister());
3410 }
3411 }
3412 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003413 locations->SetInAt(0, Location::RequiresRegister());
3414 locations->SetInAt(1, Location::RequiresRegister());
3415 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3416 locations->AddTemp(Location::RequiresRegister());
3417 } else {
3418 InvokeRuntimeCallingConvention calling_convention;
3419 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3420 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3421 // Note: divrem will compute both the quotient and the remainder as the pair R0 and R1, but
3422 // we only need the latter.
3423 locations->SetOut(Location::RegisterLocation(R1));
3424 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003425 break;
3426 }
3427 case Primitive::kPrimLong: {
3428 InvokeRuntimeCallingConvention calling_convention;
3429 locations->SetInAt(0, Location::RegisterPairLocation(
3430 calling_convention.GetRegisterAt(0), calling_convention.GetRegisterAt(1)));
3431 locations->SetInAt(1, Location::RegisterPairLocation(
3432 calling_convention.GetRegisterAt(2), calling_convention.GetRegisterAt(3)));
3433 // The runtime helper puts the output in R2,R3.
3434 locations->SetOut(Location::RegisterPairLocation(R2, R3));
3435 break;
3436 }
Calin Juravled2ec87d2014-12-08 14:24:46 +00003437 case Primitive::kPrimFloat: {
3438 InvokeRuntimeCallingConvention calling_convention;
3439 locations->SetInAt(0, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(0)));
3440 locations->SetInAt(1, Location::FpuRegisterLocation(calling_convention.GetFpuRegisterAt(1)));
3441 locations->SetOut(Location::FpuRegisterLocation(S0));
3442 break;
3443 }
3444
Calin Juravlebacfec32014-11-14 15:54:36 +00003445 case Primitive::kPrimDouble: {
Calin Juravled2ec87d2014-12-08 14:24:46 +00003446 InvokeRuntimeCallingConvention calling_convention;
3447 locations->SetInAt(0, Location::FpuRegisterPairLocation(
3448 calling_convention.GetFpuRegisterAt(0), calling_convention.GetFpuRegisterAt(1)));
3449 locations->SetInAt(1, Location::FpuRegisterPairLocation(
3450 calling_convention.GetFpuRegisterAt(2), calling_convention.GetFpuRegisterAt(3)));
3451 locations->SetOut(Location::Location::FpuRegisterPairLocation(S0, S1));
Calin Juravlebacfec32014-11-14 15:54:36 +00003452 break;
3453 }
3454
3455 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003456 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00003457 }
3458}
3459
3460void InstructionCodeGeneratorARM::VisitRem(HRem* rem) {
3461 LocationSummary* locations = rem->GetLocations();
3462 Location out = locations->Out();
3463 Location first = locations->InAt(0);
3464 Location second = locations->InAt(1);
3465
Calin Juravled2ec87d2014-12-08 14:24:46 +00003466 Primitive::Type type = rem->GetResultType();
3467 switch (type) {
Calin Juravlebacfec32014-11-14 15:54:36 +00003468 case Primitive::kPrimInt: {
Zheng Xuc6667102015-05-15 16:08:45 +08003469 if (second.IsConstant()) {
3470 GenerateDivRemConstantIntegral(rem);
3471 } else if (codegen_->GetInstructionSetFeatures().HasDivideInstruction()) {
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003472 Register reg1 = first.AsRegister<Register>();
3473 Register reg2 = second.AsRegister<Register>();
3474 Register temp = locations->GetTemp(0).AsRegister<Register>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003475
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003476 // temp = reg1 / reg2 (integer division)
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01003477 // dest = reg1 - temp * reg2
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003478 __ sdiv(temp, reg1, reg2);
Vladimir Marko73cf0fb2015-07-30 15:07:22 +01003479 __ mls(out.AsRegister<Register>(), temp, reg2, reg1);
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003480 } else {
3481 InvokeRuntimeCallingConvention calling_convention;
3482 DCHECK_EQ(calling_convention.GetRegisterAt(0), first.AsRegister<Register>());
3483 DCHECK_EQ(calling_convention.GetRegisterAt(1), second.AsRegister<Register>());
3484 DCHECK_EQ(R1, out.AsRegister<Register>());
3485
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003486 codegen_->InvokeRuntime(kQuickIdivmod, rem, rem->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003487 CheckEntrypointTypes<kQuickIdivmod, int32_t, int32_t, int32_t>();
Andreas Gampeb51cdb32015-03-29 17:32:48 -07003488 }
Calin Juravlebacfec32014-11-14 15:54:36 +00003489 break;
3490 }
3491
3492 case Primitive::kPrimLong: {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003493 codegen_->InvokeRuntime(kQuickLmod, rem, rem->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003494 CheckEntrypointTypes<kQuickLmod, int64_t, int64_t, int64_t>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003495 break;
3496 }
3497
Calin Juravled2ec87d2014-12-08 14:24:46 +00003498 case Primitive::kPrimFloat: {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003499 codegen_->InvokeRuntime(kQuickFmodf, rem, rem->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003500 CheckEntrypointTypes<kQuickFmodf, float, float, float>();
Calin Juravled2ec87d2014-12-08 14:24:46 +00003501 break;
3502 }
3503
Calin Juravlebacfec32014-11-14 15:54:36 +00003504 case Primitive::kPrimDouble: {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003505 codegen_->InvokeRuntime(kQuickFmod, rem, rem->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003506 CheckEntrypointTypes<kQuickFmod, double, double, double>();
Calin Juravlebacfec32014-11-14 15:54:36 +00003507 break;
3508 }
3509
3510 default:
Calin Juravled2ec87d2014-12-08 14:24:46 +00003511 LOG(FATAL) << "Unexpected rem type " << type;
Calin Juravlebacfec32014-11-14 15:54:36 +00003512 }
3513}
3514
Calin Juravled0d48522014-11-04 16:40:20 +00003515void LocationsBuilderARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01003516 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003517 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
Calin Juravled0d48522014-11-04 16:40:20 +00003518}
3519
3520void InstructionCodeGeneratorARM::VisitDivZeroCheck(HDivZeroCheck* instruction) {
Artem Serovf4d6aee2016-07-11 10:41:45 +01003521 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM(instruction);
Calin Juravled0d48522014-11-04 16:40:20 +00003522 codegen_->AddSlowPath(slow_path);
3523
3524 LocationSummary* locations = instruction->GetLocations();
3525 Location value = locations->InAt(0);
3526
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003527 switch (instruction->GetType()) {
Nicolas Geoffraye5671612016-03-16 11:03:54 +00003528 case Primitive::kPrimBoolean:
Serguei Katkov8c0676c2015-08-03 13:55:33 +06003529 case Primitive::kPrimByte:
3530 case Primitive::kPrimChar:
3531 case Primitive::kPrimShort:
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003532 case Primitive::kPrimInt: {
3533 if (value.IsRegister()) {
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01003534 __ CompareAndBranchIfZero(value.AsRegister<Register>(), slow_path->GetEntryLabel());
Calin Juravled6fb6cf2014-11-11 19:07:44 +00003535 } else {
3536 DCHECK(value.IsConstant()) << value;
3537 if (value.GetConstant()->AsIntConstant()->GetValue() == 0) {
3538 __ b(slow_path->GetEntryLabel());
3539 }
3540 }
3541 break;
3542 }
3543 case Primitive::kPrimLong: {
3544 if (value.IsRegisterPair()) {
3545 __ orrs(IP,
3546 value.AsRegisterPairLow<Register>(),
3547 ShifterOperand(value.AsRegisterPairHigh<Register>()));
3548 __ b(slow_path->GetEntryLabel(), EQ);
3549 } else {
3550 DCHECK(value.IsConstant()) << value;
3551 if (value.GetConstant()->AsLongConstant()->GetValue() == 0) {
3552 __ b(slow_path->GetEntryLabel());
3553 }
3554 }
3555 break;
3556 default:
3557 LOG(FATAL) << "Unexpected type for HDivZeroCheck " << instruction->GetType();
3558 }
3559 }
Calin Juravled0d48522014-11-04 16:40:20 +00003560}
3561
Scott Wakeling40a04bf2015-12-11 09:50:36 +00003562void InstructionCodeGeneratorARM::HandleIntegerRotate(LocationSummary* locations) {
3563 Register in = locations->InAt(0).AsRegister<Register>();
3564 Location rhs = locations->InAt(1);
3565 Register out = locations->Out().AsRegister<Register>();
3566
3567 if (rhs.IsConstant()) {
3568 // Arm32 and Thumb2 assemblers require a rotation on the interval [1,31],
3569 // so map all rotations to a +ve. equivalent in that range.
3570 // (e.g. left *or* right by -2 bits == 30 bits in the same direction.)
3571 uint32_t rot = CodeGenerator::GetInt32ValueOf(rhs.GetConstant()) & 0x1F;
3572 if (rot) {
3573 // Rotate, mapping left rotations to right equivalents if necessary.
3574 // (e.g. left by 2 bits == right by 30.)
3575 __ Ror(out, in, rot);
3576 } else if (out != in) {
3577 __ Mov(out, in);
3578 }
3579 } else {
3580 __ Ror(out, in, rhs.AsRegister<Register>());
3581 }
3582}
3583
3584// Gain some speed by mapping all Long rotates onto equivalent pairs of Integer
3585// rotates by swapping input regs (effectively rotating by the first 32-bits of
3586// a larger rotation) or flipping direction (thus treating larger right/left
3587// rotations as sub-word sized rotations in the other direction) as appropriate.
3588void InstructionCodeGeneratorARM::HandleLongRotate(LocationSummary* locations) {
3589 Register in_reg_lo = locations->InAt(0).AsRegisterPairLow<Register>();
3590 Register in_reg_hi = locations->InAt(0).AsRegisterPairHigh<Register>();
3591 Location rhs = locations->InAt(1);
3592 Register out_reg_lo = locations->Out().AsRegisterPairLow<Register>();
3593 Register out_reg_hi = locations->Out().AsRegisterPairHigh<Register>();
3594
3595 if (rhs.IsConstant()) {
3596 uint64_t rot = CodeGenerator::GetInt64ValueOf(rhs.GetConstant());
3597 // Map all rotations to +ve. equivalents on the interval [0,63].
Roland Levillain5b5b9312016-03-22 14:57:31 +00003598 rot &= kMaxLongShiftDistance;
Scott Wakeling40a04bf2015-12-11 09:50:36 +00003599 // For rotates over a word in size, 'pre-rotate' by 32-bits to keep rotate
3600 // logic below to a simple pair of binary orr.
3601 // (e.g. 34 bits == in_reg swap + 2 bits right.)
3602 if (rot >= kArmBitsPerWord) {
3603 rot -= kArmBitsPerWord;
3604 std::swap(in_reg_hi, in_reg_lo);
3605 }
3606 // Rotate, or mov to out for zero or word size rotations.
3607 if (rot != 0u) {
3608 __ Lsr(out_reg_hi, in_reg_hi, rot);
3609 __ orr(out_reg_hi, out_reg_hi, ShifterOperand(in_reg_lo, arm::LSL, kArmBitsPerWord - rot));
3610 __ Lsr(out_reg_lo, in_reg_lo, rot);
3611 __ orr(out_reg_lo, out_reg_lo, ShifterOperand(in_reg_hi, arm::LSL, kArmBitsPerWord - rot));
3612 } else {
3613 __ Mov(out_reg_lo, in_reg_lo);
3614 __ Mov(out_reg_hi, in_reg_hi);
3615 }
3616 } else {
3617 Register shift_right = locations->GetTemp(0).AsRegister<Register>();
3618 Register shift_left = locations->GetTemp(1).AsRegister<Register>();
3619 Label end;
3620 Label shift_by_32_plus_shift_right;
3621
3622 __ and_(shift_right, rhs.AsRegister<Register>(), ShifterOperand(0x1F));
3623 __ Lsrs(shift_left, rhs.AsRegister<Register>(), 6);
3624 __ rsb(shift_left, shift_right, ShifterOperand(kArmBitsPerWord), AL, kCcKeep);
3625 __ b(&shift_by_32_plus_shift_right, CC);
3626
3627 // out_reg_hi = (reg_hi << shift_left) | (reg_lo >> shift_right).
3628 // out_reg_lo = (reg_lo << shift_left) | (reg_hi >> shift_right).
3629 __ Lsl(out_reg_hi, in_reg_hi, shift_left);
3630 __ Lsr(out_reg_lo, in_reg_lo, shift_right);
3631 __ add(out_reg_hi, out_reg_hi, ShifterOperand(out_reg_lo));
3632 __ Lsl(out_reg_lo, in_reg_lo, shift_left);
3633 __ Lsr(shift_left, in_reg_hi, shift_right);
3634 __ add(out_reg_lo, out_reg_lo, ShifterOperand(shift_left));
3635 __ b(&end);
3636
3637 __ Bind(&shift_by_32_plus_shift_right); // Shift by 32+shift_right.
3638 // out_reg_hi = (reg_hi >> shift_right) | (reg_lo << shift_left).
3639 // out_reg_lo = (reg_lo >> shift_right) | (reg_hi << shift_left).
3640 __ Lsr(out_reg_hi, in_reg_hi, shift_right);
3641 __ Lsl(out_reg_lo, in_reg_lo, shift_left);
3642 __ add(out_reg_hi, out_reg_hi, ShifterOperand(out_reg_lo));
3643 __ Lsr(out_reg_lo, in_reg_lo, shift_right);
3644 __ Lsl(shift_right, in_reg_hi, shift_left);
3645 __ add(out_reg_lo, out_reg_lo, ShifterOperand(shift_right));
3646
3647 __ Bind(&end);
3648 }
3649}
Roland Levillain22c49222016-03-18 14:04:28 +00003650
3651void LocationsBuilderARM::VisitRor(HRor* ror) {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00003652 LocationSummary* locations =
3653 new (GetGraph()->GetArena()) LocationSummary(ror, LocationSummary::kNoCall);
3654 switch (ror->GetResultType()) {
3655 case Primitive::kPrimInt: {
3656 locations->SetInAt(0, Location::RequiresRegister());
3657 locations->SetInAt(1, Location::RegisterOrConstant(ror->InputAt(1)));
3658 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3659 break;
3660 }
3661 case Primitive::kPrimLong: {
3662 locations->SetInAt(0, Location::RequiresRegister());
3663 if (ror->InputAt(1)->IsConstant()) {
3664 locations->SetInAt(1, Location::ConstantLocation(ror->InputAt(1)->AsConstant()));
3665 } else {
3666 locations->SetInAt(1, Location::RequiresRegister());
3667 locations->AddTemp(Location::RequiresRegister());
3668 locations->AddTemp(Location::RequiresRegister());
3669 }
3670 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3671 break;
3672 }
3673 default:
3674 LOG(FATAL) << "Unexpected operation type " << ror->GetResultType();
3675 }
3676}
3677
Roland Levillain22c49222016-03-18 14:04:28 +00003678void InstructionCodeGeneratorARM::VisitRor(HRor* ror) {
Scott Wakeling40a04bf2015-12-11 09:50:36 +00003679 LocationSummary* locations = ror->GetLocations();
3680 Primitive::Type type = ror->GetResultType();
3681 switch (type) {
3682 case Primitive::kPrimInt: {
3683 HandleIntegerRotate(locations);
3684 break;
3685 }
3686 case Primitive::kPrimLong: {
3687 HandleLongRotate(locations);
3688 break;
3689 }
3690 default:
3691 LOG(FATAL) << "Unexpected operation type " << type;
Vladimir Marko351dddf2015-12-11 16:34:46 +00003692 UNREACHABLE();
Scott Wakeling40a04bf2015-12-11 09:50:36 +00003693 }
3694}
3695
Calin Juravle9aec02f2014-11-18 23:06:35 +00003696void LocationsBuilderARM::HandleShift(HBinaryOperation* op) {
3697 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3698
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003699 LocationSummary* locations =
3700 new (GetGraph()->GetArena()) LocationSummary(op, LocationSummary::kNoCall);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003701
3702 switch (op->GetResultType()) {
3703 case Primitive::kPrimInt: {
3704 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003705 if (op->InputAt(1)->IsConstant()) {
3706 locations->SetInAt(1, Location::ConstantLocation(op->InputAt(1)->AsConstant()));
3707 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3708 } else {
3709 locations->SetInAt(1, Location::RequiresRegister());
3710 // Make the output overlap, as it will be used to hold the masked
3711 // second input.
3712 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3713 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003714 break;
3715 }
3716 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003717 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003718 if (op->InputAt(1)->IsConstant()) {
3719 locations->SetInAt(1, Location::ConstantLocation(op->InputAt(1)->AsConstant()));
3720 // For simplicity, use kOutputOverlap even though we only require that low registers
3721 // don't clash with high registers which the register allocator currently guarantees.
3722 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3723 } else {
3724 locations->SetInAt(1, Location::RequiresRegister());
3725 locations->AddTemp(Location::RequiresRegister());
3726 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3727 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003728 break;
3729 }
3730 default:
3731 LOG(FATAL) << "Unexpected operation type " << op->GetResultType();
3732 }
3733}
3734
3735void InstructionCodeGeneratorARM::HandleShift(HBinaryOperation* op) {
3736 DCHECK(op->IsShl() || op->IsShr() || op->IsUShr());
3737
3738 LocationSummary* locations = op->GetLocations();
3739 Location out = locations->Out();
3740 Location first = locations->InAt(0);
3741 Location second = locations->InAt(1);
3742
3743 Primitive::Type type = op->GetResultType();
3744 switch (type) {
3745 case Primitive::kPrimInt: {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003746 Register out_reg = out.AsRegister<Register>();
3747 Register first_reg = first.AsRegister<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003748 if (second.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00003749 Register second_reg = second.AsRegister<Register>();
Roland Levillainc9285912015-12-18 10:38:42 +00003750 // ARM doesn't mask the shift count so we need to do it ourselves.
Roland Levillain5b5b9312016-03-22 14:57:31 +00003751 __ and_(out_reg, second_reg, ShifterOperand(kMaxIntShiftDistance));
Calin Juravle9aec02f2014-11-18 23:06:35 +00003752 if (op->IsShl()) {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003753 __ Lsl(out_reg, first_reg, out_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003754 } else if (op->IsShr()) {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003755 __ Asr(out_reg, first_reg, out_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003756 } else {
Nicolas Geoffraya4f35812015-06-22 23:12:45 +01003757 __ Lsr(out_reg, first_reg, out_reg);
Calin Juravle9aec02f2014-11-18 23:06:35 +00003758 }
3759 } else {
3760 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain5b5b9312016-03-22 14:57:31 +00003761 uint32_t shift_value = cst & kMaxIntShiftDistance;
Roland Levillainc9285912015-12-18 10:38:42 +00003762 if (shift_value == 0) { // ARM does not support shifting with 0 immediate.
Calin Juravle9aec02f2014-11-18 23:06:35 +00003763 __ Mov(out_reg, first_reg);
3764 } else if (op->IsShl()) {
3765 __ Lsl(out_reg, first_reg, shift_value);
3766 } else if (op->IsShr()) {
3767 __ Asr(out_reg, first_reg, shift_value);
3768 } else {
3769 __ Lsr(out_reg, first_reg, shift_value);
3770 }
3771 }
3772 break;
3773 }
3774 case Primitive::kPrimLong: {
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003775 Register o_h = out.AsRegisterPairHigh<Register>();
3776 Register o_l = out.AsRegisterPairLow<Register>();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003777
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003778 Register high = first.AsRegisterPairHigh<Register>();
3779 Register low = first.AsRegisterPairLow<Register>();
3780
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003781 if (second.IsRegister()) {
3782 Register temp = locations->GetTemp(0).AsRegister<Register>();
Guillaume "Vermeille" Sanchezfd18f5a2015-03-11 14:57:40 +00003783
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003784 Register second_reg = second.AsRegister<Register>();
3785
3786 if (op->IsShl()) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00003787 __ and_(o_l, second_reg, ShifterOperand(kMaxLongShiftDistance));
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003788 // Shift the high part
3789 __ Lsl(o_h, high, o_l);
3790 // Shift the low part and `or` what overflew on the high part
3791 __ rsb(temp, o_l, ShifterOperand(kArmBitsPerWord));
3792 __ Lsr(temp, low, temp);
3793 __ orr(o_h, o_h, ShifterOperand(temp));
3794 // If the shift is > 32 bits, override the high part
3795 __ subs(temp, o_l, ShifterOperand(kArmBitsPerWord));
3796 __ it(PL);
3797 __ Lsl(o_h, low, temp, PL);
3798 // Shift the low part
3799 __ Lsl(o_l, low, o_l);
3800 } else if (op->IsShr()) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00003801 __ and_(o_h, second_reg, ShifterOperand(kMaxLongShiftDistance));
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003802 // Shift the low part
3803 __ Lsr(o_l, low, o_h);
3804 // Shift the high part and `or` what underflew on the low part
3805 __ rsb(temp, o_h, ShifterOperand(kArmBitsPerWord));
3806 __ Lsl(temp, high, temp);
3807 __ orr(o_l, o_l, ShifterOperand(temp));
3808 // If the shift is > 32 bits, override the low part
3809 __ subs(temp, o_h, ShifterOperand(kArmBitsPerWord));
3810 __ it(PL);
3811 __ Asr(o_l, high, temp, PL);
3812 // Shift the high part
3813 __ Asr(o_h, high, o_h);
3814 } else {
Roland Levillain5b5b9312016-03-22 14:57:31 +00003815 __ and_(o_h, second_reg, ShifterOperand(kMaxLongShiftDistance));
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003816 // same as Shr except we use `Lsr`s and not `Asr`s
3817 __ Lsr(o_l, low, o_h);
3818 __ rsb(temp, o_h, ShifterOperand(kArmBitsPerWord));
3819 __ Lsl(temp, high, temp);
3820 __ orr(o_l, o_l, ShifterOperand(temp));
3821 __ subs(temp, o_h, ShifterOperand(kArmBitsPerWord));
3822 __ it(PL);
3823 __ Lsr(o_l, high, temp, PL);
3824 __ Lsr(o_h, high, o_h);
3825 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003826 } else {
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003827 // Register allocator doesn't create partial overlap.
3828 DCHECK_NE(o_l, high);
3829 DCHECK_NE(o_h, low);
3830 int32_t cst = second.GetConstant()->AsIntConstant()->GetValue();
Roland Levillain5b5b9312016-03-22 14:57:31 +00003831 uint32_t shift_value = cst & kMaxLongShiftDistance;
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003832 if (shift_value > 32) {
3833 if (op->IsShl()) {
3834 __ Lsl(o_h, low, shift_value - 32);
3835 __ LoadImmediate(o_l, 0);
3836 } else if (op->IsShr()) {
3837 __ Asr(o_l, high, shift_value - 32);
3838 __ Asr(o_h, high, 31);
3839 } else {
3840 __ Lsr(o_l, high, shift_value - 32);
3841 __ LoadImmediate(o_h, 0);
3842 }
3843 } else if (shift_value == 32) {
3844 if (op->IsShl()) {
3845 __ mov(o_h, ShifterOperand(low));
3846 __ LoadImmediate(o_l, 0);
3847 } else if (op->IsShr()) {
3848 __ mov(o_l, ShifterOperand(high));
3849 __ Asr(o_h, high, 31);
3850 } else {
3851 __ mov(o_l, ShifterOperand(high));
3852 __ LoadImmediate(o_h, 0);
3853 }
Vladimir Markof9d741e2015-11-20 15:08:11 +00003854 } else if (shift_value == 1) {
3855 if (op->IsShl()) {
3856 __ Lsls(o_l, low, 1);
3857 __ adc(o_h, high, ShifterOperand(high));
3858 } else if (op->IsShr()) {
3859 __ Asrs(o_h, high, 1);
3860 __ Rrx(o_l, low);
3861 } else {
3862 __ Lsrs(o_h, high, 1);
3863 __ Rrx(o_l, low);
3864 }
3865 } else {
3866 DCHECK(2 <= shift_value && shift_value < 32) << shift_value;
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003867 if (op->IsShl()) {
3868 __ Lsl(o_h, high, shift_value);
3869 __ orr(o_h, o_h, ShifterOperand(low, LSR, 32 - shift_value));
3870 __ Lsl(o_l, low, shift_value);
3871 } else if (op->IsShr()) {
3872 __ Lsr(o_l, low, shift_value);
3873 __ orr(o_l, o_l, ShifterOperand(high, LSL, 32 - shift_value));
3874 __ Asr(o_h, high, shift_value);
3875 } else {
3876 __ Lsr(o_l, low, shift_value);
3877 __ orr(o_l, o_l, ShifterOperand(high, LSL, 32 - shift_value));
3878 __ Lsr(o_h, high, shift_value);
3879 }
3880 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003881 }
Calin Juravle9aec02f2014-11-18 23:06:35 +00003882 break;
3883 }
3884 default:
3885 LOG(FATAL) << "Unexpected operation type " << type;
Vladimir Marko33ad10e2015-11-10 19:31:26 +00003886 UNREACHABLE();
Calin Juravle9aec02f2014-11-18 23:06:35 +00003887 }
3888}
3889
3890void LocationsBuilderARM::VisitShl(HShl* shl) {
3891 HandleShift(shl);
3892}
3893
3894void InstructionCodeGeneratorARM::VisitShl(HShl* shl) {
3895 HandleShift(shl);
3896}
3897
3898void LocationsBuilderARM::VisitShr(HShr* shr) {
3899 HandleShift(shr);
3900}
3901
3902void InstructionCodeGeneratorARM::VisitShr(HShr* shr) {
3903 HandleShift(shr);
3904}
3905
3906void LocationsBuilderARM::VisitUShr(HUShr* ushr) {
3907 HandleShift(ushr);
3908}
3909
3910void InstructionCodeGeneratorARM::VisitUShr(HUShr* ushr) {
3911 HandleShift(ushr);
3912}
3913
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003914void LocationsBuilderARM::VisitNewInstance(HNewInstance* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003915 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003916 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
David Brazdil6de19382016-01-08 17:37:10 +00003917 if (instruction->IsStringAlloc()) {
3918 locations->AddTemp(Location::RegisterLocation(kMethodRegisterArgument));
3919 } else {
3920 InvokeRuntimeCallingConvention calling_convention;
3921 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
3922 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
3923 }
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01003924 locations->SetOut(Location::RegisterLocation(R0));
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003925}
3926
3927void InstructionCodeGeneratorARM::VisitNewInstance(HNewInstance* instruction) {
Roland Levillain4d027112015-07-01 15:41:14 +01003928 // Note: if heap poisoning is enabled, the entry point takes cares
3929 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00003930 if (instruction->IsStringAlloc()) {
3931 // String is allocated through StringFactory. Call NewEmptyString entry point.
3932 Register temp = instruction->GetLocations()->GetTemp(0).AsRegister<Register>();
Andreas Gampe542451c2016-07-26 09:02:02 -07003933 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArmPointerSize);
David Brazdil6de19382016-01-08 17:37:10 +00003934 __ LoadFromOffset(kLoadWord, temp, TR, QUICK_ENTRY_POINT(pNewEmptyString));
3935 __ LoadFromOffset(kLoadWord, LR, temp, code_offset.Int32Value());
3936 __ blx(LR);
3937 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3938 } else {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003939 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
David Brazdil6de19382016-01-08 17:37:10 +00003940 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
3941 }
Nicolas Geoffray2e7038a2014-04-03 18:49:58 +01003942}
3943
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003944void LocationsBuilderARM::VisitNewArray(HNewArray* instruction) {
3945 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01003946 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003947 InvokeRuntimeCallingConvention calling_convention;
3948 locations->AddTemp(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003949 locations->SetOut(Location::RegisterLocation(R0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003950 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003951 locations->SetInAt(1, Location::RegisterLocation(calling_convention.GetRegisterAt(2)));
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003952}
3953
3954void InstructionCodeGeneratorARM::VisitNewArray(HNewArray* instruction) {
3955 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampea5b09a62016-11-17 15:21:22 -08003956 __ LoadImmediate(calling_convention.GetRegisterAt(0), instruction->GetTypeIndex().index_);
Roland Levillain4d027112015-07-01 15:41:14 +01003957 // Note: if heap poisoning is enabled, the entry point takes cares
3958 // of poisoning the reference.
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01003959 codegen_->InvokeRuntime(instruction->GetEntrypoint(), instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00003960 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Nicolas Geoffraya3d05a42014-10-20 17:41:32 +01003961}
3962
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003963void LocationsBuilderARM::VisitParameterValue(HParameterValue* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003964 LocationSummary* locations =
3965 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffraya747a392014-04-17 14:56:23 +01003966 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
3967 if (location.IsStackSlot()) {
3968 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3969 } else if (location.IsDoubleStackSlot()) {
3970 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003971 }
Nicolas Geoffraya747a392014-04-17 14:56:23 +01003972 locations->SetOut(location);
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003973}
3974
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003975void InstructionCodeGeneratorARM::VisitParameterValue(
3976 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffray01bc96d2014-04-11 17:43:50 +01003977 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003978}
3979
3980void LocationsBuilderARM::VisitCurrentMethod(HCurrentMethod* instruction) {
3981 LocationSummary* locations =
3982 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3983 locations->SetOut(Location::RegisterLocation(kMethodRegisterArgument));
3984}
3985
3986void InstructionCodeGeneratorARM::VisitCurrentMethod(HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
3987 // Nothing to do, the method is already at its location.
Nicolas Geoffrayf583e592014-04-07 13:20:42 +01003988}
3989
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003990void LocationsBuilderARM::VisitNot(HNot* not_) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01003991 LocationSummary* locations =
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003992 new (GetGraph()->GetArena()) LocationSummary(not_, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01003993 locations->SetInAt(0, Location::RequiresRegister());
3994 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01003995}
3996
Roland Levillain1cc5f2512014-10-22 18:06:21 +01003997void InstructionCodeGeneratorARM::VisitNot(HNot* not_) {
3998 LocationSummary* locations = not_->GetLocations();
3999 Location out = locations->Out();
4000 Location in = locations->InAt(0);
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00004001 switch (not_->GetResultType()) {
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004002 case Primitive::kPrimInt:
Roland Levillain271ab9c2014-11-27 15:23:57 +00004003 __ mvn(out.AsRegister<Register>(), ShifterOperand(in.AsRegister<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004004 break;
4005
4006 case Primitive::kPrimLong:
Roland Levillain70566432014-10-24 16:20:17 +01004007 __ mvn(out.AsRegisterPairLow<Register>(),
4008 ShifterOperand(in.AsRegisterPairLow<Register>()));
4009 __ mvn(out.AsRegisterPairHigh<Register>(),
4010 ShifterOperand(in.AsRegisterPairHigh<Register>()));
Roland Levillain1cc5f2512014-10-22 18:06:21 +01004011 break;
4012
4013 default:
4014 LOG(FATAL) << "Unimplemented type for not operation " << not_->GetResultType();
4015 }
Nicolas Geoffrayb55f8352014-04-07 15:26:35 +01004016}
4017
David Brazdil66d126e2015-04-03 16:02:44 +01004018void LocationsBuilderARM::VisitBooleanNot(HBooleanNot* bool_not) {
4019 LocationSummary* locations =
4020 new (GetGraph()->GetArena()) LocationSummary(bool_not, LocationSummary::kNoCall);
4021 locations->SetInAt(0, Location::RequiresRegister());
4022 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4023}
4024
4025void InstructionCodeGeneratorARM::VisitBooleanNot(HBooleanNot* bool_not) {
David Brazdil66d126e2015-04-03 16:02:44 +01004026 LocationSummary* locations = bool_not->GetLocations();
4027 Location out = locations->Out();
4028 Location in = locations->InAt(0);
4029 __ eor(out.AsRegister<Register>(), in.AsRegister<Register>(), ShifterOperand(1));
4030}
4031
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004032void LocationsBuilderARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004033 LocationSummary* locations =
4034 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
Calin Juravleddb7df22014-11-25 20:56:51 +00004035 switch (compare->InputAt(0)->GetType()) {
Roland Levillaina5c4a402016-03-15 15:02:50 +00004036 case Primitive::kPrimBoolean:
4037 case Primitive::kPrimByte:
4038 case Primitive::kPrimShort:
4039 case Primitive::kPrimChar:
Aart Bika19616e2016-02-01 18:57:58 -08004040 case Primitive::kPrimInt:
Calin Juravleddb7df22014-11-25 20:56:51 +00004041 case Primitive::kPrimLong: {
4042 locations->SetInAt(0, Location::RequiresRegister());
4043 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray829280c2015-01-28 10:20:37 +00004044 // Output overlaps because it is written before doing the low comparison.
4045 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Calin Juravleddb7df22014-11-25 20:56:51 +00004046 break;
4047 }
4048 case Primitive::kPrimFloat:
4049 case Primitive::kPrimDouble: {
4050 locations->SetInAt(0, Location::RequiresFpuRegister());
Vladimir Marko37dd80d2016-08-01 17:41:45 +01004051 locations->SetInAt(1, ArithmeticZeroOrFpuRegister(compare->InputAt(1)));
Calin Juravleddb7df22014-11-25 20:56:51 +00004052 locations->SetOut(Location::RequiresRegister());
4053 break;
4054 }
4055 default:
4056 LOG(FATAL) << "Unexpected type for compare operation " << compare->InputAt(0)->GetType();
4057 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004058}
4059
4060void InstructionCodeGeneratorARM::VisitCompare(HCompare* compare) {
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004061 LocationSummary* locations = compare->GetLocations();
Roland Levillain271ab9c2014-11-27 15:23:57 +00004062 Register out = locations->Out().AsRegister<Register>();
Calin Juravleddb7df22014-11-25 20:56:51 +00004063 Location left = locations->InAt(0);
4064 Location right = locations->InAt(1);
4065
Vladimir Markocf93a5c2015-06-16 11:33:24 +00004066 Label less, greater, done;
Calin Juravleddb7df22014-11-25 20:56:51 +00004067 Primitive::Type type = compare->InputAt(0)->GetType();
Vladimir Markod6e069b2016-01-18 11:11:01 +00004068 Condition less_cond;
Calin Juravleddb7df22014-11-25 20:56:51 +00004069 switch (type) {
Roland Levillaina5c4a402016-03-15 15:02:50 +00004070 case Primitive::kPrimBoolean:
4071 case Primitive::kPrimByte:
4072 case Primitive::kPrimShort:
4073 case Primitive::kPrimChar:
Aart Bika19616e2016-02-01 18:57:58 -08004074 case Primitive::kPrimInt: {
4075 __ LoadImmediate(out, 0);
4076 __ cmp(left.AsRegister<Register>(),
4077 ShifterOperand(right.AsRegister<Register>())); // Signed compare.
4078 less_cond = LT;
4079 break;
4080 }
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004081 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004082 __ cmp(left.AsRegisterPairHigh<Register>(),
4083 ShifterOperand(right.AsRegisterPairHigh<Register>())); // Signed compare.
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004084 __ b(&less, LT);
4085 __ b(&greater, GT);
Roland Levillain4fa13f62015-07-06 18:11:54 +01004086 // Do LoadImmediate before the last `cmp`, as LoadImmediate might affect the status flags.
Calin Juravleddb7df22014-11-25 20:56:51 +00004087 __ LoadImmediate(out, 0);
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01004088 __ cmp(left.AsRegisterPairLow<Register>(),
4089 ShifterOperand(right.AsRegisterPairLow<Register>())); // Unsigned compare.
Vladimir Markod6e069b2016-01-18 11:11:01 +00004090 less_cond = LO;
Calin Juravleddb7df22014-11-25 20:56:51 +00004091 break;
4092 }
4093 case Primitive::kPrimFloat:
4094 case Primitive::kPrimDouble: {
4095 __ LoadImmediate(out, 0);
Vladimir Marko37dd80d2016-08-01 17:41:45 +01004096 GenerateVcmp(compare);
Calin Juravleddb7df22014-11-25 20:56:51 +00004097 __ vmstat(); // transfer FP status register to ARM APSR.
Vladimir Markod6e069b2016-01-18 11:11:01 +00004098 less_cond = ARMFPCondition(kCondLT, compare->IsGtBias());
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004099 break;
4100 }
4101 default:
Calin Juravleddb7df22014-11-25 20:56:51 +00004102 LOG(FATAL) << "Unexpected compare type " << type;
Vladimir Markod6e069b2016-01-18 11:11:01 +00004103 UNREACHABLE();
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004104 }
Aart Bika19616e2016-02-01 18:57:58 -08004105
Calin Juravleddb7df22014-11-25 20:56:51 +00004106 __ b(&done, EQ);
Vladimir Markod6e069b2016-01-18 11:11:01 +00004107 __ b(&less, less_cond);
Calin Juravleddb7df22014-11-25 20:56:51 +00004108
4109 __ Bind(&greater);
4110 __ LoadImmediate(out, 1);
4111 __ b(&done);
4112
4113 __ Bind(&less);
4114 __ LoadImmediate(out, -1);
4115
4116 __ Bind(&done);
Nicolas Geoffray412f10c2014-06-19 10:00:34 +01004117}
4118
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004119void LocationsBuilderARM::VisitPhi(HPhi* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01004120 LocationSummary* locations =
4121 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Vladimir Marko372f10e2016-05-17 16:30:10 +01004122 for (size_t i = 0, e = locations->GetInputCount(); i < e; ++i) {
Nicolas Geoffray31d76b42014-06-09 15:02:22 +01004123 locations->SetInAt(i, Location::Any());
4124 }
4125 locations->SetOut(Location::Any());
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004126}
4127
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004128void InstructionCodeGeneratorARM::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01004129 LOG(FATAL) << "Unreachable";
Nicolas Geoffrayc32e7702014-04-24 12:43:16 +01004130}
4131
Roland Levillainc9285912015-12-18 10:38:42 +00004132void CodeGeneratorARM::GenerateMemoryBarrier(MemBarrierKind kind) {
4133 // TODO (ported from quick): revisit ARM barrier kinds.
4134 DmbOptions flavor = DmbOptions::ISH; // Quiet C++ warnings.
Calin Juravle52c48962014-12-16 17:02:57 +00004135 switch (kind) {
4136 case MemBarrierKind::kAnyStore:
4137 case MemBarrierKind::kLoadAny:
4138 case MemBarrierKind::kAnyAny: {
Kenny Root1d8199d2015-06-02 11:01:10 -07004139 flavor = DmbOptions::ISH;
Calin Juravle52c48962014-12-16 17:02:57 +00004140 break;
4141 }
4142 case MemBarrierKind::kStoreStore: {
Kenny Root1d8199d2015-06-02 11:01:10 -07004143 flavor = DmbOptions::ISHST;
Calin Juravle52c48962014-12-16 17:02:57 +00004144 break;
4145 }
4146 default:
4147 LOG(FATAL) << "Unexpected memory barrier " << kind;
4148 }
Kenny Root1d8199d2015-06-02 11:01:10 -07004149 __ dmb(flavor);
Calin Juravle52c48962014-12-16 17:02:57 +00004150}
4151
4152void InstructionCodeGeneratorARM::GenerateWideAtomicLoad(Register addr,
4153 uint32_t offset,
4154 Register out_lo,
4155 Register out_hi) {
4156 if (offset != 0) {
Roland Levillain3b359c72015-11-17 19:35:12 +00004157 // Ensure `out_lo` is different from `addr`, so that loading
4158 // `offset` into `out_lo` does not clutter `addr`.
4159 DCHECK_NE(out_lo, addr);
Calin Juravle52c48962014-12-16 17:02:57 +00004160 __ LoadImmediate(out_lo, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00004161 __ add(IP, addr, ShifterOperand(out_lo));
4162 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00004163 }
4164 __ ldrexd(out_lo, out_hi, addr);
4165}
4166
4167void InstructionCodeGeneratorARM::GenerateWideAtomicStore(Register addr,
4168 uint32_t offset,
4169 Register value_lo,
4170 Register value_hi,
4171 Register temp1,
Calin Juravle77520bc2015-01-12 18:45:46 +00004172 Register temp2,
4173 HInstruction* instruction) {
Vladimir Markocf93a5c2015-06-16 11:33:24 +00004174 Label fail;
Calin Juravle52c48962014-12-16 17:02:57 +00004175 if (offset != 0) {
4176 __ LoadImmediate(temp1, offset);
Nicolas Geoffraybdcedd32015-01-09 08:48:29 +00004177 __ add(IP, addr, ShifterOperand(temp1));
4178 addr = IP;
Calin Juravle52c48962014-12-16 17:02:57 +00004179 }
4180 __ Bind(&fail);
4181 // We need a load followed by store. (The address used in a STREX instruction must
4182 // be the same as the address in the most recently executed LDREX instruction.)
4183 __ ldrexd(temp1, temp2, addr);
Calin Juravle77520bc2015-01-12 18:45:46 +00004184 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004185 __ strexd(temp1, value_lo, value_hi, addr);
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01004186 __ CompareAndBranchIfNonZero(temp1, &fail);
Calin Juravle52c48962014-12-16 17:02:57 +00004187}
4188
4189void LocationsBuilderARM::HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info) {
4190 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4191
Nicolas Geoffray39468442014-09-02 15:17:15 +01004192 LocationSummary* locations =
4193 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004194 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00004195
Calin Juravle52c48962014-12-16 17:02:57 +00004196 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004197 if (Primitive::IsFloatingPointType(field_type)) {
4198 locations->SetInAt(1, Location::RequiresFpuRegister());
4199 } else {
4200 locations->SetInAt(1, Location::RequiresRegister());
4201 }
4202
Calin Juravle52c48962014-12-16 17:02:57 +00004203 bool is_wide = field_type == Primitive::kPrimLong || field_type == Primitive::kPrimDouble;
Calin Juravle34166012014-12-19 17:22:29 +00004204 bool generate_volatile = field_info.IsVolatile()
4205 && is_wide
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004206 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Roland Levillain4d027112015-07-01 15:41:14 +01004207 bool needs_write_barrier =
4208 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004209 // Temporary registers for the write barrier.
Calin Juravle52c48962014-12-16 17:02:57 +00004210 // TODO: consider renaming StoreNeedsWriteBarrier to StoreNeedsGCMark.
Roland Levillain4d027112015-07-01 15:41:14 +01004211 if (needs_write_barrier) {
4212 locations->AddTemp(Location::RequiresRegister()); // Possibly used for reference poisoning too.
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004213 locations->AddTemp(Location::RequiresRegister());
Calin Juravle34166012014-12-19 17:22:29 +00004214 } else if (generate_volatile) {
Roland Levillainc9285912015-12-18 10:38:42 +00004215 // ARM encoding have some additional constraints for ldrexd/strexd:
Calin Juravle52c48962014-12-16 17:02:57 +00004216 // - registers need to be consecutive
4217 // - the first register should be even but not R14.
Roland Levillainc9285912015-12-18 10:38:42 +00004218 // We don't test for ARM yet, and the assertion makes sure that we
4219 // revisit this if we ever enable ARM encoding.
Calin Juravle52c48962014-12-16 17:02:57 +00004220 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
4221
4222 locations->AddTemp(Location::RequiresRegister());
4223 locations->AddTemp(Location::RequiresRegister());
4224 if (field_type == Primitive::kPrimDouble) {
4225 // For doubles we need two more registers to copy the value.
4226 locations->AddTemp(Location::RegisterLocation(R2));
4227 locations->AddTemp(Location::RegisterLocation(R3));
4228 }
Nicolas Geoffray1a43dd72014-07-17 15:15:34 +01004229 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004230}
4231
Calin Juravle52c48962014-12-16 17:02:57 +00004232void InstructionCodeGeneratorARM::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004233 const FieldInfo& field_info,
4234 bool value_can_be_null) {
Calin Juravle52c48962014-12-16 17:02:57 +00004235 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
4236
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004237 LocationSummary* locations = instruction->GetLocations();
Calin Juravle52c48962014-12-16 17:02:57 +00004238 Register base = locations->InAt(0).AsRegister<Register>();
4239 Location value = locations->InAt(1);
4240
4241 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004242 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00004243 Primitive::Type field_type = field_info.GetFieldType();
4244 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01004245 bool needs_write_barrier =
4246 CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1));
Calin Juravle52c48962014-12-16 17:02:57 +00004247
4248 if (is_volatile) {
Roland Levillainc9285912015-12-18 10:38:42 +00004249 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
Calin Juravle52c48962014-12-16 17:02:57 +00004250 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004251
4252 switch (field_type) {
4253 case Primitive::kPrimBoolean:
4254 case Primitive::kPrimByte: {
Calin Juravle52c48962014-12-16 17:02:57 +00004255 __ StoreToOffset(kStoreByte, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004256 break;
4257 }
4258
4259 case Primitive::kPrimShort:
4260 case Primitive::kPrimChar: {
Calin Juravle52c48962014-12-16 17:02:57 +00004261 __ StoreToOffset(kStoreHalfword, value.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004262 break;
4263 }
4264
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004265 case Primitive::kPrimInt:
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004266 case Primitive::kPrimNot: {
Roland Levillain4d027112015-07-01 15:41:14 +01004267 if (kPoisonHeapReferences && needs_write_barrier) {
4268 // Note that in the case where `value` is a null reference,
4269 // we do not enter this block, as a null reference does not
4270 // need poisoning.
4271 DCHECK_EQ(field_type, Primitive::kPrimNot);
4272 Register temp = locations->GetTemp(0).AsRegister<Register>();
4273 __ Mov(temp, value.AsRegister<Register>());
4274 __ PoisonHeapReference(temp);
4275 __ StoreToOffset(kStoreWord, temp, base, offset);
4276 } else {
4277 __ StoreToOffset(kStoreWord, value.AsRegister<Register>(), base, offset);
4278 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004279 break;
4280 }
4281
4282 case Primitive::kPrimLong: {
Calin Juravle34166012014-12-19 17:22:29 +00004283 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00004284 GenerateWideAtomicStore(base, offset,
4285 value.AsRegisterPairLow<Register>(),
4286 value.AsRegisterPairHigh<Register>(),
4287 locations->GetTemp(0).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00004288 locations->GetTemp(1).AsRegister<Register>(),
4289 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004290 } else {
4291 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00004292 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004293 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004294 break;
4295 }
4296
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004297 case Primitive::kPrimFloat: {
Calin Juravle52c48962014-12-16 17:02:57 +00004298 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004299 break;
4300 }
4301
4302 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00004303 DRegister value_reg = FromLowSToD(value.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00004304 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00004305 Register value_reg_lo = locations->GetTemp(0).AsRegister<Register>();
4306 Register value_reg_hi = locations->GetTemp(1).AsRegister<Register>();
4307
4308 __ vmovrrd(value_reg_lo, value_reg_hi, value_reg);
4309
4310 GenerateWideAtomicStore(base, offset,
4311 value_reg_lo,
4312 value_reg_hi,
4313 locations->GetTemp(2).AsRegister<Register>(),
Calin Juravle77520bc2015-01-12 18:45:46 +00004314 locations->GetTemp(3).AsRegister<Register>(),
4315 instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004316 } else {
4317 __ StoreDToOffset(value_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00004318 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004319 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004320 break;
4321 }
4322
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004323 case Primitive::kPrimVoid:
4324 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004325 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004326 }
Calin Juravle52c48962014-12-16 17:02:57 +00004327
Calin Juravle77520bc2015-01-12 18:45:46 +00004328 // Longs and doubles are handled in the switch.
4329 if (field_type != Primitive::kPrimLong && field_type != Primitive::kPrimDouble) {
4330 codegen_->MaybeRecordImplicitNullCheck(instruction);
4331 }
4332
4333 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
4334 Register temp = locations->GetTemp(0).AsRegister<Register>();
4335 Register card = locations->GetTemp(1).AsRegister<Register>();
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004336 codegen_->MarkGCCard(
4337 temp, card, base, value.AsRegister<Register>(), value_can_be_null);
Calin Juravle77520bc2015-01-12 18:45:46 +00004338 }
4339
Calin Juravle52c48962014-12-16 17:02:57 +00004340 if (is_volatile) {
Roland Levillainc9285912015-12-18 10:38:42 +00004341 codegen_->GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
Calin Juravle52c48962014-12-16 17:02:57 +00004342 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004343}
4344
Calin Juravle52c48962014-12-16 17:02:57 +00004345void LocationsBuilderARM::HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info) {
4346 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Roland Levillain3b359c72015-11-17 19:35:12 +00004347
4348 bool object_field_get_with_read_barrier =
4349 kEmitCompilerReadBarrier && (field_info.GetFieldType() == Primitive::kPrimNot);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004350 LocationSummary* locations =
Roland Levillain3b359c72015-11-17 19:35:12 +00004351 new (GetGraph()->GetArena()) LocationSummary(instruction,
4352 object_field_get_with_read_barrier ?
4353 LocationSummary::kCallOnSlowPath :
4354 LocationSummary::kNoCall);
Vladimir Marko70e97462016-08-09 11:04:26 +01004355 if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01004356 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01004357 }
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004358 locations->SetInAt(0, Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00004359
Nicolas Geoffray829280c2015-01-28 10:20:37 +00004360 bool volatile_for_double = field_info.IsVolatile()
Calin Juravle34166012014-12-19 17:22:29 +00004361 && (field_info.GetFieldType() == Primitive::kPrimDouble)
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004362 && !codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Roland Levillain3b359c72015-11-17 19:35:12 +00004363 // The output overlaps in case of volatile long: we don't want the
4364 // code generated by GenerateWideAtomicLoad to overwrite the
4365 // object's location. Likewise, in the case of an object field get
4366 // with read barriers enabled, we do not want the load to overwrite
4367 // the object's location, as we need it to emit the read barrier.
4368 bool overlap = (field_info.IsVolatile() && (field_info.GetFieldType() == Primitive::kPrimLong)) ||
4369 object_field_get_with_read_barrier;
Nicolas Geoffrayacc0b8e2015-04-20 12:39:57 +01004370
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004371 if (Primitive::IsFloatingPointType(instruction->GetType())) {
4372 locations->SetOut(Location::RequiresFpuRegister());
4373 } else {
4374 locations->SetOut(Location::RequiresRegister(),
4375 (overlap ? Location::kOutputOverlap : Location::kNoOutputOverlap));
4376 }
Nicolas Geoffray829280c2015-01-28 10:20:37 +00004377 if (volatile_for_double) {
Roland Levillainc9285912015-12-18 10:38:42 +00004378 // ARM encoding have some additional constraints for ldrexd/strexd:
Calin Juravle52c48962014-12-16 17:02:57 +00004379 // - registers need to be consecutive
4380 // - the first register should be even but not R14.
Roland Levillainc9285912015-12-18 10:38:42 +00004381 // We don't test for ARM yet, and the assertion makes sure that we
4382 // revisit this if we ever enable ARM encoding.
Calin Juravle52c48962014-12-16 17:02:57 +00004383 DCHECK_EQ(InstructionSet::kThumb2, codegen_->GetInstructionSet());
4384 locations->AddTemp(Location::RequiresRegister());
4385 locations->AddTemp(Location::RequiresRegister());
Roland Levillainc9285912015-12-18 10:38:42 +00004386 } else if (object_field_get_with_read_barrier && kUseBakerReadBarrier) {
4387 // We need a temporary register for the read barrier marking slow
4388 // path in CodeGeneratorARM::GenerateFieldLoadWithBakerReadBarrier.
4389 locations->AddTemp(Location::RequiresRegister());
Calin Juravle52c48962014-12-16 17:02:57 +00004390 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004391}
4392
Vladimir Marko37dd80d2016-08-01 17:41:45 +01004393Location LocationsBuilderARM::ArithmeticZeroOrFpuRegister(HInstruction* input) {
4394 DCHECK(input->GetType() == Primitive::kPrimDouble || input->GetType() == Primitive::kPrimFloat)
4395 << input->GetType();
4396 if ((input->IsFloatConstant() && (input->AsFloatConstant()->IsArithmeticZero())) ||
4397 (input->IsDoubleConstant() && (input->AsDoubleConstant()->IsArithmeticZero()))) {
4398 return Location::ConstantLocation(input->AsConstant());
4399 } else {
4400 return Location::RequiresFpuRegister();
4401 }
4402}
4403
Vladimir Markod2b4ca22015-09-14 15:13:26 +01004404Location LocationsBuilderARM::ArmEncodableConstantOrRegister(HInstruction* constant,
4405 Opcode opcode) {
4406 DCHECK(!Primitive::IsFloatingPointType(constant->GetType()));
4407 if (constant->IsConstant() &&
4408 CanEncodeConstantAsImmediate(constant->AsConstant(), opcode)) {
4409 return Location::ConstantLocation(constant->AsConstant());
4410 }
4411 return Location::RequiresRegister();
4412}
4413
4414bool LocationsBuilderARM::CanEncodeConstantAsImmediate(HConstant* input_cst,
4415 Opcode opcode) {
4416 uint64_t value = static_cast<uint64_t>(Int64FromConstant(input_cst));
4417 if (Primitive::Is64BitType(input_cst->GetType())) {
Vladimir Marko59751a72016-08-05 14:37:27 +01004418 Opcode high_opcode = opcode;
4419 SetCc low_set_cc = kCcDontCare;
4420 switch (opcode) {
4421 case SUB:
4422 // Flip the operation to an ADD.
4423 value = -value;
4424 opcode = ADD;
4425 FALLTHROUGH_INTENDED;
4426 case ADD:
4427 if (Low32Bits(value) == 0u) {
4428 return CanEncodeConstantAsImmediate(High32Bits(value), opcode, kCcDontCare);
4429 }
4430 high_opcode = ADC;
4431 low_set_cc = kCcSet;
4432 break;
4433 default:
4434 break;
4435 }
4436 return CanEncodeConstantAsImmediate(Low32Bits(value), opcode, low_set_cc) &&
4437 CanEncodeConstantAsImmediate(High32Bits(value), high_opcode, kCcDontCare);
Vladimir Markod2b4ca22015-09-14 15:13:26 +01004438 } else {
4439 return CanEncodeConstantAsImmediate(Low32Bits(value), opcode);
4440 }
4441}
4442
Vladimir Marko59751a72016-08-05 14:37:27 +01004443bool LocationsBuilderARM::CanEncodeConstantAsImmediate(uint32_t value,
4444 Opcode opcode,
4445 SetCc set_cc) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01004446 ShifterOperand so;
4447 ArmAssembler* assembler = codegen_->GetAssembler();
Vladimir Marko59751a72016-08-05 14:37:27 +01004448 if (assembler->ShifterOperandCanHold(kNoRegister, kNoRegister, opcode, value, set_cc, &so)) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01004449 return true;
4450 }
4451 Opcode neg_opcode = kNoOperand;
4452 switch (opcode) {
Vladimir Marko59751a72016-08-05 14:37:27 +01004453 case AND: neg_opcode = BIC; value = ~value; break;
4454 case ORR: neg_opcode = ORN; value = ~value; break;
4455 case ADD: neg_opcode = SUB; value = -value; break;
4456 case ADC: neg_opcode = SBC; value = ~value; break;
4457 case SUB: neg_opcode = ADD; value = -value; break;
4458 case SBC: neg_opcode = ADC; value = ~value; break;
Vladimir Markod2b4ca22015-09-14 15:13:26 +01004459 default:
4460 return false;
4461 }
Vladimir Marko59751a72016-08-05 14:37:27 +01004462 return assembler->ShifterOperandCanHold(kNoRegister, kNoRegister, neg_opcode, value, set_cc, &so);
Vladimir Markod2b4ca22015-09-14 15:13:26 +01004463}
4464
Calin Juravle52c48962014-12-16 17:02:57 +00004465void InstructionCodeGeneratorARM::HandleFieldGet(HInstruction* instruction,
4466 const FieldInfo& field_info) {
4467 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004468
Calin Juravle52c48962014-12-16 17:02:57 +00004469 LocationSummary* locations = instruction->GetLocations();
Roland Levillain3b359c72015-11-17 19:35:12 +00004470 Location base_loc = locations->InAt(0);
4471 Register base = base_loc.AsRegister<Register>();
Calin Juravle52c48962014-12-16 17:02:57 +00004472 Location out = locations->Out();
4473 bool is_volatile = field_info.IsVolatile();
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004474 bool atomic_ldrd_strd = codegen_->GetInstructionSetFeatures().HasAtomicLdrdAndStrd();
Calin Juravle52c48962014-12-16 17:02:57 +00004475 Primitive::Type field_type = field_info.GetFieldType();
4476 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
4477
4478 switch (field_type) {
Roland Levillainc9285912015-12-18 10:38:42 +00004479 case Primitive::kPrimBoolean:
Calin Juravle52c48962014-12-16 17:02:57 +00004480 __ LoadFromOffset(kLoadUnsignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004481 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004482
Roland Levillainc9285912015-12-18 10:38:42 +00004483 case Primitive::kPrimByte:
Calin Juravle52c48962014-12-16 17:02:57 +00004484 __ LoadFromOffset(kLoadSignedByte, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004485 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004486
Roland Levillainc9285912015-12-18 10:38:42 +00004487 case Primitive::kPrimShort:
Calin Juravle52c48962014-12-16 17:02:57 +00004488 __ LoadFromOffset(kLoadSignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004489 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004490
Roland Levillainc9285912015-12-18 10:38:42 +00004491 case Primitive::kPrimChar:
Calin Juravle52c48962014-12-16 17:02:57 +00004492 __ LoadFromOffset(kLoadUnsignedHalfword, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004493 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004494
4495 case Primitive::kPrimInt:
Calin Juravle52c48962014-12-16 17:02:57 +00004496 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004497 break;
Roland Levillainc9285912015-12-18 10:38:42 +00004498
4499 case Primitive::kPrimNot: {
4500 // /* HeapReference<Object> */ out = *(base + offset)
4501 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
4502 Location temp_loc = locations->GetTemp(0);
4503 // Note that a potential implicit null check is handled in this
4504 // CodeGeneratorARM::GenerateFieldLoadWithBakerReadBarrier call.
4505 codegen_->GenerateFieldLoadWithBakerReadBarrier(
4506 instruction, out, base, offset, temp_loc, /* needs_null_check */ true);
4507 if (is_volatile) {
4508 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4509 }
4510 } else {
4511 __ LoadFromOffset(kLoadWord, out.AsRegister<Register>(), base, offset);
4512 codegen_->MaybeRecordImplicitNullCheck(instruction);
4513 if (is_volatile) {
4514 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4515 }
4516 // If read barriers are enabled, emit read barriers other than
4517 // Baker's using a slow path (and also unpoison the loaded
4518 // reference, if heap poisoning is enabled).
4519 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, base_loc, offset);
4520 }
4521 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004522 }
4523
Roland Levillainc9285912015-12-18 10:38:42 +00004524 case Primitive::kPrimLong:
Calin Juravle34166012014-12-19 17:22:29 +00004525 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00004526 GenerateWideAtomicLoad(base, offset,
4527 out.AsRegisterPairLow<Register>(),
4528 out.AsRegisterPairHigh<Register>());
4529 } else {
4530 __ LoadFromOffset(kLoadWordPair, out.AsRegisterPairLow<Register>(), base, offset);
4531 }
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004532 break;
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004533
Roland Levillainc9285912015-12-18 10:38:42 +00004534 case Primitive::kPrimFloat:
Calin Juravle52c48962014-12-16 17:02:57 +00004535 __ LoadSFromOffset(out.AsFpuRegister<SRegister>(), base, offset);
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004536 break;
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004537
4538 case Primitive::kPrimDouble: {
Calin Juravle52c48962014-12-16 17:02:57 +00004539 DRegister out_reg = FromLowSToD(out.AsFpuRegisterPairLow<SRegister>());
Calin Juravle34166012014-12-19 17:22:29 +00004540 if (is_volatile && !atomic_ldrd_strd) {
Calin Juravle52c48962014-12-16 17:02:57 +00004541 Register lo = locations->GetTemp(0).AsRegister<Register>();
4542 Register hi = locations->GetTemp(1).AsRegister<Register>();
4543 GenerateWideAtomicLoad(base, offset, lo, hi);
Calin Juravle77520bc2015-01-12 18:45:46 +00004544 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004545 __ vmovdrr(out_reg, lo, hi);
4546 } else {
4547 __ LoadDFromOffset(out_reg, base, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00004548 codegen_->MaybeRecordImplicitNullCheck(instruction);
Calin Juravle52c48962014-12-16 17:02:57 +00004549 }
Nicolas Geoffray52e832b2014-11-06 15:15:31 +00004550 break;
4551 }
4552
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004553 case Primitive::kPrimVoid:
Calin Juravle52c48962014-12-16 17:02:57 +00004554 LOG(FATAL) << "Unreachable type " << field_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07004555 UNREACHABLE();
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004556 }
Calin Juravle52c48962014-12-16 17:02:57 +00004557
Roland Levillainc9285912015-12-18 10:38:42 +00004558 if (field_type == Primitive::kPrimNot || field_type == Primitive::kPrimDouble) {
4559 // Potential implicit null checks, in the case of reference or
4560 // double fields, are handled in the previous switch statement.
4561 } else {
Calin Juravle77520bc2015-01-12 18:45:46 +00004562 codegen_->MaybeRecordImplicitNullCheck(instruction);
4563 }
4564
Calin Juravle52c48962014-12-16 17:02:57 +00004565 if (is_volatile) {
Roland Levillainc9285912015-12-18 10:38:42 +00004566 if (field_type == Primitive::kPrimNot) {
4567 // Memory barriers, in the case of references, are also handled
4568 // in the previous switch statement.
4569 } else {
4570 codegen_->GenerateMemoryBarrier(MemBarrierKind::kLoadAny);
4571 }
Roland Levillain4d027112015-07-01 15:41:14 +01004572 }
Calin Juravle52c48962014-12-16 17:02:57 +00004573}
4574
4575void LocationsBuilderARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
4576 HandleFieldSet(instruction, instruction->GetFieldInfo());
4577}
4578
4579void InstructionCodeGeneratorARM::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004580 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Calin Juravle52c48962014-12-16 17:02:57 +00004581}
4582
4583void LocationsBuilderARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
4584 HandleFieldGet(instruction, instruction->GetFieldInfo());
4585}
4586
4587void InstructionCodeGeneratorARM::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
4588 HandleFieldGet(instruction, instruction->GetFieldInfo());
4589}
4590
4591void LocationsBuilderARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
4592 HandleFieldGet(instruction, instruction->GetFieldInfo());
4593}
4594
4595void InstructionCodeGeneratorARM::VisitStaticFieldGet(HStaticFieldGet* instruction) {
4596 HandleFieldGet(instruction, instruction->GetFieldInfo());
4597}
4598
4599void LocationsBuilderARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
4600 HandleFieldSet(instruction, instruction->GetFieldInfo());
4601}
4602
4603void InstructionCodeGeneratorARM::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004604 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004605}
4606
Calin Juravlee460d1d2015-09-29 04:52:17 +01004607void LocationsBuilderARM::VisitUnresolvedInstanceFieldGet(
4608 HUnresolvedInstanceFieldGet* instruction) {
4609 FieldAccessCallingConventionARM calling_convention;
4610 codegen_->CreateUnresolvedFieldLocationSummary(
4611 instruction, instruction->GetFieldType(), calling_convention);
4612}
4613
4614void InstructionCodeGeneratorARM::VisitUnresolvedInstanceFieldGet(
4615 HUnresolvedInstanceFieldGet* instruction) {
4616 FieldAccessCallingConventionARM calling_convention;
4617 codegen_->GenerateUnresolvedFieldAccess(instruction,
4618 instruction->GetFieldType(),
4619 instruction->GetFieldIndex(),
4620 instruction->GetDexPc(),
4621 calling_convention);
4622}
4623
4624void LocationsBuilderARM::VisitUnresolvedInstanceFieldSet(
4625 HUnresolvedInstanceFieldSet* instruction) {
4626 FieldAccessCallingConventionARM calling_convention;
4627 codegen_->CreateUnresolvedFieldLocationSummary(
4628 instruction, instruction->GetFieldType(), calling_convention);
4629}
4630
4631void InstructionCodeGeneratorARM::VisitUnresolvedInstanceFieldSet(
4632 HUnresolvedInstanceFieldSet* instruction) {
4633 FieldAccessCallingConventionARM calling_convention;
4634 codegen_->GenerateUnresolvedFieldAccess(instruction,
4635 instruction->GetFieldType(),
4636 instruction->GetFieldIndex(),
4637 instruction->GetDexPc(),
4638 calling_convention);
4639}
4640
4641void LocationsBuilderARM::VisitUnresolvedStaticFieldGet(
4642 HUnresolvedStaticFieldGet* instruction) {
4643 FieldAccessCallingConventionARM calling_convention;
4644 codegen_->CreateUnresolvedFieldLocationSummary(
4645 instruction, instruction->GetFieldType(), calling_convention);
4646}
4647
4648void InstructionCodeGeneratorARM::VisitUnresolvedStaticFieldGet(
4649 HUnresolvedStaticFieldGet* instruction) {
4650 FieldAccessCallingConventionARM calling_convention;
4651 codegen_->GenerateUnresolvedFieldAccess(instruction,
4652 instruction->GetFieldType(),
4653 instruction->GetFieldIndex(),
4654 instruction->GetDexPc(),
4655 calling_convention);
4656}
4657
4658void LocationsBuilderARM::VisitUnresolvedStaticFieldSet(
4659 HUnresolvedStaticFieldSet* instruction) {
4660 FieldAccessCallingConventionARM calling_convention;
4661 codegen_->CreateUnresolvedFieldLocationSummary(
4662 instruction, instruction->GetFieldType(), calling_convention);
4663}
4664
4665void InstructionCodeGeneratorARM::VisitUnresolvedStaticFieldSet(
4666 HUnresolvedStaticFieldSet* instruction) {
4667 FieldAccessCallingConventionARM calling_convention;
4668 codegen_->GenerateUnresolvedFieldAccess(instruction,
4669 instruction->GetFieldType(),
4670 instruction->GetFieldIndex(),
4671 instruction->GetDexPc(),
4672 calling_convention);
4673}
4674
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004675void LocationsBuilderARM::VisitNullCheck(HNullCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01004676 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction);
4677 locations->SetInAt(0, Location::RequiresRegister());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004678}
4679
Calin Juravle2ae48182016-03-16 14:05:09 +00004680void CodeGeneratorARM::GenerateImplicitNullCheck(HNullCheck* instruction) {
4681 if (CanMoveNullCheckToUser(instruction)) {
Calin Juravle77520bc2015-01-12 18:45:46 +00004682 return;
4683 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004684 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00004685
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004686 __ LoadFromOffset(kLoadWord, IP, obj.AsRegister<Register>(), 0);
Calin Juravle2ae48182016-03-16 14:05:09 +00004687 RecordPcInfo(instruction, instruction->GetDexPc());
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004688}
4689
Calin Juravle2ae48182016-03-16 14:05:09 +00004690void CodeGeneratorARM::GenerateExplicitNullCheck(HNullCheck* instruction) {
Artem Serovf4d6aee2016-07-11 10:41:45 +01004691 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM(instruction);
Calin Juravle2ae48182016-03-16 14:05:09 +00004692 AddSlowPath(slow_path);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004693
4694 LocationSummary* locations = instruction->GetLocations();
4695 Location obj = locations->InAt(0);
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004696
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01004697 __ CompareAndBranchIfZero(obj.AsRegister<Register>(), slow_path->GetEntryLabel());
Nicolas Geoffraye5038322014-07-04 09:41:32 +01004698}
4699
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004700void InstructionCodeGeneratorARM::VisitNullCheck(HNullCheck* instruction) {
Calin Juravle2ae48182016-03-16 14:05:09 +00004701 codegen_->GenerateNullCheck(instruction);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004702}
4703
Artem Serov6c916792016-07-11 14:02:34 +01004704static LoadOperandType GetLoadOperandType(Primitive::Type type) {
4705 switch (type) {
4706 case Primitive::kPrimNot:
4707 return kLoadWord;
4708 case Primitive::kPrimBoolean:
4709 return kLoadUnsignedByte;
4710 case Primitive::kPrimByte:
4711 return kLoadSignedByte;
4712 case Primitive::kPrimChar:
4713 return kLoadUnsignedHalfword;
4714 case Primitive::kPrimShort:
4715 return kLoadSignedHalfword;
4716 case Primitive::kPrimInt:
4717 return kLoadWord;
4718 case Primitive::kPrimLong:
4719 return kLoadWordPair;
4720 case Primitive::kPrimFloat:
4721 return kLoadSWord;
4722 case Primitive::kPrimDouble:
4723 return kLoadDWord;
4724 default:
4725 LOG(FATAL) << "Unreachable type " << type;
4726 UNREACHABLE();
4727 }
4728}
4729
4730static StoreOperandType GetStoreOperandType(Primitive::Type type) {
4731 switch (type) {
4732 case Primitive::kPrimNot:
4733 return kStoreWord;
4734 case Primitive::kPrimBoolean:
4735 case Primitive::kPrimByte:
4736 return kStoreByte;
4737 case Primitive::kPrimChar:
4738 case Primitive::kPrimShort:
4739 return kStoreHalfword;
4740 case Primitive::kPrimInt:
4741 return kStoreWord;
4742 case Primitive::kPrimLong:
4743 return kStoreWordPair;
4744 case Primitive::kPrimFloat:
4745 return kStoreSWord;
4746 case Primitive::kPrimDouble:
4747 return kStoreDWord;
4748 default:
4749 LOG(FATAL) << "Unreachable type " << type;
4750 UNREACHABLE();
4751 }
4752}
4753
4754void CodeGeneratorARM::LoadFromShiftedRegOffset(Primitive::Type type,
4755 Location out_loc,
4756 Register base,
4757 Register reg_offset,
4758 Condition cond) {
4759 uint32_t shift_count = Primitive::ComponentSizeShift(type);
4760 Address mem_address(base, reg_offset, Shift::LSL, shift_count);
4761
4762 switch (type) {
4763 case Primitive::kPrimByte:
4764 __ ldrsb(out_loc.AsRegister<Register>(), mem_address, cond);
4765 break;
4766 case Primitive::kPrimBoolean:
4767 __ ldrb(out_loc.AsRegister<Register>(), mem_address, cond);
4768 break;
4769 case Primitive::kPrimShort:
4770 __ ldrsh(out_loc.AsRegister<Register>(), mem_address, cond);
4771 break;
4772 case Primitive::kPrimChar:
4773 __ ldrh(out_loc.AsRegister<Register>(), mem_address, cond);
4774 break;
4775 case Primitive::kPrimNot:
4776 case Primitive::kPrimInt:
4777 __ ldr(out_loc.AsRegister<Register>(), mem_address, cond);
4778 break;
4779 // T32 doesn't support LoadFromShiftedRegOffset mem address mode for these types.
4780 case Primitive::kPrimLong:
4781 case Primitive::kPrimFloat:
4782 case Primitive::kPrimDouble:
4783 default:
4784 LOG(FATAL) << "Unreachable type " << type;
4785 UNREACHABLE();
4786 }
4787}
4788
4789void CodeGeneratorARM::StoreToShiftedRegOffset(Primitive::Type type,
4790 Location loc,
4791 Register base,
4792 Register reg_offset,
4793 Condition cond) {
4794 uint32_t shift_count = Primitive::ComponentSizeShift(type);
4795 Address mem_address(base, reg_offset, Shift::LSL, shift_count);
4796
4797 switch (type) {
4798 case Primitive::kPrimByte:
4799 case Primitive::kPrimBoolean:
4800 __ strb(loc.AsRegister<Register>(), mem_address, cond);
4801 break;
4802 case Primitive::kPrimShort:
4803 case Primitive::kPrimChar:
4804 __ strh(loc.AsRegister<Register>(), mem_address, cond);
4805 break;
4806 case Primitive::kPrimNot:
4807 case Primitive::kPrimInt:
4808 __ str(loc.AsRegister<Register>(), mem_address, cond);
4809 break;
4810 // T32 doesn't support StoreToShiftedRegOffset mem address mode for these types.
4811 case Primitive::kPrimLong:
4812 case Primitive::kPrimFloat:
4813 case Primitive::kPrimDouble:
4814 default:
4815 LOG(FATAL) << "Unreachable type " << type;
4816 UNREACHABLE();
4817 }
4818}
4819
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004820void LocationsBuilderARM::VisitArrayGet(HArrayGet* instruction) {
Roland Levillain3b359c72015-11-17 19:35:12 +00004821 bool object_array_get_with_read_barrier =
4822 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Nicolas Geoffray39468442014-09-02 15:17:15 +01004823 LocationSummary* locations =
Roland Levillain3b359c72015-11-17 19:35:12 +00004824 new (GetGraph()->GetArena()) LocationSummary(instruction,
4825 object_array_get_with_read_barrier ?
4826 LocationSummary::kCallOnSlowPath :
4827 LocationSummary::kNoCall);
Vladimir Marko70e97462016-08-09 11:04:26 +01004828 if (object_array_get_with_read_barrier && kUseBakerReadBarrier) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01004829 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01004830 }
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01004831 locations->SetInAt(0, Location::RequiresRegister());
4832 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004833 if (Primitive::IsFloatingPointType(instruction->GetType())) {
4834 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
4835 } else {
Roland Levillain3b359c72015-11-17 19:35:12 +00004836 // The output overlaps in the case of an object array get with
4837 // read barriers enabled: we do not want the move to overwrite the
4838 // array's location, as we need it to emit the read barrier.
4839 locations->SetOut(
4840 Location::RequiresRegister(),
4841 object_array_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01004842 }
Roland Levillainc9285912015-12-18 10:38:42 +00004843 // We need a temporary register for the read barrier marking slow
4844 // path in CodeGeneratorARM::GenerateArrayLoadWithBakerReadBarrier.
jessicahandojo05765752016-09-09 19:01:32 -07004845 // Also need for String compression feature.
4846 if ((object_array_get_with_read_barrier && kUseBakerReadBarrier)
4847 || (mirror::kUseStringCompression && instruction->IsStringCharAt())) {
Roland Levillainc9285912015-12-18 10:38:42 +00004848 locations->AddTemp(Location::RequiresRegister());
4849 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004850}
4851
4852void InstructionCodeGeneratorARM::VisitArrayGet(HArrayGet* instruction) {
4853 LocationSummary* locations = instruction->GetLocations();
Roland Levillain3b359c72015-11-17 19:35:12 +00004854 Location obj_loc = locations->InAt(0);
4855 Register obj = obj_loc.AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004856 Location index = locations->InAt(1);
Roland Levillainc9285912015-12-18 10:38:42 +00004857 Location out_loc = locations->Out();
Vladimir Marko87f3fcb2016-04-28 15:52:11 +01004858 uint32_t data_offset = CodeGenerator::GetArrayDataOffset(instruction);
Roland Levillainc9285912015-12-18 10:38:42 +00004859 Primitive::Type type = instruction->GetType();
jessicahandojo05765752016-09-09 19:01:32 -07004860 const bool maybe_compressed_char_at = mirror::kUseStringCompression &&
4861 instruction->IsStringCharAt();
Artem Serov328429f2016-07-06 16:23:04 +01004862 HInstruction* array_instr = instruction->GetArray();
4863 bool has_intermediate_address = array_instr->IsIntermediateAddress();
Artem Serov6c916792016-07-11 14:02:34 +01004864
Roland Levillain4d027112015-07-01 15:41:14 +01004865 switch (type) {
Artem Serov6c916792016-07-11 14:02:34 +01004866 case Primitive::kPrimBoolean:
4867 case Primitive::kPrimByte:
4868 case Primitive::kPrimShort:
4869 case Primitive::kPrimChar:
Roland Levillainc9285912015-12-18 10:38:42 +00004870 case Primitive::kPrimInt: {
Vladimir Markofdaf0f42016-10-13 19:29:53 +01004871 Register length;
4872 if (maybe_compressed_char_at) {
4873 length = locations->GetTemp(0).AsRegister<Register>();
4874 uint32_t count_offset = mirror::String::CountOffset().Uint32Value();
4875 __ LoadFromOffset(kLoadWord, length, obj, count_offset);
4876 codegen_->MaybeRecordImplicitNullCheck(instruction);
4877 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004878 if (index.IsConstant()) {
Artem Serov6c916792016-07-11 14:02:34 +01004879 int32_t const_index = index.GetConstant()->AsIntConstant()->GetValue();
jessicahandojo05765752016-09-09 19:01:32 -07004880 if (maybe_compressed_char_at) {
jessicahandojo05765752016-09-09 19:01:32 -07004881 Label uncompressed_load, done;
Vladimir Markofdaf0f42016-10-13 19:29:53 +01004882 __ Lsrs(length, length, 1u); // LSRS has a 16-bit encoding, TST (immediate) does not.
4883 static_assert(static_cast<uint32_t>(mirror::StringCompressionFlag::kCompressed) == 0u,
4884 "Expecting 0=compressed, 1=uncompressed");
4885 __ b(&uncompressed_load, CS);
jessicahandojo05765752016-09-09 19:01:32 -07004886 __ LoadFromOffset(kLoadUnsignedByte,
4887 out_loc.AsRegister<Register>(),
4888 obj,
4889 data_offset + const_index);
4890 __ b(&done);
4891 __ Bind(&uncompressed_load);
4892 __ LoadFromOffset(GetLoadOperandType(Primitive::kPrimChar),
4893 out_loc.AsRegister<Register>(),
4894 obj,
4895 data_offset + (const_index << 1));
4896 __ Bind(&done);
4897 } else {
4898 uint32_t full_offset = data_offset + (const_index << Primitive::ComponentSizeShift(type));
Artem Serov6c916792016-07-11 14:02:34 +01004899
jessicahandojo05765752016-09-09 19:01:32 -07004900 LoadOperandType load_type = GetLoadOperandType(type);
4901 __ LoadFromOffset(load_type, out_loc.AsRegister<Register>(), obj, full_offset);
4902 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004903 } else {
Artem Serov328429f2016-07-06 16:23:04 +01004904 Register temp = IP;
4905
4906 if (has_intermediate_address) {
4907 // We do not need to compute the intermediate address from the array: the
4908 // input instruction has done it already. See the comment in
4909 // `TryExtractArrayAccessAddress()`.
4910 if (kIsDebugBuild) {
4911 HIntermediateAddress* tmp = array_instr->AsIntermediateAddress();
4912 DCHECK_EQ(tmp->GetOffset()->AsIntConstant()->GetValueAsUint64(), data_offset);
4913 }
4914 temp = obj;
4915 } else {
4916 __ add(temp, obj, ShifterOperand(data_offset));
4917 }
jessicahandojo05765752016-09-09 19:01:32 -07004918 if (maybe_compressed_char_at) {
4919 Label uncompressed_load, done;
Vladimir Markofdaf0f42016-10-13 19:29:53 +01004920 __ Lsrs(length, length, 1u); // LSRS has a 16-bit encoding, TST (immediate) does not.
4921 static_assert(static_cast<uint32_t>(mirror::StringCompressionFlag::kCompressed) == 0u,
4922 "Expecting 0=compressed, 1=uncompressed");
4923 __ b(&uncompressed_load, CS);
jessicahandojo05765752016-09-09 19:01:32 -07004924 __ ldrb(out_loc.AsRegister<Register>(),
4925 Address(temp, index.AsRegister<Register>(), Shift::LSL, 0));
4926 __ b(&done);
4927 __ Bind(&uncompressed_load);
4928 __ ldrh(out_loc.AsRegister<Register>(),
4929 Address(temp, index.AsRegister<Register>(), Shift::LSL, 1));
4930 __ Bind(&done);
4931 } else {
4932 codegen_->LoadFromShiftedRegOffset(type, out_loc, temp, index.AsRegister<Register>());
4933 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004934 }
4935 break;
4936 }
4937
Roland Levillainc9285912015-12-18 10:38:42 +00004938 case Primitive::kPrimNot: {
Roland Levillain19c54192016-11-04 13:44:09 +00004939 // The read barrier instrumentation of object ArrayGet
4940 // instructions does not support the HIntermediateAddress
4941 // instruction.
4942 DCHECK(!(has_intermediate_address && kEmitCompilerReadBarrier));
4943
Roland Levillainc9285912015-12-18 10:38:42 +00004944 static_assert(
4945 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
4946 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillainc9285912015-12-18 10:38:42 +00004947 // /* HeapReference<Object> */ out =
4948 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
4949 if (kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
4950 Location temp = locations->GetTemp(0);
4951 // Note that a potential implicit null check is handled in this
4952 // CodeGeneratorARM::GenerateArrayLoadWithBakerReadBarrier call.
4953 codegen_->GenerateArrayLoadWithBakerReadBarrier(
4954 instruction, out_loc, obj, data_offset, index, temp, /* needs_null_check */ true);
4955 } else {
4956 Register out = out_loc.AsRegister<Register>();
4957 if (index.IsConstant()) {
4958 size_t offset =
4959 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
4960 __ LoadFromOffset(kLoadWord, out, obj, offset);
4961 codegen_->MaybeRecordImplicitNullCheck(instruction);
4962 // If read barriers are enabled, emit read barriers other than
4963 // Baker's using a slow path (and also unpoison the loaded
4964 // reference, if heap poisoning is enabled).
4965 codegen_->MaybeGenerateReadBarrierSlow(instruction, out_loc, out_loc, obj_loc, offset);
4966 } else {
Artem Serov328429f2016-07-06 16:23:04 +01004967 Register temp = IP;
4968
4969 if (has_intermediate_address) {
4970 // We do not need to compute the intermediate address from the array: the
4971 // input instruction has done it already. See the comment in
4972 // `TryExtractArrayAccessAddress()`.
4973 if (kIsDebugBuild) {
4974 HIntermediateAddress* tmp = array_instr->AsIntermediateAddress();
4975 DCHECK_EQ(tmp->GetOffset()->AsIntConstant()->GetValueAsUint64(), data_offset);
4976 }
4977 temp = obj;
4978 } else {
4979 __ add(temp, obj, ShifterOperand(data_offset));
4980 }
4981 codegen_->LoadFromShiftedRegOffset(type, out_loc, temp, index.AsRegister<Register>());
Artem Serov6c916792016-07-11 14:02:34 +01004982
Roland Levillainc9285912015-12-18 10:38:42 +00004983 codegen_->MaybeRecordImplicitNullCheck(instruction);
4984 // If read barriers are enabled, emit read barriers other than
4985 // Baker's using a slow path (and also unpoison the loaded
4986 // reference, if heap poisoning is enabled).
4987 codegen_->MaybeGenerateReadBarrierSlow(
4988 instruction, out_loc, out_loc, obj_loc, data_offset, index);
4989 }
4990 }
4991 break;
4992 }
4993
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004994 case Primitive::kPrimLong: {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004995 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00004996 size_t offset =
4997 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Roland Levillainc9285912015-12-18 10:38:42 +00004998 __ LoadFromOffset(kLoadWordPair, out_loc.AsRegisterPairLow<Register>(), obj, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01004999 } else {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005000 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Roland Levillainc9285912015-12-18 10:38:42 +00005001 __ LoadFromOffset(kLoadWordPair, out_loc.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005002 }
5003 break;
5004 }
5005
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005006 case Primitive::kPrimFloat: {
Roland Levillainc9285912015-12-18 10:38:42 +00005007 SRegister out = out_loc.AsFpuRegister<SRegister>();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005008 if (index.IsConstant()) {
5009 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Roland Levillainc9285912015-12-18 10:38:42 +00005010 __ LoadSFromOffset(out, obj, offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005011 } else {
5012 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Roland Levillainc9285912015-12-18 10:38:42 +00005013 __ LoadSFromOffset(out, IP, data_offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005014 }
5015 break;
5016 }
5017
5018 case Primitive::kPrimDouble: {
Roland Levillainc9285912015-12-18 10:38:42 +00005019 SRegister out = out_loc.AsFpuRegisterPairLow<SRegister>();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005020 if (index.IsConstant()) {
5021 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Roland Levillainc9285912015-12-18 10:38:42 +00005022 __ LoadDFromOffset(FromLowSToD(out), obj, offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005023 } else {
5024 __ add(IP, obj, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Roland Levillainc9285912015-12-18 10:38:42 +00005025 __ LoadDFromOffset(FromLowSToD(out), IP, data_offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005026 }
5027 break;
5028 }
5029
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005030 case Primitive::kPrimVoid:
Roland Levillain4d027112015-07-01 15:41:14 +01005031 LOG(FATAL) << "Unreachable type " << type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07005032 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005033 }
Roland Levillain4d027112015-07-01 15:41:14 +01005034
5035 if (type == Primitive::kPrimNot) {
Roland Levillainc9285912015-12-18 10:38:42 +00005036 // Potential implicit null checks, in the case of reference
5037 // arrays, are handled in the previous switch statement.
jessicahandojo05765752016-09-09 19:01:32 -07005038 } else if (!maybe_compressed_char_at) {
Roland Levillainc9285912015-12-18 10:38:42 +00005039 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain4d027112015-07-01 15:41:14 +01005040 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005041}
5042
5043void LocationsBuilderARM::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01005044 Primitive::Type value_type = instruction->GetComponentType();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005045
5046 bool needs_write_barrier =
5047 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Roland Levillain3b359c72015-11-17 19:35:12 +00005048 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005049
Nicolas Geoffray39468442014-09-02 15:17:15 +01005050 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005051 instruction,
Vladimir Marko8d49fd72016-08-25 15:20:47 +01005052 may_need_runtime_call_for_type_check ?
Roland Levillain3b359c72015-11-17 19:35:12 +00005053 LocationSummary::kCallOnSlowPath :
5054 LocationSummary::kNoCall);
5055
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005056 locations->SetInAt(0, Location::RequiresRegister());
5057 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
5058 if (Primitive::IsFloatingPointType(value_type)) {
5059 locations->SetInAt(2, Location::RequiresFpuRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005060 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005061 locations->SetInAt(2, Location::RequiresRegister());
5062 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005063 if (needs_write_barrier) {
5064 // Temporary registers for the write barrier.
5065 locations->AddTemp(Location::RequiresRegister()); // Possibly used for ref. poisoning too.
Roland Levillain4f6b0b52015-11-23 19:29:22 +00005066 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005067 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005068}
5069
5070void InstructionCodeGeneratorARM::VisitArraySet(HArraySet* instruction) {
5071 LocationSummary* locations = instruction->GetLocations();
Roland Levillain3b359c72015-11-17 19:35:12 +00005072 Location array_loc = locations->InAt(0);
5073 Register array = array_loc.AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005074 Location index = locations->InAt(1);
Nicolas Geoffray39468442014-09-02 15:17:15 +01005075 Primitive::Type value_type = instruction->GetComponentType();
Roland Levillain3b359c72015-11-17 19:35:12 +00005076 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005077 bool needs_write_barrier =
5078 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Artem Serov6c916792016-07-11 14:02:34 +01005079 uint32_t data_offset =
5080 mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
5081 Location value_loc = locations->InAt(2);
Artem Serov328429f2016-07-06 16:23:04 +01005082 HInstruction* array_instr = instruction->GetArray();
5083 bool has_intermediate_address = array_instr->IsIntermediateAddress();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005084
5085 switch (value_type) {
5086 case Primitive::kPrimBoolean:
Artem Serov6c916792016-07-11 14:02:34 +01005087 case Primitive::kPrimByte:
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005088 case Primitive::kPrimShort:
Artem Serov6c916792016-07-11 14:02:34 +01005089 case Primitive::kPrimChar:
5090 case Primitive::kPrimInt: {
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005091 if (index.IsConstant()) {
Artem Serov6c916792016-07-11 14:02:34 +01005092 int32_t const_index = index.GetConstant()->AsIntConstant()->GetValue();
5093 uint32_t full_offset =
5094 data_offset + (const_index << Primitive::ComponentSizeShift(value_type));
5095 StoreOperandType store_type = GetStoreOperandType(value_type);
5096 __ StoreToOffset(store_type, value_loc.AsRegister<Register>(), array, full_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005097 } else {
Artem Serov328429f2016-07-06 16:23:04 +01005098 Register temp = IP;
5099
5100 if (has_intermediate_address) {
5101 // We do not need to compute the intermediate address from the array: the
5102 // input instruction has done it already. See the comment in
5103 // `TryExtractArrayAccessAddress()`.
5104 if (kIsDebugBuild) {
5105 HIntermediateAddress* tmp = array_instr->AsIntermediateAddress();
5106 DCHECK(tmp->GetOffset()->AsIntConstant()->GetValueAsUint64() == data_offset);
5107 }
5108 temp = array;
5109 } else {
5110 __ add(temp, array, ShifterOperand(data_offset));
5111 }
Artem Serov6c916792016-07-11 14:02:34 +01005112 codegen_->StoreToShiftedRegOffset(value_type,
5113 value_loc,
Artem Serov328429f2016-07-06 16:23:04 +01005114 temp,
Artem Serov6c916792016-07-11 14:02:34 +01005115 index.AsRegister<Register>());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005116 }
5117 break;
5118 }
5119
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005120 case Primitive::kPrimNot: {
Roland Levillain3b359c72015-11-17 19:35:12 +00005121 Register value = value_loc.AsRegister<Register>();
Artem Serov328429f2016-07-06 16:23:04 +01005122 // TryExtractArrayAccessAddress optimization is never applied for non-primitive ArraySet.
5123 // See the comment in instruction_simplifier_shared.cc.
5124 DCHECK(!has_intermediate_address);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005125
5126 if (instruction->InputAt(2)->IsNullConstant()) {
5127 // Just setting null.
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005128 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00005129 size_t offset =
5130 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Artem Serov6c916792016-07-11 14:02:34 +01005131 __ StoreToOffset(kStoreWord, value, array, offset);
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005132 } else {
5133 DCHECK(index.IsRegister()) << index;
Artem Serov6c916792016-07-11 14:02:34 +01005134 __ add(IP, array, ShifterOperand(data_offset));
5135 codegen_->StoreToShiftedRegOffset(value_type,
5136 value_loc,
5137 IP,
5138 index.AsRegister<Register>());
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005139 }
Roland Levillain1407ee72016-01-08 15:56:19 +00005140 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain3b359c72015-11-17 19:35:12 +00005141 DCHECK(!needs_write_barrier);
5142 DCHECK(!may_need_runtime_call_for_type_check);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005143 break;
Nicolas Geoffrayaf07bc12014-11-12 18:08:09 +00005144 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005145
5146 DCHECK(needs_write_barrier);
Roland Levillain16d9f942016-08-25 17:27:56 +01005147 Location temp1_loc = locations->GetTemp(0);
5148 Register temp1 = temp1_loc.AsRegister<Register>();
5149 Location temp2_loc = locations->GetTemp(1);
5150 Register temp2 = temp2_loc.AsRegister<Register>();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005151 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
5152 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
5153 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
5154 Label done;
Artem Serovf4d6aee2016-07-11 10:41:45 +01005155 SlowPathCodeARM* slow_path = nullptr;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005156
Roland Levillain3b359c72015-11-17 19:35:12 +00005157 if (may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005158 slow_path = new (GetGraph()->GetArena()) ArraySetSlowPathARM(instruction);
5159 codegen_->AddSlowPath(slow_path);
5160 if (instruction->GetValueCanBeNull()) {
5161 Label non_zero;
5162 __ CompareAndBranchIfNonZero(value, &non_zero);
5163 if (index.IsConstant()) {
5164 size_t offset =
5165 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
5166 __ StoreToOffset(kStoreWord, value, array, offset);
5167 } else {
5168 DCHECK(index.IsRegister()) << index;
Artem Serov6c916792016-07-11 14:02:34 +01005169 __ add(IP, array, ShifterOperand(data_offset));
5170 codegen_->StoreToShiftedRegOffset(value_type,
5171 value_loc,
5172 IP,
5173 index.AsRegister<Register>());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005174 }
5175 codegen_->MaybeRecordImplicitNullCheck(instruction);
5176 __ b(&done);
5177 __ Bind(&non_zero);
5178 }
5179
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005180 // Note that when read barriers are enabled, the type checks
5181 // are performed without read barriers. This is fine, even in
5182 // the case where a class object is in the from-space after
5183 // the flip, as a comparison involving such a type would not
5184 // produce a false positive; it may of course produce a false
5185 // negative, in which case we would take the ArraySet slow
5186 // path.
Roland Levillain16d9f942016-08-25 17:27:56 +01005187
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005188 // /* HeapReference<Class> */ temp1 = array->klass_
5189 __ LoadFromOffset(kLoadWord, temp1, array, class_offset);
5190 codegen_->MaybeRecordImplicitNullCheck(instruction);
5191 __ MaybeUnpoisonHeapReference(temp1);
Roland Levillain16d9f942016-08-25 17:27:56 +01005192
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005193 // /* HeapReference<Class> */ temp1 = temp1->component_type_
5194 __ LoadFromOffset(kLoadWord, temp1, temp1, component_offset);
5195 // /* HeapReference<Class> */ temp2 = value->klass_
5196 __ LoadFromOffset(kLoadWord, temp2, value, class_offset);
5197 // If heap poisoning is enabled, no need to unpoison `temp1`
5198 // nor `temp2`, as we are comparing two poisoned references.
5199 __ cmp(temp1, ShifterOperand(temp2));
Roland Levillain16d9f942016-08-25 17:27:56 +01005200
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005201 if (instruction->StaticTypeOfArrayIsObjectArray()) {
5202 Label do_put;
5203 __ b(&do_put, EQ);
5204 // If heap poisoning is enabled, the `temp1` reference has
5205 // not been unpoisoned yet; unpoison it now.
Roland Levillain3b359c72015-11-17 19:35:12 +00005206 __ MaybeUnpoisonHeapReference(temp1);
5207
Roland Levillain9d6e1f82016-09-05 15:57:33 +01005208 // /* HeapReference<Class> */ temp1 = temp1->super_class_
5209 __ LoadFromOffset(kLoadWord, temp1, temp1, super_offset);
5210 // If heap poisoning is enabled, no need to unpoison
5211 // `temp1`, as we are comparing against null below.
5212 __ CompareAndBranchIfNonZero(temp1, slow_path->GetEntryLabel());
5213 __ Bind(&do_put);
5214 } else {
5215 __ b(slow_path->GetEntryLabel(), NE);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005216 }
5217 }
5218
Artem Serov6c916792016-07-11 14:02:34 +01005219 Register source = value;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005220 if (kPoisonHeapReferences) {
5221 // Note that in the case where `value` is a null reference,
5222 // we do not enter this block, as a null reference does not
5223 // need poisoning.
5224 DCHECK_EQ(value_type, Primitive::kPrimNot);
5225 __ Mov(temp1, value);
5226 __ PoisonHeapReference(temp1);
5227 source = temp1;
5228 }
5229
5230 if (index.IsConstant()) {
5231 size_t offset =
5232 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
5233 __ StoreToOffset(kStoreWord, source, array, offset);
5234 } else {
5235 DCHECK(index.IsRegister()) << index;
Artem Serov6c916792016-07-11 14:02:34 +01005236
5237 __ add(IP, array, ShifterOperand(data_offset));
5238 codegen_->StoreToShiftedRegOffset(value_type,
5239 Location::RegisterLocation(source),
5240 IP,
5241 index.AsRegister<Register>());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005242 }
5243
Roland Levillain3b359c72015-11-17 19:35:12 +00005244 if (!may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005245 codegen_->MaybeRecordImplicitNullCheck(instruction);
5246 }
5247
5248 codegen_->MarkGCCard(temp1, temp2, array, value, instruction->GetValueCanBeNull());
5249
5250 if (done.IsLinked()) {
5251 __ Bind(&done);
5252 }
5253
5254 if (slow_path != nullptr) {
5255 __ Bind(slow_path->GetExitLabel());
5256 }
5257
5258 break;
5259 }
5260
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005261 case Primitive::kPrimLong: {
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01005262 Location value = locations->InAt(2);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005263 if (index.IsConstant()) {
Roland Levillain199f3362014-11-27 17:15:16 +00005264 size_t offset =
5265 (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005266 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), array, offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005267 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005268 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray56b9ee62014-10-09 11:47:51 +01005269 __ StoreToOffset(kStoreWordPair, value.AsRegisterPairLow<Register>(), IP, data_offset);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005270 }
5271 break;
5272 }
5273
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005274 case Primitive::kPrimFloat: {
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005275 Location value = locations->InAt(2);
5276 DCHECK(value.IsFpuRegister());
5277 if (index.IsConstant()) {
5278 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_4) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005279 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), array, offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005280 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005281 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_4));
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005282 __ StoreSToOffset(value.AsFpuRegister<SRegister>(), IP, data_offset);
5283 }
5284 break;
5285 }
5286
5287 case Primitive::kPrimDouble: {
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005288 Location value = locations->InAt(2);
5289 DCHECK(value.IsFpuRegisterPair());
5290 if (index.IsConstant()) {
5291 size_t offset = (index.GetConstant()->AsIntConstant()->GetValue() << TIMES_8) + data_offset;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005292 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), array, offset);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005293 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01005294 __ add(IP, array, ShifterOperand(index.AsRegister<Register>(), LSL, TIMES_8));
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005295 __ StoreDToOffset(FromLowSToD(value.AsFpuRegisterPairLow<SRegister>()), IP, data_offset);
5296 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005297
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005298 break;
5299 }
5300
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005301 case Primitive::kPrimVoid:
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005302 LOG(FATAL) << "Unreachable type " << value_type;
Ian Rogersfc787ec2014-10-09 21:56:44 -07005303 UNREACHABLE();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005304 }
Calin Juravle77520bc2015-01-12 18:45:46 +00005305
Roland Levillain80e67092016-01-08 16:04:55 +00005306 // Objects are handled in the switch.
5307 if (value_type != Primitive::kPrimNot) {
Calin Juravle77520bc2015-01-12 18:45:46 +00005308 codegen_->MaybeRecordImplicitNullCheck(instruction);
5309 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005310}
5311
5312void LocationsBuilderARM::VisitArrayLength(HArrayLength* instruction) {
Nicolas Geoffray39468442014-09-02 15:17:15 +01005313 LocationSummary* locations =
5314 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray8e3964b2014-10-17 11:06:38 +01005315 locations->SetInAt(0, Location::RequiresRegister());
5316 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005317}
5318
5319void InstructionCodeGeneratorARM::VisitArrayLength(HArrayLength* instruction) {
5320 LocationSummary* locations = instruction->GetLocations();
Vladimir Markodce016e2016-04-28 13:10:02 +01005321 uint32_t offset = CodeGenerator::GetArrayLengthOffset(instruction);
Roland Levillain271ab9c2014-11-27 15:23:57 +00005322 Register obj = locations->InAt(0).AsRegister<Register>();
5323 Register out = locations->Out().AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005324 __ LoadFromOffset(kLoadWord, out, obj, offset);
Calin Juravle77520bc2015-01-12 18:45:46 +00005325 codegen_->MaybeRecordImplicitNullCheck(instruction);
jessicahandojo05765752016-09-09 19:01:32 -07005326 // Mask out compression flag from String's array length.
5327 if (mirror::kUseStringCompression && instruction->IsStringLength()) {
Vladimir Markofdaf0f42016-10-13 19:29:53 +01005328 __ Lsr(out, out, 1u);
jessicahandojo05765752016-09-09 19:01:32 -07005329 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005330}
5331
Artem Serov328429f2016-07-06 16:23:04 +01005332void LocationsBuilderARM::VisitIntermediateAddress(HIntermediateAddress* instruction) {
Artem Serov328429f2016-07-06 16:23:04 +01005333 LocationSummary* locations =
5334 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
5335
5336 locations->SetInAt(0, Location::RequiresRegister());
5337 locations->SetInAt(1, Location::RegisterOrConstant(instruction->GetOffset()));
5338 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
5339}
5340
5341void InstructionCodeGeneratorARM::VisitIntermediateAddress(HIntermediateAddress* instruction) {
5342 LocationSummary* locations = instruction->GetLocations();
5343 Location out = locations->Out();
5344 Location first = locations->InAt(0);
5345 Location second = locations->InAt(1);
5346
Artem Serov328429f2016-07-06 16:23:04 +01005347 if (second.IsRegister()) {
5348 __ add(out.AsRegister<Register>(),
5349 first.AsRegister<Register>(),
5350 ShifterOperand(second.AsRegister<Register>()));
5351 } else {
5352 __ AddConstant(out.AsRegister<Register>(),
5353 first.AsRegister<Register>(),
5354 second.GetConstant()->AsIntConstant()->GetValue());
5355 }
5356}
5357
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005358void LocationsBuilderARM::VisitBoundsCheck(HBoundsCheck* instruction) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005359 RegisterSet caller_saves = RegisterSet::Empty();
5360 InvokeRuntimeCallingConvention calling_convention;
5361 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5362 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(1)));
5363 LocationSummary* locations = codegen_->CreateThrowingSlowPathLocations(instruction, caller_saves);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005364 locations->SetInAt(0, Location::RequiresRegister());
5365 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005366}
5367
5368void InstructionCodeGeneratorARM::VisitBoundsCheck(HBoundsCheck* instruction) {
5369 LocationSummary* locations = instruction->GetLocations();
Artem Serovf4d6aee2016-07-11 10:41:45 +01005370 SlowPathCodeARM* slow_path =
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01005371 new (GetGraph()->GetArena()) BoundsCheckSlowPathARM(instruction);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005372 codegen_->AddSlowPath(slow_path);
5373
Roland Levillain271ab9c2014-11-27 15:23:57 +00005374 Register index = locations->InAt(0).AsRegister<Register>();
5375 Register length = locations->InAt(1).AsRegister<Register>();
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005376
5377 __ cmp(index, ShifterOperand(length));
Roland Levillain4fa13f62015-07-06 18:11:54 +01005378 __ b(slow_path->GetEntryLabel(), HS);
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005379}
5380
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005381void CodeGeneratorARM::MarkGCCard(Register temp,
5382 Register card,
5383 Register object,
5384 Register value,
5385 bool can_be_null) {
Vladimir Markocf93a5c2015-06-16 11:33:24 +00005386 Label is_null;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005387 if (can_be_null) {
5388 __ CompareAndBranchIfZero(value, &is_null);
5389 }
Andreas Gampe542451c2016-07-26 09:02:02 -07005390 __ LoadFromOffset(kLoadWord, card, TR, Thread::CardTableOffset<kArmPointerSize>().Int32Value());
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005391 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
5392 __ strb(card, Address(card, temp));
Nicolas Geoffray07276db2015-05-18 14:22:09 +01005393 if (can_be_null) {
5394 __ Bind(&is_null);
5395 }
Nicolas Geoffray3c7bb982014-07-23 16:04:16 +01005396}
5397
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01005398void LocationsBuilderARM::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005399 LOG(FATAL) << "Unreachable";
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01005400}
5401
5402void InstructionCodeGeneratorARM::VisitParallelMove(HParallelMove* instruction) {
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005403 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
5404}
5405
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005406void LocationsBuilderARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Vladimir Marko70e97462016-08-09 11:04:26 +01005407 LocationSummary* locations =
5408 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
Vladimir Marko804b03f2016-09-14 16:26:36 +01005409 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005410}
5411
5412void InstructionCodeGeneratorARM::VisitSuspendCheck(HSuspendCheck* instruction) {
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005413 HBasicBlock* block = instruction->GetBlock();
5414 if (block->GetLoopInformation() != nullptr) {
5415 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
5416 // The back edge will generate the suspend check.
5417 return;
5418 }
5419 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
5420 // The goto will generate the suspend check.
5421 return;
5422 }
5423 GenerateSuspendCheck(instruction, nullptr);
5424}
5425
5426void InstructionCodeGeneratorARM::GenerateSuspendCheck(HSuspendCheck* instruction,
5427 HBasicBlock* successor) {
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005428 SuspendCheckSlowPathARM* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01005429 down_cast<SuspendCheckSlowPathARM*>(instruction->GetSlowPath());
5430 if (slow_path == nullptr) {
5431 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathARM(instruction, successor);
5432 instruction->SetSlowPath(slow_path);
5433 codegen_->AddSlowPath(slow_path);
5434 if (successor != nullptr) {
5435 DCHECK(successor->IsLoopHeader());
5436 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
5437 }
5438 } else {
5439 DCHECK_EQ(slow_path->GetSuccessor(), successor);
5440 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005441
Nicolas Geoffray44b819e2014-11-06 12:00:54 +00005442 __ LoadFromOffset(
Andreas Gampe542451c2016-07-26 09:02:02 -07005443 kLoadUnsignedHalfword, IP, TR, Thread::ThreadFlagsOffset<kArmPointerSize>().Int32Value());
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005444 if (successor == nullptr) {
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01005445 __ CompareAndBranchIfNonZero(IP, slow_path->GetEntryLabel());
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005446 __ Bind(slow_path->GetReturnLabel());
5447 } else {
Nicolas Geoffray2bcb4312015-07-01 12:22:56 +01005448 __ CompareAndBranchIfZero(IP, codegen_->GetLabelOf(successor));
Nicolas Geoffray3c049742014-09-24 18:10:46 +01005449 __ b(slow_path->GetEntryLabel());
5450 }
Nicolas Geoffrayfbc695f2014-09-15 15:33:30 +00005451}
5452
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005453ArmAssembler* ParallelMoveResolverARM::GetAssembler() const {
5454 return codegen_->GetAssembler();
5455}
5456
5457void ParallelMoveResolverARM::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005458 MoveOperands* move = moves_[index];
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005459 Location source = move->GetSource();
5460 Location destination = move->GetDestination();
5461
5462 if (source.IsRegister()) {
5463 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005464 __ Mov(destination.AsRegister<Register>(), source.AsRegister<Register>());
David Brazdil74eb1b22015-12-14 11:44:01 +00005465 } else if (destination.IsFpuRegister()) {
5466 __ vmovsr(destination.AsFpuRegister<SRegister>(), source.AsRegister<Register>());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005467 } else {
5468 DCHECK(destination.IsStackSlot());
Roland Levillain271ab9c2014-11-27 15:23:57 +00005469 __ StoreToOffset(kStoreWord, source.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005470 SP, destination.GetStackIndex());
5471 }
5472 } else if (source.IsStackSlot()) {
5473 if (destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005474 __ LoadFromOffset(kLoadWord, destination.AsRegister<Register>(),
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005475 SP, source.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005476 } else if (destination.IsFpuRegister()) {
5477 __ LoadSFromOffset(destination.AsFpuRegister<SRegister>(), SP, source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005478 } else {
5479 DCHECK(destination.IsStackSlot());
5480 __ LoadFromOffset(kLoadWord, IP, SP, source.GetStackIndex());
5481 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
5482 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005483 } else if (source.IsFpuRegister()) {
David Brazdil74eb1b22015-12-14 11:44:01 +00005484 if (destination.IsRegister()) {
5485 __ vmovrs(destination.AsRegister<Register>(), source.AsFpuRegister<SRegister>());
5486 } else if (destination.IsFpuRegister()) {
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005487 __ vmovs(destination.AsFpuRegister<SRegister>(), source.AsFpuRegister<SRegister>());
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005488 } else {
5489 DCHECK(destination.IsStackSlot());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005490 __ StoreSToOffset(source.AsFpuRegister<SRegister>(), SP, destination.GetStackIndex());
5491 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005492 } else if (source.IsDoubleStackSlot()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005493 if (destination.IsDoubleStackSlot()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005494 __ LoadDFromOffset(DTMP, SP, source.GetStackIndex());
5495 __ StoreDToOffset(DTMP, SP, destination.GetStackIndex());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005496 } else if (destination.IsRegisterPair()) {
5497 DCHECK(ExpectedPairLayout(destination));
5498 __ LoadFromOffset(
5499 kLoadWordPair, destination.AsRegisterPairLow<Register>(), SP, source.GetStackIndex());
5500 } else {
5501 DCHECK(destination.IsFpuRegisterPair()) << destination;
5502 __ LoadDFromOffset(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
5503 SP,
5504 source.GetStackIndex());
5505 }
5506 } else if (source.IsRegisterPair()) {
5507 if (destination.IsRegisterPair()) {
5508 __ Mov(destination.AsRegisterPairLow<Register>(), source.AsRegisterPairLow<Register>());
5509 __ Mov(destination.AsRegisterPairHigh<Register>(), source.AsRegisterPairHigh<Register>());
David Brazdil74eb1b22015-12-14 11:44:01 +00005510 } else if (destination.IsFpuRegisterPair()) {
5511 __ vmovdrr(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
5512 source.AsRegisterPairLow<Register>(),
5513 source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005514 } else {
5515 DCHECK(destination.IsDoubleStackSlot()) << destination;
5516 DCHECK(ExpectedPairLayout(source));
5517 __ StoreToOffset(
5518 kStoreWordPair, source.AsRegisterPairLow<Register>(), SP, destination.GetStackIndex());
5519 }
5520 } else if (source.IsFpuRegisterPair()) {
David Brazdil74eb1b22015-12-14 11:44:01 +00005521 if (destination.IsRegisterPair()) {
5522 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
5523 destination.AsRegisterPairHigh<Register>(),
5524 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
5525 } else if (destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005526 __ vmovd(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()),
5527 FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()));
5528 } else {
5529 DCHECK(destination.IsDoubleStackSlot()) << destination;
5530 __ StoreDToOffset(FromLowSToD(source.AsFpuRegisterPairLow<SRegister>()),
5531 SP,
5532 destination.GetStackIndex());
5533 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005534 } else {
5535 DCHECK(source.IsConstant()) << source;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00005536 HConstant* constant = source.GetConstant();
5537 if (constant->IsIntConstant() || constant->IsNullConstant()) {
5538 int32_t value = CodeGenerator::GetInt32ValueOf(constant);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005539 if (destination.IsRegister()) {
5540 __ LoadImmediate(destination.AsRegister<Register>(), value);
5541 } else {
5542 DCHECK(destination.IsStackSlot());
5543 __ LoadImmediate(IP, value);
5544 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
5545 }
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00005546 } else if (constant->IsLongConstant()) {
5547 int64_t value = constant->AsLongConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005548 if (destination.IsRegisterPair()) {
5549 __ LoadImmediate(destination.AsRegisterPairLow<Register>(), Low32Bits(value));
5550 __ LoadImmediate(destination.AsRegisterPairHigh<Register>(), High32Bits(value));
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00005551 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005552 DCHECK(destination.IsDoubleStackSlot()) << destination;
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00005553 __ LoadImmediate(IP, Low32Bits(value));
5554 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
5555 __ LoadImmediate(IP, High32Bits(value));
5556 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
5557 }
5558 } else if (constant->IsDoubleConstant()) {
5559 double value = constant->AsDoubleConstant()->GetValue();
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005560 if (destination.IsFpuRegisterPair()) {
5561 __ LoadDImmediate(FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>()), value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00005562 } else {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005563 DCHECK(destination.IsDoubleStackSlot()) << destination;
5564 uint64_t int_value = bit_cast<uint64_t, double>(value);
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00005565 __ LoadImmediate(IP, Low32Bits(int_value));
5566 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
5567 __ LoadImmediate(IP, High32Bits(int_value));
5568 __ StoreToOffset(kStoreWord, IP, SP, destination.GetHighStackIndex(kArmWordSize));
5569 }
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005570 } else {
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00005571 DCHECK(constant->IsFloatConstant()) << constant->DebugName();
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005572 float value = constant->AsFloatConstant()->GetValue();
5573 if (destination.IsFpuRegister()) {
5574 __ LoadSImmediate(destination.AsFpuRegister<SRegister>(), value);
5575 } else {
5576 DCHECK(destination.IsStackSlot());
5577 __ LoadImmediate(IP, bit_cast<int32_t, float>(value));
5578 __ StoreToOffset(kStoreWord, IP, SP, destination.GetStackIndex());
5579 }
Nicolas Geoffray96f89a22014-07-11 10:57:49 +01005580 }
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005581 }
5582}
5583
5584void ParallelMoveResolverARM::Exchange(Register reg, int mem) {
5585 __ Mov(IP, reg);
5586 __ LoadFromOffset(kLoadWord, reg, SP, mem);
5587 __ StoreToOffset(kStoreWord, IP, SP, mem);
5588}
5589
5590void ParallelMoveResolverARM::Exchange(int mem1, int mem2) {
5591 ScratchRegisterScope ensure_scratch(this, IP, R0, codegen_->GetNumberOfCoreRegisters());
5592 int stack_offset = ensure_scratch.IsSpilled() ? kArmWordSize : 0;
5593 __ LoadFromOffset(kLoadWord, static_cast<Register>(ensure_scratch.GetRegister()),
5594 SP, mem1 + stack_offset);
5595 __ LoadFromOffset(kLoadWord, IP, SP, mem2 + stack_offset);
5596 __ StoreToOffset(kStoreWord, static_cast<Register>(ensure_scratch.GetRegister()),
5597 SP, mem2 + stack_offset);
5598 __ StoreToOffset(kStoreWord, IP, SP, mem1 + stack_offset);
5599}
5600
5601void ParallelMoveResolverARM::EmitSwap(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +01005602 MoveOperands* move = moves_[index];
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005603 Location source = move->GetSource();
5604 Location destination = move->GetDestination();
5605
5606 if (source.IsRegister() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005607 DCHECK_NE(source.AsRegister<Register>(), IP);
5608 DCHECK_NE(destination.AsRegister<Register>(), IP);
5609 __ Mov(IP, source.AsRegister<Register>());
5610 __ Mov(source.AsRegister<Register>(), destination.AsRegister<Register>());
5611 __ Mov(destination.AsRegister<Register>(), IP);
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005612 } else if (source.IsRegister() && destination.IsStackSlot()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005613 Exchange(source.AsRegister<Register>(), destination.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005614 } else if (source.IsStackSlot() && destination.IsRegister()) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00005615 Exchange(destination.AsRegister<Register>(), source.GetStackIndex());
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005616 } else if (source.IsStackSlot() && destination.IsStackSlot()) {
5617 Exchange(source.GetStackIndex(), destination.GetStackIndex());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005618 } else if (source.IsFpuRegister() && destination.IsFpuRegister()) {
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00005619 __ vmovrs(IP, source.AsFpuRegister<SRegister>());
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005620 __ vmovs(source.AsFpuRegister<SRegister>(), destination.AsFpuRegister<SRegister>());
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00005621 __ vmovsr(destination.AsFpuRegister<SRegister>(), IP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005622 } else if (source.IsRegisterPair() && destination.IsRegisterPair()) {
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005623 __ vmovdrr(DTMP, source.AsRegisterPairLow<Register>(), source.AsRegisterPairHigh<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005624 __ Mov(source.AsRegisterPairLow<Register>(), destination.AsRegisterPairLow<Register>());
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005625 __ Mov(source.AsRegisterPairHigh<Register>(), destination.AsRegisterPairHigh<Register>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005626 __ vmovrrd(destination.AsRegisterPairLow<Register>(),
5627 destination.AsRegisterPairHigh<Register>(),
5628 DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005629 } else if (source.IsRegisterPair() || destination.IsRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005630 Register low_reg = source.IsRegisterPair()
5631 ? source.AsRegisterPairLow<Register>()
5632 : destination.AsRegisterPairLow<Register>();
5633 int mem = source.IsRegisterPair()
5634 ? destination.GetStackIndex()
5635 : source.GetStackIndex();
5636 DCHECK(ExpectedPairLayout(source.IsRegisterPair() ? source : destination));
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005637 __ vmovdrr(DTMP, low_reg, static_cast<Register>(low_reg + 1));
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005638 __ LoadFromOffset(kLoadWordPair, low_reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005639 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005640 } else if (source.IsFpuRegisterPair() && destination.IsFpuRegisterPair()) {
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005641 DRegister first = FromLowSToD(source.AsFpuRegisterPairLow<SRegister>());
5642 DRegister second = FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005643 __ vmovd(DTMP, first);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005644 __ vmovd(first, second);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005645 __ vmovd(second, DTMP);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005646 } else if (source.IsFpuRegisterPair() || destination.IsFpuRegisterPair()) {
5647 DRegister reg = source.IsFpuRegisterPair()
5648 ? FromLowSToD(source.AsFpuRegisterPairLow<SRegister>())
5649 : FromLowSToD(destination.AsFpuRegisterPairLow<SRegister>());
5650 int mem = source.IsFpuRegisterPair()
5651 ? destination.GetStackIndex()
5652 : source.GetStackIndex();
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005653 __ vmovd(DTMP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005654 __ LoadDFromOffset(reg, SP, mem);
Nicolas Geoffrayffe8a572015-02-11 01:10:39 +00005655 __ StoreDToOffset(DTMP, SP, mem);
Nicolas Geoffray840e5462015-01-07 16:01:24 +00005656 } else if (source.IsFpuRegister() || destination.IsFpuRegister()) {
5657 SRegister reg = source.IsFpuRegister() ? source.AsFpuRegister<SRegister>()
5658 : destination.AsFpuRegister<SRegister>();
5659 int mem = source.IsFpuRegister()
5660 ? destination.GetStackIndex()
5661 : source.GetStackIndex();
5662
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00005663 __ vmovrs(IP, reg);
Nicolas Geoffrayf7a0c4e2015-02-10 17:08:47 +00005664 __ LoadSFromOffset(reg, SP, mem);
Nicolas Geoffraya8eef822015-01-16 11:14:27 +00005665 __ StoreToOffset(kStoreWord, IP, SP, mem);
Nicolas Geoffray53f12622015-01-13 18:04:41 +00005666 } else if (source.IsDoubleStackSlot() && destination.IsDoubleStackSlot()) {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00005667 Exchange(source.GetStackIndex(), destination.GetStackIndex());
5668 Exchange(source.GetHighStackIndex(kArmWordSize), destination.GetHighStackIndex(kArmWordSize));
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005669 } else {
Nicolas Geoffray53f12622015-01-13 18:04:41 +00005670 LOG(FATAL) << "Unimplemented" << source << " <-> " << destination;
Nicolas Geoffraye27f31a2014-06-12 17:53:14 +01005671 }
5672}
5673
5674void ParallelMoveResolverARM::SpillScratch(int reg) {
5675 __ Push(static_cast<Register>(reg));
5676}
5677
5678void ParallelMoveResolverARM::RestoreScratch(int reg) {
5679 __ Pop(static_cast<Register>(reg));
Nicolas Geoffray4e3d23a2014-05-22 18:32:45 +01005680}
5681
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005682HLoadClass::LoadKind CodeGeneratorARM::GetSupportedLoadClassKind(
5683 HLoadClass::LoadKind desired_class_load_kind) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005684 switch (desired_class_load_kind) {
5685 case HLoadClass::LoadKind::kReferrersClass:
5686 break;
5687 case HLoadClass::LoadKind::kBootImageLinkTimeAddress:
5688 DCHECK(!GetCompilerOptions().GetCompilePic());
5689 break;
5690 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative:
5691 DCHECK(GetCompilerOptions().GetCompilePic());
5692 break;
5693 case HLoadClass::LoadKind::kBootImageAddress:
5694 break;
5695 case HLoadClass::LoadKind::kDexCacheAddress:
5696 DCHECK(Runtime::Current()->UseJitCompilation());
5697 break;
5698 case HLoadClass::LoadKind::kDexCachePcRelative:
5699 DCHECK(!Runtime::Current()->UseJitCompilation());
5700 // We disable pc-relative load when there is an irreducible loop, as the optimization
5701 // is incompatible with it.
5702 // TODO: Create as many ArmDexCacheArraysBase instructions as needed for methods
5703 // with irreducible loops.
5704 if (GetGraph()->HasIrreducibleLoops()) {
5705 return HLoadClass::LoadKind::kDexCacheViaMethod;
5706 }
5707 break;
5708 case HLoadClass::LoadKind::kDexCacheViaMethod:
5709 break;
5710 }
5711 return desired_class_load_kind;
5712}
5713
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005714void LocationsBuilderARM::VisitLoadClass(HLoadClass* cls) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005715 if (cls->NeedsAccessCheck()) {
5716 InvokeRuntimeCallingConvention calling_convention;
5717 CodeGenerator::CreateLoadClassLocationSummary(
5718 cls,
5719 Location::RegisterLocation(calling_convention.GetRegisterAt(0)),
5720 Location::RegisterLocation(R0),
5721 /* code_generator_supports_read_barrier */ true);
5722 return;
5723 }
5724
Mathieu Chartier31b12e32016-09-02 17:11:57 -07005725 const bool requires_read_barrier = kEmitCompilerReadBarrier && !cls->IsInBootImage();
5726 LocationSummary::CallKind call_kind = (cls->NeedsEnvironment() || requires_read_barrier)
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005727 ? LocationSummary::kCallOnSlowPath
5728 : LocationSummary::kNoCall;
5729 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Mathieu Chartier31b12e32016-09-02 17:11:57 -07005730 if (kUseBakerReadBarrier && requires_read_barrier && !cls->NeedsEnvironment()) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01005731 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01005732 }
5733
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005734 HLoadClass::LoadKind load_kind = cls->GetLoadKind();
5735 if (load_kind == HLoadClass::LoadKind::kReferrersClass ||
5736 load_kind == HLoadClass::LoadKind::kDexCacheViaMethod ||
5737 load_kind == HLoadClass::LoadKind::kDexCachePcRelative) {
5738 locations->SetInAt(0, Location::RequiresRegister());
5739 }
5740 locations->SetOut(Location::RequiresRegister());
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005741}
5742
5743void InstructionCodeGeneratorARM::VisitLoadClass(HLoadClass* cls) {
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01005744 LocationSummary* locations = cls->GetLocations();
Calin Juravle98893e12015-10-02 21:05:03 +01005745 if (cls->NeedsAccessCheck()) {
Andreas Gampea5b09a62016-11-17 15:21:22 -08005746 codegen_->MoveConstant(locations->GetTemp(0), cls->GetTypeIndex().index_);
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01005747 codegen_->InvokeRuntime(kQuickInitializeTypeAndVerifyAccess, cls, cls->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00005748 CheckEntrypointTypes<kQuickInitializeTypeAndVerifyAccess, void*, uint32_t>();
Calin Juravle580b6092015-10-06 17:35:58 +01005749 return;
5750 }
5751
Roland Levillain3b359c72015-11-17 19:35:12 +00005752 Location out_loc = locations->Out();
5753 Register out = out_loc.AsRegister<Register>();
Roland Levillain3b359c72015-11-17 19:35:12 +00005754
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005755 const ReadBarrierOption read_barrier_option = cls->IsInBootImage()
5756 ? kWithoutReadBarrier
5757 : kCompilerReadBarrierOption;
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005758 bool generate_null_check = false;
5759 switch (cls->GetLoadKind()) {
5760 case HLoadClass::LoadKind::kReferrersClass: {
5761 DCHECK(!cls->CanCallRuntime());
5762 DCHECK(!cls->MustGenerateClinitCheck());
5763 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
5764 Register current_method = locations->InAt(0).AsRegister<Register>();
Mathieu Chartier31b12e32016-09-02 17:11:57 -07005765 GenerateGcRootFieldLoad(cls,
5766 out_loc,
5767 current_method,
5768 ArtMethod::DeclaringClassOffset().Int32Value(),
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005769 read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005770 break;
5771 }
5772 case HLoadClass::LoadKind::kBootImageLinkTimeAddress: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005773 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005774 __ LoadLiteral(out, codegen_->DeduplicateBootImageTypeLiteral(cls->GetDexFile(),
5775 cls->GetTypeIndex()));
5776 break;
5777 }
5778 case HLoadClass::LoadKind::kBootImageLinkTimePcRelative: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005779 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005780 CodeGeneratorARM::PcRelativePatchInfo* labels =
5781 codegen_->NewPcRelativeTypePatch(cls->GetDexFile(), cls->GetTypeIndex());
5782 __ BindTrackedLabel(&labels->movw_label);
5783 __ movw(out, /* placeholder */ 0u);
5784 __ BindTrackedLabel(&labels->movt_label);
5785 __ movt(out, /* placeholder */ 0u);
5786 __ BindTrackedLabel(&labels->add_pc_label);
5787 __ add(out, out, ShifterOperand(PC));
5788 break;
5789 }
5790 case HLoadClass::LoadKind::kBootImageAddress: {
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005791 DCHECK_EQ(read_barrier_option, kWithoutReadBarrier);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005792 DCHECK_NE(cls->GetAddress(), 0u);
5793 uint32_t address = dchecked_integral_cast<uint32_t>(cls->GetAddress());
5794 __ LoadLiteral(out, codegen_->DeduplicateBootImageAddressLiteral(address));
5795 break;
5796 }
5797 case HLoadClass::LoadKind::kDexCacheAddress: {
5798 DCHECK_NE(cls->GetAddress(), 0u);
5799 uint32_t address = dchecked_integral_cast<uint32_t>(cls->GetAddress());
5800 // 16-bit LDR immediate has a 5-bit offset multiplied by the size and that gives
5801 // a 128B range. To try and reduce the number of literals if we load multiple types,
5802 // simply split the dex cache address to a 128B aligned base loaded from a literal
5803 // and the remaining offset embedded in the load.
5804 static_assert(sizeof(GcRoot<mirror::Class>) == 4u, "Expected GC root to be 4 bytes.");
5805 DCHECK_ALIGNED(cls->GetAddress(), 4u);
5806 constexpr size_t offset_bits = /* encoded bits */ 5 + /* scale */ 2;
5807 uint32_t base_address = address & ~MaxInt<uint32_t>(offset_bits);
5808 uint32_t offset = address & MaxInt<uint32_t>(offset_bits);
5809 __ LoadLiteral(out, codegen_->DeduplicateDexCacheAddressLiteral(base_address));
5810 // /* GcRoot<mirror::Class> */ out = *(base_address + offset)
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005811 GenerateGcRootFieldLoad(cls, out_loc, out, offset, read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005812 generate_null_check = !cls->IsInDexCache();
5813 break;
5814 }
5815 case HLoadClass::LoadKind::kDexCachePcRelative: {
5816 Register base_reg = locations->InAt(0).AsRegister<Register>();
5817 HArmDexCacheArraysBase* base = cls->InputAt(0)->AsArmDexCacheArraysBase();
5818 int32_t offset = cls->GetDexCacheElementOffset() - base->GetElementOffset();
5819 // /* GcRoot<mirror::Class> */ out = *(dex_cache_arrays_base + offset)
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005820 GenerateGcRootFieldLoad(cls, out_loc, base_reg, offset, read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005821 generate_null_check = !cls->IsInDexCache();
5822 break;
5823 }
5824 case HLoadClass::LoadKind::kDexCacheViaMethod: {
5825 // /* GcRoot<mirror::Class>[] */ out =
5826 // current_method.ptr_sized_fields_->dex_cache_resolved_types_
5827 Register current_method = locations->InAt(0).AsRegister<Register>();
5828 __ LoadFromOffset(kLoadWord,
5829 out,
5830 current_method,
5831 ArtMethod::DexCacheResolvedTypesOffset(kArmPointerSize).Int32Value());
5832 // /* GcRoot<mirror::Class> */ out = out[type_index]
Andreas Gampea5b09a62016-11-17 15:21:22 -08005833 size_t offset = CodeGenerator::GetCacheOffset(cls->GetTypeIndex().index_);
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005834 GenerateGcRootFieldLoad(cls, out_loc, out, offset, read_barrier_option);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005835 generate_null_check = !cls->IsInDexCache();
5836 }
5837 }
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005838
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005839 if (generate_null_check || cls->MustGenerateClinitCheck()) {
5840 DCHECK(cls->CanCallRuntime());
Artem Serovf4d6aee2016-07-11 10:41:45 +01005841 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01005842 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
5843 codegen_->AddSlowPath(slow_path);
5844 if (generate_null_check) {
5845 __ CompareAndBranchIfZero(out, slow_path->GetEntryLabel());
5846 }
5847 if (cls->MustGenerateClinitCheck()) {
5848 GenerateClassInitializationCheck(slow_path, out);
5849 } else {
5850 __ Bind(slow_path->GetExitLabel());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005851 }
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005852 }
5853}
5854
5855void LocationsBuilderARM::VisitClinitCheck(HClinitCheck* check) {
5856 LocationSummary* locations =
5857 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
5858 locations->SetInAt(0, Location::RequiresRegister());
5859 if (check->HasUses()) {
5860 locations->SetOut(Location::SameAsFirstInput());
5861 }
5862}
5863
5864void InstructionCodeGeneratorARM::VisitClinitCheck(HClinitCheck* check) {
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005865 // We assume the class is not null.
Artem Serovf4d6aee2016-07-11 10:41:45 +01005866 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM(
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005867 check->GetLoadClass(), check, check->GetDexPc(), true);
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005868 codegen_->AddSlowPath(slow_path);
Roland Levillain199f3362014-11-27 17:15:16 +00005869 GenerateClassInitializationCheck(slow_path,
5870 check->GetLocations()->InAt(0).AsRegister<Register>());
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005871}
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005872
Nicolas Geoffray424f6762014-11-03 14:51:25 +00005873void InstructionCodeGeneratorARM::GenerateClassInitializationCheck(
Artem Serovf4d6aee2016-07-11 10:41:45 +01005874 SlowPathCodeARM* slow_path, Register class_reg) {
Nicolas Geoffray19a19cf2014-10-22 16:07:05 +01005875 __ LoadFromOffset(kLoadWord, IP, class_reg, mirror::Class::StatusOffset().Int32Value());
5876 __ cmp(IP, ShifterOperand(mirror::Class::kStatusInitialized));
5877 __ b(slow_path->GetEntryLabel(), LT);
5878 // Even if the initialized flag is set, we may be in a situation where caches are not synced
5879 // properly. Therefore, we do a memory fence.
5880 __ dmb(ISH);
5881 __ Bind(slow_path->GetExitLabel());
5882}
5883
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005884HLoadString::LoadKind CodeGeneratorARM::GetSupportedLoadStringKind(
5885 HLoadString::LoadKind desired_string_load_kind) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005886 switch (desired_string_load_kind) {
5887 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
5888 DCHECK(!GetCompilerOptions().GetCompilePic());
5889 break;
5890 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
5891 DCHECK(GetCompilerOptions().GetCompilePic());
5892 break;
5893 case HLoadString::LoadKind::kBootImageAddress:
5894 break;
Vladimir Markoaad75c62016-10-03 08:46:48 +00005895 case HLoadString::LoadKind::kBssEntry:
Calin Juravleffc87072016-04-20 14:22:09 +01005896 DCHECK(!Runtime::Current()->UseJitCompilation());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005897 break;
Nicolas Geoffray132d8362016-11-16 09:19:42 +00005898 case HLoadString::LoadKind::kJitTableAddress:
5899 DCHECK(Runtime::Current()->UseJitCompilation());
5900 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005901 case HLoadString::LoadKind::kDexCacheViaMethod:
5902 break;
5903 }
5904 return desired_string_load_kind;
5905}
5906
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005907void LocationsBuilderARM::VisitLoadString(HLoadString* load) {
Nicolas Geoffray132d8362016-11-16 09:19:42 +00005908 LocationSummary::CallKind call_kind = CodeGenerator::GetLoadStringCallKind(load);
Nicolas Geoffray917d0162015-11-24 18:25:35 +00005909 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(load, call_kind);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005910 HLoadString::LoadKind load_kind = load->GetLoadKind();
Christina Wadsworthd8ec6db2016-08-30 17:19:14 -07005911 if (load_kind == HLoadString::LoadKind::kDexCacheViaMethod) {
Christina Wadsworthd8ec6db2016-08-30 17:19:14 -07005912 locations->SetOut(Location::RegisterLocation(R0));
5913 } else {
5914 locations->SetOut(Location::RequiresRegister());
Vladimir Marko94ce9c22016-09-30 14:50:51 +01005915 if (load_kind == HLoadString::LoadKind::kBssEntry) {
5916 if (!kUseReadBarrier || kUseBakerReadBarrier) {
5917 // Rely on the pResolveString and/or marking to save everything, including temps.
5918 // Note that IP may theoretically be clobbered by saving/restoring the live register
5919 // (only one thanks to the custom calling convention), so we request a different temp.
5920 locations->AddTemp(Location::RequiresRegister());
5921 RegisterSet caller_saves = RegisterSet::Empty();
5922 InvokeRuntimeCallingConvention calling_convention;
5923 caller_saves.Add(Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
5924 // TODO: Add GetReturnLocation() to the calling convention so that we can DCHECK()
5925 // that the the kPrimNot result register is the same as the first argument register.
5926 locations->SetCustomSlowPathCallerSaves(caller_saves);
5927 } else {
5928 // For non-Baker read barrier we have a temp-clobbering call.
5929 }
5930 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005931 }
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00005932}
5933
5934void InstructionCodeGeneratorARM::VisitLoadString(HLoadString* load) {
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01005935 LocationSummary* locations = load->GetLocations();
Roland Levillain3b359c72015-11-17 19:35:12 +00005936 Location out_loc = locations->Out();
5937 Register out = out_loc.AsRegister<Register>();
Christina Wadsworthd8ec6db2016-08-30 17:19:14 -07005938 HLoadString::LoadKind load_kind = load->GetLoadKind();
Roland Levillain3b359c72015-11-17 19:35:12 +00005939
Christina Wadsworthd8ec6db2016-08-30 17:19:14 -07005940 switch (load_kind) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005941 case HLoadString::LoadKind::kBootImageLinkTimeAddress: {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005942 __ LoadLiteral(out, codegen_->DeduplicateBootImageStringLiteral(load->GetDexFile(),
5943 load->GetStringIndex()));
5944 return; // No dex cache slow path.
5945 }
5946 case HLoadString::LoadKind::kBootImageLinkTimePcRelative: {
Vladimir Markoaad75c62016-10-03 08:46:48 +00005947 DCHECK(codegen_->GetCompilerOptions().IsBootImage());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005948 CodeGeneratorARM::PcRelativePatchInfo* labels =
5949 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex());
5950 __ BindTrackedLabel(&labels->movw_label);
5951 __ movw(out, /* placeholder */ 0u);
5952 __ BindTrackedLabel(&labels->movt_label);
5953 __ movt(out, /* placeholder */ 0u);
5954 __ BindTrackedLabel(&labels->add_pc_label);
5955 __ add(out, out, ShifterOperand(PC));
5956 return; // No dex cache slow path.
5957 }
5958 case HLoadString::LoadKind::kBootImageAddress: {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005959 DCHECK_NE(load->GetAddress(), 0u);
5960 uint32_t address = dchecked_integral_cast<uint32_t>(load->GetAddress());
5961 __ LoadLiteral(out, codegen_->DeduplicateBootImageAddressLiteral(address));
5962 return; // No dex cache slow path.
5963 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00005964 case HLoadString::LoadKind::kBssEntry: {
5965 DCHECK(!codegen_->GetCompilerOptions().IsBootImage());
Vladimir Marko94ce9c22016-09-30 14:50:51 +01005966 Register temp = locations->GetTemp(0).AsRegister<Register>();
Vladimir Markoaad75c62016-10-03 08:46:48 +00005967 CodeGeneratorARM::PcRelativePatchInfo* labels =
5968 codegen_->NewPcRelativeStringPatch(load->GetDexFile(), load->GetStringIndex());
5969 __ BindTrackedLabel(&labels->movw_label);
Vladimir Marko94ce9c22016-09-30 14:50:51 +01005970 __ movw(temp, /* placeholder */ 0u);
Vladimir Markoaad75c62016-10-03 08:46:48 +00005971 __ BindTrackedLabel(&labels->movt_label);
Vladimir Marko94ce9c22016-09-30 14:50:51 +01005972 __ movt(temp, /* placeholder */ 0u);
Vladimir Markoaad75c62016-10-03 08:46:48 +00005973 __ BindTrackedLabel(&labels->add_pc_label);
Vladimir Marko94ce9c22016-09-30 14:50:51 +01005974 __ add(temp, temp, ShifterOperand(PC));
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08005975 GenerateGcRootFieldLoad(load, out_loc, temp, /* offset */ 0, kCompilerReadBarrierOption);
Vladimir Markoaad75c62016-10-03 08:46:48 +00005976 SlowPathCode* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM(load);
5977 codegen_->AddSlowPath(slow_path);
5978 __ CompareAndBranchIfZero(out, slow_path->GetEntryLabel());
5979 __ Bind(slow_path->GetExitLabel());
5980 return;
5981 }
Nicolas Geoffray132d8362016-11-16 09:19:42 +00005982 case HLoadString::LoadKind::kJitTableAddress: {
5983 __ LoadLiteral(out, codegen_->DeduplicateJitStringLiteral(load->GetDexFile(),
5984 load->GetStringIndex()));
5985 // /* GcRoot<mirror::String> */ out = *out
5986 GenerateGcRootFieldLoad(load, out_loc, out, /* offset */ 0, kCompilerReadBarrierOption);
5987 return;
5988 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005989 default:
Christina Wadsworthbf44e0e2016-08-18 10:37:42 -07005990 break;
Vladimir Markocac5a7e2016-02-22 10:39:50 +00005991 }
Roland Levillain3b359c72015-11-17 19:35:12 +00005992
Christina Wadsworthd8ec6db2016-08-30 17:19:14 -07005993 // TODO: Consider re-adding the compiler code to do string dex cache lookup again.
5994 DCHECK(load_kind == HLoadString::LoadKind::kDexCacheViaMethod);
5995 InvokeRuntimeCallingConvention calling_convention;
Vladimir Marko94ce9c22016-09-30 14:50:51 +01005996 DCHECK_EQ(calling_convention.GetRegisterAt(0), out);
Christina Wadsworthd8ec6db2016-08-30 17:19:14 -07005997 __ LoadImmediate(calling_convention.GetRegisterAt(0), load->GetStringIndex());
5998 codegen_->InvokeRuntime(kQuickResolveString, load, load->GetDexPc());
5999 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Nicolas Geoffrayb5f62b32014-10-30 10:58:41 +00006000}
6001
David Brazdilcb1c0552015-08-04 16:22:25 +01006002static int32_t GetExceptionTlsOffset() {
Andreas Gampe542451c2016-07-26 09:02:02 -07006003 return Thread::ExceptionOffset<kArmPointerSize>().Int32Value();
David Brazdilcb1c0552015-08-04 16:22:25 +01006004}
6005
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006006void LocationsBuilderARM::VisitLoadException(HLoadException* load) {
6007 LocationSummary* locations =
6008 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
6009 locations->SetOut(Location::RequiresRegister());
6010}
6011
6012void InstructionCodeGeneratorARM::VisitLoadException(HLoadException* load) {
Roland Levillain271ab9c2014-11-27 15:23:57 +00006013 Register out = load->GetLocations()->Out().AsRegister<Register>();
David Brazdilcb1c0552015-08-04 16:22:25 +01006014 __ LoadFromOffset(kLoadWord, out, TR, GetExceptionTlsOffset());
6015}
6016
6017void LocationsBuilderARM::VisitClearException(HClearException* clear) {
6018 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
6019}
6020
6021void InstructionCodeGeneratorARM::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006022 __ LoadImmediate(IP, 0);
David Brazdilcb1c0552015-08-04 16:22:25 +01006023 __ StoreToOffset(kStoreWord, IP, TR, GetExceptionTlsOffset());
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006024}
6025
6026void LocationsBuilderARM::VisitThrow(HThrow* instruction) {
6027 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01006028 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006029 InvokeRuntimeCallingConvention calling_convention;
6030 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6031}
6032
6033void InstructionCodeGeneratorARM::VisitThrow(HThrow* instruction) {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01006034 codegen_->InvokeRuntime(kQuickDeliverException, instruction, instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006035 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +00006036}
6037
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006038// Temp is used for read barrier.
6039static size_t NumberOfInstanceOfTemps(TypeCheckKind type_check_kind) {
6040 if (kEmitCompilerReadBarrier &&
6041 (kUseBakerReadBarrier ||
6042 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
6043 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
6044 type_check_kind == TypeCheckKind::kArrayObjectCheck)) {
6045 return 1;
6046 }
6047 return 0;
6048}
6049
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006050// Interface case has 3 temps, one for holding the number of interfaces, one for the current
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006051// interface pointer, one for loading the current interface.
6052// The other checks have one temp for loading the object's class.
6053static size_t NumberOfCheckCastTemps(TypeCheckKind type_check_kind) {
6054 if (type_check_kind == TypeCheckKind::kInterfaceCheck) {
6055 return 3;
6056 }
6057 return 1 + NumberOfInstanceOfTemps(type_check_kind);
Roland Levillainc9285912015-12-18 10:38:42 +00006058}
6059
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006060void LocationsBuilderARM::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006061 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Roland Levillain3b359c72015-11-17 19:35:12 +00006062 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Vladimir Marko70e97462016-08-09 11:04:26 +01006063 bool baker_read_barrier_slow_path = false;
Roland Levillain3b359c72015-11-17 19:35:12 +00006064 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006065 case TypeCheckKind::kExactCheck:
6066 case TypeCheckKind::kAbstractClassCheck:
6067 case TypeCheckKind::kClassHierarchyCheck:
6068 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain3b359c72015-11-17 19:35:12 +00006069 call_kind =
6070 kEmitCompilerReadBarrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
Vladimir Marko70e97462016-08-09 11:04:26 +01006071 baker_read_barrier_slow_path = kUseBakerReadBarrier;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006072 break;
6073 case TypeCheckKind::kArrayCheck:
Roland Levillain3b359c72015-11-17 19:35:12 +00006074 case TypeCheckKind::kUnresolvedCheck:
6075 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006076 call_kind = LocationSummary::kCallOnSlowPath;
6077 break;
6078 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006079
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006080 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Vladimir Marko70e97462016-08-09 11:04:26 +01006081 if (baker_read_barrier_slow_path) {
Vladimir Marko804b03f2016-09-14 16:26:36 +01006082 locations->SetCustomSlowPathCallerSaves(RegisterSet::Empty()); // No caller-save registers.
Vladimir Marko70e97462016-08-09 11:04:26 +01006083 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006084 locations->SetInAt(0, Location::RequiresRegister());
6085 locations->SetInAt(1, Location::RequiresRegister());
6086 // The "out" register is used as a temporary, so it overlaps with the inputs.
6087 // Note that TypeCheckSlowPathARM uses this register too.
6088 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006089 locations->AddRegisterTemps(NumberOfInstanceOfTemps(type_check_kind));
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006090}
6091
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006092void InstructionCodeGeneratorARM::VisitInstanceOf(HInstanceOf* instruction) {
Roland Levillainc9285912015-12-18 10:38:42 +00006093 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006094 LocationSummary* locations = instruction->GetLocations();
Roland Levillain3b359c72015-11-17 19:35:12 +00006095 Location obj_loc = locations->InAt(0);
6096 Register obj = obj_loc.AsRegister<Register>();
Roland Levillain271ab9c2014-11-27 15:23:57 +00006097 Register cls = locations->InAt(1).AsRegister<Register>();
Roland Levillain3b359c72015-11-17 19:35:12 +00006098 Location out_loc = locations->Out();
6099 Register out = out_loc.AsRegister<Register>();
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006100 const size_t num_temps = NumberOfInstanceOfTemps(type_check_kind);
6101 DCHECK_LE(num_temps, 1u);
6102 Location maybe_temp_loc = (num_temps >= 1) ? locations->GetTemp(0) : Location::NoLocation();
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006103 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006104 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
6105 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
6106 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Vladimir Markocf93a5c2015-06-16 11:33:24 +00006107 Label done, zero;
Artem Serovf4d6aee2016-07-11 10:41:45 +01006108 SlowPathCodeARM* slow_path = nullptr;
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006109
6110 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006111 // avoid null check if we know obj is not null.
6112 if (instruction->MustDoNullCheck()) {
Nicolas Geoffrayd56376c2015-05-21 12:32:34 +00006113 __ CompareAndBranchIfZero(obj, &zero);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006114 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006115
Roland Levillainc9285912015-12-18 10:38:42 +00006116 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006117 case TypeCheckKind::kExactCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006118 // /* HeapReference<Class> */ out = obj->klass_
6119 GenerateReferenceLoadTwoRegisters(instruction,
6120 out_loc,
6121 obj_loc,
6122 class_offset,
6123 maybe_temp_loc,
6124 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006125 __ cmp(out, ShifterOperand(cls));
6126 // Classes must be equal for the instanceof to succeed.
6127 __ b(&zero, NE);
6128 __ LoadImmediate(out, 1);
6129 __ b(&done);
6130 break;
6131 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006132
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006133 case TypeCheckKind::kAbstractClassCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006134 // /* HeapReference<Class> */ out = obj->klass_
6135 GenerateReferenceLoadTwoRegisters(instruction,
6136 out_loc,
6137 obj_loc,
6138 class_offset,
6139 maybe_temp_loc,
6140 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006141 // If the class is abstract, we eagerly fetch the super class of the
6142 // object to avoid doing a comparison we know will fail.
6143 Label loop;
6144 __ Bind(&loop);
Roland Levillain3b359c72015-11-17 19:35:12 +00006145 // /* HeapReference<Class> */ out = out->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006146 GenerateReferenceLoadOneRegister(instruction,
6147 out_loc,
6148 super_offset,
6149 maybe_temp_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006150 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006151 // If `out` is null, we use it for the result, and jump to `done`.
6152 __ CompareAndBranchIfZero(out, &done);
6153 __ cmp(out, ShifterOperand(cls));
6154 __ b(&loop, NE);
6155 __ LoadImmediate(out, 1);
6156 if (zero.IsLinked()) {
6157 __ b(&done);
6158 }
6159 break;
6160 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006161
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006162 case TypeCheckKind::kClassHierarchyCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006163 // /* HeapReference<Class> */ out = obj->klass_
6164 GenerateReferenceLoadTwoRegisters(instruction,
6165 out_loc,
6166 obj_loc,
6167 class_offset,
6168 maybe_temp_loc,
6169 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006170 // Walk over the class hierarchy to find a match.
6171 Label loop, success;
6172 __ Bind(&loop);
6173 __ cmp(out, ShifterOperand(cls));
6174 __ b(&success, EQ);
Roland Levillain3b359c72015-11-17 19:35:12 +00006175 // /* HeapReference<Class> */ out = out->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006176 GenerateReferenceLoadOneRegister(instruction,
6177 out_loc,
6178 super_offset,
6179 maybe_temp_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006180 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006181 __ CompareAndBranchIfNonZero(out, &loop);
6182 // If `out` is null, we use it for the result, and jump to `done`.
6183 __ b(&done);
6184 __ Bind(&success);
6185 __ LoadImmediate(out, 1);
6186 if (zero.IsLinked()) {
6187 __ b(&done);
6188 }
6189 break;
6190 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006191
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006192 case TypeCheckKind::kArrayObjectCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006193 // /* HeapReference<Class> */ out = obj->klass_
6194 GenerateReferenceLoadTwoRegisters(instruction,
6195 out_loc,
6196 obj_loc,
6197 class_offset,
6198 maybe_temp_loc,
6199 kCompilerReadBarrierOption);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006200 // Do an exact check.
6201 Label exact_check;
6202 __ cmp(out, ShifterOperand(cls));
6203 __ b(&exact_check, EQ);
Roland Levillain3b359c72015-11-17 19:35:12 +00006204 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain3b359c72015-11-17 19:35:12 +00006205 // /* HeapReference<Class> */ out = out->component_type_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006206 GenerateReferenceLoadOneRegister(instruction,
6207 out_loc,
6208 component_offset,
6209 maybe_temp_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006210 kCompilerReadBarrierOption);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006211 // If `out` is null, we use it for the result, and jump to `done`.
6212 __ CompareAndBranchIfZero(out, &done);
6213 __ LoadFromOffset(kLoadUnsignedHalfword, out, out, primitive_offset);
6214 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
6215 __ CompareAndBranchIfNonZero(out, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006216 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006217 __ LoadImmediate(out, 1);
6218 __ b(&done);
6219 break;
6220 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006221
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006222 case TypeCheckKind::kArrayCheck: {
Mathieu Chartier9fd8c602016-11-14 14:38:53 -08006223 // No read barrier since the slow path will retry upon failure.
6224 // /* HeapReference<Class> */ out = obj->klass_
6225 GenerateReferenceLoadTwoRegisters(instruction,
6226 out_loc,
6227 obj_loc,
6228 class_offset,
6229 maybe_temp_loc,
6230 kWithoutReadBarrier);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006231 __ cmp(out, ShifterOperand(cls));
6232 DCHECK(locations->OnlyCallsOnSlowPath());
Roland Levillain3b359c72015-11-17 19:35:12 +00006233 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(instruction,
6234 /* is_fatal */ false);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006235 codegen_->AddSlowPath(slow_path);
6236 __ b(slow_path->GetEntryLabel(), NE);
6237 __ LoadImmediate(out, 1);
6238 if (zero.IsLinked()) {
6239 __ b(&done);
6240 }
6241 break;
6242 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006243
Calin Juravle98893e12015-10-02 21:05:03 +01006244 case TypeCheckKind::kUnresolvedCheck:
Roland Levillain3b359c72015-11-17 19:35:12 +00006245 case TypeCheckKind::kInterfaceCheck: {
6246 // Note that we indeed only call on slow path, but we always go
Roland Levillaine3f43ac2016-01-19 15:07:47 +00006247 // into the slow path for the unresolved and interface check
Roland Levillain3b359c72015-11-17 19:35:12 +00006248 // cases.
6249 //
6250 // We cannot directly call the InstanceofNonTrivial runtime
6251 // entry point without resorting to a type checking slow path
6252 // here (i.e. by calling InvokeRuntime directly), as it would
6253 // require to assign fixed registers for the inputs of this
6254 // HInstanceOf instruction (following the runtime calling
6255 // convention), which might be cluttered by the potential first
6256 // read barrier emission at the beginning of this method.
Roland Levillainc9285912015-12-18 10:38:42 +00006257 //
6258 // TODO: Introduce a new runtime entry point taking the object
6259 // to test (instead of its class) as argument, and let it deal
6260 // with the read barrier issues. This will let us refactor this
6261 // case of the `switch` code as it was previously (with a direct
6262 // call to the runtime not using a type checking slow path).
6263 // This should also be beneficial for the other cases above.
Roland Levillain3b359c72015-11-17 19:35:12 +00006264 DCHECK(locations->OnlyCallsOnSlowPath());
6265 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM(instruction,
6266 /* is_fatal */ false);
6267 codegen_->AddSlowPath(slow_path);
6268 __ b(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006269 if (zero.IsLinked()) {
6270 __ b(&done);
6271 }
6272 break;
6273 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006274 }
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006275
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006276 if (zero.IsLinked()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01006277 __ Bind(&zero);
6278 __ LoadImmediate(out, 0);
6279 }
6280
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006281 if (done.IsLinked()) {
6282 __ Bind(&done);
6283 }
6284
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006285 if (slow_path != nullptr) {
6286 __ Bind(slow_path->GetExitLabel());
6287 }
Nicolas Geoffray6f5c41f2014-11-06 08:59:20 +00006288}
6289
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006290void LocationsBuilderARM::VisitCheckCast(HCheckCast* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006291 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
6292 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
6293
Roland Levillain3b359c72015-11-17 19:35:12 +00006294 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
6295 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006296 case TypeCheckKind::kExactCheck:
6297 case TypeCheckKind::kAbstractClassCheck:
6298 case TypeCheckKind::kClassHierarchyCheck:
6299 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain3b359c72015-11-17 19:35:12 +00006300 call_kind = (throws_into_catch || kEmitCompilerReadBarrier) ?
6301 LocationSummary::kCallOnSlowPath :
6302 LocationSummary::kNoCall; // In fact, call on a fatal (non-returning) slow path.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006303 break;
6304 case TypeCheckKind::kArrayCheck:
Roland Levillain3b359c72015-11-17 19:35:12 +00006305 case TypeCheckKind::kUnresolvedCheck:
6306 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006307 call_kind = LocationSummary::kCallOnSlowPath;
6308 break;
6309 }
6310
Roland Levillain3b359c72015-11-17 19:35:12 +00006311 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
6312 locations->SetInAt(0, Location::RequiresRegister());
6313 locations->SetInAt(1, Location::RequiresRegister());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006314 locations->AddRegisterTemps(NumberOfCheckCastTemps(type_check_kind));
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006315}
6316
6317void InstructionCodeGeneratorARM::VisitCheckCast(HCheckCast* instruction) {
Roland Levillainc9285912015-12-18 10:38:42 +00006318 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006319 LocationSummary* locations = instruction->GetLocations();
Roland Levillain3b359c72015-11-17 19:35:12 +00006320 Location obj_loc = locations->InAt(0);
6321 Register obj = obj_loc.AsRegister<Register>();
Roland Levillain271ab9c2014-11-27 15:23:57 +00006322 Register cls = locations->InAt(1).AsRegister<Register>();
Roland Levillain3b359c72015-11-17 19:35:12 +00006323 Location temp_loc = locations->GetTemp(0);
6324 Register temp = temp_loc.AsRegister<Register>();
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006325 const size_t num_temps = NumberOfCheckCastTemps(type_check_kind);
6326 DCHECK_LE(num_temps, 3u);
6327 Location maybe_temp2_loc = (num_temps >= 2) ? locations->GetTemp(1) : Location::NoLocation();
6328 Location maybe_temp3_loc = (num_temps >= 3) ? locations->GetTemp(2) : Location::NoLocation();
6329 const uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
6330 const uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
6331 const uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
6332 const uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
6333 const uint32_t iftable_offset = mirror::Class::IfTableOffset().Uint32Value();
6334 const uint32_t array_length_offset = mirror::Array::LengthOffset().Uint32Value();
6335 const uint32_t object_array_data_offset =
6336 mirror::Array::DataOffset(kHeapReferenceSize).Uint32Value();
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006337
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006338 // Always false for read barriers since we may need to go to the entrypoint for non-fatal cases
6339 // from false negatives. The false negatives may come from avoiding read barriers below. Avoiding
6340 // read barriers is done for performance and code size reasons.
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006341 bool is_type_check_slow_path_fatal = false;
6342 if (!kEmitCompilerReadBarrier) {
6343 is_type_check_slow_path_fatal =
6344 (type_check_kind == TypeCheckKind::kExactCheck ||
6345 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
6346 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
6347 type_check_kind == TypeCheckKind::kArrayObjectCheck) &&
6348 !instruction->CanThrowIntoCatchBlock();
6349 }
Artem Serovf4d6aee2016-07-11 10:41:45 +01006350 SlowPathCodeARM* type_check_slow_path =
Roland Levillain3b359c72015-11-17 19:35:12 +00006351 new (GetGraph()->GetArena()) TypeCheckSlowPathARM(instruction,
6352 is_type_check_slow_path_fatal);
6353 codegen_->AddSlowPath(type_check_slow_path);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006354
6355 Label done;
6356 // Avoid null check if we know obj is not null.
6357 if (instruction->MustDoNullCheck()) {
6358 __ CompareAndBranchIfZero(obj, &done);
6359 }
6360
Roland Levillain3b359c72015-11-17 19:35:12 +00006361 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006362 case TypeCheckKind::kExactCheck:
6363 case TypeCheckKind::kArrayCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006364 // /* HeapReference<Class> */ temp = obj->klass_
6365 GenerateReferenceLoadTwoRegisters(instruction,
6366 temp_loc,
6367 obj_loc,
6368 class_offset,
6369 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006370 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006371
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006372 __ cmp(temp, ShifterOperand(cls));
6373 // Jump to slow path for throwing the exception or doing a
6374 // more involved array check.
Roland Levillain3b359c72015-11-17 19:35:12 +00006375 __ b(type_check_slow_path->GetEntryLabel(), NE);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006376 break;
6377 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006378
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006379 case TypeCheckKind::kAbstractClassCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006380 // /* HeapReference<Class> */ temp = obj->klass_
6381 GenerateReferenceLoadTwoRegisters(instruction,
6382 temp_loc,
6383 obj_loc,
6384 class_offset,
6385 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006386 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006387
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006388 // If the class is abstract, we eagerly fetch the super class of the
6389 // object to avoid doing a comparison we know will fail.
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006390 Label loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006391 __ Bind(&loop);
Roland Levillain3b359c72015-11-17 19:35:12 +00006392 // /* HeapReference<Class> */ temp = temp->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006393 GenerateReferenceLoadOneRegister(instruction,
6394 temp_loc,
6395 super_offset,
6396 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006397 kWithoutReadBarrier);
Roland Levillain3b359c72015-11-17 19:35:12 +00006398
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006399 // If the class reference currently in `temp` is null, jump to the slow path to throw the
6400 // exception.
6401 __ CompareAndBranchIfZero(temp, type_check_slow_path->GetEntryLabel());
Roland Levillain3b359c72015-11-17 19:35:12 +00006402
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006403 // Otherwise, compare the classes.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006404 __ cmp(temp, ShifterOperand(cls));
6405 __ b(&loop, NE);
6406 break;
6407 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006408
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006409 case TypeCheckKind::kClassHierarchyCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006410 // /* HeapReference<Class> */ temp = obj->klass_
6411 GenerateReferenceLoadTwoRegisters(instruction,
6412 temp_loc,
6413 obj_loc,
6414 class_offset,
6415 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006416 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006417
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006418 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006419 Label loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006420 __ Bind(&loop);
6421 __ cmp(temp, ShifterOperand(cls));
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006422 __ b(&done, EQ);
Roland Levillain3b359c72015-11-17 19:35:12 +00006423
Roland Levillain3b359c72015-11-17 19:35:12 +00006424 // /* HeapReference<Class> */ temp = temp->super_class_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006425 GenerateReferenceLoadOneRegister(instruction,
6426 temp_loc,
6427 super_offset,
6428 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006429 kWithoutReadBarrier);
Roland Levillain3b359c72015-11-17 19:35:12 +00006430
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006431 // If the class reference currently in `temp` is null, jump to the slow path to throw the
6432 // exception.
6433 __ CompareAndBranchIfZero(temp, type_check_slow_path->GetEntryLabel());
6434 // Otherwise, jump to the beginning of the loop.
6435 __ b(&loop);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006436 break;
6437 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006438
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006439 case TypeCheckKind::kArrayObjectCheck: {
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006440 // /* HeapReference<Class> */ temp = obj->klass_
6441 GenerateReferenceLoadTwoRegisters(instruction,
6442 temp_loc,
6443 obj_loc,
6444 class_offset,
6445 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006446 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006447
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01006448 // Do an exact check.
6449 __ cmp(temp, ShifterOperand(cls));
6450 __ b(&done, EQ);
Roland Levillain3b359c72015-11-17 19:35:12 +00006451
6452 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain3b359c72015-11-17 19:35:12 +00006453 // /* HeapReference<Class> */ temp = temp->component_type_
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006454 GenerateReferenceLoadOneRegister(instruction,
6455 temp_loc,
6456 component_offset,
6457 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006458 kWithoutReadBarrier);
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006459 // If the component type is null, jump to the slow path to throw the exception.
6460 __ CompareAndBranchIfZero(temp, type_check_slow_path->GetEntryLabel());
6461 // Otherwise,the object is indeed an array, jump to label `check_non_primitive_component_type`
6462 // to further check that this component type is not a primitive type.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006463 __ LoadFromOffset(kLoadUnsignedHalfword, temp, temp, primitive_offset);
Roland Levillain3b359c72015-11-17 19:35:12 +00006464 static_assert(Primitive::kPrimNot == 0, "Expected 0 for art::Primitive::kPrimNot");
Mathieu Chartierb99f4d62016-11-07 16:17:26 -08006465 __ CompareAndBranchIfNonZero(temp, type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006466 break;
6467 }
Roland Levillain3b359c72015-11-17 19:35:12 +00006468
Calin Juravle98893e12015-10-02 21:05:03 +01006469 case TypeCheckKind::kUnresolvedCheck:
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006470 // We always go into the type check slow path for the unresolved check case.
Roland Levillain3b359c72015-11-17 19:35:12 +00006471 // We cannot directly call the CheckCast runtime entry point
6472 // without resorting to a type checking slow path here (i.e. by
6473 // calling InvokeRuntime directly), as it would require to
6474 // assign fixed registers for the inputs of this HInstanceOf
6475 // instruction (following the runtime calling convention), which
6476 // might be cluttered by the potential first read barrier
6477 // emission at the beginning of this method.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006478
Roland Levillain3b359c72015-11-17 19:35:12 +00006479 __ b(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006480 break;
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006481
6482 case TypeCheckKind::kInterfaceCheck: {
6483 // Avoid read barriers to improve performance of the fast path. We can not get false
6484 // positives by doing this.
6485 // /* HeapReference<Class> */ temp = obj->klass_
6486 GenerateReferenceLoadTwoRegisters(instruction,
6487 temp_loc,
6488 obj_loc,
6489 class_offset,
6490 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006491 kWithoutReadBarrier);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006492
6493 // /* HeapReference<Class> */ temp = temp->iftable_
6494 GenerateReferenceLoadTwoRegisters(instruction,
6495 temp_loc,
6496 temp_loc,
6497 iftable_offset,
6498 maybe_temp2_loc,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006499 kWithoutReadBarrier);
Mathieu Chartier6beced42016-11-15 15:51:31 -08006500 // Iftable is never null.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006501 __ ldr(maybe_temp2_loc.AsRegister<Register>(), Address(temp, array_length_offset));
Mathieu Chartier6beced42016-11-15 15:51:31 -08006502 // Loop through the iftable and check if any class matches.
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006503 Label start_loop;
6504 __ Bind(&start_loop);
Mathieu Chartierafbcdaf2016-11-14 10:50:29 -08006505 __ CompareAndBranchIfZero(maybe_temp2_loc.AsRegister<Register>(),
6506 type_check_slow_path->GetEntryLabel());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006507 __ ldr(maybe_temp3_loc.AsRegister<Register>(), Address(temp, object_array_data_offset));
6508 __ MaybeUnpoisonHeapReference(maybe_temp3_loc.AsRegister<Register>());
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006509 // Go to next interface.
6510 __ add(temp, temp, ShifterOperand(2 * kHeapReferenceSize));
6511 __ sub(maybe_temp2_loc.AsRegister<Register>(),
6512 maybe_temp2_loc.AsRegister<Register>(),
6513 ShifterOperand(2));
Mathieu Chartierafbcdaf2016-11-14 10:50:29 -08006514 // Compare the classes and continue the loop if they do not match.
6515 __ cmp(cls, ShifterOperand(maybe_temp3_loc.AsRegister<Register>()));
6516 __ b(&start_loop, NE);
Mathieu Chartier5c44c1b2016-11-04 18:13:04 -07006517 break;
6518 }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00006519 }
6520 __ Bind(&done);
6521
Roland Levillain3b359c72015-11-17 19:35:12 +00006522 __ Bind(type_check_slow_path->GetExitLabel());
Nicolas Geoffray57a88d42014-11-10 15:09:21 +00006523}
6524
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006525void LocationsBuilderARM::VisitMonitorOperation(HMonitorOperation* instruction) {
6526 LocationSummary* locations =
Serban Constantinescu54ff4822016-07-07 18:03:19 +01006527 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnMainOnly);
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006528 InvokeRuntimeCallingConvention calling_convention;
6529 locations->SetInAt(0, Location::RegisterLocation(calling_convention.GetRegisterAt(0)));
6530}
6531
6532void InstructionCodeGeneratorARM::VisitMonitorOperation(HMonitorOperation* instruction) {
Serban Constantinescu4bb30ac2016-06-22 17:04:45 +01006533 codegen_->InvokeRuntime(instruction->IsEnter() ? kQuickLockObject : kQuickUnlockObject,
6534 instruction,
6535 instruction->GetDexPc());
Roland Levillain888d0672015-11-23 18:53:50 +00006536 if (instruction->IsEnter()) {
6537 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
6538 } else {
6539 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
6540 }
Nicolas Geoffrayb7baf5c2014-11-11 16:29:44 +00006541}
6542
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006543void LocationsBuilderARM::VisitAnd(HAnd* instruction) { HandleBitwiseOperation(instruction, AND); }
6544void LocationsBuilderARM::VisitOr(HOr* instruction) { HandleBitwiseOperation(instruction, ORR); }
6545void LocationsBuilderARM::VisitXor(HXor* instruction) { HandleBitwiseOperation(instruction, EOR); }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006546
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006547void LocationsBuilderARM::HandleBitwiseOperation(HBinaryOperation* instruction, Opcode opcode) {
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006548 LocationSummary* locations =
6549 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
6550 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
6551 || instruction->GetResultType() == Primitive::kPrimLong);
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006552 // Note: GVN reorders commutative operations to have the constant on the right hand side.
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006553 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006554 locations->SetInAt(1, ArmEncodableConstantOrRegister(instruction->InputAt(1), opcode));
Nicolas Geoffray829280c2015-01-28 10:20:37 +00006555 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006556}
6557
6558void InstructionCodeGeneratorARM::VisitAnd(HAnd* instruction) {
6559 HandleBitwiseOperation(instruction);
6560}
6561
6562void InstructionCodeGeneratorARM::VisitOr(HOr* instruction) {
6563 HandleBitwiseOperation(instruction);
6564}
6565
6566void InstructionCodeGeneratorARM::VisitXor(HXor* instruction) {
6567 HandleBitwiseOperation(instruction);
6568}
6569
Artem Serov7fc63502016-02-09 17:15:29 +00006570
6571void LocationsBuilderARM::VisitBitwiseNegatedRight(HBitwiseNegatedRight* instruction) {
6572 LocationSummary* locations =
6573 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
6574 DCHECK(instruction->GetResultType() == Primitive::kPrimInt
6575 || instruction->GetResultType() == Primitive::kPrimLong);
6576
6577 locations->SetInAt(0, Location::RequiresRegister());
6578 locations->SetInAt(1, Location::RequiresRegister());
6579 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
6580}
6581
6582void InstructionCodeGeneratorARM::VisitBitwiseNegatedRight(HBitwiseNegatedRight* instruction) {
6583 LocationSummary* locations = instruction->GetLocations();
6584 Location first = locations->InAt(0);
6585 Location second = locations->InAt(1);
6586 Location out = locations->Out();
6587
6588 if (instruction->GetResultType() == Primitive::kPrimInt) {
6589 Register first_reg = first.AsRegister<Register>();
6590 ShifterOperand second_reg(second.AsRegister<Register>());
6591 Register out_reg = out.AsRegister<Register>();
6592
6593 switch (instruction->GetOpKind()) {
6594 case HInstruction::kAnd:
6595 __ bic(out_reg, first_reg, second_reg);
6596 break;
6597 case HInstruction::kOr:
6598 __ orn(out_reg, first_reg, second_reg);
6599 break;
6600 // There is no EON on arm.
6601 case HInstruction::kXor:
6602 default:
6603 LOG(FATAL) << "Unexpected instruction " << instruction->DebugName();
6604 UNREACHABLE();
6605 }
6606 return;
6607
6608 } else {
6609 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
6610 Register first_low = first.AsRegisterPairLow<Register>();
6611 Register first_high = first.AsRegisterPairHigh<Register>();
6612 ShifterOperand second_low(second.AsRegisterPairLow<Register>());
6613 ShifterOperand second_high(second.AsRegisterPairHigh<Register>());
6614 Register out_low = out.AsRegisterPairLow<Register>();
6615 Register out_high = out.AsRegisterPairHigh<Register>();
6616
6617 switch (instruction->GetOpKind()) {
6618 case HInstruction::kAnd:
6619 __ bic(out_low, first_low, second_low);
6620 __ bic(out_high, first_high, second_high);
6621 break;
6622 case HInstruction::kOr:
6623 __ orn(out_low, first_low, second_low);
6624 __ orn(out_high, first_high, second_high);
6625 break;
6626 // There is no EON on arm.
6627 case HInstruction::kXor:
6628 default:
6629 LOG(FATAL) << "Unexpected instruction " << instruction->DebugName();
6630 UNREACHABLE();
6631 }
6632 }
6633}
6634
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006635void InstructionCodeGeneratorARM::GenerateAndConst(Register out, Register first, uint32_t value) {
6636 // Optimize special cases for individual halfs of `and-long` (`and` is simplified earlier).
6637 if (value == 0xffffffffu) {
6638 if (out != first) {
6639 __ mov(out, ShifterOperand(first));
6640 }
6641 return;
6642 }
6643 if (value == 0u) {
6644 __ mov(out, ShifterOperand(0));
6645 return;
6646 }
6647 ShifterOperand so;
6648 if (__ ShifterOperandCanHold(kNoRegister, kNoRegister, AND, value, &so)) {
6649 __ and_(out, first, so);
6650 } else {
6651 DCHECK(__ ShifterOperandCanHold(kNoRegister, kNoRegister, BIC, ~value, &so));
6652 __ bic(out, first, ShifterOperand(~value));
6653 }
6654}
6655
6656void InstructionCodeGeneratorARM::GenerateOrrConst(Register out, Register first, uint32_t value) {
6657 // Optimize special cases for individual halfs of `or-long` (`or` is simplified earlier).
6658 if (value == 0u) {
6659 if (out != first) {
6660 __ mov(out, ShifterOperand(first));
6661 }
6662 return;
6663 }
6664 if (value == 0xffffffffu) {
6665 __ mvn(out, ShifterOperand(0));
6666 return;
6667 }
6668 ShifterOperand so;
6669 if (__ ShifterOperandCanHold(kNoRegister, kNoRegister, ORR, value, &so)) {
6670 __ orr(out, first, so);
6671 } else {
6672 DCHECK(__ ShifterOperandCanHold(kNoRegister, kNoRegister, ORN, ~value, &so));
6673 __ orn(out, first, ShifterOperand(~value));
6674 }
6675}
6676
6677void InstructionCodeGeneratorARM::GenerateEorConst(Register out, Register first, uint32_t value) {
6678 // Optimize special case for individual halfs of `xor-long` (`xor` is simplified earlier).
6679 if (value == 0u) {
6680 if (out != first) {
6681 __ mov(out, ShifterOperand(first));
6682 }
6683 return;
6684 }
6685 __ eor(out, first, ShifterOperand(value));
6686}
6687
Vladimir Marko59751a72016-08-05 14:37:27 +01006688void InstructionCodeGeneratorARM::GenerateAddLongConst(Location out,
6689 Location first,
6690 uint64_t value) {
6691 Register out_low = out.AsRegisterPairLow<Register>();
6692 Register out_high = out.AsRegisterPairHigh<Register>();
6693 Register first_low = first.AsRegisterPairLow<Register>();
6694 Register first_high = first.AsRegisterPairHigh<Register>();
6695 uint32_t value_low = Low32Bits(value);
6696 uint32_t value_high = High32Bits(value);
6697 if (value_low == 0u) {
6698 if (out_low != first_low) {
6699 __ mov(out_low, ShifterOperand(first_low));
6700 }
6701 __ AddConstant(out_high, first_high, value_high);
6702 return;
6703 }
6704 __ AddConstantSetFlags(out_low, first_low, value_low);
6705 ShifterOperand so;
6706 if (__ ShifterOperandCanHold(out_high, first_high, ADC, value_high, kCcDontCare, &so)) {
6707 __ adc(out_high, first_high, so);
6708 } else if (__ ShifterOperandCanHold(out_low, first_low, SBC, ~value_high, kCcDontCare, &so)) {
6709 __ sbc(out_high, first_high, so);
6710 } else {
6711 LOG(FATAL) << "Unexpected constant " << value_high;
6712 UNREACHABLE();
6713 }
6714}
6715
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006716void InstructionCodeGeneratorARM::HandleBitwiseOperation(HBinaryOperation* instruction) {
6717 LocationSummary* locations = instruction->GetLocations();
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006718 Location first = locations->InAt(0);
6719 Location second = locations->InAt(1);
6720 Location out = locations->Out();
6721
6722 if (second.IsConstant()) {
6723 uint64_t value = static_cast<uint64_t>(Int64FromConstant(second.GetConstant()));
6724 uint32_t value_low = Low32Bits(value);
6725 if (instruction->GetResultType() == Primitive::kPrimInt) {
6726 Register first_reg = first.AsRegister<Register>();
6727 Register out_reg = out.AsRegister<Register>();
6728 if (instruction->IsAnd()) {
6729 GenerateAndConst(out_reg, first_reg, value_low);
6730 } else if (instruction->IsOr()) {
6731 GenerateOrrConst(out_reg, first_reg, value_low);
6732 } else {
6733 DCHECK(instruction->IsXor());
6734 GenerateEorConst(out_reg, first_reg, value_low);
6735 }
6736 } else {
6737 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
6738 uint32_t value_high = High32Bits(value);
6739 Register first_low = first.AsRegisterPairLow<Register>();
6740 Register first_high = first.AsRegisterPairHigh<Register>();
6741 Register out_low = out.AsRegisterPairLow<Register>();
6742 Register out_high = out.AsRegisterPairHigh<Register>();
6743 if (instruction->IsAnd()) {
6744 GenerateAndConst(out_low, first_low, value_low);
6745 GenerateAndConst(out_high, first_high, value_high);
6746 } else if (instruction->IsOr()) {
6747 GenerateOrrConst(out_low, first_low, value_low);
6748 GenerateOrrConst(out_high, first_high, value_high);
6749 } else {
6750 DCHECK(instruction->IsXor());
6751 GenerateEorConst(out_low, first_low, value_low);
6752 GenerateEorConst(out_high, first_high, value_high);
6753 }
6754 }
6755 return;
6756 }
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006757
6758 if (instruction->GetResultType() == Primitive::kPrimInt) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006759 Register first_reg = first.AsRegister<Register>();
6760 ShifterOperand second_reg(second.AsRegister<Register>());
6761 Register out_reg = out.AsRegister<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006762 if (instruction->IsAnd()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006763 __ and_(out_reg, first_reg, second_reg);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006764 } else if (instruction->IsOr()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006765 __ orr(out_reg, first_reg, second_reg);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006766 } else {
6767 DCHECK(instruction->IsXor());
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006768 __ eor(out_reg, first_reg, second_reg);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006769 }
6770 } else {
6771 DCHECK_EQ(instruction->GetResultType(), Primitive::kPrimLong);
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006772 Register first_low = first.AsRegisterPairLow<Register>();
6773 Register first_high = first.AsRegisterPairHigh<Register>();
6774 ShifterOperand second_low(second.AsRegisterPairLow<Register>());
6775 ShifterOperand second_high(second.AsRegisterPairHigh<Register>());
6776 Register out_low = out.AsRegisterPairLow<Register>();
6777 Register out_high = out.AsRegisterPairHigh<Register>();
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006778 if (instruction->IsAnd()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006779 __ and_(out_low, first_low, second_low);
6780 __ and_(out_high, first_high, second_high);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006781 } else if (instruction->IsOr()) {
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006782 __ orr(out_low, first_low, second_low);
6783 __ orr(out_high, first_high, second_high);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006784 } else {
6785 DCHECK(instruction->IsXor());
Vladimir Markod2b4ca22015-09-14 15:13:26 +01006786 __ eor(out_low, first_low, second_low);
6787 __ eor(out_high, first_high, second_high);
Nicolas Geoffray9574c4b2014-11-12 13:19:37 +00006788 }
6789 }
6790}
6791
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006792void InstructionCodeGeneratorARM::GenerateReferenceLoadOneRegister(
6793 HInstruction* instruction,
6794 Location out,
6795 uint32_t offset,
6796 Location maybe_temp,
6797 ReadBarrierOption read_barrier_option) {
Roland Levillainc9285912015-12-18 10:38:42 +00006798 Register out_reg = out.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006799 if (read_barrier_option == kWithReadBarrier) {
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006800 CHECK(kEmitCompilerReadBarrier);
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006801 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
Roland Levillainc9285912015-12-18 10:38:42 +00006802 if (kUseBakerReadBarrier) {
6803 // Load with fast path based Baker's read barrier.
6804 // /* HeapReference<Object> */ out = *(out + offset)
6805 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006806 instruction, out, out_reg, offset, maybe_temp, /* needs_null_check */ false);
Roland Levillainc9285912015-12-18 10:38:42 +00006807 } else {
6808 // Load with slow path based read barrier.
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006809 // Save the value of `out` into `maybe_temp` before overwriting it
Roland Levillainc9285912015-12-18 10:38:42 +00006810 // in the following move operation, as we will need it for the
6811 // read barrier below.
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006812 __ Mov(maybe_temp.AsRegister<Register>(), out_reg);
Roland Levillainc9285912015-12-18 10:38:42 +00006813 // /* HeapReference<Object> */ out = *(out + offset)
6814 __ LoadFromOffset(kLoadWord, out_reg, out_reg, offset);
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006815 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
Roland Levillainc9285912015-12-18 10:38:42 +00006816 }
6817 } else {
6818 // Plain load with no read barrier.
6819 // /* HeapReference<Object> */ out = *(out + offset)
6820 __ LoadFromOffset(kLoadWord, out_reg, out_reg, offset);
6821 __ MaybeUnpoisonHeapReference(out_reg);
6822 }
6823}
6824
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006825void InstructionCodeGeneratorARM::GenerateReferenceLoadTwoRegisters(
6826 HInstruction* instruction,
6827 Location out,
6828 Location obj,
6829 uint32_t offset,
6830 Location maybe_temp,
6831 ReadBarrierOption read_barrier_option) {
Roland Levillainc9285912015-12-18 10:38:42 +00006832 Register out_reg = out.AsRegister<Register>();
6833 Register obj_reg = obj.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006834 if (read_barrier_option == kWithReadBarrier) {
Mathieu Chartieraa474eb2016-11-09 15:18:27 -08006835 CHECK(kEmitCompilerReadBarrier);
Roland Levillainc9285912015-12-18 10:38:42 +00006836 if (kUseBakerReadBarrier) {
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006837 DCHECK(maybe_temp.IsRegister()) << maybe_temp;
Roland Levillainc9285912015-12-18 10:38:42 +00006838 // Load with fast path based Baker's read barrier.
6839 // /* HeapReference<Object> */ out = *(obj + offset)
6840 codegen_->GenerateFieldLoadWithBakerReadBarrier(
Roland Levillain95e7ffc2016-01-22 11:57:25 +00006841 instruction, out, obj_reg, offset, maybe_temp, /* needs_null_check */ false);
Roland Levillainc9285912015-12-18 10:38:42 +00006842 } else {
6843 // Load with slow path based read barrier.
6844 // /* HeapReference<Object> */ out = *(obj + offset)
6845 __ LoadFromOffset(kLoadWord, out_reg, obj_reg, offset);
6846 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
6847 }
6848 } else {
6849 // Plain load with no read barrier.
6850 // /* HeapReference<Object> */ out = *(obj + offset)
6851 __ LoadFromOffset(kLoadWord, out_reg, obj_reg, offset);
6852 __ MaybeUnpoisonHeapReference(out_reg);
6853 }
6854}
6855
6856void InstructionCodeGeneratorARM::GenerateGcRootFieldLoad(HInstruction* instruction,
6857 Location root,
6858 Register obj,
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006859 uint32_t offset,
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006860 ReadBarrierOption read_barrier_option) {
Roland Levillainc9285912015-12-18 10:38:42 +00006861 Register root_reg = root.AsRegister<Register>();
Mathieu Chartier3af00dc2016-11-10 11:25:57 -08006862 if (read_barrier_option == kWithReadBarrier) {
Mathieu Chartier31b12e32016-09-02 17:11:57 -07006863 DCHECK(kEmitCompilerReadBarrier);
Roland Levillainc9285912015-12-18 10:38:42 +00006864 if (kUseBakerReadBarrier) {
6865 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
6866 // Baker's read barrier are used:
6867 //
6868 // root = obj.field;
Mathieu Chartierfe814e82016-11-09 14:32:49 -08006869 // temp = Thread::Current()->pReadBarrierMarkReg ## root.reg()
6870 // if (temp != null) {
6871 // root = temp(root)
Roland Levillainc9285912015-12-18 10:38:42 +00006872 // }
6873
6874 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6875 __ LoadFromOffset(kLoadWord, root_reg, obj, offset);
6876 static_assert(
6877 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
6878 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
6879 "have different sizes.");
6880 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
6881 "art::mirror::CompressedReference<mirror::Object> and int32_t "
6882 "have different sizes.");
6883
Vladimir Marko953437b2016-08-24 08:30:46 +00006884 // Slow path marking the GC root `root`.
Mathieu Chartierfe814e82016-11-09 14:32:49 -08006885 Location temp = Location::RegisterLocation(LR);
Artem Serovf4d6aee2016-07-11 10:41:45 +01006886 SlowPathCodeARM* slow_path =
Mathieu Chartierfe814e82016-11-09 14:32:49 -08006887 new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathARM(
6888 instruction,
6889 root,
6890 /*entrypoint*/ temp);
Roland Levillainc9285912015-12-18 10:38:42 +00006891 codegen_->AddSlowPath(slow_path);
6892
Mathieu Chartierfe814e82016-11-09 14:32:49 -08006893 // temp = Thread::Current()->pReadBarrierMarkReg ## root.reg()
6894 const int32_t entry_point_offset =
6895 CodeGenerator::GetReadBarrierMarkEntryPointsOffset<kArmPointerSize>(root.reg());
6896 // Loading the entrypoint does not require a load acquire since it is only changed when
6897 // threads are suspended or running a checkpoint.
6898 __ LoadFromOffset(kLoadWord, temp.AsRegister<Register>(), TR, entry_point_offset);
6899 // The entrypoint is null when the GC is not marking, this prevents one load compared to
6900 // checking GetIsGcMarking.
6901 __ CompareAndBranchIfNonZero(temp.AsRegister<Register>(), slow_path->GetEntryLabel());
Roland Levillainc9285912015-12-18 10:38:42 +00006902 __ Bind(slow_path->GetExitLabel());
6903 } else {
6904 // GC root loaded through a slow path for read barriers other
6905 // than Baker's.
6906 // /* GcRoot<mirror::Object>* */ root = obj + offset
6907 __ AddConstant(root_reg, obj, offset);
6908 // /* mirror::Object* */ root = root->Read()
6909 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
6910 }
6911 } else {
6912 // Plain GC root load with no read barrier.
6913 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
6914 __ LoadFromOffset(kLoadWord, root_reg, obj, offset);
6915 // Note that GC roots are not affected by heap poisoning, thus we
6916 // do not have to unpoison `root_reg` here.
6917 }
6918}
6919
6920void CodeGeneratorARM::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
6921 Location ref,
6922 Register obj,
6923 uint32_t offset,
6924 Location temp,
6925 bool needs_null_check) {
6926 DCHECK(kEmitCompilerReadBarrier);
6927 DCHECK(kUseBakerReadBarrier);
6928
6929 // /* HeapReference<Object> */ ref = *(obj + offset)
6930 Location no_index = Location::NoLocation();
Roland Levillainbfea3352016-06-23 13:48:47 +01006931 ScaleFactor no_scale_factor = TIMES_1;
Roland Levillainc9285912015-12-18 10:38:42 +00006932 GenerateReferenceLoadWithBakerReadBarrier(
Roland Levillainbfea3352016-06-23 13:48:47 +01006933 instruction, ref, obj, offset, no_index, no_scale_factor, temp, needs_null_check);
Roland Levillainc9285912015-12-18 10:38:42 +00006934}
6935
6936void CodeGeneratorARM::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
6937 Location ref,
6938 Register obj,
6939 uint32_t data_offset,
6940 Location index,
6941 Location temp,
6942 bool needs_null_check) {
6943 DCHECK(kEmitCompilerReadBarrier);
6944 DCHECK(kUseBakerReadBarrier);
6945
Roland Levillainbfea3352016-06-23 13:48:47 +01006946 static_assert(
6947 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
6948 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillainc9285912015-12-18 10:38:42 +00006949 // /* HeapReference<Object> */ ref =
6950 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
Roland Levillainbfea3352016-06-23 13:48:47 +01006951 ScaleFactor scale_factor = TIMES_4;
Roland Levillainc9285912015-12-18 10:38:42 +00006952 GenerateReferenceLoadWithBakerReadBarrier(
Roland Levillainbfea3352016-06-23 13:48:47 +01006953 instruction, ref, obj, data_offset, index, scale_factor, temp, needs_null_check);
Roland Levillainc9285912015-12-18 10:38:42 +00006954}
6955
6956void CodeGeneratorARM::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
6957 Location ref,
6958 Register obj,
6959 uint32_t offset,
6960 Location index,
Roland Levillainbfea3352016-06-23 13:48:47 +01006961 ScaleFactor scale_factor,
Roland Levillainc9285912015-12-18 10:38:42 +00006962 Location temp,
Roland Levillaina1aa3b12016-10-26 13:03:38 +01006963 bool needs_null_check,
6964 bool always_update_field,
6965 Register* temp2) {
Roland Levillainc9285912015-12-18 10:38:42 +00006966 DCHECK(kEmitCompilerReadBarrier);
6967 DCHECK(kUseBakerReadBarrier);
6968
6969 // In slow path based read barriers, the read barrier call is
6970 // inserted after the original load. However, in fast path based
6971 // Baker's read barriers, we need to perform the load of
6972 // mirror::Object::monitor_ *before* the original reference load.
6973 // This load-load ordering is required by the read barrier.
6974 // The fast path/slow path (for Baker's algorithm) should look like:
6975 //
6976 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
6977 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
6978 // HeapReference<Object> ref = *src; // Original reference load.
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07006979 // bool is_gray = (rb_state == ReadBarrier::GrayState());
Roland Levillainc9285912015-12-18 10:38:42 +00006980 // if (is_gray) {
6981 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
6982 // }
6983 //
6984 // Note: the original implementation in ReadBarrier::Barrier is
Roland Levillaine3f43ac2016-01-19 15:07:47 +00006985 // slightly more complex as it performs additional checks that we do
6986 // not do here for performance reasons.
Roland Levillainc9285912015-12-18 10:38:42 +00006987
6988 Register ref_reg = ref.AsRegister<Register>();
6989 Register temp_reg = temp.AsRegister<Register>();
6990 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
6991
6992 // /* int32_t */ monitor = obj->monitor_
6993 __ LoadFromOffset(kLoadWord, temp_reg, obj, monitor_offset);
6994 if (needs_null_check) {
6995 MaybeRecordImplicitNullCheck(instruction);
6996 }
6997 // /* LockWord */ lock_word = LockWord(monitor)
6998 static_assert(sizeof(LockWord) == sizeof(int32_t),
6999 "art::LockWord and int32_t have different sizes.");
Roland Levillainc9285912015-12-18 10:38:42 +00007000
Vladimir Marko194bcfe2016-07-11 15:52:00 +01007001 // Introduce a dependency on the lock_word including the rb_state,
7002 // which shall prevent load-load reordering without using
Roland Levillainc9285912015-12-18 10:38:42 +00007003 // a memory barrier (which would be more expensive).
Roland Levillain0b671c02016-08-19 12:02:34 +01007004 // `obj` is unchanged by this operation, but its value now depends
7005 // on `temp_reg`.
Vladimir Marko194bcfe2016-07-11 15:52:00 +01007006 __ add(obj, obj, ShifterOperand(temp_reg, LSR, 32));
Roland Levillainc9285912015-12-18 10:38:42 +00007007
7008 // The actual reference load.
7009 if (index.IsValid()) {
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007010 // Load types involving an "index": ArrayGet,
7011 // UnsafeGetObject/UnsafeGetObjectVolatile and UnsafeCASObject
7012 // intrinsics.
Roland Levillainbfea3352016-06-23 13:48:47 +01007013 // /* HeapReference<Object> */ ref = *(obj + offset + (index << scale_factor))
Roland Levillainc9285912015-12-18 10:38:42 +00007014 if (index.IsConstant()) {
7015 size_t computed_offset =
Roland Levillainbfea3352016-06-23 13:48:47 +01007016 (index.GetConstant()->AsIntConstant()->GetValue() << scale_factor) + offset;
Roland Levillainc9285912015-12-18 10:38:42 +00007017 __ LoadFromOffset(kLoadWord, ref_reg, obj, computed_offset);
7018 } else {
Roland Levillainbfea3352016-06-23 13:48:47 +01007019 // Handle the special case of the
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007020 // UnsafeGetObject/UnsafeGetObjectVolatile and UnsafeCASObject
7021 // intrinsics, which use a register pair as index ("long
7022 // offset"), of which only the low part contains data.
Roland Levillainbfea3352016-06-23 13:48:47 +01007023 Register index_reg = index.IsRegisterPair()
7024 ? index.AsRegisterPairLow<Register>()
7025 : index.AsRegister<Register>();
7026 __ add(IP, obj, ShifterOperand(index_reg, LSL, scale_factor));
Roland Levillainc9285912015-12-18 10:38:42 +00007027 __ LoadFromOffset(kLoadWord, ref_reg, IP, offset);
7028 }
7029 } else {
7030 // /* HeapReference<Object> */ ref = *(obj + offset)
7031 __ LoadFromOffset(kLoadWord, ref_reg, obj, offset);
7032 }
7033
7034 // Object* ref = ref_addr->AsMirrorPtr()
7035 __ MaybeUnpoisonHeapReference(ref_reg);
7036
Vladimir Marko953437b2016-08-24 08:30:46 +00007037 // Slow path marking the object `ref` when it is gray.
Roland Levillaina1aa3b12016-10-26 13:03:38 +01007038 SlowPathCodeARM* slow_path;
7039 if (always_update_field) {
7040 DCHECK(temp2 != nullptr);
7041 // ReadBarrierMarkAndUpdateFieldSlowPathARM only supports address
7042 // of the form `obj + field_offset`, where `obj` is a register and
7043 // `field_offset` is a register pair (of which only the lower half
7044 // is used). Thus `offset` and `scale_factor` above are expected
7045 // to be null in this code path.
7046 DCHECK_EQ(offset, 0u);
7047 DCHECK_EQ(scale_factor, ScaleFactor::TIMES_1);
7048 slow_path = new (GetGraph()->GetArena()) ReadBarrierMarkAndUpdateFieldSlowPathARM(
7049 instruction, ref, obj, /* field_offset */ index, temp_reg, *temp2);
7050 } else {
7051 slow_path = new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathARM(instruction, ref);
7052 }
Roland Levillainc9285912015-12-18 10:38:42 +00007053 AddSlowPath(slow_path);
7054
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007055 // if (rb_state == ReadBarrier::GrayState())
Roland Levillainc9285912015-12-18 10:38:42 +00007056 // ref = ReadBarrier::Mark(ref);
Vladimir Marko194bcfe2016-07-11 15:52:00 +01007057 // Given the numeric representation, it's enough to check the low bit of the
7058 // rb_state. We do that by shifting the bit out of the lock word with LSRS
7059 // which can be a 16-bit instruction unlike the TST immediate.
Hiroshi Yamauchi12b58b22016-11-01 11:55:29 -07007060 static_assert(ReadBarrier::WhiteState() == 0, "Expecting white to have value 0");
7061 static_assert(ReadBarrier::GrayState() == 1, "Expecting gray to have value 1");
Vladimir Marko194bcfe2016-07-11 15:52:00 +01007062 __ Lsrs(temp_reg, temp_reg, LockWord::kReadBarrierStateShift + 1);
7063 __ b(slow_path->GetEntryLabel(), CS); // Carry flag is the last bit shifted out by LSRS.
Roland Levillainc9285912015-12-18 10:38:42 +00007064 __ Bind(slow_path->GetExitLabel());
7065}
7066
7067void CodeGeneratorARM::GenerateReadBarrierSlow(HInstruction* instruction,
7068 Location out,
7069 Location ref,
7070 Location obj,
7071 uint32_t offset,
7072 Location index) {
Roland Levillain3b359c72015-11-17 19:35:12 +00007073 DCHECK(kEmitCompilerReadBarrier);
7074
Roland Levillainc9285912015-12-18 10:38:42 +00007075 // Insert a slow path based read barrier *after* the reference load.
7076 //
Roland Levillain3b359c72015-11-17 19:35:12 +00007077 // If heap poisoning is enabled, the unpoisoning of the loaded
7078 // reference will be carried out by the runtime within the slow
7079 // path.
7080 //
7081 // Note that `ref` currently does not get unpoisoned (when heap
7082 // poisoning is enabled), which is alright as the `ref` argument is
7083 // not used by the artReadBarrierSlow entry point.
7084 //
7085 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
Artem Serovf4d6aee2016-07-11 10:41:45 +01007086 SlowPathCodeARM* slow_path = new (GetGraph()->GetArena())
Roland Levillain3b359c72015-11-17 19:35:12 +00007087 ReadBarrierForHeapReferenceSlowPathARM(instruction, out, ref, obj, offset, index);
7088 AddSlowPath(slow_path);
7089
Roland Levillain3b359c72015-11-17 19:35:12 +00007090 __ b(slow_path->GetEntryLabel());
7091 __ Bind(slow_path->GetExitLabel());
7092}
7093
Roland Levillainc9285912015-12-18 10:38:42 +00007094void CodeGeneratorARM::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
7095 Location out,
7096 Location ref,
7097 Location obj,
7098 uint32_t offset,
7099 Location index) {
Roland Levillain3b359c72015-11-17 19:35:12 +00007100 if (kEmitCompilerReadBarrier) {
Roland Levillainc9285912015-12-18 10:38:42 +00007101 // Baker's read barriers shall be handled by the fast path
7102 // (CodeGeneratorARM::GenerateReferenceLoadWithBakerReadBarrier).
7103 DCHECK(!kUseBakerReadBarrier);
Roland Levillain3b359c72015-11-17 19:35:12 +00007104 // If heap poisoning is enabled, unpoisoning will be taken care of
7105 // by the runtime within the slow path.
Roland Levillainc9285912015-12-18 10:38:42 +00007106 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
Roland Levillain3b359c72015-11-17 19:35:12 +00007107 } else if (kPoisonHeapReferences) {
7108 __ UnpoisonHeapReference(out.AsRegister<Register>());
7109 }
7110}
7111
Roland Levillainc9285912015-12-18 10:38:42 +00007112void CodeGeneratorARM::GenerateReadBarrierForRootSlow(HInstruction* instruction,
7113 Location out,
7114 Location root) {
Roland Levillain3b359c72015-11-17 19:35:12 +00007115 DCHECK(kEmitCompilerReadBarrier);
7116
Roland Levillainc9285912015-12-18 10:38:42 +00007117 // Insert a slow path based read barrier *after* the GC root load.
7118 //
Roland Levillain3b359c72015-11-17 19:35:12 +00007119 // Note that GC roots are not affected by heap poisoning, so we do
7120 // not need to do anything special for this here.
Artem Serovf4d6aee2016-07-11 10:41:45 +01007121 SlowPathCodeARM* slow_path =
Roland Levillain3b359c72015-11-17 19:35:12 +00007122 new (GetGraph()->GetArena()) ReadBarrierForRootSlowPathARM(instruction, out, root);
7123 AddSlowPath(slow_path);
7124
Roland Levillain3b359c72015-11-17 19:35:12 +00007125 __ b(slow_path->GetEntryLabel());
7126 __ Bind(slow_path->GetExitLabel());
7127}
7128
Vladimir Markodc151b22015-10-15 18:02:30 +01007129HInvokeStaticOrDirect::DispatchInfo CodeGeneratorARM::GetSupportedInvokeStaticOrDirectDispatch(
7130 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01007131 HInvokeStaticOrDirect* invoke) {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00007132 HInvokeStaticOrDirect::DispatchInfo dispatch_info = desired_dispatch_info;
7133 // We disable pc-relative load when there is an irreducible loop, as the optimization
7134 // is incompatible with it.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007135 // TODO: Create as many ArmDexCacheArraysBase instructions as needed for methods
7136 // with irreducible loops.
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00007137 if (GetGraph()->HasIrreducibleLoops() &&
7138 (dispatch_info.method_load_kind ==
7139 HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative)) {
7140 dispatch_info.method_load_kind = HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod;
7141 }
7142
7143 if (dispatch_info.code_ptr_location == HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative) {
Vladimir Markodc151b22015-10-15 18:02:30 +01007144 const DexFile& outer_dex_file = GetGraph()->GetDexFile();
Nicolas Geoffray5e4e11e2016-09-22 13:17:41 +01007145 if (&outer_dex_file != invoke->GetTargetMethod().dex_file) {
Vladimir Markodc151b22015-10-15 18:02:30 +01007146 // Calls across dex files are more likely to exceed the available BL range,
7147 // so use absolute patch with fixup if available and kCallArtMethod otherwise.
7148 HInvokeStaticOrDirect::CodePtrLocation code_ptr_location =
7149 (desired_dispatch_info.method_load_kind ==
7150 HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup)
7151 ? HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup
7152 : HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod;
7153 return HInvokeStaticOrDirect::DispatchInfo {
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00007154 dispatch_info.method_load_kind,
Vladimir Markodc151b22015-10-15 18:02:30 +01007155 code_ptr_location,
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00007156 dispatch_info.method_load_data,
Vladimir Markodc151b22015-10-15 18:02:30 +01007157 0u
7158 };
7159 }
7160 }
Nicolas Geoffray15bd2282016-01-05 15:55:41 +00007161 return dispatch_info;
Vladimir Markodc151b22015-10-15 18:02:30 +01007162}
7163
Vladimir Markob4536b72015-11-24 13:45:23 +00007164Register CodeGeneratorARM::GetInvokeStaticOrDirectExtraParameter(HInvokeStaticOrDirect* invoke,
7165 Register temp) {
7166 DCHECK_EQ(invoke->InputCount(), invoke->GetNumberOfArguments() + 1u);
7167 Location location = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
7168 if (!invoke->GetLocations()->Intrinsified()) {
7169 return location.AsRegister<Register>();
7170 }
7171 // For intrinsics we allow any location, so it may be on the stack.
7172 if (!location.IsRegister()) {
7173 __ LoadFromOffset(kLoadWord, temp, SP, location.GetStackIndex());
7174 return temp;
7175 }
7176 // For register locations, check if the register was saved. If so, get it from the stack.
7177 // Note: There is a chance that the register was saved but not overwritten, so we could
7178 // save one load. However, since this is just an intrinsic slow path we prefer this
7179 // simple and more robust approach rather that trying to determine if that's the case.
7180 SlowPathCode* slow_path = GetCurrentSlowPath();
7181 DCHECK(slow_path != nullptr); // For intrinsified invokes the call is emitted on the slow path.
7182 if (slow_path->IsCoreRegisterSaved(location.AsRegister<Register>())) {
7183 int stack_offset = slow_path->GetStackOffsetOfCoreRegister(location.AsRegister<Register>());
7184 __ LoadFromOffset(kLoadWord, temp, SP, stack_offset);
7185 return temp;
7186 }
7187 return location.AsRegister<Register>();
7188}
7189
Nicolas Geoffray38207af2015-06-01 15:46:22 +01007190void CodeGeneratorARM::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00007191 // For better instruction scheduling we load the direct code pointer before the method pointer.
Vladimir Marko58155012015-08-19 12:49:41 +00007192 switch (invoke->GetCodePtrLocation()) {
Vladimir Marko58155012015-08-19 12:49:41 +00007193 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
7194 // LR = code address from literal pool with link-time patch.
7195 __ LoadLiteral(LR, DeduplicateMethodCodeLiteral(invoke->GetTargetMethod()));
Vladimir Marko58155012015-08-19 12:49:41 +00007196 break;
7197 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
7198 // LR = invoke->GetDirectCodePtr();
7199 __ LoadImmediate(LR, invoke->GetDirectCodePtr());
Vladimir Marko58155012015-08-19 12:49:41 +00007200 break;
7201 default:
7202 break;
7203 }
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08007204
Vladimir Marko58155012015-08-19 12:49:41 +00007205 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
7206 switch (invoke->GetMethodLoadKind()) {
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007207 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit: {
7208 uint32_t offset =
7209 GetThreadOffset<kArmPointerSize>(invoke->GetStringInitEntryPoint()).Int32Value();
Vladimir Marko58155012015-08-19 12:49:41 +00007210 // temp = thread->string_init_entrypoint
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007211 __ LoadFromOffset(kLoadWord, temp.AsRegister<Register>(), TR, offset);
Vladimir Marko58155012015-08-19 12:49:41 +00007212 break;
Nicolas Geoffrayda079bb2016-09-26 17:56:07 +01007213 }
Vladimir Marko58155012015-08-19 12:49:41 +00007214 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00007215 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00007216 break;
7217 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
7218 __ LoadImmediate(temp.AsRegister<Register>(), invoke->GetMethodAddress());
7219 break;
7220 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
7221 __ LoadLiteral(temp.AsRegister<Register>(),
7222 DeduplicateMethodAddressLiteral(invoke->GetTargetMethod()));
7223 break;
Vladimir Markob4536b72015-11-24 13:45:23 +00007224 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: {
7225 HArmDexCacheArraysBase* base =
7226 invoke->InputAt(invoke->GetSpecialInputIndex())->AsArmDexCacheArraysBase();
7227 Register base_reg = GetInvokeStaticOrDirectExtraParameter(invoke,
7228 temp.AsRegister<Register>());
7229 int32_t offset = invoke->GetDexCacheArrayOffset() - base->GetElementOffset();
7230 __ LoadFromOffset(kLoadWord, temp.AsRegister<Register>(), base_reg, offset);
7231 break;
7232 }
Vladimir Marko58155012015-08-19 12:49:41 +00007233 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
Vladimir Markoc53c0792015-11-19 15:48:33 +00007234 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00007235 Register method_reg;
7236 Register reg = temp.AsRegister<Register>();
7237 if (current_method.IsRegister()) {
7238 method_reg = current_method.AsRegister<Register>();
7239 } else {
7240 DCHECK(invoke->GetLocations()->Intrinsified());
7241 DCHECK(!current_method.IsValid());
7242 method_reg = reg;
7243 __ LoadFromOffset(kLoadWord, reg, SP, kCurrentMethodStackOffset);
7244 }
Roland Levillain3b359c72015-11-17 19:35:12 +00007245 // /* ArtMethod*[] */ temp = temp.ptr_sized_fields_->dex_cache_resolved_methods_;
7246 __ LoadFromOffset(kLoadWord,
7247 reg,
7248 method_reg,
7249 ArtMethod::DexCacheResolvedMethodsOffset(kArmPointerSize).Int32Value());
Vladimir Marko40ecb122016-04-06 17:33:41 +01007250 // temp = temp[index_in_cache];
7251 // Note: Don't use invoke->GetTargetMethod() as it may point to a different dex file.
7252 uint32_t index_in_cache = invoke->GetDexMethodIndex();
Vladimir Marko58155012015-08-19 12:49:41 +00007253 __ LoadFromOffset(kLoadWord, reg, reg, CodeGenerator::GetCachePointerOffset(index_in_cache));
7254 break;
Nicolas Geoffrayae71a052015-06-09 14:12:28 +01007255 }
Vladimir Marko58155012015-08-19 12:49:41 +00007256 }
7257
7258 switch (invoke->GetCodePtrLocation()) {
7259 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
7260 __ bl(GetFrameEntryLabel());
7261 break;
7262 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative:
Vladimir Markoaad75c62016-10-03 08:46:48 +00007263 relative_call_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
7264 invoke->GetTargetMethod().dex_method_index);
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007265 __ BindTrackedLabel(&relative_call_patches_.back().label);
Vladimir Markodc151b22015-10-15 18:02:30 +01007266 // Arbitrarily branch to the BL itself, override at link time.
7267 __ bl(&relative_call_patches_.back().label);
7268 break;
Vladimir Marko58155012015-08-19 12:49:41 +00007269 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
7270 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
7271 // LR prepared above for better instruction scheduling.
Vladimir Marko58155012015-08-19 12:49:41 +00007272 // LR()
7273 __ blx(LR);
7274 break;
7275 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
7276 // LR = callee_method->entry_point_from_quick_compiled_code_
7277 __ LoadFromOffset(
7278 kLoadWord, LR, callee_method.AsRegister<Register>(),
Andreas Gampe542451c2016-07-26 09:02:02 -07007279 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArmPointerSize).Int32Value());
Vladimir Marko58155012015-08-19 12:49:41 +00007280 // LR()
7281 __ blx(LR);
7282 break;
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08007283 }
7284
Andreas Gampe2bcf9bf2015-01-29 09:56:07 -08007285 DCHECK(!IsLeafMethod());
7286}
7287
Andreas Gampebfb5ba92015-09-01 15:45:02 +00007288void CodeGeneratorARM::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_location) {
7289 Register temp = temp_location.AsRegister<Register>();
7290 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
7291 invoke->GetVTableIndex(), kArmPointerSize).Uint32Value();
Nicolas Geoffraye5234232015-12-02 09:06:11 +00007292
7293 // Use the calling convention instead of the location of the receiver, as
7294 // intrinsics may have put the receiver in a different register. In the intrinsics
7295 // slow path, the arguments have been moved to the right place, so here we are
7296 // guaranteed that the receiver is the first register of the calling convention.
7297 InvokeDexCallingConvention calling_convention;
7298 Register receiver = calling_convention.GetRegisterAt(0);
Andreas Gampebfb5ba92015-09-01 15:45:02 +00007299 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
Roland Levillain3b359c72015-11-17 19:35:12 +00007300 // /* HeapReference<Class> */ temp = receiver->klass_
Nicolas Geoffraye5234232015-12-02 09:06:11 +00007301 __ LoadFromOffset(kLoadWord, temp, receiver, class_offset);
Andreas Gampebfb5ba92015-09-01 15:45:02 +00007302 MaybeRecordImplicitNullCheck(invoke);
Roland Levillain3b359c72015-11-17 19:35:12 +00007303 // Instead of simply (possibly) unpoisoning `temp` here, we should
7304 // emit a read barrier for the previous class reference load.
7305 // However this is not required in practice, as this is an
7306 // intermediate/temporary reference and because the current
7307 // concurrent copying collector keeps the from-space memory
7308 // intact/accessible until the end of the marking phase (the
7309 // concurrent copying collector may not in the future).
Andreas Gampebfb5ba92015-09-01 15:45:02 +00007310 __ MaybeUnpoisonHeapReference(temp);
7311 // temp = temp->GetMethodAt(method_offset);
7312 uint32_t entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(
Andreas Gampe542451c2016-07-26 09:02:02 -07007313 kArmPointerSize).Int32Value();
Andreas Gampebfb5ba92015-09-01 15:45:02 +00007314 __ LoadFromOffset(kLoadWord, temp, temp, method_offset);
7315 // LR = temp->GetEntryPoint();
7316 __ LoadFromOffset(kLoadWord, LR, temp, entry_point);
7317 // LR();
7318 __ blx(LR);
7319}
7320
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007321CodeGeneratorARM::PcRelativePatchInfo* CodeGeneratorARM::NewPcRelativeStringPatch(
7322 const DexFile& dex_file, uint32_t string_index) {
7323 return NewPcRelativePatch(dex_file, string_index, &pc_relative_string_patches_);
7324}
7325
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007326CodeGeneratorARM::PcRelativePatchInfo* CodeGeneratorARM::NewPcRelativeTypePatch(
Andreas Gampea5b09a62016-11-17 15:21:22 -08007327 const DexFile& dex_file, dex::TypeIndex type_index) {
7328 return NewPcRelativePatch(dex_file, type_index.index_, &pc_relative_type_patches_);
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007329}
7330
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007331CodeGeneratorARM::PcRelativePatchInfo* CodeGeneratorARM::NewPcRelativeDexCacheArrayPatch(
7332 const DexFile& dex_file, uint32_t element_offset) {
7333 return NewPcRelativePatch(dex_file, element_offset, &pc_relative_dex_cache_patches_);
7334}
7335
7336CodeGeneratorARM::PcRelativePatchInfo* CodeGeneratorARM::NewPcRelativePatch(
7337 const DexFile& dex_file, uint32_t offset_or_index, ArenaDeque<PcRelativePatchInfo>* patches) {
7338 patches->emplace_back(dex_file, offset_or_index);
7339 return &patches->back();
7340}
7341
7342Literal* CodeGeneratorARM::DeduplicateBootImageStringLiteral(const DexFile& dex_file,
7343 uint32_t string_index) {
7344 return boot_image_string_patches_.GetOrCreate(
7345 StringReference(&dex_file, string_index),
7346 [this]() { return __ NewLiteral<uint32_t>(/* placeholder */ 0u); });
7347}
7348
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007349Literal* CodeGeneratorARM::DeduplicateBootImageTypeLiteral(const DexFile& dex_file,
Andreas Gampea5b09a62016-11-17 15:21:22 -08007350 dex::TypeIndex type_index) {
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007351 return boot_image_type_patches_.GetOrCreate(
7352 TypeReference(&dex_file, type_index),
7353 [this]() { return __ NewLiteral<uint32_t>(/* placeholder */ 0u); });
7354}
7355
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007356Literal* CodeGeneratorARM::DeduplicateBootImageAddressLiteral(uint32_t address) {
7357 bool needs_patch = GetCompilerOptions().GetIncludePatchInformation();
7358 Uint32ToLiteralMap* map = needs_patch ? &boot_image_address_patches_ : &uint32_literals_;
7359 return DeduplicateUint32Literal(dchecked_integral_cast<uint32_t>(address), map);
7360}
7361
7362Literal* CodeGeneratorARM::DeduplicateDexCacheAddressLiteral(uint32_t address) {
7363 return DeduplicateUint32Literal(address, &uint32_literals_);
7364}
7365
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007366Literal* CodeGeneratorARM::DeduplicateJitStringLiteral(const DexFile& dex_file,
7367 uint32_t string_index) {
7368 jit_string_roots_.Overwrite(StringReference(&dex_file, string_index), /* placeholder */ 0u);
7369 return jit_string_patches_.GetOrCreate(
7370 StringReference(&dex_file, string_index),
7371 [this]() { return __ NewLiteral<uint32_t>(/* placeholder */ 0u); });
7372}
7373
Vladimir Markoaad75c62016-10-03 08:46:48 +00007374template <LinkerPatch (*Factory)(size_t, const DexFile*, uint32_t, uint32_t)>
7375inline void CodeGeneratorARM::EmitPcRelativeLinkerPatches(
7376 const ArenaDeque<PcRelativePatchInfo>& infos,
7377 ArenaVector<LinkerPatch>* linker_patches) {
7378 for (const PcRelativePatchInfo& info : infos) {
7379 const DexFile& dex_file = info.target_dex_file;
7380 size_t offset_or_index = info.offset_or_index;
7381 DCHECK(info.add_pc_label.IsBound());
7382 uint32_t add_pc_offset = dchecked_integral_cast<uint32_t>(info.add_pc_label.Position());
7383 // Add MOVW patch.
7384 DCHECK(info.movw_label.IsBound());
7385 uint32_t movw_offset = dchecked_integral_cast<uint32_t>(info.movw_label.Position());
7386 linker_patches->push_back(Factory(movw_offset, &dex_file, add_pc_offset, offset_or_index));
7387 // Add MOVT patch.
7388 DCHECK(info.movt_label.IsBound());
7389 uint32_t movt_offset = dchecked_integral_cast<uint32_t>(info.movt_label.Position());
7390 linker_patches->push_back(Factory(movt_offset, &dex_file, add_pc_offset, offset_or_index));
7391 }
7392}
7393
Vladimir Marko58155012015-08-19 12:49:41 +00007394void CodeGeneratorARM::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
7395 DCHECK(linker_patches->empty());
Vladimir Markob4536b72015-11-24 13:45:23 +00007396 size_t size =
7397 method_patches_.size() +
7398 call_patches_.size() +
7399 relative_call_patches_.size() +
Vladimir Markoaad75c62016-10-03 08:46:48 +00007400 /* MOVW+MOVT for each entry */ 2u * pc_relative_dex_cache_patches_.size() +
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007401 boot_image_string_patches_.size() +
Vladimir Markoaad75c62016-10-03 08:46:48 +00007402 /* MOVW+MOVT for each entry */ 2u * pc_relative_string_patches_.size() +
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007403 boot_image_type_patches_.size() +
Vladimir Markoaad75c62016-10-03 08:46:48 +00007404 /* MOVW+MOVT for each entry */ 2u * pc_relative_type_patches_.size() +
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007405 boot_image_address_patches_.size();
Vladimir Marko58155012015-08-19 12:49:41 +00007406 linker_patches->reserve(size);
7407 for (const auto& entry : method_patches_) {
7408 const MethodReference& target_method = entry.first;
7409 Literal* literal = entry.second;
7410 DCHECK(literal->GetLabel()->IsBound());
7411 uint32_t literal_offset = literal->GetLabel()->Position();
7412 linker_patches->push_back(LinkerPatch::MethodPatch(literal_offset,
7413 target_method.dex_file,
7414 target_method.dex_method_index));
7415 }
7416 for (const auto& entry : call_patches_) {
7417 const MethodReference& target_method = entry.first;
7418 Literal* literal = entry.second;
7419 DCHECK(literal->GetLabel()->IsBound());
7420 uint32_t literal_offset = literal->GetLabel()->Position();
7421 linker_patches->push_back(LinkerPatch::CodePatch(literal_offset,
7422 target_method.dex_file,
7423 target_method.dex_method_index));
7424 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00007425 for (const PatchInfo<Label>& info : relative_call_patches_) {
Vladimir Marko58155012015-08-19 12:49:41 +00007426 uint32_t literal_offset = info.label.Position();
Vladimir Markoaad75c62016-10-03 08:46:48 +00007427 linker_patches->push_back(
7428 LinkerPatch::RelativeCodePatch(literal_offset, &info.dex_file, info.index));
Vladimir Marko58155012015-08-19 12:49:41 +00007429 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00007430 EmitPcRelativeLinkerPatches<LinkerPatch::DexCacheArrayPatch>(pc_relative_dex_cache_patches_,
7431 linker_patches);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007432 for (const auto& entry : boot_image_string_patches_) {
7433 const StringReference& target_string = entry.first;
7434 Literal* literal = entry.second;
7435 DCHECK(literal->GetLabel()->IsBound());
7436 uint32_t literal_offset = literal->GetLabel()->Position();
7437 linker_patches->push_back(LinkerPatch::StringPatch(literal_offset,
7438 target_string.dex_file,
7439 target_string.string_index));
7440 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00007441 if (!GetCompilerOptions().IsBootImage()) {
7442 EmitPcRelativeLinkerPatches<LinkerPatch::StringBssEntryPatch>(pc_relative_string_patches_,
7443 linker_patches);
7444 } else {
7445 EmitPcRelativeLinkerPatches<LinkerPatch::RelativeStringPatch>(pc_relative_string_patches_,
7446 linker_patches);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007447 }
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007448 for (const auto& entry : boot_image_type_patches_) {
7449 const TypeReference& target_type = entry.first;
7450 Literal* literal = entry.second;
7451 DCHECK(literal->GetLabel()->IsBound());
7452 uint32_t literal_offset = literal->GetLabel()->Position();
7453 linker_patches->push_back(LinkerPatch::TypePatch(literal_offset,
7454 target_type.dex_file,
Andreas Gampea5b09a62016-11-17 15:21:22 -08007455 target_type.type_index.index_));
Vladimir Markodbb7f5b2016-03-30 13:23:58 +01007456 }
Vladimir Markoaad75c62016-10-03 08:46:48 +00007457 EmitPcRelativeLinkerPatches<LinkerPatch::RelativeTypePatch>(pc_relative_type_patches_,
7458 linker_patches);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007459 for (const auto& entry : boot_image_address_patches_) {
7460 DCHECK(GetCompilerOptions().GetIncludePatchInformation());
7461 Literal* literal = entry.second;
7462 DCHECK(literal->GetLabel()->IsBound());
7463 uint32_t literal_offset = literal->GetLabel()->Position();
7464 linker_patches->push_back(LinkerPatch::RecordPosition(literal_offset));
7465 }
7466}
7467
7468Literal* CodeGeneratorARM::DeduplicateUint32Literal(uint32_t value, Uint32ToLiteralMap* map) {
7469 return map->GetOrCreate(
7470 value,
7471 [this, value]() { return __ NewLiteral<uint32_t>(value); });
Vladimir Marko58155012015-08-19 12:49:41 +00007472}
7473
7474Literal* CodeGeneratorARM::DeduplicateMethodLiteral(MethodReference target_method,
7475 MethodToLiteralMap* map) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007476 return map->GetOrCreate(
7477 target_method,
7478 [this]() { return __ NewLiteral<uint32_t>(/* placeholder */ 0u); });
Vladimir Marko58155012015-08-19 12:49:41 +00007479}
7480
7481Literal* CodeGeneratorARM::DeduplicateMethodAddressLiteral(MethodReference target_method) {
7482 return DeduplicateMethodLiteral(target_method, &method_patches_);
7483}
7484
7485Literal* CodeGeneratorARM::DeduplicateMethodCodeLiteral(MethodReference target_method) {
7486 return DeduplicateMethodLiteral(target_method, &call_patches_);
7487}
7488
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03007489void LocationsBuilderARM::VisitMultiplyAccumulate(HMultiplyAccumulate* instr) {
7490 LocationSummary* locations =
7491 new (GetGraph()->GetArena()) LocationSummary(instr, LocationSummary::kNoCall);
7492 locations->SetInAt(HMultiplyAccumulate::kInputAccumulatorIndex,
7493 Location::RequiresRegister());
7494 locations->SetInAt(HMultiplyAccumulate::kInputMulLeftIndex, Location::RequiresRegister());
7495 locations->SetInAt(HMultiplyAccumulate::kInputMulRightIndex, Location::RequiresRegister());
7496 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
7497}
7498
7499void InstructionCodeGeneratorARM::VisitMultiplyAccumulate(HMultiplyAccumulate* instr) {
7500 LocationSummary* locations = instr->GetLocations();
7501 Register res = locations->Out().AsRegister<Register>();
7502 Register accumulator =
7503 locations->InAt(HMultiplyAccumulate::kInputAccumulatorIndex).AsRegister<Register>();
7504 Register mul_left =
7505 locations->InAt(HMultiplyAccumulate::kInputMulLeftIndex).AsRegister<Register>();
7506 Register mul_right =
7507 locations->InAt(HMultiplyAccumulate::kInputMulRightIndex).AsRegister<Register>();
7508
7509 if (instr->GetOpKind() == HInstruction::kAdd) {
7510 __ mla(res, mul_left, mul_right, accumulator);
7511 } else {
7512 __ mls(res, mul_left, mul_right, accumulator);
7513 }
7514}
7515
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01007516void LocationsBuilderARM::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00007517 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00007518 LOG(FATAL) << "Unreachable";
7519}
7520
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01007521void InstructionCodeGeneratorARM::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00007522 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00007523 LOG(FATAL) << "Unreachable";
7524}
7525
Mark Mendellfe57faa2015-09-18 09:26:15 -04007526// Simple implementation of packed switch - generate cascaded compare/jumps.
7527void LocationsBuilderARM::VisitPackedSwitch(HPackedSwitch* switch_instr) {
7528 LocationSummary* locations =
7529 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
7530 locations->SetInAt(0, Location::RequiresRegister());
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007531 if (switch_instr->GetNumEntries() > kPackedSwitchCompareJumpThreshold &&
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007532 codegen_->GetAssembler()->IsThumb()) {
7533 locations->AddTemp(Location::RequiresRegister()); // We need a temp for the table base.
7534 if (switch_instr->GetStartValue() != 0) {
7535 locations->AddTemp(Location::RequiresRegister()); // We need a temp for the bias.
7536 }
7537 }
Mark Mendellfe57faa2015-09-18 09:26:15 -04007538}
7539
7540void InstructionCodeGeneratorARM::VisitPackedSwitch(HPackedSwitch* switch_instr) {
7541 int32_t lower_bound = switch_instr->GetStartValue();
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007542 uint32_t num_entries = switch_instr->GetNumEntries();
Mark Mendellfe57faa2015-09-18 09:26:15 -04007543 LocationSummary* locations = switch_instr->GetLocations();
7544 Register value_reg = locations->InAt(0).AsRegister<Register>();
7545 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
7546
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007547 if (num_entries <= kPackedSwitchCompareJumpThreshold || !codegen_->GetAssembler()->IsThumb()) {
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007548 // Create a series of compare/jumps.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007549 Register temp_reg = IP;
7550 // Note: It is fine for the below AddConstantSetFlags() using IP register to temporarily store
7551 // the immediate, because IP is used as the destination register. For the other
7552 // AddConstantSetFlags() and GenerateCompareWithImmediate(), the immediate values are constant,
7553 // and they can be encoded in the instruction without making use of IP register.
7554 __ AddConstantSetFlags(temp_reg, value_reg, -lower_bound);
7555
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007556 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007557 // Jump to successors[0] if value == lower_bound.
7558 __ b(codegen_->GetLabelOf(successors[0]), EQ);
7559 int32_t last_index = 0;
7560 for (; num_entries - last_index > 2; last_index += 2) {
7561 __ AddConstantSetFlags(temp_reg, temp_reg, -2);
7562 // Jump to successors[last_index + 1] if value < case_value[last_index + 2].
7563 __ b(codegen_->GetLabelOf(successors[last_index + 1]), LO);
7564 // Jump to successors[last_index + 2] if value == case_value[last_index + 2].
7565 __ b(codegen_->GetLabelOf(successors[last_index + 2]), EQ);
7566 }
7567 if (num_entries - last_index == 2) {
7568 // The last missing case_value.
Vladimir Markoac6ac102015-12-17 12:14:00 +00007569 __ CmpConstant(temp_reg, 1);
Vladimir Markof3e0ee22015-12-17 15:23:13 +00007570 __ b(codegen_->GetLabelOf(successors[last_index + 1]), EQ);
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007571 }
Mark Mendellfe57faa2015-09-18 09:26:15 -04007572
Andreas Gampe7cffc3b2015-10-19 21:31:53 -07007573 // And the default for any other value.
7574 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
7575 __ b(codegen_->GetLabelOf(default_block));
7576 }
7577 } else {
7578 // Create a table lookup.
7579 Register temp_reg = locations->GetTemp(0).AsRegister<Register>();
7580
7581 // Materialize a pointer to the switch table
7582 std::vector<Label*> labels(num_entries);
7583 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
7584 for (uint32_t i = 0; i < num_entries; i++) {
7585 labels[i] = codegen_->GetLabelOf(successors[i]);
7586 }
7587 JumpTable* table = __ CreateJumpTable(std::move(labels), temp_reg);
7588
7589 // Remove the bias.
7590 Register key_reg;
7591 if (lower_bound != 0) {
7592 key_reg = locations->GetTemp(1).AsRegister<Register>();
7593 __ AddConstant(key_reg, value_reg, -lower_bound);
7594 } else {
7595 key_reg = value_reg;
7596 }
7597
7598 // Check whether the value is in the table, jump to default block if not.
7599 __ CmpConstant(key_reg, num_entries - 1);
7600 __ b(codegen_->GetLabelOf(default_block), Condition::HI);
7601
7602 // Load the displacement from the table.
7603 __ ldr(temp_reg, Address(temp_reg, key_reg, Shift::LSL, 2));
7604
7605 // Dispatch is a direct add to the PC (for Thumb2).
7606 __ EmitJumpTableDispatch(table, temp_reg);
Mark Mendellfe57faa2015-09-18 09:26:15 -04007607 }
7608}
7609
Vladimir Markob4536b72015-11-24 13:45:23 +00007610void LocationsBuilderARM::VisitArmDexCacheArraysBase(HArmDexCacheArraysBase* base) {
7611 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(base);
7612 locations->SetOut(Location::RequiresRegister());
Vladimir Markob4536b72015-11-24 13:45:23 +00007613}
7614
7615void InstructionCodeGeneratorARM::VisitArmDexCacheArraysBase(HArmDexCacheArraysBase* base) {
7616 Register base_reg = base->GetLocations()->Out().AsRegister<Register>();
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007617 CodeGeneratorARM::PcRelativePatchInfo* labels =
7618 codegen_->NewPcRelativeDexCacheArrayPatch(base->GetDexFile(), base->GetElementOffset());
Vladimir Markob4536b72015-11-24 13:45:23 +00007619 __ BindTrackedLabel(&labels->movw_label);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007620 __ movw(base_reg, /* placeholder */ 0u);
Vladimir Markob4536b72015-11-24 13:45:23 +00007621 __ BindTrackedLabel(&labels->movt_label);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00007622 __ movt(base_reg, /* placeholder */ 0u);
Vladimir Markob4536b72015-11-24 13:45:23 +00007623 __ BindTrackedLabel(&labels->add_pc_label);
7624 __ add(base_reg, base_reg, ShifterOperand(PC));
7625}
7626
Andreas Gampe85b62f22015-09-09 13:15:38 -07007627void CodeGeneratorARM::MoveFromReturnRegister(Location trg, Primitive::Type type) {
7628 if (!trg.IsValid()) {
Roland Levillainc9285912015-12-18 10:38:42 +00007629 DCHECK_EQ(type, Primitive::kPrimVoid);
Andreas Gampe85b62f22015-09-09 13:15:38 -07007630 return;
7631 }
7632
7633 DCHECK_NE(type, Primitive::kPrimVoid);
7634
7635 Location return_loc = InvokeDexCallingConventionVisitorARM().GetReturnLocation(type);
7636 if (return_loc.Equals(trg)) {
7637 return;
7638 }
7639
7640 // TODO: Consider pairs in the parallel move resolver, then this could be nicely merged
7641 // with the last branch.
7642 if (type == Primitive::kPrimLong) {
7643 HParallelMove parallel_move(GetGraph()->GetArena());
7644 parallel_move.AddMove(return_loc.ToLow(), trg.ToLow(), Primitive::kPrimInt, nullptr);
7645 parallel_move.AddMove(return_loc.ToHigh(), trg.ToHigh(), Primitive::kPrimInt, nullptr);
7646 GetMoveResolver()->EmitNativeCode(&parallel_move);
7647 } else if (type == Primitive::kPrimDouble) {
7648 HParallelMove parallel_move(GetGraph()->GetArena());
7649 parallel_move.AddMove(return_loc.ToLow(), trg.ToLow(), Primitive::kPrimFloat, nullptr);
7650 parallel_move.AddMove(return_loc.ToHigh(), trg.ToHigh(), Primitive::kPrimFloat, nullptr);
7651 GetMoveResolver()->EmitNativeCode(&parallel_move);
7652 } else {
7653 // Let the parallel move resolver take care of all of this.
7654 HParallelMove parallel_move(GetGraph()->GetArena());
7655 parallel_move.AddMove(return_loc, trg, type, nullptr);
7656 GetMoveResolver()->EmitNativeCode(&parallel_move);
7657 }
7658}
7659
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00007660void LocationsBuilderARM::VisitClassTableGet(HClassTableGet* instruction) {
7661 LocationSummary* locations =
7662 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
7663 locations->SetInAt(0, Location::RequiresRegister());
7664 locations->SetOut(Location::RequiresRegister());
7665}
7666
7667void InstructionCodeGeneratorARM::VisitClassTableGet(HClassTableGet* instruction) {
7668 LocationSummary* locations = instruction->GetLocations();
Vladimir Markoa1de9182016-02-25 11:37:38 +00007669 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01007670 uint32_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00007671 instruction->GetIndex(), kArmPointerSize).SizeValue();
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01007672 __ LoadFromOffset(kLoadWord,
7673 locations->Out().AsRegister<Register>(),
7674 locations->InAt(0).AsRegister<Register>(),
7675 method_offset);
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00007676 } else {
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01007677 uint32_t method_offset = static_cast<uint32_t>(ImTable::OffsetOfElement(
Matthew Gharrity465ecc82016-07-19 21:32:52 +00007678 instruction->GetIndex(), kArmPointerSize));
Nicolas Geoffrayff484b92016-07-13 14:13:48 +01007679 __ LoadFromOffset(kLoadWord,
7680 locations->Out().AsRegister<Register>(),
7681 locations->InAt(0).AsRegister<Register>(),
7682 mirror::Class::ImtPtrOffset(kArmPointerSize).Uint32Value());
7683 __ LoadFromOffset(kLoadWord,
7684 locations->Out().AsRegister<Register>(),
7685 locations->Out().AsRegister<Register>(),
7686 method_offset);
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00007687 }
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00007688}
7689
Nicolas Geoffray132d8362016-11-16 09:19:42 +00007690void CodeGeneratorARM::EmitJitRootPatches(uint8_t* code, const uint8_t* roots_data) {
7691 for (const auto& entry : jit_string_patches_) {
7692 const auto& it = jit_string_roots_.find(entry.first);
7693 DCHECK(it != jit_string_roots_.end());
7694 size_t index_in_table = it->second;
7695 Literal* literal = entry.second;
7696 DCHECK(literal->GetLabel()->IsBound());
7697 uint32_t literal_offset = literal->GetLabel()->Position();
7698 uintptr_t address =
7699 reinterpret_cast<uintptr_t>(roots_data) + index_in_table * sizeof(GcRoot<mirror::Object>);
7700 uint8_t* data = code + literal_offset;
7701 reinterpret_cast<uint32_t*>(data)[0] = dchecked_integral_cast<uint32_t>(address);
7702 }
7703}
7704
Roland Levillain4d027112015-07-01 15:41:14 +01007705#undef __
7706#undef QUICK_ENTRY_POINT
7707
Nicolas Geoffrayd4dd2552014-02-28 10:23:58 +00007708} // namespace arm
7709} // namespace art