blob: ffb9b794fc47dc75c14877f8d3ccc0fe6a13b58d [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"
Vladimir Marko58155012015-08-19 12:49:41 +000022#include "compiled_method.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010023#include "entrypoints/quick/quick_entrypoints.h"
Andreas Gampe1cc7dba2014-12-17 18:43:01 -080024#include "entrypoints/quick/quick_entrypoints_enum.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010025#include "gc/accounting/card_table.h"
Andreas Gampe878d58c2015-01-15 23:24:00 -080026#include "intrinsics.h"
27#include "intrinsics_arm64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010028#include "mirror/array-inl.h"
Mathieu Chartiere401d142015-04-22 13:56:20 -070029#include "mirror/class-inl.h"
Calin Juravlecd6dffe2015-01-08 17:35:35 +000030#include "offsets.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010031#include "thread.h"
32#include "utils/arm64/assembler_arm64.h"
33#include "utils/assembler.h"
34#include "utils/stack_checks.h"
35
36
37using namespace vixl; // NOLINT(build/namespaces)
38
39#ifdef __
40#error "ARM64 Codegen VIXL macro-assembler macro already defined."
41#endif
42
Alexandre Rames5319def2014-10-23 10:03:10 +010043namespace art {
44
45namespace arm64 {
46
Andreas Gampe878d58c2015-01-15 23:24:00 -080047using helpers::CPURegisterFrom;
48using helpers::DRegisterFrom;
49using helpers::FPRegisterFrom;
50using helpers::HeapOperand;
51using helpers::HeapOperandFrom;
52using helpers::InputCPURegisterAt;
53using helpers::InputFPRegisterAt;
54using helpers::InputRegisterAt;
55using helpers::InputOperandAt;
56using helpers::Int64ConstantFrom;
Andreas Gampe878d58c2015-01-15 23:24:00 -080057using helpers::LocationFrom;
58using helpers::OperandFromMemOperand;
59using helpers::OutputCPURegister;
60using helpers::OutputFPRegister;
61using helpers::OutputRegister;
62using helpers::RegisterFrom;
63using helpers::StackOperandFrom;
64using helpers::VIXLRegCodeFromART;
65using helpers::WRegisterFrom;
66using helpers::XRegisterFrom;
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +000067using helpers::ARM64EncodableConstantOrRegister;
Zheng Xuda403092015-04-24 17:35:39 +080068using helpers::ArtVixlRegCodeCoherentForRegSet;
Andreas Gampe878d58c2015-01-15 23:24:00 -080069
Alexandre Rames5319def2014-10-23 10:03:10 +010070static constexpr int kCurrentMethodStackOffset = 0;
71
Alexandre Rames5319def2014-10-23 10:03:10 +010072inline Condition ARM64Condition(IfCondition cond) {
73 switch (cond) {
74 case kCondEQ: return eq;
75 case kCondNE: return ne;
76 case kCondLT: return lt;
77 case kCondLE: return le;
78 case kCondGT: return gt;
79 case kCondGE: return ge;
Aart Bike9f37602015-10-09 11:15:55 -070080 case kCondB: return lo;
81 case kCondBE: return ls;
82 case kCondA: return hi;
83 case kCondAE: return hs;
Alexandre Rames5319def2014-10-23 10:03:10 +010084 }
Roland Levillain7f63c522015-07-13 15:54:55 +000085 LOG(FATAL) << "Unreachable";
86 UNREACHABLE();
Alexandre Rames5319def2014-10-23 10:03:10 +010087}
88
Alexandre Ramesa89086e2014-11-07 17:13:25 +000089Location ARM64ReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +000090 // Note that in practice, `LocationFrom(x0)` and `LocationFrom(w0)` create the
91 // same Location object, and so do `LocationFrom(d0)` and `LocationFrom(s0)`,
92 // but we use the exact registers for clarity.
93 if (return_type == Primitive::kPrimFloat) {
94 return LocationFrom(s0);
95 } else if (return_type == Primitive::kPrimDouble) {
96 return LocationFrom(d0);
97 } else if (return_type == Primitive::kPrimLong) {
98 return LocationFrom(x0);
Nicolas Geoffray925e5622015-06-03 12:23:32 +010099 } else if (return_type == Primitive::kPrimVoid) {
100 return Location::NoLocation();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000101 } else {
102 return LocationFrom(w0);
103 }
104}
105
Alexandre Rames5319def2014-10-23 10:03:10 +0100106Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000107 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100108}
109
Alexandre Rames67555f72014-11-18 10:55:16 +0000110#define __ down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler()->
111#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArm64WordSize, x).Int32Value()
Alexandre Rames5319def2014-10-23 10:03:10 +0100112
Zheng Xuda403092015-04-24 17:35:39 +0800113// Calculate memory accessing operand for save/restore live registers.
114static void SaveRestoreLiveRegistersHelper(CodeGenerator* codegen,
115 RegisterSet* register_set,
116 int64_t spill_offset,
117 bool is_save) {
118 DCHECK(ArtVixlRegCodeCoherentForRegSet(register_set->GetCoreRegisters(),
119 codegen->GetNumberOfCoreRegisters(),
120 register_set->GetFloatingPointRegisters(),
121 codegen->GetNumberOfFloatingPointRegisters()));
122
123 CPURegList core_list = CPURegList(CPURegister::kRegister, kXRegSize,
124 register_set->GetCoreRegisters() & (~callee_saved_core_registers.list()));
Nicolas Geoffray75d5b9b2015-10-05 07:40:35 +0000125 CPURegList fp_list = CPURegList(CPURegister::kFPRegister, kDRegSize,
126 register_set->GetFloatingPointRegisters() & (~callee_saved_fp_registers.list()));
Zheng Xuda403092015-04-24 17:35:39 +0800127
128 MacroAssembler* masm = down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler();
129 UseScratchRegisterScope temps(masm);
130
131 Register base = masm->StackPointer();
132 int64_t core_spill_size = core_list.TotalSizeInBytes();
133 int64_t fp_spill_size = fp_list.TotalSizeInBytes();
134 int64_t reg_size = kXRegSizeInBytes;
135 int64_t max_ls_pair_offset = spill_offset + core_spill_size + fp_spill_size - 2 * reg_size;
136 uint32_t ls_access_size = WhichPowerOf2(reg_size);
137 if (((core_list.Count() > 1) || (fp_list.Count() > 1)) &&
138 !masm->IsImmLSPair(max_ls_pair_offset, ls_access_size)) {
139 // If the offset does not fit in the instruction's immediate field, use an alternate register
140 // to compute the base address(float point registers spill base address).
141 Register new_base = temps.AcquireSameSizeAs(base);
142 __ Add(new_base, base, Operand(spill_offset + core_spill_size));
143 base = new_base;
144 spill_offset = -core_spill_size;
145 int64_t new_max_ls_pair_offset = fp_spill_size - 2 * reg_size;
146 DCHECK(masm->IsImmLSPair(spill_offset, ls_access_size));
147 DCHECK(masm->IsImmLSPair(new_max_ls_pair_offset, ls_access_size));
148 }
149
150 if (is_save) {
151 __ StoreCPURegList(core_list, MemOperand(base, spill_offset));
152 __ StoreCPURegList(fp_list, MemOperand(base, spill_offset + core_spill_size));
153 } else {
154 __ LoadCPURegList(core_list, MemOperand(base, spill_offset));
155 __ LoadCPURegList(fp_list, MemOperand(base, spill_offset + core_spill_size));
156 }
157}
158
159void SlowPathCodeARM64::SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
160 RegisterSet* register_set = locations->GetLiveRegisters();
161 size_t stack_offset = codegen->GetFirstRegisterSlotInSlowPath();
162 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
163 if (!codegen->IsCoreCalleeSaveRegister(i) && register_set->ContainsCoreRegister(i)) {
164 // If the register holds an object, update the stack mask.
165 if (locations->RegisterContainsObject(i)) {
166 locations->SetStackBit(stack_offset / kVRegSize);
167 }
168 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
169 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
170 saved_core_stack_offsets_[i] = stack_offset;
171 stack_offset += kXRegSizeInBytes;
172 }
173 }
174
175 for (size_t i = 0, e = codegen->GetNumberOfFloatingPointRegisters(); i < e; ++i) {
176 if (!codegen->IsFloatingPointCalleeSaveRegister(i) &&
177 register_set->ContainsFloatingPointRegister(i)) {
178 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
179 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
180 saved_fpu_stack_offsets_[i] = stack_offset;
181 stack_offset += kDRegSizeInBytes;
182 }
183 }
184
185 SaveRestoreLiveRegistersHelper(codegen, register_set,
186 codegen->GetFirstRegisterSlotInSlowPath(), true /* is_save */);
187}
188
189void SlowPathCodeARM64::RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
190 RegisterSet* register_set = locations->GetLiveRegisters();
191 SaveRestoreLiveRegistersHelper(codegen, register_set,
192 codegen->GetFirstRegisterSlotInSlowPath(), false /* is_save */);
193}
194
Alexandre Rames5319def2014-10-23 10:03:10 +0100195class BoundsCheckSlowPathARM64 : public SlowPathCodeARM64 {
196 public:
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100197 explicit BoundsCheckSlowPathARM64(HBoundsCheck* instruction) : instruction_(instruction) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100198
Alexandre Rames67555f72014-11-18 10:55:16 +0000199 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100200 LocationSummary* locations = instruction_->GetLocations();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000201 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100202
Alexandre Rames5319def2014-10-23 10:03:10 +0100203 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000204 if (instruction_->CanThrowIntoCatchBlock()) {
205 // Live registers will be restored in the catch block if caught.
206 SaveLiveRegisters(codegen, instruction_->GetLocations());
207 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000208 // We're moving two locations to locations that could overlap, so we need a parallel
209 // move resolver.
210 InvokeRuntimeCallingConvention calling_convention;
211 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100212 locations->InAt(0), LocationFrom(calling_convention.GetRegisterAt(0)), Primitive::kPrimInt,
213 locations->InAt(1), LocationFrom(calling_convention.GetRegisterAt(1)), Primitive::kPrimInt);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000214 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000215 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800216 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100217 }
218
Alexandre Rames8158f282015-08-07 10:26:17 +0100219 bool IsFatal() const OVERRIDE { return true; }
220
Alexandre Rames9931f312015-06-19 14:47:01 +0100221 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathARM64"; }
222
Alexandre Rames5319def2014-10-23 10:03:10 +0100223 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000224 HBoundsCheck* const instruction_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000225
Alexandre Rames5319def2014-10-23 10:03:10 +0100226 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM64);
227};
228
Alexandre Rames67555f72014-11-18 10:55:16 +0000229class DivZeroCheckSlowPathARM64 : public SlowPathCodeARM64 {
230 public:
231 explicit DivZeroCheckSlowPathARM64(HDivZeroCheck* instruction) : instruction_(instruction) {}
232
233 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
234 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
235 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000236 if (instruction_->CanThrowIntoCatchBlock()) {
237 // Live registers will be restored in the catch block if caught.
238 SaveLiveRegisters(codegen, instruction_->GetLocations());
239 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000240 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000241 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800242 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000243 }
244
Alexandre Rames8158f282015-08-07 10:26:17 +0100245 bool IsFatal() const OVERRIDE { return true; }
246
Alexandre Rames9931f312015-06-19 14:47:01 +0100247 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathARM64"; }
248
Alexandre Rames67555f72014-11-18 10:55:16 +0000249 private:
250 HDivZeroCheck* const instruction_;
251 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM64);
252};
253
254class LoadClassSlowPathARM64 : public SlowPathCodeARM64 {
255 public:
256 LoadClassSlowPathARM64(HLoadClass* cls,
257 HInstruction* at,
258 uint32_t dex_pc,
259 bool do_clinit)
260 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
261 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
262 }
263
264 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
265 LocationSummary* locations = at_->GetLocations();
266 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
267
268 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000269 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000270
271 InvokeRuntimeCallingConvention calling_convention;
272 __ Mov(calling_convention.GetRegisterAt(0).W(), cls_->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000273 int32_t entry_point_offset = do_clinit_ ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
274 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000275 arm64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800276 if (do_clinit_) {
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100277 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800278 } else {
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100279 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800280 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000281
282 // Move the class to the desired location.
283 Location out = locations->Out();
284 if (out.IsValid()) {
285 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
286 Primitive::Type type = at_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000287 arm64_codegen->MoveLocation(out, calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000288 }
289
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000290 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000291 __ B(GetExitLabel());
292 }
293
Alexandre Rames9931f312015-06-19 14:47:01 +0100294 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathARM64"; }
295
Alexandre Rames67555f72014-11-18 10:55:16 +0000296 private:
297 // The class this slow path will load.
298 HLoadClass* const cls_;
299
300 // The instruction where this slow path is happening.
301 // (Might be the load class or an initialization check).
302 HInstruction* const at_;
303
304 // The dex PC of `at_`.
305 const uint32_t dex_pc_;
306
307 // Whether to initialize the class.
308 const bool do_clinit_;
309
310 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM64);
311};
312
313class LoadStringSlowPathARM64 : public SlowPathCodeARM64 {
314 public:
315 explicit LoadStringSlowPathARM64(HLoadString* instruction) : instruction_(instruction) {}
316
317 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
318 LocationSummary* locations = instruction_->GetLocations();
319 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
320 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
321
322 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000323 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000324
325 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800326 __ Mov(calling_convention.GetRegisterAt(0).W(), instruction_->GetStringIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000327 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000328 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100329 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000330 Primitive::Type type = instruction_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000331 arm64_codegen->MoveLocation(locations->Out(), calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000332
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000333 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000334 __ B(GetExitLabel());
335 }
336
Alexandre Rames9931f312015-06-19 14:47:01 +0100337 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathARM64"; }
338
Alexandre Rames67555f72014-11-18 10:55:16 +0000339 private:
340 HLoadString* const instruction_;
341
342 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM64);
343};
344
Alexandre Rames5319def2014-10-23 10:03:10 +0100345class NullCheckSlowPathARM64 : public SlowPathCodeARM64 {
346 public:
347 explicit NullCheckSlowPathARM64(HNullCheck* instr) : instruction_(instr) {}
348
Alexandre Rames67555f72014-11-18 10:55:16 +0000349 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
350 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100351 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000352 if (instruction_->CanThrowIntoCatchBlock()) {
353 // Live registers will be restored in the catch block if caught.
354 SaveLiveRegisters(codegen, instruction_->GetLocations());
355 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000356 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000357 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800358 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100359 }
360
Alexandre Rames8158f282015-08-07 10:26:17 +0100361 bool IsFatal() const OVERRIDE { return true; }
362
Alexandre Rames9931f312015-06-19 14:47:01 +0100363 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathARM64"; }
364
Alexandre Rames5319def2014-10-23 10:03:10 +0100365 private:
366 HNullCheck* const instruction_;
367
368 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM64);
369};
370
371class SuspendCheckSlowPathARM64 : public SlowPathCodeARM64 {
372 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100373 SuspendCheckSlowPathARM64(HSuspendCheck* instruction, HBasicBlock* successor)
Alexandre Rames5319def2014-10-23 10:03:10 +0100374 : instruction_(instruction), successor_(successor) {}
375
Alexandre Rames67555f72014-11-18 10:55:16 +0000376 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
377 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100378 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000379 SaveLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000380 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000381 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800382 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000383 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000384 if (successor_ == nullptr) {
385 __ B(GetReturnLabel());
386 } else {
387 __ B(arm64_codegen->GetLabelOf(successor_));
388 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100389 }
390
391 vixl::Label* GetReturnLabel() {
392 DCHECK(successor_ == nullptr);
393 return &return_label_;
394 }
395
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100396 HBasicBlock* GetSuccessor() const {
397 return successor_;
398 }
399
Alexandre Rames9931f312015-06-19 14:47:01 +0100400 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathARM64"; }
401
Alexandre Rames5319def2014-10-23 10:03:10 +0100402 private:
403 HSuspendCheck* const instruction_;
404 // If not null, the block to branch to after the suspend check.
405 HBasicBlock* const successor_;
406
407 // If `successor_` is null, the label to branch to after the suspend check.
408 vixl::Label return_label_;
409
410 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM64);
411};
412
Alexandre Rames67555f72014-11-18 10:55:16 +0000413class TypeCheckSlowPathARM64 : public SlowPathCodeARM64 {
414 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000415 TypeCheckSlowPathARM64(HInstruction* instruction, bool is_fatal)
416 : instruction_(instruction), is_fatal_(is_fatal) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000417
418 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000419 LocationSummary* locations = instruction_->GetLocations();
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100420 Location class_to_check = locations->InAt(1);
421 Location object_class = instruction_->IsCheckCast() ? locations->GetTemp(0)
422 : locations->Out();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000423 DCHECK(instruction_->IsCheckCast()
424 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
425 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100426 uint32_t dex_pc = instruction_->GetDexPc();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000427
Alexandre Rames67555f72014-11-18 10:55:16 +0000428 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000429
430 if (instruction_->IsCheckCast()) {
431 // The codegen for the instruction overwrites `temp`, so put it back in place.
432 Register obj = InputRegisterAt(instruction_, 0);
433 Register temp = WRegisterFrom(locations->GetTemp(0));
434 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
435 __ Ldr(temp, HeapOperand(obj, class_offset));
436 arm64_codegen->GetAssembler()->MaybeUnpoisonHeapReference(temp);
437 }
438
439 if (!is_fatal_) {
440 SaveLiveRegisters(codegen, locations);
441 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000442
443 // We're moving two locations to locations that could overlap, so we need a parallel
444 // move resolver.
445 InvokeRuntimeCallingConvention calling_convention;
446 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100447 class_to_check, LocationFrom(calling_convention.GetRegisterAt(0)), Primitive::kPrimNot,
448 object_class, LocationFrom(calling_convention.GetRegisterAt(1)), Primitive::kPrimNot);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000449
450 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000451 arm64_codegen->InvokeRuntime(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100452 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc, this);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000453 Primitive::Type ret_type = instruction_->GetType();
454 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
455 arm64_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800456 CheckEntrypointTypes<kQuickInstanceofNonTrivial, uint32_t,
457 const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000458 } else {
459 DCHECK(instruction_->IsCheckCast());
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100460 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800461 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000462 }
463
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000464 if (!is_fatal_) {
465 RestoreLiveRegisters(codegen, locations);
466 __ B(GetExitLabel());
467 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000468 }
469
Alexandre Rames9931f312015-06-19 14:47:01 +0100470 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathARM64"; }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000471 bool IsFatal() const { return is_fatal_; }
Alexandre Rames9931f312015-06-19 14:47:01 +0100472
Alexandre Rames67555f72014-11-18 10:55:16 +0000473 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000474 HInstruction* const instruction_;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000475 const bool is_fatal_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000476
Alexandre Rames67555f72014-11-18 10:55:16 +0000477 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM64);
478};
479
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700480class DeoptimizationSlowPathARM64 : public SlowPathCodeARM64 {
481 public:
482 explicit DeoptimizationSlowPathARM64(HInstruction* instruction)
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100483 : instruction_(instruction) {}
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700484
485 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
486 __ Bind(GetEntryLabel());
487 SaveLiveRegisters(codegen, instruction_->GetLocations());
488 DCHECK(instruction_->IsDeoptimize());
489 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
490 uint32_t dex_pc = deoptimize->GetDexPc();
491 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
492 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
493 }
494
Alexandre Rames9931f312015-06-19 14:47:01 +0100495 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathARM64"; }
496
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700497 private:
498 HInstruction* const instruction_;
499 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM64);
500};
501
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100502class ArraySetSlowPathARM64 : public SlowPathCodeARM64 {
503 public:
504 explicit ArraySetSlowPathARM64(HInstruction* instruction) : instruction_(instruction) {}
505
506 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
507 LocationSummary* locations = instruction_->GetLocations();
508 __ Bind(GetEntryLabel());
509 SaveLiveRegisters(codegen, locations);
510
511 InvokeRuntimeCallingConvention calling_convention;
512 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
513 parallel_move.AddMove(
514 locations->InAt(0),
515 LocationFrom(calling_convention.GetRegisterAt(0)),
516 Primitive::kPrimNot,
517 nullptr);
518 parallel_move.AddMove(
519 locations->InAt(1),
520 LocationFrom(calling_convention.GetRegisterAt(1)),
521 Primitive::kPrimInt,
522 nullptr);
523 parallel_move.AddMove(
524 locations->InAt(2),
525 LocationFrom(calling_convention.GetRegisterAt(2)),
526 Primitive::kPrimNot,
527 nullptr);
528 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
529
530 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
531 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
532 instruction_,
533 instruction_->GetDexPc(),
534 this);
535 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
536 RestoreLiveRegisters(codegen, locations);
537 __ B(GetExitLabel());
538 }
539
540 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathARM64"; }
541
542 private:
543 HInstruction* const instruction_;
544
545 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathARM64);
546};
547
Alexandre Rames5319def2014-10-23 10:03:10 +0100548#undef __
549
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100550Location InvokeDexCallingConventionVisitorARM64::GetNextLocation(Primitive::Type type) {
Alexandre Rames5319def2014-10-23 10:03:10 +0100551 Location next_location;
552 if (type == Primitive::kPrimVoid) {
553 LOG(FATAL) << "Unreachable type " << type;
554 }
555
Alexandre Rames542361f2015-01-29 16:57:31 +0000556 if (Primitive::IsFloatingPointType(type) &&
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100557 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) {
558 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++));
Alexandre Rames542361f2015-01-29 16:57:31 +0000559 } else if (!Primitive::IsFloatingPointType(type) &&
560 (gp_index_ < calling_convention.GetNumberOfRegisters())) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000561 next_location = LocationFrom(calling_convention.GetRegisterAt(gp_index_++));
562 } else {
563 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
Alexandre Rames542361f2015-01-29 16:57:31 +0000564 next_location = Primitive::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
565 : Location::StackSlot(stack_offset);
Alexandre Rames5319def2014-10-23 10:03:10 +0100566 }
567
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000568 // Space on the stack is reserved for all arguments.
Alexandre Rames542361f2015-01-29 16:57:31 +0000569 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
Alexandre Rames5319def2014-10-23 10:03:10 +0100570 return next_location;
571}
572
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100573Location InvokeDexCallingConventionVisitorARM64::GetMethodLocation() const {
Nicolas Geoffray38207af2015-06-01 15:46:22 +0100574 return LocationFrom(kArtMethodRegister);
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100575}
576
Serban Constantinescu579885a2015-02-22 20:51:33 +0000577CodeGeneratorARM64::CodeGeneratorARM64(HGraph* graph,
578 const Arm64InstructionSetFeatures& isa_features,
Serban Constantinescuecc43662015-08-13 13:33:12 +0100579 const CompilerOptions& compiler_options,
580 OptimizingCompilerStats* stats)
Alexandre Rames5319def2014-10-23 10:03:10 +0100581 : CodeGenerator(graph,
582 kNumberOfAllocatableRegisters,
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000583 kNumberOfAllocatableFPRegisters,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000584 kNumberOfAllocatableRegisterPairs,
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000585 callee_saved_core_registers.list(),
Nicolas Geoffray75d5b9b2015-10-05 07:40:35 +0000586 callee_saved_fp_registers.list(),
Serban Constantinescuecc43662015-08-13 13:33:12 +0100587 compiler_options,
588 stats),
Alexandre Rames5319def2014-10-23 10:03:10 +0100589 block_labels_(nullptr),
590 location_builder_(graph, this),
Alexandre Rames3e69f162014-12-10 10:36:50 +0000591 instruction_visitor_(graph, this),
Serban Constantinescu579885a2015-02-22 20:51:33 +0000592 move_resolver_(graph->GetArena(), this),
Vladimir Marko58155012015-08-19 12:49:41 +0000593 isa_features_(isa_features),
Vladimir Marko5233f932015-09-29 19:01:15 +0100594 uint64_literals_(std::less<uint64_t>(),
595 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
596 method_patches_(MethodReferenceComparator(),
597 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
598 call_patches_(MethodReferenceComparator(),
599 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
600 relative_call_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
601 pc_rel_dex_cache_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000602 // Save the link register (containing the return address) to mimic Quick.
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000603 AddAllocatedRegister(LocationFrom(lr));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000604}
Alexandre Rames5319def2014-10-23 10:03:10 +0100605
Alexandre Rames67555f72014-11-18 10:55:16 +0000606#undef __
607#define __ GetVIXLAssembler()->
Alexandre Rames5319def2014-10-23 10:03:10 +0100608
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000609void CodeGeneratorARM64::Finalize(CodeAllocator* allocator) {
610 // Ensure we emit the literal pool.
611 __ FinalizeCode();
Vladimir Marko58155012015-08-19 12:49:41 +0000612
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000613 CodeGenerator::Finalize(allocator);
614}
615
Zheng Xuad4450e2015-04-17 18:48:56 +0800616void ParallelMoveResolverARM64::PrepareForEmitNativeCode() {
617 // Note: There are 6 kinds of moves:
618 // 1. constant -> GPR/FPR (non-cycle)
619 // 2. constant -> stack (non-cycle)
620 // 3. GPR/FPR -> GPR/FPR
621 // 4. GPR/FPR -> stack
622 // 5. stack -> GPR/FPR
623 // 6. stack -> stack (non-cycle)
624 // Case 1, 2 and 6 should never be included in a dependency cycle on ARM64. For case 3, 4, and 5
625 // VIXL uses at most 1 GPR. VIXL has 2 GPR and 1 FPR temps, and there should be no intersecting
626 // cycles on ARM64, so we always have 1 GPR and 1 FPR available VIXL temps to resolve the
627 // dependency.
628 vixl_temps_.Open(GetVIXLAssembler());
629}
630
631void ParallelMoveResolverARM64::FinishEmitNativeCode() {
632 vixl_temps_.Close();
633}
634
635Location ParallelMoveResolverARM64::AllocateScratchLocationFor(Location::Kind kind) {
636 DCHECK(kind == Location::kRegister || kind == Location::kFpuRegister ||
637 kind == Location::kStackSlot || kind == Location::kDoubleStackSlot);
638 kind = (kind == Location::kFpuRegister) ? Location::kFpuRegister : Location::kRegister;
639 Location scratch = GetScratchLocation(kind);
640 if (!scratch.Equals(Location::NoLocation())) {
641 return scratch;
642 }
643 // Allocate from VIXL temp registers.
644 if (kind == Location::kRegister) {
645 scratch = LocationFrom(vixl_temps_.AcquireX());
646 } else {
647 DCHECK(kind == Location::kFpuRegister);
648 scratch = LocationFrom(vixl_temps_.AcquireD());
649 }
650 AddScratchLocation(scratch);
651 return scratch;
652}
653
654void ParallelMoveResolverARM64::FreeScratchLocation(Location loc) {
655 if (loc.IsRegister()) {
656 vixl_temps_.Release(XRegisterFrom(loc));
657 } else {
658 DCHECK(loc.IsFpuRegister());
659 vixl_temps_.Release(DRegisterFrom(loc));
660 }
661 RemoveScratchLocation(loc);
662}
663
Alexandre Rames3e69f162014-12-10 10:36:50 +0000664void ParallelMoveResolverARM64::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +0100665 MoveOperands* move = moves_[index];
Calin Juravlee460d1d2015-09-29 04:52:17 +0100666 codegen_->MoveLocation(move->GetDestination(), move->GetSource(), Primitive::kPrimVoid);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000667}
668
Alexandre Rames5319def2014-10-23 10:03:10 +0100669void CodeGeneratorARM64::GenerateFrameEntry() {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100670 MacroAssembler* masm = GetVIXLAssembler();
671 BlockPoolsScope block_pools(masm);
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000672 __ Bind(&frame_entry_label_);
673
Serban Constantinescu02164b32014-11-13 14:05:07 +0000674 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod();
675 if (do_overflow_check) {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100676 UseScratchRegisterScope temps(masm);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000677 Register temp = temps.AcquireX();
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000678 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000679 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(kArm64)));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000680 __ Ldr(wzr, MemOperand(temp, 0));
681 RecordPcInfo(nullptr, 0);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000682 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100683
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000684 if (!HasEmptyFrame()) {
685 int frame_size = GetFrameSize();
686 // Stack layout:
687 // sp[frame_size - 8] : lr.
688 // ... : other preserved core registers.
689 // ... : other preserved fp registers.
690 // ... : reserved frame space.
691 // sp[0] : current method.
692 __ Str(kArtMethodRegister, MemOperand(sp, -frame_size, PreIndex));
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100693 GetAssembler()->cfi().AdjustCFAOffset(frame_size);
Zheng Xu69a50302015-04-14 20:04:41 +0800694 GetAssembler()->SpillRegisters(GetFramePreservedCoreRegisters(),
695 frame_size - GetCoreSpillSize());
696 GetAssembler()->SpillRegisters(GetFramePreservedFPRegisters(),
697 frame_size - FrameEntrySpillSize());
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000698 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100699}
700
701void CodeGeneratorARM64::GenerateFrameExit() {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100702 BlockPoolsScope block_pools(GetVIXLAssembler());
David Srbeckyc34dc932015-04-12 09:27:43 +0100703 GetAssembler()->cfi().RememberState();
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000704 if (!HasEmptyFrame()) {
705 int frame_size = GetFrameSize();
Zheng Xu69a50302015-04-14 20:04:41 +0800706 GetAssembler()->UnspillRegisters(GetFramePreservedFPRegisters(),
707 frame_size - FrameEntrySpillSize());
708 GetAssembler()->UnspillRegisters(GetFramePreservedCoreRegisters(),
709 frame_size - GetCoreSpillSize());
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000710 __ Drop(frame_size);
David Srbeckyc6b4dd82015-04-07 20:32:43 +0100711 GetAssembler()->cfi().AdjustCFAOffset(-frame_size);
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000712 }
David Srbeckyc34dc932015-04-12 09:27:43 +0100713 __ Ret();
714 GetAssembler()->cfi().RestoreState();
715 GetAssembler()->cfi().DefCFAOffset(GetFrameSize());
Alexandre Rames5319def2014-10-23 10:03:10 +0100716}
717
Zheng Xuda403092015-04-24 17:35:39 +0800718vixl::CPURegList CodeGeneratorARM64::GetFramePreservedCoreRegisters() const {
719 DCHECK(ArtVixlRegCodeCoherentForRegSet(core_spill_mask_, GetNumberOfCoreRegisters(), 0, 0));
720 return vixl::CPURegList(vixl::CPURegister::kRegister, vixl::kXRegSize,
721 core_spill_mask_);
722}
723
724vixl::CPURegList CodeGeneratorARM64::GetFramePreservedFPRegisters() const {
725 DCHECK(ArtVixlRegCodeCoherentForRegSet(0, 0, fpu_spill_mask_,
726 GetNumberOfFloatingPointRegisters()));
727 return vixl::CPURegList(vixl::CPURegister::kFPRegister, vixl::kDRegSize,
728 fpu_spill_mask_);
729}
730
Alexandre Rames5319def2014-10-23 10:03:10 +0100731void CodeGeneratorARM64::Bind(HBasicBlock* block) {
732 __ Bind(GetLabelOf(block));
733}
734
Alexandre Rames5319def2014-10-23 10:03:10 +0100735void CodeGeneratorARM64::Move(HInstruction* instruction,
736 Location location,
737 HInstruction* move_for) {
738 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames5319def2014-10-23 10:03:10 +0100739 Primitive::Type type = instruction->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000740 DCHECK_NE(type, Primitive::kPrimVoid);
Alexandre Rames5319def2014-10-23 10:03:10 +0100741
Nicolas Geoffray9b1eba32015-07-13 15:55:26 +0100742 if (instruction->IsFakeString()) {
743 // The fake string is an alias for null.
744 DCHECK(IsBaseline());
745 instruction = locations->Out().GetConstant();
746 DCHECK(instruction->IsNullConstant()) << instruction->DebugName();
747 }
748
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100749 if (instruction->IsCurrentMethod()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +0100750 MoveLocation(location,
751 Location::DoubleStackSlot(kCurrentMethodStackOffset),
752 Primitive::kPrimVoid);
Nicolas Geoffray76b1e172015-05-27 17:18:33 +0100753 } else if (locations != nullptr && locations->Out().Equals(location)) {
754 return;
755 } else if (instruction->IsIntConstant()
756 || instruction->IsLongConstant()
757 || instruction->IsNullConstant()) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000758 int64_t value = GetInt64ValueOf(instruction->AsConstant());
Alexandre Rames5319def2014-10-23 10:03:10 +0100759 if (location.IsRegister()) {
760 Register dst = RegisterFrom(location, type);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000761 DCHECK(((instruction->IsIntConstant() || instruction->IsNullConstant()) && dst.Is32Bits()) ||
Alexandre Rames5319def2014-10-23 10:03:10 +0100762 (instruction->IsLongConstant() && dst.Is64Bits()));
763 __ Mov(dst, value);
764 } else {
765 DCHECK(location.IsStackSlot() || location.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000766 UseScratchRegisterScope temps(GetVIXLAssembler());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000767 Register temp = (instruction->IsIntConstant() || instruction->IsNullConstant())
768 ? temps.AcquireW()
769 : temps.AcquireX();
Alexandre Rames5319def2014-10-23 10:03:10 +0100770 __ Mov(temp, value);
771 __ Str(temp, StackOperandFrom(location));
772 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000773 } else if (instruction->IsTemporary()) {
774 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000775 MoveLocation(location, temp_location, type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100776 } else if (instruction->IsLoadLocal()) {
777 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
Alexandre Rames542361f2015-01-29 16:57:31 +0000778 if (Primitive::Is64BitType(type)) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000779 MoveLocation(location, Location::DoubleStackSlot(stack_slot), type);
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000780 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000781 MoveLocation(location, Location::StackSlot(stack_slot), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100782 }
783
784 } else {
785 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000786 MoveLocation(location, locations->Out(), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100787 }
788}
789
Calin Juravle175dc732015-08-25 15:42:32 +0100790void CodeGeneratorARM64::MoveConstant(Location location, int32_t value) {
791 DCHECK(location.IsRegister());
792 __ Mov(RegisterFrom(location, Primitive::kPrimInt), value);
793}
794
Calin Juravlee460d1d2015-09-29 04:52:17 +0100795void CodeGeneratorARM64::AddLocationAsTemp(Location location, LocationSummary* locations) {
796 if (location.IsRegister()) {
797 locations->AddTemp(location);
798 } else {
799 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
800 }
801}
802
Alexandre Rames5319def2014-10-23 10:03:10 +0100803Location CodeGeneratorARM64::GetStackLocation(HLoadLocal* load) const {
804 Primitive::Type type = load->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000805
Alexandre Rames5319def2014-10-23 10:03:10 +0100806 switch (type) {
807 case Primitive::kPrimNot:
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000808 case Primitive::kPrimInt:
809 case Primitive::kPrimFloat:
810 return Location::StackSlot(GetStackSlot(load->GetLocal()));
811
812 case Primitive::kPrimLong:
813 case Primitive::kPrimDouble:
814 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
815
Alexandre Rames5319def2014-10-23 10:03:10 +0100816 case Primitive::kPrimBoolean:
817 case Primitive::kPrimByte:
818 case Primitive::kPrimChar:
819 case Primitive::kPrimShort:
Alexandre Rames5319def2014-10-23 10:03:10 +0100820 case Primitive::kPrimVoid:
Alexandre Rames5319def2014-10-23 10:03:10 +0100821 LOG(FATAL) << "Unexpected type " << type;
822 }
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000823
Alexandre Rames5319def2014-10-23 10:03:10 +0100824 LOG(FATAL) << "Unreachable";
825 return Location::NoLocation();
826}
827
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100828void CodeGeneratorARM64::MarkGCCard(Register object, Register value, bool value_can_be_null) {
Alexandre Rames67555f72014-11-18 10:55:16 +0000829 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +0100830 Register card = temps.AcquireX();
Serban Constantinescu02164b32014-11-13 14:05:07 +0000831 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit.
Alexandre Rames5319def2014-10-23 10:03:10 +0100832 vixl::Label done;
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100833 if (value_can_be_null) {
834 __ Cbz(value, &done);
835 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100836 __ Ldr(card, MemOperand(tr, Thread::CardTableOffset<kArm64WordSize>().Int32Value()));
837 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000838 __ Strb(card, MemOperand(card, temp.X()));
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100839 if (value_can_be_null) {
840 __ Bind(&done);
841 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100842}
843
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000844void CodeGeneratorARM64::SetupBlockedRegisters(bool is_baseline) const {
845 // Blocked core registers:
846 // lr : Runtime reserved.
847 // tr : Runtime reserved.
848 // xSuspend : Runtime reserved. TODO: Unblock this when the runtime stops using it.
849 // ip1 : VIXL core temp.
850 // ip0 : VIXL core temp.
851 //
852 // Blocked fp registers:
853 // d31 : VIXL fp temp.
Alexandre Rames5319def2014-10-23 10:03:10 +0100854 CPURegList reserved_core_registers = vixl_reserved_core_registers;
855 reserved_core_registers.Combine(runtime_reserved_core_registers);
Alexandre Rames5319def2014-10-23 10:03:10 +0100856 while (!reserved_core_registers.IsEmpty()) {
857 blocked_core_registers_[reserved_core_registers.PopLowestIndex().code()] = true;
858 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000859
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000860 CPURegList reserved_fp_registers = vixl_reserved_fp_registers;
Zheng Xua3ec3942015-02-15 18:39:46 +0800861 while (!reserved_fp_registers.IsEmpty()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000862 blocked_fpu_registers_[reserved_fp_registers.PopLowestIndex().code()] = true;
863 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000864
865 if (is_baseline) {
866 CPURegList reserved_core_baseline_registers = callee_saved_core_registers;
867 while (!reserved_core_baseline_registers.IsEmpty()) {
868 blocked_core_registers_[reserved_core_baseline_registers.PopLowestIndex().code()] = true;
869 }
Nicolas Geoffrayecf680d2015-10-05 11:15:37 +0100870 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000871
Nicolas Geoffrayecf680d2015-10-05 11:15:37 +0100872 if (is_baseline || GetGraph()->IsDebuggable()) {
873 // Stubs do not save callee-save floating point registers. If the graph
874 // is debuggable, we need to deal with these registers differently. For
875 // now, just block them.
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000876 CPURegList reserved_fp_baseline_registers = callee_saved_fp_registers;
877 while (!reserved_fp_baseline_registers.IsEmpty()) {
878 blocked_fpu_registers_[reserved_fp_baseline_registers.PopLowestIndex().code()] = true;
879 }
880 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100881}
882
883Location CodeGeneratorARM64::AllocateFreeRegister(Primitive::Type type) const {
884 if (type == Primitive::kPrimVoid) {
885 LOG(FATAL) << "Unreachable type " << type;
886 }
887
Alexandre Rames542361f2015-01-29 16:57:31 +0000888 if (Primitive::IsFloatingPointType(type)) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000889 ssize_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfAllocatableFPRegisters);
890 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100891 return Location::FpuRegisterLocation(reg);
892 } else {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000893 ssize_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfAllocatableRegisters);
894 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100895 return Location::RegisterLocation(reg);
896 }
897}
898
Alexandre Rames3e69f162014-12-10 10:36:50 +0000899size_t CodeGeneratorARM64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
900 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
901 __ Str(reg, MemOperand(sp, stack_index));
902 return kArm64WordSize;
903}
904
905size_t CodeGeneratorARM64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
906 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
907 __ Ldr(reg, MemOperand(sp, stack_index));
908 return kArm64WordSize;
909}
910
911size_t CodeGeneratorARM64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
912 FPRegister reg = FPRegister(reg_id, kDRegSize);
913 __ Str(reg, MemOperand(sp, stack_index));
914 return kArm64WordSize;
915}
916
917size_t CodeGeneratorARM64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
918 FPRegister reg = FPRegister(reg_id, kDRegSize);
919 __ Ldr(reg, MemOperand(sp, stack_index));
920 return kArm64WordSize;
921}
922
Alexandre Rames5319def2014-10-23 10:03:10 +0100923void CodeGeneratorARM64::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100924 stream << XRegister(reg);
Alexandre Rames5319def2014-10-23 10:03:10 +0100925}
926
927void CodeGeneratorARM64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +0100928 stream << DRegister(reg);
Alexandre Rames5319def2014-10-23 10:03:10 +0100929}
930
Alexandre Rames67555f72014-11-18 10:55:16 +0000931void CodeGeneratorARM64::MoveConstant(CPURegister destination, HConstant* constant) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000932 if (constant->IsIntConstant()) {
933 __ Mov(Register(destination), constant->AsIntConstant()->GetValue());
934 } else if (constant->IsLongConstant()) {
935 __ Mov(Register(destination), constant->AsLongConstant()->GetValue());
936 } else if (constant->IsNullConstant()) {
937 __ Mov(Register(destination), 0);
Alexandre Rames67555f72014-11-18 10:55:16 +0000938 } else if (constant->IsFloatConstant()) {
939 __ Fmov(FPRegister(destination), constant->AsFloatConstant()->GetValue());
940 } else {
941 DCHECK(constant->IsDoubleConstant());
942 __ Fmov(FPRegister(destination), constant->AsDoubleConstant()->GetValue());
943 }
944}
945
Alexandre Rames3e69f162014-12-10 10:36:50 +0000946
947static bool CoherentConstantAndType(Location constant, Primitive::Type type) {
948 DCHECK(constant.IsConstant());
949 HConstant* cst = constant.GetConstant();
950 return (cst->IsIntConstant() && type == Primitive::kPrimInt) ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000951 // Null is mapped to a core W register, which we associate with kPrimInt.
952 (cst->IsNullConstant() && type == Primitive::kPrimInt) ||
Alexandre Rames3e69f162014-12-10 10:36:50 +0000953 (cst->IsLongConstant() && type == Primitive::kPrimLong) ||
954 (cst->IsFloatConstant() && type == Primitive::kPrimFloat) ||
955 (cst->IsDoubleConstant() && type == Primitive::kPrimDouble);
956}
957
Calin Juravlee460d1d2015-09-29 04:52:17 +0100958void CodeGeneratorARM64::MoveLocation(Location destination,
959 Location source,
960 Primitive::Type dst_type) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000961 if (source.Equals(destination)) {
962 return;
963 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000964
965 // A valid move can always be inferred from the destination and source
966 // locations. When moving from and to a register, the argument type can be
967 // used to generate 32bit instead of 64bit moves. In debug mode we also
968 // checks the coherency of the locations and the type.
Calin Juravlee460d1d2015-09-29 04:52:17 +0100969 bool unspecified_type = (dst_type == Primitive::kPrimVoid);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000970
971 if (destination.IsRegister() || destination.IsFpuRegister()) {
972 if (unspecified_type) {
973 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr;
974 if (source.IsStackSlot() ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000975 (src_cst != nullptr && (src_cst->IsIntConstant()
976 || src_cst->IsFloatConstant()
977 || src_cst->IsNullConstant()))) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000978 // For stack slots and 32bit constants, a 64bit type is appropriate.
Calin Juravlee460d1d2015-09-29 04:52:17 +0100979 dst_type = destination.IsRegister() ? Primitive::kPrimInt : Primitive::kPrimFloat;
Alexandre Rames67555f72014-11-18 10:55:16 +0000980 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000981 // If the source is a double stack slot or a 64bit constant, a 64bit
982 // type is appropriate. Else the source is a register, and since the
983 // type has not been specified, we chose a 64bit type to force a 64bit
984 // move.
Calin Juravlee460d1d2015-09-29 04:52:17 +0100985 dst_type = destination.IsRegister() ? Primitive::kPrimLong : Primitive::kPrimDouble;
Alexandre Rames67555f72014-11-18 10:55:16 +0000986 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000987 }
Calin Juravlee460d1d2015-09-29 04:52:17 +0100988 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(dst_type)) ||
989 (destination.IsRegister() && !Primitive::IsFloatingPointType(dst_type)));
990 CPURegister dst = CPURegisterFrom(destination, dst_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000991 if (source.IsStackSlot() || source.IsDoubleStackSlot()) {
992 DCHECK(dst.Is64Bits() == source.IsDoubleStackSlot());
993 __ Ldr(dst, StackOperandFrom(source));
994 } else if (source.IsConstant()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +0100995 DCHECK(CoherentConstantAndType(source, dst_type));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000996 MoveConstant(dst, source.GetConstant());
Calin Juravlee460d1d2015-09-29 04:52:17 +0100997 } else if (source.IsRegister()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000998 if (destination.IsRegister()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +0100999 __ Mov(Register(dst), RegisterFrom(source, dst_type));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001000 } else {
Zheng Xuad4450e2015-04-17 18:48:56 +08001001 DCHECK(destination.IsFpuRegister());
Calin Juravlee460d1d2015-09-29 04:52:17 +01001002 Primitive::Type source_type = Primitive::Is64BitType(dst_type)
1003 ? Primitive::kPrimLong
1004 : Primitive::kPrimInt;
1005 __ Fmov(FPRegisterFrom(destination, dst_type), RegisterFrom(source, source_type));
1006 }
1007 } else {
1008 DCHECK(source.IsFpuRegister());
1009 if (destination.IsRegister()) {
1010 Primitive::Type source_type = Primitive::Is64BitType(dst_type)
1011 ? Primitive::kPrimDouble
1012 : Primitive::kPrimFloat;
1013 __ Fmov(RegisterFrom(destination, dst_type), FPRegisterFrom(source, source_type));
1014 } else {
1015 DCHECK(destination.IsFpuRegister());
1016 __ Fmov(FPRegister(dst), FPRegisterFrom(source, dst_type));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001017 }
1018 }
Alexandre Rames3e69f162014-12-10 10:36:50 +00001019 } else { // The destination is not a register. It must be a stack slot.
1020 DCHECK(destination.IsStackSlot() || destination.IsDoubleStackSlot());
1021 if (source.IsRegister() || source.IsFpuRegister()) {
1022 if (unspecified_type) {
1023 if (source.IsRegister()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001024 dst_type = destination.IsStackSlot() ? Primitive::kPrimInt : Primitive::kPrimLong;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001025 } else {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001026 dst_type = destination.IsStackSlot() ? Primitive::kPrimFloat : Primitive::kPrimDouble;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001027 }
1028 }
Calin Juravlee460d1d2015-09-29 04:52:17 +01001029 DCHECK((destination.IsDoubleStackSlot() == Primitive::Is64BitType(dst_type)) &&
1030 (source.IsFpuRegister() == Primitive::IsFloatingPointType(dst_type)));
1031 __ Str(CPURegisterFrom(source, dst_type), StackOperandFrom(destination));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001032 } else if (source.IsConstant()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001033 DCHECK(unspecified_type || CoherentConstantAndType(source, dst_type))
1034 << source << " " << dst_type;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001035 UseScratchRegisterScope temps(GetVIXLAssembler());
1036 HConstant* src_cst = source.GetConstant();
1037 CPURegister temp;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001038 if (src_cst->IsIntConstant() || src_cst->IsNullConstant()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001039 temp = temps.AcquireW();
1040 } else if (src_cst->IsLongConstant()) {
1041 temp = temps.AcquireX();
1042 } else if (src_cst->IsFloatConstant()) {
1043 temp = temps.AcquireS();
1044 } else {
1045 DCHECK(src_cst->IsDoubleConstant());
1046 temp = temps.AcquireD();
1047 }
1048 MoveConstant(temp, src_cst);
Alexandre Rames67555f72014-11-18 10:55:16 +00001049 __ Str(temp, StackOperandFrom(destination));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001050 } else {
Alexandre Rames67555f72014-11-18 10:55:16 +00001051 DCHECK(source.IsStackSlot() || source.IsDoubleStackSlot());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001052 DCHECK(source.IsDoubleStackSlot() == destination.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +00001053 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001054 // There is generally less pressure on FP registers.
1055 FPRegister temp = destination.IsDoubleStackSlot() ? temps.AcquireD() : temps.AcquireS();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001056 __ Ldr(temp, StackOperandFrom(source));
1057 __ Str(temp, StackOperandFrom(destination));
1058 }
1059 }
1060}
1061
1062void CodeGeneratorARM64::Load(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001063 CPURegister dst,
1064 const MemOperand& src) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001065 switch (type) {
1066 case Primitive::kPrimBoolean:
Alexandre Rames67555f72014-11-18 10:55:16 +00001067 __ Ldrb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001068 break;
1069 case Primitive::kPrimByte:
Alexandre Rames67555f72014-11-18 10:55:16 +00001070 __ Ldrsb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001071 break;
1072 case Primitive::kPrimShort:
Alexandre Rames67555f72014-11-18 10:55:16 +00001073 __ Ldrsh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001074 break;
1075 case Primitive::kPrimChar:
Alexandre Rames67555f72014-11-18 10:55:16 +00001076 __ Ldrh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001077 break;
1078 case Primitive::kPrimInt:
1079 case Primitive::kPrimNot:
1080 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001081 case Primitive::kPrimFloat:
1082 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +00001083 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Alexandre Rames67555f72014-11-18 10:55:16 +00001084 __ Ldr(dst, src);
1085 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001086 case Primitive::kPrimVoid:
1087 LOG(FATAL) << "Unreachable type " << type;
1088 }
1089}
1090
Calin Juravle77520bc2015-01-12 18:45:46 +00001091void CodeGeneratorARM64::LoadAcquire(HInstruction* instruction,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001092 CPURegister dst,
1093 const MemOperand& src) {
Alexandre Ramesd921d642015-04-16 15:07:16 +01001094 MacroAssembler* masm = GetVIXLAssembler();
1095 BlockPoolsScope block_pools(masm);
1096 UseScratchRegisterScope temps(masm);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001097 Register temp_base = temps.AcquireX();
Calin Juravle77520bc2015-01-12 18:45:46 +00001098 Primitive::Type type = instruction->GetType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001099
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001100 DCHECK(!src.IsPreIndex());
1101 DCHECK(!src.IsPostIndex());
1102
1103 // TODO(vixl): Let the MacroAssembler handle MemOperand.
Andreas Gampe878d58c2015-01-15 23:24:00 -08001104 __ Add(temp_base, src.base(), OperandFromMemOperand(src));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001105 MemOperand base = MemOperand(temp_base);
1106 switch (type) {
1107 case Primitive::kPrimBoolean:
1108 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001109 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001110 break;
1111 case Primitive::kPrimByte:
1112 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001113 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001114 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
1115 break;
1116 case Primitive::kPrimChar:
1117 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001118 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001119 break;
1120 case Primitive::kPrimShort:
1121 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001122 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001123 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
1124 break;
1125 case Primitive::kPrimInt:
1126 case Primitive::kPrimNot:
1127 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +00001128 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001129 __ Ldar(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001130 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001131 break;
1132 case Primitive::kPrimFloat:
1133 case Primitive::kPrimDouble: {
1134 DCHECK(dst.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +00001135 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001136
1137 Register temp = dst.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
1138 __ Ldar(temp, base);
Calin Juravle77520bc2015-01-12 18:45:46 +00001139 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001140 __ Fmov(FPRegister(dst), temp);
1141 break;
1142 }
1143 case Primitive::kPrimVoid:
1144 LOG(FATAL) << "Unreachable type " << type;
1145 }
1146}
1147
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001148void CodeGeneratorARM64::Store(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001149 CPURegister src,
1150 const MemOperand& dst) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001151 switch (type) {
1152 case Primitive::kPrimBoolean:
1153 case Primitive::kPrimByte:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001154 __ Strb(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001155 break;
1156 case Primitive::kPrimChar:
1157 case Primitive::kPrimShort:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001158 __ Strh(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001159 break;
1160 case Primitive::kPrimInt:
1161 case Primitive::kPrimNot:
1162 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001163 case Primitive::kPrimFloat:
1164 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +00001165 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001166 __ Str(src, dst);
Alexandre Rames67555f72014-11-18 10:55:16 +00001167 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001168 case Primitive::kPrimVoid:
1169 LOG(FATAL) << "Unreachable type " << type;
1170 }
1171}
1172
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001173void CodeGeneratorARM64::StoreRelease(Primitive::Type type,
1174 CPURegister src,
1175 const MemOperand& dst) {
1176 UseScratchRegisterScope temps(GetVIXLAssembler());
1177 Register temp_base = temps.AcquireX();
1178
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001179 DCHECK(!dst.IsPreIndex());
1180 DCHECK(!dst.IsPostIndex());
1181
1182 // TODO(vixl): Let the MacroAssembler handle this.
Andreas Gampe878d58c2015-01-15 23:24:00 -08001183 Operand op = OperandFromMemOperand(dst);
1184 __ Add(temp_base, dst.base(), op);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001185 MemOperand base = MemOperand(temp_base);
1186 switch (type) {
1187 case Primitive::kPrimBoolean:
1188 case Primitive::kPrimByte:
1189 __ Stlrb(Register(src), base);
1190 break;
1191 case Primitive::kPrimChar:
1192 case Primitive::kPrimShort:
1193 __ Stlrh(Register(src), base);
1194 break;
1195 case Primitive::kPrimInt:
1196 case Primitive::kPrimNot:
1197 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +00001198 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001199 __ Stlr(Register(src), base);
1200 break;
1201 case Primitive::kPrimFloat:
1202 case Primitive::kPrimDouble: {
1203 DCHECK(src.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +00001204 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001205
1206 Register temp = src.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
1207 __ Fmov(temp, FPRegister(src));
1208 __ Stlr(temp, base);
1209 break;
1210 }
1211 case Primitive::kPrimVoid:
1212 LOG(FATAL) << "Unreachable type " << type;
1213 }
1214}
1215
Calin Juravle175dc732015-08-25 15:42:32 +01001216void CodeGeneratorARM64::InvokeRuntime(QuickEntrypointEnum entrypoint,
1217 HInstruction* instruction,
1218 uint32_t dex_pc,
1219 SlowPathCode* slow_path) {
1220 InvokeRuntime(GetThreadOffset<kArm64WordSize>(entrypoint).Int32Value(),
1221 instruction,
1222 dex_pc,
1223 slow_path);
1224}
1225
Alexandre Rames67555f72014-11-18 10:55:16 +00001226void CodeGeneratorARM64::InvokeRuntime(int32_t entry_point_offset,
1227 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001228 uint32_t dex_pc,
1229 SlowPathCode* slow_path) {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001230 ValidateInvokeRuntime(instruction, slow_path);
Alexandre Ramesd921d642015-04-16 15:07:16 +01001231 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames67555f72014-11-18 10:55:16 +00001232 __ Ldr(lr, MemOperand(tr, entry_point_offset));
1233 __ Blr(lr);
Roland Levillain896e32d2015-05-05 18:07:10 +01001234 RecordPcInfo(instruction, dex_pc, slow_path);
Alexandre Rames67555f72014-11-18 10:55:16 +00001235}
1236
1237void InstructionCodeGeneratorARM64::GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path,
1238 vixl::Register class_reg) {
1239 UseScratchRegisterScope temps(GetVIXLAssembler());
1240 Register temp = temps.AcquireW();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001241 size_t status_offset = mirror::Class::StatusOffset().SizeValue();
Serban Constantinescu579885a2015-02-22 20:51:33 +00001242 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001243
Serban Constantinescu02164b32014-11-13 14:05:07 +00001244 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
Serban Constantinescu579885a2015-02-22 20:51:33 +00001245 if (use_acquire_release) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001246 // TODO(vixl): Let the MacroAssembler handle MemOperand.
1247 __ Add(temp, class_reg, status_offset);
1248 __ Ldar(temp, HeapOperand(temp));
1249 __ Cmp(temp, mirror::Class::kStatusInitialized);
1250 __ B(lt, slow_path->GetEntryLabel());
1251 } else {
1252 __ Ldr(temp, HeapOperand(class_reg, status_offset));
1253 __ Cmp(temp, mirror::Class::kStatusInitialized);
1254 __ B(lt, slow_path->GetEntryLabel());
1255 __ Dmb(InnerShareable, BarrierReads);
1256 }
Alexandre Rames67555f72014-11-18 10:55:16 +00001257 __ Bind(slow_path->GetExitLabel());
1258}
Alexandre Rames5319def2014-10-23 10:03:10 +01001259
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001260void InstructionCodeGeneratorARM64::GenerateMemoryBarrier(MemBarrierKind kind) {
1261 BarrierType type = BarrierAll;
1262
1263 switch (kind) {
1264 case MemBarrierKind::kAnyAny:
1265 case MemBarrierKind::kAnyStore: {
1266 type = BarrierAll;
1267 break;
1268 }
1269 case MemBarrierKind::kLoadAny: {
1270 type = BarrierReads;
1271 break;
1272 }
1273 case MemBarrierKind::kStoreStore: {
1274 type = BarrierWrites;
1275 break;
1276 }
1277 default:
1278 LOG(FATAL) << "Unexpected memory barrier " << kind;
1279 }
1280 __ Dmb(InnerShareable, type);
1281}
1282
Serban Constantinescu02164b32014-11-13 14:05:07 +00001283void InstructionCodeGeneratorARM64::GenerateSuspendCheck(HSuspendCheck* instruction,
1284 HBasicBlock* successor) {
1285 SuspendCheckSlowPathARM64* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001286 down_cast<SuspendCheckSlowPathARM64*>(instruction->GetSlowPath());
1287 if (slow_path == nullptr) {
1288 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathARM64(instruction, successor);
1289 instruction->SetSlowPath(slow_path);
1290 codegen_->AddSlowPath(slow_path);
1291 if (successor != nullptr) {
1292 DCHECK(successor->IsLoopHeader());
1293 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
1294 }
1295 } else {
1296 DCHECK_EQ(slow_path->GetSuccessor(), successor);
1297 }
1298
Serban Constantinescu02164b32014-11-13 14:05:07 +00001299 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
1300 Register temp = temps.AcquireW();
1301
1302 __ Ldrh(temp, MemOperand(tr, Thread::ThreadFlagsOffset<kArm64WordSize>().SizeValue()));
1303 if (successor == nullptr) {
1304 __ Cbnz(temp, slow_path->GetEntryLabel());
1305 __ Bind(slow_path->GetReturnLabel());
1306 } else {
1307 __ Cbz(temp, codegen_->GetLabelOf(successor));
1308 __ B(slow_path->GetEntryLabel());
1309 // slow_path will return to GetLabelOf(successor).
1310 }
1311}
1312
Alexandre Rames5319def2014-10-23 10:03:10 +01001313InstructionCodeGeneratorARM64::InstructionCodeGeneratorARM64(HGraph* graph,
1314 CodeGeneratorARM64* codegen)
1315 : HGraphVisitor(graph),
1316 assembler_(codegen->GetAssembler()),
1317 codegen_(codegen) {}
1318
1319#define FOR_EACH_UNIMPLEMENTED_INSTRUCTION(M) \
Alexandre Rames3e69f162014-12-10 10:36:50 +00001320 /* No unimplemented IR. */
Alexandre Rames5319def2014-10-23 10:03:10 +01001321
1322#define UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name) name##UnimplementedInstructionBreakCode
1323
1324enum UnimplementedInstructionBreakCode {
Alexandre Rames67555f72014-11-18 10:55:16 +00001325 // Using a base helps identify when we hit such breakpoints.
1326 UnimplementedInstructionBreakCodeBaseCode = 0x900,
Alexandre Rames5319def2014-10-23 10:03:10 +01001327#define ENUM_UNIMPLEMENTED_INSTRUCTION(name) UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name),
1328 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(ENUM_UNIMPLEMENTED_INSTRUCTION)
1329#undef ENUM_UNIMPLEMENTED_INSTRUCTION
1330};
1331
1332#define DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS(name) \
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001333 void InstructionCodeGeneratorARM64::Visit##name(H##name* instr ATTRIBUTE_UNUSED) { \
Alexandre Rames5319def2014-10-23 10:03:10 +01001334 __ Brk(UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name)); \
1335 } \
1336 void LocationsBuilderARM64::Visit##name(H##name* instr) { \
1337 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr); \
1338 locations->SetOut(Location::Any()); \
1339 }
1340 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS)
1341#undef DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS
1342
1343#undef UNIMPLEMENTED_INSTRUCTION_BREAK_CODE
Alexandre Rames67555f72014-11-18 10:55:16 +00001344#undef FOR_EACH_UNIMPLEMENTED_INSTRUCTION
Alexandre Rames5319def2014-10-23 10:03:10 +01001345
Alexandre Rames67555f72014-11-18 10:55:16 +00001346void LocationsBuilderARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001347 DCHECK_EQ(instr->InputCount(), 2U);
1348 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1349 Primitive::Type type = instr->GetResultType();
1350 switch (type) {
1351 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001352 case Primitive::kPrimLong:
Alexandre Rames5319def2014-10-23 10:03:10 +01001353 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001354 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instr->InputAt(1), instr));
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001355 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001356 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001357
1358 case Primitive::kPrimFloat:
1359 case Primitive::kPrimDouble:
1360 locations->SetInAt(0, Location::RequiresFpuRegister());
1361 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001362 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001363 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001364
Alexandre Rames5319def2014-10-23 10:03:10 +01001365 default:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001366 LOG(FATAL) << "Unexpected " << instr->DebugName() << " type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001367 }
1368}
1369
Alexandre Rames09a99962015-04-15 11:47:56 +01001370void LocationsBuilderARM64::HandleFieldGet(HInstruction* instruction) {
1371 LocationSummary* locations =
1372 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1373 locations->SetInAt(0, Location::RequiresRegister());
1374 if (Primitive::IsFloatingPointType(instruction->GetType())) {
1375 locations->SetOut(Location::RequiresFpuRegister());
1376 } else {
1377 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1378 }
1379}
1380
1381void InstructionCodeGeneratorARM64::HandleFieldGet(HInstruction* instruction,
1382 const FieldInfo& field_info) {
1383 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Roland Levillain4d027112015-07-01 15:41:14 +01001384 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Ramesd921d642015-04-16 15:07:16 +01001385 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames09a99962015-04-15 11:47:56 +01001386
1387 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), field_info.GetFieldOffset());
1388 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
1389
1390 if (field_info.IsVolatile()) {
1391 if (use_acquire_release) {
1392 // NB: LoadAcquire will record the pc info if needed.
1393 codegen_->LoadAcquire(instruction, OutputCPURegister(instruction), field);
1394 } else {
Roland Levillain4d027112015-07-01 15:41:14 +01001395 codegen_->Load(field_type, OutputCPURegister(instruction), field);
Alexandre Rames09a99962015-04-15 11:47:56 +01001396 codegen_->MaybeRecordImplicitNullCheck(instruction);
1397 // For IRIW sequential consistency kLoadAny is not sufficient.
1398 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1399 }
1400 } else {
Roland Levillain4d027112015-07-01 15:41:14 +01001401 codegen_->Load(field_type, OutputCPURegister(instruction), field);
Alexandre Rames09a99962015-04-15 11:47:56 +01001402 codegen_->MaybeRecordImplicitNullCheck(instruction);
1403 }
Roland Levillain4d027112015-07-01 15:41:14 +01001404
1405 if (field_type == Primitive::kPrimNot) {
1406 GetAssembler()->MaybeUnpoisonHeapReference(OutputCPURegister(instruction).W());
1407 }
Alexandre Rames09a99962015-04-15 11:47:56 +01001408}
1409
1410void LocationsBuilderARM64::HandleFieldSet(HInstruction* instruction) {
1411 LocationSummary* locations =
1412 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1413 locations->SetInAt(0, Location::RequiresRegister());
1414 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) {
1415 locations->SetInAt(1, Location::RequiresFpuRegister());
1416 } else {
1417 locations->SetInAt(1, Location::RequiresRegister());
1418 }
1419}
1420
1421void InstructionCodeGeneratorARM64::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001422 const FieldInfo& field_info,
1423 bool value_can_be_null) {
Alexandre Rames09a99962015-04-15 11:47:56 +01001424 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
Alexandre Ramesd921d642015-04-16 15:07:16 +01001425 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames09a99962015-04-15 11:47:56 +01001426
1427 Register obj = InputRegisterAt(instruction, 0);
1428 CPURegister value = InputCPURegisterAt(instruction, 1);
Roland Levillain4d027112015-07-01 15:41:14 +01001429 CPURegister source = value;
Alexandre Rames09a99962015-04-15 11:47:56 +01001430 Offset offset = field_info.GetFieldOffset();
1431 Primitive::Type field_type = field_info.GetFieldType();
1432 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
1433
Roland Levillain4d027112015-07-01 15:41:14 +01001434 {
1435 // We use a block to end the scratch scope before the write barrier, thus
1436 // freeing the temporary registers so they can be used in `MarkGCCard`.
1437 UseScratchRegisterScope temps(GetVIXLAssembler());
1438
1439 if (kPoisonHeapReferences && field_type == Primitive::kPrimNot) {
1440 DCHECK(value.IsW());
1441 Register temp = temps.AcquireW();
1442 __ Mov(temp, value.W());
1443 GetAssembler()->PoisonHeapReference(temp.W());
1444 source = temp;
Alexandre Rames09a99962015-04-15 11:47:56 +01001445 }
Roland Levillain4d027112015-07-01 15:41:14 +01001446
1447 if (field_info.IsVolatile()) {
1448 if (use_acquire_release) {
1449 codegen_->StoreRelease(field_type, source, HeapOperand(obj, offset));
1450 codegen_->MaybeRecordImplicitNullCheck(instruction);
1451 } else {
1452 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
1453 codegen_->Store(field_type, source, HeapOperand(obj, offset));
1454 codegen_->MaybeRecordImplicitNullCheck(instruction);
1455 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1456 }
1457 } else {
1458 codegen_->Store(field_type, source, HeapOperand(obj, offset));
1459 codegen_->MaybeRecordImplicitNullCheck(instruction);
1460 }
Alexandre Rames09a99962015-04-15 11:47:56 +01001461 }
1462
1463 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001464 codegen_->MarkGCCard(obj, Register(value), value_can_be_null);
Alexandre Rames09a99962015-04-15 11:47:56 +01001465 }
1466}
1467
Alexandre Rames67555f72014-11-18 10:55:16 +00001468void InstructionCodeGeneratorARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001469 Primitive::Type type = instr->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001470
1471 switch (type) {
1472 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001473 case Primitive::kPrimLong: {
1474 Register dst = OutputRegister(instr);
1475 Register lhs = InputRegisterAt(instr, 0);
1476 Operand rhs = InputOperandAt(instr, 1);
Alexandre Rames5319def2014-10-23 10:03:10 +01001477 if (instr->IsAdd()) {
1478 __ Add(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001479 } else if (instr->IsAnd()) {
1480 __ And(dst, lhs, rhs);
1481 } else if (instr->IsOr()) {
1482 __ Orr(dst, lhs, rhs);
1483 } else if (instr->IsSub()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001484 __ Sub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001485 } else {
1486 DCHECK(instr->IsXor());
1487 __ Eor(dst, lhs, rhs);
Alexandre Rames5319def2014-10-23 10:03:10 +01001488 }
1489 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001490 }
1491 case Primitive::kPrimFloat:
1492 case Primitive::kPrimDouble: {
1493 FPRegister dst = OutputFPRegister(instr);
1494 FPRegister lhs = InputFPRegisterAt(instr, 0);
1495 FPRegister rhs = InputFPRegisterAt(instr, 1);
1496 if (instr->IsAdd()) {
1497 __ Fadd(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001498 } else if (instr->IsSub()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001499 __ Fsub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001500 } else {
1501 LOG(FATAL) << "Unexpected floating-point binary operation";
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001502 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001503 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001504 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001505 default:
Alexandre Rames67555f72014-11-18 10:55:16 +00001506 LOG(FATAL) << "Unexpected binary operation type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001507 }
1508}
1509
Serban Constantinescu02164b32014-11-13 14:05:07 +00001510void LocationsBuilderARM64::HandleShift(HBinaryOperation* instr) {
1511 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1512
1513 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1514 Primitive::Type type = instr->GetResultType();
1515 switch (type) {
1516 case Primitive::kPrimInt:
1517 case Primitive::kPrimLong: {
1518 locations->SetInAt(0, Location::RequiresRegister());
1519 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1520 locations->SetOut(Location::RequiresRegister());
1521 break;
1522 }
1523 default:
1524 LOG(FATAL) << "Unexpected shift type " << type;
1525 }
1526}
1527
1528void InstructionCodeGeneratorARM64::HandleShift(HBinaryOperation* instr) {
1529 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1530
1531 Primitive::Type type = instr->GetType();
1532 switch (type) {
1533 case Primitive::kPrimInt:
1534 case Primitive::kPrimLong: {
1535 Register dst = OutputRegister(instr);
1536 Register lhs = InputRegisterAt(instr, 0);
1537 Operand rhs = InputOperandAt(instr, 1);
1538 if (rhs.IsImmediate()) {
1539 uint32_t shift_value = (type == Primitive::kPrimInt)
1540 ? static_cast<uint32_t>(rhs.immediate() & kMaxIntShiftValue)
1541 : static_cast<uint32_t>(rhs.immediate() & kMaxLongShiftValue);
1542 if (instr->IsShl()) {
1543 __ Lsl(dst, lhs, shift_value);
1544 } else if (instr->IsShr()) {
1545 __ Asr(dst, lhs, shift_value);
1546 } else {
1547 __ Lsr(dst, lhs, shift_value);
1548 }
1549 } else {
1550 Register rhs_reg = dst.IsX() ? rhs.reg().X() : rhs.reg().W();
1551
1552 if (instr->IsShl()) {
1553 __ Lsl(dst, lhs, rhs_reg);
1554 } else if (instr->IsShr()) {
1555 __ Asr(dst, lhs, rhs_reg);
1556 } else {
1557 __ Lsr(dst, lhs, rhs_reg);
1558 }
1559 }
1560 break;
1561 }
1562 default:
1563 LOG(FATAL) << "Unexpected shift operation type " << type;
1564 }
1565}
1566
Alexandre Rames5319def2014-10-23 10:03:10 +01001567void LocationsBuilderARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001568 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001569}
1570
1571void InstructionCodeGeneratorARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001572 HandleBinaryOp(instruction);
1573}
1574
1575void LocationsBuilderARM64::VisitAnd(HAnd* instruction) {
1576 HandleBinaryOp(instruction);
1577}
1578
1579void InstructionCodeGeneratorARM64::VisitAnd(HAnd* instruction) {
1580 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001581}
1582
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001583void LocationsBuilderARM64::VisitArrayGet(HArrayGet* instruction) {
1584 LocationSummary* locations =
1585 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1586 locations->SetInAt(0, Location::RequiresRegister());
1587 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01001588 if (Primitive::IsFloatingPointType(instruction->GetType())) {
1589 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1590 } else {
1591 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1592 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001593}
1594
1595void InstructionCodeGeneratorARM64::VisitArrayGet(HArrayGet* instruction) {
1596 LocationSummary* locations = instruction->GetLocations();
1597 Primitive::Type type = instruction->GetType();
1598 Register obj = InputRegisterAt(instruction, 0);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001599 Location index = locations->InAt(1);
1600 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001601 MemOperand source = HeapOperand(obj);
Alexandre Ramesd921d642015-04-16 15:07:16 +01001602 MacroAssembler* masm = GetVIXLAssembler();
1603 UseScratchRegisterScope temps(masm);
1604 BlockPoolsScope block_pools(masm);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001605
1606 if (index.IsConstant()) {
1607 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(type);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001608 source = HeapOperand(obj, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001609 } else {
1610 Register temp = temps.AcquireSameSizeAs(obj);
Alexandre Rames82000b02015-07-07 11:34:16 +01001611 __ Add(temp, obj, offset);
1612 source = HeapOperand(temp, XRegisterFrom(index), LSL, Primitive::ComponentSizeShift(type));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001613 }
1614
Alexandre Rames67555f72014-11-18 10:55:16 +00001615 codegen_->Load(type, OutputCPURegister(instruction), source);
Calin Juravle77520bc2015-01-12 18:45:46 +00001616 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain4d027112015-07-01 15:41:14 +01001617
1618 if (type == Primitive::kPrimNot) {
1619 GetAssembler()->MaybeUnpoisonHeapReference(OutputCPURegister(instruction).W());
1620 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001621}
1622
Alexandre Rames5319def2014-10-23 10:03:10 +01001623void LocationsBuilderARM64::VisitArrayLength(HArrayLength* instruction) {
1624 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1625 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001626 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001627}
1628
1629void InstructionCodeGeneratorARM64::VisitArrayLength(HArrayLength* instruction) {
Alexandre Ramesd921d642015-04-16 15:07:16 +01001630 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +01001631 __ Ldr(OutputRegister(instruction),
1632 HeapOperand(InputRegisterAt(instruction, 0), mirror::Array::LengthOffset()));
Calin Juravle77520bc2015-01-12 18:45:46 +00001633 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001634}
1635
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001636void LocationsBuilderARM64::VisitArraySet(HArraySet* instruction) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001637 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1638 instruction,
1639 instruction->NeedsTypeCheck() ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall);
1640 locations->SetInAt(0, Location::RequiresRegister());
1641 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1642 if (Primitive::IsFloatingPointType(instruction->InputAt(2)->GetType())) {
1643 locations->SetInAt(2, Location::RequiresFpuRegister());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001644 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001645 locations->SetInAt(2, Location::RequiresRegister());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001646 }
1647}
1648
1649void InstructionCodeGeneratorARM64::VisitArraySet(HArraySet* instruction) {
1650 Primitive::Type value_type = instruction->GetComponentType();
Alexandre Rames97833a02015-04-16 15:07:12 +01001651 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001652 bool may_need_runtime_call = locations->CanCall();
1653 bool needs_write_barrier =
1654 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Alexandre Rames97833a02015-04-16 15:07:12 +01001655
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001656 Register array = InputRegisterAt(instruction, 0);
1657 CPURegister value = InputCPURegisterAt(instruction, 2);
1658 CPURegister source = value;
1659 Location index = locations->InAt(1);
1660 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
1661 MemOperand destination = HeapOperand(array);
1662 MacroAssembler* masm = GetVIXLAssembler();
1663 BlockPoolsScope block_pools(masm);
1664
1665 if (!needs_write_barrier) {
1666 DCHECK(!may_need_runtime_call);
1667 if (index.IsConstant()) {
1668 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
1669 destination = HeapOperand(array, offset);
1670 } else {
1671 UseScratchRegisterScope temps(masm);
1672 Register temp = temps.AcquireSameSizeAs(array);
1673 __ Add(temp, array, offset);
1674 destination = HeapOperand(temp,
1675 XRegisterFrom(index),
1676 LSL,
1677 Primitive::ComponentSizeShift(value_type));
1678 }
1679 codegen_->Store(value_type, value, destination);
1680 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001681 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001682 DCHECK(needs_write_barrier);
1683 vixl::Label done;
1684 SlowPathCodeARM64* slow_path = nullptr;
Alexandre Rames97833a02015-04-16 15:07:12 +01001685 {
1686 // We use a block to end the scratch scope before the write barrier, thus
1687 // freeing the temporary registers so they can be used in `MarkGCCard`.
1688 UseScratchRegisterScope temps(masm);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001689 Register temp = temps.AcquireSameSizeAs(array);
Alexandre Rames97833a02015-04-16 15:07:12 +01001690 if (index.IsConstant()) {
1691 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001692 destination = HeapOperand(array, offset);
Alexandre Rames97833a02015-04-16 15:07:12 +01001693 } else {
Alexandre Rames82000b02015-07-07 11:34:16 +01001694 destination = HeapOperand(temp,
1695 XRegisterFrom(index),
1696 LSL,
1697 Primitive::ComponentSizeShift(value_type));
Alexandre Rames97833a02015-04-16 15:07:12 +01001698 }
1699
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001700 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
1701 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
1702 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
1703
1704 if (may_need_runtime_call) {
1705 slow_path = new (GetGraph()->GetArena()) ArraySetSlowPathARM64(instruction);
1706 codegen_->AddSlowPath(slow_path);
1707 if (instruction->GetValueCanBeNull()) {
1708 vixl::Label non_zero;
1709 __ Cbnz(Register(value), &non_zero);
1710 if (!index.IsConstant()) {
1711 __ Add(temp, array, offset);
1712 }
1713 __ Str(wzr, destination);
1714 codegen_->MaybeRecordImplicitNullCheck(instruction);
1715 __ B(&done);
1716 __ Bind(&non_zero);
1717 }
1718
1719 Register temp2 = temps.AcquireSameSizeAs(array);
1720 __ Ldr(temp, HeapOperand(array, class_offset));
1721 codegen_->MaybeRecordImplicitNullCheck(instruction);
1722 GetAssembler()->MaybeUnpoisonHeapReference(temp);
1723 __ Ldr(temp, HeapOperand(temp, component_offset));
1724 __ Ldr(temp2, HeapOperand(Register(value), class_offset));
1725 // No need to poison/unpoison, we're comparing two poisoned references.
1726 __ Cmp(temp, temp2);
1727 if (instruction->StaticTypeOfArrayIsObjectArray()) {
1728 vixl::Label do_put;
1729 __ B(eq, &do_put);
1730 GetAssembler()->MaybeUnpoisonHeapReference(temp);
1731 __ Ldr(temp, HeapOperand(temp, super_offset));
1732 // No need to unpoison, we're comparing against null.
1733 __ Cbnz(temp, slow_path->GetEntryLabel());
1734 __ Bind(&do_put);
1735 } else {
1736 __ B(ne, slow_path->GetEntryLabel());
1737 }
Nicolas Geoffraya8a0fe22015-10-01 15:50:27 +01001738 temps.Release(temp2);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001739 }
1740
1741 if (kPoisonHeapReferences) {
Nicolas Geoffraya8a0fe22015-10-01 15:50:27 +01001742 Register temp2 = temps.AcquireSameSizeAs(array);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001743 DCHECK(value.IsW());
Nicolas Geoffraya8a0fe22015-10-01 15:50:27 +01001744 __ Mov(temp2, value.W());
1745 GetAssembler()->PoisonHeapReference(temp2);
1746 source = temp2;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001747 }
1748
1749 if (!index.IsConstant()) {
1750 __ Add(temp, array, offset);
1751 }
Nicolas Geoffray61b1dbe2015-10-01 10:27:52 +01001752 __ Str(source, destination);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001753
1754 if (!may_need_runtime_call) {
1755 codegen_->MaybeRecordImplicitNullCheck(instruction);
1756 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001757 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01001758
1759 codegen_->MarkGCCard(array, value.W(), instruction->GetValueCanBeNull());
1760
1761 if (done.IsLinked()) {
1762 __ Bind(&done);
1763 }
1764
1765 if (slow_path != nullptr) {
1766 __ Bind(slow_path->GetExitLabel());
Alexandre Rames97833a02015-04-16 15:07:12 +01001767 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001768 }
1769}
1770
Alexandre Rames67555f72014-11-18 10:55:16 +00001771void LocationsBuilderARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00001772 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
1773 ? LocationSummary::kCallOnSlowPath
1774 : LocationSummary::kNoCall;
1775 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames67555f72014-11-18 10:55:16 +00001776 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu760d8ef2015-03-28 18:09:56 +00001777 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
Alexandre Rames67555f72014-11-18 10:55:16 +00001778 if (instruction->HasUses()) {
1779 locations->SetOut(Location::SameAsFirstInput());
1780 }
1781}
1782
1783void InstructionCodeGeneratorARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01001784 BoundsCheckSlowPathARM64* slow_path =
1785 new (GetGraph()->GetArena()) BoundsCheckSlowPathARM64(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00001786 codegen_->AddSlowPath(slow_path);
1787
1788 __ Cmp(InputRegisterAt(instruction, 0), InputOperandAt(instruction, 1));
1789 __ B(slow_path->GetEntryLabel(), hs);
1790}
1791
Alexandre Rames67555f72014-11-18 10:55:16 +00001792void LocationsBuilderARM64::VisitClinitCheck(HClinitCheck* check) {
1793 LocationSummary* locations =
1794 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
1795 locations->SetInAt(0, Location::RequiresRegister());
1796 if (check->HasUses()) {
1797 locations->SetOut(Location::SameAsFirstInput());
1798 }
1799}
1800
1801void InstructionCodeGeneratorARM64::VisitClinitCheck(HClinitCheck* check) {
1802 // We assume the class is not null.
1803 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
1804 check->GetLoadClass(), check, check->GetDexPc(), true);
1805 codegen_->AddSlowPath(slow_path);
1806 GenerateClassInitializationCheck(slow_path, InputRegisterAt(check, 0));
1807}
1808
Roland Levillain7f63c522015-07-13 15:54:55 +00001809static bool IsFloatingPointZeroConstant(HInstruction* instruction) {
1810 return (instruction->IsFloatConstant() && (instruction->AsFloatConstant()->GetValue() == 0.0f))
1811 || (instruction->IsDoubleConstant() && (instruction->AsDoubleConstant()->GetValue() == 0.0));
1812}
1813
Serban Constantinescu02164b32014-11-13 14:05:07 +00001814void LocationsBuilderARM64::VisitCompare(HCompare* compare) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001815 LocationSummary* locations =
Serban Constantinescu02164b32014-11-13 14:05:07 +00001816 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
1817 Primitive::Type in_type = compare->InputAt(0)->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001818 switch (in_type) {
1819 case Primitive::kPrimLong: {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001820 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001821 locations->SetInAt(1, ARM64EncodableConstantOrRegister(compare->InputAt(1), compare));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001822 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1823 break;
1824 }
1825 case Primitive::kPrimFloat:
1826 case Primitive::kPrimDouble: {
1827 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain7f63c522015-07-13 15:54:55 +00001828 locations->SetInAt(1,
1829 IsFloatingPointZeroConstant(compare->InputAt(1))
1830 ? Location::ConstantLocation(compare->InputAt(1)->AsConstant())
1831 : Location::RequiresFpuRegister());
Serban Constantinescu02164b32014-11-13 14:05:07 +00001832 locations->SetOut(Location::RequiresRegister());
1833 break;
1834 }
1835 default:
1836 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
1837 }
1838}
1839
1840void InstructionCodeGeneratorARM64::VisitCompare(HCompare* compare) {
1841 Primitive::Type in_type = compare->InputAt(0)->GetType();
1842
1843 // 0 if: left == right
1844 // 1 if: left > right
1845 // -1 if: left < right
1846 switch (in_type) {
1847 case Primitive::kPrimLong: {
1848 Register result = OutputRegister(compare);
1849 Register left = InputRegisterAt(compare, 0);
1850 Operand right = InputOperandAt(compare, 1);
1851
1852 __ Cmp(left, right);
1853 __ Cset(result, ne);
1854 __ Cneg(result, result, lt);
1855 break;
1856 }
1857 case Primitive::kPrimFloat:
1858 case Primitive::kPrimDouble: {
1859 Register result = OutputRegister(compare);
1860 FPRegister left = InputFPRegisterAt(compare, 0);
Alexandre Rames93415462015-02-17 15:08:20 +00001861 if (compare->GetLocations()->InAt(1).IsConstant()) {
Roland Levillain7f63c522015-07-13 15:54:55 +00001862 DCHECK(IsFloatingPointZeroConstant(compare->GetLocations()->InAt(1).GetConstant()));
1863 // 0.0 is the only immediate that can be encoded directly in an FCMP instruction.
Alexandre Rames93415462015-02-17 15:08:20 +00001864 __ Fcmp(left, 0.0);
1865 } else {
1866 __ Fcmp(left, InputFPRegisterAt(compare, 1));
1867 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00001868 if (compare->IsGtBias()) {
1869 __ Cset(result, ne);
1870 } else {
1871 __ Csetm(result, ne);
1872 }
1873 __ Cneg(result, result, compare->IsGtBias() ? mi : gt);
Alexandre Rames5319def2014-10-23 10:03:10 +01001874 break;
1875 }
1876 default:
1877 LOG(FATAL) << "Unimplemented compare type " << in_type;
1878 }
1879}
1880
1881void LocationsBuilderARM64::VisitCondition(HCondition* instruction) {
1882 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Roland Levillain7f63c522015-07-13 15:54:55 +00001883
1884 if (Primitive::IsFloatingPointType(instruction->InputAt(0)->GetType())) {
1885 locations->SetInAt(0, Location::RequiresFpuRegister());
1886 locations->SetInAt(1,
1887 IsFloatingPointZeroConstant(instruction->InputAt(1))
1888 ? Location::ConstantLocation(instruction->InputAt(1)->AsConstant())
1889 : Location::RequiresFpuRegister());
1890 } else {
1891 // Integer cases.
1892 locations->SetInAt(0, Location::RequiresRegister());
1893 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
1894 }
1895
Alexandre Rames5319def2014-10-23 10:03:10 +01001896 if (instruction->NeedsMaterialization()) {
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001897 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001898 }
1899}
1900
1901void InstructionCodeGeneratorARM64::VisitCondition(HCondition* instruction) {
1902 if (!instruction->NeedsMaterialization()) {
1903 return;
1904 }
1905
1906 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames5319def2014-10-23 10:03:10 +01001907 Register res = RegisterFrom(locations->Out(), instruction->GetType());
Roland Levillain7f63c522015-07-13 15:54:55 +00001908 IfCondition if_cond = instruction->GetCondition();
1909 Condition arm64_cond = ARM64Condition(if_cond);
Alexandre Rames5319def2014-10-23 10:03:10 +01001910
Roland Levillain7f63c522015-07-13 15:54:55 +00001911 if (Primitive::IsFloatingPointType(instruction->InputAt(0)->GetType())) {
1912 FPRegister lhs = InputFPRegisterAt(instruction, 0);
1913 if (locations->InAt(1).IsConstant()) {
1914 DCHECK(IsFloatingPointZeroConstant(locations->InAt(1).GetConstant()));
1915 // 0.0 is the only immediate that can be encoded directly in an FCMP instruction.
1916 __ Fcmp(lhs, 0.0);
1917 } else {
1918 __ Fcmp(lhs, InputFPRegisterAt(instruction, 1));
1919 }
1920 __ Cset(res, arm64_cond);
1921 if (instruction->IsFPConditionTrueIfNaN()) {
1922 // res = IsUnordered(arm64_cond) ? 1 : res <=> res = IsNotUnordered(arm64_cond) ? res : 1
1923 __ Csel(res, res, Operand(1), vc); // VC for "not unordered".
1924 } else if (instruction->IsFPConditionFalseIfNaN()) {
1925 // res = IsUnordered(arm64_cond) ? 0 : res <=> res = IsNotUnordered(arm64_cond) ? res : 0
1926 __ Csel(res, res, Operand(0), vc); // VC for "not unordered".
1927 }
1928 } else {
1929 // Integer cases.
1930 Register lhs = InputRegisterAt(instruction, 0);
1931 Operand rhs = InputOperandAt(instruction, 1);
1932 __ Cmp(lhs, rhs);
1933 __ Cset(res, arm64_cond);
1934 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001935}
1936
1937#define FOR_EACH_CONDITION_INSTRUCTION(M) \
1938 M(Equal) \
1939 M(NotEqual) \
1940 M(LessThan) \
1941 M(LessThanOrEqual) \
1942 M(GreaterThan) \
Aart Bike9f37602015-10-09 11:15:55 -07001943 M(GreaterThanOrEqual) \
1944 M(Below) \
1945 M(BelowOrEqual) \
1946 M(Above) \
1947 M(AboveOrEqual)
Alexandre Rames5319def2014-10-23 10:03:10 +01001948#define DEFINE_CONDITION_VISITORS(Name) \
1949void LocationsBuilderARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); } \
1950void InstructionCodeGeneratorARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); }
1951FOR_EACH_CONDITION_INSTRUCTION(DEFINE_CONDITION_VISITORS)
Alexandre Rames67555f72014-11-18 10:55:16 +00001952#undef DEFINE_CONDITION_VISITORS
Alexandre Rames5319def2014-10-23 10:03:10 +01001953#undef FOR_EACH_CONDITION_INSTRUCTION
1954
Zheng Xuc6667102015-05-15 16:08:45 +08001955void InstructionCodeGeneratorARM64::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
1956 DCHECK(instruction->IsDiv() || instruction->IsRem());
1957
1958 LocationSummary* locations = instruction->GetLocations();
1959 Location second = locations->InAt(1);
1960 DCHECK(second.IsConstant());
1961
1962 Register out = OutputRegister(instruction);
1963 Register dividend = InputRegisterAt(instruction, 0);
1964 int64_t imm = Int64FromConstant(second.GetConstant());
1965 DCHECK(imm == 1 || imm == -1);
1966
1967 if (instruction->IsRem()) {
1968 __ Mov(out, 0);
1969 } else {
1970 if (imm == 1) {
1971 __ Mov(out, dividend);
1972 } else {
1973 __ Neg(out, dividend);
1974 }
1975 }
1976}
1977
1978void InstructionCodeGeneratorARM64::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
1979 DCHECK(instruction->IsDiv() || instruction->IsRem());
1980
1981 LocationSummary* locations = instruction->GetLocations();
1982 Location second = locations->InAt(1);
1983 DCHECK(second.IsConstant());
1984
1985 Register out = OutputRegister(instruction);
1986 Register dividend = InputRegisterAt(instruction, 0);
1987 int64_t imm = Int64FromConstant(second.GetConstant());
Vladimir Marko80afd022015-05-19 18:08:00 +01001988 uint64_t abs_imm = static_cast<uint64_t>(std::abs(imm));
Zheng Xuc6667102015-05-15 16:08:45 +08001989 DCHECK(IsPowerOfTwo(abs_imm));
1990 int ctz_imm = CTZ(abs_imm);
1991
1992 UseScratchRegisterScope temps(GetVIXLAssembler());
1993 Register temp = temps.AcquireSameSizeAs(out);
1994
1995 if (instruction->IsDiv()) {
1996 __ Add(temp, dividend, abs_imm - 1);
1997 __ Cmp(dividend, 0);
1998 __ Csel(out, temp, dividend, lt);
1999 if (imm > 0) {
2000 __ Asr(out, out, ctz_imm);
2001 } else {
2002 __ Neg(out, Operand(out, ASR, ctz_imm));
2003 }
2004 } else {
2005 int bits = instruction->GetResultType() == Primitive::kPrimInt ? 32 : 64;
2006 __ Asr(temp, dividend, bits - 1);
2007 __ Lsr(temp, temp, bits - ctz_imm);
2008 __ Add(out, dividend, temp);
2009 __ And(out, out, abs_imm - 1);
2010 __ Sub(out, out, temp);
2011 }
2012}
2013
2014void InstructionCodeGeneratorARM64::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2015 DCHECK(instruction->IsDiv() || instruction->IsRem());
2016
2017 LocationSummary* locations = instruction->GetLocations();
2018 Location second = locations->InAt(1);
2019 DCHECK(second.IsConstant());
2020
2021 Register out = OutputRegister(instruction);
2022 Register dividend = InputRegisterAt(instruction, 0);
2023 int64_t imm = Int64FromConstant(second.GetConstant());
2024
2025 Primitive::Type type = instruction->GetResultType();
2026 DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong);
2027
2028 int64_t magic;
2029 int shift;
2030 CalculateMagicAndShiftForDivRem(imm, type == Primitive::kPrimLong /* is_long */, &magic, &shift);
2031
2032 UseScratchRegisterScope temps(GetVIXLAssembler());
2033 Register temp = temps.AcquireSameSizeAs(out);
2034
2035 // temp = get_high(dividend * magic)
2036 __ Mov(temp, magic);
2037 if (type == Primitive::kPrimLong) {
2038 __ Smulh(temp, dividend, temp);
2039 } else {
2040 __ Smull(temp.X(), dividend, temp);
2041 __ Lsr(temp.X(), temp.X(), 32);
2042 }
2043
2044 if (imm > 0 && magic < 0) {
2045 __ Add(temp, temp, dividend);
2046 } else if (imm < 0 && magic > 0) {
2047 __ Sub(temp, temp, dividend);
2048 }
2049
2050 if (shift != 0) {
2051 __ Asr(temp, temp, shift);
2052 }
2053
2054 if (instruction->IsDiv()) {
2055 __ Sub(out, temp, Operand(temp, ASR, type == Primitive::kPrimLong ? 63 : 31));
2056 } else {
2057 __ Sub(temp, temp, Operand(temp, ASR, type == Primitive::kPrimLong ? 63 : 31));
2058 // TODO: Strength reduction for msub.
2059 Register temp_imm = temps.AcquireSameSizeAs(out);
2060 __ Mov(temp_imm, imm);
2061 __ Msub(out, temp, temp_imm, dividend);
2062 }
2063}
2064
2065void InstructionCodeGeneratorARM64::GenerateDivRemIntegral(HBinaryOperation* instruction) {
2066 DCHECK(instruction->IsDiv() || instruction->IsRem());
2067 Primitive::Type type = instruction->GetResultType();
2068 DCHECK(type == Primitive::kPrimInt || Primitive::kPrimLong);
2069
2070 LocationSummary* locations = instruction->GetLocations();
2071 Register out = OutputRegister(instruction);
2072 Location second = locations->InAt(1);
2073
2074 if (second.IsConstant()) {
2075 int64_t imm = Int64FromConstant(second.GetConstant());
2076
2077 if (imm == 0) {
2078 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
2079 } else if (imm == 1 || imm == -1) {
2080 DivRemOneOrMinusOne(instruction);
2081 } else if (IsPowerOfTwo(std::abs(imm))) {
2082 DivRemByPowerOfTwo(instruction);
2083 } else {
2084 DCHECK(imm <= -2 || imm >= 2);
2085 GenerateDivRemWithAnyConstant(instruction);
2086 }
2087 } else {
2088 Register dividend = InputRegisterAt(instruction, 0);
2089 Register divisor = InputRegisterAt(instruction, 1);
2090 if (instruction->IsDiv()) {
2091 __ Sdiv(out, dividend, divisor);
2092 } else {
2093 UseScratchRegisterScope temps(GetVIXLAssembler());
2094 Register temp = temps.AcquireSameSizeAs(out);
2095 __ Sdiv(temp, dividend, divisor);
2096 __ Msub(out, temp, divisor, dividend);
2097 }
2098 }
2099}
2100
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002101void LocationsBuilderARM64::VisitDiv(HDiv* div) {
2102 LocationSummary* locations =
2103 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
2104 switch (div->GetResultType()) {
2105 case Primitive::kPrimInt:
2106 case Primitive::kPrimLong:
2107 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08002108 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002109 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2110 break;
2111
2112 case Primitive::kPrimFloat:
2113 case Primitive::kPrimDouble:
2114 locations->SetInAt(0, Location::RequiresFpuRegister());
2115 locations->SetInAt(1, Location::RequiresFpuRegister());
2116 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2117 break;
2118
2119 default:
2120 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2121 }
2122}
2123
2124void InstructionCodeGeneratorARM64::VisitDiv(HDiv* div) {
2125 Primitive::Type type = div->GetResultType();
2126 switch (type) {
2127 case Primitive::kPrimInt:
2128 case Primitive::kPrimLong:
Zheng Xuc6667102015-05-15 16:08:45 +08002129 GenerateDivRemIntegral(div);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002130 break;
2131
2132 case Primitive::kPrimFloat:
2133 case Primitive::kPrimDouble:
2134 __ Fdiv(OutputFPRegister(div), InputFPRegisterAt(div, 0), InputFPRegisterAt(div, 1));
2135 break;
2136
2137 default:
2138 LOG(FATAL) << "Unexpected div type " << type;
2139 }
2140}
2141
Alexandre Rames67555f72014-11-18 10:55:16 +00002142void LocationsBuilderARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00002143 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2144 ? LocationSummary::kCallOnSlowPath
2145 : LocationSummary::kNoCall;
2146 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames67555f72014-11-18 10:55:16 +00002147 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
2148 if (instruction->HasUses()) {
2149 locations->SetOut(Location::SameAsFirstInput());
2150 }
2151}
2152
2153void InstructionCodeGeneratorARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2154 SlowPathCodeARM64* slow_path =
2155 new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM64(instruction);
2156 codegen_->AddSlowPath(slow_path);
2157 Location value = instruction->GetLocations()->InAt(0);
2158
Alexandre Rames3e69f162014-12-10 10:36:50 +00002159 Primitive::Type type = instruction->GetType();
2160
Serguei Katkov8c0676c2015-08-03 13:55:33 +06002161 if ((type == Primitive::kPrimBoolean) || !Primitive::IsIntegralType(type)) {
2162 LOG(FATAL) << "Unexpected type " << type << " for DivZeroCheck.";
Alexandre Rames3e69f162014-12-10 10:36:50 +00002163 return;
2164 }
2165
Alexandre Rames67555f72014-11-18 10:55:16 +00002166 if (value.IsConstant()) {
2167 int64_t divisor = Int64ConstantFrom(value);
2168 if (divisor == 0) {
2169 __ B(slow_path->GetEntryLabel());
2170 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00002171 // A division by a non-null constant is valid. We don't need to perform
2172 // any check, so simply fall through.
Alexandre Rames67555f72014-11-18 10:55:16 +00002173 }
2174 } else {
2175 __ Cbz(InputRegisterAt(instruction, 0), slow_path->GetEntryLabel());
2176 }
2177}
2178
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002179void LocationsBuilderARM64::VisitDoubleConstant(HDoubleConstant* constant) {
2180 LocationSummary* locations =
2181 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2182 locations->SetOut(Location::ConstantLocation(constant));
2183}
2184
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002185void InstructionCodeGeneratorARM64::VisitDoubleConstant(
2186 HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002187 // Will be generated at use site.
2188}
2189
Alexandre Rames5319def2014-10-23 10:03:10 +01002190void LocationsBuilderARM64::VisitExit(HExit* exit) {
2191 exit->SetLocations(nullptr);
2192}
2193
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002194void InstructionCodeGeneratorARM64::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002195}
2196
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002197void LocationsBuilderARM64::VisitFloatConstant(HFloatConstant* constant) {
2198 LocationSummary* locations =
2199 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2200 locations->SetOut(Location::ConstantLocation(constant));
2201}
2202
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002203void InstructionCodeGeneratorARM64::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002204 // Will be generated at use site.
2205}
2206
David Brazdilfc6a86a2015-06-26 10:33:45 +00002207void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002208 DCHECK(!successor->IsExitBlock());
2209 HBasicBlock* block = got->GetBlock();
2210 HInstruction* previous = got->GetPrevious();
2211 HLoopInformation* info = block->GetLoopInformation();
2212
David Brazdil46e2a392015-03-16 17:31:52 +00002213 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002214 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
2215 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
2216 return;
2217 }
2218 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2219 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
2220 }
2221 if (!codegen_->GoesToNextBlock(block, successor)) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002222 __ B(codegen_->GetLabelOf(successor));
2223 }
2224}
2225
David Brazdilfc6a86a2015-06-26 10:33:45 +00002226void LocationsBuilderARM64::VisitGoto(HGoto* got) {
2227 got->SetLocations(nullptr);
2228}
2229
2230void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) {
2231 HandleGoto(got, got->GetSuccessor());
2232}
2233
2234void LocationsBuilderARM64::VisitTryBoundary(HTryBoundary* try_boundary) {
2235 try_boundary->SetLocations(nullptr);
2236}
2237
2238void InstructionCodeGeneratorARM64::VisitTryBoundary(HTryBoundary* try_boundary) {
2239 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
2240 if (!successor->IsExitBlock()) {
2241 HandleGoto(try_boundary, successor);
2242 }
2243}
2244
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002245void InstructionCodeGeneratorARM64::GenerateTestAndBranch(HInstruction* instruction,
2246 vixl::Label* true_target,
2247 vixl::Label* false_target,
2248 vixl::Label* always_true_target) {
2249 HInstruction* cond = instruction->InputAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01002250 HCondition* condition = cond->AsCondition();
Alexandre Rames5319def2014-10-23 10:03:10 +01002251
Serban Constantinescu02164b32014-11-13 14:05:07 +00002252 if (cond->IsIntConstant()) {
2253 int32_t cond_value = cond->AsIntConstant()->GetValue();
2254 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002255 if (always_true_target != nullptr) {
2256 __ B(always_true_target);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002257 }
2258 return;
2259 } else {
2260 DCHECK_EQ(cond_value, 0);
2261 }
2262 } else if (!cond->IsCondition() || condition->NeedsMaterialization()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002263 // The condition instruction has been materialized, compare the output to 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002264 Location cond_val = instruction->GetLocations()->InAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01002265 DCHECK(cond_val.IsRegister());
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002266 __ Cbnz(InputRegisterAt(instruction, 0), true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01002267 } else {
2268 // The condition instruction has not been materialized, use its inputs as
2269 // the comparison and its condition as the branch condition.
Roland Levillain7f63c522015-07-13 15:54:55 +00002270 Primitive::Type type =
2271 cond->IsCondition() ? cond->InputAt(0)->GetType() : Primitive::kPrimInt;
2272
2273 if (Primitive::IsFloatingPointType(type)) {
2274 // FP compares don't like null false_targets.
2275 if (false_target == nullptr) {
2276 false_target = codegen_->GetLabelOf(instruction->AsIf()->IfFalseSuccessor());
Alexandre Rames5319def2014-10-23 10:03:10 +01002277 }
Roland Levillain7f63c522015-07-13 15:54:55 +00002278 FPRegister lhs = InputFPRegisterAt(condition, 0);
2279 if (condition->GetLocations()->InAt(1).IsConstant()) {
2280 DCHECK(IsFloatingPointZeroConstant(condition->GetLocations()->InAt(1).GetConstant()));
2281 // 0.0 is the only immediate that can be encoded directly in an FCMP instruction.
2282 __ Fcmp(lhs, 0.0);
2283 } else {
2284 __ Fcmp(lhs, InputFPRegisterAt(condition, 1));
2285 }
2286 if (condition->IsFPConditionTrueIfNaN()) {
2287 __ B(vs, true_target); // VS for unordered.
2288 } else if (condition->IsFPConditionFalseIfNaN()) {
2289 __ B(vs, false_target); // VS for unordered.
2290 }
2291 __ B(ARM64Condition(condition->GetCondition()), true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01002292 } else {
Roland Levillain7f63c522015-07-13 15:54:55 +00002293 // Integer cases.
2294 Register lhs = InputRegisterAt(condition, 0);
2295 Operand rhs = InputOperandAt(condition, 1);
2296 Condition arm64_cond = ARM64Condition(condition->GetCondition());
2297 if ((arm64_cond != gt && arm64_cond != le) && rhs.IsImmediate() && (rhs.immediate() == 0)) {
2298 switch (arm64_cond) {
2299 case eq:
2300 __ Cbz(lhs, true_target);
2301 break;
2302 case ne:
2303 __ Cbnz(lhs, true_target);
2304 break;
2305 case lt:
2306 // Test the sign bit and branch accordingly.
2307 __ Tbnz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, true_target);
2308 break;
2309 case ge:
2310 // Test the sign bit and branch accordingly.
2311 __ Tbz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, true_target);
2312 break;
2313 default:
2314 // Without the `static_cast` the compiler throws an error for
2315 // `-Werror=sign-promo`.
2316 LOG(FATAL) << "Unexpected condition: " << static_cast<int>(arm64_cond);
2317 }
2318 } else {
2319 __ Cmp(lhs, rhs);
2320 __ B(arm64_cond, true_target);
2321 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002322 }
2323 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002324 if (false_target != nullptr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002325 __ B(false_target);
2326 }
2327}
2328
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002329void LocationsBuilderARM64::VisitIf(HIf* if_instr) {
2330 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
2331 HInstruction* cond = if_instr->InputAt(0);
2332 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
2333 locations->SetInAt(0, Location::RequiresRegister());
2334 }
2335}
2336
2337void InstructionCodeGeneratorARM64::VisitIf(HIf* if_instr) {
2338 vixl::Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
2339 vixl::Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
2340 vixl::Label* always_true_target = true_target;
2341 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
2342 if_instr->IfTrueSuccessor())) {
2343 always_true_target = nullptr;
2344 }
2345 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
2346 if_instr->IfFalseSuccessor())) {
2347 false_target = nullptr;
2348 }
2349 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
2350}
2351
2352void LocationsBuilderARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
2353 LocationSummary* locations = new (GetGraph()->GetArena())
2354 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
2355 HInstruction* cond = deoptimize->InputAt(0);
2356 DCHECK(cond->IsCondition());
2357 if (cond->AsCondition()->NeedsMaterialization()) {
2358 locations->SetInAt(0, Location::RequiresRegister());
2359 }
2360}
2361
2362void InstructionCodeGeneratorARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
2363 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena())
2364 DeoptimizationSlowPathARM64(deoptimize);
2365 codegen_->AddSlowPath(slow_path);
2366 vixl::Label* slow_path_entry = slow_path->GetEntryLabel();
2367 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
2368}
2369
Alexandre Rames5319def2014-10-23 10:03:10 +01002370void LocationsBuilderARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002371 HandleFieldGet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002372}
2373
2374void InstructionCodeGeneratorARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002375 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames5319def2014-10-23 10:03:10 +01002376}
2377
2378void LocationsBuilderARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002379 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002380}
2381
2382void InstructionCodeGeneratorARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01002383 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01002384}
2385
Alexandre Rames67555f72014-11-18 10:55:16 +00002386void LocationsBuilderARM64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002387 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2388 switch (instruction->GetTypeCheckKind()) {
2389 case TypeCheckKind::kExactCheck:
2390 case TypeCheckKind::kAbstractClassCheck:
2391 case TypeCheckKind::kClassHierarchyCheck:
2392 case TypeCheckKind::kArrayObjectCheck:
2393 call_kind = LocationSummary::kNoCall;
2394 break;
Calin Juravle98893e12015-10-02 21:05:03 +01002395 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002396 case TypeCheckKind::kInterfaceCheck:
2397 call_kind = LocationSummary::kCall;
2398 break;
2399 case TypeCheckKind::kArrayCheck:
2400 call_kind = LocationSummary::kCallOnSlowPath;
2401 break;
2402 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002403 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002404 if (call_kind != LocationSummary::kCall) {
2405 locations->SetInAt(0, Location::RequiresRegister());
2406 locations->SetInAt(1, Location::RequiresRegister());
2407 // The out register is used as a temporary, so it overlaps with the inputs.
2408 // Note that TypeCheckSlowPathARM64 uses this register too.
2409 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
2410 } else {
2411 InvokeRuntimeCallingConvention calling_convention;
2412 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(0)));
2413 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
2414 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimInt));
2415 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002416}
2417
2418void InstructionCodeGeneratorARM64::VisitInstanceOf(HInstanceOf* instruction) {
2419 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002420 Register obj = InputRegisterAt(instruction, 0);
2421 Register cls = InputRegisterAt(instruction, 1);
Alexandre Rames67555f72014-11-18 10:55:16 +00002422 Register out = OutputRegister(instruction);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002423 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2424 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
2425 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
2426 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Alexandre Rames67555f72014-11-18 10:55:16 +00002427
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002428 vixl::Label done, zero;
2429 SlowPathCodeARM64* slow_path = nullptr;
Alexandre Rames67555f72014-11-18 10:55:16 +00002430
2431 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002432 // Avoid null check if we know `obj` is not null.
2433 if (instruction->MustDoNullCheck()) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002434 __ Cbz(obj, &zero);
2435 }
2436
Calin Juravle98893e12015-10-02 21:05:03 +01002437 // In case of an interface/unresolved check, we put the object class into the object register.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002438 // This is safe, as the register is caller-save, and the object must be in another
2439 // register if it survives the runtime call.
Calin Juravle98893e12015-10-02 21:05:03 +01002440 Register target = (instruction->GetTypeCheckKind() == TypeCheckKind::kInterfaceCheck) ||
2441 (instruction->GetTypeCheckKind() == TypeCheckKind::kUnresolvedCheck)
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002442 ? obj
2443 : out;
2444 __ Ldr(target, HeapOperand(obj.W(), class_offset));
2445 GetAssembler()->MaybeUnpoisonHeapReference(target);
2446
2447 switch (instruction->GetTypeCheckKind()) {
2448 case TypeCheckKind::kExactCheck: {
2449 __ Cmp(out, cls);
2450 __ Cset(out, eq);
2451 if (zero.IsLinked()) {
2452 __ B(&done);
2453 }
2454 break;
2455 }
2456 case TypeCheckKind::kAbstractClassCheck: {
2457 // If the class is abstract, we eagerly fetch the super class of the
2458 // object to avoid doing a comparison we know will fail.
2459 vixl::Label loop, success;
2460 __ Bind(&loop);
2461 __ Ldr(out, HeapOperand(out, super_offset));
2462 GetAssembler()->MaybeUnpoisonHeapReference(out);
2463 // If `out` is null, we use it for the result, and jump to `done`.
2464 __ Cbz(out, &done);
2465 __ Cmp(out, cls);
2466 __ B(ne, &loop);
2467 __ Mov(out, 1);
2468 if (zero.IsLinked()) {
2469 __ B(&done);
2470 }
2471 break;
2472 }
2473 case TypeCheckKind::kClassHierarchyCheck: {
2474 // Walk over the class hierarchy to find a match.
2475 vixl::Label loop, success;
2476 __ Bind(&loop);
2477 __ Cmp(out, cls);
2478 __ B(eq, &success);
2479 __ Ldr(out, HeapOperand(out, super_offset));
2480 GetAssembler()->MaybeUnpoisonHeapReference(out);
2481 __ Cbnz(out, &loop);
2482 // If `out` is null, we use it for the result, and jump to `done`.
2483 __ B(&done);
2484 __ Bind(&success);
2485 __ Mov(out, 1);
2486 if (zero.IsLinked()) {
2487 __ B(&done);
2488 }
2489 break;
2490 }
2491 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002492 // Do an exact check.
2493 vixl::Label exact_check;
2494 __ Cmp(out, cls);
2495 __ B(eq, &exact_check);
2496 // Otherwise, we need to check that the object's class is a non primitive array.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002497 __ Ldr(out, HeapOperand(out, component_offset));
2498 GetAssembler()->MaybeUnpoisonHeapReference(out);
2499 // If `out` is null, we use it for the result, and jump to `done`.
2500 __ Cbz(out, &done);
2501 __ Ldrh(out, HeapOperand(out, primitive_offset));
2502 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
2503 __ Cbnz(out, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002504 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002505 __ Mov(out, 1);
2506 __ B(&done);
2507 break;
2508 }
2509 case TypeCheckKind::kArrayCheck: {
2510 __ Cmp(out, cls);
2511 DCHECK(locations->OnlyCallsOnSlowPath());
2512 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
2513 instruction, /* is_fatal */ false);
2514 codegen_->AddSlowPath(slow_path);
2515 __ B(ne, slow_path->GetEntryLabel());
2516 __ Mov(out, 1);
2517 if (zero.IsLinked()) {
2518 __ B(&done);
2519 }
2520 break;
2521 }
Calin Juravle98893e12015-10-02 21:05:03 +01002522 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002523 case TypeCheckKind::kInterfaceCheck:
2524 default: {
2525 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial),
2526 instruction,
2527 instruction->GetDexPc(),
2528 nullptr);
2529 if (zero.IsLinked()) {
2530 __ B(&done);
2531 }
2532 break;
2533 }
2534 }
2535
2536 if (zero.IsLinked()) {
2537 __ Bind(&zero);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002538 __ Mov(out, 0);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002539 }
2540
2541 if (done.IsLinked()) {
2542 __ Bind(&done);
2543 }
2544
2545 if (slow_path != nullptr) {
2546 __ Bind(slow_path->GetExitLabel());
2547 }
2548}
2549
2550void LocationsBuilderARM64::VisitCheckCast(HCheckCast* instruction) {
2551 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2552 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
2553
2554 switch (instruction->GetTypeCheckKind()) {
2555 case TypeCheckKind::kExactCheck:
2556 case TypeCheckKind::kAbstractClassCheck:
2557 case TypeCheckKind::kClassHierarchyCheck:
2558 case TypeCheckKind::kArrayObjectCheck:
2559 call_kind = throws_into_catch
2560 ? LocationSummary::kCallOnSlowPath
2561 : LocationSummary::kNoCall;
2562 break;
Calin Juravle98893e12015-10-02 21:05:03 +01002563 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002564 case TypeCheckKind::kInterfaceCheck:
2565 call_kind = LocationSummary::kCall;
2566 break;
2567 case TypeCheckKind::kArrayCheck:
2568 call_kind = LocationSummary::kCallOnSlowPath;
2569 break;
2570 }
2571
2572 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
2573 instruction, call_kind);
2574 if (call_kind != LocationSummary::kCall) {
2575 locations->SetInAt(0, Location::RequiresRegister());
2576 locations->SetInAt(1, Location::RequiresRegister());
2577 // Note that TypeCheckSlowPathARM64 uses this register too.
2578 locations->AddTemp(Location::RequiresRegister());
2579 } else {
2580 InvokeRuntimeCallingConvention calling_convention;
2581 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(0)));
2582 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
2583 }
2584}
2585
2586void InstructionCodeGeneratorARM64::VisitCheckCast(HCheckCast* instruction) {
2587 LocationSummary* locations = instruction->GetLocations();
2588 Register obj = InputRegisterAt(instruction, 0);
2589 Register cls = InputRegisterAt(instruction, 1);
2590 Register temp;
2591 if (!locations->WillCall()) {
2592 temp = WRegisterFrom(instruction->GetLocations()->GetTemp(0));
2593 }
2594
2595 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2596 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
2597 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
2598 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
2599 SlowPathCodeARM64* slow_path = nullptr;
2600
2601 if (!locations->WillCall()) {
2602 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
2603 instruction, !locations->CanCall());
2604 codegen_->AddSlowPath(slow_path);
2605 }
2606
2607 vixl::Label done;
2608 // Avoid null check if we know obj is not null.
2609 if (instruction->MustDoNullCheck()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002610 __ Cbz(obj, &done);
2611 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002612
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002613 if (locations->WillCall()) {
2614 __ Ldr(obj, HeapOperand(obj, class_offset));
2615 GetAssembler()->MaybeUnpoisonHeapReference(obj);
Alexandre Rames67555f72014-11-18 10:55:16 +00002616 } else {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002617 __ Ldr(temp, HeapOperand(obj, class_offset));
2618 GetAssembler()->MaybeUnpoisonHeapReference(temp);
Nicolas Geoffray64acf302015-09-14 22:20:29 +01002619 }
Nicolas Geoffray75374372015-09-17 17:12:19 +00002620
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002621 switch (instruction->GetTypeCheckKind()) {
2622 case TypeCheckKind::kExactCheck:
2623 case TypeCheckKind::kArrayCheck: {
2624 __ Cmp(temp, cls);
2625 // Jump to slow path for throwing the exception or doing a
2626 // more involved array check.
2627 __ B(ne, slow_path->GetEntryLabel());
2628 break;
2629 }
2630 case TypeCheckKind::kAbstractClassCheck: {
2631 // If the class is abstract, we eagerly fetch the super class of the
2632 // object to avoid doing a comparison we know will fail.
2633 vixl::Label loop;
2634 __ Bind(&loop);
2635 __ Ldr(temp, HeapOperand(temp, super_offset));
2636 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2637 // Jump to the slow path to throw the exception.
2638 __ Cbz(temp, slow_path->GetEntryLabel());
2639 __ Cmp(temp, cls);
2640 __ B(ne, &loop);
2641 break;
2642 }
2643 case TypeCheckKind::kClassHierarchyCheck: {
2644 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002645 vixl::Label loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002646 __ Bind(&loop);
2647 __ Cmp(temp, cls);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002648 __ B(eq, &done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002649 __ Ldr(temp, HeapOperand(temp, super_offset));
2650 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2651 __ Cbnz(temp, &loop);
2652 // Jump to the slow path to throw the exception.
2653 __ B(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002654 break;
2655 }
2656 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002657 // Do an exact check.
2658 __ Cmp(temp, cls);
2659 __ B(eq, &done);
2660 // Otherwise, we need to check that the object's class is a non primitive array.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002661 __ Ldr(temp, HeapOperand(temp, component_offset));
2662 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2663 __ Cbz(temp, slow_path->GetEntryLabel());
2664 __ Ldrh(temp, HeapOperand(temp, primitive_offset));
2665 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
2666 __ Cbnz(temp, slow_path->GetEntryLabel());
2667 break;
2668 }
Calin Juravle98893e12015-10-02 21:05:03 +01002669 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002670 case TypeCheckKind::kInterfaceCheck:
2671 default:
2672 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast),
2673 instruction,
2674 instruction->GetDexPc(),
2675 nullptr);
2676 break;
2677 }
Nicolas Geoffray75374372015-09-17 17:12:19 +00002678 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002679
2680 if (slow_path != nullptr) {
2681 __ Bind(slow_path->GetExitLabel());
2682 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002683}
2684
Alexandre Rames5319def2014-10-23 10:03:10 +01002685void LocationsBuilderARM64::VisitIntConstant(HIntConstant* constant) {
2686 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2687 locations->SetOut(Location::ConstantLocation(constant));
2688}
2689
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002690void InstructionCodeGeneratorARM64::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002691 // Will be generated at use site.
2692}
2693
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002694void LocationsBuilderARM64::VisitNullConstant(HNullConstant* constant) {
2695 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2696 locations->SetOut(Location::ConstantLocation(constant));
2697}
2698
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002699void InstructionCodeGeneratorARM64::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002700 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002701}
2702
Calin Juravle175dc732015-08-25 15:42:32 +01002703void LocationsBuilderARM64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2704 // The trampoline uses the same calling convention as dex calling conventions,
2705 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
2706 // the method_idx.
2707 HandleInvoke(invoke);
2708}
2709
2710void InstructionCodeGeneratorARM64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2711 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
2712}
2713
Alexandre Rames5319def2014-10-23 10:03:10 +01002714void LocationsBuilderARM64::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002715 InvokeDexCallingConventionVisitorARM64 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002716 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Alexandre Rames5319def2014-10-23 10:03:10 +01002717}
2718
Alexandre Rames67555f72014-11-18 10:55:16 +00002719void LocationsBuilderARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
2720 HandleInvoke(invoke);
2721}
2722
2723void InstructionCodeGeneratorARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
2724 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Mathieu Chartiere401d142015-04-22 13:56:20 -07002725 Register temp = XRegisterFrom(invoke->GetLocations()->GetTemp(0));
2726 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
2727 invoke->GetImtIndex() % mirror::Class::kImtSize, kArm64PointerSize).Uint32Value();
Alexandre Rames67555f72014-11-18 10:55:16 +00002728 Location receiver = invoke->GetLocations()->InAt(0);
2729 Offset class_offset = mirror::Object::ClassOffset();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002730 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames67555f72014-11-18 10:55:16 +00002731
2732 // The register ip1 is required to be used for the hidden argument in
2733 // art_quick_imt_conflict_trampoline, so prevent VIXL from using it.
Alexandre Ramesd921d642015-04-16 15:07:16 +01002734 MacroAssembler* masm = GetVIXLAssembler();
2735 UseScratchRegisterScope scratch_scope(masm);
2736 BlockPoolsScope block_pools(masm);
Alexandre Rames67555f72014-11-18 10:55:16 +00002737 scratch_scope.Exclude(ip1);
2738 __ Mov(ip1, invoke->GetDexMethodIndex());
2739
2740 // temp = object->GetClass();
2741 if (receiver.IsStackSlot()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002742 __ Ldr(temp.W(), StackOperandFrom(receiver));
2743 __ Ldr(temp.W(), HeapOperand(temp.W(), class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002744 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002745 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002746 }
Calin Juravle77520bc2015-01-12 18:45:46 +00002747 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain4d027112015-07-01 15:41:14 +01002748 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
Alexandre Rames67555f72014-11-18 10:55:16 +00002749 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002750 __ Ldr(temp, MemOperand(temp, method_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002751 // lr = temp->GetEntryPoint();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002752 __ Ldr(lr, MemOperand(temp, entry_point.Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00002753 // lr();
2754 __ Blr(lr);
2755 DCHECK(!codegen_->IsLeafMethod());
2756 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2757}
2758
2759void LocationsBuilderARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08002760 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
2761 if (intrinsic.TryDispatch(invoke)) {
2762 return;
2763 }
2764
Alexandre Rames67555f72014-11-18 10:55:16 +00002765 HandleInvoke(invoke);
2766}
2767
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002768void LocationsBuilderARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01002769 // When we do not run baseline, explicit clinit checks triggered by static
2770 // invokes must have been pruned by art::PrepareForRegisterAllocation.
2771 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002772
Andreas Gampe878d58c2015-01-15 23:24:00 -08002773 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
2774 if (intrinsic.TryDispatch(invoke)) {
2775 return;
2776 }
2777
Alexandre Rames67555f72014-11-18 10:55:16 +00002778 HandleInvoke(invoke);
2779}
2780
Andreas Gampe878d58c2015-01-15 23:24:00 -08002781static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM64* codegen) {
2782 if (invoke->GetLocations()->Intrinsified()) {
2783 IntrinsicCodeGeneratorARM64 intrinsic(codegen);
2784 intrinsic.Dispatch(invoke);
2785 return true;
2786 }
2787 return false;
2788}
2789
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002790void CodeGeneratorARM64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00002791 // For better instruction scheduling we load the direct code pointer before the method pointer.
2792 bool direct_code_loaded = false;
2793 switch (invoke->GetCodePtrLocation()) {
2794 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
2795 // LR = code address from literal pool with link-time patch.
2796 __ Ldr(lr, DeduplicateMethodCodeLiteral(invoke->GetTargetMethod()));
2797 direct_code_loaded = true;
2798 break;
2799 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
2800 // LR = invoke->GetDirectCodePtr();
2801 __ Ldr(lr, DeduplicateUint64Literal(invoke->GetDirectCodePtr()));
2802 direct_code_loaded = true;
2803 break;
2804 default:
2805 break;
2806 }
2807
Andreas Gampe878d58c2015-01-15 23:24:00 -08002808 // Make sure that ArtMethod* is passed in kArtMethodRegister as per the calling convention.
Vladimir Marko58155012015-08-19 12:49:41 +00002809 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
2810 switch (invoke->GetMethodLoadKind()) {
2811 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
2812 // temp = thread->string_init_entrypoint
2813 __ Ldr(XRegisterFrom(temp).X(), MemOperand(tr, invoke->GetStringInitOffset()));
2814 break;
2815 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
2816 callee_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
2817 break;
2818 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
2819 // Load method address from literal pool.
2820 __ Ldr(XRegisterFrom(temp).X(), DeduplicateUint64Literal(invoke->GetMethodAddress()));
2821 break;
2822 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
2823 // Load method address from literal pool with a link-time patch.
2824 __ Ldr(XRegisterFrom(temp).X(),
2825 DeduplicateMethodAddressLiteral(invoke->GetTargetMethod()));
2826 break;
2827 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: {
2828 // Add ADRP with its PC-relative DexCache access patch.
2829 pc_rel_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
2830 invoke->GetDexCacheArrayOffset());
2831 vixl::Label* pc_insn_label = &pc_rel_dex_cache_patches_.back().label;
2832 {
2833 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
2834 __ adrp(XRegisterFrom(temp).X(), 0);
2835 }
2836 __ Bind(pc_insn_label); // Bind after ADRP.
2837 pc_rel_dex_cache_patches_.back().pc_insn_label = pc_insn_label;
2838 // Add LDR with its PC-relative DexCache access patch.
2839 pc_rel_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
2840 invoke->GetDexCacheArrayOffset());
2841 __ Ldr(XRegisterFrom(temp).X(), MemOperand(XRegisterFrom(temp).X(), 0));
2842 __ Bind(&pc_rel_dex_cache_patches_.back().label); // Bind after LDR.
2843 pc_rel_dex_cache_patches_.back().pc_insn_label = pc_insn_label;
2844 break;
Vladimir Marko9b688a02015-05-06 14:12:42 +01002845 }
Vladimir Marko58155012015-08-19 12:49:41 +00002846 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
2847 Location current_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
2848 Register reg = XRegisterFrom(temp);
2849 Register method_reg;
2850 if (current_method.IsRegister()) {
2851 method_reg = XRegisterFrom(current_method);
2852 } else {
2853 DCHECK(invoke->GetLocations()->Intrinsified());
2854 DCHECK(!current_method.IsValid());
2855 method_reg = reg;
2856 __ Ldr(reg.X(), MemOperand(sp, kCurrentMethodStackOffset));
2857 }
Vladimir Markob2c431e2015-08-19 12:45:42 +00002858
Vladimir Marko58155012015-08-19 12:49:41 +00002859 // temp = current_method->dex_cache_resolved_methods_;
Vladimir Marko05792b92015-08-03 11:56:49 +01002860 __ Ldr(reg.X(),
2861 MemOperand(method_reg.X(),
2862 ArtMethod::DexCacheResolvedMethodsOffset(kArm64WordSize).Int32Value()));
Vladimir Marko58155012015-08-19 12:49:41 +00002863 // temp = temp[index_in_cache];
2864 uint32_t index_in_cache = invoke->GetTargetMethod().dex_method_index;
2865 __ Ldr(reg.X(), MemOperand(reg.X(), GetCachePointerOffset(index_in_cache)));
2866 break;
2867 }
2868 }
2869
2870 switch (invoke->GetCodePtrLocation()) {
2871 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
2872 __ Bl(&frame_entry_label_);
2873 break;
2874 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative: {
2875 relative_call_patches_.emplace_back(invoke->GetTargetMethod());
2876 vixl::Label* label = &relative_call_patches_.back().label;
2877 __ Bl(label); // Arbitrarily branch to the instruction after BL, override at link time.
2878 __ Bind(label); // Bind after BL.
2879 break;
2880 }
2881 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
2882 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
2883 // LR prepared above for better instruction scheduling.
2884 DCHECK(direct_code_loaded);
2885 // lr()
2886 __ Blr(lr);
2887 break;
2888 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
2889 // LR = callee_method->entry_point_from_quick_compiled_code_;
2890 __ Ldr(lr, MemOperand(
2891 XRegisterFrom(callee_method).X(),
2892 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize).Int32Value()));
2893 // lr()
2894 __ Blr(lr);
2895 break;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00002896 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002897
Andreas Gampe878d58c2015-01-15 23:24:00 -08002898 DCHECK(!IsLeafMethod());
2899}
2900
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002901void CodeGeneratorARM64::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_in) {
2902 LocationSummary* locations = invoke->GetLocations();
2903 Location receiver = locations->InAt(0);
2904 Register temp = XRegisterFrom(temp_in);
2905 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
2906 invoke->GetVTableIndex(), kArm64PointerSize).SizeValue();
2907 Offset class_offset = mirror::Object::ClassOffset();
2908 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
2909
2910 BlockPoolsScope block_pools(GetVIXLAssembler());
2911
2912 DCHECK(receiver.IsRegister());
2913 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
2914 MaybeRecordImplicitNullCheck(invoke);
2915 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
2916 // temp = temp->GetMethodAt(method_offset);
2917 __ Ldr(temp, MemOperand(temp, method_offset));
2918 // lr = temp->GetEntryPoint();
2919 __ Ldr(lr, MemOperand(temp, entry_point.SizeValue()));
2920 // lr();
2921 __ Blr(lr);
2922}
2923
Vladimir Marko58155012015-08-19 12:49:41 +00002924void CodeGeneratorARM64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
2925 DCHECK(linker_patches->empty());
2926 size_t size =
2927 method_patches_.size() +
2928 call_patches_.size() +
2929 relative_call_patches_.size() +
2930 pc_rel_dex_cache_patches_.size();
2931 linker_patches->reserve(size);
2932 for (const auto& entry : method_patches_) {
2933 const MethodReference& target_method = entry.first;
2934 vixl::Literal<uint64_t>* literal = entry.second;
2935 linker_patches->push_back(LinkerPatch::MethodPatch(literal->offset(),
2936 target_method.dex_file,
2937 target_method.dex_method_index));
2938 }
2939 for (const auto& entry : call_patches_) {
2940 const MethodReference& target_method = entry.first;
2941 vixl::Literal<uint64_t>* literal = entry.second;
2942 linker_patches->push_back(LinkerPatch::CodePatch(literal->offset(),
2943 target_method.dex_file,
2944 target_method.dex_method_index));
2945 }
2946 for (const MethodPatchInfo<vixl::Label>& info : relative_call_patches_) {
2947 linker_patches->push_back(LinkerPatch::RelativeCodePatch(info.label.location() - 4u,
2948 info.target_method.dex_file,
2949 info.target_method.dex_method_index));
2950 }
2951 for (const PcRelativeDexCacheAccessInfo& info : pc_rel_dex_cache_patches_) {
2952 linker_patches->push_back(LinkerPatch::DexCacheArrayPatch(info.label.location() - 4u,
2953 &info.target_dex_file,
2954 info.pc_insn_label->location() - 4u,
2955 info.element_offset));
2956 }
2957}
2958
2959vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateUint64Literal(uint64_t value) {
2960 // Look up the literal for value.
2961 auto lb = uint64_literals_.lower_bound(value);
2962 if (lb != uint64_literals_.end() && !uint64_literals_.key_comp()(value, lb->first)) {
2963 return lb->second;
2964 }
2965 // We don't have a literal for this value, insert a new one.
2966 vixl::Literal<uint64_t>* literal = __ CreateLiteralDestroyedWithPool<uint64_t>(value);
2967 uint64_literals_.PutBefore(lb, value, literal);
2968 return literal;
2969}
2970
2971vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodLiteral(
2972 MethodReference target_method,
2973 MethodToLiteralMap* map) {
2974 // Look up the literal for target_method.
2975 auto lb = map->lower_bound(target_method);
2976 if (lb != map->end() && !map->key_comp()(target_method, lb->first)) {
2977 return lb->second;
2978 }
2979 // We don't have a literal for this method yet, insert a new one.
2980 vixl::Literal<uint64_t>* literal = __ CreateLiteralDestroyedWithPool<uint64_t>(0u);
2981 map->PutBefore(lb, target_method, literal);
2982 return literal;
2983}
2984
2985vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodAddressLiteral(
2986 MethodReference target_method) {
2987 return DeduplicateMethodLiteral(target_method, &method_patches_);
2988}
2989
2990vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodCodeLiteral(
2991 MethodReference target_method) {
2992 return DeduplicateMethodLiteral(target_method, &call_patches_);
2993}
2994
2995
Andreas Gampe878d58c2015-01-15 23:24:00 -08002996void InstructionCodeGeneratorARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01002997 // When we do not run baseline, explicit clinit checks triggered by static
2998 // invokes must have been pruned by art::PrepareForRegisterAllocation.
2999 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01003000
Andreas Gampe878d58c2015-01-15 23:24:00 -08003001 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3002 return;
3003 }
3004
Alexandre Ramesd921d642015-04-16 15:07:16 +01003005 BlockPoolsScope block_pools(GetVIXLAssembler());
Nicolas Geoffray38207af2015-06-01 15:46:22 +01003006 LocationSummary* locations = invoke->GetLocations();
3007 codegen_->GenerateStaticOrDirectCall(
3008 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00003009 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Alexandre Rames5319def2014-10-23 10:03:10 +01003010}
3011
3012void InstructionCodeGeneratorARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08003013 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3014 return;
3015 }
3016
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003017 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003018 DCHECK(!codegen_->IsLeafMethod());
3019 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3020}
3021
Alexandre Rames67555f72014-11-18 10:55:16 +00003022void LocationsBuilderARM64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01003023 InvokeRuntimeCallingConvention calling_convention;
3024 CodeGenerator::CreateLoadClassLocationSummary(
3025 cls,
3026 LocationFrom(calling_convention.GetRegisterAt(0)),
3027 LocationFrom(vixl::x0));
Alexandre Rames67555f72014-11-18 10:55:16 +00003028}
3029
3030void InstructionCodeGeneratorARM64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01003031 if (cls->NeedsAccessCheck()) {
3032 codegen_->MoveConstant(cls->GetLocations()->GetTemp(0), cls->GetTypeIndex());
3033 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInitializeTypeAndVerifyAccess),
3034 cls,
3035 cls->GetDexPc(),
3036 nullptr);
Calin Juravle580b6092015-10-06 17:35:58 +01003037 return;
3038 }
3039
3040 Register out = OutputRegister(cls);
3041 Register current_method = InputRegisterAt(cls, 0);
3042 if (cls->IsReferrersClass()) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003043 DCHECK(!cls->CanCallRuntime());
3044 DCHECK(!cls->MustGenerateClinitCheck());
Mathieu Chartiere401d142015-04-22 13:56:20 -07003045 __ Ldr(out, MemOperand(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00003046 } else {
3047 DCHECK(cls->CanCallRuntime());
Vladimir Marko05792b92015-08-03 11:56:49 +01003048 MemberOffset resolved_types_offset = ArtMethod::DexCacheResolvedTypesOffset(kArm64PointerSize);
3049 __ Ldr(out.X(), MemOperand(current_method, resolved_types_offset.Int32Value()));
3050 __ Ldr(out, MemOperand(out.X(), CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
3051 // TODO: We will need a read barrier here.
Alexandre Rames67555f72014-11-18 10:55:16 +00003052
3053 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
3054 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3055 codegen_->AddSlowPath(slow_path);
3056 __ Cbz(out, slow_path->GetEntryLabel());
3057 if (cls->MustGenerateClinitCheck()) {
3058 GenerateClassInitializationCheck(slow_path, out);
3059 } else {
3060 __ Bind(slow_path->GetExitLabel());
3061 }
3062 }
3063}
3064
David Brazdilcb1c0552015-08-04 16:22:25 +01003065static MemOperand GetExceptionTlsAddress() {
3066 return MemOperand(tr, Thread::ExceptionOffset<kArm64WordSize>().Int32Value());
3067}
3068
Alexandre Rames67555f72014-11-18 10:55:16 +00003069void LocationsBuilderARM64::VisitLoadException(HLoadException* load) {
3070 LocationSummary* locations =
3071 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3072 locations->SetOut(Location::RequiresRegister());
3073}
3074
3075void InstructionCodeGeneratorARM64::VisitLoadException(HLoadException* instruction) {
David Brazdilcb1c0552015-08-04 16:22:25 +01003076 __ Ldr(OutputRegister(instruction), GetExceptionTlsAddress());
3077}
3078
3079void LocationsBuilderARM64::VisitClearException(HClearException* clear) {
3080 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
3081}
3082
3083void InstructionCodeGeneratorARM64::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
3084 __ Str(wzr, GetExceptionTlsAddress());
Alexandre Rames67555f72014-11-18 10:55:16 +00003085}
3086
Alexandre Rames5319def2014-10-23 10:03:10 +01003087void LocationsBuilderARM64::VisitLoadLocal(HLoadLocal* load) {
3088 load->SetLocations(nullptr);
3089}
3090
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003091void InstructionCodeGeneratorARM64::VisitLoadLocal(HLoadLocal* load ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003092 // Nothing to do, this is driven by the code generator.
3093}
3094
Alexandre Rames67555f72014-11-18 10:55:16 +00003095void LocationsBuilderARM64::VisitLoadString(HLoadString* load) {
3096 LocationSummary* locations =
3097 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01003098 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00003099 locations->SetOut(Location::RequiresRegister());
3100}
3101
3102void InstructionCodeGeneratorARM64::VisitLoadString(HLoadString* load) {
3103 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM64(load);
3104 codegen_->AddSlowPath(slow_path);
3105
3106 Register out = OutputRegister(load);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01003107 Register current_method = InputRegisterAt(load, 0);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003108 __ Ldr(out, MemOperand(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Vladimir Marko05792b92015-08-03 11:56:49 +01003109 __ Ldr(out.X(), HeapOperand(out, mirror::Class::DexCacheStringsOffset()));
3110 __ Ldr(out, MemOperand(out.X(), CodeGenerator::GetCacheOffset(load->GetStringIndex())));
3111 // TODO: We will need a read barrier here.
Alexandre Rames67555f72014-11-18 10:55:16 +00003112 __ Cbz(out, slow_path->GetEntryLabel());
3113 __ Bind(slow_path->GetExitLabel());
3114}
3115
Alexandre Rames5319def2014-10-23 10:03:10 +01003116void LocationsBuilderARM64::VisitLocal(HLocal* local) {
3117 local->SetLocations(nullptr);
3118}
3119
3120void InstructionCodeGeneratorARM64::VisitLocal(HLocal* local) {
3121 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
3122}
3123
3124void LocationsBuilderARM64::VisitLongConstant(HLongConstant* constant) {
3125 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
3126 locations->SetOut(Location::ConstantLocation(constant));
3127}
3128
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003129void InstructionCodeGeneratorARM64::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003130 // Will be generated at use site.
3131}
3132
Alexandre Rames67555f72014-11-18 10:55:16 +00003133void LocationsBuilderARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
3134 LocationSummary* locations =
3135 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3136 InvokeRuntimeCallingConvention calling_convention;
3137 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
3138}
3139
3140void InstructionCodeGeneratorARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
3141 codegen_->InvokeRuntime(instruction->IsEnter()
3142 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3143 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003144 instruction->GetDexPc(),
3145 nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003146 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00003147}
3148
Alexandre Rames42d641b2014-10-27 14:00:51 +00003149void LocationsBuilderARM64::VisitMul(HMul* mul) {
3150 LocationSummary* locations =
3151 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
3152 switch (mul->GetResultType()) {
3153 case Primitive::kPrimInt:
3154 case Primitive::kPrimLong:
3155 locations->SetInAt(0, Location::RequiresRegister());
3156 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00003157 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00003158 break;
3159
3160 case Primitive::kPrimFloat:
3161 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003162 locations->SetInAt(0, Location::RequiresFpuRegister());
3163 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00003164 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00003165 break;
3166
3167 default:
3168 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
3169 }
3170}
3171
3172void InstructionCodeGeneratorARM64::VisitMul(HMul* mul) {
3173 switch (mul->GetResultType()) {
3174 case Primitive::kPrimInt:
3175 case Primitive::kPrimLong:
3176 __ Mul(OutputRegister(mul), InputRegisterAt(mul, 0), InputRegisterAt(mul, 1));
3177 break;
3178
3179 case Primitive::kPrimFloat:
3180 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003181 __ Fmul(OutputFPRegister(mul), InputFPRegisterAt(mul, 0), InputFPRegisterAt(mul, 1));
Alexandre Rames42d641b2014-10-27 14:00:51 +00003182 break;
3183
3184 default:
3185 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
3186 }
3187}
3188
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003189void LocationsBuilderARM64::VisitNeg(HNeg* neg) {
3190 LocationSummary* locations =
3191 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
3192 switch (neg->GetResultType()) {
3193 case Primitive::kPrimInt:
Alexandre Rames67555f72014-11-18 10:55:16 +00003194 case Primitive::kPrimLong:
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00003195 locations->SetInAt(0, ARM64EncodableConstantOrRegister(neg->InputAt(0), neg));
Alexandre Rames67555f72014-11-18 10:55:16 +00003196 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003197 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003198
3199 case Primitive::kPrimFloat:
3200 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00003201 locations->SetInAt(0, Location::RequiresFpuRegister());
3202 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003203 break;
3204
3205 default:
3206 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
3207 }
3208}
3209
3210void InstructionCodeGeneratorARM64::VisitNeg(HNeg* neg) {
3211 switch (neg->GetResultType()) {
3212 case Primitive::kPrimInt:
3213 case Primitive::kPrimLong:
3214 __ Neg(OutputRegister(neg), InputOperandAt(neg, 0));
3215 break;
3216
3217 case Primitive::kPrimFloat:
3218 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00003219 __ Fneg(OutputFPRegister(neg), InputFPRegisterAt(neg, 0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003220 break;
3221
3222 default:
3223 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
3224 }
3225}
3226
3227void LocationsBuilderARM64::VisitNewArray(HNewArray* instruction) {
3228 LocationSummary* locations =
3229 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3230 InvokeRuntimeCallingConvention calling_convention;
3231 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003232 locations->SetOut(LocationFrom(x0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003233 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003234 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(2)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003235 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003236 void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003237}
3238
3239void InstructionCodeGeneratorARM64::VisitNewArray(HNewArray* instruction) {
3240 LocationSummary* locations = instruction->GetLocations();
3241 InvokeRuntimeCallingConvention calling_convention;
3242 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
3243 DCHECK(type_index.Is(w0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003244 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003245 // Note: if heap poisoning is enabled, the entry point takes cares
3246 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003247 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
3248 instruction,
3249 instruction->GetDexPc(),
3250 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003251 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003252}
3253
Alexandre Rames5319def2014-10-23 10:03:10 +01003254void LocationsBuilderARM64::VisitNewInstance(HNewInstance* instruction) {
3255 LocationSummary* locations =
3256 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3257 InvokeRuntimeCallingConvention calling_convention;
3258 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003259 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Alexandre Rames5319def2014-10-23 10:03:10 +01003260 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
Mathieu Chartiere401d142015-04-22 13:56:20 -07003261 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01003262}
3263
3264void InstructionCodeGeneratorARM64::VisitNewInstance(HNewInstance* instruction) {
3265 LocationSummary* locations = instruction->GetLocations();
3266 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
3267 DCHECK(type_index.Is(w0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003268 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003269 // Note: if heap poisoning is enabled, the entry point takes cares
3270 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003271 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
3272 instruction,
3273 instruction->GetDexPc(),
3274 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003275 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01003276}
3277
3278void LocationsBuilderARM64::VisitNot(HNot* instruction) {
3279 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexandre Rames4e596512014-11-07 15:56:50 +00003280 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00003281 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01003282}
3283
3284void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) {
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00003285 switch (instruction->GetResultType()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003286 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01003287 case Primitive::kPrimLong:
Roland Levillain55dcfb52014-10-24 18:09:09 +01003288 __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003289 break;
3290
3291 default:
3292 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
3293 }
3294}
3295
David Brazdil66d126e2015-04-03 16:02:44 +01003296void LocationsBuilderARM64::VisitBooleanNot(HBooleanNot* instruction) {
3297 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3298 locations->SetInAt(0, Location::RequiresRegister());
3299 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3300}
3301
3302void InstructionCodeGeneratorARM64::VisitBooleanNot(HBooleanNot* instruction) {
David Brazdil66d126e2015-04-03 16:02:44 +01003303 __ Eor(OutputRegister(instruction), InputRegisterAt(instruction, 0), vixl::Operand(1));
3304}
3305
Alexandre Rames5319def2014-10-23 10:03:10 +01003306void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003307 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
3308 ? LocationSummary::kCallOnSlowPath
3309 : LocationSummary::kNoCall;
3310 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames5319def2014-10-23 10:03:10 +01003311 locations->SetInAt(0, Location::RequiresRegister());
3312 if (instruction->HasUses()) {
3313 locations->SetOut(Location::SameAsFirstInput());
3314 }
3315}
3316
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003317void InstructionCodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003318 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3319 return;
3320 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003321
Alexandre Ramesd921d642015-04-16 15:07:16 +01003322 BlockPoolsScope block_pools(GetVIXLAssembler());
3323 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003324 __ Ldr(wzr, HeapOperandFrom(obj, Offset(0)));
3325 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3326}
3327
3328void InstructionCodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003329 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM64(instruction);
3330 codegen_->AddSlowPath(slow_path);
3331
3332 LocationSummary* locations = instruction->GetLocations();
3333 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003334
3335 __ Cbz(RegisterFrom(obj, instruction->InputAt(0)->GetType()), slow_path->GetEntryLabel());
Alexandre Rames5319def2014-10-23 10:03:10 +01003336}
3337
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003338void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003339 if (codegen_->IsImplicitNullCheckAllowed(instruction)) {
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003340 GenerateImplicitNullCheck(instruction);
3341 } else {
3342 GenerateExplicitNullCheck(instruction);
3343 }
3344}
3345
Alexandre Rames67555f72014-11-18 10:55:16 +00003346void LocationsBuilderARM64::VisitOr(HOr* instruction) {
3347 HandleBinaryOp(instruction);
3348}
3349
3350void InstructionCodeGeneratorARM64::VisitOr(HOr* instruction) {
3351 HandleBinaryOp(instruction);
3352}
3353
Alexandre Rames3e69f162014-12-10 10:36:50 +00003354void LocationsBuilderARM64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
3355 LOG(FATAL) << "Unreachable";
3356}
3357
3358void InstructionCodeGeneratorARM64::VisitParallelMove(HParallelMove* instruction) {
3359 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3360}
3361
Alexandre Rames5319def2014-10-23 10:03:10 +01003362void LocationsBuilderARM64::VisitParameterValue(HParameterValue* instruction) {
3363 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3364 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
3365 if (location.IsStackSlot()) {
3366 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3367 } else if (location.IsDoubleStackSlot()) {
3368 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3369 }
3370 locations->SetOut(location);
3371}
3372
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003373void InstructionCodeGeneratorARM64::VisitParameterValue(
3374 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003375 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003376}
3377
3378void LocationsBuilderARM64::VisitCurrentMethod(HCurrentMethod* instruction) {
3379 LocationSummary* locations =
3380 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray38207af2015-06-01 15:46:22 +01003381 locations->SetOut(LocationFrom(kArtMethodRegister));
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003382}
3383
3384void InstructionCodeGeneratorARM64::VisitCurrentMethod(
3385 HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
3386 // Nothing to do, the method is already at its location.
Alexandre Rames5319def2014-10-23 10:03:10 +01003387}
3388
3389void LocationsBuilderARM64::VisitPhi(HPhi* instruction) {
3390 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3391 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
3392 locations->SetInAt(i, Location::Any());
3393 }
3394 locations->SetOut(Location::Any());
3395}
3396
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003397void InstructionCodeGeneratorARM64::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003398 LOG(FATAL) << "Unreachable";
3399}
3400
Serban Constantinescu02164b32014-11-13 14:05:07 +00003401void LocationsBuilderARM64::VisitRem(HRem* rem) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003402 Primitive::Type type = rem->GetResultType();
Alexandre Rames542361f2015-01-29 16:57:31 +00003403 LocationSummary::CallKind call_kind =
3404 Primitive::IsFloatingPointType(type) ? LocationSummary::kCall : LocationSummary::kNoCall;
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003405 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
3406
3407 switch (type) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003408 case Primitive::kPrimInt:
3409 case Primitive::kPrimLong:
3410 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08003411 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00003412 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3413 break;
3414
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003415 case Primitive::kPrimFloat:
3416 case Primitive::kPrimDouble: {
3417 InvokeRuntimeCallingConvention calling_convention;
3418 locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0)));
3419 locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1)));
3420 locations->SetOut(calling_convention.GetReturnLocation(type));
3421
3422 break;
3423 }
3424
Serban Constantinescu02164b32014-11-13 14:05:07 +00003425 default:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003426 LOG(FATAL) << "Unexpected rem type " << type;
Serban Constantinescu02164b32014-11-13 14:05:07 +00003427 }
3428}
3429
3430void InstructionCodeGeneratorARM64::VisitRem(HRem* rem) {
3431 Primitive::Type type = rem->GetResultType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003432
Serban Constantinescu02164b32014-11-13 14:05:07 +00003433 switch (type) {
3434 case Primitive::kPrimInt:
3435 case Primitive::kPrimLong: {
Zheng Xuc6667102015-05-15 16:08:45 +08003436 GenerateDivRemIntegral(rem);
Serban Constantinescu02164b32014-11-13 14:05:07 +00003437 break;
3438 }
3439
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003440 case Primitive::kPrimFloat:
3441 case Primitive::kPrimDouble: {
3442 int32_t entry_offset = (type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pFmodf)
3443 : QUICK_ENTRY_POINT(pFmod);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003444 codegen_->InvokeRuntime(entry_offset, rem, rem->GetDexPc(), nullptr);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003445 break;
3446 }
3447
Serban Constantinescu02164b32014-11-13 14:05:07 +00003448 default:
3449 LOG(FATAL) << "Unexpected rem type " << type;
3450 }
3451}
3452
Calin Juravle27df7582015-04-17 19:12:31 +01003453void LocationsBuilderARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
3454 memory_barrier->SetLocations(nullptr);
3455}
3456
3457void InstructionCodeGeneratorARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
3458 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
3459}
3460
Alexandre Rames5319def2014-10-23 10:03:10 +01003461void LocationsBuilderARM64::VisitReturn(HReturn* instruction) {
3462 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3463 Primitive::Type return_type = instruction->InputAt(0)->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003464 locations->SetInAt(0, ARM64ReturnLocation(return_type));
Alexandre Rames5319def2014-10-23 10:03:10 +01003465}
3466
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003467void InstructionCodeGeneratorARM64::VisitReturn(HReturn* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003468 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01003469}
3470
3471void LocationsBuilderARM64::VisitReturnVoid(HReturnVoid* instruction) {
3472 instruction->SetLocations(nullptr);
3473}
3474
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003475void InstructionCodeGeneratorARM64::VisitReturnVoid(HReturnVoid* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003476 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01003477}
3478
Serban Constantinescu02164b32014-11-13 14:05:07 +00003479void LocationsBuilderARM64::VisitShl(HShl* shl) {
3480 HandleShift(shl);
3481}
3482
3483void InstructionCodeGeneratorARM64::VisitShl(HShl* shl) {
3484 HandleShift(shl);
3485}
3486
3487void LocationsBuilderARM64::VisitShr(HShr* shr) {
3488 HandleShift(shr);
3489}
3490
3491void InstructionCodeGeneratorARM64::VisitShr(HShr* shr) {
3492 HandleShift(shr);
3493}
3494
Alexandre Rames5319def2014-10-23 10:03:10 +01003495void LocationsBuilderARM64::VisitStoreLocal(HStoreLocal* store) {
3496 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
3497 Primitive::Type field_type = store->InputAt(1)->GetType();
3498 switch (field_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003499 case Primitive::kPrimNot:
Alexandre Rames5319def2014-10-23 10:03:10 +01003500 case Primitive::kPrimBoolean:
3501 case Primitive::kPrimByte:
3502 case Primitive::kPrimChar:
3503 case Primitive::kPrimShort:
3504 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003505 case Primitive::kPrimFloat:
Alexandre Rames5319def2014-10-23 10:03:10 +01003506 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
3507 break;
3508
3509 case Primitive::kPrimLong:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003510 case Primitive::kPrimDouble:
Alexandre Rames5319def2014-10-23 10:03:10 +01003511 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
3512 break;
3513
3514 default:
3515 LOG(FATAL) << "Unimplemented local type " << field_type;
3516 }
3517}
3518
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003519void InstructionCodeGeneratorARM64::VisitStoreLocal(HStoreLocal* store ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003520}
3521
3522void LocationsBuilderARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003523 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003524}
3525
3526void InstructionCodeGeneratorARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003527 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003528}
3529
Alexandre Rames67555f72014-11-18 10:55:16 +00003530void LocationsBuilderARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003531 HandleFieldGet(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00003532}
3533
3534void InstructionCodeGeneratorARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003535 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames67555f72014-11-18 10:55:16 +00003536}
3537
3538void LocationsBuilderARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003539 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003540}
3541
Alexandre Rames67555f72014-11-18 10:55:16 +00003542void InstructionCodeGeneratorARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003543 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01003544}
3545
Calin Juravlee460d1d2015-09-29 04:52:17 +01003546void LocationsBuilderARM64::VisitUnresolvedInstanceFieldGet(
3547 HUnresolvedInstanceFieldGet* instruction) {
3548 FieldAccessCallingConventionARM64 calling_convention;
3549 codegen_->CreateUnresolvedFieldLocationSummary(
3550 instruction, instruction->GetFieldType(), calling_convention);
3551}
3552
3553void InstructionCodeGeneratorARM64::VisitUnresolvedInstanceFieldGet(
3554 HUnresolvedInstanceFieldGet* instruction) {
3555 FieldAccessCallingConventionARM64 calling_convention;
3556 codegen_->GenerateUnresolvedFieldAccess(instruction,
3557 instruction->GetFieldType(),
3558 instruction->GetFieldIndex(),
3559 instruction->GetDexPc(),
3560 calling_convention);
3561}
3562
3563void LocationsBuilderARM64::VisitUnresolvedInstanceFieldSet(
3564 HUnresolvedInstanceFieldSet* instruction) {
3565 FieldAccessCallingConventionARM64 calling_convention;
3566 codegen_->CreateUnresolvedFieldLocationSummary(
3567 instruction, instruction->GetFieldType(), calling_convention);
3568}
3569
3570void InstructionCodeGeneratorARM64::VisitUnresolvedInstanceFieldSet(
3571 HUnresolvedInstanceFieldSet* instruction) {
3572 FieldAccessCallingConventionARM64 calling_convention;
3573 codegen_->GenerateUnresolvedFieldAccess(instruction,
3574 instruction->GetFieldType(),
3575 instruction->GetFieldIndex(),
3576 instruction->GetDexPc(),
3577 calling_convention);
3578}
3579
3580void LocationsBuilderARM64::VisitUnresolvedStaticFieldGet(
3581 HUnresolvedStaticFieldGet* instruction) {
3582 FieldAccessCallingConventionARM64 calling_convention;
3583 codegen_->CreateUnresolvedFieldLocationSummary(
3584 instruction, instruction->GetFieldType(), calling_convention);
3585}
3586
3587void InstructionCodeGeneratorARM64::VisitUnresolvedStaticFieldGet(
3588 HUnresolvedStaticFieldGet* instruction) {
3589 FieldAccessCallingConventionARM64 calling_convention;
3590 codegen_->GenerateUnresolvedFieldAccess(instruction,
3591 instruction->GetFieldType(),
3592 instruction->GetFieldIndex(),
3593 instruction->GetDexPc(),
3594 calling_convention);
3595}
3596
3597void LocationsBuilderARM64::VisitUnresolvedStaticFieldSet(
3598 HUnresolvedStaticFieldSet* instruction) {
3599 FieldAccessCallingConventionARM64 calling_convention;
3600 codegen_->CreateUnresolvedFieldLocationSummary(
3601 instruction, instruction->GetFieldType(), calling_convention);
3602}
3603
3604void InstructionCodeGeneratorARM64::VisitUnresolvedStaticFieldSet(
3605 HUnresolvedStaticFieldSet* instruction) {
3606 FieldAccessCallingConventionARM64 calling_convention;
3607 codegen_->GenerateUnresolvedFieldAccess(instruction,
3608 instruction->GetFieldType(),
3609 instruction->GetFieldIndex(),
3610 instruction->GetDexPc(),
3611 calling_convention);
3612}
3613
Alexandre Rames5319def2014-10-23 10:03:10 +01003614void LocationsBuilderARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
3615 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3616}
3617
3618void InstructionCodeGeneratorARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003619 HBasicBlock* block = instruction->GetBlock();
3620 if (block->GetLoopInformation() != nullptr) {
3621 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3622 // The back edge will generate the suspend check.
3623 return;
3624 }
3625 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3626 // The goto will generate the suspend check.
3627 return;
3628 }
3629 GenerateSuspendCheck(instruction, nullptr);
Alexandre Rames5319def2014-10-23 10:03:10 +01003630}
3631
3632void LocationsBuilderARM64::VisitTemporary(HTemporary* temp) {
3633 temp->SetLocations(nullptr);
3634}
3635
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003636void InstructionCodeGeneratorARM64::VisitTemporary(HTemporary* temp ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003637 // Nothing to do, this is driven by the code generator.
Alexandre Rames5319def2014-10-23 10:03:10 +01003638}
3639
Alexandre Rames67555f72014-11-18 10:55:16 +00003640void LocationsBuilderARM64::VisitThrow(HThrow* instruction) {
3641 LocationSummary* locations =
3642 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3643 InvokeRuntimeCallingConvention calling_convention;
3644 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
3645}
3646
3647void InstructionCodeGeneratorARM64::VisitThrow(HThrow* instruction) {
3648 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003649 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003650 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00003651}
3652
3653void LocationsBuilderARM64::VisitTypeConversion(HTypeConversion* conversion) {
3654 LocationSummary* locations =
3655 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
3656 Primitive::Type input_type = conversion->GetInputType();
3657 Primitive::Type result_type = conversion->GetResultType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00003658 DCHECK_NE(input_type, result_type);
Alexandre Rames67555f72014-11-18 10:55:16 +00003659 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
3660 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
3661 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
3662 }
3663
Alexandre Rames542361f2015-01-29 16:57:31 +00003664 if (Primitive::IsFloatingPointType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003665 locations->SetInAt(0, Location::RequiresFpuRegister());
3666 } else {
3667 locations->SetInAt(0, Location::RequiresRegister());
3668 }
3669
Alexandre Rames542361f2015-01-29 16:57:31 +00003670 if (Primitive::IsFloatingPointType(result_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003671 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3672 } else {
3673 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3674 }
3675}
3676
3677void InstructionCodeGeneratorARM64::VisitTypeConversion(HTypeConversion* conversion) {
3678 Primitive::Type result_type = conversion->GetResultType();
3679 Primitive::Type input_type = conversion->GetInputType();
3680
3681 DCHECK_NE(input_type, result_type);
3682
Alexandre Rames542361f2015-01-29 16:57:31 +00003683 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003684 int result_size = Primitive::ComponentSize(result_type);
3685 int input_size = Primitive::ComponentSize(input_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00003686 int min_size = std::min(result_size, input_size);
Serban Constantinescu02164b32014-11-13 14:05:07 +00003687 Register output = OutputRegister(conversion);
3688 Register source = InputRegisterAt(conversion, 0);
Alexandre Rames3e69f162014-12-10 10:36:50 +00003689 if ((result_type == Primitive::kPrimChar) && (input_size < result_size)) {
3690 __ Ubfx(output, source, 0, result_size * kBitsPerByte);
Alexandre Rames4dff2fd2015-08-20 13:36:35 +01003691 } else if (result_type == Primitive::kPrimInt && input_type == Primitive::kPrimLong) {
3692 // 'int' values are used directly as W registers, discarding the top
3693 // bits, so we don't need to sign-extend and can just perform a move.
3694 // We do not pass the `kDiscardForSameWReg` argument to force clearing the
3695 // top 32 bits of the target register. We theoretically could leave those
3696 // bits unchanged, but we would have to make sure that no code uses a
3697 // 32bit input value as a 64bit value assuming that the top 32 bits are
3698 // zero.
3699 __ Mov(output.W(), source.W());
Alexandre Rames3e69f162014-12-10 10:36:50 +00003700 } else if ((result_type == Primitive::kPrimChar) ||
3701 ((input_type == Primitive::kPrimChar) && (result_size > input_size))) {
3702 __ Ubfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00003703 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00003704 __ Sbfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00003705 }
Alexandre Rames542361f2015-01-29 16:57:31 +00003706 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003707 __ Scvtf(OutputFPRegister(conversion), InputRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00003708 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003709 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
3710 __ Fcvtzs(OutputRegister(conversion), InputFPRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00003711 } else if (Primitive::IsFloatingPointType(result_type) &&
3712 Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003713 __ Fcvt(OutputFPRegister(conversion), InputFPRegisterAt(conversion, 0));
3714 } else {
3715 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
3716 << " to " << result_type;
Alexandre Rames67555f72014-11-18 10:55:16 +00003717 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00003718}
Alexandre Rames67555f72014-11-18 10:55:16 +00003719
Serban Constantinescu02164b32014-11-13 14:05:07 +00003720void LocationsBuilderARM64::VisitUShr(HUShr* ushr) {
3721 HandleShift(ushr);
3722}
3723
3724void InstructionCodeGeneratorARM64::VisitUShr(HUShr* ushr) {
3725 HandleShift(ushr);
Alexandre Rames67555f72014-11-18 10:55:16 +00003726}
3727
3728void LocationsBuilderARM64::VisitXor(HXor* instruction) {
3729 HandleBinaryOp(instruction);
3730}
3731
3732void InstructionCodeGeneratorARM64::VisitXor(HXor* instruction) {
3733 HandleBinaryOp(instruction);
3734}
3735
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003736void LocationsBuilderARM64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00003737 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00003738 LOG(FATAL) << "Unreachable";
3739}
3740
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003741void InstructionCodeGeneratorARM64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00003742 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00003743 LOG(FATAL) << "Unreachable";
3744}
3745
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +01003746void LocationsBuilderARM64::VisitFakeString(HFakeString* instruction) {
3747 DCHECK(codegen_->IsBaseline());
3748 LocationSummary* locations =
3749 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3750 locations->SetOut(Location::ConstantLocation(GetGraph()->GetNullConstant()));
3751}
3752
3753void InstructionCodeGeneratorARM64::VisitFakeString(HFakeString* instruction ATTRIBUTE_UNUSED) {
3754 DCHECK(codegen_->IsBaseline());
3755 // Will be generated at use site.
3756}
3757
Mark Mendellfe57faa2015-09-18 09:26:15 -04003758// Simple implementation of packed switch - generate cascaded compare/jumps.
3759void LocationsBuilderARM64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
3760 LocationSummary* locations =
3761 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
3762 locations->SetInAt(0, Location::RequiresRegister());
3763}
3764
3765void InstructionCodeGeneratorARM64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
3766 int32_t lower_bound = switch_instr->GetStartValue();
3767 int32_t num_entries = switch_instr->GetNumEntries();
3768 Register value_reg = InputRegisterAt(switch_instr, 0);
3769 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
3770
3771 // Create a series of compare/jumps.
3772 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
3773 for (int32_t i = 0; i < num_entries; i++) {
3774 int32_t case_value = lower_bound + i;
Vladimir Markoec7802a2015-10-01 20:57:57 +01003775 vixl::Label* succ = codegen_->GetLabelOf(successors[i]);
Mark Mendellfe57faa2015-09-18 09:26:15 -04003776 if (case_value == 0) {
3777 __ Cbz(value_reg, succ);
3778 } else {
3779 __ Cmp(value_reg, vixl::Operand(case_value));
3780 __ B(eq, succ);
3781 }
3782 }
3783
3784 // And the default for any other value.
3785 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
3786 __ B(codegen_->GetLabelOf(default_block));
3787 }
3788}
3789
Alexandre Rames67555f72014-11-18 10:55:16 +00003790#undef __
3791#undef QUICK_ENTRY_POINT
3792
Alexandre Rames5319def2014-10-23 10:03:10 +01003793} // namespace arm64
3794} // namespace art