blob: 5094f6761a87dd76ac18dbf5abf23268c18cc76b [file] [log] [blame]
Alexandre Rames5319def2014-10-23 10:03:10 +01001/*
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_arm64.h"
18
Serban Constantinescu579885a2015-02-22 20:51:33 +000019#include "arch/arm64/instruction_set_features_arm64.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"
Andreas Gampe878d58c2015-01-15 23:24:00 -080022#include "common_arm64.h"
Vladimir Marko58155012015-08-19 12:49:41 +000023#include "compiled_method.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010024#include "entrypoints/quick/quick_entrypoints.h"
Andreas Gampe1cc7dba2014-12-17 18:43:01 -080025#include "entrypoints/quick/quick_entrypoints_enum.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010026#include "gc/accounting/card_table.h"
Andreas Gampe878d58c2015-01-15 23:24:00 -080027#include "intrinsics.h"
28#include "intrinsics_arm64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010029#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070030#include "mirror/class-inl.h"
Calin Juravlecd6dffe2015-01-08 17:35:35 +000031#include "offsets.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010032#include "thread.h"
33#include "utils/arm64/assembler_arm64.h"
34#include "utils/assembler.h"
35#include "utils/stack_checks.h"
36
37
38using namespace vixl; // NOLINT(build/namespaces)
39
40#ifdef __
41#error "ARM64 Codegen VIXL macro-assembler macro already defined."
42#endif
43
Alexandre Rames5319def2014-10-23 10:03:10 +010044namespace art {
45
46namespace arm64 {
47
Andreas Gampe878d58c2015-01-15 23:24:00 -080048using helpers::CPURegisterFrom;
49using helpers::DRegisterFrom;
50using helpers::FPRegisterFrom;
51using helpers::HeapOperand;
52using helpers::HeapOperandFrom;
53using helpers::InputCPURegisterAt;
54using helpers::InputFPRegisterAt;
55using helpers::InputRegisterAt;
56using helpers::InputOperandAt;
57using helpers::Int64ConstantFrom;
Andreas Gampe878d58c2015-01-15 23:24:00 -080058using helpers::LocationFrom;
59using helpers::OperandFromMemOperand;
60using helpers::OutputCPURegister;
61using helpers::OutputFPRegister;
62using helpers::OutputRegister;
63using helpers::RegisterFrom;
64using helpers::StackOperandFrom;
65using helpers::VIXLRegCodeFromART;
66using helpers::WRegisterFrom;
67using helpers::XRegisterFrom;
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +000068using helpers::ARM64EncodableConstantOrRegister;
Zheng Xuda403092015-04-24 17:35:39 +080069using helpers::ArtVixlRegCodeCoherentForRegSet;
Andreas Gampe878d58c2015-01-15 23:24:00 -080070
Alexandre Rames5319def2014-10-23 10:03:10 +010071static constexpr int kCurrentMethodStackOffset = 0;
72
Alexandre Rames5319def2014-10-23 10:03:10 +010073inline Condition ARM64Condition(IfCondition cond) {
74 switch (cond) {
75 case kCondEQ: return eq;
76 case kCondNE: return ne;
77 case kCondLT: return lt;
78 case kCondLE: return le;
79 case kCondGT: return gt;
80 case kCondGE: return ge;
Alexandre Rames5319def2014-10-23 10:03:10 +010081 }
Roland Levillain7f63c522015-07-13 15:54:55 +000082 LOG(FATAL) << "Unreachable";
83 UNREACHABLE();
Alexandre Rames5319def2014-10-23 10:03:10 +010084}
85
Alexandre Ramesa89086e2014-11-07 17:13:25 +000086Location ARM64ReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +000087 // Note that in practice, `LocationFrom(x0)` and `LocationFrom(w0)` create the
88 // same Location object, and so do `LocationFrom(d0)` and `LocationFrom(s0)`,
89 // but we use the exact registers for clarity.
90 if (return_type == Primitive::kPrimFloat) {
91 return LocationFrom(s0);
92 } else if (return_type == Primitive::kPrimDouble) {
93 return LocationFrom(d0);
94 } else if (return_type == Primitive::kPrimLong) {
95 return LocationFrom(x0);
Nicolas Geoffray925e5622015-06-03 12:23:32 +010096 } else if (return_type == Primitive::kPrimVoid) {
97 return Location::NoLocation();
Alexandre Ramesa89086e2014-11-07 17:13:25 +000098 } else {
99 return LocationFrom(w0);
100 }
101}
102
Alexandre Rames5319def2014-10-23 10:03:10 +0100103Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000104 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100105}
106
Alexandre Rames67555f72014-11-18 10:55:16 +0000107#define __ down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler()->
108#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArm64WordSize, x).Int32Value()
Alexandre Rames5319def2014-10-23 10:03:10 +0100109
Zheng Xuda403092015-04-24 17:35:39 +0800110// Calculate memory accessing operand for save/restore live registers.
111static void SaveRestoreLiveRegistersHelper(CodeGenerator* codegen,
112 RegisterSet* register_set,
113 int64_t spill_offset,
114 bool is_save) {
115 DCHECK(ArtVixlRegCodeCoherentForRegSet(register_set->GetCoreRegisters(),
116 codegen->GetNumberOfCoreRegisters(),
117 register_set->GetFloatingPointRegisters(),
118 codegen->GetNumberOfFloatingPointRegisters()));
119
120 CPURegList core_list = CPURegList(CPURegister::kRegister, kXRegSize,
121 register_set->GetCoreRegisters() & (~callee_saved_core_registers.list()));
122 CPURegList fp_list = CPURegList(CPURegister::kFPRegister, kDRegSize,
123 register_set->GetFloatingPointRegisters() & (~callee_saved_fp_registers.list()));
124
125 MacroAssembler* masm = down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler();
126 UseScratchRegisterScope temps(masm);
127
128 Register base = masm->StackPointer();
129 int64_t core_spill_size = core_list.TotalSizeInBytes();
130 int64_t fp_spill_size = fp_list.TotalSizeInBytes();
131 int64_t reg_size = kXRegSizeInBytes;
132 int64_t max_ls_pair_offset = spill_offset + core_spill_size + fp_spill_size - 2 * reg_size;
133 uint32_t ls_access_size = WhichPowerOf2(reg_size);
134 if (((core_list.Count() > 1) || (fp_list.Count() > 1)) &&
135 !masm->IsImmLSPair(max_ls_pair_offset, ls_access_size)) {
136 // If the offset does not fit in the instruction's immediate field, use an alternate register
137 // to compute the base address(float point registers spill base address).
138 Register new_base = temps.AcquireSameSizeAs(base);
139 __ Add(new_base, base, Operand(spill_offset + core_spill_size));
140 base = new_base;
141 spill_offset = -core_spill_size;
142 int64_t new_max_ls_pair_offset = fp_spill_size - 2 * reg_size;
143 DCHECK(masm->IsImmLSPair(spill_offset, ls_access_size));
144 DCHECK(masm->IsImmLSPair(new_max_ls_pair_offset, ls_access_size));
145 }
146
147 if (is_save) {
148 __ StoreCPURegList(core_list, MemOperand(base, spill_offset));
149 __ StoreCPURegList(fp_list, MemOperand(base, spill_offset + core_spill_size));
150 } else {
151 __ LoadCPURegList(core_list, MemOperand(base, spill_offset));
152 __ LoadCPURegList(fp_list, MemOperand(base, spill_offset + core_spill_size));
153 }
154}
155
156void SlowPathCodeARM64::SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
157 RegisterSet* register_set = locations->GetLiveRegisters();
158 size_t stack_offset = codegen->GetFirstRegisterSlotInSlowPath();
159 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
160 if (!codegen->IsCoreCalleeSaveRegister(i) && register_set->ContainsCoreRegister(i)) {
161 // If the register holds an object, update the stack mask.
162 if (locations->RegisterContainsObject(i)) {
163 locations->SetStackBit(stack_offset / kVRegSize);
164 }
165 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
166 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
167 saved_core_stack_offsets_[i] = stack_offset;
168 stack_offset += kXRegSizeInBytes;
169 }
170 }
171
172 for (size_t i = 0, e = codegen->GetNumberOfFloatingPointRegisters(); i < e; ++i) {
173 if (!codegen->IsFloatingPointCalleeSaveRegister(i) &&
174 register_set->ContainsFloatingPointRegister(i)) {
175 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
176 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
177 saved_fpu_stack_offsets_[i] = stack_offset;
178 stack_offset += kDRegSizeInBytes;
179 }
180 }
181
182 SaveRestoreLiveRegistersHelper(codegen, register_set,
183 codegen->GetFirstRegisterSlotInSlowPath(), true /* is_save */);
184}
185
186void SlowPathCodeARM64::RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
187 RegisterSet* register_set = locations->GetLiveRegisters();
188 SaveRestoreLiveRegistersHelper(codegen, register_set,
189 codegen->GetFirstRegisterSlotInSlowPath(), false /* is_save */);
190}
191
Alexandre Rames5319def2014-10-23 10:03:10 +0100192class BoundsCheckSlowPathARM64 : public SlowPathCodeARM64 {
193 public:
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100194 explicit BoundsCheckSlowPathARM64(HBoundsCheck* instruction) : instruction_(instruction) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100195
Alexandre Rames67555f72014-11-18 10:55:16 +0000196 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100197 LocationSummary* locations = instruction_->GetLocations();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000198 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100199
Alexandre Rames5319def2014-10-23 10:03:10 +0100200 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000201 if (instruction_->CanThrowIntoCatchBlock()) {
202 // Live registers will be restored in the catch block if caught.
203 SaveLiveRegisters(codegen, instruction_->GetLocations());
204 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000205 // We're moving two locations to locations that could overlap, so we need a parallel
206 // move resolver.
207 InvokeRuntimeCallingConvention calling_convention;
208 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100209 locations->InAt(0), LocationFrom(calling_convention.GetRegisterAt(0)), Primitive::kPrimInt,
210 locations->InAt(1), LocationFrom(calling_convention.GetRegisterAt(1)), Primitive::kPrimInt);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000211 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000212 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800213 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100214 }
215
Alexandre Rames8158f282015-08-07 10:26:17 +0100216 bool IsFatal() const OVERRIDE { return true; }
217
Alexandre Rames9931f312015-06-19 14:47:01 +0100218 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathARM64"; }
219
Alexandre Rames5319def2014-10-23 10:03:10 +0100220 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000221 HBoundsCheck* const instruction_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000222
Alexandre Rames5319def2014-10-23 10:03:10 +0100223 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM64);
224};
225
Alexandre Rames67555f72014-11-18 10:55:16 +0000226class DivZeroCheckSlowPathARM64 : public SlowPathCodeARM64 {
227 public:
228 explicit DivZeroCheckSlowPathARM64(HDivZeroCheck* instruction) : instruction_(instruction) {}
229
230 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
231 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
232 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000233 if (instruction_->CanThrowIntoCatchBlock()) {
234 // Live registers will be restored in the catch block if caught.
235 SaveLiveRegisters(codegen, instruction_->GetLocations());
236 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000237 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000238 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800239 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000240 }
241
Alexandre Rames8158f282015-08-07 10:26:17 +0100242 bool IsFatal() const OVERRIDE { return true; }
243
Alexandre Rames9931f312015-06-19 14:47:01 +0100244 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathARM64"; }
245
Alexandre Rames67555f72014-11-18 10:55:16 +0000246 private:
247 HDivZeroCheck* const instruction_;
248 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM64);
249};
250
251class LoadClassSlowPathARM64 : public SlowPathCodeARM64 {
252 public:
253 LoadClassSlowPathARM64(HLoadClass* cls,
254 HInstruction* at,
255 uint32_t dex_pc,
256 bool do_clinit)
257 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
258 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
259 }
260
261 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
262 LocationSummary* locations = at_->GetLocations();
263 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
264
265 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000266 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000267
268 InvokeRuntimeCallingConvention calling_convention;
269 __ Mov(calling_convention.GetRegisterAt(0).W(), cls_->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000270 int32_t entry_point_offset = do_clinit_ ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
271 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000272 arm64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800273 if (do_clinit_) {
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100274 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800275 } else {
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100276 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800277 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000278
279 // Move the class to the desired location.
280 Location out = locations->Out();
281 if (out.IsValid()) {
282 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
283 Primitive::Type type = at_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000284 arm64_codegen->MoveLocation(out, calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000285 }
286
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000287 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000288 __ B(GetExitLabel());
289 }
290
Alexandre Rames9931f312015-06-19 14:47:01 +0100291 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathARM64"; }
292
Alexandre Rames67555f72014-11-18 10:55:16 +0000293 private:
294 // The class this slow path will load.
295 HLoadClass* const cls_;
296
297 // The instruction where this slow path is happening.
298 // (Might be the load class or an initialization check).
299 HInstruction* const at_;
300
301 // The dex PC of `at_`.
302 const uint32_t dex_pc_;
303
304 // Whether to initialize the class.
305 const bool do_clinit_;
306
307 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM64);
308};
309
310class LoadStringSlowPathARM64 : public SlowPathCodeARM64 {
311 public:
312 explicit LoadStringSlowPathARM64(HLoadString* instruction) : instruction_(instruction) {}
313
314 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
315 LocationSummary* locations = instruction_->GetLocations();
316 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
317 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
318
319 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000320 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000321
322 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800323 __ Mov(calling_convention.GetRegisterAt(0).W(), instruction_->GetStringIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000324 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000325 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100326 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000327 Primitive::Type type = instruction_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000328 arm64_codegen->MoveLocation(locations->Out(), calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000329
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000330 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000331 __ B(GetExitLabel());
332 }
333
Alexandre Rames9931f312015-06-19 14:47:01 +0100334 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathARM64"; }
335
Alexandre Rames67555f72014-11-18 10:55:16 +0000336 private:
337 HLoadString* const instruction_;
338
339 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM64);
340};
341
Alexandre Rames5319def2014-10-23 10:03:10 +0100342class NullCheckSlowPathARM64 : public SlowPathCodeARM64 {
343 public:
344 explicit NullCheckSlowPathARM64(HNullCheck* instr) : instruction_(instr) {}
345
Alexandre Rames67555f72014-11-18 10:55:16 +0000346 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
347 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100348 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000349 if (instruction_->CanThrowIntoCatchBlock()) {
350 // Live registers will be restored in the catch block if caught.
351 SaveLiveRegisters(codegen, instruction_->GetLocations());
352 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000353 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000354 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800355 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100356 }
357
Alexandre Rames8158f282015-08-07 10:26:17 +0100358 bool IsFatal() const OVERRIDE { return true; }
359
Alexandre Rames9931f312015-06-19 14:47:01 +0100360 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathARM64"; }
361
Alexandre Rames5319def2014-10-23 10:03:10 +0100362 private:
363 HNullCheck* const instruction_;
364
365 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM64);
366};
367
368class SuspendCheckSlowPathARM64 : public SlowPathCodeARM64 {
369 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100370 SuspendCheckSlowPathARM64(HSuspendCheck* instruction, HBasicBlock* successor)
Alexandre Rames5319def2014-10-23 10:03:10 +0100371 : instruction_(instruction), successor_(successor) {}
372
Alexandre Rames67555f72014-11-18 10:55:16 +0000373 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
374 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100375 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000376 SaveLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000377 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000378 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800379 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000380 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000381 if (successor_ == nullptr) {
382 __ B(GetReturnLabel());
383 } else {
384 __ B(arm64_codegen->GetLabelOf(successor_));
385 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100386 }
387
388 vixl::Label* GetReturnLabel() {
389 DCHECK(successor_ == nullptr);
390 return &return_label_;
391 }
392
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100393 HBasicBlock* GetSuccessor() const {
394 return successor_;
395 }
396
Alexandre Rames9931f312015-06-19 14:47:01 +0100397 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathARM64"; }
398
Alexandre Rames5319def2014-10-23 10:03:10 +0100399 private:
400 HSuspendCheck* const instruction_;
401 // If not null, the block to branch to after the suspend check.
402 HBasicBlock* const successor_;
403
404 // If `successor_` is null, the label to branch to after the suspend check.
405 vixl::Label return_label_;
406
407 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM64);
408};
409
Alexandre Rames67555f72014-11-18 10:55:16 +0000410class TypeCheckSlowPathARM64 : public SlowPathCodeARM64 {
411 public:
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100412 explicit TypeCheckSlowPathARM64(HInstruction* instruction) : instruction_(instruction) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000413
414 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000415 LocationSummary* locations = instruction_->GetLocations();
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100416 Location class_to_check = locations->InAt(1);
417 Location object_class = instruction_->IsCheckCast() ? locations->GetTemp(0)
418 : locations->Out();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000419 DCHECK(instruction_->IsCheckCast()
420 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
421 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100422 uint32_t dex_pc = instruction_->GetDexPc();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000423
Alexandre Rames67555f72014-11-18 10:55:16 +0000424 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000425 SaveLiveRegisters(codegen, locations);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000426
427 // We're moving two locations to locations that could overlap, so we need a parallel
428 // move resolver.
429 InvokeRuntimeCallingConvention calling_convention;
430 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100431 class_to_check, LocationFrom(calling_convention.GetRegisterAt(0)), Primitive::kPrimNot,
432 object_class, LocationFrom(calling_convention.GetRegisterAt(1)), Primitive::kPrimNot);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000433
434 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000435 arm64_codegen->InvokeRuntime(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100436 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc, this);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000437 Primitive::Type ret_type = instruction_->GetType();
438 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
439 arm64_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800440 CheckEntrypointTypes<kQuickInstanceofNonTrivial, uint32_t,
441 const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000442 } else {
443 DCHECK(instruction_->IsCheckCast());
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100444 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800445 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000446 }
447
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000448 RestoreLiveRegisters(codegen, locations);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000449 __ B(GetExitLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +0000450 }
451
Alexandre Rames9931f312015-06-19 14:47:01 +0100452 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathARM64"; }
453
Alexandre Rames67555f72014-11-18 10:55:16 +0000454 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000455 HInstruction* const instruction_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000456
Alexandre Rames67555f72014-11-18 10:55:16 +0000457 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM64);
458};
459
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700460class DeoptimizationSlowPathARM64 : public SlowPathCodeARM64 {
461 public:
462 explicit DeoptimizationSlowPathARM64(HInstruction* instruction)
463 : instruction_(instruction) {}
464
465 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
466 __ Bind(GetEntryLabel());
467 SaveLiveRegisters(codegen, instruction_->GetLocations());
468 DCHECK(instruction_->IsDeoptimize());
469 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
470 uint32_t dex_pc = deoptimize->GetDexPc();
471 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
472 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
473 }
474
Alexandre Rames9931f312015-06-19 14:47:01 +0100475 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathARM64"; }
476
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700477 private:
478 HInstruction* const instruction_;
479 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM64);
480};
481
Alexandre Rames5319def2014-10-23 10:03:10 +0100482#undef __
483
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100484Location InvokeDexCallingConventionVisitorARM64::GetNextLocation(Primitive::Type type) {
Alexandre Rames5319def2014-10-23 10:03:10 +0100485 Location next_location;
486 if (type == Primitive::kPrimVoid) {
487 LOG(FATAL) << "Unreachable type " << type;
488 }
489
Alexandre Rames542361f2015-01-29 16:57:31 +0000490 if (Primitive::IsFloatingPointType(type) &&
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100491 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) {
492 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++));
Alexandre Rames542361f2015-01-29 16:57:31 +0000493 } else if (!Primitive::IsFloatingPointType(type) &&
494 (gp_index_ < calling_convention.GetNumberOfRegisters())) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000495 next_location = LocationFrom(calling_convention.GetRegisterAt(gp_index_++));
496 } else {
497 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
Alexandre Rames542361f2015-01-29 16:57:31 +0000498 next_location = Primitive::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
499 : Location::StackSlot(stack_offset);
Alexandre Rames5319def2014-10-23 10:03:10 +0100500 }
501
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000502 // Space on the stack is reserved for all arguments.
Alexandre Rames542361f2015-01-29 16:57:31 +0000503 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
Alexandre Rames5319def2014-10-23 10:03:10 +0100504 return next_location;
505}
506
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100507Location InvokeDexCallingConventionVisitorARM64::GetMethodLocation() const {
Nicolas Geoffray38207af2015-06-01 15:46:22 +0100508 return LocationFrom(kArtMethodRegister);
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100509}
510
Serban Constantinescu579885a2015-02-22 20:51:33 +0000511CodeGeneratorARM64::CodeGeneratorARM64(HGraph* graph,
512 const Arm64InstructionSetFeatures& isa_features,
513 const CompilerOptions& compiler_options)
Alexandre Rames5319def2014-10-23 10:03:10 +0100514 : CodeGenerator(graph,
515 kNumberOfAllocatableRegisters,
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000516 kNumberOfAllocatableFPRegisters,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000517 kNumberOfAllocatableRegisterPairs,
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000518 callee_saved_core_registers.list(),
519 callee_saved_fp_registers.list(),
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000520 compiler_options),
Alexandre Rames5319def2014-10-23 10:03:10 +0100521 block_labels_(nullptr),
522 location_builder_(graph, this),
Alexandre Rames3e69f162014-12-10 10:36:50 +0000523 instruction_visitor_(graph, this),
Serban Constantinescu579885a2015-02-22 20:51:33 +0000524 move_resolver_(graph->GetArena(), this),
Vladimir Marko58155012015-08-19 12:49:41 +0000525 isa_features_(isa_features),
526 uint64_literals_(std::less<uint64_t>(), graph->GetArena()->Adapter()),
527 method_patches_(MethodReferenceComparator(), graph->GetArena()->Adapter()),
528 call_patches_(MethodReferenceComparator(), graph->GetArena()->Adapter()),
529 relative_call_patches_(graph->GetArena()->Adapter()),
530 pc_rel_dex_cache_patches_(graph->GetArena()->Adapter()) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000531 // Save the link register (containing the return address) to mimic Quick.
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000532 AddAllocatedRegister(LocationFrom(lr));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000533}
Alexandre Rames5319def2014-10-23 10:03:10 +0100534
Alexandre Rames67555f72014-11-18 10:55:16 +0000535#undef __
536#define __ GetVIXLAssembler()->
Alexandre Rames5319def2014-10-23 10:03:10 +0100537
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000538void CodeGeneratorARM64::Finalize(CodeAllocator* allocator) {
539 // Ensure we emit the literal pool.
540 __ FinalizeCode();
Vladimir Marko58155012015-08-19 12:49:41 +0000541
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000542 CodeGenerator::Finalize(allocator);
543}
544
Zheng Xuad4450e2015-04-17 18:48:56 +0800545void ParallelMoveResolverARM64::PrepareForEmitNativeCode() {
546 // Note: There are 6 kinds of moves:
547 // 1. constant -> GPR/FPR (non-cycle)
548 // 2. constant -> stack (non-cycle)
549 // 3. GPR/FPR -> GPR/FPR
550 // 4. GPR/FPR -> stack
551 // 5. stack -> GPR/FPR
552 // 6. stack -> stack (non-cycle)
553 // Case 1, 2 and 6 should never be included in a dependency cycle on ARM64. For case 3, 4, and 5
554 // VIXL uses at most 1 GPR. VIXL has 2 GPR and 1 FPR temps, and there should be no intersecting
555 // cycles on ARM64, so we always have 1 GPR and 1 FPR available VIXL temps to resolve the
556 // dependency.
557 vixl_temps_.Open(GetVIXLAssembler());
558}
559
560void ParallelMoveResolverARM64::FinishEmitNativeCode() {
561 vixl_temps_.Close();
562}
563
564Location ParallelMoveResolverARM64::AllocateScratchLocationFor(Location::Kind kind) {
565 DCHECK(kind == Location::kRegister || kind == Location::kFpuRegister ||
566 kind == Location::kStackSlot || kind == Location::kDoubleStackSlot);
567 kind = (kind == Location::kFpuRegister) ? Location::kFpuRegister : Location::kRegister;
568 Location scratch = GetScratchLocation(kind);
569 if (!scratch.Equals(Location::NoLocation())) {
570 return scratch;
571 }
572 // Allocate from VIXL temp registers.
573 if (kind == Location::kRegister) {
574 scratch = LocationFrom(vixl_temps_.AcquireX());
575 } else {
576 DCHECK(kind == Location::kFpuRegister);
577 scratch = LocationFrom(vixl_temps_.AcquireD());
578 }
579 AddScratchLocation(scratch);
580 return scratch;
581}
582
583void ParallelMoveResolverARM64::FreeScratchLocation(Location loc) {
584 if (loc.IsRegister()) {
585 vixl_temps_.Release(XRegisterFrom(loc));
586 } else {
587 DCHECK(loc.IsFpuRegister());
588 vixl_temps_.Release(DRegisterFrom(loc));
589 }
590 RemoveScratchLocation(loc);
591}
592
Alexandre Rames3e69f162014-12-10 10:36:50 +0000593void ParallelMoveResolverARM64::EmitMove(size_t index) {
594 MoveOperands* move = moves_.Get(index);
595 codegen_->MoveLocation(move->GetDestination(), move->GetSource());
596}
597
Alexandre Rames5319def2014-10-23 10:03:10 +0100598void CodeGeneratorARM64::GenerateFrameEntry() {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100599 MacroAssembler* masm = GetVIXLAssembler();
600 BlockPoolsScope block_pools(masm);
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000601 __ Bind(&frame_entry_label_);
602
Serban Constantinescu02164b32014-11-13 14:05:07 +0000603 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod();
604 if (do_overflow_check) {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100605 UseScratchRegisterScope temps(masm);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000606 Register temp = temps.AcquireX();
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000607 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000608 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(kArm64)));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000609 __ Ldr(wzr, MemOperand(temp, 0));
610 RecordPcInfo(nullptr, 0);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000611 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100612
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000613 if (!HasEmptyFrame()) {
614 int frame_size = GetFrameSize();
615 // Stack layout:
616 // sp[frame_size - 8] : lr.
617 // ... : other preserved core registers.
618 // ... : other preserved fp registers.
619 // ... : reserved frame space.
620 // sp[0] : current method.
621 __ Str(kArtMethodRegister, MemOperand(sp, -frame_size, PreIndex));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100622 GetAssembler()->cfi().AdjustCFAOffset(frame_size);
Zheng Xu69a50302015-04-14 20:04:41 +0800623 GetAssembler()->SpillRegisters(GetFramePreservedCoreRegisters(),
624 frame_size - GetCoreSpillSize());
625 GetAssembler()->SpillRegisters(GetFramePreservedFPRegisters(),
626 frame_size - FrameEntrySpillSize());
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000627 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100628}
629
630void CodeGeneratorARM64::GenerateFrameExit() {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100631 BlockPoolsScope block_pools(GetVIXLAssembler());
David Srbeckyc34dc932015-04-12 09:27:43 +0100632 GetAssembler()->cfi().RememberState();
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000633 if (!HasEmptyFrame()) {
634 int frame_size = GetFrameSize();
Zheng Xu69a50302015-04-14 20:04:41 +0800635 GetAssembler()->UnspillRegisters(GetFramePreservedFPRegisters(),
636 frame_size - FrameEntrySpillSize());
637 GetAssembler()->UnspillRegisters(GetFramePreservedCoreRegisters(),
638 frame_size - GetCoreSpillSize());
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000639 __ Drop(frame_size);
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100640 GetAssembler()->cfi().AdjustCFAOffset(-frame_size);
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000641 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100642 __ Ret();
643 GetAssembler()->cfi().RestoreState();
644 GetAssembler()->cfi().DefCFAOffset(GetFrameSize());
Alexandre Rames5319def2014-10-23 10:03:10 +0100645}
646
Zheng Xuda403092015-04-24 17:35:39 +0800647vixl::CPURegList CodeGeneratorARM64::GetFramePreservedCoreRegisters() const {
648 DCHECK(ArtVixlRegCodeCoherentForRegSet(core_spill_mask_, GetNumberOfCoreRegisters(), 0, 0));
649 return vixl::CPURegList(vixl::CPURegister::kRegister, vixl::kXRegSize,
650 core_spill_mask_);
651}
652
653vixl::CPURegList CodeGeneratorARM64::GetFramePreservedFPRegisters() const {
654 DCHECK(ArtVixlRegCodeCoherentForRegSet(0, 0, fpu_spill_mask_,
655 GetNumberOfFloatingPointRegisters()));
656 return vixl::CPURegList(vixl::CPURegister::kFPRegister, vixl::kDRegSize,
657 fpu_spill_mask_);
658}
659
Alexandre Rames5319def2014-10-23 10:03:10 +0100660void CodeGeneratorARM64::Bind(HBasicBlock* block) {
661 __ Bind(GetLabelOf(block));
662}
663
Alexandre Rames5319def2014-10-23 10:03:10 +0100664void CodeGeneratorARM64::Move(HInstruction* instruction,
665 Location location,
666 HInstruction* move_for) {
667 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames5319def2014-10-23 10:03:10 +0100668 Primitive::Type type = instruction->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000669 DCHECK_NE(type, Primitive::kPrimVoid);
Alexandre Rames5319def2014-10-23 10:03:10 +0100670
Nicolas Geoffray9b1eba32015-07-13 15:55:26 +0100671 if (instruction->IsFakeString()) {
672 // The fake string is an alias for null.
673 DCHECK(IsBaseline());
674 instruction = locations->Out().GetConstant();
675 DCHECK(instruction->IsNullConstant()) << instruction->DebugName();
676 }
677
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100678 if (instruction->IsCurrentMethod()) {
Mathieu Chartiere3b034a2015-05-31 14:29:23 -0700679 MoveLocation(location, Location::DoubleStackSlot(kCurrentMethodStackOffset));
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100680 } else if (locations != nullptr && locations->Out().Equals(location)) {
681 return;
682 } else if (instruction->IsIntConstant()
683 || instruction->IsLongConstant()
684 || instruction->IsNullConstant()) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000685 int64_t value = GetInt64ValueOf(instruction->AsConstant());
Alexandre Rames5319def2014-10-23 10:03:10 +0100686 if (location.IsRegister()) {
687 Register dst = RegisterFrom(location, type);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000688 DCHECK(((instruction->IsIntConstant() || instruction->IsNullConstant()) && dst.Is32Bits()) ||
Alexandre Rames5319def2014-10-23 10:03:10 +0100689 (instruction->IsLongConstant() && dst.Is64Bits()));
690 __ Mov(dst, value);
691 } else {
692 DCHECK(location.IsStackSlot() || location.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000693 UseScratchRegisterScope temps(GetVIXLAssembler());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000694 Register temp = (instruction->IsIntConstant() || instruction->IsNullConstant())
695 ? temps.AcquireW()
696 : temps.AcquireX();
Alexandre Rames5319def2014-10-23 10:03:10 +0100697 __ Mov(temp, value);
698 __ Str(temp, StackOperandFrom(location));
699 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000700 } else if (instruction->IsTemporary()) {
701 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000702 MoveLocation(location, temp_location, type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100703 } else if (instruction->IsLoadLocal()) {
704 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
Alexandre Rames542361f2015-01-29 16:57:31 +0000705 if (Primitive::Is64BitType(type)) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000706 MoveLocation(location, Location::DoubleStackSlot(stack_slot), type);
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000707 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000708 MoveLocation(location, Location::StackSlot(stack_slot), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100709 }
710
711 } else {
712 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000713 MoveLocation(location, locations->Out(), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100714 }
715}
716
Alexandre Rames5319def2014-10-23 10:03:10 +0100717Location CodeGeneratorARM64::GetStackLocation(HLoadLocal* load) const {
718 Primitive::Type type = load->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000719
Alexandre Rames5319def2014-10-23 10:03:10 +0100720 switch (type) {
721 case Primitive::kPrimNot:
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000722 case Primitive::kPrimInt:
723 case Primitive::kPrimFloat:
724 return Location::StackSlot(GetStackSlot(load->GetLocal()));
725
726 case Primitive::kPrimLong:
727 case Primitive::kPrimDouble:
728 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
729
Alexandre Rames5319def2014-10-23 10:03:10 +0100730 case Primitive::kPrimBoolean:
731 case Primitive::kPrimByte:
732 case Primitive::kPrimChar:
733 case Primitive::kPrimShort:
Alexandre Rames5319def2014-10-23 10:03:10 +0100734 case Primitive::kPrimVoid:
Alexandre Rames5319def2014-10-23 10:03:10 +0100735 LOG(FATAL) << "Unexpected type " << type;
736 }
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000737
Alexandre Rames5319def2014-10-23 10:03:10 +0100738 LOG(FATAL) << "Unreachable";
739 return Location::NoLocation();
740}
741
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100742void CodeGeneratorARM64::MarkGCCard(Register object, Register value, bool value_can_be_null) {
Alexandre Rames67555f72014-11-18 10:55:16 +0000743 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +0100744 Register card = temps.AcquireX();
Serban Constantinescu02164b32014-11-13 14:05:07 +0000745 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit.
Alexandre Rames5319def2014-10-23 10:03:10 +0100746 vixl::Label done;
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100747 if (value_can_be_null) {
748 __ Cbz(value, &done);
749 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100750 __ Ldr(card, MemOperand(tr, Thread::CardTableOffset<kArm64WordSize>().Int32Value()));
751 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000752 __ Strb(card, MemOperand(card, temp.X()));
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100753 if (value_can_be_null) {
754 __ Bind(&done);
755 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100756}
757
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000758void CodeGeneratorARM64::SetupBlockedRegisters(bool is_baseline) const {
759 // Blocked core registers:
760 // lr : Runtime reserved.
761 // tr : Runtime reserved.
762 // xSuspend : Runtime reserved. TODO: Unblock this when the runtime stops using it.
763 // ip1 : VIXL core temp.
764 // ip0 : VIXL core temp.
765 //
766 // Blocked fp registers:
767 // d31 : VIXL fp temp.
Alexandre Rames5319def2014-10-23 10:03:10 +0100768 CPURegList reserved_core_registers = vixl_reserved_core_registers;
769 reserved_core_registers.Combine(runtime_reserved_core_registers);
Alexandre Rames5319def2014-10-23 10:03:10 +0100770 while (!reserved_core_registers.IsEmpty()) {
771 blocked_core_registers_[reserved_core_registers.PopLowestIndex().code()] = true;
772 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000773
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000774 CPURegList reserved_fp_registers = vixl_reserved_fp_registers;
Zheng Xua3ec3942015-02-15 18:39:46 +0800775 while (!reserved_fp_registers.IsEmpty()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000776 blocked_fpu_registers_[reserved_fp_registers.PopLowestIndex().code()] = true;
777 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000778
779 if (is_baseline) {
780 CPURegList reserved_core_baseline_registers = callee_saved_core_registers;
781 while (!reserved_core_baseline_registers.IsEmpty()) {
782 blocked_core_registers_[reserved_core_baseline_registers.PopLowestIndex().code()] = true;
783 }
784
785 CPURegList reserved_fp_baseline_registers = callee_saved_fp_registers;
786 while (!reserved_fp_baseline_registers.IsEmpty()) {
787 blocked_fpu_registers_[reserved_fp_baseline_registers.PopLowestIndex().code()] = true;
788 }
789 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100790}
791
792Location CodeGeneratorARM64::AllocateFreeRegister(Primitive::Type type) const {
793 if (type == Primitive::kPrimVoid) {
794 LOG(FATAL) << "Unreachable type " << type;
795 }
796
Alexandre Rames542361f2015-01-29 16:57:31 +0000797 if (Primitive::IsFloatingPointType(type)) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000798 ssize_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfAllocatableFPRegisters);
799 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100800 return Location::FpuRegisterLocation(reg);
801 } else {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000802 ssize_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfAllocatableRegisters);
803 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100804 return Location::RegisterLocation(reg);
805 }
806}
807
Alexandre Rames3e69f162014-12-10 10:36:50 +0000808size_t CodeGeneratorARM64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
809 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
810 __ Str(reg, MemOperand(sp, stack_index));
811 return kArm64WordSize;
812}
813
814size_t CodeGeneratorARM64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
815 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
816 __ Ldr(reg, MemOperand(sp, stack_index));
817 return kArm64WordSize;
818}
819
820size_t CodeGeneratorARM64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
821 FPRegister reg = FPRegister(reg_id, kDRegSize);
822 __ Str(reg, MemOperand(sp, stack_index));
823 return kArm64WordSize;
824}
825
826size_t CodeGeneratorARM64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
827 FPRegister reg = FPRegister(reg_id, kDRegSize);
828 __ Ldr(reg, MemOperand(sp, stack_index));
829 return kArm64WordSize;
830}
831
Alexandre Rames5319def2014-10-23 10:03:10 +0100832void CodeGeneratorARM64::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100833 stream << XRegister(reg);
Alexandre Rames5319def2014-10-23 10:03:10 +0100834}
835
836void CodeGeneratorARM64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100837 stream << DRegister(reg);
Alexandre Rames5319def2014-10-23 10:03:10 +0100838}
839
Alexandre Rames67555f72014-11-18 10:55:16 +0000840void CodeGeneratorARM64::MoveConstant(CPURegister destination, HConstant* constant) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000841 if (constant->IsIntConstant()) {
842 __ Mov(Register(destination), constant->AsIntConstant()->GetValue());
843 } else if (constant->IsLongConstant()) {
844 __ Mov(Register(destination), constant->AsLongConstant()->GetValue());
845 } else if (constant->IsNullConstant()) {
846 __ Mov(Register(destination), 0);
Alexandre Rames67555f72014-11-18 10:55:16 +0000847 } else if (constant->IsFloatConstant()) {
848 __ Fmov(FPRegister(destination), constant->AsFloatConstant()->GetValue());
849 } else {
850 DCHECK(constant->IsDoubleConstant());
851 __ Fmov(FPRegister(destination), constant->AsDoubleConstant()->GetValue());
852 }
853}
854
Alexandre Rames3e69f162014-12-10 10:36:50 +0000855
856static bool CoherentConstantAndType(Location constant, Primitive::Type type) {
857 DCHECK(constant.IsConstant());
858 HConstant* cst = constant.GetConstant();
859 return (cst->IsIntConstant() && type == Primitive::kPrimInt) ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000860 // Null is mapped to a core W register, which we associate with kPrimInt.
861 (cst->IsNullConstant() && type == Primitive::kPrimInt) ||
Alexandre Rames3e69f162014-12-10 10:36:50 +0000862 (cst->IsLongConstant() && type == Primitive::kPrimLong) ||
863 (cst->IsFloatConstant() && type == Primitive::kPrimFloat) ||
864 (cst->IsDoubleConstant() && type == Primitive::kPrimDouble);
865}
866
867void CodeGeneratorARM64::MoveLocation(Location destination, Location source, Primitive::Type type) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000868 if (source.Equals(destination)) {
869 return;
870 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000871
872 // A valid move can always be inferred from the destination and source
873 // locations. When moving from and to a register, the argument type can be
874 // used to generate 32bit instead of 64bit moves. In debug mode we also
875 // checks the coherency of the locations and the type.
876 bool unspecified_type = (type == Primitive::kPrimVoid);
877
878 if (destination.IsRegister() || destination.IsFpuRegister()) {
879 if (unspecified_type) {
880 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr;
881 if (source.IsStackSlot() ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000882 (src_cst != nullptr && (src_cst->IsIntConstant()
883 || src_cst->IsFloatConstant()
884 || src_cst->IsNullConstant()))) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000885 // For stack slots and 32bit constants, a 64bit type is appropriate.
886 type = destination.IsRegister() ? Primitive::kPrimInt : Primitive::kPrimFloat;
Alexandre Rames67555f72014-11-18 10:55:16 +0000887 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000888 // If the source is a double stack slot or a 64bit constant, a 64bit
889 // type is appropriate. Else the source is a register, and since the
890 // type has not been specified, we chose a 64bit type to force a 64bit
891 // move.
892 type = destination.IsRegister() ? Primitive::kPrimLong : Primitive::kPrimDouble;
Alexandre Rames67555f72014-11-18 10:55:16 +0000893 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000894 }
Alexandre Rames542361f2015-01-29 16:57:31 +0000895 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(type)) ||
896 (destination.IsRegister() && !Primitive::IsFloatingPointType(type)));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000897 CPURegister dst = CPURegisterFrom(destination, type);
898 if (source.IsStackSlot() || source.IsDoubleStackSlot()) {
899 DCHECK(dst.Is64Bits() == source.IsDoubleStackSlot());
900 __ Ldr(dst, StackOperandFrom(source));
901 } else if (source.IsConstant()) {
902 DCHECK(CoherentConstantAndType(source, type));
903 MoveConstant(dst, source.GetConstant());
904 } else {
905 if (destination.IsRegister()) {
906 __ Mov(Register(dst), RegisterFrom(source, type));
907 } else {
Zheng Xuad4450e2015-04-17 18:48:56 +0800908 DCHECK(destination.IsFpuRegister());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000909 __ Fmov(FPRegister(dst), FPRegisterFrom(source, type));
910 }
911 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000912 } else { // The destination is not a register. It must be a stack slot.
913 DCHECK(destination.IsStackSlot() || destination.IsDoubleStackSlot());
914 if (source.IsRegister() || source.IsFpuRegister()) {
915 if (unspecified_type) {
916 if (source.IsRegister()) {
917 type = destination.IsStackSlot() ? Primitive::kPrimInt : Primitive::kPrimLong;
918 } else {
919 type = destination.IsStackSlot() ? Primitive::kPrimFloat : Primitive::kPrimDouble;
920 }
921 }
Alexandre Rames542361f2015-01-29 16:57:31 +0000922 DCHECK((destination.IsDoubleStackSlot() == Primitive::Is64BitType(type)) &&
923 (source.IsFpuRegister() == Primitive::IsFloatingPointType(type)));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000924 __ Str(CPURegisterFrom(source, type), StackOperandFrom(destination));
925 } else if (source.IsConstant()) {
Nicolas Geoffray9b1eba32015-07-13 15:55:26 +0100926 DCHECK(unspecified_type || CoherentConstantAndType(source, type)) << source << " " << type;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000927 UseScratchRegisterScope temps(GetVIXLAssembler());
928 HConstant* src_cst = source.GetConstant();
929 CPURegister temp;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000930 if (src_cst->IsIntConstant() || src_cst->IsNullConstant()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000931 temp = temps.AcquireW();
932 } else if (src_cst->IsLongConstant()) {
933 temp = temps.AcquireX();
934 } else if (src_cst->IsFloatConstant()) {
935 temp = temps.AcquireS();
936 } else {
937 DCHECK(src_cst->IsDoubleConstant());
938 temp = temps.AcquireD();
939 }
940 MoveConstant(temp, src_cst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000941 __ Str(temp, StackOperandFrom(destination));
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000942 } else {
Alexandre Rames67555f72014-11-18 10:55:16 +0000943 DCHECK(source.IsStackSlot() || source.IsDoubleStackSlot());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000944 DCHECK(source.IsDoubleStackSlot() == destination.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000945 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000946 // There is generally less pressure on FP registers.
947 FPRegister temp = destination.IsDoubleStackSlot() ? temps.AcquireD() : temps.AcquireS();
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000948 __ Ldr(temp, StackOperandFrom(source));
949 __ Str(temp, StackOperandFrom(destination));
950 }
951 }
952}
953
954void CodeGeneratorARM64::Load(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000955 CPURegister dst,
956 const MemOperand& src) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000957 switch (type) {
958 case Primitive::kPrimBoolean:
Alexandre Rames67555f72014-11-18 10:55:16 +0000959 __ Ldrb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000960 break;
961 case Primitive::kPrimByte:
Alexandre Rames67555f72014-11-18 10:55:16 +0000962 __ Ldrsb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000963 break;
964 case Primitive::kPrimShort:
Alexandre Rames67555f72014-11-18 10:55:16 +0000965 __ Ldrsh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000966 break;
967 case Primitive::kPrimChar:
Alexandre Rames67555f72014-11-18 10:55:16 +0000968 __ Ldrh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000969 break;
970 case Primitive::kPrimInt:
971 case Primitive::kPrimNot:
972 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000973 case Primitive::kPrimFloat:
974 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +0000975 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Alexandre Rames67555f72014-11-18 10:55:16 +0000976 __ Ldr(dst, src);
977 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000978 case Primitive::kPrimVoid:
979 LOG(FATAL) << "Unreachable type " << type;
980 }
981}
982
Calin Juravle77520bc2015-01-12 18:45:46 +0000983void CodeGeneratorARM64::LoadAcquire(HInstruction* instruction,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000984 CPURegister dst,
985 const MemOperand& src) {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100986 MacroAssembler* masm = GetVIXLAssembler();
987 BlockPoolsScope block_pools(masm);
988 UseScratchRegisterScope temps(masm);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000989 Register temp_base = temps.AcquireX();
Calin Juravle77520bc2015-01-12 18:45:46 +0000990 Primitive::Type type = instruction->GetType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000991
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000992 DCHECK(!src.IsPreIndex());
993 DCHECK(!src.IsPostIndex());
994
995 // TODO(vixl): Let the MacroAssembler handle MemOperand.
Andreas Gampe878d58c2015-01-15 23:24:00 -0800996 __ Add(temp_base, src.base(), OperandFromMemOperand(src));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000997 MemOperand base = MemOperand(temp_base);
998 switch (type) {
999 case Primitive::kPrimBoolean:
1000 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001001 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001002 break;
1003 case Primitive::kPrimByte:
1004 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001005 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001006 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
1007 break;
1008 case Primitive::kPrimChar:
1009 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001010 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001011 break;
1012 case Primitive::kPrimShort:
1013 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001014 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001015 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
1016 break;
1017 case Primitive::kPrimInt:
1018 case Primitive::kPrimNot:
1019 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +00001020 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001021 __ Ldar(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001022 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001023 break;
1024 case Primitive::kPrimFloat:
1025 case Primitive::kPrimDouble: {
1026 DCHECK(dst.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +00001027 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001028
1029 Register temp = dst.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
1030 __ Ldar(temp, base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001031 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001032 __ Fmov(FPRegister(dst), temp);
1033 break;
1034 }
1035 case Primitive::kPrimVoid:
1036 LOG(FATAL) << "Unreachable type " << type;
1037 }
1038}
1039
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001040void CodeGeneratorARM64::Store(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001041 CPURegister src,
1042 const MemOperand& dst) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001043 switch (type) {
1044 case Primitive::kPrimBoolean:
1045 case Primitive::kPrimByte:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001046 __ Strb(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001047 break;
1048 case Primitive::kPrimChar:
1049 case Primitive::kPrimShort:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001050 __ Strh(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001051 break;
1052 case Primitive::kPrimInt:
1053 case Primitive::kPrimNot:
1054 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001055 case Primitive::kPrimFloat:
1056 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +00001057 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001058 __ Str(src, dst);
Alexandre Rames67555f72014-11-18 10:55:16 +00001059 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001060 case Primitive::kPrimVoid:
1061 LOG(FATAL) << "Unreachable type " << type;
1062 }
1063}
1064
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001065void CodeGeneratorARM64::StoreRelease(Primitive::Type type,
1066 CPURegister src,
1067 const MemOperand& dst) {
1068 UseScratchRegisterScope temps(GetVIXLAssembler());
1069 Register temp_base = temps.AcquireX();
1070
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001071 DCHECK(!dst.IsPreIndex());
1072 DCHECK(!dst.IsPostIndex());
1073
1074 // TODO(vixl): Let the MacroAssembler handle this.
Andreas Gampe878d58c2015-01-15 23:24:00 -08001075 Operand op = OperandFromMemOperand(dst);
1076 __ Add(temp_base, dst.base(), op);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001077 MemOperand base = MemOperand(temp_base);
1078 switch (type) {
1079 case Primitive::kPrimBoolean:
1080 case Primitive::kPrimByte:
1081 __ Stlrb(Register(src), base);
1082 break;
1083 case Primitive::kPrimChar:
1084 case Primitive::kPrimShort:
1085 __ Stlrh(Register(src), base);
1086 break;
1087 case Primitive::kPrimInt:
1088 case Primitive::kPrimNot:
1089 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +00001090 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001091 __ Stlr(Register(src), base);
1092 break;
1093 case Primitive::kPrimFloat:
1094 case Primitive::kPrimDouble: {
1095 DCHECK(src.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +00001096 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001097
1098 Register temp = src.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
1099 __ Fmov(temp, FPRegister(src));
1100 __ Stlr(temp, base);
1101 break;
1102 }
1103 case Primitive::kPrimVoid:
1104 LOG(FATAL) << "Unreachable type " << type;
1105 }
1106}
1107
Alexandre Rames67555f72014-11-18 10:55:16 +00001108void CodeGeneratorARM64::InvokeRuntime(int32_t entry_point_offset,
1109 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001110 uint32_t dex_pc,
1111 SlowPathCode* slow_path) {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001112 ValidateInvokeRuntime(instruction, slow_path);
Alexandre Ramesd921d642015-04-16 15:07:16 +01001113 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames67555f72014-11-18 10:55:16 +00001114 __ Ldr(lr, MemOperand(tr, entry_point_offset));
1115 __ Blr(lr);
Roland Levillain896e32d2015-05-05 18:07:10 +01001116 RecordPcInfo(instruction, dex_pc, slow_path);
Alexandre Rames67555f72014-11-18 10:55:16 +00001117}
1118
1119void InstructionCodeGeneratorARM64::GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path,
1120 vixl::Register class_reg) {
1121 UseScratchRegisterScope temps(GetVIXLAssembler());
1122 Register temp = temps.AcquireW();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001123 size_t status_offset = mirror::Class::StatusOffset().SizeValue();
Serban Constantinescu579885a2015-02-22 20:51:33 +00001124 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001125
Serban Constantinescu02164b32014-11-13 14:05:07 +00001126 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
Serban Constantinescu579885a2015-02-22 20:51:33 +00001127 if (use_acquire_release) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001128 // TODO(vixl): Let the MacroAssembler handle MemOperand.
1129 __ Add(temp, class_reg, status_offset);
1130 __ Ldar(temp, HeapOperand(temp));
1131 __ Cmp(temp, mirror::Class::kStatusInitialized);
1132 __ B(lt, slow_path->GetEntryLabel());
1133 } else {
1134 __ Ldr(temp, HeapOperand(class_reg, status_offset));
1135 __ Cmp(temp, mirror::Class::kStatusInitialized);
1136 __ B(lt, slow_path->GetEntryLabel());
1137 __ Dmb(InnerShareable, BarrierReads);
1138 }
Alexandre Rames67555f72014-11-18 10:55:16 +00001139 __ Bind(slow_path->GetExitLabel());
1140}
Alexandre Rames5319def2014-10-23 10:03:10 +01001141
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001142void InstructionCodeGeneratorARM64::GenerateMemoryBarrier(MemBarrierKind kind) {
1143 BarrierType type = BarrierAll;
1144
1145 switch (kind) {
1146 case MemBarrierKind::kAnyAny:
1147 case MemBarrierKind::kAnyStore: {
1148 type = BarrierAll;
1149 break;
1150 }
1151 case MemBarrierKind::kLoadAny: {
1152 type = BarrierReads;
1153 break;
1154 }
1155 case MemBarrierKind::kStoreStore: {
1156 type = BarrierWrites;
1157 break;
1158 }
1159 default:
1160 LOG(FATAL) << "Unexpected memory barrier " << kind;
1161 }
1162 __ Dmb(InnerShareable, type);
1163}
1164
Serban Constantinescu02164b32014-11-13 14:05:07 +00001165void InstructionCodeGeneratorARM64::GenerateSuspendCheck(HSuspendCheck* instruction,
1166 HBasicBlock* successor) {
1167 SuspendCheckSlowPathARM64* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001168 down_cast<SuspendCheckSlowPathARM64*>(instruction->GetSlowPath());
1169 if (slow_path == nullptr) {
1170 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathARM64(instruction, successor);
1171 instruction->SetSlowPath(slow_path);
1172 codegen_->AddSlowPath(slow_path);
1173 if (successor != nullptr) {
1174 DCHECK(successor->IsLoopHeader());
1175 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
1176 }
1177 } else {
1178 DCHECK_EQ(slow_path->GetSuccessor(), successor);
1179 }
1180
Serban Constantinescu02164b32014-11-13 14:05:07 +00001181 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
1182 Register temp = temps.AcquireW();
1183
1184 __ Ldrh(temp, MemOperand(tr, Thread::ThreadFlagsOffset<kArm64WordSize>().SizeValue()));
1185 if (successor == nullptr) {
1186 __ Cbnz(temp, slow_path->GetEntryLabel());
1187 __ Bind(slow_path->GetReturnLabel());
1188 } else {
1189 __ Cbz(temp, codegen_->GetLabelOf(successor));
1190 __ B(slow_path->GetEntryLabel());
1191 // slow_path will return to GetLabelOf(successor).
1192 }
1193}
1194
Alexandre Rames5319def2014-10-23 10:03:10 +01001195InstructionCodeGeneratorARM64::InstructionCodeGeneratorARM64(HGraph* graph,
1196 CodeGeneratorARM64* codegen)
1197 : HGraphVisitor(graph),
1198 assembler_(codegen->GetAssembler()),
1199 codegen_(codegen) {}
1200
1201#define FOR_EACH_UNIMPLEMENTED_INSTRUCTION(M) \
Alexandre Rames3e69f162014-12-10 10:36:50 +00001202 /* No unimplemented IR. */
Alexandre Rames5319def2014-10-23 10:03:10 +01001203
1204#define UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name) name##UnimplementedInstructionBreakCode
1205
1206enum UnimplementedInstructionBreakCode {
Alexandre Rames67555f72014-11-18 10:55:16 +00001207 // Using a base helps identify when we hit such breakpoints.
1208 UnimplementedInstructionBreakCodeBaseCode = 0x900,
Alexandre Rames5319def2014-10-23 10:03:10 +01001209#define ENUM_UNIMPLEMENTED_INSTRUCTION(name) UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name),
1210 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(ENUM_UNIMPLEMENTED_INSTRUCTION)
1211#undef ENUM_UNIMPLEMENTED_INSTRUCTION
1212};
1213
1214#define DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS(name) \
1215 void InstructionCodeGeneratorARM64::Visit##name(H##name* instr) { \
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001216 UNUSED(instr); \
Alexandre Rames5319def2014-10-23 10:03:10 +01001217 __ Brk(UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name)); \
1218 } \
1219 void LocationsBuilderARM64::Visit##name(H##name* instr) { \
1220 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr); \
1221 locations->SetOut(Location::Any()); \
1222 }
1223 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS)
1224#undef DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS
1225
1226#undef UNIMPLEMENTED_INSTRUCTION_BREAK_CODE
Alexandre Rames67555f72014-11-18 10:55:16 +00001227#undef FOR_EACH_UNIMPLEMENTED_INSTRUCTION
Alexandre Rames5319def2014-10-23 10:03:10 +01001228
Alexandre Rames67555f72014-11-18 10:55:16 +00001229void LocationsBuilderARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001230 DCHECK_EQ(instr->InputCount(), 2U);
1231 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1232 Primitive::Type type = instr->GetResultType();
1233 switch (type) {
1234 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001235 case Primitive::kPrimLong:
Alexandre Rames5319def2014-10-23 10:03:10 +01001236 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001237 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instr->InputAt(1), instr));
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001238 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001239 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001240
1241 case Primitive::kPrimFloat:
1242 case Primitive::kPrimDouble:
1243 locations->SetInAt(0, Location::RequiresFpuRegister());
1244 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001245 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001246 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001247
Alexandre Rames5319def2014-10-23 10:03:10 +01001248 default:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001249 LOG(FATAL) << "Unexpected " << instr->DebugName() << " type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001250 }
1251}
1252
Alexandre Rames09a99962015-04-15 11:47:56 +01001253void LocationsBuilderARM64::HandleFieldGet(HInstruction* instruction) {
1254 LocationSummary* locations =
1255 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1256 locations->SetInAt(0, Location::RequiresRegister());
1257 if (Primitive::IsFloatingPointType(instruction->GetType())) {
1258 locations->SetOut(Location::RequiresFpuRegister());
1259 } else {
1260 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1261 }
1262}
1263
1264void InstructionCodeGeneratorARM64::HandleFieldGet(HInstruction* instruction,
1265 const FieldInfo& field_info) {
1266 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Roland Levillain4d027112015-07-01 15:41:14 +01001267 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Ramesd921d642015-04-16 15:07:16 +01001268 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames09a99962015-04-15 11:47:56 +01001269
1270 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), field_info.GetFieldOffset());
1271 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
1272
1273 if (field_info.IsVolatile()) {
1274 if (use_acquire_release) {
1275 // NB: LoadAcquire will record the pc info if needed.
1276 codegen_->LoadAcquire(instruction, OutputCPURegister(instruction), field);
1277 } else {
Roland Levillain4d027112015-07-01 15:41:14 +01001278 codegen_->Load(field_type, OutputCPURegister(instruction), field);
Alexandre Rames09a99962015-04-15 11:47:56 +01001279 codegen_->MaybeRecordImplicitNullCheck(instruction);
1280 // For IRIW sequential consistency kLoadAny is not sufficient.
1281 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1282 }
1283 } else {
Roland Levillain4d027112015-07-01 15:41:14 +01001284 codegen_->Load(field_type, OutputCPURegister(instruction), field);
Alexandre Rames09a99962015-04-15 11:47:56 +01001285 codegen_->MaybeRecordImplicitNullCheck(instruction);
1286 }
Roland Levillain4d027112015-07-01 15:41:14 +01001287
1288 if (field_type == Primitive::kPrimNot) {
1289 GetAssembler()->MaybeUnpoisonHeapReference(OutputCPURegister(instruction).W());
1290 }
Alexandre Rames09a99962015-04-15 11:47:56 +01001291}
1292
1293void LocationsBuilderARM64::HandleFieldSet(HInstruction* instruction) {
1294 LocationSummary* locations =
1295 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1296 locations->SetInAt(0, Location::RequiresRegister());
1297 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) {
1298 locations->SetInAt(1, Location::RequiresFpuRegister());
1299 } else {
1300 locations->SetInAt(1, Location::RequiresRegister());
1301 }
1302}
1303
1304void InstructionCodeGeneratorARM64::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001305 const FieldInfo& field_info,
1306 bool value_can_be_null) {
Alexandre Rames09a99962015-04-15 11:47:56 +01001307 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
Alexandre Ramesd921d642015-04-16 15:07:16 +01001308 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames09a99962015-04-15 11:47:56 +01001309
1310 Register obj = InputRegisterAt(instruction, 0);
1311 CPURegister value = InputCPURegisterAt(instruction, 1);
Roland Levillain4d027112015-07-01 15:41:14 +01001312 CPURegister source = value;
Alexandre Rames09a99962015-04-15 11:47:56 +01001313 Offset offset = field_info.GetFieldOffset();
1314 Primitive::Type field_type = field_info.GetFieldType();
1315 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
1316
Roland Levillain4d027112015-07-01 15:41:14 +01001317 {
1318 // We use a block to end the scratch scope before the write barrier, thus
1319 // freeing the temporary registers so they can be used in `MarkGCCard`.
1320 UseScratchRegisterScope temps(GetVIXLAssembler());
1321
1322 if (kPoisonHeapReferences && field_type == Primitive::kPrimNot) {
1323 DCHECK(value.IsW());
1324 Register temp = temps.AcquireW();
1325 __ Mov(temp, value.W());
1326 GetAssembler()->PoisonHeapReference(temp.W());
1327 source = temp;
Alexandre Rames09a99962015-04-15 11:47:56 +01001328 }
Roland Levillain4d027112015-07-01 15:41:14 +01001329
1330 if (field_info.IsVolatile()) {
1331 if (use_acquire_release) {
1332 codegen_->StoreRelease(field_type, source, HeapOperand(obj, offset));
1333 codegen_->MaybeRecordImplicitNullCheck(instruction);
1334 } else {
1335 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
1336 codegen_->Store(field_type, source, HeapOperand(obj, offset));
1337 codegen_->MaybeRecordImplicitNullCheck(instruction);
1338 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1339 }
1340 } else {
1341 codegen_->Store(field_type, source, HeapOperand(obj, offset));
1342 codegen_->MaybeRecordImplicitNullCheck(instruction);
1343 }
Alexandre Rames09a99962015-04-15 11:47:56 +01001344 }
1345
1346 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001347 codegen_->MarkGCCard(obj, Register(value), value_can_be_null);
Alexandre Rames09a99962015-04-15 11:47:56 +01001348 }
1349}
1350
Alexandre Rames67555f72014-11-18 10:55:16 +00001351void InstructionCodeGeneratorARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001352 Primitive::Type type = instr->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001353
1354 switch (type) {
1355 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001356 case Primitive::kPrimLong: {
1357 Register dst = OutputRegister(instr);
1358 Register lhs = InputRegisterAt(instr, 0);
1359 Operand rhs = InputOperandAt(instr, 1);
Alexandre Rames5319def2014-10-23 10:03:10 +01001360 if (instr->IsAdd()) {
1361 __ Add(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001362 } else if (instr->IsAnd()) {
1363 __ And(dst, lhs, rhs);
1364 } else if (instr->IsOr()) {
1365 __ Orr(dst, lhs, rhs);
1366 } else if (instr->IsSub()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001367 __ Sub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001368 } else {
1369 DCHECK(instr->IsXor());
1370 __ Eor(dst, lhs, rhs);
Alexandre Rames5319def2014-10-23 10:03:10 +01001371 }
1372 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001373 }
1374 case Primitive::kPrimFloat:
1375 case Primitive::kPrimDouble: {
1376 FPRegister dst = OutputFPRegister(instr);
1377 FPRegister lhs = InputFPRegisterAt(instr, 0);
1378 FPRegister rhs = InputFPRegisterAt(instr, 1);
1379 if (instr->IsAdd()) {
1380 __ Fadd(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001381 } else if (instr->IsSub()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001382 __ Fsub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001383 } else {
1384 LOG(FATAL) << "Unexpected floating-point binary operation";
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001385 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001386 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001387 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001388 default:
Alexandre Rames67555f72014-11-18 10:55:16 +00001389 LOG(FATAL) << "Unexpected binary operation type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001390 }
1391}
1392
Serban Constantinescu02164b32014-11-13 14:05:07 +00001393void LocationsBuilderARM64::HandleShift(HBinaryOperation* instr) {
1394 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1395
1396 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1397 Primitive::Type type = instr->GetResultType();
1398 switch (type) {
1399 case Primitive::kPrimInt:
1400 case Primitive::kPrimLong: {
1401 locations->SetInAt(0, Location::RequiresRegister());
1402 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1403 locations->SetOut(Location::RequiresRegister());
1404 break;
1405 }
1406 default:
1407 LOG(FATAL) << "Unexpected shift type " << type;
1408 }
1409}
1410
1411void InstructionCodeGeneratorARM64::HandleShift(HBinaryOperation* instr) {
1412 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1413
1414 Primitive::Type type = instr->GetType();
1415 switch (type) {
1416 case Primitive::kPrimInt:
1417 case Primitive::kPrimLong: {
1418 Register dst = OutputRegister(instr);
1419 Register lhs = InputRegisterAt(instr, 0);
1420 Operand rhs = InputOperandAt(instr, 1);
1421 if (rhs.IsImmediate()) {
1422 uint32_t shift_value = (type == Primitive::kPrimInt)
1423 ? static_cast<uint32_t>(rhs.immediate() & kMaxIntShiftValue)
1424 : static_cast<uint32_t>(rhs.immediate() & kMaxLongShiftValue);
1425 if (instr->IsShl()) {
1426 __ Lsl(dst, lhs, shift_value);
1427 } else if (instr->IsShr()) {
1428 __ Asr(dst, lhs, shift_value);
1429 } else {
1430 __ Lsr(dst, lhs, shift_value);
1431 }
1432 } else {
1433 Register rhs_reg = dst.IsX() ? rhs.reg().X() : rhs.reg().W();
1434
1435 if (instr->IsShl()) {
1436 __ Lsl(dst, lhs, rhs_reg);
1437 } else if (instr->IsShr()) {
1438 __ Asr(dst, lhs, rhs_reg);
1439 } else {
1440 __ Lsr(dst, lhs, rhs_reg);
1441 }
1442 }
1443 break;
1444 }
1445 default:
1446 LOG(FATAL) << "Unexpected shift operation type " << type;
1447 }
1448}
1449
Alexandre Rames5319def2014-10-23 10:03:10 +01001450void LocationsBuilderARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001451 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001452}
1453
1454void InstructionCodeGeneratorARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001455 HandleBinaryOp(instruction);
1456}
1457
1458void LocationsBuilderARM64::VisitAnd(HAnd* instruction) {
1459 HandleBinaryOp(instruction);
1460}
1461
1462void InstructionCodeGeneratorARM64::VisitAnd(HAnd* instruction) {
1463 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001464}
1465
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001466void LocationsBuilderARM64::VisitArrayGet(HArrayGet* instruction) {
1467 LocationSummary* locations =
1468 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1469 locations->SetInAt(0, Location::RequiresRegister());
1470 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01001471 if (Primitive::IsFloatingPointType(instruction->GetType())) {
1472 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1473 } else {
1474 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1475 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001476}
1477
1478void InstructionCodeGeneratorARM64::VisitArrayGet(HArrayGet* instruction) {
1479 LocationSummary* locations = instruction->GetLocations();
1480 Primitive::Type type = instruction->GetType();
1481 Register obj = InputRegisterAt(instruction, 0);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001482 Location index = locations->InAt(1);
1483 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001484 MemOperand source = HeapOperand(obj);
Alexandre Ramesd921d642015-04-16 15:07:16 +01001485 MacroAssembler* masm = GetVIXLAssembler();
1486 UseScratchRegisterScope temps(masm);
1487 BlockPoolsScope block_pools(masm);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001488
1489 if (index.IsConstant()) {
1490 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(type);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001491 source = HeapOperand(obj, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001492 } else {
1493 Register temp = temps.AcquireSameSizeAs(obj);
Alexandre Rames82000b02015-07-07 11:34:16 +01001494 __ Add(temp, obj, offset);
1495 source = HeapOperand(temp, XRegisterFrom(index), LSL, Primitive::ComponentSizeShift(type));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001496 }
1497
Alexandre Rames67555f72014-11-18 10:55:16 +00001498 codegen_->Load(type, OutputCPURegister(instruction), source);
Calin Juravle77520bc2015-01-12 18:45:46 +00001499 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain4d027112015-07-01 15:41:14 +01001500
1501 if (type == Primitive::kPrimNot) {
1502 GetAssembler()->MaybeUnpoisonHeapReference(OutputCPURegister(instruction).W());
1503 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001504}
1505
Alexandre Rames5319def2014-10-23 10:03:10 +01001506void LocationsBuilderARM64::VisitArrayLength(HArrayLength* instruction) {
1507 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1508 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001509 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001510}
1511
1512void InstructionCodeGeneratorARM64::VisitArrayLength(HArrayLength* instruction) {
Alexandre Ramesd921d642015-04-16 15:07:16 +01001513 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +01001514 __ Ldr(OutputRegister(instruction),
1515 HeapOperand(InputRegisterAt(instruction, 0), mirror::Array::LengthOffset()));
Calin Juravle77520bc2015-01-12 18:45:46 +00001516 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001517}
1518
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001519void LocationsBuilderARM64::VisitArraySet(HArraySet* instruction) {
Alexandre Rames97833a02015-04-16 15:07:12 +01001520 if (instruction->NeedsTypeCheck()) {
1521 LocationSummary* locations =
1522 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001523 InvokeRuntimeCallingConvention calling_convention;
1524 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
1525 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1)));
1526 locations->SetInAt(2, LocationFrom(calling_convention.GetRegisterAt(2)));
1527 } else {
Alexandre Rames97833a02015-04-16 15:07:12 +01001528 LocationSummary* locations =
1529 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001530 locations->SetInAt(0, Location::RequiresRegister());
1531 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01001532 if (Primitive::IsFloatingPointType(instruction->InputAt(2)->GetType())) {
1533 locations->SetInAt(2, Location::RequiresFpuRegister());
1534 } else {
1535 locations->SetInAt(2, Location::RequiresRegister());
1536 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001537 }
1538}
1539
1540void InstructionCodeGeneratorARM64::VisitArraySet(HArraySet* instruction) {
1541 Primitive::Type value_type = instruction->GetComponentType();
Alexandre Rames97833a02015-04-16 15:07:12 +01001542 LocationSummary* locations = instruction->GetLocations();
1543 bool needs_runtime_call = locations->WillCall();
1544
1545 if (needs_runtime_call) {
Roland Levillain4d027112015-07-01 15:41:14 +01001546 // Note: if heap poisoning is enabled, pAputObject takes cares
1547 // of poisoning the reference.
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001548 codegen_->InvokeRuntime(
1549 QUICK_ENTRY_POINT(pAputObject), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08001550 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001551 } else {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001552 Register obj = InputRegisterAt(instruction, 0);
Alexandre Rames67555f72014-11-18 10:55:16 +00001553 CPURegister value = InputCPURegisterAt(instruction, 2);
Roland Levillain4d027112015-07-01 15:41:14 +01001554 CPURegister source = value;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001555 Location index = locations->InAt(1);
1556 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001557 MemOperand destination = HeapOperand(obj);
Alexandre Ramesd921d642015-04-16 15:07:16 +01001558 MacroAssembler* masm = GetVIXLAssembler();
Alexandre Ramesd921d642015-04-16 15:07:16 +01001559 BlockPoolsScope block_pools(masm);
Alexandre Rames97833a02015-04-16 15:07:12 +01001560 {
1561 // We use a block to end the scratch scope before the write barrier, thus
1562 // freeing the temporary registers so they can be used in `MarkGCCard`.
1563 UseScratchRegisterScope temps(masm);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001564
Roland Levillain4d027112015-07-01 15:41:14 +01001565 if (kPoisonHeapReferences && value_type == Primitive::kPrimNot) {
1566 DCHECK(value.IsW());
1567 Register temp = temps.AcquireW();
1568 __ Mov(temp, value.W());
1569 GetAssembler()->PoisonHeapReference(temp.W());
1570 source = temp;
1571 }
1572
Alexandre Rames97833a02015-04-16 15:07:12 +01001573 if (index.IsConstant()) {
1574 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
1575 destination = HeapOperand(obj, offset);
1576 } else {
1577 Register temp = temps.AcquireSameSizeAs(obj);
Alexandre Rames82000b02015-07-07 11:34:16 +01001578 __ Add(temp, obj, offset);
1579 destination = HeapOperand(temp,
1580 XRegisterFrom(index),
1581 LSL,
1582 Primitive::ComponentSizeShift(value_type));
Alexandre Rames97833a02015-04-16 15:07:12 +01001583 }
1584
Roland Levillain4d027112015-07-01 15:41:14 +01001585 codegen_->Store(value_type, source, destination);
Alexandre Rames97833a02015-04-16 15:07:12 +01001586 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001587 }
Alexandre Rames97833a02015-04-16 15:07:12 +01001588 if (CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue())) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001589 codegen_->MarkGCCard(obj, value.W(), instruction->GetValueCanBeNull());
Alexandre Rames97833a02015-04-16 15:07:12 +01001590 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001591 }
1592}
1593
Alexandre Rames67555f72014-11-18 10:55:16 +00001594void LocationsBuilderARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00001595 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
1596 ? LocationSummary::kCallOnSlowPath
1597 : LocationSummary::kNoCall;
1598 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames67555f72014-11-18 10:55:16 +00001599 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu760d8ef2015-03-28 18:09:56 +00001600 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
Alexandre Rames67555f72014-11-18 10:55:16 +00001601 if (instruction->HasUses()) {
1602 locations->SetOut(Location::SameAsFirstInput());
1603 }
1604}
1605
1606void InstructionCodeGeneratorARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01001607 BoundsCheckSlowPathARM64* slow_path =
1608 new (GetGraph()->GetArena()) BoundsCheckSlowPathARM64(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00001609 codegen_->AddSlowPath(slow_path);
1610
1611 __ Cmp(InputRegisterAt(instruction, 0), InputOperandAt(instruction, 1));
1612 __ B(slow_path->GetEntryLabel(), hs);
1613}
1614
1615void LocationsBuilderARM64::VisitCheckCast(HCheckCast* instruction) {
1616 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1617 instruction, LocationSummary::kCallOnSlowPath);
1618 locations->SetInAt(0, Location::RequiresRegister());
1619 locations->SetInAt(1, Location::RequiresRegister());
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01001620 // Note that TypeCheckSlowPathARM64 uses this register too.
Alexandre Rames3e69f162014-12-10 10:36:50 +00001621 locations->AddTemp(Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001622}
1623
1624void InstructionCodeGeneratorARM64::VisitCheckCast(HCheckCast* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001625 Register obj = InputRegisterAt(instruction, 0);;
1626 Register cls = InputRegisterAt(instruction, 1);;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001627 Register obj_cls = WRegisterFrom(instruction->GetLocations()->GetTemp(0));
Alexandre Rames67555f72014-11-18 10:55:16 +00001628
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01001629 SlowPathCodeARM64* slow_path =
1630 new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00001631 codegen_->AddSlowPath(slow_path);
1632
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01001633 // Avoid null check if we know obj is not null.
1634 if (instruction->MustDoNullCheck()) {
1635 __ Cbz(obj, slow_path->GetExitLabel());
1636 }
Alexandre Rames67555f72014-11-18 10:55:16 +00001637 // Compare the class of `obj` with `cls`.
Alexandre Rames3e69f162014-12-10 10:36:50 +00001638 __ Ldr(obj_cls, HeapOperand(obj, mirror::Object::ClassOffset()));
Roland Levillain4d027112015-07-01 15:41:14 +01001639 GetAssembler()->MaybeUnpoisonHeapReference(obj_cls.W());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001640 __ Cmp(obj_cls, cls);
Roland Levillain4d027112015-07-01 15:41:14 +01001641 // The checkcast succeeds if the classes are equal (fast path).
1642 // Otherwise, we need to go into the slow path to check the types.
Alexandre Rames67555f72014-11-18 10:55:16 +00001643 __ B(ne, slow_path->GetEntryLabel());
1644 __ Bind(slow_path->GetExitLabel());
1645}
1646
1647void LocationsBuilderARM64::VisitClinitCheck(HClinitCheck* check) {
1648 LocationSummary* locations =
1649 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
1650 locations->SetInAt(0, Location::RequiresRegister());
1651 if (check->HasUses()) {
1652 locations->SetOut(Location::SameAsFirstInput());
1653 }
1654}
1655
1656void InstructionCodeGeneratorARM64::VisitClinitCheck(HClinitCheck* check) {
1657 // We assume the class is not null.
1658 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
1659 check->GetLoadClass(), check, check->GetDexPc(), true);
1660 codegen_->AddSlowPath(slow_path);
1661 GenerateClassInitializationCheck(slow_path, InputRegisterAt(check, 0));
1662}
1663
Roland Levillain7f63c522015-07-13 15:54:55 +00001664static bool IsFloatingPointZeroConstant(HInstruction* instruction) {
1665 return (instruction->IsFloatConstant() && (instruction->AsFloatConstant()->GetValue() == 0.0f))
1666 || (instruction->IsDoubleConstant() && (instruction->AsDoubleConstant()->GetValue() == 0.0));
1667}
1668
Serban Constantinescu02164b32014-11-13 14:05:07 +00001669void LocationsBuilderARM64::VisitCompare(HCompare* compare) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001670 LocationSummary* locations =
Serban Constantinescu02164b32014-11-13 14:05:07 +00001671 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
1672 Primitive::Type in_type = compare->InputAt(0)->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001673 switch (in_type) {
1674 case Primitive::kPrimLong: {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001675 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001676 locations->SetInAt(1, ARM64EncodableConstantOrRegister(compare->InputAt(1), compare));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001677 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1678 break;
1679 }
1680 case Primitive::kPrimFloat:
1681 case Primitive::kPrimDouble: {
1682 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain7f63c522015-07-13 15:54:55 +00001683 locations->SetInAt(1,
1684 IsFloatingPointZeroConstant(compare->InputAt(1))
1685 ? Location::ConstantLocation(compare->InputAt(1)->AsConstant())
1686 : Location::RequiresFpuRegister());
Serban Constantinescu02164b32014-11-13 14:05:07 +00001687 locations->SetOut(Location::RequiresRegister());
1688 break;
1689 }
1690 default:
1691 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
1692 }
1693}
1694
1695void InstructionCodeGeneratorARM64::VisitCompare(HCompare* compare) {
1696 Primitive::Type in_type = compare->InputAt(0)->GetType();
1697
1698 // 0 if: left == right
1699 // 1 if: left > right
1700 // -1 if: left < right
1701 switch (in_type) {
1702 case Primitive::kPrimLong: {
1703 Register result = OutputRegister(compare);
1704 Register left = InputRegisterAt(compare, 0);
1705 Operand right = InputOperandAt(compare, 1);
1706
1707 __ Cmp(left, right);
1708 __ Cset(result, ne);
1709 __ Cneg(result, result, lt);
1710 break;
1711 }
1712 case Primitive::kPrimFloat:
1713 case Primitive::kPrimDouble: {
1714 Register result = OutputRegister(compare);
1715 FPRegister left = InputFPRegisterAt(compare, 0);
Alexandre Rames93415462015-02-17 15:08:20 +00001716 if (compare->GetLocations()->InAt(1).IsConstant()) {
Roland Levillain7f63c522015-07-13 15:54:55 +00001717 DCHECK(IsFloatingPointZeroConstant(compare->GetLocations()->InAt(1).GetConstant()));
1718 // 0.0 is the only immediate that can be encoded directly in an FCMP instruction.
Alexandre Rames93415462015-02-17 15:08:20 +00001719 __ Fcmp(left, 0.0);
1720 } else {
1721 __ Fcmp(left, InputFPRegisterAt(compare, 1));
1722 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00001723 if (compare->IsGtBias()) {
1724 __ Cset(result, ne);
1725 } else {
1726 __ Csetm(result, ne);
1727 }
1728 __ Cneg(result, result, compare->IsGtBias() ? mi : gt);
Alexandre Rames5319def2014-10-23 10:03:10 +01001729 break;
1730 }
1731 default:
1732 LOG(FATAL) << "Unimplemented compare type " << in_type;
1733 }
1734}
1735
1736void LocationsBuilderARM64::VisitCondition(HCondition* instruction) {
1737 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Roland Levillain7f63c522015-07-13 15:54:55 +00001738
1739 if (Primitive::IsFloatingPointType(instruction->InputAt(0)->GetType())) {
1740 locations->SetInAt(0, Location::RequiresFpuRegister());
1741 locations->SetInAt(1,
1742 IsFloatingPointZeroConstant(instruction->InputAt(1))
1743 ? Location::ConstantLocation(instruction->InputAt(1)->AsConstant())
1744 : Location::RequiresFpuRegister());
1745 } else {
1746 // Integer cases.
1747 locations->SetInAt(0, Location::RequiresRegister());
1748 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
1749 }
1750
Alexandre Rames5319def2014-10-23 10:03:10 +01001751 if (instruction->NeedsMaterialization()) {
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001752 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001753 }
1754}
1755
1756void InstructionCodeGeneratorARM64::VisitCondition(HCondition* instruction) {
1757 if (!instruction->NeedsMaterialization()) {
1758 return;
1759 }
1760
1761 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames5319def2014-10-23 10:03:10 +01001762 Register res = RegisterFrom(locations->Out(), instruction->GetType());
Roland Levillain7f63c522015-07-13 15:54:55 +00001763 IfCondition if_cond = instruction->GetCondition();
1764 Condition arm64_cond = ARM64Condition(if_cond);
Alexandre Rames5319def2014-10-23 10:03:10 +01001765
Roland Levillain7f63c522015-07-13 15:54:55 +00001766 if (Primitive::IsFloatingPointType(instruction->InputAt(0)->GetType())) {
1767 FPRegister lhs = InputFPRegisterAt(instruction, 0);
1768 if (locations->InAt(1).IsConstant()) {
1769 DCHECK(IsFloatingPointZeroConstant(locations->InAt(1).GetConstant()));
1770 // 0.0 is the only immediate that can be encoded directly in an FCMP instruction.
1771 __ Fcmp(lhs, 0.0);
1772 } else {
1773 __ Fcmp(lhs, InputFPRegisterAt(instruction, 1));
1774 }
1775 __ Cset(res, arm64_cond);
1776 if (instruction->IsFPConditionTrueIfNaN()) {
1777 // res = IsUnordered(arm64_cond) ? 1 : res <=> res = IsNotUnordered(arm64_cond) ? res : 1
1778 __ Csel(res, res, Operand(1), vc); // VC for "not unordered".
1779 } else if (instruction->IsFPConditionFalseIfNaN()) {
1780 // res = IsUnordered(arm64_cond) ? 0 : res <=> res = IsNotUnordered(arm64_cond) ? res : 0
1781 __ Csel(res, res, Operand(0), vc); // VC for "not unordered".
1782 }
1783 } else {
1784 // Integer cases.
1785 Register lhs = InputRegisterAt(instruction, 0);
1786 Operand rhs = InputOperandAt(instruction, 1);
1787 __ Cmp(lhs, rhs);
1788 __ Cset(res, arm64_cond);
1789 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001790}
1791
1792#define FOR_EACH_CONDITION_INSTRUCTION(M) \
1793 M(Equal) \
1794 M(NotEqual) \
1795 M(LessThan) \
1796 M(LessThanOrEqual) \
1797 M(GreaterThan) \
1798 M(GreaterThanOrEqual)
1799#define DEFINE_CONDITION_VISITORS(Name) \
1800void LocationsBuilderARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); } \
1801void InstructionCodeGeneratorARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); }
1802FOR_EACH_CONDITION_INSTRUCTION(DEFINE_CONDITION_VISITORS)
Alexandre Rames67555f72014-11-18 10:55:16 +00001803#undef DEFINE_CONDITION_VISITORS
Alexandre Rames5319def2014-10-23 10:03:10 +01001804#undef FOR_EACH_CONDITION_INSTRUCTION
1805
Zheng Xuc6667102015-05-15 16:08:45 +08001806void InstructionCodeGeneratorARM64::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
1807 DCHECK(instruction->IsDiv() || instruction->IsRem());
1808
1809 LocationSummary* locations = instruction->GetLocations();
1810 Location second = locations->InAt(1);
1811 DCHECK(second.IsConstant());
1812
1813 Register out = OutputRegister(instruction);
1814 Register dividend = InputRegisterAt(instruction, 0);
1815 int64_t imm = Int64FromConstant(second.GetConstant());
1816 DCHECK(imm == 1 || imm == -1);
1817
1818 if (instruction->IsRem()) {
1819 __ Mov(out, 0);
1820 } else {
1821 if (imm == 1) {
1822 __ Mov(out, dividend);
1823 } else {
1824 __ Neg(out, dividend);
1825 }
1826 }
1827}
1828
1829void InstructionCodeGeneratorARM64::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
1830 DCHECK(instruction->IsDiv() || instruction->IsRem());
1831
1832 LocationSummary* locations = instruction->GetLocations();
1833 Location second = locations->InAt(1);
1834 DCHECK(second.IsConstant());
1835
1836 Register out = OutputRegister(instruction);
1837 Register dividend = InputRegisterAt(instruction, 0);
1838 int64_t imm = Int64FromConstant(second.GetConstant());
Vladimir Marko80afd022015-05-19 18:08:00 +01001839 uint64_t abs_imm = static_cast<uint64_t>(std::abs(imm));
Zheng Xuc6667102015-05-15 16:08:45 +08001840 DCHECK(IsPowerOfTwo(abs_imm));
1841 int ctz_imm = CTZ(abs_imm);
1842
1843 UseScratchRegisterScope temps(GetVIXLAssembler());
1844 Register temp = temps.AcquireSameSizeAs(out);
1845
1846 if (instruction->IsDiv()) {
1847 __ Add(temp, dividend, abs_imm - 1);
1848 __ Cmp(dividend, 0);
1849 __ Csel(out, temp, dividend, lt);
1850 if (imm > 0) {
1851 __ Asr(out, out, ctz_imm);
1852 } else {
1853 __ Neg(out, Operand(out, ASR, ctz_imm));
1854 }
1855 } else {
1856 int bits = instruction->GetResultType() == Primitive::kPrimInt ? 32 : 64;
1857 __ Asr(temp, dividend, bits - 1);
1858 __ Lsr(temp, temp, bits - ctz_imm);
1859 __ Add(out, dividend, temp);
1860 __ And(out, out, abs_imm - 1);
1861 __ Sub(out, out, temp);
1862 }
1863}
1864
1865void InstructionCodeGeneratorARM64::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
1866 DCHECK(instruction->IsDiv() || instruction->IsRem());
1867
1868 LocationSummary* locations = instruction->GetLocations();
1869 Location second = locations->InAt(1);
1870 DCHECK(second.IsConstant());
1871
1872 Register out = OutputRegister(instruction);
1873 Register dividend = InputRegisterAt(instruction, 0);
1874 int64_t imm = Int64FromConstant(second.GetConstant());
1875
1876 Primitive::Type type = instruction->GetResultType();
1877 DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong);
1878
1879 int64_t magic;
1880 int shift;
1881 CalculateMagicAndShiftForDivRem(imm, type == Primitive::kPrimLong /* is_long */, &magic, &shift);
1882
1883 UseScratchRegisterScope temps(GetVIXLAssembler());
1884 Register temp = temps.AcquireSameSizeAs(out);
1885
1886 // temp = get_high(dividend * magic)
1887 __ Mov(temp, magic);
1888 if (type == Primitive::kPrimLong) {
1889 __ Smulh(temp, dividend, temp);
1890 } else {
1891 __ Smull(temp.X(), dividend, temp);
1892 __ Lsr(temp.X(), temp.X(), 32);
1893 }
1894
1895 if (imm > 0 && magic < 0) {
1896 __ Add(temp, temp, dividend);
1897 } else if (imm < 0 && magic > 0) {
1898 __ Sub(temp, temp, dividend);
1899 }
1900
1901 if (shift != 0) {
1902 __ Asr(temp, temp, shift);
1903 }
1904
1905 if (instruction->IsDiv()) {
1906 __ Sub(out, temp, Operand(temp, ASR, type == Primitive::kPrimLong ? 63 : 31));
1907 } else {
1908 __ Sub(temp, temp, Operand(temp, ASR, type == Primitive::kPrimLong ? 63 : 31));
1909 // TODO: Strength reduction for msub.
1910 Register temp_imm = temps.AcquireSameSizeAs(out);
1911 __ Mov(temp_imm, imm);
1912 __ Msub(out, temp, temp_imm, dividend);
1913 }
1914}
1915
1916void InstructionCodeGeneratorARM64::GenerateDivRemIntegral(HBinaryOperation* instruction) {
1917 DCHECK(instruction->IsDiv() || instruction->IsRem());
1918 Primitive::Type type = instruction->GetResultType();
1919 DCHECK(type == Primitive::kPrimInt || Primitive::kPrimLong);
1920
1921 LocationSummary* locations = instruction->GetLocations();
1922 Register out = OutputRegister(instruction);
1923 Location second = locations->InAt(1);
1924
1925 if (second.IsConstant()) {
1926 int64_t imm = Int64FromConstant(second.GetConstant());
1927
1928 if (imm == 0) {
1929 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
1930 } else if (imm == 1 || imm == -1) {
1931 DivRemOneOrMinusOne(instruction);
1932 } else if (IsPowerOfTwo(std::abs(imm))) {
1933 DivRemByPowerOfTwo(instruction);
1934 } else {
1935 DCHECK(imm <= -2 || imm >= 2);
1936 GenerateDivRemWithAnyConstant(instruction);
1937 }
1938 } else {
1939 Register dividend = InputRegisterAt(instruction, 0);
1940 Register divisor = InputRegisterAt(instruction, 1);
1941 if (instruction->IsDiv()) {
1942 __ Sdiv(out, dividend, divisor);
1943 } else {
1944 UseScratchRegisterScope temps(GetVIXLAssembler());
1945 Register temp = temps.AcquireSameSizeAs(out);
1946 __ Sdiv(temp, dividend, divisor);
1947 __ Msub(out, temp, divisor, dividend);
1948 }
1949 }
1950}
1951
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001952void LocationsBuilderARM64::VisitDiv(HDiv* div) {
1953 LocationSummary* locations =
1954 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
1955 switch (div->GetResultType()) {
1956 case Primitive::kPrimInt:
1957 case Primitive::kPrimLong:
1958 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08001959 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001960 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1961 break;
1962
1963 case Primitive::kPrimFloat:
1964 case Primitive::kPrimDouble:
1965 locations->SetInAt(0, Location::RequiresFpuRegister());
1966 locations->SetInAt(1, Location::RequiresFpuRegister());
1967 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1968 break;
1969
1970 default:
1971 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
1972 }
1973}
1974
1975void InstructionCodeGeneratorARM64::VisitDiv(HDiv* div) {
1976 Primitive::Type type = div->GetResultType();
1977 switch (type) {
1978 case Primitive::kPrimInt:
1979 case Primitive::kPrimLong:
Zheng Xuc6667102015-05-15 16:08:45 +08001980 GenerateDivRemIntegral(div);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001981 break;
1982
1983 case Primitive::kPrimFloat:
1984 case Primitive::kPrimDouble:
1985 __ Fdiv(OutputFPRegister(div), InputFPRegisterAt(div, 0), InputFPRegisterAt(div, 1));
1986 break;
1987
1988 default:
1989 LOG(FATAL) << "Unexpected div type " << type;
1990 }
1991}
1992
Alexandre Rames67555f72014-11-18 10:55:16 +00001993void LocationsBuilderARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00001994 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
1995 ? LocationSummary::kCallOnSlowPath
1996 : LocationSummary::kNoCall;
1997 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames67555f72014-11-18 10:55:16 +00001998 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
1999 if (instruction->HasUses()) {
2000 locations->SetOut(Location::SameAsFirstInput());
2001 }
2002}
2003
2004void InstructionCodeGeneratorARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2005 SlowPathCodeARM64* slow_path =
2006 new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM64(instruction);
2007 codegen_->AddSlowPath(slow_path);
2008 Location value = instruction->GetLocations()->InAt(0);
2009
Alexandre Rames3e69f162014-12-10 10:36:50 +00002010 Primitive::Type type = instruction->GetType();
2011
Serguei Katkov8c0676c2015-08-03 13:55:33 +06002012 if ((type == Primitive::kPrimBoolean) || !Primitive::IsIntegralType(type)) {
2013 LOG(FATAL) << "Unexpected type " << type << " for DivZeroCheck.";
Alexandre Rames3e69f162014-12-10 10:36:50 +00002014 return;
2015 }
2016
Alexandre Rames67555f72014-11-18 10:55:16 +00002017 if (value.IsConstant()) {
2018 int64_t divisor = Int64ConstantFrom(value);
2019 if (divisor == 0) {
2020 __ B(slow_path->GetEntryLabel());
2021 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00002022 // A division by a non-null constant is valid. We don't need to perform
2023 // any check, so simply fall through.
Alexandre Rames67555f72014-11-18 10:55:16 +00002024 }
2025 } else {
2026 __ Cbz(InputRegisterAt(instruction, 0), slow_path->GetEntryLabel());
2027 }
2028}
2029
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002030void LocationsBuilderARM64::VisitDoubleConstant(HDoubleConstant* constant) {
2031 LocationSummary* locations =
2032 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2033 locations->SetOut(Location::ConstantLocation(constant));
2034}
2035
2036void InstructionCodeGeneratorARM64::VisitDoubleConstant(HDoubleConstant* constant) {
2037 UNUSED(constant);
2038 // Will be generated at use site.
2039}
2040
Alexandre Rames5319def2014-10-23 10:03:10 +01002041void LocationsBuilderARM64::VisitExit(HExit* exit) {
2042 exit->SetLocations(nullptr);
2043}
2044
2045void InstructionCodeGeneratorARM64::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002046 UNUSED(exit);
Alexandre Rames5319def2014-10-23 10:03:10 +01002047}
2048
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002049void LocationsBuilderARM64::VisitFloatConstant(HFloatConstant* constant) {
2050 LocationSummary* locations =
2051 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2052 locations->SetOut(Location::ConstantLocation(constant));
2053}
2054
2055void InstructionCodeGeneratorARM64::VisitFloatConstant(HFloatConstant* constant) {
2056 UNUSED(constant);
2057 // Will be generated at use site.
2058}
2059
David Brazdilfc6a86a2015-06-26 10:33:45 +00002060void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002061 DCHECK(!successor->IsExitBlock());
2062 HBasicBlock* block = got->GetBlock();
2063 HInstruction* previous = got->GetPrevious();
2064 HLoopInformation* info = block->GetLoopInformation();
2065
David Brazdil46e2a392015-03-16 17:31:52 +00002066 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002067 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
2068 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
2069 return;
2070 }
2071 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2072 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
2073 }
2074 if (!codegen_->GoesToNextBlock(block, successor)) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002075 __ B(codegen_->GetLabelOf(successor));
2076 }
2077}
2078
David Brazdilfc6a86a2015-06-26 10:33:45 +00002079void LocationsBuilderARM64::VisitGoto(HGoto* got) {
2080 got->SetLocations(nullptr);
2081}
2082
2083void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) {
2084 HandleGoto(got, got->GetSuccessor());
2085}
2086
2087void LocationsBuilderARM64::VisitTryBoundary(HTryBoundary* try_boundary) {
2088 try_boundary->SetLocations(nullptr);
2089}
2090
2091void InstructionCodeGeneratorARM64::VisitTryBoundary(HTryBoundary* try_boundary) {
2092 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
2093 if (!successor->IsExitBlock()) {
2094 HandleGoto(try_boundary, successor);
2095 }
2096}
2097
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002098void InstructionCodeGeneratorARM64::GenerateTestAndBranch(HInstruction* instruction,
2099 vixl::Label* true_target,
2100 vixl::Label* false_target,
2101 vixl::Label* always_true_target) {
2102 HInstruction* cond = instruction->InputAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01002103 HCondition* condition = cond->AsCondition();
Alexandre Rames5319def2014-10-23 10:03:10 +01002104
Serban Constantinescu02164b32014-11-13 14:05:07 +00002105 if (cond->IsIntConstant()) {
2106 int32_t cond_value = cond->AsIntConstant()->GetValue();
2107 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002108 if (always_true_target != nullptr) {
2109 __ B(always_true_target);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002110 }
2111 return;
2112 } else {
2113 DCHECK_EQ(cond_value, 0);
2114 }
2115 } else if (!cond->IsCondition() || condition->NeedsMaterialization()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002116 // The condition instruction has been materialized, compare the output to 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002117 Location cond_val = instruction->GetLocations()->InAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01002118 DCHECK(cond_val.IsRegister());
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002119 __ Cbnz(InputRegisterAt(instruction, 0), true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01002120 } else {
2121 // The condition instruction has not been materialized, use its inputs as
2122 // the comparison and its condition as the branch condition.
Roland Levillain7f63c522015-07-13 15:54:55 +00002123 Primitive::Type type =
2124 cond->IsCondition() ? cond->InputAt(0)->GetType() : Primitive::kPrimInt;
2125
2126 if (Primitive::IsFloatingPointType(type)) {
2127 // FP compares don't like null false_targets.
2128 if (false_target == nullptr) {
2129 false_target = codegen_->GetLabelOf(instruction->AsIf()->IfFalseSuccessor());
Alexandre Rames5319def2014-10-23 10:03:10 +01002130 }
Roland Levillain7f63c522015-07-13 15:54:55 +00002131 FPRegister lhs = InputFPRegisterAt(condition, 0);
2132 if (condition->GetLocations()->InAt(1).IsConstant()) {
2133 DCHECK(IsFloatingPointZeroConstant(condition->GetLocations()->InAt(1).GetConstant()));
2134 // 0.0 is the only immediate that can be encoded directly in an FCMP instruction.
2135 __ Fcmp(lhs, 0.0);
2136 } else {
2137 __ Fcmp(lhs, InputFPRegisterAt(condition, 1));
2138 }
2139 if (condition->IsFPConditionTrueIfNaN()) {
2140 __ B(vs, true_target); // VS for unordered.
2141 } else if (condition->IsFPConditionFalseIfNaN()) {
2142 __ B(vs, false_target); // VS for unordered.
2143 }
2144 __ B(ARM64Condition(condition->GetCondition()), true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01002145 } else {
Roland Levillain7f63c522015-07-13 15:54:55 +00002146 // Integer cases.
2147 Register lhs = InputRegisterAt(condition, 0);
2148 Operand rhs = InputOperandAt(condition, 1);
2149 Condition arm64_cond = ARM64Condition(condition->GetCondition());
2150 if ((arm64_cond != gt && arm64_cond != le) && rhs.IsImmediate() && (rhs.immediate() == 0)) {
2151 switch (arm64_cond) {
2152 case eq:
2153 __ Cbz(lhs, true_target);
2154 break;
2155 case ne:
2156 __ Cbnz(lhs, true_target);
2157 break;
2158 case lt:
2159 // Test the sign bit and branch accordingly.
2160 __ Tbnz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, true_target);
2161 break;
2162 case ge:
2163 // Test the sign bit and branch accordingly.
2164 __ Tbz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, true_target);
2165 break;
2166 default:
2167 // Without the `static_cast` the compiler throws an error for
2168 // `-Werror=sign-promo`.
2169 LOG(FATAL) << "Unexpected condition: " << static_cast<int>(arm64_cond);
2170 }
2171 } else {
2172 __ Cmp(lhs, rhs);
2173 __ B(arm64_cond, true_target);
2174 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002175 }
2176 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002177 if (false_target != nullptr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002178 __ B(false_target);
2179 }
2180}
2181
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002182void LocationsBuilderARM64::VisitIf(HIf* if_instr) {
2183 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
2184 HInstruction* cond = if_instr->InputAt(0);
2185 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
2186 locations->SetInAt(0, Location::RequiresRegister());
2187 }
2188}
2189
2190void InstructionCodeGeneratorARM64::VisitIf(HIf* if_instr) {
2191 vixl::Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
2192 vixl::Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
2193 vixl::Label* always_true_target = true_target;
2194 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
2195 if_instr->IfTrueSuccessor())) {
2196 always_true_target = nullptr;
2197 }
2198 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
2199 if_instr->IfFalseSuccessor())) {
2200 false_target = nullptr;
2201 }
2202 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
2203}
2204
2205void LocationsBuilderARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
2206 LocationSummary* locations = new (GetGraph()->GetArena())
2207 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
2208 HInstruction* cond = deoptimize->InputAt(0);
2209 DCHECK(cond->IsCondition());
2210 if (cond->AsCondition()->NeedsMaterialization()) {
2211 locations->SetInAt(0, Location::RequiresRegister());
2212 }
2213}
2214
2215void InstructionCodeGeneratorARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
2216 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena())
2217 DeoptimizationSlowPathARM64(deoptimize);
2218 codegen_->AddSlowPath(slow_path);
2219 vixl::Label* slow_path_entry = slow_path->GetEntryLabel();
2220 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
2221}
2222
Alexandre Rames5319def2014-10-23 10:03:10 +01002223void LocationsBuilderARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002224 HandleFieldGet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002225}
2226
2227void InstructionCodeGeneratorARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002228 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames5319def2014-10-23 10:03:10 +01002229}
2230
2231void LocationsBuilderARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002232 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002233}
2234
2235void InstructionCodeGeneratorARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01002236 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01002237}
2238
Alexandre Rames67555f72014-11-18 10:55:16 +00002239void LocationsBuilderARM64::VisitInstanceOf(HInstanceOf* instruction) {
2240 LocationSummary::CallKind call_kind =
2241 instruction->IsClassFinal() ? LocationSummary::kNoCall : LocationSummary::kCallOnSlowPath;
2242 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
2243 locations->SetInAt(0, Location::RequiresRegister());
2244 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002245 // The output does overlap inputs.
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01002246 // Note that TypeCheckSlowPathARM64 uses this register too.
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00002247 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Alexandre Rames67555f72014-11-18 10:55:16 +00002248}
2249
2250void InstructionCodeGeneratorARM64::VisitInstanceOf(HInstanceOf* instruction) {
2251 LocationSummary* locations = instruction->GetLocations();
2252 Register obj = InputRegisterAt(instruction, 0);;
2253 Register cls = InputRegisterAt(instruction, 1);;
2254 Register out = OutputRegister(instruction);
2255
2256 vixl::Label done;
2257
2258 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002259 // Avoid null check if we know `obj` is not null.
2260 if (instruction->MustDoNullCheck()) {
2261 __ Mov(out, 0);
2262 __ Cbz(obj, &done);
2263 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002264
2265 // Compare the class of `obj` with `cls`.
Serban Constantinescu02164b32014-11-13 14:05:07 +00002266 __ Ldr(out, HeapOperand(obj, mirror::Object::ClassOffset()));
Roland Levillain4d027112015-07-01 15:41:14 +01002267 GetAssembler()->MaybeUnpoisonHeapReference(out.W());
Alexandre Rames67555f72014-11-18 10:55:16 +00002268 __ Cmp(out, cls);
2269 if (instruction->IsClassFinal()) {
2270 // Classes must be equal for the instanceof to succeed.
2271 __ Cset(out, eq);
2272 } else {
2273 // If the classes are not equal, we go into a slow path.
2274 DCHECK(locations->OnlyCallsOnSlowPath());
2275 SlowPathCodeARM64* slow_path =
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01002276 new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00002277 codegen_->AddSlowPath(slow_path);
2278 __ B(ne, slow_path->GetEntryLabel());
2279 __ Mov(out, 1);
2280 __ Bind(slow_path->GetExitLabel());
2281 }
2282
2283 __ Bind(&done);
2284}
2285
Alexandre Rames5319def2014-10-23 10:03:10 +01002286void LocationsBuilderARM64::VisitIntConstant(HIntConstant* constant) {
2287 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2288 locations->SetOut(Location::ConstantLocation(constant));
2289}
2290
2291void InstructionCodeGeneratorARM64::VisitIntConstant(HIntConstant* constant) {
2292 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002293 UNUSED(constant);
Alexandre Rames5319def2014-10-23 10:03:10 +01002294}
2295
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002296void LocationsBuilderARM64::VisitNullConstant(HNullConstant* constant) {
2297 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2298 locations->SetOut(Location::ConstantLocation(constant));
2299}
2300
2301void InstructionCodeGeneratorARM64::VisitNullConstant(HNullConstant* constant) {
2302 // Will be generated at use site.
2303 UNUSED(constant);
2304}
2305
Alexandre Rames5319def2014-10-23 10:03:10 +01002306void LocationsBuilderARM64::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002307 InvokeDexCallingConventionVisitorARM64 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002308 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Alexandre Rames5319def2014-10-23 10:03:10 +01002309}
2310
Alexandre Rames67555f72014-11-18 10:55:16 +00002311void LocationsBuilderARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
2312 HandleInvoke(invoke);
2313}
2314
2315void InstructionCodeGeneratorARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
2316 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Mathieu Chartiere401d142015-04-22 13:56:20 -07002317 Register temp = XRegisterFrom(invoke->GetLocations()->GetTemp(0));
2318 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
2319 invoke->GetImtIndex() % mirror::Class::kImtSize, kArm64PointerSize).Uint32Value();
Alexandre Rames67555f72014-11-18 10:55:16 +00002320 Location receiver = invoke->GetLocations()->InAt(0);
2321 Offset class_offset = mirror::Object::ClassOffset();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002322 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames67555f72014-11-18 10:55:16 +00002323
2324 // The register ip1 is required to be used for the hidden argument in
2325 // art_quick_imt_conflict_trampoline, so prevent VIXL from using it.
Alexandre Ramesd921d642015-04-16 15:07:16 +01002326 MacroAssembler* masm = GetVIXLAssembler();
2327 UseScratchRegisterScope scratch_scope(masm);
2328 BlockPoolsScope block_pools(masm);
Alexandre Rames67555f72014-11-18 10:55:16 +00002329 scratch_scope.Exclude(ip1);
2330 __ Mov(ip1, invoke->GetDexMethodIndex());
2331
2332 // temp = object->GetClass();
2333 if (receiver.IsStackSlot()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002334 __ Ldr(temp.W(), StackOperandFrom(receiver));
2335 __ Ldr(temp.W(), HeapOperand(temp.W(), class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002336 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002337 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002338 }
Calin Juravle77520bc2015-01-12 18:45:46 +00002339 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain4d027112015-07-01 15:41:14 +01002340 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
Alexandre Rames67555f72014-11-18 10:55:16 +00002341 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002342 __ Ldr(temp, MemOperand(temp, method_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002343 // lr = temp->GetEntryPoint();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002344 __ Ldr(lr, MemOperand(temp, entry_point.Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00002345 // lr();
2346 __ Blr(lr);
2347 DCHECK(!codegen_->IsLeafMethod());
2348 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2349}
2350
2351void LocationsBuilderARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08002352 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
2353 if (intrinsic.TryDispatch(invoke)) {
2354 return;
2355 }
2356
Alexandre Rames67555f72014-11-18 10:55:16 +00002357 HandleInvoke(invoke);
2358}
2359
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002360void LocationsBuilderARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01002361 // When we do not run baseline, explicit clinit checks triggered by static
2362 // invokes must have been pruned by art::PrepareForRegisterAllocation.
2363 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002364
Andreas Gampe878d58c2015-01-15 23:24:00 -08002365 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
2366 if (intrinsic.TryDispatch(invoke)) {
2367 return;
2368 }
2369
Alexandre Rames67555f72014-11-18 10:55:16 +00002370 HandleInvoke(invoke);
2371}
2372
Andreas Gampe878d58c2015-01-15 23:24:00 -08002373static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM64* codegen) {
2374 if (invoke->GetLocations()->Intrinsified()) {
2375 IntrinsicCodeGeneratorARM64 intrinsic(codegen);
2376 intrinsic.Dispatch(invoke);
2377 return true;
2378 }
2379 return false;
2380}
2381
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002382void CodeGeneratorARM64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00002383 // For better instruction scheduling we load the direct code pointer before the method pointer.
2384 bool direct_code_loaded = false;
2385 switch (invoke->GetCodePtrLocation()) {
2386 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
2387 // LR = code address from literal pool with link-time patch.
2388 __ Ldr(lr, DeduplicateMethodCodeLiteral(invoke->GetTargetMethod()));
2389 direct_code_loaded = true;
2390 break;
2391 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
2392 // LR = invoke->GetDirectCodePtr();
2393 __ Ldr(lr, DeduplicateUint64Literal(invoke->GetDirectCodePtr()));
2394 direct_code_loaded = true;
2395 break;
2396 default:
2397 break;
2398 }
2399
Andreas Gampe878d58c2015-01-15 23:24:00 -08002400 // Make sure that ArtMethod* is passed in kArtMethodRegister as per the calling convention.
Vladimir Marko58155012015-08-19 12:49:41 +00002401 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
2402 switch (invoke->GetMethodLoadKind()) {
2403 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
2404 // temp = thread->string_init_entrypoint
2405 __ Ldr(XRegisterFrom(temp).X(), MemOperand(tr, invoke->GetStringInitOffset()));
2406 break;
2407 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
2408 callee_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
2409 break;
2410 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
2411 // Load method address from literal pool.
2412 __ Ldr(XRegisterFrom(temp).X(), DeduplicateUint64Literal(invoke->GetMethodAddress()));
2413 break;
2414 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
2415 // Load method address from literal pool with a link-time patch.
2416 __ Ldr(XRegisterFrom(temp).X(),
2417 DeduplicateMethodAddressLiteral(invoke->GetTargetMethod()));
2418 break;
2419 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: {
2420 // Add ADRP with its PC-relative DexCache access patch.
2421 pc_rel_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
2422 invoke->GetDexCacheArrayOffset());
2423 vixl::Label* pc_insn_label = &pc_rel_dex_cache_patches_.back().label;
2424 {
2425 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
2426 __ adrp(XRegisterFrom(temp).X(), 0);
2427 }
2428 __ Bind(pc_insn_label); // Bind after ADRP.
2429 pc_rel_dex_cache_patches_.back().pc_insn_label = pc_insn_label;
2430 // Add LDR with its PC-relative DexCache access patch.
2431 pc_rel_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
2432 invoke->GetDexCacheArrayOffset());
2433 __ Ldr(XRegisterFrom(temp).X(), MemOperand(XRegisterFrom(temp).X(), 0));
2434 __ Bind(&pc_rel_dex_cache_patches_.back().label); // Bind after LDR.
2435 pc_rel_dex_cache_patches_.back().pc_insn_label = pc_insn_label;
2436 break;
Vladimir Marko9b688a02015-05-06 14:12:42 +01002437 }
Vladimir Marko58155012015-08-19 12:49:41 +00002438 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
2439 Location current_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
2440 Register reg = XRegisterFrom(temp);
2441 Register method_reg;
2442 if (current_method.IsRegister()) {
2443 method_reg = XRegisterFrom(current_method);
2444 } else {
2445 DCHECK(invoke->GetLocations()->Intrinsified());
2446 DCHECK(!current_method.IsValid());
2447 method_reg = reg;
2448 __ Ldr(reg.X(), MemOperand(sp, kCurrentMethodStackOffset));
2449 }
Vladimir Markob2c431e2015-08-19 12:45:42 +00002450
Vladimir Marko58155012015-08-19 12:49:41 +00002451 // temp = current_method->dex_cache_resolved_methods_;
Vladimir Marko05792b92015-08-03 11:56:49 +01002452 __ Ldr(reg.X(),
2453 MemOperand(method_reg.X(),
2454 ArtMethod::DexCacheResolvedMethodsOffset(kArm64WordSize).Int32Value()));
Vladimir Marko58155012015-08-19 12:49:41 +00002455 // temp = temp[index_in_cache];
2456 uint32_t index_in_cache = invoke->GetTargetMethod().dex_method_index;
2457 __ Ldr(reg.X(), MemOperand(reg.X(), GetCachePointerOffset(index_in_cache)));
2458 break;
2459 }
2460 }
2461
2462 switch (invoke->GetCodePtrLocation()) {
2463 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
2464 __ Bl(&frame_entry_label_);
2465 break;
2466 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative: {
2467 relative_call_patches_.emplace_back(invoke->GetTargetMethod());
2468 vixl::Label* label = &relative_call_patches_.back().label;
2469 __ Bl(label); // Arbitrarily branch to the instruction after BL, override at link time.
2470 __ Bind(label); // Bind after BL.
2471 break;
2472 }
2473 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
2474 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
2475 // LR prepared above for better instruction scheduling.
2476 DCHECK(direct_code_loaded);
2477 // lr()
2478 __ Blr(lr);
2479 break;
2480 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
2481 // LR = callee_method->entry_point_from_quick_compiled_code_;
2482 __ Ldr(lr, MemOperand(
2483 XRegisterFrom(callee_method).X(),
2484 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize).Int32Value()));
2485 // lr()
2486 __ Blr(lr);
2487 break;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00002488 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002489
Andreas Gampe878d58c2015-01-15 23:24:00 -08002490 DCHECK(!IsLeafMethod());
2491}
2492
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002493void CodeGeneratorARM64::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_in) {
2494 LocationSummary* locations = invoke->GetLocations();
2495 Location receiver = locations->InAt(0);
2496 Register temp = XRegisterFrom(temp_in);
2497 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
2498 invoke->GetVTableIndex(), kArm64PointerSize).SizeValue();
2499 Offset class_offset = mirror::Object::ClassOffset();
2500 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
2501
2502 BlockPoolsScope block_pools(GetVIXLAssembler());
2503
2504 DCHECK(receiver.IsRegister());
2505 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
2506 MaybeRecordImplicitNullCheck(invoke);
2507 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
2508 // temp = temp->GetMethodAt(method_offset);
2509 __ Ldr(temp, MemOperand(temp, method_offset));
2510 // lr = temp->GetEntryPoint();
2511 __ Ldr(lr, MemOperand(temp, entry_point.SizeValue()));
2512 // lr();
2513 __ Blr(lr);
2514}
2515
Vladimir Marko58155012015-08-19 12:49:41 +00002516void CodeGeneratorARM64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
2517 DCHECK(linker_patches->empty());
2518 size_t size =
2519 method_patches_.size() +
2520 call_patches_.size() +
2521 relative_call_patches_.size() +
2522 pc_rel_dex_cache_patches_.size();
2523 linker_patches->reserve(size);
2524 for (const auto& entry : method_patches_) {
2525 const MethodReference& target_method = entry.first;
2526 vixl::Literal<uint64_t>* literal = entry.second;
2527 linker_patches->push_back(LinkerPatch::MethodPatch(literal->offset(),
2528 target_method.dex_file,
2529 target_method.dex_method_index));
2530 }
2531 for (const auto& entry : call_patches_) {
2532 const MethodReference& target_method = entry.first;
2533 vixl::Literal<uint64_t>* literal = entry.second;
2534 linker_patches->push_back(LinkerPatch::CodePatch(literal->offset(),
2535 target_method.dex_file,
2536 target_method.dex_method_index));
2537 }
2538 for (const MethodPatchInfo<vixl::Label>& info : relative_call_patches_) {
2539 linker_patches->push_back(LinkerPatch::RelativeCodePatch(info.label.location() - 4u,
2540 info.target_method.dex_file,
2541 info.target_method.dex_method_index));
2542 }
2543 for (const PcRelativeDexCacheAccessInfo& info : pc_rel_dex_cache_patches_) {
2544 linker_patches->push_back(LinkerPatch::DexCacheArrayPatch(info.label.location() - 4u,
2545 &info.target_dex_file,
2546 info.pc_insn_label->location() - 4u,
2547 info.element_offset));
2548 }
2549}
2550
2551vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateUint64Literal(uint64_t value) {
2552 // Look up the literal for value.
2553 auto lb = uint64_literals_.lower_bound(value);
2554 if (lb != uint64_literals_.end() && !uint64_literals_.key_comp()(value, lb->first)) {
2555 return lb->second;
2556 }
2557 // We don't have a literal for this value, insert a new one.
2558 vixl::Literal<uint64_t>* literal = __ CreateLiteralDestroyedWithPool<uint64_t>(value);
2559 uint64_literals_.PutBefore(lb, value, literal);
2560 return literal;
2561}
2562
2563vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodLiteral(
2564 MethodReference target_method,
2565 MethodToLiteralMap* map) {
2566 // Look up the literal for target_method.
2567 auto lb = map->lower_bound(target_method);
2568 if (lb != map->end() && !map->key_comp()(target_method, lb->first)) {
2569 return lb->second;
2570 }
2571 // We don't have a literal for this method yet, insert a new one.
2572 vixl::Literal<uint64_t>* literal = __ CreateLiteralDestroyedWithPool<uint64_t>(0u);
2573 map->PutBefore(lb, target_method, literal);
2574 return literal;
2575}
2576
2577vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodAddressLiteral(
2578 MethodReference target_method) {
2579 return DeduplicateMethodLiteral(target_method, &method_patches_);
2580}
2581
2582vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodCodeLiteral(
2583 MethodReference target_method) {
2584 return DeduplicateMethodLiteral(target_method, &call_patches_);
2585}
2586
2587
Andreas Gampe878d58c2015-01-15 23:24:00 -08002588void InstructionCodeGeneratorARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01002589 // When we do not run baseline, explicit clinit checks triggered by static
2590 // invokes must have been pruned by art::PrepareForRegisterAllocation.
2591 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002592
Andreas Gampe878d58c2015-01-15 23:24:00 -08002593 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2594 return;
2595 }
2596
Alexandre Ramesd921d642015-04-16 15:07:16 +01002597 BlockPoolsScope block_pools(GetVIXLAssembler());
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002598 LocationSummary* locations = invoke->GetLocations();
2599 codegen_->GenerateStaticOrDirectCall(
2600 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00002601 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Alexandre Rames5319def2014-10-23 10:03:10 +01002602}
2603
2604void InstructionCodeGeneratorARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08002605 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
2606 return;
2607 }
2608
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002609 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Alexandre Rames5319def2014-10-23 10:03:10 +01002610 DCHECK(!codegen_->IsLeafMethod());
2611 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2612}
2613
Alexandre Rames67555f72014-11-18 10:55:16 +00002614void LocationsBuilderARM64::VisitLoadClass(HLoadClass* cls) {
2615 LocationSummary::CallKind call_kind = cls->CanCallRuntime() ? LocationSummary::kCallOnSlowPath
2616 : LocationSummary::kNoCall;
2617 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002618 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00002619 locations->SetOut(Location::RequiresRegister());
2620}
2621
2622void InstructionCodeGeneratorARM64::VisitLoadClass(HLoadClass* cls) {
2623 Register out = OutputRegister(cls);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002624 Register current_method = InputRegisterAt(cls, 0);
Alexandre Rames67555f72014-11-18 10:55:16 +00002625 if (cls->IsReferrersClass()) {
2626 DCHECK(!cls->CanCallRuntime());
2627 DCHECK(!cls->MustGenerateClinitCheck());
Mathieu Chartiere401d142015-04-22 13:56:20 -07002628 __ Ldr(out, MemOperand(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00002629 } else {
2630 DCHECK(cls->CanCallRuntime());
Vladimir Marko05792b92015-08-03 11:56:49 +01002631 MemberOffset resolved_types_offset = ArtMethod::DexCacheResolvedTypesOffset(kArm64PointerSize);
2632 __ Ldr(out.X(), MemOperand(current_method, resolved_types_offset.Int32Value()));
2633 __ Ldr(out, MemOperand(out.X(), CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
2634 // TODO: We will need a read barrier here.
Alexandre Rames67555f72014-11-18 10:55:16 +00002635
2636 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
2637 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
2638 codegen_->AddSlowPath(slow_path);
2639 __ Cbz(out, slow_path->GetEntryLabel());
2640 if (cls->MustGenerateClinitCheck()) {
2641 GenerateClassInitializationCheck(slow_path, out);
2642 } else {
2643 __ Bind(slow_path->GetExitLabel());
2644 }
2645 }
2646}
2647
David Brazdilcb1c0552015-08-04 16:22:25 +01002648static MemOperand GetExceptionTlsAddress() {
2649 return MemOperand(tr, Thread::ExceptionOffset<kArm64WordSize>().Int32Value());
2650}
2651
Alexandre Rames67555f72014-11-18 10:55:16 +00002652void LocationsBuilderARM64::VisitLoadException(HLoadException* load) {
2653 LocationSummary* locations =
2654 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
2655 locations->SetOut(Location::RequiresRegister());
2656}
2657
2658void InstructionCodeGeneratorARM64::VisitLoadException(HLoadException* instruction) {
David Brazdilcb1c0552015-08-04 16:22:25 +01002659 __ Ldr(OutputRegister(instruction), GetExceptionTlsAddress());
2660}
2661
2662void LocationsBuilderARM64::VisitClearException(HClearException* clear) {
2663 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
2664}
2665
2666void InstructionCodeGeneratorARM64::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
2667 __ Str(wzr, GetExceptionTlsAddress());
Alexandre Rames67555f72014-11-18 10:55:16 +00002668}
2669
Alexandre Rames5319def2014-10-23 10:03:10 +01002670void LocationsBuilderARM64::VisitLoadLocal(HLoadLocal* load) {
2671 load->SetLocations(nullptr);
2672}
2673
2674void InstructionCodeGeneratorARM64::VisitLoadLocal(HLoadLocal* load) {
2675 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002676 UNUSED(load);
Alexandre Rames5319def2014-10-23 10:03:10 +01002677}
2678
Alexandre Rames67555f72014-11-18 10:55:16 +00002679void LocationsBuilderARM64::VisitLoadString(HLoadString* load) {
2680 LocationSummary* locations =
2681 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01002682 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00002683 locations->SetOut(Location::RequiresRegister());
2684}
2685
2686void InstructionCodeGeneratorARM64::VisitLoadString(HLoadString* load) {
2687 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM64(load);
2688 codegen_->AddSlowPath(slow_path);
2689
2690 Register out = OutputRegister(load);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01002691 Register current_method = InputRegisterAt(load, 0);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002692 __ Ldr(out, MemOperand(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Vladimir Marko05792b92015-08-03 11:56:49 +01002693 __ Ldr(out.X(), HeapOperand(out, mirror::Class::DexCacheStringsOffset()));
2694 __ Ldr(out, MemOperand(out.X(), CodeGenerator::GetCacheOffset(load->GetStringIndex())));
2695 // TODO: We will need a read barrier here.
Alexandre Rames67555f72014-11-18 10:55:16 +00002696 __ Cbz(out, slow_path->GetEntryLabel());
2697 __ Bind(slow_path->GetExitLabel());
2698}
2699
Alexandre Rames5319def2014-10-23 10:03:10 +01002700void LocationsBuilderARM64::VisitLocal(HLocal* local) {
2701 local->SetLocations(nullptr);
2702}
2703
2704void InstructionCodeGeneratorARM64::VisitLocal(HLocal* local) {
2705 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
2706}
2707
2708void LocationsBuilderARM64::VisitLongConstant(HLongConstant* constant) {
2709 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2710 locations->SetOut(Location::ConstantLocation(constant));
2711}
2712
2713void InstructionCodeGeneratorARM64::VisitLongConstant(HLongConstant* constant) {
2714 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002715 UNUSED(constant);
Alexandre Rames5319def2014-10-23 10:03:10 +01002716}
2717
Alexandre Rames67555f72014-11-18 10:55:16 +00002718void LocationsBuilderARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
2719 LocationSummary* locations =
2720 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2721 InvokeRuntimeCallingConvention calling_convention;
2722 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
2723}
2724
2725void InstructionCodeGeneratorARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
2726 codegen_->InvokeRuntime(instruction->IsEnter()
2727 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
2728 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002729 instruction->GetDexPc(),
2730 nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002731 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00002732}
2733
Alexandre Rames42d641b2014-10-27 14:00:51 +00002734void LocationsBuilderARM64::VisitMul(HMul* mul) {
2735 LocationSummary* locations =
2736 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2737 switch (mul->GetResultType()) {
2738 case Primitive::kPrimInt:
2739 case Primitive::kPrimLong:
2740 locations->SetInAt(0, Location::RequiresRegister());
2741 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002742 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00002743 break;
2744
2745 case Primitive::kPrimFloat:
2746 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002747 locations->SetInAt(0, Location::RequiresFpuRegister());
2748 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00002749 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00002750 break;
2751
2752 default:
2753 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
2754 }
2755}
2756
2757void InstructionCodeGeneratorARM64::VisitMul(HMul* mul) {
2758 switch (mul->GetResultType()) {
2759 case Primitive::kPrimInt:
2760 case Primitive::kPrimLong:
2761 __ Mul(OutputRegister(mul), InputRegisterAt(mul, 0), InputRegisterAt(mul, 1));
2762 break;
2763
2764 case Primitive::kPrimFloat:
2765 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002766 __ Fmul(OutputFPRegister(mul), InputFPRegisterAt(mul, 0), InputFPRegisterAt(mul, 1));
Alexandre Rames42d641b2014-10-27 14:00:51 +00002767 break;
2768
2769 default:
2770 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
2771 }
2772}
2773
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002774void LocationsBuilderARM64::VisitNeg(HNeg* neg) {
2775 LocationSummary* locations =
2776 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2777 switch (neg->GetResultType()) {
2778 case Primitive::kPrimInt:
Alexandre Rames67555f72014-11-18 10:55:16 +00002779 case Primitive::kPrimLong:
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00002780 locations->SetInAt(0, ARM64EncodableConstantOrRegister(neg->InputAt(0), neg));
Alexandre Rames67555f72014-11-18 10:55:16 +00002781 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002782 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002783
2784 case Primitive::kPrimFloat:
2785 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00002786 locations->SetInAt(0, Location::RequiresFpuRegister());
2787 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002788 break;
2789
2790 default:
2791 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2792 }
2793}
2794
2795void InstructionCodeGeneratorARM64::VisitNeg(HNeg* neg) {
2796 switch (neg->GetResultType()) {
2797 case Primitive::kPrimInt:
2798 case Primitive::kPrimLong:
2799 __ Neg(OutputRegister(neg), InputOperandAt(neg, 0));
2800 break;
2801
2802 case Primitive::kPrimFloat:
2803 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00002804 __ Fneg(OutputFPRegister(neg), InputFPRegisterAt(neg, 0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002805 break;
2806
2807 default:
2808 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2809 }
2810}
2811
2812void LocationsBuilderARM64::VisitNewArray(HNewArray* instruction) {
2813 LocationSummary* locations =
2814 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2815 InvokeRuntimeCallingConvention calling_convention;
2816 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002817 locations->SetOut(LocationFrom(x0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002818 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01002819 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(2)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002820 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
Mathieu Chartiere401d142015-04-22 13:56:20 -07002821 void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002822}
2823
2824void InstructionCodeGeneratorARM64::VisitNewArray(HNewArray* instruction) {
2825 LocationSummary* locations = instruction->GetLocations();
2826 InvokeRuntimeCallingConvention calling_convention;
2827 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
2828 DCHECK(type_index.Is(w0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002829 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01002830 // Note: if heap poisoning is enabled, the entry point takes cares
2831 // of poisoning the reference.
Alexandre Rames67555f72014-11-18 10:55:16 +00002832 codegen_->InvokeRuntime(
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002833 GetThreadOffset<kArm64WordSize>(instruction->GetEntrypoint()).Int32Value(),
2834 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002835 instruction->GetDexPc(),
2836 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002837 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002838}
2839
Alexandre Rames5319def2014-10-23 10:03:10 +01002840void LocationsBuilderARM64::VisitNewInstance(HNewInstance* instruction) {
2841 LocationSummary* locations =
2842 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2843 InvokeRuntimeCallingConvention calling_convention;
2844 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01002845 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Alexandre Rames5319def2014-10-23 10:03:10 +01002846 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
Mathieu Chartiere401d142015-04-22 13:56:20 -07002847 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01002848}
2849
2850void InstructionCodeGeneratorARM64::VisitNewInstance(HNewInstance* instruction) {
2851 LocationSummary* locations = instruction->GetLocations();
2852 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
2853 DCHECK(type_index.Is(w0));
Alexandre Rames5319def2014-10-23 10:03:10 +01002854 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01002855 // Note: if heap poisoning is enabled, the entry point takes cares
2856 // of poisoning the reference.
Alexandre Rames67555f72014-11-18 10:55:16 +00002857 codegen_->InvokeRuntime(
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002858 GetThreadOffset<kArm64WordSize>(instruction->GetEntrypoint()).Int32Value(),
2859 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002860 instruction->GetDexPc(),
2861 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002862 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01002863}
2864
2865void LocationsBuilderARM64::VisitNot(HNot* instruction) {
2866 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexandre Rames4e596512014-11-07 15:56:50 +00002867 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002868 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01002869}
2870
2871void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) {
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002872 switch (instruction->GetResultType()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002873 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01002874 case Primitive::kPrimLong:
Roland Levillain55dcfb52014-10-24 18:09:09 +01002875 __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0));
Alexandre Rames5319def2014-10-23 10:03:10 +01002876 break;
2877
2878 default:
2879 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
2880 }
2881}
2882
David Brazdil66d126e2015-04-03 16:02:44 +01002883void LocationsBuilderARM64::VisitBooleanNot(HBooleanNot* instruction) {
2884 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2885 locations->SetInAt(0, Location::RequiresRegister());
2886 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2887}
2888
2889void InstructionCodeGeneratorARM64::VisitBooleanNot(HBooleanNot* instruction) {
David Brazdil66d126e2015-04-03 16:02:44 +01002890 __ Eor(OutputRegister(instruction), InputRegisterAt(instruction, 0), vixl::Operand(1));
2891}
2892
Alexandre Rames5319def2014-10-23 10:03:10 +01002893void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00002894 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2895 ? LocationSummary::kCallOnSlowPath
2896 : LocationSummary::kNoCall;
2897 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames5319def2014-10-23 10:03:10 +01002898 locations->SetInAt(0, Location::RequiresRegister());
2899 if (instruction->HasUses()) {
2900 locations->SetOut(Location::SameAsFirstInput());
2901 }
2902}
2903
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002904void InstructionCodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00002905 if (codegen_->CanMoveNullCheckToUser(instruction)) {
2906 return;
2907 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002908
Alexandre Ramesd921d642015-04-16 15:07:16 +01002909 BlockPoolsScope block_pools(GetVIXLAssembler());
2910 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002911 __ Ldr(wzr, HeapOperandFrom(obj, Offset(0)));
2912 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2913}
2914
2915void InstructionCodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002916 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM64(instruction);
2917 codegen_->AddSlowPath(slow_path);
2918
2919 LocationSummary* locations = instruction->GetLocations();
2920 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00002921
2922 __ Cbz(RegisterFrom(obj, instruction->InputAt(0)->GetType()), slow_path->GetEntryLabel());
Alexandre Rames5319def2014-10-23 10:03:10 +01002923}
2924
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002925void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00002926 if (codegen_->IsImplicitNullCheckAllowed(instruction)) {
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002927 GenerateImplicitNullCheck(instruction);
2928 } else {
2929 GenerateExplicitNullCheck(instruction);
2930 }
2931}
2932
Alexandre Rames67555f72014-11-18 10:55:16 +00002933void LocationsBuilderARM64::VisitOr(HOr* instruction) {
2934 HandleBinaryOp(instruction);
2935}
2936
2937void InstructionCodeGeneratorARM64::VisitOr(HOr* instruction) {
2938 HandleBinaryOp(instruction);
2939}
2940
Alexandre Rames3e69f162014-12-10 10:36:50 +00002941void LocationsBuilderARM64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
2942 LOG(FATAL) << "Unreachable";
2943}
2944
2945void InstructionCodeGeneratorARM64::VisitParallelMove(HParallelMove* instruction) {
2946 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
2947}
2948
Alexandre Rames5319def2014-10-23 10:03:10 +01002949void LocationsBuilderARM64::VisitParameterValue(HParameterValue* instruction) {
2950 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2951 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2952 if (location.IsStackSlot()) {
2953 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2954 } else if (location.IsDoubleStackSlot()) {
2955 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2956 }
2957 locations->SetOut(location);
2958}
2959
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002960void InstructionCodeGeneratorARM64::VisitParameterValue(
2961 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002962 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002963}
2964
2965void LocationsBuilderARM64::VisitCurrentMethod(HCurrentMethod* instruction) {
2966 LocationSummary* locations =
2967 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002968 locations->SetOut(LocationFrom(kArtMethodRegister));
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01002969}
2970
2971void InstructionCodeGeneratorARM64::VisitCurrentMethod(
2972 HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
2973 // Nothing to do, the method is already at its location.
Alexandre Rames5319def2014-10-23 10:03:10 +01002974}
2975
2976void LocationsBuilderARM64::VisitPhi(HPhi* instruction) {
2977 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2978 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2979 locations->SetInAt(i, Location::Any());
2980 }
2981 locations->SetOut(Location::Any());
2982}
2983
2984void InstructionCodeGeneratorARM64::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002985 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002986 LOG(FATAL) << "Unreachable";
2987}
2988
Serban Constantinescu02164b32014-11-13 14:05:07 +00002989void LocationsBuilderARM64::VisitRem(HRem* rem) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002990 Primitive::Type type = rem->GetResultType();
Alexandre Rames542361f2015-01-29 16:57:31 +00002991 LocationSummary::CallKind call_kind =
2992 Primitive::IsFloatingPointType(type) ? LocationSummary::kCall : LocationSummary::kNoCall;
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002993 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2994
2995 switch (type) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002996 case Primitive::kPrimInt:
2997 case Primitive::kPrimLong:
2998 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08002999 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00003000 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3001 break;
3002
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003003 case Primitive::kPrimFloat:
3004 case Primitive::kPrimDouble: {
3005 InvokeRuntimeCallingConvention calling_convention;
3006 locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0)));
3007 locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1)));
3008 locations->SetOut(calling_convention.GetReturnLocation(type));
3009
3010 break;
3011 }
3012
Serban Constantinescu02164b32014-11-13 14:05:07 +00003013 default:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003014 LOG(FATAL) << "Unexpected rem type " << type;
Serban Constantinescu02164b32014-11-13 14:05:07 +00003015 }
3016}
3017
3018void InstructionCodeGeneratorARM64::VisitRem(HRem* rem) {
3019 Primitive::Type type = rem->GetResultType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003020
Serban Constantinescu02164b32014-11-13 14:05:07 +00003021 switch (type) {
3022 case Primitive::kPrimInt:
3023 case Primitive::kPrimLong: {
Zheng Xuc6667102015-05-15 16:08:45 +08003024 GenerateDivRemIntegral(rem);
Serban Constantinescu02164b32014-11-13 14:05:07 +00003025 break;
3026 }
3027
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003028 case Primitive::kPrimFloat:
3029 case Primitive::kPrimDouble: {
3030 int32_t entry_offset = (type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pFmodf)
3031 : QUICK_ENTRY_POINT(pFmod);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003032 codegen_->InvokeRuntime(entry_offset, rem, rem->GetDexPc(), nullptr);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003033 break;
3034 }
3035
Serban Constantinescu02164b32014-11-13 14:05:07 +00003036 default:
3037 LOG(FATAL) << "Unexpected rem type " << type;
3038 }
3039}
3040
Calin Juravle27df7582015-04-17 19:12:31 +01003041void LocationsBuilderARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
3042 memory_barrier->SetLocations(nullptr);
3043}
3044
3045void InstructionCodeGeneratorARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
3046 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
3047}
3048
Alexandre Rames5319def2014-10-23 10:03:10 +01003049void LocationsBuilderARM64::VisitReturn(HReturn* instruction) {
3050 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3051 Primitive::Type return_type = instruction->InputAt(0)->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003052 locations->SetInAt(0, ARM64ReturnLocation(return_type));
Alexandre Rames5319def2014-10-23 10:03:10 +01003053}
3054
3055void InstructionCodeGeneratorARM64::VisitReturn(HReturn* instruction) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003056 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003057 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01003058}
3059
3060void LocationsBuilderARM64::VisitReturnVoid(HReturnVoid* instruction) {
3061 instruction->SetLocations(nullptr);
3062}
3063
3064void InstructionCodeGeneratorARM64::VisitReturnVoid(HReturnVoid* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003065 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003066 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01003067}
3068
Serban Constantinescu02164b32014-11-13 14:05:07 +00003069void LocationsBuilderARM64::VisitShl(HShl* shl) {
3070 HandleShift(shl);
3071}
3072
3073void InstructionCodeGeneratorARM64::VisitShl(HShl* shl) {
3074 HandleShift(shl);
3075}
3076
3077void LocationsBuilderARM64::VisitShr(HShr* shr) {
3078 HandleShift(shr);
3079}
3080
3081void InstructionCodeGeneratorARM64::VisitShr(HShr* shr) {
3082 HandleShift(shr);
3083}
3084
Alexandre Rames5319def2014-10-23 10:03:10 +01003085void LocationsBuilderARM64::VisitStoreLocal(HStoreLocal* store) {
3086 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
3087 Primitive::Type field_type = store->InputAt(1)->GetType();
3088 switch (field_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003089 case Primitive::kPrimNot:
Alexandre Rames5319def2014-10-23 10:03:10 +01003090 case Primitive::kPrimBoolean:
3091 case Primitive::kPrimByte:
3092 case Primitive::kPrimChar:
3093 case Primitive::kPrimShort:
3094 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003095 case Primitive::kPrimFloat:
Alexandre Rames5319def2014-10-23 10:03:10 +01003096 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
3097 break;
3098
3099 case Primitive::kPrimLong:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003100 case Primitive::kPrimDouble:
Alexandre Rames5319def2014-10-23 10:03:10 +01003101 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
3102 break;
3103
3104 default:
3105 LOG(FATAL) << "Unimplemented local type " << field_type;
3106 }
3107}
3108
3109void InstructionCodeGeneratorARM64::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003110 UNUSED(store);
Alexandre Rames5319def2014-10-23 10:03:10 +01003111}
3112
3113void LocationsBuilderARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003114 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003115}
3116
3117void InstructionCodeGeneratorARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003118 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003119}
3120
Alexandre Rames67555f72014-11-18 10:55:16 +00003121void LocationsBuilderARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003122 HandleFieldGet(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00003123}
3124
3125void InstructionCodeGeneratorARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003126 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames67555f72014-11-18 10:55:16 +00003127}
3128
3129void LocationsBuilderARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003130 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003131}
3132
Alexandre Rames67555f72014-11-18 10:55:16 +00003133void InstructionCodeGeneratorARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003134 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01003135}
3136
3137void LocationsBuilderARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
3138 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3139}
3140
3141void InstructionCodeGeneratorARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003142 HBasicBlock* block = instruction->GetBlock();
3143 if (block->GetLoopInformation() != nullptr) {
3144 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3145 // The back edge will generate the suspend check.
3146 return;
3147 }
3148 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3149 // The goto will generate the suspend check.
3150 return;
3151 }
3152 GenerateSuspendCheck(instruction, nullptr);
Alexandre Rames5319def2014-10-23 10:03:10 +01003153}
3154
3155void LocationsBuilderARM64::VisitTemporary(HTemporary* temp) {
3156 temp->SetLocations(nullptr);
3157}
3158
3159void InstructionCodeGeneratorARM64::VisitTemporary(HTemporary* temp) {
3160 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07003161 UNUSED(temp);
Alexandre Rames5319def2014-10-23 10:03:10 +01003162}
3163
Alexandre Rames67555f72014-11-18 10:55:16 +00003164void LocationsBuilderARM64::VisitThrow(HThrow* instruction) {
3165 LocationSummary* locations =
3166 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3167 InvokeRuntimeCallingConvention calling_convention;
3168 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
3169}
3170
3171void InstructionCodeGeneratorARM64::VisitThrow(HThrow* instruction) {
3172 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003173 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003174 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00003175}
3176
3177void LocationsBuilderARM64::VisitTypeConversion(HTypeConversion* conversion) {
3178 LocationSummary* locations =
3179 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
3180 Primitive::Type input_type = conversion->GetInputType();
3181 Primitive::Type result_type = conversion->GetResultType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00003182 DCHECK_NE(input_type, result_type);
Alexandre Rames67555f72014-11-18 10:55:16 +00003183 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
3184 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
3185 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
3186 }
3187
Alexandre Rames542361f2015-01-29 16:57:31 +00003188 if (Primitive::IsFloatingPointType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003189 locations->SetInAt(0, Location::RequiresFpuRegister());
3190 } else {
3191 locations->SetInAt(0, Location::RequiresRegister());
3192 }
3193
Alexandre Rames542361f2015-01-29 16:57:31 +00003194 if (Primitive::IsFloatingPointType(result_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003195 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3196 } else {
3197 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3198 }
3199}
3200
3201void InstructionCodeGeneratorARM64::VisitTypeConversion(HTypeConversion* conversion) {
3202 Primitive::Type result_type = conversion->GetResultType();
3203 Primitive::Type input_type = conversion->GetInputType();
3204
3205 DCHECK_NE(input_type, result_type);
3206
Alexandre Rames542361f2015-01-29 16:57:31 +00003207 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003208 int result_size = Primitive::ComponentSize(result_type);
3209 int input_size = Primitive::ComponentSize(input_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00003210 int min_size = std::min(result_size, input_size);
Serban Constantinescu02164b32014-11-13 14:05:07 +00003211 Register output = OutputRegister(conversion);
3212 Register source = InputRegisterAt(conversion, 0);
Alexandre Rames3e69f162014-12-10 10:36:50 +00003213 if ((result_type == Primitive::kPrimChar) && (input_size < result_size)) {
3214 __ Ubfx(output, source, 0, result_size * kBitsPerByte);
Alexandre Rames4dff2fd2015-08-20 13:36:35 +01003215 } else if (result_type == Primitive::kPrimInt && input_type == Primitive::kPrimLong) {
3216 // 'int' values are used directly as W registers, discarding the top
3217 // bits, so we don't need to sign-extend and can just perform a move.
3218 // We do not pass the `kDiscardForSameWReg` argument to force clearing the
3219 // top 32 bits of the target register. We theoretically could leave those
3220 // bits unchanged, but we would have to make sure that no code uses a
3221 // 32bit input value as a 64bit value assuming that the top 32 bits are
3222 // zero.
3223 __ Mov(output.W(), source.W());
Alexandre Rames3e69f162014-12-10 10:36:50 +00003224 } else if ((result_type == Primitive::kPrimChar) ||
3225 ((input_type == Primitive::kPrimChar) && (result_size > input_size))) {
3226 __ Ubfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00003227 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00003228 __ Sbfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00003229 }
Alexandre Rames542361f2015-01-29 16:57:31 +00003230 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003231 __ Scvtf(OutputFPRegister(conversion), InputRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00003232 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003233 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
3234 __ Fcvtzs(OutputRegister(conversion), InputFPRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00003235 } else if (Primitive::IsFloatingPointType(result_type) &&
3236 Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003237 __ Fcvt(OutputFPRegister(conversion), InputFPRegisterAt(conversion, 0));
3238 } else {
3239 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
3240 << " to " << result_type;
Alexandre Rames67555f72014-11-18 10:55:16 +00003241 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00003242}
Alexandre Rames67555f72014-11-18 10:55:16 +00003243
Serban Constantinescu02164b32014-11-13 14:05:07 +00003244void LocationsBuilderARM64::VisitUShr(HUShr* ushr) {
3245 HandleShift(ushr);
3246}
3247
3248void InstructionCodeGeneratorARM64::VisitUShr(HUShr* ushr) {
3249 HandleShift(ushr);
Alexandre Rames67555f72014-11-18 10:55:16 +00003250}
3251
3252void LocationsBuilderARM64::VisitXor(HXor* instruction) {
3253 HandleBinaryOp(instruction);
3254}
3255
3256void InstructionCodeGeneratorARM64::VisitXor(HXor* instruction) {
3257 HandleBinaryOp(instruction);
3258}
3259
Calin Juravleb1498f62015-02-16 13:13:29 +00003260void LocationsBuilderARM64::VisitBoundType(HBoundType* instruction) {
3261 // Nothing to do, this should be removed during prepare for register allocator.
3262 UNUSED(instruction);
3263 LOG(FATAL) << "Unreachable";
3264}
3265
3266void InstructionCodeGeneratorARM64::VisitBoundType(HBoundType* instruction) {
3267 // Nothing to do, this should be removed during prepare for register allocator.
3268 UNUSED(instruction);
3269 LOG(FATAL) << "Unreachable";
3270}
3271
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +01003272void LocationsBuilderARM64::VisitFakeString(HFakeString* instruction) {
3273 DCHECK(codegen_->IsBaseline());
3274 LocationSummary* locations =
3275 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3276 locations->SetOut(Location::ConstantLocation(GetGraph()->GetNullConstant()));
3277}
3278
3279void InstructionCodeGeneratorARM64::VisitFakeString(HFakeString* instruction ATTRIBUTE_UNUSED) {
3280 DCHECK(codegen_->IsBaseline());
3281 // Will be generated at use site.
3282}
3283
Alexandre Rames67555f72014-11-18 10:55:16 +00003284#undef __
3285#undef QUICK_ENTRY_POINT
3286
Alexandre Rames5319def2014-10-23 10:03:10 +01003287} // namespace arm64
3288} // namespace art