blob: 261c04f06257896674712b44f84cc0e373656206 [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
Roland Levillain22ccc3a2015-11-24 13:10:05 +000045template<class MirrorType>
46class GcRoot;
47
Alexandre Rames5319def2014-10-23 10:03:10 +010048namespace arm64 {
49
Andreas Gampe878d58c2015-01-15 23:24:00 -080050using helpers::CPURegisterFrom;
51using helpers::DRegisterFrom;
52using helpers::FPRegisterFrom;
53using helpers::HeapOperand;
54using helpers::HeapOperandFrom;
55using helpers::InputCPURegisterAt;
56using helpers::InputFPRegisterAt;
57using helpers::InputRegisterAt;
58using helpers::InputOperandAt;
59using helpers::Int64ConstantFrom;
Andreas Gampe878d58c2015-01-15 23:24:00 -080060using helpers::LocationFrom;
61using helpers::OperandFromMemOperand;
62using helpers::OutputCPURegister;
63using helpers::OutputFPRegister;
64using helpers::OutputRegister;
65using helpers::RegisterFrom;
66using helpers::StackOperandFrom;
67using helpers::VIXLRegCodeFromART;
68using helpers::WRegisterFrom;
69using helpers::XRegisterFrom;
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +000070using helpers::ARM64EncodableConstantOrRegister;
Zheng Xuda403092015-04-24 17:35:39 +080071using helpers::ArtVixlRegCodeCoherentForRegSet;
Andreas Gampe878d58c2015-01-15 23:24:00 -080072
Alexandre Rames5319def2014-10-23 10:03:10 +010073static constexpr int kCurrentMethodStackOffset = 0;
Vladimir Markof3e0ee22015-12-17 15:23:13 +000074// The compare/jump sequence will generate about (1.5 * num_entries + 3) instructions. While jump
Zheng Xu3927c8b2015-11-18 17:46:25 +080075// table version generates 7 instructions and num_entries literals. Compare/jump sequence will
76// generates less code/data with a small num_entries.
Vladimir Markof3e0ee22015-12-17 15:23:13 +000077static constexpr uint32_t kPackedSwitchCompareJumpThreshold = 7;
Alexandre Rames5319def2014-10-23 10:03:10 +010078
Alexandre Rames5319def2014-10-23 10:03:10 +010079inline Condition ARM64Condition(IfCondition cond) {
80 switch (cond) {
81 case kCondEQ: return eq;
82 case kCondNE: return ne;
83 case kCondLT: return lt;
84 case kCondLE: return le;
85 case kCondGT: return gt;
86 case kCondGE: return ge;
Aart Bike9f37602015-10-09 11:15:55 -070087 case kCondB: return lo;
88 case kCondBE: return ls;
89 case kCondA: return hi;
90 case kCondAE: return hs;
Alexandre Rames5319def2014-10-23 10:03:10 +010091 }
Roland Levillain7f63c522015-07-13 15:54:55 +000092 LOG(FATAL) << "Unreachable";
93 UNREACHABLE();
Alexandre Rames5319def2014-10-23 10:03:10 +010094}
95
Vladimir Markod6e069b2016-01-18 11:11:01 +000096inline Condition ARM64FPCondition(IfCondition cond, bool gt_bias) {
97 // The ARM64 condition codes can express all the necessary branches, see the
98 // "Meaning (floating-point)" column in the table C1-1 in the ARMv8 reference manual.
99 // There is no dex instruction or HIR that would need the missing conditions
100 // "equal or unordered" or "not equal".
101 switch (cond) {
102 case kCondEQ: return eq;
103 case kCondNE: return ne /* unordered */;
104 case kCondLT: return gt_bias ? cc : lt /* unordered */;
105 case kCondLE: return gt_bias ? ls : le /* unordered */;
106 case kCondGT: return gt_bias ? hi /* unordered */ : gt;
107 case kCondGE: return gt_bias ? cs /* unordered */ : ge;
108 default:
109 LOG(FATAL) << "UNREACHABLE";
110 UNREACHABLE();
111 }
112}
113
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000114Location ARM64ReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000115 // Note that in practice, `LocationFrom(x0)` and `LocationFrom(w0)` create the
116 // same Location object, and so do `LocationFrom(d0)` and `LocationFrom(s0)`,
117 // but we use the exact registers for clarity.
118 if (return_type == Primitive::kPrimFloat) {
119 return LocationFrom(s0);
120 } else if (return_type == Primitive::kPrimDouble) {
121 return LocationFrom(d0);
122 } else if (return_type == Primitive::kPrimLong) {
123 return LocationFrom(x0);
Nicolas Geoffray925e5622015-06-03 12:23:32 +0100124 } else if (return_type == Primitive::kPrimVoid) {
125 return Location::NoLocation();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000126 } else {
127 return LocationFrom(w0);
128 }
129}
130
Alexandre Rames5319def2014-10-23 10:03:10 +0100131Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000132 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100133}
134
Alexandre Rames67555f72014-11-18 10:55:16 +0000135#define __ down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler()->
136#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArm64WordSize, x).Int32Value()
Alexandre Rames5319def2014-10-23 10:03:10 +0100137
Zheng Xuda403092015-04-24 17:35:39 +0800138// Calculate memory accessing operand for save/restore live registers.
139static void SaveRestoreLiveRegistersHelper(CodeGenerator* codegen,
140 RegisterSet* register_set,
141 int64_t spill_offset,
142 bool is_save) {
143 DCHECK(ArtVixlRegCodeCoherentForRegSet(register_set->GetCoreRegisters(),
144 codegen->GetNumberOfCoreRegisters(),
145 register_set->GetFloatingPointRegisters(),
146 codegen->GetNumberOfFloatingPointRegisters()));
147
148 CPURegList core_list = CPURegList(CPURegister::kRegister, kXRegSize,
149 register_set->GetCoreRegisters() & (~callee_saved_core_registers.list()));
Nicolas Geoffray75d5b9b2015-10-05 07:40:35 +0000150 CPURegList fp_list = CPURegList(CPURegister::kFPRegister, kDRegSize,
151 register_set->GetFloatingPointRegisters() & (~callee_saved_fp_registers.list()));
Zheng Xuda403092015-04-24 17:35:39 +0800152
153 MacroAssembler* masm = down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler();
154 UseScratchRegisterScope temps(masm);
155
156 Register base = masm->StackPointer();
157 int64_t core_spill_size = core_list.TotalSizeInBytes();
158 int64_t fp_spill_size = fp_list.TotalSizeInBytes();
159 int64_t reg_size = kXRegSizeInBytes;
160 int64_t max_ls_pair_offset = spill_offset + core_spill_size + fp_spill_size - 2 * reg_size;
161 uint32_t ls_access_size = WhichPowerOf2(reg_size);
162 if (((core_list.Count() > 1) || (fp_list.Count() > 1)) &&
163 !masm->IsImmLSPair(max_ls_pair_offset, ls_access_size)) {
164 // If the offset does not fit in the instruction's immediate field, use an alternate register
165 // to compute the base address(float point registers spill base address).
166 Register new_base = temps.AcquireSameSizeAs(base);
167 __ Add(new_base, base, Operand(spill_offset + core_spill_size));
168 base = new_base;
169 spill_offset = -core_spill_size;
170 int64_t new_max_ls_pair_offset = fp_spill_size - 2 * reg_size;
171 DCHECK(masm->IsImmLSPair(spill_offset, ls_access_size));
172 DCHECK(masm->IsImmLSPair(new_max_ls_pair_offset, ls_access_size));
173 }
174
175 if (is_save) {
176 __ StoreCPURegList(core_list, MemOperand(base, spill_offset));
177 __ StoreCPURegList(fp_list, MemOperand(base, spill_offset + core_spill_size));
178 } else {
179 __ LoadCPURegList(core_list, MemOperand(base, spill_offset));
180 __ LoadCPURegList(fp_list, MemOperand(base, spill_offset + core_spill_size));
181 }
182}
183
184void SlowPathCodeARM64::SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
185 RegisterSet* register_set = locations->GetLiveRegisters();
186 size_t stack_offset = codegen->GetFirstRegisterSlotInSlowPath();
187 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
188 if (!codegen->IsCoreCalleeSaveRegister(i) && register_set->ContainsCoreRegister(i)) {
189 // If the register holds an object, update the stack mask.
190 if (locations->RegisterContainsObject(i)) {
191 locations->SetStackBit(stack_offset / kVRegSize);
192 }
193 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
194 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
195 saved_core_stack_offsets_[i] = stack_offset;
196 stack_offset += kXRegSizeInBytes;
197 }
198 }
199
200 for (size_t i = 0, e = codegen->GetNumberOfFloatingPointRegisters(); i < e; ++i) {
201 if (!codegen->IsFloatingPointCalleeSaveRegister(i) &&
202 register_set->ContainsFloatingPointRegister(i)) {
203 DCHECK_LT(stack_offset, codegen->GetFrameSize() - codegen->FrameEntrySpillSize());
204 DCHECK_LT(i, kMaximumNumberOfExpectedRegisters);
205 saved_fpu_stack_offsets_[i] = stack_offset;
206 stack_offset += kDRegSizeInBytes;
207 }
208 }
209
210 SaveRestoreLiveRegistersHelper(codegen, register_set,
211 codegen->GetFirstRegisterSlotInSlowPath(), true /* is_save */);
212}
213
214void SlowPathCodeARM64::RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) {
215 RegisterSet* register_set = locations->GetLiveRegisters();
216 SaveRestoreLiveRegistersHelper(codegen, register_set,
217 codegen->GetFirstRegisterSlotInSlowPath(), false /* is_save */);
218}
219
Alexandre Rames5319def2014-10-23 10:03:10 +0100220class BoundsCheckSlowPathARM64 : public SlowPathCodeARM64 {
221 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000222 explicit BoundsCheckSlowPathARM64(HBoundsCheck* instruction) : SlowPathCodeARM64(instruction) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100223
Alexandre Rames67555f72014-11-18 10:55:16 +0000224 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100225 LocationSummary* locations = instruction_->GetLocations();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000226 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100227
Alexandre Rames5319def2014-10-23 10:03:10 +0100228 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000229 if (instruction_->CanThrowIntoCatchBlock()) {
230 // Live registers will be restored in the catch block if caught.
231 SaveLiveRegisters(codegen, instruction_->GetLocations());
232 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000233 // We're moving two locations to locations that could overlap, so we need a parallel
234 // move resolver.
235 InvokeRuntimeCallingConvention calling_convention;
236 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100237 locations->InAt(0), LocationFrom(calling_convention.GetRegisterAt(0)), Primitive::kPrimInt,
238 locations->InAt(1), LocationFrom(calling_convention.GetRegisterAt(1)), Primitive::kPrimInt);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000239 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000240 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800241 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100242 }
243
Alexandre Rames8158f282015-08-07 10:26:17 +0100244 bool IsFatal() const OVERRIDE { return true; }
245
Alexandre Rames9931f312015-06-19 14:47:01 +0100246 const char* GetDescription() const OVERRIDE { return "BoundsCheckSlowPathARM64"; }
247
Alexandre Rames5319def2014-10-23 10:03:10 +0100248 private:
Alexandre Rames5319def2014-10-23 10:03:10 +0100249 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM64);
250};
251
Alexandre Rames67555f72014-11-18 10:55:16 +0000252class DivZeroCheckSlowPathARM64 : public SlowPathCodeARM64 {
253 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000254 explicit DivZeroCheckSlowPathARM64(HDivZeroCheck* instruction) : SlowPathCodeARM64(instruction) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000255
256 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
257 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
258 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000259 if (instruction_->CanThrowIntoCatchBlock()) {
260 // Live registers will be restored in the catch block if caught.
261 SaveLiveRegisters(codegen, instruction_->GetLocations());
262 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000263 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000264 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800265 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000266 }
267
Alexandre Rames8158f282015-08-07 10:26:17 +0100268 bool IsFatal() const OVERRIDE { return true; }
269
Alexandre Rames9931f312015-06-19 14:47:01 +0100270 const char* GetDescription() const OVERRIDE { return "DivZeroCheckSlowPathARM64"; }
271
Alexandre Rames67555f72014-11-18 10:55:16 +0000272 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000273 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM64);
274};
275
276class LoadClassSlowPathARM64 : public SlowPathCodeARM64 {
277 public:
278 LoadClassSlowPathARM64(HLoadClass* cls,
279 HInstruction* at,
280 uint32_t dex_pc,
281 bool do_clinit)
David Srbecky9cd6d372016-02-09 15:24:47 +0000282 : SlowPathCodeARM64(at), cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
Alexandre Rames67555f72014-11-18 10:55:16 +0000283 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
284 }
285
286 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
287 LocationSummary* locations = at_->GetLocations();
288 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
289
290 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000291 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000292
293 InvokeRuntimeCallingConvention calling_convention;
294 __ Mov(calling_convention.GetRegisterAt(0).W(), cls_->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000295 int32_t entry_point_offset = do_clinit_ ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
296 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000297 arm64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800298 if (do_clinit_) {
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100299 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t>();
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800300 } else {
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100301 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t>();
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800302 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000303
304 // Move the class to the desired location.
305 Location out = locations->Out();
306 if (out.IsValid()) {
307 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
308 Primitive::Type type = at_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000309 arm64_codegen->MoveLocation(out, calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000310 }
311
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000312 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000313 __ B(GetExitLabel());
314 }
315
Alexandre Rames9931f312015-06-19 14:47:01 +0100316 const char* GetDescription() const OVERRIDE { return "LoadClassSlowPathARM64"; }
317
Alexandre Rames67555f72014-11-18 10:55:16 +0000318 private:
319 // The class this slow path will load.
320 HLoadClass* const cls_;
321
322 // The instruction where this slow path is happening.
323 // (Might be the load class or an initialization check).
324 HInstruction* const at_;
325
326 // The dex PC of `at_`.
327 const uint32_t dex_pc_;
328
329 // Whether to initialize the class.
330 const bool do_clinit_;
331
332 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM64);
333};
334
335class LoadStringSlowPathARM64 : public SlowPathCodeARM64 {
336 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000337 explicit LoadStringSlowPathARM64(HLoadString* instruction) : SlowPathCodeARM64(instruction) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000338
339 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
340 LocationSummary* locations = instruction_->GetLocations();
341 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
342 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
343
344 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000345 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000346
347 InvokeRuntimeCallingConvention calling_convention;
David Srbecky9cd6d372016-02-09 15:24:47 +0000348 const uint32_t string_index = instruction_->AsLoadString()->GetStringIndex();
349 __ Mov(calling_convention.GetRegisterAt(0).W(), string_index);
Alexandre Rames67555f72014-11-18 10:55:16 +0000350 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000351 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Vladimir Marko5ea536a2015-04-20 20:11:30 +0100352 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000353 Primitive::Type type = instruction_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000354 arm64_codegen->MoveLocation(locations->Out(), calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000355
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000356 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000357 __ B(GetExitLabel());
358 }
359
Alexandre Rames9931f312015-06-19 14:47:01 +0100360 const char* GetDescription() const OVERRIDE { return "LoadStringSlowPathARM64"; }
361
Alexandre Rames67555f72014-11-18 10:55:16 +0000362 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000363 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM64);
364};
365
Alexandre Rames5319def2014-10-23 10:03:10 +0100366class NullCheckSlowPathARM64 : public SlowPathCodeARM64 {
367 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000368 explicit NullCheckSlowPathARM64(HNullCheck* instr) : SlowPathCodeARM64(instr) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100369
Alexandre Rames67555f72014-11-18 10:55:16 +0000370 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
371 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100372 __ Bind(GetEntryLabel());
David Brazdil77a48ae2015-09-15 12:34:04 +0000373 if (instruction_->CanThrowIntoCatchBlock()) {
374 // Live registers will be restored in the catch block if caught.
375 SaveLiveRegisters(codegen, instruction_->GetLocations());
376 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000377 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000378 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800379 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100380 }
381
Alexandre Rames8158f282015-08-07 10:26:17 +0100382 bool IsFatal() const OVERRIDE { return true; }
383
Alexandre Rames9931f312015-06-19 14:47:01 +0100384 const char* GetDescription() const OVERRIDE { return "NullCheckSlowPathARM64"; }
385
Alexandre Rames5319def2014-10-23 10:03:10 +0100386 private:
Alexandre Rames5319def2014-10-23 10:03:10 +0100387 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM64);
388};
389
390class SuspendCheckSlowPathARM64 : public SlowPathCodeARM64 {
391 public:
Roland Levillain3887c462015-08-12 18:15:42 +0100392 SuspendCheckSlowPathARM64(HSuspendCheck* instruction, HBasicBlock* successor)
David Srbecky9cd6d372016-02-09 15:24:47 +0000393 : SlowPathCodeARM64(instruction), successor_(successor) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100394
Alexandre Rames67555f72014-11-18 10:55:16 +0000395 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
396 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100397 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000398 SaveLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000399 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000400 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800401 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000402 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000403 if (successor_ == nullptr) {
404 __ B(GetReturnLabel());
405 } else {
406 __ B(arm64_codegen->GetLabelOf(successor_));
407 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100408 }
409
410 vixl::Label* GetReturnLabel() {
411 DCHECK(successor_ == nullptr);
412 return &return_label_;
413 }
414
Nicolas Geoffraydb216f42015-05-05 17:02:20 +0100415 HBasicBlock* GetSuccessor() const {
416 return successor_;
417 }
418
Alexandre Rames9931f312015-06-19 14:47:01 +0100419 const char* GetDescription() const OVERRIDE { return "SuspendCheckSlowPathARM64"; }
420
Alexandre Rames5319def2014-10-23 10:03:10 +0100421 private:
Alexandre Rames5319def2014-10-23 10:03:10 +0100422 // If not null, the block to branch to after the suspend check.
423 HBasicBlock* const successor_;
424
425 // If `successor_` is null, the label to branch to after the suspend check.
426 vixl::Label return_label_;
427
428 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM64);
429};
430
Alexandre Rames67555f72014-11-18 10:55:16 +0000431class TypeCheckSlowPathARM64 : public SlowPathCodeARM64 {
432 public:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000433 TypeCheckSlowPathARM64(HInstruction* instruction, bool is_fatal)
David Srbecky9cd6d372016-02-09 15:24:47 +0000434 : SlowPathCodeARM64(instruction), is_fatal_(is_fatal) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000435
436 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000437 LocationSummary* locations = instruction_->GetLocations();
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100438 Location class_to_check = locations->InAt(1);
439 Location object_class = instruction_->IsCheckCast() ? locations->GetTemp(0)
440 : locations->Out();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000441 DCHECK(instruction_->IsCheckCast()
442 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
443 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100444 uint32_t dex_pc = instruction_->GetDexPc();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000445
Alexandre Rames67555f72014-11-18 10:55:16 +0000446 __ Bind(GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000447
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000448 if (!is_fatal_) {
449 SaveLiveRegisters(codegen, locations);
450 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000451
452 // We're moving two locations to locations that could overlap, so we need a parallel
453 // move resolver.
454 InvokeRuntimeCallingConvention calling_convention;
455 codegen->EmitParallelMoves(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100456 class_to_check, LocationFrom(calling_convention.GetRegisterAt(0)), Primitive::kPrimNot,
457 object_class, LocationFrom(calling_convention.GetRegisterAt(1)), Primitive::kPrimNot);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000458
459 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000460 arm64_codegen->InvokeRuntime(
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100461 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc, this);
Roland Levillain888d0672015-11-23 18:53:50 +0000462 CheckEntrypointTypes<kQuickInstanceofNonTrivial, uint32_t,
463 const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000464 Primitive::Type ret_type = instruction_->GetType();
465 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
466 arm64_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
467 } else {
468 DCHECK(instruction_->IsCheckCast());
Serban Constantinescu5a6cc492015-08-13 15:20:25 +0100469 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800470 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000471 }
472
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000473 if (!is_fatal_) {
474 RestoreLiveRegisters(codegen, locations);
475 __ B(GetExitLabel());
476 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000477 }
478
Alexandre Rames9931f312015-06-19 14:47:01 +0100479 const char* GetDescription() const OVERRIDE { return "TypeCheckSlowPathARM64"; }
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000480 bool IsFatal() const { return is_fatal_; }
Alexandre Rames9931f312015-06-19 14:47:01 +0100481
Alexandre Rames67555f72014-11-18 10:55:16 +0000482 private:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +0000483 const bool is_fatal_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000484
Alexandre Rames67555f72014-11-18 10:55:16 +0000485 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM64);
486};
487
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700488class DeoptimizationSlowPathARM64 : public SlowPathCodeARM64 {
489 public:
Aart Bik42249c32016-01-07 15:33:50 -0800490 explicit DeoptimizationSlowPathARM64(HDeoptimize* instruction)
David Srbecky9cd6d372016-02-09 15:24:47 +0000491 : SlowPathCodeARM64(instruction) {}
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700492
493 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Aart Bik42249c32016-01-07 15:33:50 -0800494 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700495 __ Bind(GetEntryLabel());
496 SaveLiveRegisters(codegen, instruction_->GetLocations());
Aart Bik42249c32016-01-07 15:33:50 -0800497 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize),
498 instruction_,
499 instruction_->GetDexPc(),
500 this);
Roland Levillain888d0672015-11-23 18:53:50 +0000501 CheckEntrypointTypes<kQuickDeoptimize, void, void>();
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700502 }
503
Alexandre Rames9931f312015-06-19 14:47:01 +0100504 const char* GetDescription() const OVERRIDE { return "DeoptimizationSlowPathARM64"; }
505
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700506 private:
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700507 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM64);
508};
509
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100510class ArraySetSlowPathARM64 : public SlowPathCodeARM64 {
511 public:
David Srbecky9cd6d372016-02-09 15:24:47 +0000512 explicit ArraySetSlowPathARM64(HInstruction* instruction) : SlowPathCodeARM64(instruction) {}
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100513
514 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
515 LocationSummary* locations = instruction_->GetLocations();
516 __ Bind(GetEntryLabel());
517 SaveLiveRegisters(codegen, locations);
518
519 InvokeRuntimeCallingConvention calling_convention;
520 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
521 parallel_move.AddMove(
522 locations->InAt(0),
523 LocationFrom(calling_convention.GetRegisterAt(0)),
524 Primitive::kPrimNot,
525 nullptr);
526 parallel_move.AddMove(
527 locations->InAt(1),
528 LocationFrom(calling_convention.GetRegisterAt(1)),
529 Primitive::kPrimInt,
530 nullptr);
531 parallel_move.AddMove(
532 locations->InAt(2),
533 LocationFrom(calling_convention.GetRegisterAt(2)),
534 Primitive::kPrimNot,
535 nullptr);
536 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
537
538 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
539 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject),
540 instruction_,
541 instruction_->GetDexPc(),
542 this);
543 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
544 RestoreLiveRegisters(codegen, locations);
545 __ B(GetExitLabel());
546 }
547
548 const char* GetDescription() const OVERRIDE { return "ArraySetSlowPathARM64"; }
549
550 private:
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +0100551 DISALLOW_COPY_AND_ASSIGN(ArraySetSlowPathARM64);
552};
553
Zheng Xu3927c8b2015-11-18 17:46:25 +0800554void JumpTableARM64::EmitTable(CodeGeneratorARM64* codegen) {
555 uint32_t num_entries = switch_instr_->GetNumEntries();
Vladimir Markof3e0ee22015-12-17 15:23:13 +0000556 DCHECK_GE(num_entries, kPackedSwitchCompareJumpThreshold);
Zheng Xu3927c8b2015-11-18 17:46:25 +0800557
558 // We are about to use the assembler to place literals directly. Make sure we have enough
559 // underlying code buffer and we have generated the jump table with right size.
560 CodeBufferCheckScope scope(codegen->GetVIXLAssembler(), num_entries * sizeof(int32_t),
561 CodeBufferCheckScope::kCheck, CodeBufferCheckScope::kExactSize);
562
563 __ Bind(&table_start_);
564 const ArenaVector<HBasicBlock*>& successors = switch_instr_->GetBlock()->GetSuccessors();
565 for (uint32_t i = 0; i < num_entries; i++) {
566 vixl::Label* target_label = codegen->GetLabelOf(successors[i]);
567 DCHECK(target_label->IsBound());
568 ptrdiff_t jump_offset = target_label->location() - table_start_.location();
569 DCHECK_GT(jump_offset, std::numeric_limits<int32_t>::min());
570 DCHECK_LE(jump_offset, std::numeric_limits<int32_t>::max());
571 Literal<int32_t> literal(jump_offset);
572 __ place(&literal);
573 }
574}
575
Roland Levillain44015862016-01-22 11:47:17 +0000576// Slow path marking an object during a read barrier.
577class ReadBarrierMarkSlowPathARM64 : public SlowPathCodeARM64 {
578 public:
579 ReadBarrierMarkSlowPathARM64(HInstruction* instruction, Location out, Location obj)
David Srbecky9cd6d372016-02-09 15:24:47 +0000580 : SlowPathCodeARM64(instruction), out_(out), obj_(obj) {
Roland Levillain44015862016-01-22 11:47:17 +0000581 DCHECK(kEmitCompilerReadBarrier);
582 }
583
584 const char* GetDescription() const OVERRIDE { return "ReadBarrierMarkSlowPathARM64"; }
585
586 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
587 LocationSummary* locations = instruction_->GetLocations();
588 Primitive::Type type = Primitive::kPrimNot;
589 DCHECK(locations->CanCall());
590 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(out_.reg()));
591 DCHECK(instruction_->IsInstanceFieldGet() ||
592 instruction_->IsStaticFieldGet() ||
593 instruction_->IsArrayGet() ||
594 instruction_->IsLoadClass() ||
595 instruction_->IsLoadString() ||
596 instruction_->IsInstanceOf() ||
597 instruction_->IsCheckCast())
598 << "Unexpected instruction in read barrier marking slow path: "
599 << instruction_->DebugName();
600
601 __ Bind(GetEntryLabel());
602 SaveLiveRegisters(codegen, locations);
603
604 InvokeRuntimeCallingConvention calling_convention;
605 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
606 arm64_codegen->MoveLocation(LocationFrom(calling_convention.GetRegisterAt(0)), obj_, type);
607 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pReadBarrierMark),
608 instruction_,
609 instruction_->GetDexPc(),
610 this);
611 CheckEntrypointTypes<kQuickReadBarrierMark, mirror::Object*, mirror::Object*>();
612 arm64_codegen->MoveLocation(out_, calling_convention.GetReturnLocation(type), type);
613
614 RestoreLiveRegisters(codegen, locations);
615 __ B(GetExitLabel());
616 }
617
618 private:
Roland Levillain44015862016-01-22 11:47:17 +0000619 const Location out_;
620 const Location obj_;
621
622 DISALLOW_COPY_AND_ASSIGN(ReadBarrierMarkSlowPathARM64);
623};
624
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000625// Slow path generating a read barrier for a heap reference.
626class ReadBarrierForHeapReferenceSlowPathARM64 : public SlowPathCodeARM64 {
627 public:
628 ReadBarrierForHeapReferenceSlowPathARM64(HInstruction* instruction,
629 Location out,
630 Location ref,
631 Location obj,
632 uint32_t offset,
633 Location index)
David Srbecky9cd6d372016-02-09 15:24:47 +0000634 : SlowPathCodeARM64(instruction),
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000635 out_(out),
636 ref_(ref),
637 obj_(obj),
638 offset_(offset),
639 index_(index) {
640 DCHECK(kEmitCompilerReadBarrier);
641 // If `obj` is equal to `out` or `ref`, it means the initial object
642 // has been overwritten by (or after) the heap object reference load
643 // to be instrumented, e.g.:
644 //
645 // __ Ldr(out, HeapOperand(out, class_offset);
Roland Levillain44015862016-01-22 11:47:17 +0000646 // codegen_->GenerateReadBarrierSlow(instruction, out_loc, out_loc, out_loc, offset);
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000647 //
648 // In that case, we have lost the information about the original
649 // object, and the emitted read barrier cannot work properly.
650 DCHECK(!obj.Equals(out)) << "obj=" << obj << " out=" << out;
651 DCHECK(!obj.Equals(ref)) << "obj=" << obj << " ref=" << ref;
652 }
653
654 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
655 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
656 LocationSummary* locations = instruction_->GetLocations();
657 Primitive::Type type = Primitive::kPrimNot;
658 DCHECK(locations->CanCall());
659 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(out_.reg()));
660 DCHECK(!instruction_->IsInvoke() ||
661 (instruction_->IsInvokeStaticOrDirect() &&
Roland Levillain44015862016-01-22 11:47:17 +0000662 instruction_->GetLocations()->Intrinsified()))
663 << "Unexpected instruction in read barrier for heap reference slow path: "
664 << instruction_->DebugName();
Roland Levillaincd3d0fb2016-01-15 19:26:48 +0000665 // The read barrier instrumentation does not support the
666 // HArm64IntermediateAddress instruction yet.
667 DCHECK(!(instruction_->IsArrayGet() &&
668 instruction_->AsArrayGet()->GetArray()->IsArm64IntermediateAddress()));
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000669
670 __ Bind(GetEntryLabel());
671
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000672 SaveLiveRegisters(codegen, locations);
673
674 // We may have to change the index's value, but as `index_` is a
675 // constant member (like other "inputs" of this slow path),
676 // introduce a copy of it, `index`.
677 Location index = index_;
678 if (index_.IsValid()) {
679 // Handle `index_` for HArrayGet and intrinsic UnsafeGetObject.
680 if (instruction_->IsArrayGet()) {
681 // Compute the actual memory offset and store it in `index`.
682 Register index_reg = RegisterFrom(index_, Primitive::kPrimInt);
683 DCHECK(locations->GetLiveRegisters()->ContainsCoreRegister(index_.reg()));
684 if (codegen->IsCoreCalleeSaveRegister(index_.reg())) {
685 // We are about to change the value of `index_reg` (see the
686 // calls to vixl::MacroAssembler::Lsl and
687 // vixl::MacroAssembler::Mov below), but it has
688 // not been saved by the previous call to
689 // art::SlowPathCode::SaveLiveRegisters, as it is a
690 // callee-save register --
691 // art::SlowPathCode::SaveLiveRegisters does not consider
692 // callee-save registers, as it has been designed with the
693 // assumption that callee-save registers are supposed to be
694 // handled by the called function. So, as a callee-save
695 // register, `index_reg` _would_ eventually be saved onto
696 // the stack, but it would be too late: we would have
697 // changed its value earlier. Therefore, we manually save
698 // it here into another freely available register,
699 // `free_reg`, chosen of course among the caller-save
700 // registers (as a callee-save `free_reg` register would
701 // exhibit the same problem).
702 //
703 // Note we could have requested a temporary register from
704 // the register allocator instead; but we prefer not to, as
705 // this is a slow path, and we know we can find a
706 // caller-save register that is available.
707 Register free_reg = FindAvailableCallerSaveRegister(codegen);
708 __ Mov(free_reg.W(), index_reg);
709 index_reg = free_reg;
710 index = LocationFrom(index_reg);
711 } else {
712 // The initial register stored in `index_` has already been
713 // saved in the call to art::SlowPathCode::SaveLiveRegisters
714 // (as it is not a callee-save register), so we can freely
715 // use it.
716 }
717 // Shifting the index value contained in `index_reg` by the scale
718 // factor (2) cannot overflow in practice, as the runtime is
719 // unable to allocate object arrays with a size larger than
720 // 2^26 - 1 (that is, 2^28 - 4 bytes).
721 __ Lsl(index_reg, index_reg, Primitive::ComponentSizeShift(type));
722 static_assert(
723 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
724 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
725 __ Add(index_reg, index_reg, Operand(offset_));
726 } else {
727 DCHECK(instruction_->IsInvoke());
728 DCHECK(instruction_->GetLocations()->Intrinsified());
729 DCHECK((instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObject) ||
730 (instruction_->AsInvoke()->GetIntrinsic() == Intrinsics::kUnsafeGetObjectVolatile))
731 << instruction_->AsInvoke()->GetIntrinsic();
732 DCHECK_EQ(offset_, 0U);
733 DCHECK(index_.IsRegisterPair());
734 // UnsafeGet's offset location is a register pair, the low
735 // part contains the correct offset.
736 index = index_.ToLow();
737 }
738 }
739
740 // We're moving two or three locations to locations that could
741 // overlap, so we need a parallel move resolver.
742 InvokeRuntimeCallingConvention calling_convention;
743 HParallelMove parallel_move(codegen->GetGraph()->GetArena());
744 parallel_move.AddMove(ref_,
745 LocationFrom(calling_convention.GetRegisterAt(0)),
746 type,
747 nullptr);
748 parallel_move.AddMove(obj_,
749 LocationFrom(calling_convention.GetRegisterAt(1)),
750 type,
751 nullptr);
752 if (index.IsValid()) {
753 parallel_move.AddMove(index,
754 LocationFrom(calling_convention.GetRegisterAt(2)),
755 Primitive::kPrimInt,
756 nullptr);
757 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
758 } else {
759 codegen->GetMoveResolver()->EmitNativeCode(&parallel_move);
760 arm64_codegen->MoveConstant(LocationFrom(calling_convention.GetRegisterAt(2)), offset_);
761 }
762 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pReadBarrierSlow),
763 instruction_,
764 instruction_->GetDexPc(),
765 this);
766 CheckEntrypointTypes<
767 kQuickReadBarrierSlow, mirror::Object*, mirror::Object*, mirror::Object*, uint32_t>();
768 arm64_codegen->MoveLocation(out_, calling_convention.GetReturnLocation(type), type);
769
770 RestoreLiveRegisters(codegen, locations);
771
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000772 __ B(GetExitLabel());
773 }
774
775 const char* GetDescription() const OVERRIDE { return "ReadBarrierForHeapReferenceSlowPathARM64"; }
776
777 private:
778 Register FindAvailableCallerSaveRegister(CodeGenerator* codegen) {
779 size_t ref = static_cast<int>(XRegisterFrom(ref_).code());
780 size_t obj = static_cast<int>(XRegisterFrom(obj_).code());
781 for (size_t i = 0, e = codegen->GetNumberOfCoreRegisters(); i < e; ++i) {
782 if (i != ref && i != obj && !codegen->IsCoreCalleeSaveRegister(i)) {
783 return Register(VIXLRegCodeFromART(i), kXRegSize);
784 }
785 }
786 // We shall never fail to find a free caller-save register, as
787 // there are more than two core caller-save registers on ARM64
788 // (meaning it is possible to find one which is different from
789 // `ref` and `obj`).
790 DCHECK_GT(codegen->GetNumberOfCoreCallerSaveRegisters(), 2u);
791 LOG(FATAL) << "Could not find a free register";
792 UNREACHABLE();
793 }
794
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000795 const Location out_;
796 const Location ref_;
797 const Location obj_;
798 const uint32_t offset_;
799 // An additional location containing an index to an array.
800 // Only used for HArrayGet and the UnsafeGetObject &
801 // UnsafeGetObjectVolatile intrinsics.
802 const Location index_;
803
804 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForHeapReferenceSlowPathARM64);
805};
806
807// Slow path generating a read barrier for a GC root.
808class ReadBarrierForRootSlowPathARM64 : public SlowPathCodeARM64 {
809 public:
810 ReadBarrierForRootSlowPathARM64(HInstruction* instruction, Location out, Location root)
David Srbecky9cd6d372016-02-09 15:24:47 +0000811 : SlowPathCodeARM64(instruction), out_(out), root_(root) {
Roland Levillain44015862016-01-22 11:47:17 +0000812 DCHECK(kEmitCompilerReadBarrier);
813 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000814
815 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
816 LocationSummary* locations = instruction_->GetLocations();
817 Primitive::Type type = Primitive::kPrimNot;
818 DCHECK(locations->CanCall());
819 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(out_.reg()));
Roland Levillain44015862016-01-22 11:47:17 +0000820 DCHECK(instruction_->IsLoadClass() || instruction_->IsLoadString())
821 << "Unexpected instruction in read barrier for GC root slow path: "
822 << instruction_->DebugName();
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000823
824 __ Bind(GetEntryLabel());
825 SaveLiveRegisters(codegen, locations);
826
827 InvokeRuntimeCallingConvention calling_convention;
828 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
829 // The argument of the ReadBarrierForRootSlow is not a managed
830 // reference (`mirror::Object*`), but a `GcRoot<mirror::Object>*`;
831 // thus we need a 64-bit move here, and we cannot use
832 //
833 // arm64_codegen->MoveLocation(
834 // LocationFrom(calling_convention.GetRegisterAt(0)),
835 // root_,
836 // type);
837 //
838 // which would emit a 32-bit move, as `type` is a (32-bit wide)
839 // reference type (`Primitive::kPrimNot`).
840 __ Mov(calling_convention.GetRegisterAt(0), XRegisterFrom(out_));
841 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pReadBarrierForRootSlow),
842 instruction_,
843 instruction_->GetDexPc(),
844 this);
845 CheckEntrypointTypes<kQuickReadBarrierForRootSlow, mirror::Object*, GcRoot<mirror::Object>*>();
846 arm64_codegen->MoveLocation(out_, calling_convention.GetReturnLocation(type), type);
847
848 RestoreLiveRegisters(codegen, locations);
849 __ B(GetExitLabel());
850 }
851
852 const char* GetDescription() const OVERRIDE { return "ReadBarrierForRootSlowPathARM64"; }
853
854 private:
Roland Levillain22ccc3a2015-11-24 13:10:05 +0000855 const Location out_;
856 const Location root_;
857
858 DISALLOW_COPY_AND_ASSIGN(ReadBarrierForRootSlowPathARM64);
859};
860
Alexandre Rames5319def2014-10-23 10:03:10 +0100861#undef __
862
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100863Location InvokeDexCallingConventionVisitorARM64::GetNextLocation(Primitive::Type type) {
Alexandre Rames5319def2014-10-23 10:03:10 +0100864 Location next_location;
865 if (type == Primitive::kPrimVoid) {
866 LOG(FATAL) << "Unreachable type " << type;
867 }
868
Alexandre Rames542361f2015-01-29 16:57:31 +0000869 if (Primitive::IsFloatingPointType(type) &&
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100870 (float_index_ < calling_convention.GetNumberOfFpuRegisters())) {
871 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(float_index_++));
Alexandre Rames542361f2015-01-29 16:57:31 +0000872 } else if (!Primitive::IsFloatingPointType(type) &&
873 (gp_index_ < calling_convention.GetNumberOfRegisters())) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000874 next_location = LocationFrom(calling_convention.GetRegisterAt(gp_index_++));
875 } else {
876 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
Alexandre Rames542361f2015-01-29 16:57:31 +0000877 next_location = Primitive::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
878 : Location::StackSlot(stack_offset);
Alexandre Rames5319def2014-10-23 10:03:10 +0100879 }
880
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000881 // Space on the stack is reserved for all arguments.
Alexandre Rames542361f2015-01-29 16:57:31 +0000882 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
Alexandre Rames5319def2014-10-23 10:03:10 +0100883 return next_location;
884}
885
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100886Location InvokeDexCallingConventionVisitorARM64::GetMethodLocation() const {
Nicolas Geoffray38207af2015-06-01 15:46:22 +0100887 return LocationFrom(kArtMethodRegister);
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100888}
889
Serban Constantinescu579885a2015-02-22 20:51:33 +0000890CodeGeneratorARM64::CodeGeneratorARM64(HGraph* graph,
891 const Arm64InstructionSetFeatures& isa_features,
Serban Constantinescuecc43662015-08-13 13:33:12 +0100892 const CompilerOptions& compiler_options,
893 OptimizingCompilerStats* stats)
Alexandre Rames5319def2014-10-23 10:03:10 +0100894 : CodeGenerator(graph,
895 kNumberOfAllocatableRegisters,
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000896 kNumberOfAllocatableFPRegisters,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000897 kNumberOfAllocatableRegisterPairs,
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000898 callee_saved_core_registers.list(),
Nicolas Geoffray75d5b9b2015-10-05 07:40:35 +0000899 callee_saved_fp_registers.list(),
Serban Constantinescuecc43662015-08-13 13:33:12 +0100900 compiler_options,
901 stats),
Alexandre Ramesc01a6642016-04-15 11:54:06 +0100902 block_labels_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Zheng Xu3927c8b2015-11-18 17:46:25 +0800903 jump_tables_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Alexandre Rames5319def2014-10-23 10:03:10 +0100904 location_builder_(graph, this),
Alexandre Rames3e69f162014-12-10 10:36:50 +0000905 instruction_visitor_(graph, this),
Serban Constantinescu579885a2015-02-22 20:51:33 +0000906 move_resolver_(graph->GetArena(), this),
Vladimir Marko93205e32016-04-13 11:59:46 +0100907 assembler_(graph->GetArena()),
Vladimir Marko58155012015-08-19 12:49:41 +0000908 isa_features_(isa_features),
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000909 uint32_literals_(std::less<uint32_t>(),
910 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Marko5233f932015-09-29 19:01:15 +0100911 uint64_literals_(std::less<uint64_t>(),
912 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
913 method_patches_(MethodReferenceComparator(),
914 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
915 call_patches_(MethodReferenceComparator(),
916 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
917 relative_call_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000918 pc_relative_dex_cache_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
919 boot_image_string_patches_(StringReferenceValueComparator(),
920 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
921 pc_relative_string_patches_(graph->GetArena()->Adapter(kArenaAllocCodeGenerator)),
922 boot_image_address_patches_(std::less<uint32_t>(),
923 graph->GetArena()->Adapter(kArenaAllocCodeGenerator)) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000924 // Save the link register (containing the return address) to mimic Quick.
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000925 AddAllocatedRegister(LocationFrom(lr));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000926}
Alexandre Rames5319def2014-10-23 10:03:10 +0100927
Alexandre Rames67555f72014-11-18 10:55:16 +0000928#define __ GetVIXLAssembler()->
Alexandre Rames5319def2014-10-23 10:03:10 +0100929
Zheng Xu3927c8b2015-11-18 17:46:25 +0800930void CodeGeneratorARM64::EmitJumpTables() {
Alexandre Ramesc01a6642016-04-15 11:54:06 +0100931 for (auto&& jump_table : jump_tables_) {
Zheng Xu3927c8b2015-11-18 17:46:25 +0800932 jump_table->EmitTable(this);
933 }
934}
935
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000936void CodeGeneratorARM64::Finalize(CodeAllocator* allocator) {
Zheng Xu3927c8b2015-11-18 17:46:25 +0800937 EmitJumpTables();
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000938 // Ensure we emit the literal pool.
939 __ FinalizeCode();
Vladimir Marko58155012015-08-19 12:49:41 +0000940
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000941 CodeGenerator::Finalize(allocator);
942}
943
Zheng Xuad4450e2015-04-17 18:48:56 +0800944void ParallelMoveResolverARM64::PrepareForEmitNativeCode() {
945 // Note: There are 6 kinds of moves:
946 // 1. constant -> GPR/FPR (non-cycle)
947 // 2. constant -> stack (non-cycle)
948 // 3. GPR/FPR -> GPR/FPR
949 // 4. GPR/FPR -> stack
950 // 5. stack -> GPR/FPR
951 // 6. stack -> stack (non-cycle)
952 // Case 1, 2 and 6 should never be included in a dependency cycle on ARM64. For case 3, 4, and 5
953 // VIXL uses at most 1 GPR. VIXL has 2 GPR and 1 FPR temps, and there should be no intersecting
954 // cycles on ARM64, so we always have 1 GPR and 1 FPR available VIXL temps to resolve the
955 // dependency.
956 vixl_temps_.Open(GetVIXLAssembler());
957}
958
959void ParallelMoveResolverARM64::FinishEmitNativeCode() {
960 vixl_temps_.Close();
961}
962
963Location ParallelMoveResolverARM64::AllocateScratchLocationFor(Location::Kind kind) {
964 DCHECK(kind == Location::kRegister || kind == Location::kFpuRegister ||
965 kind == Location::kStackSlot || kind == Location::kDoubleStackSlot);
966 kind = (kind == Location::kFpuRegister) ? Location::kFpuRegister : Location::kRegister;
967 Location scratch = GetScratchLocation(kind);
968 if (!scratch.Equals(Location::NoLocation())) {
969 return scratch;
970 }
971 // Allocate from VIXL temp registers.
972 if (kind == Location::kRegister) {
973 scratch = LocationFrom(vixl_temps_.AcquireX());
974 } else {
975 DCHECK(kind == Location::kFpuRegister);
976 scratch = LocationFrom(vixl_temps_.AcquireD());
977 }
978 AddScratchLocation(scratch);
979 return scratch;
980}
981
982void ParallelMoveResolverARM64::FreeScratchLocation(Location loc) {
983 if (loc.IsRegister()) {
984 vixl_temps_.Release(XRegisterFrom(loc));
985 } else {
986 DCHECK(loc.IsFpuRegister());
987 vixl_temps_.Release(DRegisterFrom(loc));
988 }
989 RemoveScratchLocation(loc);
990}
991
Alexandre Rames3e69f162014-12-10 10:36:50 +0000992void ParallelMoveResolverARM64::EmitMove(size_t index) {
Vladimir Marko225b6462015-09-28 12:17:40 +0100993 MoveOperands* move = moves_[index];
Calin Juravlee460d1d2015-09-29 04:52:17 +0100994 codegen_->MoveLocation(move->GetDestination(), move->GetSource(), Primitive::kPrimVoid);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000995}
996
Alexandre Rames5319def2014-10-23 10:03:10 +0100997void CodeGeneratorARM64::GenerateFrameEntry() {
Alexandre Ramesd921d642015-04-16 15:07:16 +0100998 MacroAssembler* masm = GetVIXLAssembler();
999 BlockPoolsScope block_pools(masm);
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001000 __ Bind(&frame_entry_label_);
1001
Serban Constantinescu02164b32014-11-13 14:05:07 +00001002 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod();
1003 if (do_overflow_check) {
Alexandre Ramesd921d642015-04-16 15:07:16 +01001004 UseScratchRegisterScope temps(masm);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001005 Register temp = temps.AcquireX();
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001006 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Serban Constantinescu3d087de2015-01-28 11:57:05 +00001007 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(kArm64)));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +00001008 __ Ldr(wzr, MemOperand(temp, 0));
1009 RecordPcInfo(nullptr, 0);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001010 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001011
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001012 if (!HasEmptyFrame()) {
1013 int frame_size = GetFrameSize();
1014 // Stack layout:
1015 // sp[frame_size - 8] : lr.
1016 // ... : other preserved core registers.
1017 // ... : other preserved fp registers.
1018 // ... : reserved frame space.
1019 // sp[0] : current method.
1020 __ Str(kArtMethodRegister, MemOperand(sp, -frame_size, PreIndex));
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001021 GetAssembler()->cfi().AdjustCFAOffset(frame_size);
Zheng Xu69a50302015-04-14 20:04:41 +08001022 GetAssembler()->SpillRegisters(GetFramePreservedCoreRegisters(),
1023 frame_size - GetCoreSpillSize());
1024 GetAssembler()->SpillRegisters(GetFramePreservedFPRegisters(),
1025 frame_size - FrameEntrySpillSize());
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001026 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001027}
1028
1029void CodeGeneratorARM64::GenerateFrameExit() {
Alexandre Ramesd921d642015-04-16 15:07:16 +01001030 BlockPoolsScope block_pools(GetVIXLAssembler());
David Srbeckyc34dc932015-04-12 09:27:43 +01001031 GetAssembler()->cfi().RememberState();
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001032 if (!HasEmptyFrame()) {
1033 int frame_size = GetFrameSize();
Zheng Xu69a50302015-04-14 20:04:41 +08001034 GetAssembler()->UnspillRegisters(GetFramePreservedFPRegisters(),
1035 frame_size - FrameEntrySpillSize());
1036 GetAssembler()->UnspillRegisters(GetFramePreservedCoreRegisters(),
1037 frame_size - GetCoreSpillSize());
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001038 __ Drop(frame_size);
David Srbeckyc6b4dd82015-04-07 20:32:43 +01001039 GetAssembler()->cfi().AdjustCFAOffset(-frame_size);
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +00001040 }
David Srbeckyc34dc932015-04-12 09:27:43 +01001041 __ Ret();
1042 GetAssembler()->cfi().RestoreState();
1043 GetAssembler()->cfi().DefCFAOffset(GetFrameSize());
Alexandre Rames5319def2014-10-23 10:03:10 +01001044}
1045
Zheng Xuda403092015-04-24 17:35:39 +08001046vixl::CPURegList CodeGeneratorARM64::GetFramePreservedCoreRegisters() const {
1047 DCHECK(ArtVixlRegCodeCoherentForRegSet(core_spill_mask_, GetNumberOfCoreRegisters(), 0, 0));
1048 return vixl::CPURegList(vixl::CPURegister::kRegister, vixl::kXRegSize,
1049 core_spill_mask_);
1050}
1051
1052vixl::CPURegList CodeGeneratorARM64::GetFramePreservedFPRegisters() const {
1053 DCHECK(ArtVixlRegCodeCoherentForRegSet(0, 0, fpu_spill_mask_,
1054 GetNumberOfFloatingPointRegisters()));
1055 return vixl::CPURegList(vixl::CPURegister::kFPRegister, vixl::kDRegSize,
1056 fpu_spill_mask_);
1057}
1058
Alexandre Rames5319def2014-10-23 10:03:10 +01001059void CodeGeneratorARM64::Bind(HBasicBlock* block) {
1060 __ Bind(GetLabelOf(block));
1061}
1062
Calin Juravle175dc732015-08-25 15:42:32 +01001063void CodeGeneratorARM64::MoveConstant(Location location, int32_t value) {
1064 DCHECK(location.IsRegister());
1065 __ Mov(RegisterFrom(location, Primitive::kPrimInt), value);
1066}
1067
Calin Juravlee460d1d2015-09-29 04:52:17 +01001068void CodeGeneratorARM64::AddLocationAsTemp(Location location, LocationSummary* locations) {
1069 if (location.IsRegister()) {
1070 locations->AddTemp(location);
1071 } else {
1072 UNIMPLEMENTED(FATAL) << "AddLocationAsTemp not implemented for location " << location;
1073 }
1074}
1075
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001076void CodeGeneratorARM64::MarkGCCard(Register object, Register value, bool value_can_be_null) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001077 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +01001078 Register card = temps.AcquireX();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001079 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit.
Alexandre Rames5319def2014-10-23 10:03:10 +01001080 vixl::Label done;
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001081 if (value_can_be_null) {
1082 __ Cbz(value, &done);
1083 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001084 __ Ldr(card, MemOperand(tr, Thread::CardTableOffset<kArm64WordSize>().Int32Value()));
1085 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001086 __ Strb(card, MemOperand(card, temp.X()));
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001087 if (value_can_be_null) {
1088 __ Bind(&done);
1089 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001090}
1091
David Brazdil58282f42016-01-14 12:45:10 +00001092void CodeGeneratorARM64::SetupBlockedRegisters() const {
Serban Constantinescu3d087de2015-01-28 11:57:05 +00001093 // Blocked core registers:
1094 // lr : Runtime reserved.
1095 // tr : Runtime reserved.
1096 // xSuspend : Runtime reserved. TODO: Unblock this when the runtime stops using it.
1097 // ip1 : VIXL core temp.
1098 // ip0 : VIXL core temp.
1099 //
1100 // Blocked fp registers:
1101 // d31 : VIXL fp temp.
Alexandre Rames5319def2014-10-23 10:03:10 +01001102 CPURegList reserved_core_registers = vixl_reserved_core_registers;
1103 reserved_core_registers.Combine(runtime_reserved_core_registers);
Alexandre Rames5319def2014-10-23 10:03:10 +01001104 while (!reserved_core_registers.IsEmpty()) {
1105 blocked_core_registers_[reserved_core_registers.PopLowestIndex().code()] = true;
1106 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +00001107
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001108 CPURegList reserved_fp_registers = vixl_reserved_fp_registers;
Zheng Xua3ec3942015-02-15 18:39:46 +08001109 while (!reserved_fp_registers.IsEmpty()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001110 blocked_fpu_registers_[reserved_fp_registers.PopLowestIndex().code()] = true;
1111 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +00001112
David Brazdil58282f42016-01-14 12:45:10 +00001113 if (GetGraph()->IsDebuggable()) {
Nicolas Geoffrayecf680d2015-10-05 11:15:37 +01001114 // Stubs do not save callee-save floating point registers. If the graph
1115 // is debuggable, we need to deal with these registers differently. For
1116 // now, just block them.
David Brazdil58282f42016-01-14 12:45:10 +00001117 CPURegList reserved_fp_registers_debuggable = callee_saved_fp_registers;
1118 while (!reserved_fp_registers_debuggable.IsEmpty()) {
1119 blocked_fpu_registers_[reserved_fp_registers_debuggable.PopLowestIndex().code()] = true;
Serban Constantinescu3d087de2015-01-28 11:57:05 +00001120 }
1121 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001122}
1123
Alexandre Rames3e69f162014-12-10 10:36:50 +00001124size_t CodeGeneratorARM64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
1125 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
1126 __ Str(reg, MemOperand(sp, stack_index));
1127 return kArm64WordSize;
1128}
1129
1130size_t CodeGeneratorARM64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
1131 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
1132 __ Ldr(reg, MemOperand(sp, stack_index));
1133 return kArm64WordSize;
1134}
1135
1136size_t CodeGeneratorARM64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
1137 FPRegister reg = FPRegister(reg_id, kDRegSize);
1138 __ Str(reg, MemOperand(sp, stack_index));
1139 return kArm64WordSize;
1140}
1141
1142size_t CodeGeneratorARM64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
1143 FPRegister reg = FPRegister(reg_id, kDRegSize);
1144 __ Ldr(reg, MemOperand(sp, stack_index));
1145 return kArm64WordSize;
1146}
1147
Alexandre Rames5319def2014-10-23 10:03:10 +01001148void CodeGeneratorARM64::DumpCoreRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +01001149 stream << XRegister(reg);
Alexandre Rames5319def2014-10-23 10:03:10 +01001150}
1151
1152void CodeGeneratorARM64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
David Brazdilc74652862015-05-13 17:50:09 +01001153 stream << DRegister(reg);
Alexandre Rames5319def2014-10-23 10:03:10 +01001154}
1155
Alexandre Rames67555f72014-11-18 10:55:16 +00001156void CodeGeneratorARM64::MoveConstant(CPURegister destination, HConstant* constant) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001157 if (constant->IsIntConstant()) {
1158 __ Mov(Register(destination), constant->AsIntConstant()->GetValue());
1159 } else if (constant->IsLongConstant()) {
1160 __ Mov(Register(destination), constant->AsLongConstant()->GetValue());
1161 } else if (constant->IsNullConstant()) {
1162 __ Mov(Register(destination), 0);
Alexandre Rames67555f72014-11-18 10:55:16 +00001163 } else if (constant->IsFloatConstant()) {
1164 __ Fmov(FPRegister(destination), constant->AsFloatConstant()->GetValue());
1165 } else {
1166 DCHECK(constant->IsDoubleConstant());
1167 __ Fmov(FPRegister(destination), constant->AsDoubleConstant()->GetValue());
1168 }
1169}
1170
Alexandre Rames3e69f162014-12-10 10:36:50 +00001171
1172static bool CoherentConstantAndType(Location constant, Primitive::Type type) {
1173 DCHECK(constant.IsConstant());
1174 HConstant* cst = constant.GetConstant();
1175 return (cst->IsIntConstant() && type == Primitive::kPrimInt) ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001176 // Null is mapped to a core W register, which we associate with kPrimInt.
1177 (cst->IsNullConstant() && type == Primitive::kPrimInt) ||
Alexandre Rames3e69f162014-12-10 10:36:50 +00001178 (cst->IsLongConstant() && type == Primitive::kPrimLong) ||
1179 (cst->IsFloatConstant() && type == Primitive::kPrimFloat) ||
1180 (cst->IsDoubleConstant() && type == Primitive::kPrimDouble);
1181}
1182
Calin Juravlee460d1d2015-09-29 04:52:17 +01001183void CodeGeneratorARM64::MoveLocation(Location destination,
1184 Location source,
1185 Primitive::Type dst_type) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001186 if (source.Equals(destination)) {
1187 return;
1188 }
Alexandre Rames3e69f162014-12-10 10:36:50 +00001189
1190 // A valid move can always be inferred from the destination and source
1191 // locations. When moving from and to a register, the argument type can be
1192 // used to generate 32bit instead of 64bit moves. In debug mode we also
1193 // checks the coherency of the locations and the type.
Calin Juravlee460d1d2015-09-29 04:52:17 +01001194 bool unspecified_type = (dst_type == Primitive::kPrimVoid);
Alexandre Rames3e69f162014-12-10 10:36:50 +00001195
1196 if (destination.IsRegister() || destination.IsFpuRegister()) {
1197 if (unspecified_type) {
1198 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr;
1199 if (source.IsStackSlot() ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001200 (src_cst != nullptr && (src_cst->IsIntConstant()
1201 || src_cst->IsFloatConstant()
1202 || src_cst->IsNullConstant()))) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001203 // For stack slots and 32bit constants, a 64bit type is appropriate.
Calin Juravlee460d1d2015-09-29 04:52:17 +01001204 dst_type = destination.IsRegister() ? Primitive::kPrimInt : Primitive::kPrimFloat;
Alexandre Rames67555f72014-11-18 10:55:16 +00001205 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001206 // If the source is a double stack slot or a 64bit constant, a 64bit
1207 // type is appropriate. Else the source is a register, and since the
1208 // type has not been specified, we chose a 64bit type to force a 64bit
1209 // move.
Calin Juravlee460d1d2015-09-29 04:52:17 +01001210 dst_type = destination.IsRegister() ? Primitive::kPrimLong : Primitive::kPrimDouble;
Alexandre Rames67555f72014-11-18 10:55:16 +00001211 }
Alexandre Rames3e69f162014-12-10 10:36:50 +00001212 }
Calin Juravlee460d1d2015-09-29 04:52:17 +01001213 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(dst_type)) ||
1214 (destination.IsRegister() && !Primitive::IsFloatingPointType(dst_type)));
1215 CPURegister dst = CPURegisterFrom(destination, dst_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00001216 if (source.IsStackSlot() || source.IsDoubleStackSlot()) {
1217 DCHECK(dst.Is64Bits() == source.IsDoubleStackSlot());
1218 __ Ldr(dst, StackOperandFrom(source));
1219 } else if (source.IsConstant()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001220 DCHECK(CoherentConstantAndType(source, dst_type));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001221 MoveConstant(dst, source.GetConstant());
Calin Juravlee460d1d2015-09-29 04:52:17 +01001222 } else if (source.IsRegister()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001223 if (destination.IsRegister()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001224 __ Mov(Register(dst), RegisterFrom(source, dst_type));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001225 } else {
Zheng Xuad4450e2015-04-17 18:48:56 +08001226 DCHECK(destination.IsFpuRegister());
Calin Juravlee460d1d2015-09-29 04:52:17 +01001227 Primitive::Type source_type = Primitive::Is64BitType(dst_type)
1228 ? Primitive::kPrimLong
1229 : Primitive::kPrimInt;
1230 __ Fmov(FPRegisterFrom(destination, dst_type), RegisterFrom(source, source_type));
1231 }
1232 } else {
1233 DCHECK(source.IsFpuRegister());
1234 if (destination.IsRegister()) {
1235 Primitive::Type source_type = Primitive::Is64BitType(dst_type)
1236 ? Primitive::kPrimDouble
1237 : Primitive::kPrimFloat;
1238 __ Fmov(RegisterFrom(destination, dst_type), FPRegisterFrom(source, source_type));
1239 } else {
1240 DCHECK(destination.IsFpuRegister());
1241 __ Fmov(FPRegister(dst), FPRegisterFrom(source, dst_type));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001242 }
1243 }
Alexandre Rames3e69f162014-12-10 10:36:50 +00001244 } else { // The destination is not a register. It must be a stack slot.
1245 DCHECK(destination.IsStackSlot() || destination.IsDoubleStackSlot());
1246 if (source.IsRegister() || source.IsFpuRegister()) {
1247 if (unspecified_type) {
1248 if (source.IsRegister()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001249 dst_type = destination.IsStackSlot() ? Primitive::kPrimInt : Primitive::kPrimLong;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001250 } else {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001251 dst_type = destination.IsStackSlot() ? Primitive::kPrimFloat : Primitive::kPrimDouble;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001252 }
1253 }
Calin Juravlee460d1d2015-09-29 04:52:17 +01001254 DCHECK((destination.IsDoubleStackSlot() == Primitive::Is64BitType(dst_type)) &&
1255 (source.IsFpuRegister() == Primitive::IsFloatingPointType(dst_type)));
1256 __ Str(CPURegisterFrom(source, dst_type), StackOperandFrom(destination));
Alexandre Rames3e69f162014-12-10 10:36:50 +00001257 } else if (source.IsConstant()) {
Calin Juravlee460d1d2015-09-29 04:52:17 +01001258 DCHECK(unspecified_type || CoherentConstantAndType(source, dst_type))
1259 << source << " " << dst_type;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001260 UseScratchRegisterScope temps(GetVIXLAssembler());
1261 HConstant* src_cst = source.GetConstant();
1262 CPURegister temp;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001263 if (src_cst->IsIntConstant() || src_cst->IsNullConstant()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001264 temp = temps.AcquireW();
1265 } else if (src_cst->IsLongConstant()) {
1266 temp = temps.AcquireX();
1267 } else if (src_cst->IsFloatConstant()) {
1268 temp = temps.AcquireS();
1269 } else {
1270 DCHECK(src_cst->IsDoubleConstant());
1271 temp = temps.AcquireD();
1272 }
1273 MoveConstant(temp, src_cst);
Alexandre Rames67555f72014-11-18 10:55:16 +00001274 __ Str(temp, StackOperandFrom(destination));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001275 } else {
Alexandre Rames67555f72014-11-18 10:55:16 +00001276 DCHECK(source.IsStackSlot() || source.IsDoubleStackSlot());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001277 DCHECK(source.IsDoubleStackSlot() == destination.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +00001278 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001279 // There is generally less pressure on FP registers.
1280 FPRegister temp = destination.IsDoubleStackSlot() ? temps.AcquireD() : temps.AcquireS();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001281 __ Ldr(temp, StackOperandFrom(source));
1282 __ Str(temp, StackOperandFrom(destination));
1283 }
1284 }
1285}
1286
1287void CodeGeneratorARM64::Load(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001288 CPURegister dst,
1289 const MemOperand& src) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001290 switch (type) {
1291 case Primitive::kPrimBoolean:
Alexandre Rames67555f72014-11-18 10:55:16 +00001292 __ Ldrb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001293 break;
1294 case Primitive::kPrimByte:
Alexandre Rames67555f72014-11-18 10:55:16 +00001295 __ Ldrsb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001296 break;
1297 case Primitive::kPrimShort:
Alexandre Rames67555f72014-11-18 10:55:16 +00001298 __ Ldrsh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001299 break;
1300 case Primitive::kPrimChar:
Alexandre Rames67555f72014-11-18 10:55:16 +00001301 __ Ldrh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001302 break;
1303 case Primitive::kPrimInt:
1304 case Primitive::kPrimNot:
1305 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001306 case Primitive::kPrimFloat:
1307 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +00001308 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Alexandre Rames67555f72014-11-18 10:55:16 +00001309 __ Ldr(dst, src);
1310 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001311 case Primitive::kPrimVoid:
1312 LOG(FATAL) << "Unreachable type " << type;
1313 }
1314}
1315
Calin Juravle77520bc2015-01-12 18:45:46 +00001316void CodeGeneratorARM64::LoadAcquire(HInstruction* instruction,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001317 CPURegister dst,
Roland Levillain44015862016-01-22 11:47:17 +00001318 const MemOperand& src,
1319 bool needs_null_check) {
Alexandre Ramesd921d642015-04-16 15:07:16 +01001320 MacroAssembler* masm = GetVIXLAssembler();
1321 BlockPoolsScope block_pools(masm);
1322 UseScratchRegisterScope temps(masm);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001323 Register temp_base = temps.AcquireX();
Calin Juravle77520bc2015-01-12 18:45:46 +00001324 Primitive::Type type = instruction->GetType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001325
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001326 DCHECK(!src.IsPreIndex());
1327 DCHECK(!src.IsPostIndex());
1328
1329 // TODO(vixl): Let the MacroAssembler handle MemOperand.
Andreas Gampe878d58c2015-01-15 23:24:00 -08001330 __ Add(temp_base, src.base(), OperandFromMemOperand(src));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001331 MemOperand base = MemOperand(temp_base);
1332 switch (type) {
1333 case Primitive::kPrimBoolean:
1334 __ Ldarb(Register(dst), base);
Roland Levillain44015862016-01-22 11:47:17 +00001335 if (needs_null_check) {
1336 MaybeRecordImplicitNullCheck(instruction);
1337 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001338 break;
1339 case Primitive::kPrimByte:
1340 __ Ldarb(Register(dst), base);
Roland Levillain44015862016-01-22 11:47:17 +00001341 if (needs_null_check) {
1342 MaybeRecordImplicitNullCheck(instruction);
1343 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001344 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
1345 break;
1346 case Primitive::kPrimChar:
1347 __ Ldarh(Register(dst), base);
Roland Levillain44015862016-01-22 11:47:17 +00001348 if (needs_null_check) {
1349 MaybeRecordImplicitNullCheck(instruction);
1350 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001351 break;
1352 case Primitive::kPrimShort:
1353 __ Ldarh(Register(dst), base);
Roland Levillain44015862016-01-22 11:47:17 +00001354 if (needs_null_check) {
1355 MaybeRecordImplicitNullCheck(instruction);
1356 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001357 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
1358 break;
1359 case Primitive::kPrimInt:
1360 case Primitive::kPrimNot:
1361 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +00001362 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001363 __ Ldar(Register(dst), base);
Roland Levillain44015862016-01-22 11:47:17 +00001364 if (needs_null_check) {
1365 MaybeRecordImplicitNullCheck(instruction);
1366 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001367 break;
1368 case Primitive::kPrimFloat:
1369 case Primitive::kPrimDouble: {
1370 DCHECK(dst.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +00001371 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001372
1373 Register temp = dst.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
1374 __ Ldar(temp, base);
Roland Levillain44015862016-01-22 11:47:17 +00001375 if (needs_null_check) {
1376 MaybeRecordImplicitNullCheck(instruction);
1377 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001378 __ Fmov(FPRegister(dst), temp);
1379 break;
1380 }
1381 case Primitive::kPrimVoid:
1382 LOG(FATAL) << "Unreachable type " << type;
1383 }
1384}
1385
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001386void CodeGeneratorARM64::Store(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001387 CPURegister src,
1388 const MemOperand& dst) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001389 switch (type) {
1390 case Primitive::kPrimBoolean:
1391 case Primitive::kPrimByte:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001392 __ Strb(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001393 break;
1394 case Primitive::kPrimChar:
1395 case Primitive::kPrimShort:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001396 __ Strh(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001397 break;
1398 case Primitive::kPrimInt:
1399 case Primitive::kPrimNot:
1400 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001401 case Primitive::kPrimFloat:
1402 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +00001403 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001404 __ Str(src, dst);
Alexandre Rames67555f72014-11-18 10:55:16 +00001405 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001406 case Primitive::kPrimVoid:
1407 LOG(FATAL) << "Unreachable type " << type;
1408 }
1409}
1410
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001411void CodeGeneratorARM64::StoreRelease(Primitive::Type type,
1412 CPURegister src,
1413 const MemOperand& dst) {
1414 UseScratchRegisterScope temps(GetVIXLAssembler());
1415 Register temp_base = temps.AcquireX();
1416
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001417 DCHECK(!dst.IsPreIndex());
1418 DCHECK(!dst.IsPostIndex());
1419
1420 // TODO(vixl): Let the MacroAssembler handle this.
Andreas Gampe878d58c2015-01-15 23:24:00 -08001421 Operand op = OperandFromMemOperand(dst);
1422 __ Add(temp_base, dst.base(), op);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001423 MemOperand base = MemOperand(temp_base);
1424 switch (type) {
1425 case Primitive::kPrimBoolean:
1426 case Primitive::kPrimByte:
1427 __ Stlrb(Register(src), base);
1428 break;
1429 case Primitive::kPrimChar:
1430 case Primitive::kPrimShort:
1431 __ Stlrh(Register(src), base);
1432 break;
1433 case Primitive::kPrimInt:
1434 case Primitive::kPrimNot:
1435 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +00001436 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001437 __ Stlr(Register(src), base);
1438 break;
1439 case Primitive::kPrimFloat:
1440 case Primitive::kPrimDouble: {
1441 DCHECK(src.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +00001442 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001443
1444 Register temp = src.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
1445 __ Fmov(temp, FPRegister(src));
1446 __ Stlr(temp, base);
1447 break;
1448 }
1449 case Primitive::kPrimVoid:
1450 LOG(FATAL) << "Unreachable type " << type;
1451 }
1452}
1453
Calin Juravle175dc732015-08-25 15:42:32 +01001454void CodeGeneratorARM64::InvokeRuntime(QuickEntrypointEnum entrypoint,
1455 HInstruction* instruction,
1456 uint32_t dex_pc,
1457 SlowPathCode* slow_path) {
1458 InvokeRuntime(GetThreadOffset<kArm64WordSize>(entrypoint).Int32Value(),
1459 instruction,
1460 dex_pc,
1461 slow_path);
1462}
1463
Alexandre Rames67555f72014-11-18 10:55:16 +00001464void CodeGeneratorARM64::InvokeRuntime(int32_t entry_point_offset,
1465 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001466 uint32_t dex_pc,
1467 SlowPathCode* slow_path) {
Alexandre Rames78e3ef62015-08-12 13:43:29 +01001468 ValidateInvokeRuntime(instruction, slow_path);
Alexandre Ramesd921d642015-04-16 15:07:16 +01001469 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames67555f72014-11-18 10:55:16 +00001470 __ Ldr(lr, MemOperand(tr, entry_point_offset));
1471 __ Blr(lr);
Roland Levillain896e32d2015-05-05 18:07:10 +01001472 RecordPcInfo(instruction, dex_pc, slow_path);
Alexandre Rames67555f72014-11-18 10:55:16 +00001473}
1474
1475void InstructionCodeGeneratorARM64::GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path,
1476 vixl::Register class_reg) {
1477 UseScratchRegisterScope temps(GetVIXLAssembler());
1478 Register temp = temps.AcquireW();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001479 size_t status_offset = mirror::Class::StatusOffset().SizeValue();
1480
Serban Constantinescu02164b32014-11-13 14:05:07 +00001481 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
Serban Constantinescu4a6a67c2016-01-27 09:19:56 +00001482 // TODO(vixl): Let the MacroAssembler handle MemOperand.
1483 __ Add(temp, class_reg, status_offset);
1484 __ Ldar(temp, HeapOperand(temp));
1485 __ Cmp(temp, mirror::Class::kStatusInitialized);
1486 __ B(lt, slow_path->GetEntryLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +00001487 __ Bind(slow_path->GetExitLabel());
1488}
Alexandre Rames5319def2014-10-23 10:03:10 +01001489
Roland Levillain44015862016-01-22 11:47:17 +00001490void CodeGeneratorARM64::GenerateMemoryBarrier(MemBarrierKind kind) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001491 BarrierType type = BarrierAll;
1492
1493 switch (kind) {
1494 case MemBarrierKind::kAnyAny:
1495 case MemBarrierKind::kAnyStore: {
1496 type = BarrierAll;
1497 break;
1498 }
1499 case MemBarrierKind::kLoadAny: {
1500 type = BarrierReads;
1501 break;
1502 }
1503 case MemBarrierKind::kStoreStore: {
1504 type = BarrierWrites;
1505 break;
1506 }
1507 default:
1508 LOG(FATAL) << "Unexpected memory barrier " << kind;
1509 }
1510 __ Dmb(InnerShareable, type);
1511}
1512
Serban Constantinescu02164b32014-11-13 14:05:07 +00001513void InstructionCodeGeneratorARM64::GenerateSuspendCheck(HSuspendCheck* instruction,
1514 HBasicBlock* successor) {
1515 SuspendCheckSlowPathARM64* slow_path =
Nicolas Geoffraydb216f42015-05-05 17:02:20 +01001516 down_cast<SuspendCheckSlowPathARM64*>(instruction->GetSlowPath());
1517 if (slow_path == nullptr) {
1518 slow_path = new (GetGraph()->GetArena()) SuspendCheckSlowPathARM64(instruction, successor);
1519 instruction->SetSlowPath(slow_path);
1520 codegen_->AddSlowPath(slow_path);
1521 if (successor != nullptr) {
1522 DCHECK(successor->IsLoopHeader());
1523 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(instruction);
1524 }
1525 } else {
1526 DCHECK_EQ(slow_path->GetSuccessor(), successor);
1527 }
1528
Serban Constantinescu02164b32014-11-13 14:05:07 +00001529 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
1530 Register temp = temps.AcquireW();
1531
1532 __ Ldrh(temp, MemOperand(tr, Thread::ThreadFlagsOffset<kArm64WordSize>().SizeValue()));
1533 if (successor == nullptr) {
1534 __ Cbnz(temp, slow_path->GetEntryLabel());
1535 __ Bind(slow_path->GetReturnLabel());
1536 } else {
1537 __ Cbz(temp, codegen_->GetLabelOf(successor));
1538 __ B(slow_path->GetEntryLabel());
1539 // slow_path will return to GetLabelOf(successor).
1540 }
1541}
1542
Alexandre Rames5319def2014-10-23 10:03:10 +01001543InstructionCodeGeneratorARM64::InstructionCodeGeneratorARM64(HGraph* graph,
1544 CodeGeneratorARM64* codegen)
Aart Bik42249c32016-01-07 15:33:50 -08001545 : InstructionCodeGenerator(graph, codegen),
Alexandre Rames5319def2014-10-23 10:03:10 +01001546 assembler_(codegen->GetAssembler()),
1547 codegen_(codegen) {}
1548
1549#define FOR_EACH_UNIMPLEMENTED_INSTRUCTION(M) \
Alexandre Rames3e69f162014-12-10 10:36:50 +00001550 /* No unimplemented IR. */
Alexandre Rames5319def2014-10-23 10:03:10 +01001551
1552#define UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name) name##UnimplementedInstructionBreakCode
1553
1554enum UnimplementedInstructionBreakCode {
Alexandre Rames67555f72014-11-18 10:55:16 +00001555 // Using a base helps identify when we hit such breakpoints.
1556 UnimplementedInstructionBreakCodeBaseCode = 0x900,
Alexandre Rames5319def2014-10-23 10:03:10 +01001557#define ENUM_UNIMPLEMENTED_INSTRUCTION(name) UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name),
1558 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(ENUM_UNIMPLEMENTED_INSTRUCTION)
1559#undef ENUM_UNIMPLEMENTED_INSTRUCTION
1560};
1561
1562#define DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS(name) \
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001563 void InstructionCodeGeneratorARM64::Visit##name(H##name* instr ATTRIBUTE_UNUSED) { \
Alexandre Rames5319def2014-10-23 10:03:10 +01001564 __ Brk(UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name)); \
1565 } \
1566 void LocationsBuilderARM64::Visit##name(H##name* instr) { \
1567 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr); \
1568 locations->SetOut(Location::Any()); \
1569 }
1570 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS)
1571#undef DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS
1572
1573#undef UNIMPLEMENTED_INSTRUCTION_BREAK_CODE
Alexandre Rames67555f72014-11-18 10:55:16 +00001574#undef FOR_EACH_UNIMPLEMENTED_INSTRUCTION
Alexandre Rames5319def2014-10-23 10:03:10 +01001575
Alexandre Rames67555f72014-11-18 10:55:16 +00001576void LocationsBuilderARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001577 DCHECK_EQ(instr->InputCount(), 2U);
1578 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1579 Primitive::Type type = instr->GetResultType();
1580 switch (type) {
1581 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001582 case Primitive::kPrimLong:
Alexandre Rames5319def2014-10-23 10:03:10 +01001583 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001584 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instr->InputAt(1), instr));
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001585 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001586 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001587
1588 case Primitive::kPrimFloat:
1589 case Primitive::kPrimDouble:
1590 locations->SetInAt(0, Location::RequiresFpuRegister());
1591 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001592 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001593 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001594
Alexandre Rames5319def2014-10-23 10:03:10 +01001595 default:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001596 LOG(FATAL) << "Unexpected " << instr->DebugName() << " type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001597 }
1598}
1599
Alexandre Rames09a99962015-04-15 11:47:56 +01001600void LocationsBuilderARM64::HandleFieldGet(HInstruction* instruction) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00001601 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
1602
1603 bool object_field_get_with_read_barrier =
1604 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Alexandre Rames09a99962015-04-15 11:47:56 +01001605 LocationSummary* locations =
Roland Levillain22ccc3a2015-11-24 13:10:05 +00001606 new (GetGraph()->GetArena()) LocationSummary(instruction,
1607 object_field_get_with_read_barrier ?
1608 LocationSummary::kCallOnSlowPath :
1609 LocationSummary::kNoCall);
Alexandre Rames09a99962015-04-15 11:47:56 +01001610 locations->SetInAt(0, Location::RequiresRegister());
1611 if (Primitive::IsFloatingPointType(instruction->GetType())) {
1612 locations->SetOut(Location::RequiresFpuRegister());
1613 } else {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00001614 // The output overlaps for an object field get when read barriers
1615 // are enabled: we do not want the load to overwrite the object's
1616 // location, as we need it to emit the read barrier.
1617 locations->SetOut(
1618 Location::RequiresRegister(),
1619 object_field_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap);
Alexandre Rames09a99962015-04-15 11:47:56 +01001620 }
1621}
1622
1623void InstructionCodeGeneratorARM64::HandleFieldGet(HInstruction* instruction,
1624 const FieldInfo& field_info) {
1625 DCHECK(instruction->IsInstanceFieldGet() || instruction->IsStaticFieldGet());
Roland Levillain44015862016-01-22 11:47:17 +00001626 LocationSummary* locations = instruction->GetLocations();
1627 Location base_loc = locations->InAt(0);
1628 Location out = locations->Out();
1629 uint32_t offset = field_info.GetFieldOffset().Uint32Value();
Roland Levillain4d027112015-07-01 15:41:14 +01001630 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Ramesd921d642015-04-16 15:07:16 +01001631 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames09a99962015-04-15 11:47:56 +01001632 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), field_info.GetFieldOffset());
Alexandre Rames09a99962015-04-15 11:47:56 +01001633
Roland Levillain44015862016-01-22 11:47:17 +00001634 if (field_type == Primitive::kPrimNot && kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
1635 // Object FieldGet with Baker's read barrier case.
1636 MacroAssembler* masm = GetVIXLAssembler();
1637 UseScratchRegisterScope temps(masm);
1638 // /* HeapReference<Object> */ out = *(base + offset)
1639 Register base = RegisterFrom(base_loc, Primitive::kPrimNot);
1640 Register temp = temps.AcquireW();
1641 // Note that potential implicit null checks are handled in this
1642 // CodeGeneratorARM64::GenerateFieldLoadWithBakerReadBarrier call.
1643 codegen_->GenerateFieldLoadWithBakerReadBarrier(
1644 instruction,
1645 out,
1646 base,
1647 offset,
1648 temp,
1649 /* needs_null_check */ true,
Serban Constantinescu4a6a67c2016-01-27 09:19:56 +00001650 field_info.IsVolatile());
Roland Levillain44015862016-01-22 11:47:17 +00001651 } else {
1652 // General case.
1653 if (field_info.IsVolatile()) {
Serban Constantinescu4a6a67c2016-01-27 09:19:56 +00001654 // Note that a potential implicit null check is handled in this
1655 // CodeGeneratorARM64::LoadAcquire call.
1656 // NB: LoadAcquire will record the pc info if needed.
1657 codegen_->LoadAcquire(
1658 instruction, OutputCPURegister(instruction), field, /* needs_null_check */ true);
Alexandre Rames09a99962015-04-15 11:47:56 +01001659 } else {
Roland Levillain4d027112015-07-01 15:41:14 +01001660 codegen_->Load(field_type, OutputCPURegister(instruction), field);
Alexandre Rames09a99962015-04-15 11:47:56 +01001661 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Rames09a99962015-04-15 11:47:56 +01001662 }
Roland Levillain44015862016-01-22 11:47:17 +00001663 if (field_type == Primitive::kPrimNot) {
1664 // If read barriers are enabled, emit read barriers other than
1665 // Baker's using a slow path (and also unpoison the loaded
1666 // reference, if heap poisoning is enabled).
1667 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, base_loc, offset);
1668 }
Roland Levillain4d027112015-07-01 15:41:14 +01001669 }
Alexandre Rames09a99962015-04-15 11:47:56 +01001670}
1671
1672void LocationsBuilderARM64::HandleFieldSet(HInstruction* instruction) {
1673 LocationSummary* locations =
1674 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1675 locations->SetInAt(0, Location::RequiresRegister());
1676 if (Primitive::IsFloatingPointType(instruction->InputAt(1)->GetType())) {
1677 locations->SetInAt(1, Location::RequiresFpuRegister());
1678 } else {
1679 locations->SetInAt(1, Location::RequiresRegister());
1680 }
1681}
1682
1683void InstructionCodeGeneratorARM64::HandleFieldSet(HInstruction* instruction,
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001684 const FieldInfo& field_info,
1685 bool value_can_be_null) {
Alexandre Rames09a99962015-04-15 11:47:56 +01001686 DCHECK(instruction->IsInstanceFieldSet() || instruction->IsStaticFieldSet());
Alexandre Ramesd921d642015-04-16 15:07:16 +01001687 BlockPoolsScope block_pools(GetVIXLAssembler());
Alexandre Rames09a99962015-04-15 11:47:56 +01001688
1689 Register obj = InputRegisterAt(instruction, 0);
1690 CPURegister value = InputCPURegisterAt(instruction, 1);
Roland Levillain4d027112015-07-01 15:41:14 +01001691 CPURegister source = value;
Alexandre Rames09a99962015-04-15 11:47:56 +01001692 Offset offset = field_info.GetFieldOffset();
1693 Primitive::Type field_type = field_info.GetFieldType();
Alexandre Rames09a99962015-04-15 11:47:56 +01001694
Roland Levillain4d027112015-07-01 15:41:14 +01001695 {
1696 // We use a block to end the scratch scope before the write barrier, thus
1697 // freeing the temporary registers so they can be used in `MarkGCCard`.
1698 UseScratchRegisterScope temps(GetVIXLAssembler());
1699
1700 if (kPoisonHeapReferences && field_type == Primitive::kPrimNot) {
1701 DCHECK(value.IsW());
1702 Register temp = temps.AcquireW();
1703 __ Mov(temp, value.W());
1704 GetAssembler()->PoisonHeapReference(temp.W());
1705 source = temp;
Alexandre Rames09a99962015-04-15 11:47:56 +01001706 }
Roland Levillain4d027112015-07-01 15:41:14 +01001707
1708 if (field_info.IsVolatile()) {
Serban Constantinescu4a6a67c2016-01-27 09:19:56 +00001709 codegen_->StoreRelease(field_type, source, HeapOperand(obj, offset));
1710 codegen_->MaybeRecordImplicitNullCheck(instruction);
Roland Levillain4d027112015-07-01 15:41:14 +01001711 } else {
1712 codegen_->Store(field_type, source, HeapOperand(obj, offset));
1713 codegen_->MaybeRecordImplicitNullCheck(instruction);
1714 }
Alexandre Rames09a99962015-04-15 11:47:56 +01001715 }
1716
1717 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01001718 codegen_->MarkGCCard(obj, Register(value), value_can_be_null);
Alexandre Rames09a99962015-04-15 11:47:56 +01001719 }
1720}
1721
Alexandre Rames67555f72014-11-18 10:55:16 +00001722void InstructionCodeGeneratorARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001723 Primitive::Type type = instr->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001724
1725 switch (type) {
1726 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001727 case Primitive::kPrimLong: {
1728 Register dst = OutputRegister(instr);
1729 Register lhs = InputRegisterAt(instr, 0);
1730 Operand rhs = InputOperandAt(instr, 1);
Alexandre Rames5319def2014-10-23 10:03:10 +01001731 if (instr->IsAdd()) {
1732 __ Add(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001733 } else if (instr->IsAnd()) {
1734 __ And(dst, lhs, rhs);
1735 } else if (instr->IsOr()) {
1736 __ Orr(dst, lhs, rhs);
1737 } else if (instr->IsSub()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001738 __ Sub(dst, lhs, rhs);
Scott Wakeling40a04bf2015-12-11 09:50:36 +00001739 } else if (instr->IsRor()) {
1740 if (rhs.IsImmediate()) {
1741 uint32_t shift = rhs.immediate() & (lhs.SizeInBits() - 1);
1742 __ Ror(dst, lhs, shift);
1743 } else {
1744 // Ensure shift distance is in the same size register as the result. If
1745 // we are rotating a long and the shift comes in a w register originally,
1746 // we don't need to sxtw for use as an x since the shift distances are
1747 // all & reg_bits - 1.
1748 __ Ror(dst, lhs, RegisterFrom(instr->GetLocations()->InAt(1), type));
1749 }
Alexandre Rames67555f72014-11-18 10:55:16 +00001750 } else {
1751 DCHECK(instr->IsXor());
1752 __ Eor(dst, lhs, rhs);
Alexandre Rames5319def2014-10-23 10:03:10 +01001753 }
1754 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001755 }
1756 case Primitive::kPrimFloat:
1757 case Primitive::kPrimDouble: {
1758 FPRegister dst = OutputFPRegister(instr);
1759 FPRegister lhs = InputFPRegisterAt(instr, 0);
1760 FPRegister rhs = InputFPRegisterAt(instr, 1);
1761 if (instr->IsAdd()) {
1762 __ Fadd(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001763 } else if (instr->IsSub()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001764 __ Fsub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001765 } else {
1766 LOG(FATAL) << "Unexpected floating-point binary operation";
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001767 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001768 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001769 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001770 default:
Alexandre Rames67555f72014-11-18 10:55:16 +00001771 LOG(FATAL) << "Unexpected binary operation type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001772 }
1773}
1774
Serban Constantinescu02164b32014-11-13 14:05:07 +00001775void LocationsBuilderARM64::HandleShift(HBinaryOperation* instr) {
1776 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1777
1778 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1779 Primitive::Type type = instr->GetResultType();
1780 switch (type) {
1781 case Primitive::kPrimInt:
1782 case Primitive::kPrimLong: {
1783 locations->SetInAt(0, Location::RequiresRegister());
1784 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1785 locations->SetOut(Location::RequiresRegister());
1786 break;
1787 }
1788 default:
1789 LOG(FATAL) << "Unexpected shift type " << type;
1790 }
1791}
1792
1793void InstructionCodeGeneratorARM64::HandleShift(HBinaryOperation* instr) {
1794 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1795
1796 Primitive::Type type = instr->GetType();
1797 switch (type) {
1798 case Primitive::kPrimInt:
1799 case Primitive::kPrimLong: {
1800 Register dst = OutputRegister(instr);
1801 Register lhs = InputRegisterAt(instr, 0);
1802 Operand rhs = InputOperandAt(instr, 1);
1803 if (rhs.IsImmediate()) {
Roland Levillain5b5b9312016-03-22 14:57:31 +00001804 uint32_t shift_value = rhs.immediate() &
1805 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001806 if (instr->IsShl()) {
1807 __ Lsl(dst, lhs, shift_value);
1808 } else if (instr->IsShr()) {
1809 __ Asr(dst, lhs, shift_value);
1810 } else {
1811 __ Lsr(dst, lhs, shift_value);
1812 }
1813 } else {
1814 Register rhs_reg = dst.IsX() ? rhs.reg().X() : rhs.reg().W();
1815
1816 if (instr->IsShl()) {
1817 __ Lsl(dst, lhs, rhs_reg);
1818 } else if (instr->IsShr()) {
1819 __ Asr(dst, lhs, rhs_reg);
1820 } else {
1821 __ Lsr(dst, lhs, rhs_reg);
1822 }
1823 }
1824 break;
1825 }
1826 default:
1827 LOG(FATAL) << "Unexpected shift operation type " << type;
1828 }
1829}
1830
Alexandre Rames5319def2014-10-23 10:03:10 +01001831void LocationsBuilderARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001832 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001833}
1834
1835void InstructionCodeGeneratorARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001836 HandleBinaryOp(instruction);
1837}
1838
1839void LocationsBuilderARM64::VisitAnd(HAnd* instruction) {
1840 HandleBinaryOp(instruction);
1841}
1842
1843void InstructionCodeGeneratorARM64::VisitAnd(HAnd* instruction) {
1844 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001845}
1846
Artem Serov7fc63502016-02-09 17:15:29 +00001847void LocationsBuilderARM64::VisitBitwiseNegatedRight(HBitwiseNegatedRight* instr) {
Kevin Brodsky9ff0d202016-01-11 13:43:31 +00001848 DCHECK(Primitive::IsIntegralType(instr->GetType())) << instr->GetType();
1849 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1850 locations->SetInAt(0, Location::RequiresRegister());
1851 // There is no immediate variant of negated bitwise instructions in AArch64.
1852 locations->SetInAt(1, Location::RequiresRegister());
1853 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1854}
1855
Artem Serov7fc63502016-02-09 17:15:29 +00001856void InstructionCodeGeneratorARM64::VisitBitwiseNegatedRight(HBitwiseNegatedRight* instr) {
Kevin Brodsky9ff0d202016-01-11 13:43:31 +00001857 Register dst = OutputRegister(instr);
1858 Register lhs = InputRegisterAt(instr, 0);
1859 Register rhs = InputRegisterAt(instr, 1);
1860
1861 switch (instr->GetOpKind()) {
1862 case HInstruction::kAnd:
1863 __ Bic(dst, lhs, rhs);
1864 break;
1865 case HInstruction::kOr:
1866 __ Orn(dst, lhs, rhs);
1867 break;
1868 case HInstruction::kXor:
1869 __ Eon(dst, lhs, rhs);
1870 break;
1871 default:
1872 LOG(FATAL) << "Unreachable";
1873 }
1874}
1875
Alexandre Rames8626b742015-11-25 16:28:08 +00001876void LocationsBuilderARM64::VisitArm64DataProcWithShifterOp(
1877 HArm64DataProcWithShifterOp* instruction) {
1878 DCHECK(instruction->GetType() == Primitive::kPrimInt ||
1879 instruction->GetType() == Primitive::kPrimLong);
1880 LocationSummary* locations =
1881 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1882 if (instruction->GetInstrKind() == HInstruction::kNeg) {
1883 locations->SetInAt(0, Location::ConstantLocation(instruction->InputAt(0)->AsConstant()));
1884 } else {
1885 locations->SetInAt(0, Location::RequiresRegister());
1886 }
1887 locations->SetInAt(1, Location::RequiresRegister());
1888 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1889}
1890
1891void InstructionCodeGeneratorARM64::VisitArm64DataProcWithShifterOp(
1892 HArm64DataProcWithShifterOp* instruction) {
1893 Primitive::Type type = instruction->GetType();
1894 HInstruction::InstructionKind kind = instruction->GetInstrKind();
1895 DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong);
1896 Register out = OutputRegister(instruction);
1897 Register left;
1898 if (kind != HInstruction::kNeg) {
1899 left = InputRegisterAt(instruction, 0);
1900 }
1901 // If this `HArm64DataProcWithShifterOp` was created by merging a type conversion as the
1902 // shifter operand operation, the IR generating `right_reg` (input to the type
1903 // conversion) can have a different type from the current instruction's type,
1904 // so we manually indicate the type.
1905 Register right_reg = RegisterFrom(instruction->GetLocations()->InAt(1), type);
Roland Levillain5b5b9312016-03-22 14:57:31 +00001906 int64_t shift_amount = instruction->GetShiftAmount() &
1907 (type == Primitive::kPrimInt ? kMaxIntShiftDistance : kMaxLongShiftDistance);
Alexandre Rames8626b742015-11-25 16:28:08 +00001908
1909 Operand right_operand(0);
1910
1911 HArm64DataProcWithShifterOp::OpKind op_kind = instruction->GetOpKind();
1912 if (HArm64DataProcWithShifterOp::IsExtensionOp(op_kind)) {
1913 right_operand = Operand(right_reg, helpers::ExtendFromOpKind(op_kind));
1914 } else {
1915 right_operand = Operand(right_reg, helpers::ShiftFromOpKind(op_kind), shift_amount);
1916 }
1917
1918 // Logical binary operations do not support extension operations in the
1919 // operand. Note that VIXL would still manage if it was passed by generating
1920 // the extension as a separate instruction.
1921 // `HNeg` also does not support extension. See comments in `ShifterOperandSupportsExtension()`.
1922 DCHECK(!right_operand.IsExtendedRegister() ||
1923 (kind != HInstruction::kAnd && kind != HInstruction::kOr && kind != HInstruction::kXor &&
1924 kind != HInstruction::kNeg));
1925 switch (kind) {
1926 case HInstruction::kAdd:
1927 __ Add(out, left, right_operand);
1928 break;
1929 case HInstruction::kAnd:
1930 __ And(out, left, right_operand);
1931 break;
1932 case HInstruction::kNeg:
Roland Levillain1a653882016-03-18 18:05:57 +00001933 DCHECK(instruction->InputAt(0)->AsConstant()->IsArithmeticZero());
Alexandre Rames8626b742015-11-25 16:28:08 +00001934 __ Neg(out, right_operand);
1935 break;
1936 case HInstruction::kOr:
1937 __ Orr(out, left, right_operand);
1938 break;
1939 case HInstruction::kSub:
1940 __ Sub(out, left, right_operand);
1941 break;
1942 case HInstruction::kXor:
1943 __ Eor(out, left, right_operand);
1944 break;
1945 default:
1946 LOG(FATAL) << "Unexpected operation kind: " << kind;
1947 UNREACHABLE();
1948 }
1949}
1950
Alexandre Ramese6dbf482015-10-19 10:10:41 +01001951void LocationsBuilderARM64::VisitArm64IntermediateAddress(HArm64IntermediateAddress* instruction) {
Roland Levillaincd3d0fb2016-01-15 19:26:48 +00001952 // The read barrier instrumentation does not support the
1953 // HArm64IntermediateAddress instruction yet.
1954 DCHECK(!kEmitCompilerReadBarrier);
Alexandre Ramese6dbf482015-10-19 10:10:41 +01001955 LocationSummary* locations =
1956 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1957 locations->SetInAt(0, Location::RequiresRegister());
1958 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->GetOffset(), instruction));
1959 locations->SetOut(Location::RequiresRegister());
1960}
1961
1962void InstructionCodeGeneratorARM64::VisitArm64IntermediateAddress(
1963 HArm64IntermediateAddress* instruction) {
Roland Levillaincd3d0fb2016-01-15 19:26:48 +00001964 // The read barrier instrumentation does not support the
1965 // HArm64IntermediateAddress instruction yet.
1966 DCHECK(!kEmitCompilerReadBarrier);
Alexandre Ramese6dbf482015-10-19 10:10:41 +01001967 __ Add(OutputRegister(instruction),
1968 InputRegisterAt(instruction, 0),
1969 Operand(InputOperandAt(instruction, 1)));
1970}
1971
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001972void LocationsBuilderARM64::VisitMultiplyAccumulate(HMultiplyAccumulate* instr) {
Alexandre Rames418318f2015-11-20 15:55:47 +00001973 LocationSummary* locations =
1974 new (GetGraph()->GetArena()) LocationSummary(instr, LocationSummary::kNoCall);
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001975 HInstruction* accumulator = instr->InputAt(HMultiplyAccumulate::kInputAccumulatorIndex);
1976 if (instr->GetOpKind() == HInstruction::kSub &&
1977 accumulator->IsConstant() &&
Roland Levillain1a653882016-03-18 18:05:57 +00001978 accumulator->AsConstant()->IsArithmeticZero()) {
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001979 // Don't allocate register for Mneg instruction.
1980 } else {
1981 locations->SetInAt(HMultiplyAccumulate::kInputAccumulatorIndex,
1982 Location::RequiresRegister());
1983 }
1984 locations->SetInAt(HMultiplyAccumulate::kInputMulLeftIndex, Location::RequiresRegister());
1985 locations->SetInAt(HMultiplyAccumulate::kInputMulRightIndex, Location::RequiresRegister());
Alexandre Rames418318f2015-11-20 15:55:47 +00001986 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1987}
1988
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001989void InstructionCodeGeneratorARM64::VisitMultiplyAccumulate(HMultiplyAccumulate* instr) {
Alexandre Rames418318f2015-11-20 15:55:47 +00001990 Register res = OutputRegister(instr);
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03001991 Register mul_left = InputRegisterAt(instr, HMultiplyAccumulate::kInputMulLeftIndex);
1992 Register mul_right = InputRegisterAt(instr, HMultiplyAccumulate::kInputMulRightIndex);
Alexandre Rames418318f2015-11-20 15:55:47 +00001993
1994 // Avoid emitting code that could trigger Cortex A53's erratum 835769.
1995 // This fixup should be carried out for all multiply-accumulate instructions:
1996 // madd, msub, smaddl, smsubl, umaddl and umsubl.
1997 if (instr->GetType() == Primitive::kPrimLong &&
1998 codegen_->GetInstructionSetFeatures().NeedFixCortexA53_835769()) {
1999 MacroAssembler* masm = down_cast<CodeGeneratorARM64*>(codegen_)->GetVIXLAssembler();
2000 vixl::Instruction* prev = masm->GetCursorAddress<vixl::Instruction*>() - vixl::kInstructionSize;
2001 if (prev->IsLoadOrStore()) {
2002 // Make sure we emit only exactly one nop.
2003 vixl::CodeBufferCheckScope scope(masm,
2004 vixl::kInstructionSize,
2005 vixl::CodeBufferCheckScope::kCheck,
2006 vixl::CodeBufferCheckScope::kExactSize);
2007 __ nop();
2008 }
2009 }
2010
2011 if (instr->GetOpKind() == HInstruction::kAdd) {
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03002012 Register accumulator = InputRegisterAt(instr, HMultiplyAccumulate::kInputAccumulatorIndex);
Alexandre Rames418318f2015-11-20 15:55:47 +00002013 __ Madd(res, mul_left, mul_right, accumulator);
2014 } else {
2015 DCHECK(instr->GetOpKind() == HInstruction::kSub);
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03002016 HInstruction* accum_instr = instr->InputAt(HMultiplyAccumulate::kInputAccumulatorIndex);
Roland Levillain1a653882016-03-18 18:05:57 +00002017 if (accum_instr->IsConstant() && accum_instr->AsConstant()->IsArithmeticZero()) {
Artem Udovichenko4a0dad62016-01-26 12:28:31 +03002018 __ Mneg(res, mul_left, mul_right);
2019 } else {
2020 Register accumulator = InputRegisterAt(instr, HMultiplyAccumulate::kInputAccumulatorIndex);
2021 __ Msub(res, mul_left, mul_right, accumulator);
2022 }
Alexandre Rames418318f2015-11-20 15:55:47 +00002023 }
2024}
2025
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002026void LocationsBuilderARM64::VisitArrayGet(HArrayGet* instruction) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002027 bool object_array_get_with_read_barrier =
2028 kEmitCompilerReadBarrier && (instruction->GetType() == Primitive::kPrimNot);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002029 LocationSummary* locations =
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002030 new (GetGraph()->GetArena()) LocationSummary(instruction,
2031 object_array_get_with_read_barrier ?
2032 LocationSummary::kCallOnSlowPath :
2033 LocationSummary::kNoCall);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002034 locations->SetInAt(0, Location::RequiresRegister());
2035 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002036 if (Primitive::IsFloatingPointType(instruction->GetType())) {
2037 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2038 } else {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002039 // The output overlaps in the case of an object array get with
2040 // read barriers enabled: we do not want the move to overwrite the
2041 // array's location, as we need it to emit the read barrier.
2042 locations->SetOut(
2043 Location::RequiresRegister(),
2044 object_array_get_with_read_barrier ? Location::kOutputOverlap : Location::kNoOutputOverlap);
Alexandre Rames88c13cd2015-04-14 17:35:39 +01002045 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002046}
2047
2048void InstructionCodeGeneratorARM64::VisitArrayGet(HArrayGet* instruction) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002049 Primitive::Type type = instruction->GetType();
2050 Register obj = InputRegisterAt(instruction, 0);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002051 LocationSummary* locations = instruction->GetLocations();
2052 Location index = locations->InAt(1);
2053 uint32_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(type)).Uint32Value();
Roland Levillain44015862016-01-22 11:47:17 +00002054 Location out = locations->Out();
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002055
Alexandre Ramesd921d642015-04-16 15:07:16 +01002056 MacroAssembler* masm = GetVIXLAssembler();
2057 UseScratchRegisterScope temps(masm);
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002058 // Block pools between `Load` and `MaybeRecordImplicitNullCheck`.
Alexandre Ramesd921d642015-04-16 15:07:16 +01002059 BlockPoolsScope block_pools(masm);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002060
Roland Levillain44015862016-01-22 11:47:17 +00002061 if (type == Primitive::kPrimNot && kEmitCompilerReadBarrier && kUseBakerReadBarrier) {
2062 // Object ArrayGet with Baker's read barrier case.
2063 Register temp = temps.AcquireW();
2064 // The read barrier instrumentation does not support the
2065 // HArm64IntermediateAddress instruction yet.
2066 DCHECK(!instruction->GetArray()->IsArm64IntermediateAddress());
2067 // Note that a potential implicit null check is handled in the
2068 // CodeGeneratorARM64::GenerateArrayLoadWithBakerReadBarrier call.
2069 codegen_->GenerateArrayLoadWithBakerReadBarrier(
2070 instruction, out, obj.W(), offset, index, temp, /* needs_null_check */ true);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002071 } else {
Roland Levillain44015862016-01-22 11:47:17 +00002072 // General case.
2073 MemOperand source = HeapOperand(obj);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002074 if (index.IsConstant()) {
Roland Levillain44015862016-01-22 11:47:17 +00002075 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(type);
2076 source = HeapOperand(obj, offset);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002077 } else {
Roland Levillain44015862016-01-22 11:47:17 +00002078 Register temp = temps.AcquireSameSizeAs(obj);
2079 if (instruction->GetArray()->IsArm64IntermediateAddress()) {
2080 // The read barrier instrumentation does not support the
2081 // HArm64IntermediateAddress instruction yet.
2082 DCHECK(!kEmitCompilerReadBarrier);
2083 // We do not need to compute the intermediate address from the array: the
2084 // input instruction has done it already. See the comment in
2085 // `InstructionSimplifierArm64::TryExtractArrayAccessAddress()`.
2086 if (kIsDebugBuild) {
2087 HArm64IntermediateAddress* tmp = instruction->GetArray()->AsArm64IntermediateAddress();
2088 DCHECK_EQ(tmp->GetOffset()->AsIntConstant()->GetValueAsUint64(), offset);
2089 }
2090 temp = obj;
2091 } else {
2092 __ Add(temp, obj, offset);
2093 }
2094 source = HeapOperand(temp, XRegisterFrom(index), LSL, Primitive::ComponentSizeShift(type));
2095 }
2096
2097 codegen_->Load(type, OutputCPURegister(instruction), source);
2098 codegen_->MaybeRecordImplicitNullCheck(instruction);
2099
2100 if (type == Primitive::kPrimNot) {
2101 static_assert(
2102 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
2103 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
2104 Location obj_loc = locations->InAt(0);
2105 if (index.IsConstant()) {
2106 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, obj_loc, offset);
2107 } else {
2108 codegen_->MaybeGenerateReadBarrierSlow(instruction, out, out, obj_loc, offset, index);
2109 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002110 }
Roland Levillain4d027112015-07-01 15:41:14 +01002111 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002112}
2113
Alexandre Rames5319def2014-10-23 10:03:10 +01002114void LocationsBuilderARM64::VisitArrayLength(HArrayLength* instruction) {
2115 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2116 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002117 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01002118}
2119
2120void InstructionCodeGeneratorARM64::VisitArrayLength(HArrayLength* instruction) {
Vladimir Markodce016e2016-04-28 13:10:02 +01002121 uint32_t offset = CodeGenerator::GetArrayLengthOffset(instruction);
Alexandre Ramesd921d642015-04-16 15:07:16 +01002122 BlockPoolsScope block_pools(GetVIXLAssembler());
Vladimir Markodce016e2016-04-28 13:10:02 +01002123 __ Ldr(OutputRegister(instruction), HeapOperand(InputRegisterAt(instruction, 0), offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00002124 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002125}
2126
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002127void LocationsBuilderARM64::VisitArraySet(HArraySet* instruction) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002128 Primitive::Type value_type = instruction->GetComponentType();
2129
2130 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
2131 bool object_array_set_with_read_barrier =
2132 kEmitCompilerReadBarrier && (value_type == Primitive::kPrimNot);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002133 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
2134 instruction,
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002135 (may_need_runtime_call_for_type_check || object_array_set_with_read_barrier) ?
2136 LocationSummary::kCallOnSlowPath :
2137 LocationSummary::kNoCall);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002138 locations->SetInAt(0, Location::RequiresRegister());
2139 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002140 if (Primitive::IsFloatingPointType(value_type)) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002141 locations->SetInAt(2, Location::RequiresFpuRegister());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002142 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002143 locations->SetInAt(2, Location::RequiresRegister());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002144 }
2145}
2146
2147void InstructionCodeGeneratorARM64::VisitArraySet(HArraySet* instruction) {
2148 Primitive::Type value_type = instruction->GetComponentType();
Alexandre Rames97833a02015-04-16 15:07:12 +01002149 LocationSummary* locations = instruction->GetLocations();
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002150 bool may_need_runtime_call_for_type_check = instruction->NeedsTypeCheck();
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002151 bool needs_write_barrier =
2152 CodeGenerator::StoreNeedsWriteBarrier(value_type, instruction->GetValue());
Alexandre Rames97833a02015-04-16 15:07:12 +01002153
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002154 Register array = InputRegisterAt(instruction, 0);
2155 CPURegister value = InputCPURegisterAt(instruction, 2);
2156 CPURegister source = value;
2157 Location index = locations->InAt(1);
2158 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
2159 MemOperand destination = HeapOperand(array);
2160 MacroAssembler* masm = GetVIXLAssembler();
2161 BlockPoolsScope block_pools(masm);
2162
2163 if (!needs_write_barrier) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002164 DCHECK(!may_need_runtime_call_for_type_check);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002165 if (index.IsConstant()) {
2166 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
2167 destination = HeapOperand(array, offset);
2168 } else {
2169 UseScratchRegisterScope temps(masm);
2170 Register temp = temps.AcquireSameSizeAs(array);
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002171 if (instruction->GetArray()->IsArm64IntermediateAddress()) {
Roland Levillaincd3d0fb2016-01-15 19:26:48 +00002172 // The read barrier instrumentation does not support the
2173 // HArm64IntermediateAddress instruction yet.
2174 DCHECK(!kEmitCompilerReadBarrier);
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002175 // We do not need to compute the intermediate address from the array: the
2176 // input instruction has done it already. See the comment in
2177 // `InstructionSimplifierArm64::TryExtractArrayAccessAddress()`.
2178 if (kIsDebugBuild) {
2179 HArm64IntermediateAddress* tmp = instruction->GetArray()->AsArm64IntermediateAddress();
2180 DCHECK(tmp->GetOffset()->AsIntConstant()->GetValueAsUint64() == offset);
2181 }
2182 temp = array;
2183 } else {
2184 __ Add(temp, array, offset);
2185 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002186 destination = HeapOperand(temp,
2187 XRegisterFrom(index),
2188 LSL,
2189 Primitive::ComponentSizeShift(value_type));
2190 }
2191 codegen_->Store(value_type, value, destination);
2192 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002193 } else {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002194 DCHECK(needs_write_barrier);
Alexandre Ramese6dbf482015-10-19 10:10:41 +01002195 DCHECK(!instruction->GetArray()->IsArm64IntermediateAddress());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002196 vixl::Label done;
2197 SlowPathCodeARM64* slow_path = nullptr;
Alexandre Rames97833a02015-04-16 15:07:12 +01002198 {
2199 // We use a block to end the scratch scope before the write barrier, thus
2200 // freeing the temporary registers so they can be used in `MarkGCCard`.
2201 UseScratchRegisterScope temps(masm);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002202 Register temp = temps.AcquireSameSizeAs(array);
Alexandre Rames97833a02015-04-16 15:07:12 +01002203 if (index.IsConstant()) {
2204 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002205 destination = HeapOperand(array, offset);
Alexandre Rames97833a02015-04-16 15:07:12 +01002206 } else {
Alexandre Rames82000b02015-07-07 11:34:16 +01002207 destination = HeapOperand(temp,
2208 XRegisterFrom(index),
2209 LSL,
2210 Primitive::ComponentSizeShift(value_type));
Alexandre Rames97833a02015-04-16 15:07:12 +01002211 }
2212
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002213 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
2214 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
2215 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
2216
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002217 if (may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002218 slow_path = new (GetGraph()->GetArena()) ArraySetSlowPathARM64(instruction);
2219 codegen_->AddSlowPath(slow_path);
2220 if (instruction->GetValueCanBeNull()) {
2221 vixl::Label non_zero;
2222 __ Cbnz(Register(value), &non_zero);
2223 if (!index.IsConstant()) {
2224 __ Add(temp, array, offset);
2225 }
2226 __ Str(wzr, destination);
2227 codegen_->MaybeRecordImplicitNullCheck(instruction);
2228 __ B(&done);
2229 __ Bind(&non_zero);
2230 }
2231
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002232 if (kEmitCompilerReadBarrier) {
2233 // When read barriers are enabled, the type checking
2234 // instrumentation requires two read barriers:
2235 //
2236 // __ Mov(temp2, temp);
2237 // // /* HeapReference<Class> */ temp = temp->component_type_
2238 // __ Ldr(temp, HeapOperand(temp, component_offset));
Roland Levillain44015862016-01-22 11:47:17 +00002239 // codegen_->GenerateReadBarrierSlow(
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002240 // instruction, temp_loc, temp_loc, temp2_loc, component_offset);
2241 //
2242 // // /* HeapReference<Class> */ temp2 = value->klass_
2243 // __ Ldr(temp2, HeapOperand(Register(value), class_offset));
Roland Levillain44015862016-01-22 11:47:17 +00002244 // codegen_->GenerateReadBarrierSlow(
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002245 // instruction, temp2_loc, temp2_loc, value_loc, class_offset, temp_loc);
2246 //
2247 // __ Cmp(temp, temp2);
2248 //
2249 // However, the second read barrier may trash `temp`, as it
2250 // is a temporary register, and as such would not be saved
2251 // along with live registers before calling the runtime (nor
2252 // restored afterwards). So in this case, we bail out and
2253 // delegate the work to the array set slow path.
2254 //
2255 // TODO: Extend the register allocator to support a new
2256 // "(locally) live temp" location so as to avoid always
2257 // going into the slow path when read barriers are enabled.
2258 __ B(slow_path->GetEntryLabel());
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002259 } else {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002260 Register temp2 = temps.AcquireSameSizeAs(array);
2261 // /* HeapReference<Class> */ temp = array->klass_
2262 __ Ldr(temp, HeapOperand(array, class_offset));
2263 codegen_->MaybeRecordImplicitNullCheck(instruction);
2264 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2265
2266 // /* HeapReference<Class> */ temp = temp->component_type_
2267 __ Ldr(temp, HeapOperand(temp, component_offset));
2268 // /* HeapReference<Class> */ temp2 = value->klass_
2269 __ Ldr(temp2, HeapOperand(Register(value), class_offset));
2270 // If heap poisoning is enabled, no need to unpoison `temp`
2271 // nor `temp2`, as we are comparing two poisoned references.
2272 __ Cmp(temp, temp2);
2273
2274 if (instruction->StaticTypeOfArrayIsObjectArray()) {
2275 vixl::Label do_put;
2276 __ B(eq, &do_put);
2277 // If heap poisoning is enabled, the `temp` reference has
2278 // not been unpoisoned yet; unpoison it now.
2279 GetAssembler()->MaybeUnpoisonHeapReference(temp);
2280
2281 // /* HeapReference<Class> */ temp = temp->super_class_
2282 __ Ldr(temp, HeapOperand(temp, super_offset));
2283 // If heap poisoning is enabled, no need to unpoison
2284 // `temp`, as we are comparing against null below.
2285 __ Cbnz(temp, slow_path->GetEntryLabel());
2286 __ Bind(&do_put);
2287 } else {
2288 __ B(ne, slow_path->GetEntryLabel());
2289 }
2290 temps.Release(temp2);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002291 }
2292 }
2293
2294 if (kPoisonHeapReferences) {
Nicolas Geoffraya8a0fe22015-10-01 15:50:27 +01002295 Register temp2 = temps.AcquireSameSizeAs(array);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002296 DCHECK(value.IsW());
Nicolas Geoffraya8a0fe22015-10-01 15:50:27 +01002297 __ Mov(temp2, value.W());
2298 GetAssembler()->PoisonHeapReference(temp2);
2299 source = temp2;
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002300 }
2301
2302 if (!index.IsConstant()) {
2303 __ Add(temp, array, offset);
2304 }
Nicolas Geoffray61b1dbe2015-10-01 10:27:52 +01002305 __ Str(source, destination);
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002306
Roland Levillain22ccc3a2015-11-24 13:10:05 +00002307 if (!may_need_runtime_call_for_type_check) {
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002308 codegen_->MaybeRecordImplicitNullCheck(instruction);
2309 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002310 }
Nicolas Geoffraye0395dd2015-09-25 11:04:45 +01002311
2312 codegen_->MarkGCCard(array, value.W(), instruction->GetValueCanBeNull());
2313
2314 if (done.IsLinked()) {
2315 __ Bind(&done);
2316 }
2317
2318 if (slow_path != nullptr) {
2319 __ Bind(slow_path->GetExitLabel());
Alexandre Rames97833a02015-04-16 15:07:12 +01002320 }
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002321 }
2322}
2323
Alexandre Rames67555f72014-11-18 10:55:16 +00002324void LocationsBuilderARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00002325 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2326 ? LocationSummary::kCallOnSlowPath
2327 : LocationSummary::kNoCall;
2328 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames67555f72014-11-18 10:55:16 +00002329 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu760d8ef2015-03-28 18:09:56 +00002330 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
Alexandre Rames67555f72014-11-18 10:55:16 +00002331 if (instruction->HasUses()) {
2332 locations->SetOut(Location::SameAsFirstInput());
2333 }
2334}
2335
2336void InstructionCodeGeneratorARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
Serban Constantinescu5a6cc492015-08-13 15:20:25 +01002337 BoundsCheckSlowPathARM64* slow_path =
2338 new (GetGraph()->GetArena()) BoundsCheckSlowPathARM64(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00002339 codegen_->AddSlowPath(slow_path);
2340
2341 __ Cmp(InputRegisterAt(instruction, 0), InputOperandAt(instruction, 1));
2342 __ B(slow_path->GetEntryLabel(), hs);
2343}
2344
Alexandre Rames67555f72014-11-18 10:55:16 +00002345void LocationsBuilderARM64::VisitClinitCheck(HClinitCheck* check) {
2346 LocationSummary* locations =
2347 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
2348 locations->SetInAt(0, Location::RequiresRegister());
2349 if (check->HasUses()) {
2350 locations->SetOut(Location::SameAsFirstInput());
2351 }
2352}
2353
2354void InstructionCodeGeneratorARM64::VisitClinitCheck(HClinitCheck* check) {
2355 // We assume the class is not null.
2356 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
2357 check->GetLoadClass(), check, check->GetDexPc(), true);
2358 codegen_->AddSlowPath(slow_path);
2359 GenerateClassInitializationCheck(slow_path, InputRegisterAt(check, 0));
2360}
2361
Roland Levillain1a653882016-03-18 18:05:57 +00002362static bool IsFloatingPointZeroConstant(HInstruction* inst) {
2363 return (inst->IsFloatConstant() && (inst->AsFloatConstant()->IsArithmeticZero()))
2364 || (inst->IsDoubleConstant() && (inst->AsDoubleConstant()->IsArithmeticZero()));
2365}
2366
2367void InstructionCodeGeneratorARM64::GenerateFcmp(HInstruction* instruction) {
2368 FPRegister lhs_reg = InputFPRegisterAt(instruction, 0);
2369 Location rhs_loc = instruction->GetLocations()->InAt(1);
2370 if (rhs_loc.IsConstant()) {
2371 // 0.0 is the only immediate that can be encoded directly in
2372 // an FCMP instruction.
2373 //
2374 // Both the JLS (section 15.20.1) and the JVMS (section 6.5)
2375 // specify that in a floating-point comparison, positive zero
2376 // and negative zero are considered equal, so we can use the
2377 // literal 0.0 for both cases here.
2378 //
2379 // Note however that some methods (Float.equal, Float.compare,
2380 // Float.compareTo, Double.equal, Double.compare,
2381 // Double.compareTo, Math.max, Math.min, StrictMath.max,
2382 // StrictMath.min) consider 0.0 to be (strictly) greater than
2383 // -0.0. So if we ever translate calls to these methods into a
2384 // HCompare instruction, we must handle the -0.0 case with
2385 // care here.
2386 DCHECK(IsFloatingPointZeroConstant(rhs_loc.GetConstant()));
2387 __ Fcmp(lhs_reg, 0.0);
2388 } else {
2389 __ Fcmp(lhs_reg, InputFPRegisterAt(instruction, 1));
2390 }
Roland Levillain7f63c522015-07-13 15:54:55 +00002391}
2392
Serban Constantinescu02164b32014-11-13 14:05:07 +00002393void LocationsBuilderARM64::VisitCompare(HCompare* compare) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002394 LocationSummary* locations =
Serban Constantinescu02164b32014-11-13 14:05:07 +00002395 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
2396 Primitive::Type in_type = compare->InputAt(0)->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01002397 switch (in_type) {
Roland Levillaina5c4a402016-03-15 15:02:50 +00002398 case Primitive::kPrimBoolean:
2399 case Primitive::kPrimByte:
2400 case Primitive::kPrimShort:
2401 case Primitive::kPrimChar:
Aart Bika19616e2016-02-01 18:57:58 -08002402 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01002403 case Primitive::kPrimLong: {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002404 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00002405 locations->SetInAt(1, ARM64EncodableConstantOrRegister(compare->InputAt(1), compare));
Serban Constantinescu02164b32014-11-13 14:05:07 +00002406 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2407 break;
2408 }
2409 case Primitive::kPrimFloat:
2410 case Primitive::kPrimDouble: {
2411 locations->SetInAt(0, Location::RequiresFpuRegister());
Roland Levillain7f63c522015-07-13 15:54:55 +00002412 locations->SetInAt(1,
2413 IsFloatingPointZeroConstant(compare->InputAt(1))
2414 ? Location::ConstantLocation(compare->InputAt(1)->AsConstant())
2415 : Location::RequiresFpuRegister());
Serban Constantinescu02164b32014-11-13 14:05:07 +00002416 locations->SetOut(Location::RequiresRegister());
2417 break;
2418 }
2419 default:
2420 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
2421 }
2422}
2423
2424void InstructionCodeGeneratorARM64::VisitCompare(HCompare* compare) {
2425 Primitive::Type in_type = compare->InputAt(0)->GetType();
2426
2427 // 0 if: left == right
2428 // 1 if: left > right
2429 // -1 if: left < right
2430 switch (in_type) {
Roland Levillaina5c4a402016-03-15 15:02:50 +00002431 case Primitive::kPrimBoolean:
2432 case Primitive::kPrimByte:
2433 case Primitive::kPrimShort:
2434 case Primitive::kPrimChar:
Aart Bika19616e2016-02-01 18:57:58 -08002435 case Primitive::kPrimInt:
Serban Constantinescu02164b32014-11-13 14:05:07 +00002436 case Primitive::kPrimLong: {
2437 Register result = OutputRegister(compare);
2438 Register left = InputRegisterAt(compare, 0);
2439 Operand right = InputOperandAt(compare, 1);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002440 __ Cmp(left, right);
Aart Bika19616e2016-02-01 18:57:58 -08002441 __ Cset(result, ne); // result == +1 if NE or 0 otherwise
2442 __ Cneg(result, result, lt); // result == -1 if LT or unchanged otherwise
Serban Constantinescu02164b32014-11-13 14:05:07 +00002443 break;
2444 }
2445 case Primitive::kPrimFloat:
2446 case Primitive::kPrimDouble: {
2447 Register result = OutputRegister(compare);
Roland Levillain1a653882016-03-18 18:05:57 +00002448 GenerateFcmp(compare);
Vladimir Markod6e069b2016-01-18 11:11:01 +00002449 __ Cset(result, ne);
2450 __ Cneg(result, result, ARM64FPCondition(kCondLT, compare->IsGtBias()));
Alexandre Rames5319def2014-10-23 10:03:10 +01002451 break;
2452 }
2453 default:
2454 LOG(FATAL) << "Unimplemented compare type " << in_type;
2455 }
2456}
2457
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002458void LocationsBuilderARM64::HandleCondition(HCondition* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002459 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Roland Levillain7f63c522015-07-13 15:54:55 +00002460
2461 if (Primitive::IsFloatingPointType(instruction->InputAt(0)->GetType())) {
2462 locations->SetInAt(0, Location::RequiresFpuRegister());
2463 locations->SetInAt(1,
2464 IsFloatingPointZeroConstant(instruction->InputAt(1))
2465 ? Location::ConstantLocation(instruction->InputAt(1)->AsConstant())
2466 : Location::RequiresFpuRegister());
2467 } else {
2468 // Integer cases.
2469 locations->SetInAt(0, Location::RequiresRegister());
2470 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
2471 }
2472
David Brazdilb3e773e2016-01-26 11:28:37 +00002473 if (!instruction->IsEmittedAtUseSite()) {
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002474 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01002475 }
2476}
2477
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002478void InstructionCodeGeneratorARM64::HandleCondition(HCondition* instruction) {
David Brazdilb3e773e2016-01-26 11:28:37 +00002479 if (instruction->IsEmittedAtUseSite()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002480 return;
2481 }
2482
2483 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames5319def2014-10-23 10:03:10 +01002484 Register res = RegisterFrom(locations->Out(), instruction->GetType());
Roland Levillain7f63c522015-07-13 15:54:55 +00002485 IfCondition if_cond = instruction->GetCondition();
Alexandre Rames5319def2014-10-23 10:03:10 +01002486
Roland Levillain7f63c522015-07-13 15:54:55 +00002487 if (Primitive::IsFloatingPointType(instruction->InputAt(0)->GetType())) {
Roland Levillain1a653882016-03-18 18:05:57 +00002488 GenerateFcmp(instruction);
Vladimir Markod6e069b2016-01-18 11:11:01 +00002489 __ Cset(res, ARM64FPCondition(if_cond, instruction->IsGtBias()));
Roland Levillain7f63c522015-07-13 15:54:55 +00002490 } else {
2491 // Integer cases.
2492 Register lhs = InputRegisterAt(instruction, 0);
2493 Operand rhs = InputOperandAt(instruction, 1);
2494 __ Cmp(lhs, rhs);
Vladimir Markod6e069b2016-01-18 11:11:01 +00002495 __ Cset(res, ARM64Condition(if_cond));
Roland Levillain7f63c522015-07-13 15:54:55 +00002496 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002497}
2498
2499#define FOR_EACH_CONDITION_INSTRUCTION(M) \
2500 M(Equal) \
2501 M(NotEqual) \
2502 M(LessThan) \
2503 M(LessThanOrEqual) \
2504 M(GreaterThan) \
Aart Bike9f37602015-10-09 11:15:55 -07002505 M(GreaterThanOrEqual) \
2506 M(Below) \
2507 M(BelowOrEqual) \
2508 M(Above) \
2509 M(AboveOrEqual)
Alexandre Rames5319def2014-10-23 10:03:10 +01002510#define DEFINE_CONDITION_VISITORS(Name) \
Vladimir Marko5f7b58e2015-11-23 19:49:34 +00002511void LocationsBuilderARM64::Visit##Name(H##Name* comp) { HandleCondition(comp); } \
2512void InstructionCodeGeneratorARM64::Visit##Name(H##Name* comp) { HandleCondition(comp); }
Alexandre Rames5319def2014-10-23 10:03:10 +01002513FOR_EACH_CONDITION_INSTRUCTION(DEFINE_CONDITION_VISITORS)
Alexandre Rames67555f72014-11-18 10:55:16 +00002514#undef DEFINE_CONDITION_VISITORS
Alexandre Rames5319def2014-10-23 10:03:10 +01002515#undef FOR_EACH_CONDITION_INSTRUCTION
2516
Zheng Xuc6667102015-05-15 16:08:45 +08002517void InstructionCodeGeneratorARM64::DivRemOneOrMinusOne(HBinaryOperation* instruction) {
2518 DCHECK(instruction->IsDiv() || instruction->IsRem());
2519
2520 LocationSummary* locations = instruction->GetLocations();
2521 Location second = locations->InAt(1);
2522 DCHECK(second.IsConstant());
2523
2524 Register out = OutputRegister(instruction);
2525 Register dividend = InputRegisterAt(instruction, 0);
2526 int64_t imm = Int64FromConstant(second.GetConstant());
2527 DCHECK(imm == 1 || imm == -1);
2528
2529 if (instruction->IsRem()) {
2530 __ Mov(out, 0);
2531 } else {
2532 if (imm == 1) {
2533 __ Mov(out, dividend);
2534 } else {
2535 __ Neg(out, dividend);
2536 }
2537 }
2538}
2539
2540void InstructionCodeGeneratorARM64::DivRemByPowerOfTwo(HBinaryOperation* instruction) {
2541 DCHECK(instruction->IsDiv() || instruction->IsRem());
2542
2543 LocationSummary* locations = instruction->GetLocations();
2544 Location second = locations->InAt(1);
2545 DCHECK(second.IsConstant());
2546
2547 Register out = OutputRegister(instruction);
2548 Register dividend = InputRegisterAt(instruction, 0);
2549 int64_t imm = Int64FromConstant(second.GetConstant());
Nicolas Geoffray68f62892016-01-04 08:39:49 +00002550 uint64_t abs_imm = static_cast<uint64_t>(AbsOrMin(imm));
Zheng Xuc6667102015-05-15 16:08:45 +08002551 int ctz_imm = CTZ(abs_imm);
2552
2553 UseScratchRegisterScope temps(GetVIXLAssembler());
2554 Register temp = temps.AcquireSameSizeAs(out);
2555
2556 if (instruction->IsDiv()) {
2557 __ Add(temp, dividend, abs_imm - 1);
2558 __ Cmp(dividend, 0);
2559 __ Csel(out, temp, dividend, lt);
2560 if (imm > 0) {
2561 __ Asr(out, out, ctz_imm);
2562 } else {
2563 __ Neg(out, Operand(out, ASR, ctz_imm));
2564 }
2565 } else {
2566 int bits = instruction->GetResultType() == Primitive::kPrimInt ? 32 : 64;
2567 __ Asr(temp, dividend, bits - 1);
2568 __ Lsr(temp, temp, bits - ctz_imm);
2569 __ Add(out, dividend, temp);
2570 __ And(out, out, abs_imm - 1);
2571 __ Sub(out, out, temp);
2572 }
2573}
2574
2575void InstructionCodeGeneratorARM64::GenerateDivRemWithAnyConstant(HBinaryOperation* instruction) {
2576 DCHECK(instruction->IsDiv() || instruction->IsRem());
2577
2578 LocationSummary* locations = instruction->GetLocations();
2579 Location second = locations->InAt(1);
2580 DCHECK(second.IsConstant());
2581
2582 Register out = OutputRegister(instruction);
2583 Register dividend = InputRegisterAt(instruction, 0);
2584 int64_t imm = Int64FromConstant(second.GetConstant());
2585
2586 Primitive::Type type = instruction->GetResultType();
2587 DCHECK(type == Primitive::kPrimInt || type == Primitive::kPrimLong);
2588
2589 int64_t magic;
2590 int shift;
2591 CalculateMagicAndShiftForDivRem(imm, type == Primitive::kPrimLong /* is_long */, &magic, &shift);
2592
2593 UseScratchRegisterScope temps(GetVIXLAssembler());
2594 Register temp = temps.AcquireSameSizeAs(out);
2595
2596 // temp = get_high(dividend * magic)
2597 __ Mov(temp, magic);
2598 if (type == Primitive::kPrimLong) {
2599 __ Smulh(temp, dividend, temp);
2600 } else {
2601 __ Smull(temp.X(), dividend, temp);
2602 __ Lsr(temp.X(), temp.X(), 32);
2603 }
2604
2605 if (imm > 0 && magic < 0) {
2606 __ Add(temp, temp, dividend);
2607 } else if (imm < 0 && magic > 0) {
2608 __ Sub(temp, temp, dividend);
2609 }
2610
2611 if (shift != 0) {
2612 __ Asr(temp, temp, shift);
2613 }
2614
2615 if (instruction->IsDiv()) {
2616 __ Sub(out, temp, Operand(temp, ASR, type == Primitive::kPrimLong ? 63 : 31));
2617 } else {
2618 __ Sub(temp, temp, Operand(temp, ASR, type == Primitive::kPrimLong ? 63 : 31));
2619 // TODO: Strength reduction for msub.
2620 Register temp_imm = temps.AcquireSameSizeAs(out);
2621 __ Mov(temp_imm, imm);
2622 __ Msub(out, temp, temp_imm, dividend);
2623 }
2624}
2625
2626void InstructionCodeGeneratorARM64::GenerateDivRemIntegral(HBinaryOperation* instruction) {
2627 DCHECK(instruction->IsDiv() || instruction->IsRem());
2628 Primitive::Type type = instruction->GetResultType();
2629 DCHECK(type == Primitive::kPrimInt || Primitive::kPrimLong);
2630
2631 LocationSummary* locations = instruction->GetLocations();
2632 Register out = OutputRegister(instruction);
2633 Location second = locations->InAt(1);
2634
2635 if (second.IsConstant()) {
2636 int64_t imm = Int64FromConstant(second.GetConstant());
2637
2638 if (imm == 0) {
2639 // Do not generate anything. DivZeroCheck would prevent any code to be executed.
2640 } else if (imm == 1 || imm == -1) {
2641 DivRemOneOrMinusOne(instruction);
Nicolas Geoffray68f62892016-01-04 08:39:49 +00002642 } else if (IsPowerOfTwo(AbsOrMin(imm))) {
Zheng Xuc6667102015-05-15 16:08:45 +08002643 DivRemByPowerOfTwo(instruction);
2644 } else {
2645 DCHECK(imm <= -2 || imm >= 2);
2646 GenerateDivRemWithAnyConstant(instruction);
2647 }
2648 } else {
2649 Register dividend = InputRegisterAt(instruction, 0);
2650 Register divisor = InputRegisterAt(instruction, 1);
2651 if (instruction->IsDiv()) {
2652 __ Sdiv(out, dividend, divisor);
2653 } else {
2654 UseScratchRegisterScope temps(GetVIXLAssembler());
2655 Register temp = temps.AcquireSameSizeAs(out);
2656 __ Sdiv(temp, dividend, divisor);
2657 __ Msub(out, temp, divisor, dividend);
2658 }
2659 }
2660}
2661
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002662void LocationsBuilderARM64::VisitDiv(HDiv* div) {
2663 LocationSummary* locations =
2664 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
2665 switch (div->GetResultType()) {
2666 case Primitive::kPrimInt:
2667 case Primitive::kPrimLong:
2668 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08002669 locations->SetInAt(1, Location::RegisterOrConstant(div->InputAt(1)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002670 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2671 break;
2672
2673 case Primitive::kPrimFloat:
2674 case Primitive::kPrimDouble:
2675 locations->SetInAt(0, Location::RequiresFpuRegister());
2676 locations->SetInAt(1, Location::RequiresFpuRegister());
2677 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2678 break;
2679
2680 default:
2681 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
2682 }
2683}
2684
2685void InstructionCodeGeneratorARM64::VisitDiv(HDiv* div) {
2686 Primitive::Type type = div->GetResultType();
2687 switch (type) {
2688 case Primitive::kPrimInt:
2689 case Primitive::kPrimLong:
Zheng Xuc6667102015-05-15 16:08:45 +08002690 GenerateDivRemIntegral(div);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002691 break;
2692
2693 case Primitive::kPrimFloat:
2694 case Primitive::kPrimDouble:
2695 __ Fdiv(OutputFPRegister(div), InputFPRegisterAt(div, 0), InputFPRegisterAt(div, 1));
2696 break;
2697
2698 default:
2699 LOG(FATAL) << "Unexpected div type " << type;
2700 }
2701}
2702
Alexandre Rames67555f72014-11-18 10:55:16 +00002703void LocationsBuilderARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00002704 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
2705 ? LocationSummary::kCallOnSlowPath
2706 : LocationSummary::kNoCall;
2707 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames67555f72014-11-18 10:55:16 +00002708 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
2709 if (instruction->HasUses()) {
2710 locations->SetOut(Location::SameAsFirstInput());
2711 }
2712}
2713
2714void InstructionCodeGeneratorARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
2715 SlowPathCodeARM64* slow_path =
2716 new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM64(instruction);
2717 codegen_->AddSlowPath(slow_path);
2718 Location value = instruction->GetLocations()->InAt(0);
2719
Alexandre Rames3e69f162014-12-10 10:36:50 +00002720 Primitive::Type type = instruction->GetType();
2721
Nicolas Geoffraye5671612016-03-16 11:03:54 +00002722 if (!Primitive::IsIntegralType(type)) {
2723 LOG(FATAL) << "Unexpected type " << type << " for DivZeroCheck.";
Alexandre Rames3e69f162014-12-10 10:36:50 +00002724 return;
2725 }
2726
Alexandre Rames67555f72014-11-18 10:55:16 +00002727 if (value.IsConstant()) {
2728 int64_t divisor = Int64ConstantFrom(value);
2729 if (divisor == 0) {
2730 __ B(slow_path->GetEntryLabel());
2731 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00002732 // A division by a non-null constant is valid. We don't need to perform
2733 // any check, so simply fall through.
Alexandre Rames67555f72014-11-18 10:55:16 +00002734 }
2735 } else {
2736 __ Cbz(InputRegisterAt(instruction, 0), slow_path->GetEntryLabel());
2737 }
2738}
2739
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002740void LocationsBuilderARM64::VisitDoubleConstant(HDoubleConstant* constant) {
2741 LocationSummary* locations =
2742 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2743 locations->SetOut(Location::ConstantLocation(constant));
2744}
2745
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002746void InstructionCodeGeneratorARM64::VisitDoubleConstant(
2747 HDoubleConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002748 // Will be generated at use site.
2749}
2750
Alexandre Rames5319def2014-10-23 10:03:10 +01002751void LocationsBuilderARM64::VisitExit(HExit* exit) {
2752 exit->SetLocations(nullptr);
2753}
2754
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002755void InstructionCodeGeneratorARM64::VisitExit(HExit* exit ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002756}
2757
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002758void LocationsBuilderARM64::VisitFloatConstant(HFloatConstant* constant) {
2759 LocationSummary* locations =
2760 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
2761 locations->SetOut(Location::ConstantLocation(constant));
2762}
2763
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01002764void InstructionCodeGeneratorARM64::VisitFloatConstant(HFloatConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002765 // Will be generated at use site.
2766}
2767
David Brazdilfc6a86a2015-06-26 10:33:45 +00002768void InstructionCodeGeneratorARM64::HandleGoto(HInstruction* got, HBasicBlock* successor) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002769 DCHECK(!successor->IsExitBlock());
2770 HBasicBlock* block = got->GetBlock();
2771 HInstruction* previous = got->GetPrevious();
2772 HLoopInformation* info = block->GetLoopInformation();
2773
David Brazdil46e2a392015-03-16 17:31:52 +00002774 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002775 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
2776 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
2777 return;
2778 }
2779 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
2780 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
2781 }
2782 if (!codegen_->GoesToNextBlock(block, successor)) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002783 __ B(codegen_->GetLabelOf(successor));
2784 }
2785}
2786
David Brazdilfc6a86a2015-06-26 10:33:45 +00002787void LocationsBuilderARM64::VisitGoto(HGoto* got) {
2788 got->SetLocations(nullptr);
2789}
2790
2791void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) {
2792 HandleGoto(got, got->GetSuccessor());
2793}
2794
2795void LocationsBuilderARM64::VisitTryBoundary(HTryBoundary* try_boundary) {
2796 try_boundary->SetLocations(nullptr);
2797}
2798
2799void InstructionCodeGeneratorARM64::VisitTryBoundary(HTryBoundary* try_boundary) {
2800 HBasicBlock* successor = try_boundary->GetNormalFlowSuccessor();
2801 if (!successor->IsExitBlock()) {
2802 HandleGoto(try_boundary, successor);
2803 }
2804}
2805
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002806void InstructionCodeGeneratorARM64::GenerateTestAndBranch(HInstruction* instruction,
David Brazdil0debae72015-11-12 18:37:00 +00002807 size_t condition_input_index,
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002808 vixl::Label* true_target,
David Brazdil0debae72015-11-12 18:37:00 +00002809 vixl::Label* false_target) {
2810 // FP branching requires both targets to be explicit. If either of the targets
2811 // is nullptr (fallthrough) use and bind `fallthrough_target` instead.
2812 vixl::Label fallthrough_target;
2813 HInstruction* cond = instruction->InputAt(condition_input_index);
Alexandre Rames5319def2014-10-23 10:03:10 +01002814
David Brazdil0debae72015-11-12 18:37:00 +00002815 if (true_target == nullptr && false_target == nullptr) {
2816 // Nothing to do. The code always falls through.
2817 return;
2818 } else if (cond->IsIntConstant()) {
Roland Levillain1a653882016-03-18 18:05:57 +00002819 // Constant condition, statically compared against "true" (integer value 1).
2820 if (cond->AsIntConstant()->IsTrue()) {
David Brazdil0debae72015-11-12 18:37:00 +00002821 if (true_target != nullptr) {
2822 __ B(true_target);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002823 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00002824 } else {
Roland Levillain1a653882016-03-18 18:05:57 +00002825 DCHECK(cond->AsIntConstant()->IsFalse()) << cond->AsIntConstant()->GetValue();
David Brazdil0debae72015-11-12 18:37:00 +00002826 if (false_target != nullptr) {
2827 __ B(false_target);
2828 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00002829 }
David Brazdil0debae72015-11-12 18:37:00 +00002830 return;
2831 }
2832
2833 // The following code generates these patterns:
2834 // (1) true_target == nullptr && false_target != nullptr
2835 // - opposite condition true => branch to false_target
2836 // (2) true_target != nullptr && false_target == nullptr
2837 // - condition true => branch to true_target
2838 // (3) true_target != nullptr && false_target != nullptr
2839 // - condition true => branch to true_target
2840 // - branch to false_target
2841 if (IsBooleanValueOrMaterializedCondition(cond)) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002842 // The condition instruction has been materialized, compare the output to 0.
David Brazdil0debae72015-11-12 18:37:00 +00002843 Location cond_val = instruction->GetLocations()->InAt(condition_input_index);
Alexandre Rames5319def2014-10-23 10:03:10 +01002844 DCHECK(cond_val.IsRegister());
David Brazdil0debae72015-11-12 18:37:00 +00002845 if (true_target == nullptr) {
2846 __ Cbz(InputRegisterAt(instruction, condition_input_index), false_target);
2847 } else {
2848 __ Cbnz(InputRegisterAt(instruction, condition_input_index), true_target);
2849 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002850 } else {
2851 // The condition instruction has not been materialized, use its inputs as
2852 // the comparison and its condition as the branch condition.
David Brazdil0debae72015-11-12 18:37:00 +00002853 HCondition* condition = cond->AsCondition();
Roland Levillain7f63c522015-07-13 15:54:55 +00002854
David Brazdil0debae72015-11-12 18:37:00 +00002855 Primitive::Type type = condition->InputAt(0)->GetType();
Roland Levillain7f63c522015-07-13 15:54:55 +00002856 if (Primitive::IsFloatingPointType(type)) {
Roland Levillain1a653882016-03-18 18:05:57 +00002857 GenerateFcmp(condition);
David Brazdil0debae72015-11-12 18:37:00 +00002858 if (true_target == nullptr) {
Vladimir Markod6e069b2016-01-18 11:11:01 +00002859 IfCondition opposite_condition = condition->GetOppositeCondition();
2860 __ B(ARM64FPCondition(opposite_condition, condition->IsGtBias()), false_target);
David Brazdil0debae72015-11-12 18:37:00 +00002861 } else {
Vladimir Markod6e069b2016-01-18 11:11:01 +00002862 __ B(ARM64FPCondition(condition->GetCondition(), condition->IsGtBias()), true_target);
David Brazdil0debae72015-11-12 18:37:00 +00002863 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002864 } else {
Roland Levillain7f63c522015-07-13 15:54:55 +00002865 // Integer cases.
2866 Register lhs = InputRegisterAt(condition, 0);
2867 Operand rhs = InputOperandAt(condition, 1);
David Brazdil0debae72015-11-12 18:37:00 +00002868
2869 Condition arm64_cond;
2870 vixl::Label* non_fallthrough_target;
2871 if (true_target == nullptr) {
2872 arm64_cond = ARM64Condition(condition->GetOppositeCondition());
2873 non_fallthrough_target = false_target;
2874 } else {
2875 arm64_cond = ARM64Condition(condition->GetCondition());
2876 non_fallthrough_target = true_target;
2877 }
2878
Aart Bik086d27e2016-01-20 17:02:00 -08002879 if ((arm64_cond == eq || arm64_cond == ne || arm64_cond == lt || arm64_cond == ge) &&
2880 rhs.IsImmediate() && (rhs.immediate() == 0)) {
Roland Levillain7f63c522015-07-13 15:54:55 +00002881 switch (arm64_cond) {
2882 case eq:
David Brazdil0debae72015-11-12 18:37:00 +00002883 __ Cbz(lhs, non_fallthrough_target);
Roland Levillain7f63c522015-07-13 15:54:55 +00002884 break;
2885 case ne:
David Brazdil0debae72015-11-12 18:37:00 +00002886 __ Cbnz(lhs, non_fallthrough_target);
Roland Levillain7f63c522015-07-13 15:54:55 +00002887 break;
2888 case lt:
2889 // Test the sign bit and branch accordingly.
David Brazdil0debae72015-11-12 18:37:00 +00002890 __ Tbnz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, non_fallthrough_target);
Roland Levillain7f63c522015-07-13 15:54:55 +00002891 break;
2892 case ge:
2893 // Test the sign bit and branch accordingly.
David Brazdil0debae72015-11-12 18:37:00 +00002894 __ Tbz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, non_fallthrough_target);
Roland Levillain7f63c522015-07-13 15:54:55 +00002895 break;
2896 default:
2897 // Without the `static_cast` the compiler throws an error for
2898 // `-Werror=sign-promo`.
2899 LOG(FATAL) << "Unexpected condition: " << static_cast<int>(arm64_cond);
2900 }
2901 } else {
2902 __ Cmp(lhs, rhs);
David Brazdil0debae72015-11-12 18:37:00 +00002903 __ B(arm64_cond, non_fallthrough_target);
Roland Levillain7f63c522015-07-13 15:54:55 +00002904 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002905 }
2906 }
David Brazdil0debae72015-11-12 18:37:00 +00002907
2908 // If neither branch falls through (case 3), the conditional branch to `true_target`
2909 // was already emitted (case 2) and we need to emit a jump to `false_target`.
2910 if (true_target != nullptr && false_target != nullptr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002911 __ B(false_target);
2912 }
David Brazdil0debae72015-11-12 18:37:00 +00002913
2914 if (fallthrough_target.IsLinked()) {
2915 __ Bind(&fallthrough_target);
2916 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002917}
2918
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002919void LocationsBuilderARM64::VisitIf(HIf* if_instr) {
2920 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
David Brazdil0debae72015-11-12 18:37:00 +00002921 if (IsBooleanValueOrMaterializedCondition(if_instr->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002922 locations->SetInAt(0, Location::RequiresRegister());
2923 }
2924}
2925
2926void InstructionCodeGeneratorARM64::VisitIf(HIf* if_instr) {
David Brazdil0debae72015-11-12 18:37:00 +00002927 HBasicBlock* true_successor = if_instr->IfTrueSuccessor();
2928 HBasicBlock* false_successor = if_instr->IfFalseSuccessor();
2929 vixl::Label* true_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), true_successor) ?
2930 nullptr : codegen_->GetLabelOf(true_successor);
2931 vixl::Label* false_target = codegen_->GoesToNextBlock(if_instr->GetBlock(), false_successor) ?
2932 nullptr : codegen_->GetLabelOf(false_successor);
2933 GenerateTestAndBranch(if_instr, /* condition_input_index */ 0, true_target, false_target);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002934}
2935
2936void LocationsBuilderARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
2937 LocationSummary* locations = new (GetGraph()->GetArena())
2938 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
David Brazdil0debae72015-11-12 18:37:00 +00002939 if (IsBooleanValueOrMaterializedCondition(deoptimize->InputAt(0))) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002940 locations->SetInAt(0, Location::RequiresRegister());
2941 }
2942}
2943
2944void InstructionCodeGeneratorARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
Aart Bik42249c32016-01-07 15:33:50 -08002945 SlowPathCodeARM64* slow_path =
2946 deopt_slow_paths_.NewSlowPath<DeoptimizationSlowPathARM64>(deoptimize);
David Brazdil0debae72015-11-12 18:37:00 +00002947 GenerateTestAndBranch(deoptimize,
2948 /* condition_input_index */ 0,
2949 slow_path->GetEntryLabel(),
2950 /* false_target */ nullptr);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07002951}
2952
David Brazdilc0b601b2016-02-08 14:20:45 +00002953enum SelectVariant {
2954 kCsel,
2955 kCselFalseConst,
2956 kCselTrueConst,
2957 kFcsel,
2958};
2959
2960static inline bool IsConditionOnFloatingPointValues(HInstruction* condition) {
2961 return condition->IsCondition() &&
2962 Primitive::IsFloatingPointType(condition->InputAt(0)->GetType());
2963}
2964
2965static inline bool IsRecognizedCselConstant(HInstruction* constant) {
2966 if (constant->IsConstant()) {
2967 int64_t value = Int64FromConstant(constant->AsConstant());
2968 if ((value == -1) || (value == 0) || (value == 1)) {
2969 return true;
2970 }
2971 }
2972 return false;
2973}
2974
2975static inline SelectVariant GetSelectVariant(HSelect* select) {
2976 if (Primitive::IsFloatingPointType(select->GetType())) {
2977 return kFcsel;
2978 } else if (IsRecognizedCselConstant(select->GetFalseValue())) {
2979 return kCselFalseConst;
2980 } else if (IsRecognizedCselConstant(select->GetTrueValue())) {
2981 return kCselTrueConst;
2982 } else {
2983 return kCsel;
2984 }
2985}
2986
2987static inline bool HasSwappedInputs(SelectVariant variant) {
2988 return variant == kCselTrueConst;
2989}
2990
2991static inline Condition GetConditionForSelect(HCondition* condition, SelectVariant variant) {
2992 IfCondition cond = HasSwappedInputs(variant) ? condition->GetOppositeCondition()
2993 : condition->GetCondition();
2994 return IsConditionOnFloatingPointValues(condition) ? ARM64FPCondition(cond, condition->IsGtBias())
2995 : ARM64Condition(cond);
2996}
2997
David Brazdil74eb1b22015-12-14 11:44:01 +00002998void LocationsBuilderARM64::VisitSelect(HSelect* select) {
2999 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(select);
David Brazdilc0b601b2016-02-08 14:20:45 +00003000 switch (GetSelectVariant(select)) {
3001 case kCsel:
3002 locations->SetInAt(0, Location::RequiresRegister());
3003 locations->SetInAt(1, Location::RequiresRegister());
3004 locations->SetOut(Location::RequiresRegister());
3005 break;
3006 case kCselFalseConst:
3007 locations->SetInAt(0, Location::ConstantLocation(select->InputAt(0)->AsConstant()));
3008 locations->SetInAt(1, Location::RequiresRegister());
3009 locations->SetOut(Location::RequiresRegister());
3010 break;
3011 case kCselTrueConst:
3012 locations->SetInAt(0, Location::RequiresRegister());
3013 locations->SetInAt(1, Location::ConstantLocation(select->InputAt(1)->AsConstant()));
3014 locations->SetOut(Location::RequiresRegister());
3015 break;
3016 case kFcsel:
3017 locations->SetInAt(0, Location::RequiresFpuRegister());
3018 locations->SetInAt(1, Location::RequiresFpuRegister());
3019 locations->SetOut(Location::RequiresFpuRegister());
3020 break;
David Brazdil74eb1b22015-12-14 11:44:01 +00003021 }
3022 if (IsBooleanValueOrMaterializedCondition(select->GetCondition())) {
3023 locations->SetInAt(2, Location::RequiresRegister());
3024 }
David Brazdil74eb1b22015-12-14 11:44:01 +00003025}
3026
3027void InstructionCodeGeneratorARM64::VisitSelect(HSelect* select) {
David Brazdilc0b601b2016-02-08 14:20:45 +00003028 HInstruction* cond = select->GetCondition();
3029 SelectVariant variant = GetSelectVariant(select);
3030 Condition csel_cond;
3031
3032 if (IsBooleanValueOrMaterializedCondition(cond)) {
3033 if (cond->IsCondition() && cond->GetNext() == select) {
3034 // Condition codes set from previous instruction.
3035 csel_cond = GetConditionForSelect(cond->AsCondition(), variant);
3036 } else {
3037 __ Cmp(InputRegisterAt(select, 2), 0);
3038 csel_cond = HasSwappedInputs(variant) ? eq : ne;
3039 }
3040 } else if (IsConditionOnFloatingPointValues(cond)) {
Roland Levillain1a653882016-03-18 18:05:57 +00003041 GenerateFcmp(cond);
David Brazdilc0b601b2016-02-08 14:20:45 +00003042 csel_cond = GetConditionForSelect(cond->AsCondition(), variant);
3043 } else {
3044 __ Cmp(InputRegisterAt(cond, 0), InputOperandAt(cond, 1));
3045 csel_cond = GetConditionForSelect(cond->AsCondition(), variant);
3046 }
3047
3048 switch (variant) {
3049 case kCsel:
3050 case kCselFalseConst:
3051 __ Csel(OutputRegister(select),
3052 InputRegisterAt(select, 1),
3053 InputOperandAt(select, 0),
3054 csel_cond);
3055 break;
3056 case kCselTrueConst:
3057 __ Csel(OutputRegister(select),
3058 InputRegisterAt(select, 0),
3059 InputOperandAt(select, 1),
3060 csel_cond);
3061 break;
3062 case kFcsel:
3063 __ Fcsel(OutputFPRegister(select),
3064 InputFPRegisterAt(select, 1),
3065 InputFPRegisterAt(select, 0),
3066 csel_cond);
3067 break;
3068 }
David Brazdil74eb1b22015-12-14 11:44:01 +00003069}
3070
David Srbecky0cf44932015-12-09 14:09:59 +00003071void LocationsBuilderARM64::VisitNativeDebugInfo(HNativeDebugInfo* info) {
3072 new (GetGraph()->GetArena()) LocationSummary(info);
3073}
3074
David Srbeckyd28f4a02016-03-14 17:14:24 +00003075void InstructionCodeGeneratorARM64::VisitNativeDebugInfo(HNativeDebugInfo*) {
3076 // MaybeRecordNativeDebugInfo is already called implicitly in CodeGenerator::Compile.
David Srbeckyc7098ff2016-02-09 14:30:11 +00003077}
3078
3079void CodeGeneratorARM64::GenerateNop() {
3080 __ Nop();
David Srbecky0cf44932015-12-09 14:09:59 +00003081}
3082
Alexandre Rames5319def2014-10-23 10:03:10 +01003083void LocationsBuilderARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003084 HandleFieldGet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003085}
3086
3087void InstructionCodeGeneratorARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003088 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames5319def2014-10-23 10:03:10 +01003089}
3090
3091void LocationsBuilderARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01003092 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01003093}
3094
3095void InstructionCodeGeneratorARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01003096 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01003097}
3098
Roland Levillain44015862016-01-22 11:47:17 +00003099static bool TypeCheckNeedsATemporary(TypeCheckKind type_check_kind) {
3100 return kEmitCompilerReadBarrier &&
3101 (kUseBakerReadBarrier ||
3102 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
3103 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
3104 type_check_kind == TypeCheckKind::kArrayObjectCheck);
3105}
3106
Alexandre Rames67555f72014-11-18 10:55:16 +00003107void LocationsBuilderARM64::VisitInstanceOf(HInstanceOf* instruction) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003108 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003109 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
3110 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003111 case TypeCheckKind::kExactCheck:
3112 case TypeCheckKind::kAbstractClassCheck:
3113 case TypeCheckKind::kClassHierarchyCheck:
3114 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003115 call_kind =
3116 kEmitCompilerReadBarrier ? LocationSummary::kCallOnSlowPath : LocationSummary::kNoCall;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003117 break;
3118 case TypeCheckKind::kArrayCheck:
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003119 case TypeCheckKind::kUnresolvedCheck:
3120 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003121 call_kind = LocationSummary::kCallOnSlowPath;
3122 break;
3123 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003124
Alexandre Rames67555f72014-11-18 10:55:16 +00003125 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003126 locations->SetInAt(0, Location::RequiresRegister());
3127 locations->SetInAt(1, Location::RequiresRegister());
3128 // The "out" register is used as a temporary, so it overlaps with the inputs.
3129 // Note that TypeCheckSlowPathARM64 uses this register too.
3130 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
3131 // When read barriers are enabled, we need a temporary register for
3132 // some cases.
Roland Levillain44015862016-01-22 11:47:17 +00003133 if (TypeCheckNeedsATemporary(type_check_kind)) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003134 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003135 }
Alexandre Rames67555f72014-11-18 10:55:16 +00003136}
3137
3138void InstructionCodeGeneratorARM64::VisitInstanceOf(HInstanceOf* instruction) {
Roland Levillain44015862016-01-22 11:47:17 +00003139 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Alexandre Rames67555f72014-11-18 10:55:16 +00003140 LocationSummary* locations = instruction->GetLocations();
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003141 Location obj_loc = locations->InAt(0);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003142 Register obj = InputRegisterAt(instruction, 0);
3143 Register cls = InputRegisterAt(instruction, 1);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003144 Location out_loc = locations->Out();
Alexandre Rames67555f72014-11-18 10:55:16 +00003145 Register out = OutputRegister(instruction);
Roland Levillain44015862016-01-22 11:47:17 +00003146 Location maybe_temp_loc = TypeCheckNeedsATemporary(type_check_kind) ?
3147 locations->GetTemp(0) :
3148 Location::NoLocation();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003149 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3150 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
3151 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
3152 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Alexandre Rames67555f72014-11-18 10:55:16 +00003153
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003154 vixl::Label done, zero;
3155 SlowPathCodeARM64* slow_path = nullptr;
Alexandre Rames67555f72014-11-18 10:55:16 +00003156
3157 // Return 0 if `obj` is null.
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003158 // Avoid null check if we know `obj` is not null.
3159 if (instruction->MustDoNullCheck()) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003160 __ Cbz(obj, &zero);
3161 }
3162
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003163 // /* HeapReference<Class> */ out = obj->klass_
Roland Levillain44015862016-01-22 11:47:17 +00003164 GenerateReferenceLoadTwoRegisters(instruction, out_loc, obj_loc, class_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003165
Roland Levillain44015862016-01-22 11:47:17 +00003166 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003167 case TypeCheckKind::kExactCheck: {
3168 __ Cmp(out, cls);
3169 __ Cset(out, eq);
3170 if (zero.IsLinked()) {
3171 __ B(&done);
3172 }
3173 break;
3174 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003175
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003176 case TypeCheckKind::kAbstractClassCheck: {
3177 // If the class is abstract, we eagerly fetch the super class of the
3178 // object to avoid doing a comparison we know will fail.
3179 vixl::Label loop, success;
3180 __ Bind(&loop);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003181 // /* HeapReference<Class> */ out = out->super_class_
Roland Levillain44015862016-01-22 11:47:17 +00003182 GenerateReferenceLoadOneRegister(instruction, out_loc, super_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003183 // If `out` is null, we use it for the result, and jump to `done`.
3184 __ Cbz(out, &done);
3185 __ Cmp(out, cls);
3186 __ B(ne, &loop);
3187 __ Mov(out, 1);
3188 if (zero.IsLinked()) {
3189 __ B(&done);
3190 }
3191 break;
3192 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003193
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003194 case TypeCheckKind::kClassHierarchyCheck: {
3195 // Walk over the class hierarchy to find a match.
3196 vixl::Label loop, success;
3197 __ Bind(&loop);
3198 __ Cmp(out, cls);
3199 __ B(eq, &success);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003200 // /* HeapReference<Class> */ out = out->super_class_
Roland Levillain44015862016-01-22 11:47:17 +00003201 GenerateReferenceLoadOneRegister(instruction, out_loc, super_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003202 __ Cbnz(out, &loop);
3203 // If `out` is null, we use it for the result, and jump to `done`.
3204 __ B(&done);
3205 __ Bind(&success);
3206 __ Mov(out, 1);
3207 if (zero.IsLinked()) {
3208 __ B(&done);
3209 }
3210 break;
3211 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003212
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003213 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01003214 // Do an exact check.
3215 vixl::Label exact_check;
3216 __ Cmp(out, cls);
3217 __ B(eq, &exact_check);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003218 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003219 // /* HeapReference<Class> */ out = out->component_type_
Roland Levillain44015862016-01-22 11:47:17 +00003220 GenerateReferenceLoadOneRegister(instruction, out_loc, component_offset, maybe_temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003221 // If `out` is null, we use it for the result, and jump to `done`.
3222 __ Cbz(out, &done);
3223 __ Ldrh(out, HeapOperand(out, primitive_offset));
3224 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
3225 __ Cbnz(out, &zero);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01003226 __ Bind(&exact_check);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003227 __ Mov(out, 1);
3228 __ B(&done);
3229 break;
3230 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003231
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003232 case TypeCheckKind::kArrayCheck: {
3233 __ Cmp(out, cls);
3234 DCHECK(locations->OnlyCallsOnSlowPath());
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003235 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(instruction,
3236 /* is_fatal */ false);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003237 codegen_->AddSlowPath(slow_path);
3238 __ B(ne, slow_path->GetEntryLabel());
3239 __ Mov(out, 1);
3240 if (zero.IsLinked()) {
3241 __ B(&done);
3242 }
3243 break;
3244 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003245
Calin Juravle98893e12015-10-02 21:05:03 +01003246 case TypeCheckKind::kUnresolvedCheck:
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003247 case TypeCheckKind::kInterfaceCheck: {
3248 // Note that we indeed only call on slow path, but we always go
3249 // into the slow path for the unresolved and interface check
3250 // cases.
3251 //
3252 // We cannot directly call the InstanceofNonTrivial runtime
3253 // entry point without resorting to a type checking slow path
3254 // here (i.e. by calling InvokeRuntime directly), as it would
3255 // require to assign fixed registers for the inputs of this
3256 // HInstanceOf instruction (following the runtime calling
3257 // convention), which might be cluttered by the potential first
3258 // read barrier emission at the beginning of this method.
Roland Levillain44015862016-01-22 11:47:17 +00003259 //
3260 // TODO: Introduce a new runtime entry point taking the object
3261 // to test (instead of its class) as argument, and let it deal
3262 // with the read barrier issues. This will let us refactor this
3263 // case of the `switch` code as it was previously (with a direct
3264 // call to the runtime not using a type checking slow path).
3265 // This should also be beneficial for the other cases above.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003266 DCHECK(locations->OnlyCallsOnSlowPath());
3267 slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(instruction,
3268 /* is_fatal */ false);
3269 codegen_->AddSlowPath(slow_path);
3270 __ B(slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003271 if (zero.IsLinked()) {
3272 __ B(&done);
3273 }
3274 break;
3275 }
3276 }
3277
3278 if (zero.IsLinked()) {
3279 __ Bind(&zero);
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003280 __ Mov(out, 0);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003281 }
3282
3283 if (done.IsLinked()) {
3284 __ Bind(&done);
3285 }
3286
3287 if (slow_path != nullptr) {
3288 __ Bind(slow_path->GetExitLabel());
3289 }
3290}
3291
3292void LocationsBuilderARM64::VisitCheckCast(HCheckCast* instruction) {
3293 LocationSummary::CallKind call_kind = LocationSummary::kNoCall;
3294 bool throws_into_catch = instruction->CanThrowIntoCatchBlock();
3295
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003296 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
3297 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003298 case TypeCheckKind::kExactCheck:
3299 case TypeCheckKind::kAbstractClassCheck:
3300 case TypeCheckKind::kClassHierarchyCheck:
3301 case TypeCheckKind::kArrayObjectCheck:
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003302 call_kind = (throws_into_catch || kEmitCompilerReadBarrier) ?
3303 LocationSummary::kCallOnSlowPath :
3304 LocationSummary::kNoCall; // In fact, call on a fatal (non-returning) slow path.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003305 break;
3306 case TypeCheckKind::kArrayCheck:
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003307 case TypeCheckKind::kUnresolvedCheck:
3308 case TypeCheckKind::kInterfaceCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003309 call_kind = LocationSummary::kCallOnSlowPath;
3310 break;
3311 }
3312
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003313 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
3314 locations->SetInAt(0, Location::RequiresRegister());
3315 locations->SetInAt(1, Location::RequiresRegister());
3316 // Note that TypeCheckSlowPathARM64 uses this "temp" register too.
3317 locations->AddTemp(Location::RequiresRegister());
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003318 // When read barriers are enabled, we need an additional temporary
3319 // register for some cases.
Roland Levillain44015862016-01-22 11:47:17 +00003320 if (TypeCheckNeedsATemporary(type_check_kind)) {
3321 locations->AddTemp(Location::RequiresRegister());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003322 }
3323}
3324
3325void InstructionCodeGeneratorARM64::VisitCheckCast(HCheckCast* instruction) {
Roland Levillain44015862016-01-22 11:47:17 +00003326 TypeCheckKind type_check_kind = instruction->GetTypeCheckKind();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003327 LocationSummary* locations = instruction->GetLocations();
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003328 Location obj_loc = locations->InAt(0);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003329 Register obj = InputRegisterAt(instruction, 0);
3330 Register cls = InputRegisterAt(instruction, 1);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003331 Location temp_loc = locations->GetTemp(0);
Roland Levillain44015862016-01-22 11:47:17 +00003332 Location maybe_temp2_loc = TypeCheckNeedsATemporary(type_check_kind) ?
3333 locations->GetTemp(1) :
3334 Location::NoLocation();
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003335 Register temp = WRegisterFrom(temp_loc);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003336 uint32_t class_offset = mirror::Object::ClassOffset().Int32Value();
3337 uint32_t super_offset = mirror::Class::SuperClassOffset().Int32Value();
3338 uint32_t component_offset = mirror::Class::ComponentTypeOffset().Int32Value();
3339 uint32_t primitive_offset = mirror::Class::PrimitiveTypeOffset().Int32Value();
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003340
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003341 bool is_type_check_slow_path_fatal =
3342 (type_check_kind == TypeCheckKind::kExactCheck ||
3343 type_check_kind == TypeCheckKind::kAbstractClassCheck ||
3344 type_check_kind == TypeCheckKind::kClassHierarchyCheck ||
3345 type_check_kind == TypeCheckKind::kArrayObjectCheck) &&
3346 !instruction->CanThrowIntoCatchBlock();
3347 SlowPathCodeARM64* type_check_slow_path =
3348 new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(instruction,
3349 is_type_check_slow_path_fatal);
3350 codegen_->AddSlowPath(type_check_slow_path);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003351
3352 vixl::Label done;
3353 // Avoid null check if we know obj is not null.
3354 if (instruction->MustDoNullCheck()) {
Guillaume "Vermeille" Sanchezaf888352015-04-20 14:41:30 +01003355 __ Cbz(obj, &done);
3356 }
Alexandre Rames67555f72014-11-18 10:55:16 +00003357
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003358 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain44015862016-01-22 11:47:17 +00003359 GenerateReferenceLoadTwoRegisters(instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Nicolas Geoffray75374372015-09-17 17:12:19 +00003360
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003361 switch (type_check_kind) {
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003362 case TypeCheckKind::kExactCheck:
3363 case TypeCheckKind::kArrayCheck: {
3364 __ Cmp(temp, cls);
3365 // Jump to slow path for throwing the exception or doing a
3366 // more involved array check.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003367 __ B(ne, type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003368 break;
3369 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003370
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003371 case TypeCheckKind::kAbstractClassCheck: {
3372 // If the class is abstract, we eagerly fetch the super class of the
3373 // object to avoid doing a comparison we know will fail.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003374 vixl::Label loop, compare_classes;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003375 __ Bind(&loop);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003376 // /* HeapReference<Class> */ temp = temp->super_class_
Roland Levillain44015862016-01-22 11:47:17 +00003377 GenerateReferenceLoadOneRegister(instruction, temp_loc, super_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003378
3379 // If the class reference currently in `temp` is not null, jump
3380 // to the `compare_classes` label to compare it with the checked
3381 // class.
3382 __ Cbnz(temp, &compare_classes);
3383 // Otherwise, jump to the slow path to throw the exception.
3384 //
3385 // But before, move back the object's class into `temp` before
3386 // going into the slow path, as it has been overwritten in the
3387 // meantime.
3388 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain44015862016-01-22 11:47:17 +00003389 GenerateReferenceLoadTwoRegisters(
3390 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003391 __ B(type_check_slow_path->GetEntryLabel());
3392
3393 __ Bind(&compare_classes);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003394 __ Cmp(temp, cls);
3395 __ B(ne, &loop);
3396 break;
3397 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003398
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003399 case TypeCheckKind::kClassHierarchyCheck: {
3400 // Walk over the class hierarchy to find a match.
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01003401 vixl::Label loop;
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003402 __ Bind(&loop);
3403 __ Cmp(temp, cls);
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01003404 __ B(eq, &done);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003405
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003406 // /* HeapReference<Class> */ temp = temp->super_class_
Roland Levillain44015862016-01-22 11:47:17 +00003407 GenerateReferenceLoadOneRegister(instruction, temp_loc, super_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003408
3409 // If the class reference currently in `temp` is not null, jump
3410 // back at the beginning of the loop.
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003411 __ Cbnz(temp, &loop);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003412 // Otherwise, jump to the slow path to throw the exception.
3413 //
3414 // But before, move back the object's class into `temp` before
3415 // going into the slow path, as it has been overwritten in the
3416 // meantime.
3417 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain44015862016-01-22 11:47:17 +00003418 GenerateReferenceLoadTwoRegisters(
3419 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003420 __ B(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003421 break;
3422 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003423
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003424 case TypeCheckKind::kArrayObjectCheck: {
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01003425 // Do an exact check.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003426 vixl::Label check_non_primitive_component_type;
Nicolas Geoffrayabfcf182015-09-21 18:41:21 +01003427 __ Cmp(temp, cls);
3428 __ B(eq, &done);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003429
3430 // Otherwise, we need to check that the object's class is a non-primitive array.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003431 // /* HeapReference<Class> */ temp = temp->component_type_
Roland Levillain44015862016-01-22 11:47:17 +00003432 GenerateReferenceLoadOneRegister(instruction, temp_loc, component_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003433
3434 // If the component type is not null (i.e. the object is indeed
3435 // an array), jump to label `check_non_primitive_component_type`
3436 // to further check that this component type is not a primitive
3437 // type.
3438 __ Cbnz(temp, &check_non_primitive_component_type);
3439 // Otherwise, jump to the slow path to throw the exception.
3440 //
3441 // But before, move back the object's class into `temp` before
3442 // going into the slow path, as it has been overwritten in the
3443 // meantime.
3444 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain44015862016-01-22 11:47:17 +00003445 GenerateReferenceLoadTwoRegisters(
3446 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003447 __ B(type_check_slow_path->GetEntryLabel());
3448
3449 __ Bind(&check_non_primitive_component_type);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003450 __ Ldrh(temp, HeapOperand(temp, primitive_offset));
3451 static_assert(Primitive::kPrimNot == 0, "Expected 0 for kPrimNot");
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003452 __ Cbz(temp, &done);
3453 // Same comment as above regarding `temp` and the slow path.
3454 // /* HeapReference<Class> */ temp = obj->klass_
Roland Levillain44015862016-01-22 11:47:17 +00003455 GenerateReferenceLoadTwoRegisters(
3456 instruction, temp_loc, obj_loc, class_offset, maybe_temp2_loc);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003457 __ B(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003458 break;
3459 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003460
Calin Juravle98893e12015-10-02 21:05:03 +01003461 case TypeCheckKind::kUnresolvedCheck:
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003462 case TypeCheckKind::kInterfaceCheck:
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003463 // We always go into the type check slow path for the unresolved
3464 // and interface check cases.
3465 //
3466 // We cannot directly call the CheckCast runtime entry point
3467 // without resorting to a type checking slow path here (i.e. by
3468 // calling InvokeRuntime directly), as it would require to
3469 // assign fixed registers for the inputs of this HInstanceOf
3470 // instruction (following the runtime calling convention), which
3471 // might be cluttered by the potential first read barrier
3472 // emission at the beginning of this method.
Roland Levillain44015862016-01-22 11:47:17 +00003473 //
3474 // TODO: Introduce a new runtime entry point taking the object
3475 // to test (instead of its class) as argument, and let it deal
3476 // with the read barrier issues. This will let us refactor this
3477 // case of the `switch` code as it was previously (with a direct
3478 // call to the runtime not using a type checking slow path).
3479 // This should also be beneficial for the other cases above.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003480 __ B(type_check_slow_path->GetEntryLabel());
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003481 break;
3482 }
Nicolas Geoffray75374372015-09-17 17:12:19 +00003483 __ Bind(&done);
Nicolas Geoffray85c7bab2015-09-18 13:40:46 +00003484
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003485 __ Bind(type_check_slow_path->GetExitLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +00003486}
3487
Alexandre Rames5319def2014-10-23 10:03:10 +01003488void LocationsBuilderARM64::VisitIntConstant(HIntConstant* constant) {
3489 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
3490 locations->SetOut(Location::ConstantLocation(constant));
3491}
3492
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003493void InstructionCodeGeneratorARM64::VisitIntConstant(HIntConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01003494 // Will be generated at use site.
3495}
3496
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003497void LocationsBuilderARM64::VisitNullConstant(HNullConstant* constant) {
3498 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
3499 locations->SetOut(Location::ConstantLocation(constant));
3500}
3501
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01003502void InstructionCodeGeneratorARM64::VisitNullConstant(HNullConstant* constant ATTRIBUTE_UNUSED) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003503 // Will be generated at use site.
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00003504}
3505
Calin Juravle175dc732015-08-25 15:42:32 +01003506void LocationsBuilderARM64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
3507 // The trampoline uses the same calling convention as dex calling conventions,
3508 // except instead of loading arg0/r0 with the target Method*, arg0/r0 will contain
3509 // the method_idx.
3510 HandleInvoke(invoke);
3511}
3512
3513void InstructionCodeGeneratorARM64::VisitInvokeUnresolved(HInvokeUnresolved* invoke) {
3514 codegen_->GenerateInvokeUnresolvedRuntimeCall(invoke);
3515}
3516
Alexandre Rames5319def2014-10-23 10:03:10 +01003517void LocationsBuilderARM64::HandleInvoke(HInvoke* invoke) {
Roland Levillain2d27c8e2015-04-28 15:48:45 +01003518 InvokeDexCallingConventionVisitorARM64 calling_convention_visitor;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +01003519 CodeGenerator::CreateCommonInvokeLocationSummary(invoke, &calling_convention_visitor);
Alexandre Rames5319def2014-10-23 10:03:10 +01003520}
3521
Alexandre Rames67555f72014-11-18 10:55:16 +00003522void LocationsBuilderARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
3523 HandleInvoke(invoke);
3524}
3525
3526void InstructionCodeGeneratorARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
3527 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003528 LocationSummary* locations = invoke->GetLocations();
3529 Register temp = XRegisterFrom(locations->GetTemp(0));
Mathieu Chartiere401d142015-04-22 13:56:20 -07003530 uint32_t method_offset = mirror::Class::EmbeddedImTableEntryOffset(
3531 invoke->GetImtIndex() % mirror::Class::kImtSize, kArm64PointerSize).Uint32Value();
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003532 Location receiver = locations->InAt(0);
Alexandre Rames67555f72014-11-18 10:55:16 +00003533 Offset class_offset = mirror::Object::ClassOffset();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003534 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames67555f72014-11-18 10:55:16 +00003535
3536 // The register ip1 is required to be used for the hidden argument in
3537 // art_quick_imt_conflict_trampoline, so prevent VIXL from using it.
Alexandre Ramesd921d642015-04-16 15:07:16 +01003538 MacroAssembler* masm = GetVIXLAssembler();
3539 UseScratchRegisterScope scratch_scope(masm);
3540 BlockPoolsScope block_pools(masm);
Alexandre Rames67555f72014-11-18 10:55:16 +00003541 scratch_scope.Exclude(ip1);
3542 __ Mov(ip1, invoke->GetDexMethodIndex());
3543
Alexandre Rames67555f72014-11-18 10:55:16 +00003544 if (receiver.IsStackSlot()) {
Mathieu Chartiere401d142015-04-22 13:56:20 -07003545 __ Ldr(temp.W(), StackOperandFrom(receiver));
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003546 // /* HeapReference<Class> */ temp = temp->klass_
Mathieu Chartiere401d142015-04-22 13:56:20 -07003547 __ Ldr(temp.W(), HeapOperand(temp.W(), class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00003548 } else {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003549 // /* HeapReference<Class> */ temp = receiver->klass_
Mathieu Chartiere401d142015-04-22 13:56:20 -07003550 __ Ldr(temp.W(), HeapOperandFrom(receiver, class_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00003551 }
Calin Juravle77520bc2015-01-12 18:45:46 +00003552 codegen_->MaybeRecordImplicitNullCheck(invoke);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003553 // Instead of simply (possibly) unpoisoning `temp` here, we should
3554 // emit a read barrier for the previous class reference load.
3555 // However this is not required in practice, as this is an
3556 // intermediate/temporary reference and because the current
3557 // concurrent copying collector keeps the from-space memory
3558 // intact/accessible until the end of the marking phase (the
3559 // concurrent copying collector may not in the future).
Roland Levillain4d027112015-07-01 15:41:14 +01003560 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
Alexandre Rames67555f72014-11-18 10:55:16 +00003561 // temp = temp->GetImtEntryAt(method_offset);
Mathieu Chartiere401d142015-04-22 13:56:20 -07003562 __ Ldr(temp, MemOperand(temp, method_offset));
Alexandre Rames67555f72014-11-18 10:55:16 +00003563 // lr = temp->GetEntryPoint();
Mathieu Chartiere401d142015-04-22 13:56:20 -07003564 __ Ldr(lr, MemOperand(temp, entry_point.Int32Value()));
Alexandre Rames67555f72014-11-18 10:55:16 +00003565 // lr();
3566 __ Blr(lr);
3567 DCHECK(!codegen_->IsLeafMethod());
3568 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3569}
3570
3571void LocationsBuilderARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08003572 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
3573 if (intrinsic.TryDispatch(invoke)) {
3574 return;
3575 }
3576
Alexandre Rames67555f72014-11-18 10:55:16 +00003577 HandleInvoke(invoke);
3578}
3579
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00003580void LocationsBuilderARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00003581 // Explicit clinit checks triggered by static invokes must have been pruned by
3582 // art::PrepareForRegisterAllocation.
3583 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01003584
Andreas Gampe878d58c2015-01-15 23:24:00 -08003585 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
3586 if (intrinsic.TryDispatch(invoke)) {
3587 return;
3588 }
3589
Alexandre Rames67555f72014-11-18 10:55:16 +00003590 HandleInvoke(invoke);
3591}
3592
Andreas Gampe878d58c2015-01-15 23:24:00 -08003593static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM64* codegen) {
3594 if (invoke->GetLocations()->Intrinsified()) {
3595 IntrinsicCodeGeneratorARM64 intrinsic(codegen);
3596 intrinsic.Dispatch(invoke);
3597 return true;
3598 }
3599 return false;
3600}
3601
Vladimir Markodc151b22015-10-15 18:02:30 +01003602HInvokeStaticOrDirect::DispatchInfo CodeGeneratorARM64::GetSupportedInvokeStaticOrDirectDispatch(
3603 const HInvokeStaticOrDirect::DispatchInfo& desired_dispatch_info,
3604 MethodReference target_method ATTRIBUTE_UNUSED) {
Roland Levillain44015862016-01-22 11:47:17 +00003605 // On ARM64 we support all dispatch types.
Vladimir Markodc151b22015-10-15 18:02:30 +01003606 return desired_dispatch_info;
3607}
3608
Nicolas Geoffray38207af2015-06-01 15:46:22 +01003609void CodeGeneratorARM64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp) {
Vladimir Marko58155012015-08-19 12:49:41 +00003610 // For better instruction scheduling we load the direct code pointer before the method pointer.
3611 bool direct_code_loaded = false;
3612 switch (invoke->GetCodePtrLocation()) {
3613 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
3614 // LR = code address from literal pool with link-time patch.
3615 __ Ldr(lr, DeduplicateMethodCodeLiteral(invoke->GetTargetMethod()));
3616 direct_code_loaded = true;
3617 break;
3618 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
3619 // LR = invoke->GetDirectCodePtr();
3620 __ Ldr(lr, DeduplicateUint64Literal(invoke->GetDirectCodePtr()));
3621 direct_code_loaded = true;
3622 break;
3623 default:
3624 break;
3625 }
3626
Andreas Gampe878d58c2015-01-15 23:24:00 -08003627 // Make sure that ArtMethod* is passed in kArtMethodRegister as per the calling convention.
Vladimir Marko58155012015-08-19 12:49:41 +00003628 Location callee_method = temp; // For all kinds except kRecursive, callee will be in temp.
3629 switch (invoke->GetMethodLoadKind()) {
3630 case HInvokeStaticOrDirect::MethodLoadKind::kStringInit:
3631 // temp = thread->string_init_entrypoint
Alexandre Rames6dc01742015-11-12 14:44:19 +00003632 __ Ldr(XRegisterFrom(temp), MemOperand(tr, invoke->GetStringInitOffset()));
Vladimir Marko58155012015-08-19 12:49:41 +00003633 break;
3634 case HInvokeStaticOrDirect::MethodLoadKind::kRecursive:
Vladimir Markoc53c0792015-11-19 15:48:33 +00003635 callee_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00003636 break;
3637 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddress:
3638 // Load method address from literal pool.
Alexandre Rames6dc01742015-11-12 14:44:19 +00003639 __ Ldr(XRegisterFrom(temp), DeduplicateUint64Literal(invoke->GetMethodAddress()));
Vladimir Marko58155012015-08-19 12:49:41 +00003640 break;
3641 case HInvokeStaticOrDirect::MethodLoadKind::kDirectAddressWithFixup:
3642 // Load method address from literal pool with a link-time patch.
Alexandre Rames6dc01742015-11-12 14:44:19 +00003643 __ Ldr(XRegisterFrom(temp),
Vladimir Marko58155012015-08-19 12:49:41 +00003644 DeduplicateMethodAddressLiteral(invoke->GetTargetMethod()));
3645 break;
3646 case HInvokeStaticOrDirect::MethodLoadKind::kDexCachePcRelative: {
3647 // Add ADRP with its PC-relative DexCache access patch.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003648 const DexFile& dex_file = *invoke->GetTargetMethod().dex_file;
3649 uint32_t element_offset = invoke->GetDexCacheArrayOffset();
3650 vixl::Label* adrp_label = NewPcRelativeDexCacheArrayPatch(dex_file, element_offset);
Vladimir Marko58155012015-08-19 12:49:41 +00003651 {
3652 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003653 __ Bind(adrp_label);
3654 __ adrp(XRegisterFrom(temp), /* offset placeholder */ 0);
Vladimir Marko58155012015-08-19 12:49:41 +00003655 }
Vladimir Marko58155012015-08-19 12:49:41 +00003656 // Add LDR with its PC-relative DexCache access patch.
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003657 vixl::Label* ldr_label =
3658 NewPcRelativeDexCacheArrayPatch(dex_file, element_offset, adrp_label);
Alexandre Rames6dc01742015-11-12 14:44:19 +00003659 {
3660 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003661 __ Bind(ldr_label);
3662 __ ldr(XRegisterFrom(temp), MemOperand(XRegisterFrom(temp), /* offset placeholder */ 0));
Alexandre Rames6dc01742015-11-12 14:44:19 +00003663 }
Vladimir Marko58155012015-08-19 12:49:41 +00003664 break;
Vladimir Marko9b688a02015-05-06 14:12:42 +01003665 }
Vladimir Marko58155012015-08-19 12:49:41 +00003666 case HInvokeStaticOrDirect::MethodLoadKind::kDexCacheViaMethod: {
Vladimir Markoc53c0792015-11-19 15:48:33 +00003667 Location current_method = invoke->GetLocations()->InAt(invoke->GetSpecialInputIndex());
Vladimir Marko58155012015-08-19 12:49:41 +00003668 Register reg = XRegisterFrom(temp);
3669 Register method_reg;
3670 if (current_method.IsRegister()) {
3671 method_reg = XRegisterFrom(current_method);
3672 } else {
3673 DCHECK(invoke->GetLocations()->Intrinsified());
3674 DCHECK(!current_method.IsValid());
3675 method_reg = reg;
3676 __ Ldr(reg.X(), MemOperand(sp, kCurrentMethodStackOffset));
3677 }
Vladimir Markob2c431e2015-08-19 12:45:42 +00003678
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003679 // /* ArtMethod*[] */ temp = temp.ptr_sized_fields_->dex_cache_resolved_methods_;
Vladimir Marko05792b92015-08-03 11:56:49 +01003680 __ Ldr(reg.X(),
3681 MemOperand(method_reg.X(),
3682 ArtMethod::DexCacheResolvedMethodsOffset(kArm64WordSize).Int32Value()));
Vladimir Marko58155012015-08-19 12:49:41 +00003683 // temp = temp[index_in_cache];
Vladimir Marko40ecb122016-04-06 17:33:41 +01003684 // Note: Don't use invoke->GetTargetMethod() as it may point to a different dex file.
3685 uint32_t index_in_cache = invoke->GetDexMethodIndex();
Vladimir Marko58155012015-08-19 12:49:41 +00003686 __ Ldr(reg.X(), MemOperand(reg.X(), GetCachePointerOffset(index_in_cache)));
3687 break;
3688 }
3689 }
3690
3691 switch (invoke->GetCodePtrLocation()) {
3692 case HInvokeStaticOrDirect::CodePtrLocation::kCallSelf:
3693 __ Bl(&frame_entry_label_);
3694 break;
3695 case HInvokeStaticOrDirect::CodePtrLocation::kCallPCRelative: {
3696 relative_call_patches_.emplace_back(invoke->GetTargetMethod());
3697 vixl::Label* label = &relative_call_patches_.back().label;
Alexandre Rames6dc01742015-11-12 14:44:19 +00003698 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
3699 __ Bind(label);
3700 __ bl(0); // Branch and link to itself. This will be overriden at link time.
Vladimir Marko58155012015-08-19 12:49:41 +00003701 break;
3702 }
3703 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirectWithFixup:
3704 case HInvokeStaticOrDirect::CodePtrLocation::kCallDirect:
3705 // LR prepared above for better instruction scheduling.
3706 DCHECK(direct_code_loaded);
3707 // lr()
3708 __ Blr(lr);
3709 break;
3710 case HInvokeStaticOrDirect::CodePtrLocation::kCallArtMethod:
3711 // LR = callee_method->entry_point_from_quick_compiled_code_;
3712 __ Ldr(lr, MemOperand(
Alexandre Rames6dc01742015-11-12 14:44:19 +00003713 XRegisterFrom(callee_method),
Vladimir Marko58155012015-08-19 12:49:41 +00003714 ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize).Int32Value()));
3715 // lr()
3716 __ Blr(lr);
3717 break;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00003718 }
Alexandre Rames5319def2014-10-23 10:03:10 +01003719
Andreas Gampe878d58c2015-01-15 23:24:00 -08003720 DCHECK(!IsLeafMethod());
3721}
3722
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003723void CodeGeneratorARM64::GenerateVirtualCall(HInvokeVirtual* invoke, Location temp_in) {
Nicolas Geoffraye5234232015-12-02 09:06:11 +00003724 // Use the calling convention instead of the location of the receiver, as
3725 // intrinsics may have put the receiver in a different register. In the intrinsics
3726 // slow path, the arguments have been moved to the right place, so here we are
3727 // guaranteed that the receiver is the first register of the calling convention.
3728 InvokeDexCallingConvention calling_convention;
3729 Register receiver = calling_convention.GetRegisterAt(0);
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003730 Register temp = XRegisterFrom(temp_in);
3731 size_t method_offset = mirror::Class::EmbeddedVTableEntryOffset(
3732 invoke->GetVTableIndex(), kArm64PointerSize).SizeValue();
3733 Offset class_offset = mirror::Object::ClassOffset();
3734 Offset entry_point = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
3735
3736 BlockPoolsScope block_pools(GetVIXLAssembler());
3737
3738 DCHECK(receiver.IsRegister());
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003739 // /* HeapReference<Class> */ temp = receiver->klass_
Nicolas Geoffraye5234232015-12-02 09:06:11 +00003740 __ Ldr(temp.W(), HeapOperandFrom(LocationFrom(receiver), class_offset));
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003741 MaybeRecordImplicitNullCheck(invoke);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003742 // Instead of simply (possibly) unpoisoning `temp` here, we should
3743 // emit a read barrier for the previous class reference load.
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003744 // intermediate/temporary reference and because the current
3745 // concurrent copying collector keeps the from-space memory
3746 // intact/accessible until the end of the marking phase (the
3747 // concurrent copying collector may not in the future).
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003748 GetAssembler()->MaybeUnpoisonHeapReference(temp.W());
3749 // temp = temp->GetMethodAt(method_offset);
3750 __ Ldr(temp, MemOperand(temp, method_offset));
3751 // lr = temp->GetEntryPoint();
3752 __ Ldr(lr, MemOperand(temp, entry_point.SizeValue()));
3753 // lr();
3754 __ Blr(lr);
3755}
3756
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003757vixl::Label* CodeGeneratorARM64::NewPcRelativeStringPatch(const DexFile& dex_file,
3758 uint32_t string_index,
3759 vixl::Label* adrp_label) {
3760 return NewPcRelativePatch(dex_file, string_index, adrp_label, &pc_relative_string_patches_);
3761}
3762
3763vixl::Label* CodeGeneratorARM64::NewPcRelativeDexCacheArrayPatch(const DexFile& dex_file,
3764 uint32_t element_offset,
3765 vixl::Label* adrp_label) {
3766 return NewPcRelativePatch(dex_file, element_offset, adrp_label, &pc_relative_dex_cache_patches_);
3767}
3768
3769vixl::Label* CodeGeneratorARM64::NewPcRelativePatch(const DexFile& dex_file,
3770 uint32_t offset_or_index,
3771 vixl::Label* adrp_label,
3772 ArenaDeque<PcRelativePatchInfo>* patches) {
3773 // Add a patch entry and return the label.
3774 patches->emplace_back(dex_file, offset_or_index);
3775 PcRelativePatchInfo* info = &patches->back();
3776 vixl::Label* label = &info->label;
3777 // If adrp_label is null, this is the ADRP patch and needs to point to its own label.
3778 info->pc_insn_label = (adrp_label != nullptr) ? adrp_label : label;
3779 return label;
3780}
3781
3782vixl::Literal<uint32_t>* CodeGeneratorARM64::DeduplicateBootImageStringLiteral(
3783 const DexFile& dex_file, uint32_t string_index) {
3784 return boot_image_string_patches_.GetOrCreate(
3785 StringReference(&dex_file, string_index),
3786 [this]() { return __ CreateLiteralDestroyedWithPool<uint32_t>(/* placeholder */ 0u); });
3787}
3788
3789vixl::Literal<uint32_t>* CodeGeneratorARM64::DeduplicateBootImageAddressLiteral(uint64_t address) {
3790 bool needs_patch = GetCompilerOptions().GetIncludePatchInformation();
3791 Uint32ToLiteralMap* map = needs_patch ? &boot_image_address_patches_ : &uint32_literals_;
3792 return DeduplicateUint32Literal(dchecked_integral_cast<uint32_t>(address), map);
3793}
3794
3795vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateDexCacheAddressLiteral(uint64_t address) {
3796 return DeduplicateUint64Literal(address);
3797}
3798
Vladimir Marko58155012015-08-19 12:49:41 +00003799void CodeGeneratorARM64::EmitLinkerPatches(ArenaVector<LinkerPatch>* linker_patches) {
3800 DCHECK(linker_patches->empty());
3801 size_t size =
3802 method_patches_.size() +
3803 call_patches_.size() +
3804 relative_call_patches_.size() +
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003805 pc_relative_dex_cache_patches_.size() +
3806 boot_image_string_patches_.size() +
3807 pc_relative_string_patches_.size() +
3808 boot_image_address_patches_.size();
Vladimir Marko58155012015-08-19 12:49:41 +00003809 linker_patches->reserve(size);
3810 for (const auto& entry : method_patches_) {
3811 const MethodReference& target_method = entry.first;
3812 vixl::Literal<uint64_t>* literal = entry.second;
3813 linker_patches->push_back(LinkerPatch::MethodPatch(literal->offset(),
3814 target_method.dex_file,
3815 target_method.dex_method_index));
3816 }
3817 for (const auto& entry : call_patches_) {
3818 const MethodReference& target_method = entry.first;
3819 vixl::Literal<uint64_t>* literal = entry.second;
3820 linker_patches->push_back(LinkerPatch::CodePatch(literal->offset(),
3821 target_method.dex_file,
3822 target_method.dex_method_index));
3823 }
3824 for (const MethodPatchInfo<vixl::Label>& info : relative_call_patches_) {
Alexandre Rames6dc01742015-11-12 14:44:19 +00003825 linker_patches->push_back(LinkerPatch::RelativeCodePatch(info.label.location(),
Vladimir Marko58155012015-08-19 12:49:41 +00003826 info.target_method.dex_file,
3827 info.target_method.dex_method_index));
3828 }
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003829 for (const PcRelativePatchInfo& info : pc_relative_dex_cache_patches_) {
Alexandre Rames6dc01742015-11-12 14:44:19 +00003830 linker_patches->push_back(LinkerPatch::DexCacheArrayPatch(info.label.location(),
Vladimir Marko58155012015-08-19 12:49:41 +00003831 &info.target_dex_file,
Alexandre Rames6dc01742015-11-12 14:44:19 +00003832 info.pc_insn_label->location(),
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003833 info.offset_or_index));
3834 }
3835 for (const auto& entry : boot_image_string_patches_) {
3836 const StringReference& target_string = entry.first;
3837 vixl::Literal<uint32_t>* literal = entry.second;
3838 linker_patches->push_back(LinkerPatch::StringPatch(literal->offset(),
3839 target_string.dex_file,
3840 target_string.string_index));
3841 }
3842 for (const PcRelativePatchInfo& info : pc_relative_string_patches_) {
3843 linker_patches->push_back(LinkerPatch::RelativeStringPatch(info.label.location(),
3844 &info.target_dex_file,
3845 info.pc_insn_label->location(),
3846 info.offset_or_index));
3847 }
3848 for (const auto& entry : boot_image_address_patches_) {
3849 DCHECK(GetCompilerOptions().GetIncludePatchInformation());
3850 vixl::Literal<uint32_t>* literal = entry.second;
3851 linker_patches->push_back(LinkerPatch::RecordPosition(literal->offset()));
Vladimir Marko58155012015-08-19 12:49:41 +00003852 }
3853}
3854
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003855vixl::Literal<uint32_t>* CodeGeneratorARM64::DeduplicateUint32Literal(uint32_t value,
3856 Uint32ToLiteralMap* map) {
3857 return map->GetOrCreate(
3858 value,
3859 [this, value]() { return __ CreateLiteralDestroyedWithPool<uint32_t>(value); });
3860}
3861
Vladimir Marko58155012015-08-19 12:49:41 +00003862vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateUint64Literal(uint64_t value) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003863 return uint64_literals_.GetOrCreate(
3864 value,
3865 [this, value]() { return __ CreateLiteralDestroyedWithPool<uint64_t>(value); });
Vladimir Marko58155012015-08-19 12:49:41 +00003866}
3867
3868vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodLiteral(
3869 MethodReference target_method,
3870 MethodToLiteralMap* map) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003871 return map->GetOrCreate(
3872 target_method,
3873 [this]() { return __ CreateLiteralDestroyedWithPool<uint64_t>(/* placeholder */ 0u); });
Vladimir Marko58155012015-08-19 12:49:41 +00003874}
3875
3876vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodAddressLiteral(
3877 MethodReference target_method) {
3878 return DeduplicateMethodLiteral(target_method, &method_patches_);
3879}
3880
3881vixl::Literal<uint64_t>* CodeGeneratorARM64::DeduplicateMethodCodeLiteral(
3882 MethodReference target_method) {
3883 return DeduplicateMethodLiteral(target_method, &call_patches_);
3884}
3885
3886
Andreas Gampe878d58c2015-01-15 23:24:00 -08003887void InstructionCodeGeneratorARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
David Brazdil58282f42016-01-14 12:45:10 +00003888 // Explicit clinit checks triggered by static invokes must have been pruned by
3889 // art::PrepareForRegisterAllocation.
3890 DCHECK(!invoke->IsStaticWithExplicitClinitCheck());
Roland Levillain4c0eb422015-04-24 16:43:49 +01003891
Andreas Gampe878d58c2015-01-15 23:24:00 -08003892 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3893 return;
3894 }
3895
Alexandre Ramesd921d642015-04-16 15:07:16 +01003896 BlockPoolsScope block_pools(GetVIXLAssembler());
Nicolas Geoffray38207af2015-06-01 15:46:22 +01003897 LocationSummary* locations = invoke->GetLocations();
3898 codegen_->GenerateStaticOrDirectCall(
3899 invoke, locations->HasTemps() ? locations->GetTemp(0) : Location::NoLocation());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00003900 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Alexandre Rames5319def2014-10-23 10:03:10 +01003901}
3902
3903void InstructionCodeGeneratorARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08003904 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
3905 return;
3906 }
3907
Andreas Gampebfb5ba92015-09-01 15:45:02 +00003908 codegen_->GenerateVirtualCall(invoke, invoke->GetLocations()->GetTemp(0));
Alexandre Rames5319def2014-10-23 10:03:10 +01003909 DCHECK(!codegen_->IsLeafMethod());
3910 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
3911}
3912
Alexandre Rames67555f72014-11-18 10:55:16 +00003913void LocationsBuilderARM64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01003914 InvokeRuntimeCallingConvention calling_convention;
3915 CodeGenerator::CreateLoadClassLocationSummary(
3916 cls,
3917 LocationFrom(calling_convention.GetRegisterAt(0)),
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003918 LocationFrom(vixl::x0),
3919 /* code_generator_supports_read_barrier */ true);
Alexandre Rames67555f72014-11-18 10:55:16 +00003920}
3921
3922void InstructionCodeGeneratorARM64::VisitLoadClass(HLoadClass* cls) {
Calin Juravle98893e12015-10-02 21:05:03 +01003923 if (cls->NeedsAccessCheck()) {
3924 codegen_->MoveConstant(cls->GetLocations()->GetTemp(0), cls->GetTypeIndex());
3925 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pInitializeTypeAndVerifyAccess),
3926 cls,
3927 cls->GetDexPc(),
3928 nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00003929 CheckEntrypointTypes<kQuickInitializeTypeAndVerifyAccess, void*, uint32_t>();
Calin Juravle580b6092015-10-06 17:35:58 +01003930 return;
3931 }
3932
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003933 Location out_loc = cls->GetLocations()->Out();
Calin Juravle580b6092015-10-06 17:35:58 +01003934 Register out = OutputRegister(cls);
3935 Register current_method = InputRegisterAt(cls, 0);
3936 if (cls->IsReferrersClass()) {
Alexandre Rames67555f72014-11-18 10:55:16 +00003937 DCHECK(!cls->CanCallRuntime());
3938 DCHECK(!cls->MustGenerateClinitCheck());
Roland Levillain44015862016-01-22 11:47:17 +00003939 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
3940 GenerateGcRootFieldLoad(
3941 cls, out_loc, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
Alexandre Rames67555f72014-11-18 10:55:16 +00003942 } else {
Vladimir Marko05792b92015-08-03 11:56:49 +01003943 MemberOffset resolved_types_offset = ArtMethod::DexCacheResolvedTypesOffset(kArm64PointerSize);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00003944 // /* GcRoot<mirror::Class>[] */ out =
3945 // current_method.ptr_sized_fields_->dex_cache_resolved_types_
Vladimir Marko05792b92015-08-03 11:56:49 +01003946 __ Ldr(out.X(), MemOperand(current_method, resolved_types_offset.Int32Value()));
Roland Levillain44015862016-01-22 11:47:17 +00003947 // /* GcRoot<mirror::Class> */ out = out[type_index]
3948 GenerateGcRootFieldLoad(
3949 cls, out_loc, out.X(), CodeGenerator::GetCacheOffset(cls->GetTypeIndex()));
Alexandre Rames67555f72014-11-18 10:55:16 +00003950
Nicolas Geoffray42e372e2015-11-24 15:48:56 +00003951 if (!cls->IsInDexCache() || cls->MustGenerateClinitCheck()) {
3952 DCHECK(cls->CanCallRuntime());
3953 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
3954 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
3955 codegen_->AddSlowPath(slow_path);
3956 if (!cls->IsInDexCache()) {
3957 __ Cbz(out, slow_path->GetEntryLabel());
3958 }
3959 if (cls->MustGenerateClinitCheck()) {
3960 GenerateClassInitializationCheck(slow_path, out);
3961 } else {
3962 __ Bind(slow_path->GetExitLabel());
3963 }
Alexandre Rames67555f72014-11-18 10:55:16 +00003964 }
3965 }
3966}
3967
David Brazdilcb1c0552015-08-04 16:22:25 +01003968static MemOperand GetExceptionTlsAddress() {
3969 return MemOperand(tr, Thread::ExceptionOffset<kArm64WordSize>().Int32Value());
3970}
3971
Alexandre Rames67555f72014-11-18 10:55:16 +00003972void LocationsBuilderARM64::VisitLoadException(HLoadException* load) {
3973 LocationSummary* locations =
3974 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
3975 locations->SetOut(Location::RequiresRegister());
3976}
3977
3978void InstructionCodeGeneratorARM64::VisitLoadException(HLoadException* instruction) {
David Brazdilcb1c0552015-08-04 16:22:25 +01003979 __ Ldr(OutputRegister(instruction), GetExceptionTlsAddress());
3980}
3981
3982void LocationsBuilderARM64::VisitClearException(HClearException* clear) {
3983 new (GetGraph()->GetArena()) LocationSummary(clear, LocationSummary::kNoCall);
3984}
3985
3986void InstructionCodeGeneratorARM64::VisitClearException(HClearException* clear ATTRIBUTE_UNUSED) {
3987 __ Str(wzr, GetExceptionTlsAddress());
Alexandre Rames67555f72014-11-18 10:55:16 +00003988}
3989
Vladimir Markocac5a7e2016-02-22 10:39:50 +00003990HLoadString::LoadKind CodeGeneratorARM64::GetSupportedLoadStringKind(
3991 HLoadString::LoadKind desired_string_load_kind) {
3992 if (kEmitCompilerReadBarrier) {
3993 switch (desired_string_load_kind) {
3994 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
3995 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
3996 case HLoadString::LoadKind::kBootImageAddress:
3997 // TODO: Implement for read barrier.
3998 return HLoadString::LoadKind::kDexCacheViaMethod;
3999 default:
4000 break;
4001 }
4002 }
4003 switch (desired_string_load_kind) {
4004 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
4005 DCHECK(!GetCompilerOptions().GetCompilePic());
4006 break;
4007 case HLoadString::LoadKind::kBootImageLinkTimePcRelative:
4008 DCHECK(GetCompilerOptions().GetCompilePic());
4009 break;
4010 case HLoadString::LoadKind::kBootImageAddress:
4011 break;
4012 case HLoadString::LoadKind::kDexCacheAddress:
Calin Juravleffc87072016-04-20 14:22:09 +01004013 DCHECK(Runtime::Current()->UseJitCompilation());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004014 break;
4015 case HLoadString::LoadKind::kDexCachePcRelative:
Calin Juravleffc87072016-04-20 14:22:09 +01004016 DCHECK(!Runtime::Current()->UseJitCompilation());
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004017 break;
4018 case HLoadString::LoadKind::kDexCacheViaMethod:
4019 break;
4020 }
4021 return desired_string_load_kind;
4022}
4023
Alexandre Rames67555f72014-11-18 10:55:16 +00004024void LocationsBuilderARM64::VisitLoadString(HLoadString* load) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004025 LocationSummary::CallKind call_kind = (load->NeedsEnvironment() || kEmitCompilerReadBarrier)
Nicolas Geoffray917d0162015-11-24 18:25:35 +00004026 ? LocationSummary::kCallOnSlowPath
4027 : LocationSummary::kNoCall;
4028 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(load, call_kind);
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004029 if (load->GetLoadKind() == HLoadString::LoadKind::kDexCacheViaMethod) {
4030 locations->SetInAt(0, Location::RequiresRegister());
4031 }
Alexandre Rames67555f72014-11-18 10:55:16 +00004032 locations->SetOut(Location::RequiresRegister());
4033}
4034
4035void InstructionCodeGeneratorARM64::VisitLoadString(HLoadString* load) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00004036 Location out_loc = load->GetLocations()->Out();
Alexandre Rames67555f72014-11-18 10:55:16 +00004037 Register out = OutputRegister(load);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00004038
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004039 switch (load->GetLoadKind()) {
4040 case HLoadString::LoadKind::kBootImageLinkTimeAddress:
4041 DCHECK(!kEmitCompilerReadBarrier);
4042 __ Ldr(out, codegen_->DeduplicateBootImageStringLiteral(load->GetDexFile(),
4043 load->GetStringIndex()));
4044 return; // No dex cache slow path.
4045 case HLoadString::LoadKind::kBootImageLinkTimePcRelative: {
4046 DCHECK(!kEmitCompilerReadBarrier);
4047 // Add ADRP with its PC-relative String patch.
4048 const DexFile& dex_file = load->GetDexFile();
4049 uint32_t string_index = load->GetStringIndex();
4050 vixl::Label* adrp_label = codegen_->NewPcRelativeStringPatch(dex_file, string_index);
4051 {
4052 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
4053 __ Bind(adrp_label);
4054 __ adrp(out.X(), /* offset placeholder */ 0);
4055 }
4056 // Add ADD with its PC-relative String patch.
4057 vixl::Label* add_label =
4058 codegen_->NewPcRelativeStringPatch(dex_file, string_index, adrp_label);
4059 {
4060 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
4061 __ Bind(add_label);
4062 __ add(out.X(), out.X(), Operand(/* offset placeholder */ 0));
4063 }
4064 return; // No dex cache slow path.
4065 }
4066 case HLoadString::LoadKind::kBootImageAddress: {
4067 DCHECK(!kEmitCompilerReadBarrier);
4068 DCHECK(load->GetAddress() != 0u && IsUint<32>(load->GetAddress()));
4069 __ Ldr(out.W(), codegen_->DeduplicateBootImageAddressLiteral(load->GetAddress()));
4070 return; // No dex cache slow path.
4071 }
4072 case HLoadString::LoadKind::kDexCacheAddress: {
4073 DCHECK_NE(load->GetAddress(), 0u);
4074 // LDR immediate has a 12-bit offset multiplied by the size and for 32-bit loads
4075 // that gives a 16KiB range. To try and reduce the number of literals if we load
4076 // multiple strings, simply split the dex cache address to a 16KiB aligned base
4077 // loaded from a literal and the remaining offset embedded in the load.
4078 static_assert(sizeof(GcRoot<mirror::String>) == 4u, "Expected GC root to be 4 bytes.");
4079 DCHECK_ALIGNED(load->GetAddress(), 4u);
4080 constexpr size_t offset_bits = /* encoded bits */ 12 + /* scale */ 2;
4081 uint64_t base_address = load->GetAddress() & ~MaxInt<uint64_t>(offset_bits);
4082 uint32_t offset = load->GetAddress() & MaxInt<uint64_t>(offset_bits);
4083 __ Ldr(out.X(), codegen_->DeduplicateDexCacheAddressLiteral(base_address));
4084 GenerateGcRootFieldLoad(load, out_loc, out.X(), offset);
4085 break;
4086 }
4087 case HLoadString::LoadKind::kDexCachePcRelative: {
4088 // Add ADRP with its PC-relative DexCache access patch.
4089 const DexFile& dex_file = load->GetDexFile();
4090 uint32_t element_offset = load->GetDexCacheElementOffset();
4091 vixl::Label* adrp_label = codegen_->NewPcRelativeDexCacheArrayPatch(dex_file, element_offset);
4092 {
4093 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
4094 __ Bind(adrp_label);
4095 __ adrp(out.X(), /* offset placeholder */ 0);
4096 }
4097 // Add LDR with its PC-relative DexCache access patch.
4098 vixl::Label* ldr_label =
4099 codegen_->NewPcRelativeDexCacheArrayPatch(dex_file, element_offset, adrp_label);
4100 GenerateGcRootFieldLoad(load, out_loc, out.X(), /* offset placeholder */ 0, ldr_label);
4101 break;
4102 }
4103 case HLoadString::LoadKind::kDexCacheViaMethod: {
4104 Register current_method = InputRegisterAt(load, 0);
4105 // /* GcRoot<mirror::Class> */ out = current_method->declaring_class_
4106 GenerateGcRootFieldLoad(
4107 load, out_loc, current_method, ArtMethod::DeclaringClassOffset().Int32Value());
4108 // /* GcRoot<mirror::String>[] */ out = out->dex_cache_strings_
4109 __ Ldr(out.X(), HeapOperand(out, mirror::Class::DexCacheStringsOffset().Uint32Value()));
4110 // /* GcRoot<mirror::String> */ out = out[string_index]
4111 GenerateGcRootFieldLoad(
4112 load, out_loc, out.X(), CodeGenerator::GetCacheOffset(load->GetStringIndex()));
4113 break;
4114 }
4115 default:
4116 LOG(FATAL) << "Unexpected load kind: " << load->GetLoadKind();
4117 UNREACHABLE();
4118 }
Roland Levillain22ccc3a2015-11-24 13:10:05 +00004119
Nicolas Geoffray917d0162015-11-24 18:25:35 +00004120 if (!load->IsInDexCache()) {
4121 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM64(load);
4122 codegen_->AddSlowPath(slow_path);
4123 __ Cbz(out, slow_path->GetEntryLabel());
4124 __ Bind(slow_path->GetExitLabel());
4125 }
Alexandre Rames67555f72014-11-18 10:55:16 +00004126}
4127
Alexandre Rames5319def2014-10-23 10:03:10 +01004128void LocationsBuilderARM64::VisitLongConstant(HLongConstant* constant) {
4129 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
4130 locations->SetOut(Location::ConstantLocation(constant));
4131}
4132
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004133void InstructionCodeGeneratorARM64::VisitLongConstant(HLongConstant* constant ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004134 // Will be generated at use site.
4135}
4136
Alexandre Rames67555f72014-11-18 10:55:16 +00004137void LocationsBuilderARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
4138 LocationSummary* locations =
4139 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4140 InvokeRuntimeCallingConvention calling_convention;
4141 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
4142}
4143
4144void InstructionCodeGeneratorARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
4145 codegen_->InvokeRuntime(instruction->IsEnter()
4146 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
4147 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00004148 instruction->GetDexPc(),
4149 nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00004150 if (instruction->IsEnter()) {
4151 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
4152 } else {
4153 CheckEntrypointTypes<kQuickUnlockObject, void, mirror::Object*>();
4154 }
Alexandre Rames67555f72014-11-18 10:55:16 +00004155}
4156
Alexandre Rames42d641b2014-10-27 14:00:51 +00004157void LocationsBuilderARM64::VisitMul(HMul* mul) {
4158 LocationSummary* locations =
4159 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
4160 switch (mul->GetResultType()) {
4161 case Primitive::kPrimInt:
4162 case Primitive::kPrimLong:
4163 locations->SetInAt(0, Location::RequiresRegister());
4164 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00004165 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00004166 break;
4167
4168 case Primitive::kPrimFloat:
4169 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00004170 locations->SetInAt(0, Location::RequiresFpuRegister());
4171 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00004172 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00004173 break;
4174
4175 default:
4176 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
4177 }
4178}
4179
4180void InstructionCodeGeneratorARM64::VisitMul(HMul* mul) {
4181 switch (mul->GetResultType()) {
4182 case Primitive::kPrimInt:
4183 case Primitive::kPrimLong:
4184 __ Mul(OutputRegister(mul), InputRegisterAt(mul, 0), InputRegisterAt(mul, 1));
4185 break;
4186
4187 case Primitive::kPrimFloat:
4188 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00004189 __ Fmul(OutputFPRegister(mul), InputFPRegisterAt(mul, 0), InputFPRegisterAt(mul, 1));
Alexandre Rames42d641b2014-10-27 14:00:51 +00004190 break;
4191
4192 default:
4193 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
4194 }
4195}
4196
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004197void LocationsBuilderARM64::VisitNeg(HNeg* neg) {
4198 LocationSummary* locations =
4199 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
4200 switch (neg->GetResultType()) {
4201 case Primitive::kPrimInt:
Alexandre Rames67555f72014-11-18 10:55:16 +00004202 case Primitive::kPrimLong:
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00004203 locations->SetInAt(0, ARM64EncodableConstantOrRegister(neg->InputAt(0), neg));
Alexandre Rames67555f72014-11-18 10:55:16 +00004204 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004205 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004206
4207 case Primitive::kPrimFloat:
4208 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00004209 locations->SetInAt(0, Location::RequiresFpuRegister());
4210 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004211 break;
4212
4213 default:
4214 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
4215 }
4216}
4217
4218void InstructionCodeGeneratorARM64::VisitNeg(HNeg* neg) {
4219 switch (neg->GetResultType()) {
4220 case Primitive::kPrimInt:
4221 case Primitive::kPrimLong:
4222 __ Neg(OutputRegister(neg), InputOperandAt(neg, 0));
4223 break;
4224
4225 case Primitive::kPrimFloat:
4226 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00004227 __ Fneg(OutputFPRegister(neg), InputFPRegisterAt(neg, 0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004228 break;
4229
4230 default:
4231 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
4232 }
4233}
4234
4235void LocationsBuilderARM64::VisitNewArray(HNewArray* instruction) {
4236 LocationSummary* locations =
4237 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4238 InvokeRuntimeCallingConvention calling_convention;
4239 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004240 locations->SetOut(LocationFrom(x0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08004241 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
Nicolas Geoffray69aa6012015-06-09 10:34:25 +01004242 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(2)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004243}
4244
4245void InstructionCodeGeneratorARM64::VisitNewArray(HNewArray* instruction) {
4246 LocationSummary* locations = instruction->GetLocations();
4247 InvokeRuntimeCallingConvention calling_convention;
4248 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
4249 DCHECK(type_index.Is(w0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004250 __ Mov(type_index, instruction->GetTypeIndex());
Roland Levillain4d027112015-07-01 15:41:14 +01004251 // Note: if heap poisoning is enabled, the entry point takes cares
4252 // of poisoning the reference.
Calin Juravle175dc732015-08-25 15:42:32 +01004253 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
4254 instruction,
4255 instruction->GetDexPc(),
4256 nullptr);
Mathieu Chartiere401d142015-04-22 13:56:20 -07004257 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck, void*, uint32_t, int32_t, ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00004258}
4259
Alexandre Rames5319def2014-10-23 10:03:10 +01004260void LocationsBuilderARM64::VisitNewInstance(HNewInstance* instruction) {
4261 LocationSummary* locations =
4262 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4263 InvokeRuntimeCallingConvention calling_convention;
David Brazdil6de19382016-01-08 17:37:10 +00004264 if (instruction->IsStringAlloc()) {
4265 locations->AddTemp(LocationFrom(kArtMethodRegister));
4266 } else {
4267 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
4268 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1)));
4269 }
Alexandre Rames5319def2014-10-23 10:03:10 +01004270 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
4271}
4272
4273void InstructionCodeGeneratorARM64::VisitNewInstance(HNewInstance* instruction) {
Roland Levillain4d027112015-07-01 15:41:14 +01004274 // Note: if heap poisoning is enabled, the entry point takes cares
4275 // of poisoning the reference.
David Brazdil6de19382016-01-08 17:37:10 +00004276 if (instruction->IsStringAlloc()) {
4277 // String is allocated through StringFactory. Call NewEmptyString entry point.
4278 Location temp = instruction->GetLocations()->GetTemp(0);
4279 MemberOffset code_offset = ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
4280 __ Ldr(XRegisterFrom(temp), MemOperand(tr, QUICK_ENTRY_POINT(pNewEmptyString)));
4281 __ Ldr(lr, MemOperand(XRegisterFrom(temp), code_offset.Int32Value()));
4282 __ Blr(lr);
4283 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
4284 } else {
4285 codegen_->InvokeRuntime(instruction->GetEntrypoint(),
4286 instruction,
4287 instruction->GetDexPc(),
4288 nullptr);
4289 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, ArtMethod*>();
4290 }
Alexandre Rames5319def2014-10-23 10:03:10 +01004291}
4292
4293void LocationsBuilderARM64::VisitNot(HNot* instruction) {
4294 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexandre Rames4e596512014-11-07 15:56:50 +00004295 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00004296 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01004297}
4298
4299void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) {
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00004300 switch (instruction->GetResultType()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004301 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01004302 case Primitive::kPrimLong:
Roland Levillain55dcfb52014-10-24 18:09:09 +01004303 __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0));
Alexandre Rames5319def2014-10-23 10:03:10 +01004304 break;
4305
4306 default:
4307 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
4308 }
4309}
4310
David Brazdil66d126e2015-04-03 16:02:44 +01004311void LocationsBuilderARM64::VisitBooleanNot(HBooleanNot* instruction) {
4312 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4313 locations->SetInAt(0, Location::RequiresRegister());
4314 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4315}
4316
4317void InstructionCodeGeneratorARM64::VisitBooleanNot(HBooleanNot* instruction) {
David Brazdil66d126e2015-04-03 16:02:44 +01004318 __ Eor(OutputRegister(instruction), InputRegisterAt(instruction, 0), vixl::Operand(1));
4319}
4320
Alexandre Rames5319def2014-10-23 10:03:10 +01004321void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) {
David Brazdil77a48ae2015-09-15 12:34:04 +00004322 LocationSummary::CallKind call_kind = instruction->CanThrowIntoCatchBlock()
4323 ? LocationSummary::kCallOnSlowPath
4324 : LocationSummary::kNoCall;
4325 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
Alexandre Rames5319def2014-10-23 10:03:10 +01004326 locations->SetInAt(0, Location::RequiresRegister());
4327 if (instruction->HasUses()) {
4328 locations->SetOut(Location::SameAsFirstInput());
4329 }
4330}
4331
Calin Juravle2ae48182016-03-16 14:05:09 +00004332void CodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) {
4333 if (CanMoveNullCheckToUser(instruction)) {
Calin Juravle77520bc2015-01-12 18:45:46 +00004334 return;
4335 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004336
Alexandre Ramesd921d642015-04-16 15:07:16 +01004337 BlockPoolsScope block_pools(GetVIXLAssembler());
4338 Location obj = instruction->GetLocations()->InAt(0);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004339 __ Ldr(wzr, HeapOperandFrom(obj, Offset(0)));
Calin Juravle2ae48182016-03-16 14:05:09 +00004340 RecordPcInfo(instruction, instruction->GetDexPc());
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004341}
4342
Calin Juravle2ae48182016-03-16 14:05:09 +00004343void CodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004344 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM64(instruction);
Calin Juravle2ae48182016-03-16 14:05:09 +00004345 AddSlowPath(slow_path);
Alexandre Rames5319def2014-10-23 10:03:10 +01004346
4347 LocationSummary* locations = instruction->GetLocations();
4348 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00004349
4350 __ Cbz(RegisterFrom(obj, instruction->InputAt(0)->GetType()), slow_path->GetEntryLabel());
Alexandre Rames5319def2014-10-23 10:03:10 +01004351}
4352
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004353void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) {
Calin Juravle2ae48182016-03-16 14:05:09 +00004354 codegen_->GenerateNullCheck(instruction);
Calin Juravlecd6dffe2015-01-08 17:35:35 +00004355}
4356
Alexandre Rames67555f72014-11-18 10:55:16 +00004357void LocationsBuilderARM64::VisitOr(HOr* instruction) {
4358 HandleBinaryOp(instruction);
4359}
4360
4361void InstructionCodeGeneratorARM64::VisitOr(HOr* instruction) {
4362 HandleBinaryOp(instruction);
4363}
4364
Alexandre Rames3e69f162014-12-10 10:36:50 +00004365void LocationsBuilderARM64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
4366 LOG(FATAL) << "Unreachable";
4367}
4368
4369void InstructionCodeGeneratorARM64::VisitParallelMove(HParallelMove* instruction) {
4370 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
4371}
4372
Alexandre Rames5319def2014-10-23 10:03:10 +01004373void LocationsBuilderARM64::VisitParameterValue(HParameterValue* instruction) {
4374 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4375 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
4376 if (location.IsStackSlot()) {
4377 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
4378 } else if (location.IsDoubleStackSlot()) {
4379 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
4380 }
4381 locations->SetOut(location);
4382}
4383
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004384void InstructionCodeGeneratorARM64::VisitParameterValue(
4385 HParameterValue* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004386 // Nothing to do, the parameter is already at its location.
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004387}
4388
4389void LocationsBuilderARM64::VisitCurrentMethod(HCurrentMethod* instruction) {
4390 LocationSummary* locations =
4391 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Nicolas Geoffray38207af2015-06-01 15:46:22 +01004392 locations->SetOut(LocationFrom(kArtMethodRegister));
Nicolas Geoffray76b1e172015-05-27 17:18:33 +01004393}
4394
4395void InstructionCodeGeneratorARM64::VisitCurrentMethod(
4396 HCurrentMethod* instruction ATTRIBUTE_UNUSED) {
4397 // Nothing to do, the method is already at its location.
Alexandre Rames5319def2014-10-23 10:03:10 +01004398}
4399
4400void LocationsBuilderARM64::VisitPhi(HPhi* instruction) {
4401 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4402 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
4403 locations->SetInAt(i, Location::Any());
4404 }
4405 locations->SetOut(Location::Any());
4406}
4407
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004408void InstructionCodeGeneratorARM64::VisitPhi(HPhi* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004409 LOG(FATAL) << "Unreachable";
4410}
4411
Serban Constantinescu02164b32014-11-13 14:05:07 +00004412void LocationsBuilderARM64::VisitRem(HRem* rem) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004413 Primitive::Type type = rem->GetResultType();
Alexandre Rames542361f2015-01-29 16:57:31 +00004414 LocationSummary::CallKind call_kind =
4415 Primitive::IsFloatingPointType(type) ? LocationSummary::kCall : LocationSummary::kNoCall;
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004416 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
4417
4418 switch (type) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00004419 case Primitive::kPrimInt:
4420 case Primitive::kPrimLong:
4421 locations->SetInAt(0, Location::RequiresRegister());
Zheng Xuc6667102015-05-15 16:08:45 +08004422 locations->SetInAt(1, Location::RegisterOrConstant(rem->InputAt(1)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00004423 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4424 break;
4425
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004426 case Primitive::kPrimFloat:
4427 case Primitive::kPrimDouble: {
4428 InvokeRuntimeCallingConvention calling_convention;
4429 locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0)));
4430 locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1)));
4431 locations->SetOut(calling_convention.GetReturnLocation(type));
4432
4433 break;
4434 }
4435
Serban Constantinescu02164b32014-11-13 14:05:07 +00004436 default:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004437 LOG(FATAL) << "Unexpected rem type " << type;
Serban Constantinescu02164b32014-11-13 14:05:07 +00004438 }
4439}
4440
4441void InstructionCodeGeneratorARM64::VisitRem(HRem* rem) {
4442 Primitive::Type type = rem->GetResultType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004443
Serban Constantinescu02164b32014-11-13 14:05:07 +00004444 switch (type) {
4445 case Primitive::kPrimInt:
4446 case Primitive::kPrimLong: {
Zheng Xuc6667102015-05-15 16:08:45 +08004447 GenerateDivRemIntegral(rem);
Serban Constantinescu02164b32014-11-13 14:05:07 +00004448 break;
4449 }
4450
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004451 case Primitive::kPrimFloat:
4452 case Primitive::kPrimDouble: {
4453 int32_t entry_offset = (type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pFmodf)
4454 : QUICK_ENTRY_POINT(pFmod);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00004455 codegen_->InvokeRuntime(entry_offset, rem, rem->GetDexPc(), nullptr);
Roland Levillain888d0672015-11-23 18:53:50 +00004456 if (type == Primitive::kPrimFloat) {
4457 CheckEntrypointTypes<kQuickFmodf, float, float, float>();
4458 } else {
4459 CheckEntrypointTypes<kQuickFmod, double, double, double>();
4460 }
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00004461 break;
4462 }
4463
Serban Constantinescu02164b32014-11-13 14:05:07 +00004464 default:
4465 LOG(FATAL) << "Unexpected rem type " << type;
Vladimir Marko351dddf2015-12-11 16:34:46 +00004466 UNREACHABLE();
Serban Constantinescu02164b32014-11-13 14:05:07 +00004467 }
4468}
4469
Calin Juravle27df7582015-04-17 19:12:31 +01004470void LocationsBuilderARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
4471 memory_barrier->SetLocations(nullptr);
4472}
4473
4474void InstructionCodeGeneratorARM64::VisitMemoryBarrier(HMemoryBarrier* memory_barrier) {
Roland Levillain44015862016-01-22 11:47:17 +00004475 codegen_->GenerateMemoryBarrier(memory_barrier->GetBarrierKind());
Calin Juravle27df7582015-04-17 19:12:31 +01004476}
4477
Alexandre Rames5319def2014-10-23 10:03:10 +01004478void LocationsBuilderARM64::VisitReturn(HReturn* instruction) {
4479 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
4480 Primitive::Type return_type = instruction->InputAt(0)->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +00004481 locations->SetInAt(0, ARM64ReturnLocation(return_type));
Alexandre Rames5319def2014-10-23 10:03:10 +01004482}
4483
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004484void InstructionCodeGeneratorARM64::VisitReturn(HReturn* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004485 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01004486}
4487
4488void LocationsBuilderARM64::VisitReturnVoid(HReturnVoid* instruction) {
4489 instruction->SetLocations(nullptr);
4490}
4491
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004492void InstructionCodeGeneratorARM64::VisitReturnVoid(HReturnVoid* instruction ATTRIBUTE_UNUSED) {
Alexandre Rames5319def2014-10-23 10:03:10 +01004493 codegen_->GenerateFrameExit();
Alexandre Rames5319def2014-10-23 10:03:10 +01004494}
4495
Scott Wakeling40a04bf2015-12-11 09:50:36 +00004496void LocationsBuilderARM64::VisitRor(HRor* ror) {
4497 HandleBinaryOp(ror);
4498}
4499
4500void InstructionCodeGeneratorARM64::VisitRor(HRor* ror) {
4501 HandleBinaryOp(ror);
4502}
4503
Serban Constantinescu02164b32014-11-13 14:05:07 +00004504void LocationsBuilderARM64::VisitShl(HShl* shl) {
4505 HandleShift(shl);
4506}
4507
4508void InstructionCodeGeneratorARM64::VisitShl(HShl* shl) {
4509 HandleShift(shl);
4510}
4511
4512void LocationsBuilderARM64::VisitShr(HShr* shr) {
4513 HandleShift(shr);
4514}
4515
4516void InstructionCodeGeneratorARM64::VisitShr(HShr* shr) {
4517 HandleShift(shr);
4518}
4519
Alexandre Rames5319def2014-10-23 10:03:10 +01004520void LocationsBuilderARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00004521 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01004522}
4523
4524void InstructionCodeGeneratorARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00004525 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01004526}
4527
Alexandre Rames67555f72014-11-18 10:55:16 +00004528void LocationsBuilderARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01004529 HandleFieldGet(instruction);
Alexandre Rames67555f72014-11-18 10:55:16 +00004530}
4531
4532void InstructionCodeGeneratorARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01004533 HandleFieldGet(instruction, instruction->GetFieldInfo());
Alexandre Rames67555f72014-11-18 10:55:16 +00004534}
4535
4536void LocationsBuilderARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames09a99962015-04-15 11:47:56 +01004537 HandleFieldSet(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01004538}
4539
Alexandre Rames67555f72014-11-18 10:55:16 +00004540void InstructionCodeGeneratorARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Nicolas Geoffray07276db2015-05-18 14:22:09 +01004541 HandleFieldSet(instruction, instruction->GetFieldInfo(), instruction->GetValueCanBeNull());
Alexandre Rames5319def2014-10-23 10:03:10 +01004542}
4543
Calin Juravlee460d1d2015-09-29 04:52:17 +01004544void LocationsBuilderARM64::VisitUnresolvedInstanceFieldGet(
4545 HUnresolvedInstanceFieldGet* instruction) {
4546 FieldAccessCallingConventionARM64 calling_convention;
4547 codegen_->CreateUnresolvedFieldLocationSummary(
4548 instruction, instruction->GetFieldType(), calling_convention);
4549}
4550
4551void InstructionCodeGeneratorARM64::VisitUnresolvedInstanceFieldGet(
4552 HUnresolvedInstanceFieldGet* instruction) {
4553 FieldAccessCallingConventionARM64 calling_convention;
4554 codegen_->GenerateUnresolvedFieldAccess(instruction,
4555 instruction->GetFieldType(),
4556 instruction->GetFieldIndex(),
4557 instruction->GetDexPc(),
4558 calling_convention);
4559}
4560
4561void LocationsBuilderARM64::VisitUnresolvedInstanceFieldSet(
4562 HUnresolvedInstanceFieldSet* instruction) {
4563 FieldAccessCallingConventionARM64 calling_convention;
4564 codegen_->CreateUnresolvedFieldLocationSummary(
4565 instruction, instruction->GetFieldType(), calling_convention);
4566}
4567
4568void InstructionCodeGeneratorARM64::VisitUnresolvedInstanceFieldSet(
4569 HUnresolvedInstanceFieldSet* instruction) {
4570 FieldAccessCallingConventionARM64 calling_convention;
4571 codegen_->GenerateUnresolvedFieldAccess(instruction,
4572 instruction->GetFieldType(),
4573 instruction->GetFieldIndex(),
4574 instruction->GetDexPc(),
4575 calling_convention);
4576}
4577
4578void LocationsBuilderARM64::VisitUnresolvedStaticFieldGet(
4579 HUnresolvedStaticFieldGet* instruction) {
4580 FieldAccessCallingConventionARM64 calling_convention;
4581 codegen_->CreateUnresolvedFieldLocationSummary(
4582 instruction, instruction->GetFieldType(), calling_convention);
4583}
4584
4585void InstructionCodeGeneratorARM64::VisitUnresolvedStaticFieldGet(
4586 HUnresolvedStaticFieldGet* instruction) {
4587 FieldAccessCallingConventionARM64 calling_convention;
4588 codegen_->GenerateUnresolvedFieldAccess(instruction,
4589 instruction->GetFieldType(),
4590 instruction->GetFieldIndex(),
4591 instruction->GetDexPc(),
4592 calling_convention);
4593}
4594
4595void LocationsBuilderARM64::VisitUnresolvedStaticFieldSet(
4596 HUnresolvedStaticFieldSet* instruction) {
4597 FieldAccessCallingConventionARM64 calling_convention;
4598 codegen_->CreateUnresolvedFieldLocationSummary(
4599 instruction, instruction->GetFieldType(), calling_convention);
4600}
4601
4602void InstructionCodeGeneratorARM64::VisitUnresolvedStaticFieldSet(
4603 HUnresolvedStaticFieldSet* instruction) {
4604 FieldAccessCallingConventionARM64 calling_convention;
4605 codegen_->GenerateUnresolvedFieldAccess(instruction,
4606 instruction->GetFieldType(),
4607 instruction->GetFieldIndex(),
4608 instruction->GetDexPc(),
4609 calling_convention);
4610}
4611
Alexandre Rames5319def2014-10-23 10:03:10 +01004612void LocationsBuilderARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
4613 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
4614}
4615
4616void InstructionCodeGeneratorARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00004617 HBasicBlock* block = instruction->GetBlock();
4618 if (block->GetLoopInformation() != nullptr) {
4619 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
4620 // The back edge will generate the suspend check.
4621 return;
4622 }
4623 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
4624 // The goto will generate the suspend check.
4625 return;
4626 }
4627 GenerateSuspendCheck(instruction, nullptr);
Alexandre Rames5319def2014-10-23 10:03:10 +01004628}
4629
Alexandre Rames67555f72014-11-18 10:55:16 +00004630void LocationsBuilderARM64::VisitThrow(HThrow* instruction) {
4631 LocationSummary* locations =
4632 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
4633 InvokeRuntimeCallingConvention calling_convention;
4634 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
4635}
4636
4637void InstructionCodeGeneratorARM64::VisitThrow(HThrow* instruction) {
4638 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00004639 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08004640 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00004641}
4642
4643void LocationsBuilderARM64::VisitTypeConversion(HTypeConversion* conversion) {
4644 LocationSummary* locations =
4645 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
4646 Primitive::Type input_type = conversion->GetInputType();
4647 Primitive::Type result_type = conversion->GetResultType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00004648 DCHECK_NE(input_type, result_type);
Alexandre Rames67555f72014-11-18 10:55:16 +00004649 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
4650 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
4651 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
4652 }
4653
Alexandre Rames542361f2015-01-29 16:57:31 +00004654 if (Primitive::IsFloatingPointType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00004655 locations->SetInAt(0, Location::RequiresFpuRegister());
4656 } else {
4657 locations->SetInAt(0, Location::RequiresRegister());
4658 }
4659
Alexandre Rames542361f2015-01-29 16:57:31 +00004660 if (Primitive::IsFloatingPointType(result_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00004661 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
4662 } else {
4663 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
4664 }
4665}
4666
4667void InstructionCodeGeneratorARM64::VisitTypeConversion(HTypeConversion* conversion) {
4668 Primitive::Type result_type = conversion->GetResultType();
4669 Primitive::Type input_type = conversion->GetInputType();
4670
4671 DCHECK_NE(input_type, result_type);
4672
Alexandre Rames542361f2015-01-29 16:57:31 +00004673 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00004674 int result_size = Primitive::ComponentSize(result_type);
4675 int input_size = Primitive::ComponentSize(input_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00004676 int min_size = std::min(result_size, input_size);
Serban Constantinescu02164b32014-11-13 14:05:07 +00004677 Register output = OutputRegister(conversion);
4678 Register source = InputRegisterAt(conversion, 0);
Alexandre Rames8626b742015-11-25 16:28:08 +00004679 if (result_type == Primitive::kPrimInt && input_type == Primitive::kPrimLong) {
Alexandre Rames4dff2fd2015-08-20 13:36:35 +01004680 // 'int' values are used directly as W registers, discarding the top
4681 // bits, so we don't need to sign-extend and can just perform a move.
4682 // We do not pass the `kDiscardForSameWReg` argument to force clearing the
4683 // top 32 bits of the target register. We theoretically could leave those
4684 // bits unchanged, but we would have to make sure that no code uses a
4685 // 32bit input value as a 64bit value assuming that the top 32 bits are
4686 // zero.
4687 __ Mov(output.W(), source.W());
Alexandre Rames8626b742015-11-25 16:28:08 +00004688 } else if (result_type == Primitive::kPrimChar ||
4689 (input_type == Primitive::kPrimChar && input_size < result_size)) {
4690 __ Ubfx(output,
4691 output.IsX() ? source.X() : source.W(),
4692 0, Primitive::ComponentSize(Primitive::kPrimChar) * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00004693 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00004694 __ Sbfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00004695 }
Alexandre Rames542361f2015-01-29 16:57:31 +00004696 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00004697 __ Scvtf(OutputFPRegister(conversion), InputRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00004698 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00004699 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
4700 __ Fcvtzs(OutputRegister(conversion), InputFPRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00004701 } else if (Primitive::IsFloatingPointType(result_type) &&
4702 Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00004703 __ Fcvt(OutputFPRegister(conversion), InputFPRegisterAt(conversion, 0));
4704 } else {
4705 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
4706 << " to " << result_type;
Alexandre Rames67555f72014-11-18 10:55:16 +00004707 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00004708}
Alexandre Rames67555f72014-11-18 10:55:16 +00004709
Serban Constantinescu02164b32014-11-13 14:05:07 +00004710void LocationsBuilderARM64::VisitUShr(HUShr* ushr) {
4711 HandleShift(ushr);
4712}
4713
4714void InstructionCodeGeneratorARM64::VisitUShr(HUShr* ushr) {
4715 HandleShift(ushr);
Alexandre Rames67555f72014-11-18 10:55:16 +00004716}
4717
4718void LocationsBuilderARM64::VisitXor(HXor* instruction) {
4719 HandleBinaryOp(instruction);
4720}
4721
4722void InstructionCodeGeneratorARM64::VisitXor(HXor* instruction) {
4723 HandleBinaryOp(instruction);
4724}
4725
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004726void LocationsBuilderARM64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00004727 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00004728 LOG(FATAL) << "Unreachable";
4729}
4730
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01004731void InstructionCodeGeneratorARM64::VisitBoundType(HBoundType* instruction ATTRIBUTE_UNUSED) {
Calin Juravleb1498f62015-02-16 13:13:29 +00004732 // Nothing to do, this should be removed during prepare for register allocator.
Calin Juravleb1498f62015-02-16 13:13:29 +00004733 LOG(FATAL) << "Unreachable";
4734}
4735
Mark Mendellfe57faa2015-09-18 09:26:15 -04004736// Simple implementation of packed switch - generate cascaded compare/jumps.
4737void LocationsBuilderARM64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
4738 LocationSummary* locations =
4739 new (GetGraph()->GetArena()) LocationSummary(switch_instr, LocationSummary::kNoCall);
4740 locations->SetInAt(0, Location::RequiresRegister());
4741}
4742
4743void InstructionCodeGeneratorARM64::VisitPackedSwitch(HPackedSwitch* switch_instr) {
4744 int32_t lower_bound = switch_instr->GetStartValue();
Zheng Xu3927c8b2015-11-18 17:46:25 +08004745 uint32_t num_entries = switch_instr->GetNumEntries();
Mark Mendellfe57faa2015-09-18 09:26:15 -04004746 Register value_reg = InputRegisterAt(switch_instr, 0);
4747 HBasicBlock* default_block = switch_instr->GetDefaultBlock();
4748
Zheng Xu3927c8b2015-11-18 17:46:25 +08004749 // Roughly set 16 as max average assemblies generated per HIR in a graph.
4750 static constexpr int32_t kMaxExpectedSizePerHInstruction = 16 * vixl::kInstructionSize;
4751 // ADR has a limited range(+/-1MB), so we set a threshold for the number of HIRs in the graph to
4752 // make sure we don't emit it if the target may run out of range.
4753 // TODO: Instead of emitting all jump tables at the end of the code, we could keep track of ADR
4754 // ranges and emit the tables only as required.
4755 static constexpr int32_t kJumpTableInstructionThreshold = 1* MB / kMaxExpectedSizePerHInstruction;
Mark Mendellfe57faa2015-09-18 09:26:15 -04004756
Vladimir Markof3e0ee22015-12-17 15:23:13 +00004757 if (num_entries <= kPackedSwitchCompareJumpThreshold ||
Zheng Xu3927c8b2015-11-18 17:46:25 +08004758 // Current instruction id is an upper bound of the number of HIRs in the graph.
4759 GetGraph()->GetCurrentInstructionId() > kJumpTableInstructionThreshold) {
4760 // Create a series of compare/jumps.
Vladimir Markof3e0ee22015-12-17 15:23:13 +00004761 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
4762 Register temp = temps.AcquireW();
4763 __ Subs(temp, value_reg, Operand(lower_bound));
4764
Zheng Xu3927c8b2015-11-18 17:46:25 +08004765 const ArenaVector<HBasicBlock*>& successors = switch_instr->GetBlock()->GetSuccessors();
Vladimir Markof3e0ee22015-12-17 15:23:13 +00004766 // Jump to successors[0] if value == lower_bound.
4767 __ B(eq, codegen_->GetLabelOf(successors[0]));
4768 int32_t last_index = 0;
4769 for (; num_entries - last_index > 2; last_index += 2) {
4770 __ Subs(temp, temp, Operand(2));
4771 // Jump to successors[last_index + 1] if value < case_value[last_index + 2].
4772 __ B(lo, codegen_->GetLabelOf(successors[last_index + 1]));
4773 // Jump to successors[last_index + 2] if value == case_value[last_index + 2].
4774 __ B(eq, codegen_->GetLabelOf(successors[last_index + 2]));
4775 }
4776 if (num_entries - last_index == 2) {
4777 // The last missing case_value.
4778 __ Cmp(temp, Operand(1));
4779 __ B(eq, codegen_->GetLabelOf(successors[last_index + 1]));
Zheng Xu3927c8b2015-11-18 17:46:25 +08004780 }
4781
4782 // And the default for any other value.
4783 if (!codegen_->GoesToNextBlock(switch_instr->GetBlock(), default_block)) {
4784 __ B(codegen_->GetLabelOf(default_block));
4785 }
4786 } else {
Alexandre Ramesc01a6642016-04-15 11:54:06 +01004787 JumpTableARM64* jump_table = codegen_->CreateJumpTable(switch_instr);
Zheng Xu3927c8b2015-11-18 17:46:25 +08004788
4789 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
4790
4791 // Below instructions should use at most one blocked register. Since there are two blocked
4792 // registers, we are free to block one.
4793 Register temp_w = temps.AcquireW();
4794 Register index;
4795 // Remove the bias.
4796 if (lower_bound != 0) {
4797 index = temp_w;
4798 __ Sub(index, value_reg, Operand(lower_bound));
4799 } else {
4800 index = value_reg;
4801 }
4802
4803 // Jump to default block if index is out of the range.
4804 __ Cmp(index, Operand(num_entries));
4805 __ B(hs, codegen_->GetLabelOf(default_block));
4806
4807 // In current VIXL implementation, it won't require any blocked registers to encode the
4808 // immediate value for Adr. So we are free to use both VIXL blocked registers to reduce the
4809 // register pressure.
4810 Register table_base = temps.AcquireX();
4811 // Load jump offset from the table.
4812 __ Adr(table_base, jump_table->GetTableStartLabel());
4813 Register jump_offset = temp_w;
4814 __ Ldr(jump_offset, MemOperand(table_base, index, UXTW, 2));
4815
4816 // Jump to target block by branching to table_base(pc related) + offset.
4817 Register target_address = table_base;
4818 __ Add(target_address, table_base, Operand(jump_offset, SXTW));
4819 __ Br(target_address);
Mark Mendellfe57faa2015-09-18 09:26:15 -04004820 }
4821}
4822
Roland Levillain44015862016-01-22 11:47:17 +00004823void InstructionCodeGeneratorARM64::GenerateReferenceLoadOneRegister(HInstruction* instruction,
4824 Location out,
4825 uint32_t offset,
4826 Location maybe_temp) {
4827 Primitive::Type type = Primitive::kPrimNot;
4828 Register out_reg = RegisterFrom(out, type);
4829 if (kEmitCompilerReadBarrier) {
4830 Register temp_reg = RegisterFrom(maybe_temp, type);
4831 if (kUseBakerReadBarrier) {
4832 // Load with fast path based Baker's read barrier.
4833 // /* HeapReference<Object> */ out = *(out + offset)
4834 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
4835 out,
4836 out_reg,
4837 offset,
4838 temp_reg,
4839 /* needs_null_check */ false,
4840 /* use_load_acquire */ false);
4841 } else {
4842 // Load with slow path based read barrier.
4843 // Save the value of `out` into `maybe_temp` before overwriting it
4844 // in the following move operation, as we will need it for the
4845 // read barrier below.
4846 __ Mov(temp_reg, out_reg);
4847 // /* HeapReference<Object> */ out = *(out + offset)
4848 __ Ldr(out_reg, HeapOperand(out_reg, offset));
4849 codegen_->GenerateReadBarrierSlow(instruction, out, out, maybe_temp, offset);
4850 }
4851 } else {
4852 // Plain load with no read barrier.
4853 // /* HeapReference<Object> */ out = *(out + offset)
4854 __ Ldr(out_reg, HeapOperand(out_reg, offset));
4855 GetAssembler()->MaybeUnpoisonHeapReference(out_reg);
4856 }
4857}
4858
4859void InstructionCodeGeneratorARM64::GenerateReferenceLoadTwoRegisters(HInstruction* instruction,
4860 Location out,
4861 Location obj,
4862 uint32_t offset,
4863 Location maybe_temp) {
4864 Primitive::Type type = Primitive::kPrimNot;
4865 Register out_reg = RegisterFrom(out, type);
4866 Register obj_reg = RegisterFrom(obj, type);
4867 if (kEmitCompilerReadBarrier) {
4868 if (kUseBakerReadBarrier) {
4869 // Load with fast path based Baker's read barrier.
4870 Register temp_reg = RegisterFrom(maybe_temp, type);
4871 // /* HeapReference<Object> */ out = *(obj + offset)
4872 codegen_->GenerateFieldLoadWithBakerReadBarrier(instruction,
4873 out,
4874 obj_reg,
4875 offset,
4876 temp_reg,
4877 /* needs_null_check */ false,
4878 /* use_load_acquire */ false);
4879 } else {
4880 // Load with slow path based read barrier.
4881 // /* HeapReference<Object> */ out = *(obj + offset)
4882 __ Ldr(out_reg, HeapOperand(obj_reg, offset));
4883 codegen_->GenerateReadBarrierSlow(instruction, out, out, obj, offset);
4884 }
4885 } else {
4886 // Plain load with no read barrier.
4887 // /* HeapReference<Object> */ out = *(obj + offset)
4888 __ Ldr(out_reg, HeapOperand(obj_reg, offset));
4889 GetAssembler()->MaybeUnpoisonHeapReference(out_reg);
4890 }
4891}
4892
4893void InstructionCodeGeneratorARM64::GenerateGcRootFieldLoad(HInstruction* instruction,
4894 Location root,
4895 vixl::Register obj,
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004896 uint32_t offset,
4897 vixl::Label* fixup_label) {
Roland Levillain44015862016-01-22 11:47:17 +00004898 Register root_reg = RegisterFrom(root, Primitive::kPrimNot);
4899 if (kEmitCompilerReadBarrier) {
4900 if (kUseBakerReadBarrier) {
4901 // Fast path implementation of art::ReadBarrier::BarrierForRoot when
4902 // Baker's read barrier are used:
4903 //
4904 // root = obj.field;
4905 // if (Thread::Current()->GetIsGcMarking()) {
4906 // root = ReadBarrier::Mark(root)
4907 // }
4908
4909 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004910 if (fixup_label == nullptr) {
4911 __ Ldr(root_reg, MemOperand(obj, offset));
4912 } else {
4913 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
4914 __ Bind(fixup_label);
4915 __ ldr(root_reg, MemOperand(obj, offset));
4916 }
Roland Levillain44015862016-01-22 11:47:17 +00004917 static_assert(
4918 sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(GcRoot<mirror::Object>),
4919 "art::mirror::CompressedReference<mirror::Object> and art::GcRoot<mirror::Object> "
4920 "have different sizes.");
4921 static_assert(sizeof(mirror::CompressedReference<mirror::Object>) == sizeof(int32_t),
4922 "art::mirror::CompressedReference<mirror::Object> and int32_t "
4923 "have different sizes.");
4924
4925 // Slow path used to mark the GC root `root`.
4926 SlowPathCodeARM64* slow_path =
4927 new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathARM64(instruction, root, root);
4928 codegen_->AddSlowPath(slow_path);
4929
4930 MacroAssembler* masm = GetVIXLAssembler();
4931 UseScratchRegisterScope temps(masm);
4932 Register temp = temps.AcquireW();
4933 // temp = Thread::Current()->GetIsGcMarking()
4934 __ Ldr(temp, MemOperand(tr, Thread::IsGcMarkingOffset<kArm64WordSize>().Int32Value()));
4935 __ Cbnz(temp, slow_path->GetEntryLabel());
4936 __ Bind(slow_path->GetExitLabel());
4937 } else {
4938 // GC root loaded through a slow path for read barriers other
4939 // than Baker's.
4940 // /* GcRoot<mirror::Object>* */ root = obj + offset
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004941 if (fixup_label == nullptr) {
4942 __ Add(root_reg.X(), obj.X(), offset);
4943 } else {
4944 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
4945 __ Bind(fixup_label);
4946 __ add(root_reg.X(), obj.X(), offset);
4947 }
Roland Levillain44015862016-01-22 11:47:17 +00004948 // /* mirror::Object* */ root = root->Read()
4949 codegen_->GenerateReadBarrierForRootSlow(instruction, root, root);
4950 }
4951 } else {
4952 // Plain GC root load with no read barrier.
4953 // /* GcRoot<mirror::Object> */ root = *(obj + offset)
Vladimir Markocac5a7e2016-02-22 10:39:50 +00004954 if (fixup_label == nullptr) {
4955 __ Ldr(root_reg, MemOperand(obj, offset));
4956 } else {
4957 vixl::SingleEmissionCheckScope guard(GetVIXLAssembler());
4958 __ Bind(fixup_label);
4959 __ ldr(root_reg, MemOperand(obj, offset));
4960 }
Roland Levillain44015862016-01-22 11:47:17 +00004961 // Note that GC roots are not affected by heap poisoning, thus we
4962 // do not have to unpoison `root_reg` here.
4963 }
4964}
4965
4966void CodeGeneratorARM64::GenerateFieldLoadWithBakerReadBarrier(HInstruction* instruction,
4967 Location ref,
4968 vixl::Register obj,
4969 uint32_t offset,
4970 Register temp,
4971 bool needs_null_check,
4972 bool use_load_acquire) {
4973 DCHECK(kEmitCompilerReadBarrier);
4974 DCHECK(kUseBakerReadBarrier);
4975
4976 // /* HeapReference<Object> */ ref = *(obj + offset)
4977 Location no_index = Location::NoLocation();
4978 GenerateReferenceLoadWithBakerReadBarrier(
4979 instruction, ref, obj, offset, no_index, temp, needs_null_check, use_load_acquire);
4980}
4981
4982void CodeGeneratorARM64::GenerateArrayLoadWithBakerReadBarrier(HInstruction* instruction,
4983 Location ref,
4984 vixl::Register obj,
4985 uint32_t data_offset,
4986 Location index,
4987 Register temp,
4988 bool needs_null_check) {
4989 DCHECK(kEmitCompilerReadBarrier);
4990 DCHECK(kUseBakerReadBarrier);
4991
4992 // Array cells are never volatile variables, therefore array loads
4993 // never use Load-Acquire instructions on ARM64.
4994 const bool use_load_acquire = false;
4995
4996 // /* HeapReference<Object> */ ref =
4997 // *(obj + data_offset + index * sizeof(HeapReference<Object>))
4998 GenerateReferenceLoadWithBakerReadBarrier(
4999 instruction, ref, obj, data_offset, index, temp, needs_null_check, use_load_acquire);
5000}
5001
5002void CodeGeneratorARM64::GenerateReferenceLoadWithBakerReadBarrier(HInstruction* instruction,
5003 Location ref,
5004 vixl::Register obj,
5005 uint32_t offset,
5006 Location index,
5007 Register temp,
5008 bool needs_null_check,
5009 bool use_load_acquire) {
5010 DCHECK(kEmitCompilerReadBarrier);
5011 DCHECK(kUseBakerReadBarrier);
5012 // If `index` is a valid location, then we are emitting an array
5013 // load, so we shouldn't be using a Load Acquire instruction.
5014 // In other words: `index.IsValid()` => `!use_load_acquire`.
5015 DCHECK(!index.IsValid() || !use_load_acquire);
5016
5017 MacroAssembler* masm = GetVIXLAssembler();
5018 UseScratchRegisterScope temps(masm);
5019
5020 // In slow path based read barriers, the read barrier call is
5021 // inserted after the original load. However, in fast path based
5022 // Baker's read barriers, we need to perform the load of
5023 // mirror::Object::monitor_ *before* the original reference load.
5024 // This load-load ordering is required by the read barrier.
5025 // The fast path/slow path (for Baker's algorithm) should look like:
5026 //
5027 // uint32_t rb_state = Lockword(obj->monitor_).ReadBarrierState();
5028 // lfence; // Load fence or artificial data dependency to prevent load-load reordering
5029 // HeapReference<Object> ref = *src; // Original reference load.
5030 // bool is_gray = (rb_state == ReadBarrier::gray_ptr_);
5031 // if (is_gray) {
5032 // ref = ReadBarrier::Mark(ref); // Performed by runtime entrypoint slow path.
5033 // }
5034 //
5035 // Note: the original implementation in ReadBarrier::Barrier is
5036 // slightly more complex as it performs additional checks that we do
5037 // not do here for performance reasons.
5038
5039 Primitive::Type type = Primitive::kPrimNot;
5040 Register ref_reg = RegisterFrom(ref, type);
5041 DCHECK(obj.IsW());
5042 uint32_t monitor_offset = mirror::Object::MonitorOffset().Int32Value();
5043
5044 // /* int32_t */ monitor = obj->monitor_
5045 __ Ldr(temp, HeapOperand(obj, monitor_offset));
5046 if (needs_null_check) {
5047 MaybeRecordImplicitNullCheck(instruction);
5048 }
5049 // /* LockWord */ lock_word = LockWord(monitor)
5050 static_assert(sizeof(LockWord) == sizeof(int32_t),
5051 "art::LockWord and int32_t have different sizes.");
5052 // /* uint32_t */ rb_state = lock_word.ReadBarrierState()
5053 __ Lsr(temp, temp, LockWord::kReadBarrierStateShift);
5054 __ And(temp, temp, Operand(LockWord::kReadBarrierStateMask));
5055 static_assert(
5056 LockWord::kReadBarrierStateMask == ReadBarrier::rb_ptr_mask_,
5057 "art::LockWord::kReadBarrierStateMask is not equal to art::ReadBarrier::rb_ptr_mask_.");
5058
5059 // Introduce a dependency on the high bits of rb_state, which shall
5060 // be all zeroes, to prevent load-load reordering, and without using
5061 // a memory barrier (which would be more expensive).
5062 // temp2 = rb_state & ~LockWord::kReadBarrierStateMask = 0
5063 Register temp2 = temps.AcquireW();
5064 __ Bic(temp2, temp, Operand(LockWord::kReadBarrierStateMask));
5065 // obj is unchanged by this operation, but its value now depends on
5066 // temp2, which depends on temp.
5067 __ Add(obj, obj, Operand(temp2));
5068 temps.Release(temp2);
5069
5070 // The actual reference load.
5071 if (index.IsValid()) {
5072 static_assert(
5073 sizeof(mirror::HeapReference<mirror::Object>) == sizeof(int32_t),
5074 "art::mirror::HeapReference<art::mirror::Object> and int32_t have different sizes.");
Roland Levillain44015862016-01-22 11:47:17 +00005075 // /* HeapReference<Object> */ ref =
5076 // *(obj + offset + index * sizeof(HeapReference<Object>))
Roland Levillainca0bf032016-02-09 12:49:18 +00005077 const size_t shift_amount = Primitive::ComponentSizeShift(type);
Roland Levillain44015862016-01-22 11:47:17 +00005078 if (index.IsConstant()) {
Roland Levillainca0bf032016-02-09 12:49:18 +00005079 uint32_t computed_offset = offset + (Int64ConstantFrom(index) << shift_amount);
5080 Load(type, ref_reg, HeapOperand(obj, computed_offset));
Roland Levillain44015862016-01-22 11:47:17 +00005081 } else {
Roland Levillainca0bf032016-02-09 12:49:18 +00005082 temp2 = temps.AcquireW();
Roland Levillain44015862016-01-22 11:47:17 +00005083 __ Add(temp2, obj, offset);
Roland Levillainca0bf032016-02-09 12:49:18 +00005084 Load(type, ref_reg, HeapOperand(temp2, XRegisterFrom(index), LSL, shift_amount));
5085 temps.Release(temp2);
Roland Levillain44015862016-01-22 11:47:17 +00005086 }
Roland Levillain44015862016-01-22 11:47:17 +00005087 } else {
5088 // /* HeapReference<Object> */ ref = *(obj + offset)
5089 MemOperand field = HeapOperand(obj, offset);
5090 if (use_load_acquire) {
5091 LoadAcquire(instruction, ref_reg, field, /* needs_null_check */ false);
5092 } else {
5093 Load(type, ref_reg, field);
5094 }
5095 }
5096
5097 // Object* ref = ref_addr->AsMirrorPtr()
5098 GetAssembler()->MaybeUnpoisonHeapReference(ref_reg);
5099
5100 // Slow path used to mark the object `ref` when it is gray.
5101 SlowPathCodeARM64* slow_path =
5102 new (GetGraph()->GetArena()) ReadBarrierMarkSlowPathARM64(instruction, ref, ref);
5103 AddSlowPath(slow_path);
5104
5105 // if (rb_state == ReadBarrier::gray_ptr_)
5106 // ref = ReadBarrier::Mark(ref);
5107 __ Cmp(temp, ReadBarrier::gray_ptr_);
5108 __ B(eq, slow_path->GetEntryLabel());
5109 __ Bind(slow_path->GetExitLabel());
5110}
5111
5112void CodeGeneratorARM64::GenerateReadBarrierSlow(HInstruction* instruction,
5113 Location out,
5114 Location ref,
5115 Location obj,
5116 uint32_t offset,
5117 Location index) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005118 DCHECK(kEmitCompilerReadBarrier);
5119
Roland Levillain44015862016-01-22 11:47:17 +00005120 // Insert a slow path based read barrier *after* the reference load.
5121 //
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005122 // If heap poisoning is enabled, the unpoisoning of the loaded
5123 // reference will be carried out by the runtime within the slow
5124 // path.
5125 //
5126 // Note that `ref` currently does not get unpoisoned (when heap
5127 // poisoning is enabled), which is alright as the `ref` argument is
5128 // not used by the artReadBarrierSlow entry point.
5129 //
5130 // TODO: Unpoison `ref` when it is used by artReadBarrierSlow.
5131 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena())
5132 ReadBarrierForHeapReferenceSlowPathARM64(instruction, out, ref, obj, offset, index);
5133 AddSlowPath(slow_path);
5134
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005135 __ B(slow_path->GetEntryLabel());
5136 __ Bind(slow_path->GetExitLabel());
5137}
5138
Roland Levillain44015862016-01-22 11:47:17 +00005139void CodeGeneratorARM64::MaybeGenerateReadBarrierSlow(HInstruction* instruction,
5140 Location out,
5141 Location ref,
5142 Location obj,
5143 uint32_t offset,
5144 Location index) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005145 if (kEmitCompilerReadBarrier) {
Roland Levillain44015862016-01-22 11:47:17 +00005146 // Baker's read barriers shall be handled by the fast path
5147 // (CodeGeneratorARM64::GenerateReferenceLoadWithBakerReadBarrier).
5148 DCHECK(!kUseBakerReadBarrier);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005149 // If heap poisoning is enabled, unpoisoning will be taken care of
5150 // by the runtime within the slow path.
Roland Levillain44015862016-01-22 11:47:17 +00005151 GenerateReadBarrierSlow(instruction, out, ref, obj, offset, index);
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005152 } else if (kPoisonHeapReferences) {
5153 GetAssembler()->UnpoisonHeapReference(WRegisterFrom(out));
5154 }
5155}
5156
Roland Levillain44015862016-01-22 11:47:17 +00005157void CodeGeneratorARM64::GenerateReadBarrierForRootSlow(HInstruction* instruction,
5158 Location out,
5159 Location root) {
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005160 DCHECK(kEmitCompilerReadBarrier);
5161
Roland Levillain44015862016-01-22 11:47:17 +00005162 // Insert a slow path based read barrier *after* the GC root load.
5163 //
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005164 // Note that GC roots are not affected by heap poisoning, so we do
5165 // not need to do anything special for this here.
5166 SlowPathCodeARM64* slow_path =
5167 new (GetGraph()->GetArena()) ReadBarrierForRootSlowPathARM64(instruction, out, root);
5168 AddSlowPath(slow_path);
5169
Roland Levillain22ccc3a2015-11-24 13:10:05 +00005170 __ B(slow_path->GetEntryLabel());
5171 __ Bind(slow_path->GetExitLabel());
5172}
5173
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00005174void LocationsBuilderARM64::VisitClassTableGet(HClassTableGet* instruction) {
5175 LocationSummary* locations =
5176 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
5177 locations->SetInAt(0, Location::RequiresRegister());
5178 locations->SetOut(Location::RequiresRegister());
5179}
5180
5181void InstructionCodeGeneratorARM64::VisitClassTableGet(HClassTableGet* instruction) {
5182 LocationSummary* locations = instruction->GetLocations();
5183 uint32_t method_offset = 0;
Vladimir Markoa1de9182016-02-25 11:37:38 +00005184 if (instruction->GetTableKind() == HClassTableGet::TableKind::kVTable) {
Nicolas Geoffraya42363f2015-12-17 14:57:09 +00005185 method_offset = mirror::Class::EmbeddedVTableEntryOffset(
5186 instruction->GetIndex(), kArm64PointerSize).SizeValue();
5187 } else {
5188 method_offset = mirror::Class::EmbeddedImTableEntryOffset(
5189 instruction->GetIndex() % mirror::Class::kImtSize, kArm64PointerSize).Uint32Value();
5190 }
5191 __ Ldr(XRegisterFrom(locations->Out()),
5192 MemOperand(XRegisterFrom(locations->InAt(0)), method_offset));
5193}
5194
5195
5196
Alexandre Rames67555f72014-11-18 10:55:16 +00005197#undef __
5198#undef QUICK_ENTRY_POINT
5199
Alexandre Rames5319def2014-10-23 10:03:10 +01005200} // namespace arm64
5201} // namespace art