blob: 602d56898f7ac3b267dd74b8d46979d8c4d659cb [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);
Aart Bikbb245d12015-10-19 11:05:03 -07002356 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002357 locations->SetInAt(0, Location::RequiresRegister());
2358 }
2359}
2360
2361void InstructionCodeGeneratorARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
2362 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena())
2363 DeoptimizationSlowPathARM64(deoptimize);
2364 codegen_->AddSlowPath(slow_path);
2365 vixl::Label* slow_path_entry = slow_path->GetEntryLabel();
2366 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
2367}
2368
Alexandre Rames5319def2014-10-23 10:03:10 +01002369void LocationsBuilderARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002370 HandleFieldGet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002371}
2372
2373void InstructionCodeGeneratorARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002374 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames5319def2014-10-23 10:03:10 +01002375}
2376
2377void LocationsBuilderARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01002378 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002379}
2380
2381void InstructionCodeGeneratorARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01002382 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01002383}
2384
Alexandre Rames67555f72014-11-18 10:55:16 +00002385void LocationsBuilderARM64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002386 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2387 switch (instruction->GetTypeCheckKind()) {
2388 case TypeCheckKind::kExactCheck:
2389 case TypeCheckKind::kAbstractClassCheck:
2390 case TypeCheckKind::kClassHierarchyCheck:
2391 case TypeCheckKind::kArrayObjectCheck:
2392 call_kind = LocationSummary::kNoCall;
2393 break;
Calin Juravle98893e12015-10-02 21:05:03 +01002394 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002395 case TypeCheckKind::kInterfaceCheck:
2396 call_kind = LocationSummary::kCall;
2397 break;
2398 case TypeCheckKind::kArrayCheck:
2399 call_kind = LocationSummary::kCallOnSlowPath;
2400 break;
2401 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002402 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002403 if (call_kind != LocationSummary::kCall) {
2404 locations->SetInAt(0, Location::RequiresRegister());
2405 locations->SetInAt(1, Location::RequiresRegister());
2406 // The out register is used as a temporary, so it overlaps with the inputs.
2407 // Note that TypeCheckSlowPathARM64 uses this register too.
2408 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
2409 } else {
2410 InvokeRuntimeCallingConvention calling_convention;
2411 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(0)));
2412 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
2413 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimInt));
2414 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002415}
2416
2417void InstructionCodeGeneratorARM64::VisitInstanceOf(HInstanceOf* instruction) {
2418 LocationSummary* locations = instruction->GetLocations();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002419 Register obj = InputRegisterAt(instruction, 0);
2420 Register cls = InputRegisterAt(instruction, 1);
Alexandre Rames67555f72014-11-18 10:55:16 +00002421 Register out = OutputRegister(instruction);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002422 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2423 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
2424 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
2425 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Alexandre Rames67555f72014-11-18 10:55:16 +00002426
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002427 vixl::Label done, zero;
2428 SlowPathCodeARM64* slow_path = nullptr;
Alexandre Rames67555f72014-11-18 10:55:16 +00002429
2430 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002431 // Avoid null check if we know `obj` is not null.
2432 if (instruction->MustDoNullCheck()) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002433 __ Cbz(obj, &zero);
2434 }
2435
Calin Juravle98893e12015-10-02 21:05:03 +01002436 // In case of an interface/unresolved check, we put the object class into the object register.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002437 // This is safe, as the register is caller-save, and the object must be in another
2438 // register if it survives the runtime call.
Calin Juravle98893e12015-10-02 21:05:03 +01002439 Register target = (instruction->GetTypeCheckKind() == TypeCheckKind::kInterfaceCheck) ||
2440 (instruction->GetTypeCheckKind() == TypeCheckKind::kUnresolvedCheck)
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002441 ? obj
2442 : out;
2443 __ Ldr(target, HeapOperand(obj.W(), class_offset));
2444 GetAssembler()->MaybeUnpoisonHeapReference(target);
2445
2446 switch (instruction->GetTypeCheckKind()) {
2447 case TypeCheckKind::kExactCheck: {
2448 __ Cmp(out, cls);
2449 __ Cset(out, eq);
2450 if (zero.IsLinked()) {
2451 __ B(&done);
2452 }
2453 break;
2454 }
2455 case TypeCheckKind::kAbstractClassCheck: {
2456 // If the class is abstract, we eagerly fetch the super class of the
2457 // object to avoid doing a comparison we know will fail.
2458 vixl::Label loop, success;
2459 __ Bind(&loop);
2460 __ Ldr(out, HeapOperand(out, super_offset));
2461 GetAssembler()->MaybeUnpoisonHeapReference(out);
2462 // If `out` is null, we use it for the result, and jump to `done`.
2463 __ Cbz(out, &done);
2464 __ Cmp(out, cls);
2465 __ B(ne, &loop);
2466 __ Mov(out, 1);
2467 if (zero.IsLinked()) {
2468 __ B(&done);
2469 }
2470 break;
2471 }
2472 case TypeCheckKind::kClassHierarchyCheck: {
2473 // Walk over the class hierarchy to find a match.
2474 vixl::Label loop, success;
2475 __ Bind(&loop);
2476 __ Cmp(out, cls);
2477 __ B(eq, &success);
2478 __ Ldr(out, HeapOperand(out, super_offset));
2479 GetAssembler()->MaybeUnpoisonHeapReference(out);
2480 __ Cbnz(out, &loop);
2481 // If `out` is null, we use it for the result, and jump to `done`.
2482 __ B(&done);
2483 __ Bind(&success);
2484 __ Mov(out, 1);
2485 if (zero.IsLinked()) {
2486 __ B(&done);
2487 }
2488 break;
2489 }
2490 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002491 // Do an exact check.
2492 vixl::Label exact_check;
2493 __ Cmp(out, cls);
2494 __ B(eq, &exact_check);
2495 // Otherwise, we need to check that the object's class is a non primitive array.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002496 __ Ldr(out, HeapOperand(out, component_offset));
2497 GetAssembler()->MaybeUnpoisonHeapReference(out);
2498 // If `out` is null, we use it for the result, and jump to `done`.
2499 __ Cbz(out, &done);
2500 __ Ldrh(out, HeapOperand(out, primitive_offset));
2501 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
2502 __ Cbnz(out, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002503 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002504 __ Mov(out, 1);
2505 __ B(&done);
2506 break;
2507 }
2508 case TypeCheckKind::kArrayCheck: {
2509 __ Cmp(out, cls);
2510 DCHECK(locations->OnlyCallsOnSlowPath());
2511 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
2512 instruction, /* is_fatal */ false);
2513 codegen_->AddSlowPath(slow_path);
2514 __ B(ne, slow_path->GetEntryLabel());
2515 __ Mov(out, 1);
2516 if (zero.IsLinked()) {
2517 __ B(&done);
2518 }
2519 break;
2520 }
Calin Juravle98893e12015-10-02 21:05:03 +01002521 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002522 case TypeCheckKind::kInterfaceCheck:
2523 default: {
2524 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial),
2525 instruction,
2526 instruction->GetDexPc(),
2527 nullptr);
2528 if (zero.IsLinked()) {
2529 __ B(&done);
2530 }
2531 break;
2532 }
2533 }
2534
2535 if (zero.IsLinked()) {
2536 __ Bind(&zero);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002537 __ Mov(out, 0);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002538 }
2539
2540 if (done.IsLinked()) {
2541 __ Bind(&done);
2542 }
2543
2544 if (slow_path != nullptr) {
2545 __ Bind(slow_path->GetExitLabel());
2546 }
2547}
2548
2549void LocationsBuilderARM64::VisitCheckCast(HCheckCast* instruction) {
2550 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
2551 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
2552
2553 switch (instruction->GetTypeCheckKind()) {
2554 case TypeCheckKind::kExactCheck:
2555 case TypeCheckKind::kAbstractClassCheck:
2556 case TypeCheckKind::kClassHierarchyCheck:
2557 case TypeCheckKind::kArrayObjectCheck:
2558 call_kind = throws_into_catch
2559 ? LocationSummary::kCallOnSlowPath
2560 : LocationSummary::kNoCall;
2561 break;
Calin Juravle98893e12015-10-02 21:05:03 +01002562 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002563 case TypeCheckKind::kInterfaceCheck:
2564 call_kind = LocationSummary::kCall;
2565 break;
2566 case TypeCheckKind::kArrayCheck:
2567 call_kind = LocationSummary::kCallOnSlowPath;
2568 break;
2569 }
2570
2571 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
2572 instruction, call_kind);
2573 if (call_kind != LocationSummary::kCall) {
2574 locations->SetInAt(0, Location::RequiresRegister());
2575 locations->SetInAt(1, Location::RequiresRegister());
2576 // Note that TypeCheckSlowPathARM64 uses this register too.
2577 locations->AddTemp(Location::RequiresRegister());
2578 } else {
2579 InvokeRuntimeCallingConvention calling_convention;
2580 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(0)));
2581 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
2582 }
2583}
2584
2585void InstructionCodeGeneratorARM64::VisitCheckCast(HCheckCast* instruction) {
2586 LocationSummary* locations = instruction->GetLocations();
2587 Register obj = InputRegisterAt(instruction, 0);
2588 Register cls = InputRegisterAt(instruction, 1);
2589 Register temp;
2590 if (!locations->WillCall()) {
2591 temp = WRegisterFrom(instruction->GetLocations()->GetTemp(0));
2592 }
2593
2594 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2595 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
2596 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
2597 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
2598 SlowPathCodeARM64* slow_path = nullptr;
2599
2600 if (!locations->WillCall()) {
2601 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
2602 instruction, !locations->CanCall());
2603 codegen_->AddSlowPath(slow_path);
2604 }
2605
2606 vixl::Label done;
2607 // Avoid null check if we know obj is not null.
2608 if (instruction->MustDoNullCheck()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01002609 __ Cbz(obj, &done);
2610 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002611
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002612 if (locations->WillCall()) {
2613 __ Ldr(obj, HeapOperand(obj, class_offset));
2614 GetAssembler()->MaybeUnpoisonHeapReference(obj);
Alexandre Rames67555f72014-11-18 10:55:16 +00002615 } else {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002616 __ Ldr(temp, HeapOperand(obj, class_offset));
2617 GetAssembler()->MaybeUnpoisonHeapReference(temp);
Nicolas Geoffray64acf302015-09-14 22:20:29 +01002618 }
Nicolas Geoffray75374372015-09-17 17:12:19 +00002619
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002620 switch (instruction->GetTypeCheckKind()) {
2621 case TypeCheckKind::kExactCheck:
2622 case TypeCheckKind::kArrayCheck: {
2623 __ Cmp(temp, cls);
2624 // Jump to slow path for throwing the exception or doing a
2625 // more involved array check.
2626 __ B(ne, slow_path->GetEntryLabel());
2627 break;
2628 }
2629 case TypeCheckKind::kAbstractClassCheck: {
2630 // If the class is abstract, we eagerly fetch the super class of the
2631 // object to avoid doing a comparison we know will fail.
2632 vixl::Label loop;
2633 __ Bind(&loop);
2634 __ Ldr(temp, HeapOperand(temp, super_offset));
2635 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2636 // Jump to the slow path to throw the exception.
2637 __ Cbz(temp, slow_path->GetEntryLabel());
2638 __ Cmp(temp, cls);
2639 __ B(ne, &loop);
2640 break;
2641 }
2642 case TypeCheckKind::kClassHierarchyCheck: {
2643 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002644 vixl::Label loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002645 __ Bind(&loop);
2646 __ Cmp(temp, cls);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002647 __ B(eq, &done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002648 __ Ldr(temp, HeapOperand(temp, super_offset));
2649 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2650 __ Cbnz(temp, &loop);
2651 // Jump to the slow path to throw the exception.
2652 __ B(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002653 break;
2654 }
2655 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01002656 // Do an exact check.
2657 __ Cmp(temp, cls);
2658 __ B(eq, &done);
2659 // Otherwise, we need to check that the object's class is a non primitive array.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002660 __ Ldr(temp, HeapOperand(temp, component_offset));
2661 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2662 __ Cbz(temp, slow_path->GetEntryLabel());
2663 __ Ldrh(temp, HeapOperand(temp, primitive_offset));
2664 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
2665 __ Cbnz(temp, slow_path->GetEntryLabel());
2666 break;
2667 }
Calin Juravle98893e12015-10-02 21:05:03 +01002668 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002669 case TypeCheckKind::kInterfaceCheck:
2670 default:
2671 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast),
2672 instruction,
2673 instruction->GetDexPc(),
2674 nullptr);
2675 break;
2676 }
Nicolas Geoffray75374372015-09-17 17:12:19 +00002677 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00002678
2679 if (slow_path != nullptr) {
2680 __ Bind(slow_path->GetExitLabel());
2681 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002682}
2683
Alexandre Rames5319def2014-10-23 10:03:10 +01002684void LocationsBuilderARM64::VisitIntConstant(HIntConstant* constant) {
2685 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2686 locations->SetOut(Location::ConstantLocation(constant));
2687}
2688
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002689void InstructionCodeGeneratorARM64::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002690 // Will be generated at use site.
2691}
2692
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002693void LocationsBuilderARM64::VisitNullConstant(HNullConstant* constant) {
2694 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2695 locations->SetOut(Location::ConstantLocation(constant));
2696}
2697
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002698void InstructionCodeGeneratorARM64::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002699 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00002700}
2701
Calin Juravle175dc732015-08-25 15:42:32 +01002702void LocationsBuilderARM64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2703 // The trampoline uses the same calling convention as dex calling conventions,
2704 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
2705 // the method_idx.
2706 HandleInvoke(invoke);
2707}
2708
2709void InstructionCodeGeneratorARM64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
2710 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
2711}
2712
Alexandre Rames5319def2014-10-23 10:03:10 +01002713void LocationsBuilderARM64::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01002714 InvokeDexCallingConventionVisitorARM64 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01002715 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Alexandre Rames5319def2014-10-23 10:03:10 +01002716}
2717
Alexandre Rames67555f72014-11-18 10:55:16 +00002718void LocationsBuilderARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
2719 HandleInvoke(invoke);
2720}
2721
2722void InstructionCodeGeneratorARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
2723 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Mathieu Chartiere401d142015-04-22 13:56:20 -07002724 Register temp = XRegisterFrom(invoke->GetLocations()->GetTemp(0));
2725 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
2726 invoke->GetImtIndex() % mirror::Class::kImtSize, kArm64PointerSize).Uint32Value();
Alexandre Rames67555f72014-11-18 10:55:16 +00002727 Location receiver = invoke->GetLocations()->InAt(0);
2728 Offset class_offset = mirror::Object::ClassOffset();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002729 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames67555f72014-11-18 10:55:16 +00002730
2731 // The register ip1 is required to be used for the hidden argument in
2732 // art_quick_imt_conflict_trampoline, so prevent VIXL from using it.
Alexandre Ramesd921d642015-04-16 15:07:16 +01002733 MacroAssembler* masm = GetVIXLAssembler();
2734 UseScratchRegisterScope scratch_scope(masm);
2735 BlockPoolsScope block_pools(masm);
Alexandre Rames67555f72014-11-18 10:55:16 +00002736 scratch_scope.Exclude(ip1);
2737 __ Mov(ip1, invoke->GetDexMethodIndex());
2738
2739 // temp = object->GetClass();
2740 if (receiver.IsStackSlot()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002741 __ Ldr(temp.W(), StackOperandFrom(receiver));
2742 __ Ldr(temp.W(), HeapOperand(temp.W(), class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002743 } else {
Mathieu Chartiere401d142015-04-22 13:56:20 -07002744 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002745 }
Calin Juravle77520bc2015-01-12 18:45:46 +00002746 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain4d027112015-07-01 15:41:14 +01002747 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
Alexandre Rames67555f72014-11-18 10:55:16 +00002748 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartiere401d142015-04-22 13:56:20 -07002749 __ Ldr(temp, MemOperand(temp, method_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00002750 // lr = temp->GetEntryPoint();
Mathieu Chartiere401d142015-04-22 13:56:20 -07002751 __ Ldr(lr, MemOperand(temp, entry_point.Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00002752 // lr();
2753 __ Blr(lr);
2754 DCHECK(!codegen_->IsLeafMethod());
2755 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2756}
2757
2758void LocationsBuilderARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08002759 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
2760 if (intrinsic.TryDispatch(invoke)) {
2761 return;
2762 }
2763
Alexandre Rames67555f72014-11-18 10:55:16 +00002764 HandleInvoke(invoke);
2765}
2766
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00002767void LocationsBuilderARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01002768 // When we do not run baseline, explicit clinit checks triggered by static
2769 // invokes must have been pruned by art::PrepareForRegisterAllocation.
2770 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01002771
Andreas Gampe878d58c2015-01-15 23:24:00 -08002772 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
2773 if (intrinsic.TryDispatch(invoke)) {
2774 return;
2775 }
2776
Alexandre Rames67555f72014-11-18 10:55:16 +00002777 HandleInvoke(invoke);
2778}
2779
Andreas Gampe878d58c2015-01-15 23:24:00 -08002780static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM64* codegen) {
2781 if (invoke->GetLocations()->Intrinsified()) {
2782 IntrinsicCodeGeneratorARM64 intrinsic(codegen);
2783 intrinsic.Dispatch(invoke);
2784 return true;
2785 }
2786 return false;
2787}
2788
Vladimir Markodc151b22015-10-15 18:02:30 +01002789HInvokeStaticOrDirect::DispatchInfo CodeGeneratorARM64::GetSupportedInvokeStaticOrDirectDispatch(
2790 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
2791 MethodReference target_method ATTRIBUTE_UNUSED) {
2792 // On arm64 we support all dispatch types.
2793 return desired_dispatch_info;
2794}
2795
Nicolas Geoffray38207af2015-06-01 15:46:22 +01002796void CodeGeneratorARM64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00002797 // For better instruction scheduling we load the direct code pointer before the method pointer.
2798 bool direct_code_loaded = false;
2799 switch (invoke->GetCodePtrLocation()) {
2800 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
2801 // LR = code address from literal pool with link-time patch.
2802 __ Ldr(lr, DeduplicateMethodCodeLiteral(invoke->GetTargetMethod()));
2803 direct_code_loaded = true;
2804 break;
2805 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
2806 // LR = invoke->GetDirectCodePtr();
2807 __ Ldr(lr, DeduplicateUint64Literal(invoke->GetDirectCodePtr()));
2808 direct_code_loaded = true;
2809 break;
2810 default:
2811 break;
2812 }
2813
Andreas Gampe878d58c2015-01-15 23:24:00 -08002814 // Make sure that ArtMethod* is passed in kArtMethodRegister as per the calling convention.
Vladimir Marko58155012015-08-19 12:49:41 +00002815 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
2816 switch (invoke->GetMethodLoadKind()) {
2817 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
2818 // temp = thread->string_init_entrypoint
2819 __ Ldr(XRegisterFrom(temp).X(), MemOperand(tr, invoke->GetStringInitOffset()));
2820 break;
2821 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
2822 callee_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
2823 break;
2824 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
2825 // Load method address from literal pool.
2826 __ Ldr(XRegisterFrom(temp).X(), DeduplicateUint64Literal(invoke->GetMethodAddress()));
2827 break;
2828 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
2829 // Load method address from literal pool with a link-time patch.
2830 __ Ldr(XRegisterFrom(temp).X(),
2831 DeduplicateMethodAddressLiteral(invoke->GetTargetMethod()));
2832 break;
2833 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: {
2834 // Add ADRP with its PC-relative DexCache access patch.
2835 pc_rel_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
2836 invoke->GetDexCacheArrayOffset());
2837 vixl::Label* pc_insn_label = &pc_rel_dex_cache_patches_.back().label;
2838 {
2839 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
2840 __ adrp(XRegisterFrom(temp).X(), 0);
2841 }
2842 __ Bind(pc_insn_label); // Bind after ADRP.
2843 pc_rel_dex_cache_patches_.back().pc_insn_label = pc_insn_label;
2844 // Add LDR with its PC-relative DexCache access patch.
2845 pc_rel_dex_cache_patches_.emplace_back(*invoke->GetTargetMethod().dex_file,
2846 invoke->GetDexCacheArrayOffset());
2847 __ Ldr(XRegisterFrom(temp).X(), MemOperand(XRegisterFrom(temp).X(), 0));
2848 __ Bind(&pc_rel_dex_cache_patches_.back().label); // Bind after LDR.
2849 pc_rel_dex_cache_patches_.back().pc_insn_label = pc_insn_label;
2850 break;
Vladimir Marko9b688a02015-05-06 14:12:42 +01002851 }
Vladimir Marko58155012015-08-19 12:49:41 +00002852 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
2853 Location current_method = invoke->GetLocations()->InAt(invoke->GetCurrentMethodInputIndex());
2854 Register reg = XRegisterFrom(temp);
2855 Register method_reg;
2856 if (current_method.IsRegister()) {
2857 method_reg = XRegisterFrom(current_method);
2858 } else {
2859 DCHECK(invoke->GetLocations()->Intrinsified());
2860 DCHECK(!current_method.IsValid());
2861 method_reg = reg;
2862 __ Ldr(reg.X(), MemOperand(sp, kCurrentMethodStackOffset));
2863 }
Vladimir Markob2c431e2015-08-19 12:45:42 +00002864
Vladimir Marko58155012015-08-19 12:49:41 +00002865 // temp = current_method->dex_cache_resolved_methods_;
Vladimir Marko05792b92015-08-03 11:56:49 +01002866 __ Ldr(reg.X(),
2867 MemOperand(method_reg.X(),
2868 ArtMethod::DexCacheResolvedMethodsOffset(kArm64WordSize).Int32Value()));
Vladimir Marko58155012015-08-19 12:49:41 +00002869 // temp = temp[index_in_cache];
2870 uint32_t index_in_cache = invoke->GetTargetMethod().dex_method_index;
2871 __ Ldr(reg.X(), MemOperand(reg.X(), GetCachePointerOffset(index_in_cache)));
2872 break;
2873 }
2874 }
2875
2876 switch (invoke->GetCodePtrLocation()) {
2877 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
2878 __ Bl(&frame_entry_label_);
2879 break;
2880 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative: {
2881 relative_call_patches_.emplace_back(invoke->GetTargetMethod());
2882 vixl::Label* label = &relative_call_patches_.back().label;
2883 __ Bl(label); // Arbitrarily branch to the instruction after BL, override at link time.
2884 __ Bind(label); // Bind after BL.
2885 break;
2886 }
2887 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
2888 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
2889 // LR prepared above for better instruction scheduling.
2890 DCHECK(direct_code_loaded);
2891 // lr()
2892 __ Blr(lr);
2893 break;
2894 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
2895 // LR = callee_method->entry_point_from_quick_compiled_code_;
2896 __ Ldr(lr, MemOperand(
2897 XRegisterFrom(callee_method).X(),
2898 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize).Int32Value()));
2899 // lr()
2900 __ Blr(lr);
2901 break;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00002902 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002903
Andreas Gampe878d58c2015-01-15 23:24:00 -08002904 DCHECK(!IsLeafMethod());
2905}
2906
Andreas Gampebfb5ba92015-09-01 15:45:02 +00002907void CodeGeneratorARM64::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_in) {
2908 LocationSummary* locations = invoke->GetLocations();
2909 Location receiver = locations->InAt(0);
2910 Register temp = XRegisterFrom(temp_in);
2911 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
2912 invoke->GetVTableIndex(), kArm64PointerSize).SizeValue();
2913 Offset class_offset = mirror::Object::ClassOffset();
2914 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
2915
2916 BlockPoolsScope block_pools(GetVIXLAssembler());
2917
2918 DCHECK(receiver.IsRegister());
2919 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
2920 MaybeRecordImplicitNullCheck(invoke);
2921 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
2922 // temp = temp->GetMethodAt(method_offset);
2923 __ Ldr(temp, MemOperand(temp, method_offset));
2924 // lr = temp->GetEntryPoint();
2925 __ Ldr(lr, MemOperand(temp, entry_point.SizeValue()));
2926 // lr();
2927 __ Blr(lr);
2928}
2929
Vladimir Marko58155012015-08-19 12:49:41 +00002930void CodeGeneratorARM64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
2931 DCHECK(linker_patches->empty());
2932 size_t size =
2933 method_patches_.size() +
2934 call_patches_.size() +
2935 relative_call_patches_.size() +
2936 pc_rel_dex_cache_patches_.size();
2937 linker_patches->reserve(size);
2938 for (const auto& entry : method_patches_) {
2939 const MethodReference& target_method = entry.first;
2940 vixl::Literal<uint64_t>* literal = entry.second;
2941 linker_patches->push_back(LinkerPatch::MethodPatch(literal->offset(),
2942 target_method.dex_file,
2943 target_method.dex_method_index));
2944 }
2945 for (const auto& entry : call_patches_) {
2946 const MethodReference& target_method = entry.first;
2947 vixl::Literal<uint64_t>* literal = entry.second;
2948 linker_patches->push_back(LinkerPatch::CodePatch(literal->offset(),
2949 target_method.dex_file,
2950 target_method.dex_method_index));
2951 }
2952 for (const MethodPatchInfo<vixl::Label>& info : relative_call_patches_) {
2953 linker_patches->push_back(LinkerPatch::RelativeCodePatch(info.label.location() - 4u,
2954 info.target_method.dex_file,
2955 info.target_method.dex_method_index));
2956 }
2957 for (const PcRelativeDexCacheAccessInfo& info : pc_rel_dex_cache_patches_) {
2958 linker_patches->push_back(LinkerPatch::DexCacheArrayPatch(info.label.location() - 4u,
2959 &info.target_dex_file,
2960 info.pc_insn_label->location() - 4u,
2961 info.element_offset));
2962 }
2963}
2964
2965vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateUint64Literal(uint64_t value) {
2966 // Look up the literal for value.
2967 auto lb = uint64_literals_.lower_bound(value);
2968 if (lb != uint64_literals_.end() && !uint64_literals_.key_comp()(value, lb->first)) {
2969 return lb->second;
2970 }
2971 // We don't have a literal for this value, insert a new one.
2972 vixl::Literal<uint64_t>* literal = __ CreateLiteralDestroyedWithPool<uint64_t>(value);
2973 uint64_literals_.PutBefore(lb, value, literal);
2974 return literal;
2975}
2976
2977vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodLiteral(
2978 MethodReference target_method,
2979 MethodToLiteralMap* map) {
2980 // Look up the literal for target_method.
2981 auto lb = map->lower_bound(target_method);
2982 if (lb != map->end() && !map->key_comp()(target_method, lb->first)) {
2983 return lb->second;
2984 }
2985 // We don't have a literal for this method yet, insert a new one.
2986 vixl::Literal<uint64_t>* literal = __ CreateLiteralDestroyedWithPool<uint64_t>(0u);
2987 map->PutBefore(lb, target_method, literal);
2988 return literal;
2989}
2990
2991vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodAddressLiteral(
2992 MethodReference target_method) {
2993 return DeduplicateMethodLiteral(target_method, &method_patches_);
2994}
2995
2996vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodCodeLiteral(
2997 MethodReference target_method) {
2998 return DeduplicateMethodLiteral(target_method, &call_patches_);
2999}
3000
3001
Andreas Gampe878d58c2015-01-15 23:24:00 -08003002void InstructionCodeGeneratorARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Roland Levillain3e3d7332015-04-28 11:00:54 +01003003 // When we do not run baseline, explicit clinit checks triggered by static
3004 // invokes must have been pruned by art::PrepareForRegisterAllocation.
3005 DCHECK(codegen_->IsBaseline() || !invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01003006
Andreas Gampe878d58c2015-01-15 23:24:00 -08003007 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3008 return;
3009 }
3010
Alexandre Ramesd921d642015-04-16 15:07:16 +01003011 BlockPoolsScope block_pools(GetVIXLAssembler());
Nicolas Geoffray38207af2015-06-01 15:46:22 +01003012 LocationSummary* locations = invoke->GetLocations();
3013 codegen_->GenerateStaticOrDirectCall(
3014 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00003015 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Alexandre Rames5319def2014-10-23 10:03:10 +01003016}
3017
3018void InstructionCodeGeneratorARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08003019 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3020 return;
3021 }
3022
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003023 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003024 DCHECK(!codegen_->IsLeafMethod());
3025 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3026}
3027
Alexandre Rames67555f72014-11-18 10:55:16 +00003028void LocationsBuilderARM64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01003029 InvokeRuntimeCallingConvention calling_convention;
3030 CodeGenerator::CreateLoadClassLocationSummary(
3031 cls,
3032 LocationFrom(calling_convention.GetRegisterAt(0)),
3033 LocationFrom(vixl::x0));
Alexandre Rames67555f72014-11-18 10:55:16 +00003034}
3035
3036void InstructionCodeGeneratorARM64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01003037 if (cls->NeedsAccessCheck()) {
3038 codegen_->MoveConstant(cls->GetLocations()->GetTemp(0), cls->GetTypeIndex());
3039 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInitializeTypeAndVerifyAccess),
3040 cls,
3041 cls->GetDexPc(),
3042 nullptr);
Calin Juravle580b6092015-10-06 17:35:58 +01003043 return;
3044 }
3045
3046 Register out = OutputRegister(cls);
3047 Register current_method = InputRegisterAt(cls, 0);
3048 if (cls->IsReferrersClass()) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003049 DCHECK(!cls->CanCallRuntime());
3050 DCHECK(!cls->MustGenerateClinitCheck());
Mathieu Chartiere401d142015-04-22 13:56:20 -07003051 __ Ldr(out, MemOperand(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00003052 } else {
3053 DCHECK(cls->CanCallRuntime());
Vladimir Marko05792b92015-08-03 11:56:49 +01003054 MemberOffset resolved_types_offset = ArtMethod::DexCacheResolvedTypesOffset(kArm64PointerSize);
3055 __ Ldr(out.X(), MemOperand(current_method, resolved_types_offset.Int32Value()));
3056 __ Ldr(out, MemOperand(out.X(), CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
3057 // TODO: We will need a read barrier here.
Alexandre Rames67555f72014-11-18 10:55:16 +00003058
3059 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
3060 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3061 codegen_->AddSlowPath(slow_path);
3062 __ Cbz(out, slow_path->GetEntryLabel());
3063 if (cls->MustGenerateClinitCheck()) {
3064 GenerateClassInitializationCheck(slow_path, out);
3065 } else {
3066 __ Bind(slow_path->GetExitLabel());
3067 }
3068 }
3069}
3070
David Brazdilcb1c0552015-08-04 16:22:25 +01003071static MemOperand GetExceptionTlsAddress() {
3072 return MemOperand(tr, Thread::ExceptionOffset<kArm64WordSize>().Int32Value());
3073}
3074
Alexandre Rames67555f72014-11-18 10:55:16 +00003075void LocationsBuilderARM64::VisitLoadException(HLoadException* load) {
3076 LocationSummary* locations =
3077 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3078 locations->SetOut(Location::RequiresRegister());
3079}
3080
3081void InstructionCodeGeneratorARM64::VisitLoadException(HLoadException* instruction) {
David Brazdilcb1c0552015-08-04 16:22:25 +01003082 __ Ldr(OutputRegister(instruction), GetExceptionTlsAddress());
3083}
3084
3085void LocationsBuilderARM64::VisitClearException(HClearException* clear) {
3086 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
3087}
3088
3089void InstructionCodeGeneratorARM64::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
3090 __ Str(wzr, GetExceptionTlsAddress());
Alexandre Rames67555f72014-11-18 10:55:16 +00003091}
3092
Alexandre Rames5319def2014-10-23 10:03:10 +01003093void LocationsBuilderARM64::VisitLoadLocal(HLoadLocal* load) {
3094 load->SetLocations(nullptr);
3095}
3096
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003097void InstructionCodeGeneratorARM64::VisitLoadLocal(HLoadLocal* load ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003098 // Nothing to do, this is driven by the code generator.
3099}
3100
Alexandre Rames67555f72014-11-18 10:55:16 +00003101void LocationsBuilderARM64::VisitLoadString(HLoadString* load) {
3102 LocationSummary* locations =
3103 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01003104 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00003105 locations->SetOut(Location::RequiresRegister());
3106}
3107
3108void InstructionCodeGeneratorARM64::VisitLoadString(HLoadString* load) {
3109 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM64(load);
3110 codegen_->AddSlowPath(slow_path);
3111
3112 Register out = OutputRegister(load);
Nicolas Geoffrayfbdaa302015-05-29 12:06:56 +01003113 Register current_method = InputRegisterAt(load, 0);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003114 __ Ldr(out, MemOperand(current_method, ArtMethod::DeclaringClassOffset().Int32Value()));
Vladimir Marko05792b92015-08-03 11:56:49 +01003115 __ Ldr(out.X(), HeapOperand(out, mirror::Class::DexCacheStringsOffset()));
3116 __ Ldr(out, MemOperand(out.X(), CodeGenerator::GetCacheOffset(load->GetStringIndex())));
3117 // TODO: We will need a read barrier here.
Alexandre Rames67555f72014-11-18 10:55:16 +00003118 __ Cbz(out, slow_path->GetEntryLabel());
3119 __ Bind(slow_path->GetExitLabel());
3120}
3121
Alexandre Rames5319def2014-10-23 10:03:10 +01003122void LocationsBuilderARM64::VisitLocal(HLocal* local) {
3123 local->SetLocations(nullptr);
3124}
3125
3126void InstructionCodeGeneratorARM64::VisitLocal(HLocal* local) {
3127 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
3128}
3129
3130void LocationsBuilderARM64::VisitLongConstant(HLongConstant* constant) {
3131 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
3132 locations->SetOut(Location::ConstantLocation(constant));
3133}
3134
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003135void InstructionCodeGeneratorARM64::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003136 // Will be generated at use site.
3137}
3138
Alexandre Rames67555f72014-11-18 10:55:16 +00003139void LocationsBuilderARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
3140 LocationSummary* locations =
3141 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3142 InvokeRuntimeCallingConvention calling_convention;
3143 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
3144}
3145
3146void InstructionCodeGeneratorARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
3147 codegen_->InvokeRuntime(instruction->IsEnter()
3148 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
3149 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003150 instruction->GetDexPc(),
3151 nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003152 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00003153}
3154
Alexandre Rames42d641b2014-10-27 14:00:51 +00003155void LocationsBuilderARM64::VisitMul(HMul* mul) {
3156 LocationSummary* locations =
3157 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
3158 switch (mul->GetResultType()) {
3159 case Primitive::kPrimInt:
3160 case Primitive::kPrimLong:
3161 locations->SetInAt(0, Location::RequiresRegister());
3162 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00003163 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00003164 break;
3165
3166 case Primitive::kPrimFloat:
3167 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003168 locations->SetInAt(0, Location::RequiresFpuRegister());
3169 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00003170 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00003171 break;
3172
3173 default:
3174 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
3175 }
3176}
3177
3178void InstructionCodeGeneratorARM64::VisitMul(HMul* mul) {
3179 switch (mul->GetResultType()) {
3180 case Primitive::kPrimInt:
3181 case Primitive::kPrimLong:
3182 __ Mul(OutputRegister(mul), InputRegisterAt(mul, 0), InputRegisterAt(mul, 1));
3183 break;
3184
3185 case Primitive::kPrimFloat:
3186 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003187 __ Fmul(OutputFPRegister(mul), InputFPRegisterAt(mul, 0), InputFPRegisterAt(mul, 1));
Alexandre Rames42d641b2014-10-27 14:00:51 +00003188 break;
3189
3190 default:
3191 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
3192 }
3193}
3194
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003195void LocationsBuilderARM64::VisitNeg(HNeg* neg) {
3196 LocationSummary* locations =
3197 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
3198 switch (neg->GetResultType()) {
3199 case Primitive::kPrimInt:
Alexandre Rames67555f72014-11-18 10:55:16 +00003200 case Primitive::kPrimLong:
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00003201 locations->SetInAt(0, ARM64EncodableConstantOrRegister(neg->InputAt(0), neg));
Alexandre Rames67555f72014-11-18 10:55:16 +00003202 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003203 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003204
3205 case Primitive::kPrimFloat:
3206 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00003207 locations->SetInAt(0, Location::RequiresFpuRegister());
3208 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003209 break;
3210
3211 default:
3212 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
3213 }
3214}
3215
3216void InstructionCodeGeneratorARM64::VisitNeg(HNeg* neg) {
3217 switch (neg->GetResultType()) {
3218 case Primitive::kPrimInt:
3219 case Primitive::kPrimLong:
3220 __ Neg(OutputRegister(neg), InputOperandAt(neg, 0));
3221 break;
3222
3223 case Primitive::kPrimFloat:
3224 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00003225 __ Fneg(OutputFPRegister(neg), InputFPRegisterAt(neg, 0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003226 break;
3227
3228 default:
3229 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
3230 }
3231}
3232
3233void LocationsBuilderARM64::VisitNewArray(HNewArray* instruction) {
3234 LocationSummary* locations =
3235 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3236 InvokeRuntimeCallingConvention calling_convention;
3237 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003238 locations->SetOut(LocationFrom(x0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003239 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003240 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(2)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003241 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
Mathieu Chartiere401d142015-04-22 13:56:20 -07003242 void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003243}
3244
3245void InstructionCodeGeneratorARM64::VisitNewArray(HNewArray* instruction) {
3246 LocationSummary* locations = instruction->GetLocations();
3247 InvokeRuntimeCallingConvention calling_convention;
3248 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
3249 DCHECK(type_index.Is(w0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003250 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003251 // Note: if heap poisoning is enabled, the entry point takes cares
3252 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003253 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
3254 instruction,
3255 instruction->GetDexPc(),
3256 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003257 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00003258}
3259
Alexandre Rames5319def2014-10-23 10:03:10 +01003260void LocationsBuilderARM64::VisitNewInstance(HNewInstance* instruction) {
3261 LocationSummary* locations =
3262 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3263 InvokeRuntimeCallingConvention calling_convention;
3264 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01003265 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Alexandre Rames5319def2014-10-23 10:03:10 +01003266 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
Mathieu Chartiere401d142015-04-22 13:56:20 -07003267 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01003268}
3269
3270void InstructionCodeGeneratorARM64::VisitNewInstance(HNewInstance* instruction) {
3271 LocationSummary* locations = instruction->GetLocations();
3272 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
3273 DCHECK(type_index.Is(w0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003274 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01003275 // Note: if heap poisoning is enabled, the entry point takes cares
3276 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01003277 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
3278 instruction,
3279 instruction->GetDexPc(),
3280 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003281 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01003282}
3283
3284void LocationsBuilderARM64::VisitNot(HNot* instruction) {
3285 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexandre Rames4e596512014-11-07 15:56:50 +00003286 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00003287 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01003288}
3289
3290void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) {
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00003291 switch (instruction->GetResultType()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003292 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01003293 case Primitive::kPrimLong:
Roland Levillain55dcfb52014-10-24 18:09:09 +01003294 __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003295 break;
3296
3297 default:
3298 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
3299 }
3300}
3301
David Brazdil66d126e2015-04-03 16:02:44 +01003302void LocationsBuilderARM64::VisitBooleanNot(HBooleanNot* instruction) {
3303 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3304 locations->SetInAt(0, Location::RequiresRegister());
3305 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3306}
3307
3308void InstructionCodeGeneratorARM64::VisitBooleanNot(HBooleanNot* instruction) {
David Brazdil66d126e2015-04-03 16:02:44 +01003309 __ Eor(OutputRegister(instruction), InputRegisterAt(instruction, 0), vixl::Operand(1));
3310}
3311
Alexandre Rames5319def2014-10-23 10:03:10 +01003312void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003313 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
3314 ? LocationSummary::kCallOnSlowPath
3315 : LocationSummary::kNoCall;
3316 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames5319def2014-10-23 10:03:10 +01003317 locations->SetInAt(0, Location::RequiresRegister());
3318 if (instruction->HasUses()) {
3319 locations->SetOut(Location::SameAsFirstInput());
3320 }
3321}
3322
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003323void InstructionCodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00003324 if (codegen_->CanMoveNullCheckToUser(instruction)) {
3325 return;
3326 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003327
Alexandre Ramesd921d642015-04-16 15:07:16 +01003328 BlockPoolsScope block_pools(GetVIXLAssembler());
3329 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003330 __ Ldr(wzr, HeapOperandFrom(obj, Offset(0)));
3331 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
3332}
3333
3334void InstructionCodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003335 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM64(instruction);
3336 codegen_->AddSlowPath(slow_path);
3337
3338 LocationSummary* locations = instruction->GetLocations();
3339 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00003340
3341 __ Cbz(RegisterFrom(obj, instruction->InputAt(0)->GetType()), slow_path->GetEntryLabel());
Alexandre Rames5319def2014-10-23 10:03:10 +01003342}
3343
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003344void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00003345 if (codegen_->IsImplicitNullCheckAllowed(instruction)) {
Calin Juravlecd6dffe2015-01-08 17:35:35 +00003346 GenerateImplicitNullCheck(instruction);
3347 } else {
3348 GenerateExplicitNullCheck(instruction);
3349 }
3350}
3351
Alexandre Rames67555f72014-11-18 10:55:16 +00003352void LocationsBuilderARM64::VisitOr(HOr* instruction) {
3353 HandleBinaryOp(instruction);
3354}
3355
3356void InstructionCodeGeneratorARM64::VisitOr(HOr* instruction) {
3357 HandleBinaryOp(instruction);
3358}
3359
Alexandre Rames3e69f162014-12-10 10:36:50 +00003360void LocationsBuilderARM64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
3361 LOG(FATAL) << "Unreachable";
3362}
3363
3364void InstructionCodeGeneratorARM64::VisitParallelMove(HParallelMove* instruction) {
3365 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
3366}
3367
Alexandre Rames5319def2014-10-23 10:03:10 +01003368void LocationsBuilderARM64::VisitParameterValue(HParameterValue* instruction) {
3369 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3370 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
3371 if (location.IsStackSlot()) {
3372 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3373 } else if (location.IsDoubleStackSlot()) {
3374 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
3375 }
3376 locations->SetOut(location);
3377}
3378
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003379void InstructionCodeGeneratorARM64::VisitParameterValue(
3380 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003381 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003382}
3383
3384void LocationsBuilderARM64::VisitCurrentMethod(HCurrentMethod* instruction) {
3385 LocationSummary* locations =
3386 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray38207af2015-06-01 15:46:22 +01003387 locations->SetOut(LocationFrom(kArtMethodRegister));
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01003388}
3389
3390void InstructionCodeGeneratorARM64::VisitCurrentMethod(
3391 HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
3392 // Nothing to do, the method is already at its location.
Alexandre Rames5319def2014-10-23 10:03:10 +01003393}
3394
3395void LocationsBuilderARM64::VisitPhi(HPhi* instruction) {
3396 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3397 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
3398 locations->SetInAt(i, Location::Any());
3399 }
3400 locations->SetOut(Location::Any());
3401}
3402
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003403void InstructionCodeGeneratorARM64::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003404 LOG(FATAL) << "Unreachable";
3405}
3406
Serban Constantinescu02164b32014-11-13 14:05:07 +00003407void LocationsBuilderARM64::VisitRem(HRem* rem) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003408 Primitive::Type type = rem->GetResultType();
Alexandre Rames542361f2015-01-29 16:57:31 +00003409 LocationSummary::CallKind call_kind =
3410 Primitive::IsFloatingPointType(type) ? LocationSummary::kCall : LocationSummary::kNoCall;
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003411 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
3412
3413 switch (type) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003414 case Primitive::kPrimInt:
3415 case Primitive::kPrimLong:
3416 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08003417 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00003418 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3419 break;
3420
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003421 case Primitive::kPrimFloat:
3422 case Primitive::kPrimDouble: {
3423 InvokeRuntimeCallingConvention calling_convention;
3424 locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0)));
3425 locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1)));
3426 locations->SetOut(calling_convention.GetReturnLocation(type));
3427
3428 break;
3429 }
3430
Serban Constantinescu02164b32014-11-13 14:05:07 +00003431 default:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003432 LOG(FATAL) << "Unexpected rem type " << type;
Serban Constantinescu02164b32014-11-13 14:05:07 +00003433 }
3434}
3435
3436void InstructionCodeGeneratorARM64::VisitRem(HRem* rem) {
3437 Primitive::Type type = rem->GetResultType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003438
Serban Constantinescu02164b32014-11-13 14:05:07 +00003439 switch (type) {
3440 case Primitive::kPrimInt:
3441 case Primitive::kPrimLong: {
Zheng Xuc6667102015-05-15 16:08:45 +08003442 GenerateDivRemIntegral(rem);
Serban Constantinescu02164b32014-11-13 14:05:07 +00003443 break;
3444 }
3445
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003446 case Primitive::kPrimFloat:
3447 case Primitive::kPrimDouble: {
3448 int32_t entry_offset = (type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pFmodf)
3449 : QUICK_ENTRY_POINT(pFmod);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003450 codegen_->InvokeRuntime(entry_offset, rem, rem->GetDexPc(), nullptr);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00003451 break;
3452 }
3453
Serban Constantinescu02164b32014-11-13 14:05:07 +00003454 default:
3455 LOG(FATAL) << "Unexpected rem type " << type;
3456 }
3457}
3458
Calin Juravle27df7582015-04-17 19:12:31 +01003459void LocationsBuilderARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
3460 memory_barrier->SetLocations(nullptr);
3461}
3462
3463void InstructionCodeGeneratorARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
3464 GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
3465}
3466
Alexandre Rames5319def2014-10-23 10:03:10 +01003467void LocationsBuilderARM64::VisitReturn(HReturn* instruction) {
3468 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
3469 Primitive::Type return_type = instruction->InputAt(0)->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003470 locations->SetInAt(0, ARM64ReturnLocation(return_type));
Alexandre Rames5319def2014-10-23 10:03:10 +01003471}
3472
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003473void InstructionCodeGeneratorARM64::VisitReturn(HReturn* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003474 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01003475}
3476
3477void LocationsBuilderARM64::VisitReturnVoid(HReturnVoid* instruction) {
3478 instruction->SetLocations(nullptr);
3479}
3480
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003481void InstructionCodeGeneratorARM64::VisitReturnVoid(HReturnVoid* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003482 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01003483}
3484
Serban Constantinescu02164b32014-11-13 14:05:07 +00003485void LocationsBuilderARM64::VisitShl(HShl* shl) {
3486 HandleShift(shl);
3487}
3488
3489void InstructionCodeGeneratorARM64::VisitShl(HShl* shl) {
3490 HandleShift(shl);
3491}
3492
3493void LocationsBuilderARM64::VisitShr(HShr* shr) {
3494 HandleShift(shr);
3495}
3496
3497void InstructionCodeGeneratorARM64::VisitShr(HShr* shr) {
3498 HandleShift(shr);
3499}
3500
Alexandre Rames5319def2014-10-23 10:03:10 +01003501void LocationsBuilderARM64::VisitStoreLocal(HStoreLocal* store) {
3502 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
3503 Primitive::Type field_type = store->InputAt(1)->GetType();
3504 switch (field_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003505 case Primitive::kPrimNot:
Alexandre Rames5319def2014-10-23 10:03:10 +01003506 case Primitive::kPrimBoolean:
3507 case Primitive::kPrimByte:
3508 case Primitive::kPrimChar:
3509 case Primitive::kPrimShort:
3510 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003511 case Primitive::kPrimFloat:
Alexandre Rames5319def2014-10-23 10:03:10 +01003512 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
3513 break;
3514
3515 case Primitive::kPrimLong:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00003516 case Primitive::kPrimDouble:
Alexandre Rames5319def2014-10-23 10:03:10 +01003517 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
3518 break;
3519
3520 default:
3521 LOG(FATAL) << "Unimplemented local type " << field_type;
3522 }
3523}
3524
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003525void InstructionCodeGeneratorARM64::VisitStoreLocal(HStoreLocal* store ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003526}
3527
3528void LocationsBuilderARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003529 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003530}
3531
3532void InstructionCodeGeneratorARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003533 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003534}
3535
Alexandre Rames67555f72014-11-18 10:55:16 +00003536void LocationsBuilderARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003537 HandleFieldGet(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00003538}
3539
3540void InstructionCodeGeneratorARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003541 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames67555f72014-11-18 10:55:16 +00003542}
3543
3544void LocationsBuilderARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003545 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003546}
3547
Alexandre Rames67555f72014-11-18 10:55:16 +00003548void InstructionCodeGeneratorARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003549 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01003550}
3551
Calin Juravlee460d1d2015-09-29 04:52:17 +01003552void LocationsBuilderARM64::VisitUnresolvedInstanceFieldGet(
3553 HUnresolvedInstanceFieldGet* instruction) {
3554 FieldAccessCallingConventionARM64 calling_convention;
3555 codegen_->CreateUnresolvedFieldLocationSummary(
3556 instruction, instruction->GetFieldType(), calling_convention);
3557}
3558
3559void InstructionCodeGeneratorARM64::VisitUnresolvedInstanceFieldGet(
3560 HUnresolvedInstanceFieldGet* instruction) {
3561 FieldAccessCallingConventionARM64 calling_convention;
3562 codegen_->GenerateUnresolvedFieldAccess(instruction,
3563 instruction->GetFieldType(),
3564 instruction->GetFieldIndex(),
3565 instruction->GetDexPc(),
3566 calling_convention);
3567}
3568
3569void LocationsBuilderARM64::VisitUnresolvedInstanceFieldSet(
3570 HUnresolvedInstanceFieldSet* instruction) {
3571 FieldAccessCallingConventionARM64 calling_convention;
3572 codegen_->CreateUnresolvedFieldLocationSummary(
3573 instruction, instruction->GetFieldType(), calling_convention);
3574}
3575
3576void InstructionCodeGeneratorARM64::VisitUnresolvedInstanceFieldSet(
3577 HUnresolvedInstanceFieldSet* instruction) {
3578 FieldAccessCallingConventionARM64 calling_convention;
3579 codegen_->GenerateUnresolvedFieldAccess(instruction,
3580 instruction->GetFieldType(),
3581 instruction->GetFieldIndex(),
3582 instruction->GetDexPc(),
3583 calling_convention);
3584}
3585
3586void LocationsBuilderARM64::VisitUnresolvedStaticFieldGet(
3587 HUnresolvedStaticFieldGet* instruction) {
3588 FieldAccessCallingConventionARM64 calling_convention;
3589 codegen_->CreateUnresolvedFieldLocationSummary(
3590 instruction, instruction->GetFieldType(), calling_convention);
3591}
3592
3593void InstructionCodeGeneratorARM64::VisitUnresolvedStaticFieldGet(
3594 HUnresolvedStaticFieldGet* instruction) {
3595 FieldAccessCallingConventionARM64 calling_convention;
3596 codegen_->GenerateUnresolvedFieldAccess(instruction,
3597 instruction->GetFieldType(),
3598 instruction->GetFieldIndex(),
3599 instruction->GetDexPc(),
3600 calling_convention);
3601}
3602
3603void LocationsBuilderARM64::VisitUnresolvedStaticFieldSet(
3604 HUnresolvedStaticFieldSet* instruction) {
3605 FieldAccessCallingConventionARM64 calling_convention;
3606 codegen_->CreateUnresolvedFieldLocationSummary(
3607 instruction, instruction->GetFieldType(), calling_convention);
3608}
3609
3610void InstructionCodeGeneratorARM64::VisitUnresolvedStaticFieldSet(
3611 HUnresolvedStaticFieldSet* instruction) {
3612 FieldAccessCallingConventionARM64 calling_convention;
3613 codegen_->GenerateUnresolvedFieldAccess(instruction,
3614 instruction->GetFieldType(),
3615 instruction->GetFieldIndex(),
3616 instruction->GetDexPc(),
3617 calling_convention);
3618}
3619
Alexandre Rames5319def2014-10-23 10:03:10 +01003620void LocationsBuilderARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
3621 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
3622}
3623
3624void InstructionCodeGeneratorARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003625 HBasicBlock* block = instruction->GetBlock();
3626 if (block->GetLoopInformation() != nullptr) {
3627 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
3628 // The back edge will generate the suspend check.
3629 return;
3630 }
3631 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
3632 // The goto will generate the suspend check.
3633 return;
3634 }
3635 GenerateSuspendCheck(instruction, nullptr);
Alexandre Rames5319def2014-10-23 10:03:10 +01003636}
3637
3638void LocationsBuilderARM64::VisitTemporary(HTemporary* temp) {
3639 temp->SetLocations(nullptr);
3640}
3641
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003642void InstructionCodeGeneratorARM64::VisitTemporary(HTemporary* temp ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003643 // Nothing to do, this is driven by the code generator.
Alexandre Rames5319def2014-10-23 10:03:10 +01003644}
3645
Alexandre Rames67555f72014-11-18 10:55:16 +00003646void LocationsBuilderARM64::VisitThrow(HThrow* instruction) {
3647 LocationSummary* locations =
3648 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
3649 InvokeRuntimeCallingConvention calling_convention;
3650 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
3651}
3652
3653void InstructionCodeGeneratorARM64::VisitThrow(HThrow* instruction) {
3654 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00003655 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08003656 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00003657}
3658
3659void LocationsBuilderARM64::VisitTypeConversion(HTypeConversion* conversion) {
3660 LocationSummary* locations =
3661 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
3662 Primitive::Type input_type = conversion->GetInputType();
3663 Primitive::Type result_type = conversion->GetResultType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00003664 DCHECK_NE(input_type, result_type);
Alexandre Rames67555f72014-11-18 10:55:16 +00003665 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
3666 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
3667 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
3668 }
3669
Alexandre Rames542361f2015-01-29 16:57:31 +00003670 if (Primitive::IsFloatingPointType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003671 locations->SetInAt(0, Location::RequiresFpuRegister());
3672 } else {
3673 locations->SetInAt(0, Location::RequiresRegister());
3674 }
3675
Alexandre Rames542361f2015-01-29 16:57:31 +00003676 if (Primitive::IsFloatingPointType(result_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003677 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
3678 } else {
3679 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
3680 }
3681}
3682
3683void InstructionCodeGeneratorARM64::VisitTypeConversion(HTypeConversion* conversion) {
3684 Primitive::Type result_type = conversion->GetResultType();
3685 Primitive::Type input_type = conversion->GetInputType();
3686
3687 DCHECK_NE(input_type, result_type);
3688
Alexandre Rames542361f2015-01-29 16:57:31 +00003689 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003690 int result_size = Primitive::ComponentSize(result_type);
3691 int input_size = Primitive::ComponentSize(input_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00003692 int min_size = std::min(result_size, input_size);
Serban Constantinescu02164b32014-11-13 14:05:07 +00003693 Register output = OutputRegister(conversion);
3694 Register source = InputRegisterAt(conversion, 0);
Alexandre Rames3e69f162014-12-10 10:36:50 +00003695 if ((result_type == Primitive::kPrimChar) && (input_size < result_size)) {
3696 __ Ubfx(output, source, 0, result_size * kBitsPerByte);
Alexandre Rames4dff2fd2015-08-20 13:36:35 +01003697 } else if (result_type == Primitive::kPrimInt && input_type == Primitive::kPrimLong) {
3698 // 'int' values are used directly as W registers, discarding the top
3699 // bits, so we don't need to sign-extend and can just perform a move.
3700 // We do not pass the `kDiscardForSameWReg` argument to force clearing the
3701 // top 32 bits of the target register. We theoretically could leave those
3702 // bits unchanged, but we would have to make sure that no code uses a
3703 // 32bit input value as a 64bit value assuming that the top 32 bits are
3704 // zero.
3705 __ Mov(output.W(), source.W());
Alexandre Rames3e69f162014-12-10 10:36:50 +00003706 } else if ((result_type == Primitive::kPrimChar) ||
3707 ((input_type == Primitive::kPrimChar) && (result_size > input_size))) {
3708 __ Ubfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00003709 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00003710 __ Sbfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00003711 }
Alexandre Rames542361f2015-01-29 16:57:31 +00003712 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003713 __ Scvtf(OutputFPRegister(conversion), InputRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00003714 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003715 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
3716 __ Fcvtzs(OutputRegister(conversion), InputFPRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00003717 } else if (Primitive::IsFloatingPointType(result_type) &&
3718 Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00003719 __ Fcvt(OutputFPRegister(conversion), InputFPRegisterAt(conversion, 0));
3720 } else {
3721 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
3722 << " to " << result_type;
Alexandre Rames67555f72014-11-18 10:55:16 +00003723 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00003724}
Alexandre Rames67555f72014-11-18 10:55:16 +00003725
Serban Constantinescu02164b32014-11-13 14:05:07 +00003726void LocationsBuilderARM64::VisitUShr(HUShr* ushr) {
3727 HandleShift(ushr);
3728}
3729
3730void InstructionCodeGeneratorARM64::VisitUShr(HUShr* ushr) {
3731 HandleShift(ushr);
Alexandre Rames67555f72014-11-18 10:55:16 +00003732}
3733
3734void LocationsBuilderARM64::VisitXor(HXor* instruction) {
3735 HandleBinaryOp(instruction);
3736}
3737
3738void InstructionCodeGeneratorARM64::VisitXor(HXor* instruction) {
3739 HandleBinaryOp(instruction);
3740}
3741
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003742void LocationsBuilderARM64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00003743 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00003744 LOG(FATAL) << "Unreachable";
3745}
3746
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003747void InstructionCodeGeneratorARM64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00003748 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00003749 LOG(FATAL) << "Unreachable";
3750}
3751
Nicolas Geoffray2e7cd752015-07-10 11:38:52 +01003752void LocationsBuilderARM64::VisitFakeString(HFakeString* instruction) {
3753 DCHECK(codegen_->IsBaseline());
3754 LocationSummary* locations =
3755 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
3756 locations->SetOut(Location::ConstantLocation(GetGraph()->GetNullConstant()));
3757}
3758
3759void InstructionCodeGeneratorARM64::VisitFakeString(HFakeString* instruction ATTRIBUTE_UNUSED) {
3760 DCHECK(codegen_->IsBaseline());
3761 // Will be generated at use site.
3762}
3763
Mark Mendellfe57faa2015-09-18 09:26:15 -04003764// Simple implementation of packed switch - generate cascaded compare/jumps.
3765void LocationsBuilderARM64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
3766 LocationSummary* locations =
3767 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
3768 locations->SetInAt(0, Location::RequiresRegister());
3769}
3770
3771void InstructionCodeGeneratorARM64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
3772 int32_t lower_bound = switch_instr->GetStartValue();
3773 int32_t num_entries = switch_instr->GetNumEntries();
3774 Register value_reg = InputRegisterAt(switch_instr, 0);
3775 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
3776
3777 // Create a series of compare/jumps.
3778 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
3779 for (int32_t i = 0; i < num_entries; i++) {
3780 int32_t case_value = lower_bound + i;
Vladimir Markoec7802a2015-10-01 20:57:57 +01003781 vixl::Label* succ = codegen_->GetLabelOf(successors[i]);
Mark Mendellfe57faa2015-09-18 09:26:15 -04003782 if (case_value == 0) {
3783 __ Cbz(value_reg, succ);
3784 } else {
3785 __ Cmp(value_reg, vixl::Operand(case_value));
3786 __ B(eq, succ);
3787 }
3788 }
3789
3790 // And the default for any other value.
3791 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
3792 __ B(codegen_->GetLabelOf(default_block));
3793 }
3794}
3795
Alexandre Rames67555f72014-11-18 10:55:16 +00003796#undef __
3797#undef QUICK_ENTRY_POINT
3798
Alexandre Rames5319def2014-10-23 10:03:10 +01003799} // namespace arm64
3800} // namespace art