blob: 6da1e6177ced7bdae02de3dd61f7f6267a346faf [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
Andreas Gampe878d58c2015-01-15 23:24:00 -080019#include "common_arm64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010020#include "entrypoints/quick/quick_entrypoints.h"
Andreas Gampe1cc7dba2014-12-17 18:43:01 -080021#include "entrypoints/quick/quick_entrypoints_enum.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010022#include "gc/accounting/card_table.h"
Andreas Gampe878d58c2015-01-15 23:24:00 -080023#include "intrinsics.h"
24#include "intrinsics_arm64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010025#include "mirror/array-inl.h"
26#include "mirror/art_method.h"
27#include "mirror/class.h"
Calin Juravlecd6dffe2015-01-08 17:35:35 +000028#include "offsets.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010029#include "thread.h"
30#include "utils/arm64/assembler_arm64.h"
31#include "utils/assembler.h"
32#include "utils/stack_checks.h"
33
34
35using namespace vixl; // NOLINT(build/namespaces)
36
37#ifdef __
38#error "ARM64 Codegen VIXL macro-assembler macro already defined."
39#endif
40
Alexandre Rames5319def2014-10-23 10:03:10 +010041namespace art {
42
43namespace arm64 {
44
Andreas Gampe878d58c2015-01-15 23:24:00 -080045using helpers::CPURegisterFrom;
46using helpers::DRegisterFrom;
47using helpers::FPRegisterFrom;
48using helpers::HeapOperand;
49using helpers::HeapOperandFrom;
50using helpers::InputCPURegisterAt;
51using helpers::InputFPRegisterAt;
52using helpers::InputRegisterAt;
53using helpers::InputOperandAt;
54using helpers::Int64ConstantFrom;
Andreas Gampe878d58c2015-01-15 23:24:00 -080055using helpers::LocationFrom;
56using helpers::OperandFromMemOperand;
57using helpers::OutputCPURegister;
58using helpers::OutputFPRegister;
59using helpers::OutputRegister;
60using helpers::RegisterFrom;
61using helpers::StackOperandFrom;
62using helpers::VIXLRegCodeFromART;
63using helpers::WRegisterFrom;
64using helpers::XRegisterFrom;
65
Alexandre Rames5319def2014-10-23 10:03:10 +010066static constexpr size_t kHeapRefSize = sizeof(mirror::HeapReference<mirror::Object>);
67static constexpr int kCurrentMethodStackOffset = 0;
68
Alexandre Rames5319def2014-10-23 10:03:10 +010069inline Condition ARM64Condition(IfCondition cond) {
70 switch (cond) {
71 case kCondEQ: return eq;
72 case kCondNE: return ne;
73 case kCondLT: return lt;
74 case kCondLE: return le;
75 case kCondGT: return gt;
76 case kCondGE: return ge;
77 default:
78 LOG(FATAL) << "Unknown if condition";
79 }
80 return nv; // Unreachable.
81}
82
Alexandre Ramesa89086e2014-11-07 17:13:25 +000083Location ARM64ReturnLocation(Primitive::Type return_type) {
84 DCHECK_NE(return_type, Primitive::kPrimVoid);
85 // Note that in practice, `LocationFrom(x0)` and `LocationFrom(w0)` create the
86 // same Location object, and so do `LocationFrom(d0)` and `LocationFrom(s0)`,
87 // but we use the exact registers for clarity.
88 if (return_type == Primitive::kPrimFloat) {
89 return LocationFrom(s0);
90 } else if (return_type == Primitive::kPrimDouble) {
91 return LocationFrom(d0);
92 } else if (return_type == Primitive::kPrimLong) {
93 return LocationFrom(x0);
94 } else {
95 return LocationFrom(w0);
96 }
97}
98
Alexandre Rames5319def2014-10-23 10:03:10 +010099static const Register kRuntimeParameterCoreRegisters[] = { x0, x1, x2, x3, x4, x5, x6, x7 };
100static constexpr size_t kRuntimeParameterCoreRegistersLength =
101 arraysize(kRuntimeParameterCoreRegisters);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000102static const FPRegister kRuntimeParameterFpuRegisters[] = { d0, d1, d2, d3, d4, d5, d6, d7 };
103static constexpr size_t kRuntimeParameterFpuRegistersLength =
104 arraysize(kRuntimeParameterCoreRegisters);
Alexandre Rames5319def2014-10-23 10:03:10 +0100105
106class InvokeRuntimeCallingConvention : public CallingConvention<Register, FPRegister> {
107 public:
108 static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
109
110 InvokeRuntimeCallingConvention()
111 : CallingConvention(kRuntimeParameterCoreRegisters,
112 kRuntimeParameterCoreRegistersLength,
113 kRuntimeParameterFpuRegisters,
114 kRuntimeParameterFpuRegistersLength) {}
115
116 Location GetReturnLocation(Primitive::Type return_type);
117
118 private:
119 DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention);
120};
121
122Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000123 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100124}
125
Alexandre Rames67555f72014-11-18 10:55:16 +0000126#define __ down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler()->
127#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArm64WordSize, x).Int32Value()
Alexandre Rames5319def2014-10-23 10:03:10 +0100128
Alexandre Rames5319def2014-10-23 10:03:10 +0100129class BoundsCheckSlowPathARM64 : public SlowPathCodeARM64 {
130 public:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000131 BoundsCheckSlowPathARM64(HBoundsCheck* instruction,
132 Location index_location,
133 Location length_location)
134 : instruction_(instruction),
135 index_location_(index_location),
136 length_location_(length_location) {}
137
Alexandre Rames5319def2014-10-23 10:03:10 +0100138
Alexandre Rames67555f72014-11-18 10:55:16 +0000139 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000140 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100141 __ Bind(GetEntryLabel());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000142 // We're moving two locations to locations that could overlap, so we need a parallel
143 // move resolver.
144 InvokeRuntimeCallingConvention calling_convention;
145 codegen->EmitParallelMoves(
146 index_location_, LocationFrom(calling_convention.GetRegisterAt(0)),
147 length_location_, LocationFrom(calling_convention.GetRegisterAt(1)));
148 arm64_codegen->InvokeRuntime(
149 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800150 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100151 }
152
153 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000154 HBoundsCheck* const instruction_;
155 const Location index_location_;
156 const Location length_location_;
157
Alexandre Rames5319def2014-10-23 10:03:10 +0100158 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM64);
159};
160
Alexandre Rames67555f72014-11-18 10:55:16 +0000161class DivZeroCheckSlowPathARM64 : public SlowPathCodeARM64 {
162 public:
163 explicit DivZeroCheckSlowPathARM64(HDivZeroCheck* instruction) : instruction_(instruction) {}
164
165 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
166 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
167 __ Bind(GetEntryLabel());
168 arm64_codegen->InvokeRuntime(
169 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800170 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000171 }
172
173 private:
174 HDivZeroCheck* const instruction_;
175 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM64);
176};
177
178class LoadClassSlowPathARM64 : public SlowPathCodeARM64 {
179 public:
180 LoadClassSlowPathARM64(HLoadClass* cls,
181 HInstruction* at,
182 uint32_t dex_pc,
183 bool do_clinit)
184 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
185 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
186 }
187
188 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
189 LocationSummary* locations = at_->GetLocations();
190 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
191
192 __ Bind(GetEntryLabel());
193 codegen->SaveLiveRegisters(locations);
194
195 InvokeRuntimeCallingConvention calling_convention;
196 __ Mov(calling_convention.GetRegisterAt(0).W(), cls_->GetTypeIndex());
197 arm64_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1).W());
198 int32_t entry_point_offset = do_clinit_ ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
199 : QUICK_ENTRY_POINT(pInitializeType);
200 arm64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800201 if (do_clinit_) {
202 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t, mirror::ArtMethod*>();
203 } else {
204 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t, mirror::ArtMethod*>();
205 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000206
207 // Move the class to the desired location.
208 Location out = locations->Out();
209 if (out.IsValid()) {
210 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
211 Primitive::Type type = at_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000212 arm64_codegen->MoveLocation(out, calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000213 }
214
215 codegen->RestoreLiveRegisters(locations);
216 __ B(GetExitLabel());
217 }
218
219 private:
220 // The class this slow path will load.
221 HLoadClass* const cls_;
222
223 // The instruction where this slow path is happening.
224 // (Might be the load class or an initialization check).
225 HInstruction* const at_;
226
227 // The dex PC of `at_`.
228 const uint32_t dex_pc_;
229
230 // Whether to initialize the class.
231 const bool do_clinit_;
232
233 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM64);
234};
235
236class LoadStringSlowPathARM64 : public SlowPathCodeARM64 {
237 public:
238 explicit LoadStringSlowPathARM64(HLoadString* instruction) : instruction_(instruction) {}
239
240 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
241 LocationSummary* locations = instruction_->GetLocations();
242 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
243 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
244
245 __ Bind(GetEntryLabel());
246 codegen->SaveLiveRegisters(locations);
247
248 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800249 arm64_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1).W());
250 __ Mov(calling_convention.GetRegisterAt(0).W(), instruction_->GetStringIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000251 arm64_codegen->InvokeRuntime(
252 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800253 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t, mirror::ArtMethod*>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000254 Primitive::Type type = instruction_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000255 arm64_codegen->MoveLocation(locations->Out(), calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000256
257 codegen->RestoreLiveRegisters(locations);
258 __ B(GetExitLabel());
259 }
260
261 private:
262 HLoadString* const instruction_;
263
264 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM64);
265};
266
Alexandre Rames5319def2014-10-23 10:03:10 +0100267class NullCheckSlowPathARM64 : public SlowPathCodeARM64 {
268 public:
269 explicit NullCheckSlowPathARM64(HNullCheck* instr) : instruction_(instr) {}
270
Alexandre Rames67555f72014-11-18 10:55:16 +0000271 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
272 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100273 __ Bind(GetEntryLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +0000274 arm64_codegen->InvokeRuntime(
275 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800276 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100277 }
278
279 private:
280 HNullCheck* const instruction_;
281
282 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM64);
283};
284
285class SuspendCheckSlowPathARM64 : public SlowPathCodeARM64 {
286 public:
287 explicit SuspendCheckSlowPathARM64(HSuspendCheck* instruction,
288 HBasicBlock* successor)
289 : instruction_(instruction), successor_(successor) {}
290
Alexandre Rames67555f72014-11-18 10:55:16 +0000291 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
292 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100293 __ Bind(GetEntryLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +0000294 codegen->SaveLiveRegisters(instruction_->GetLocations());
295 arm64_codegen->InvokeRuntime(
296 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800297 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000298 codegen->RestoreLiveRegisters(instruction_->GetLocations());
299 if (successor_ == nullptr) {
300 __ B(GetReturnLabel());
301 } else {
302 __ B(arm64_codegen->GetLabelOf(successor_));
303 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100304 }
305
306 vixl::Label* GetReturnLabel() {
307 DCHECK(successor_ == nullptr);
308 return &return_label_;
309 }
310
Alexandre Rames5319def2014-10-23 10:03:10 +0100311 private:
312 HSuspendCheck* const instruction_;
313 // If not null, the block to branch to after the suspend check.
314 HBasicBlock* const successor_;
315
316 // If `successor_` is null, the label to branch to after the suspend check.
317 vixl::Label return_label_;
318
319 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM64);
320};
321
Alexandre Rames67555f72014-11-18 10:55:16 +0000322class TypeCheckSlowPathARM64 : public SlowPathCodeARM64 {
323 public:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000324 TypeCheckSlowPathARM64(HInstruction* instruction,
325 Location class_to_check,
326 Location object_class,
327 uint32_t dex_pc)
328 : instruction_(instruction),
329 class_to_check_(class_to_check),
330 object_class_(object_class),
331 dex_pc_(dex_pc) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000332
333 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000334 LocationSummary* locations = instruction_->GetLocations();
335 DCHECK(instruction_->IsCheckCast()
336 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
337 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
338
Alexandre Rames67555f72014-11-18 10:55:16 +0000339 __ Bind(GetEntryLabel());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000340 codegen->SaveLiveRegisters(locations);
341
342 // We're moving two locations to locations that could overlap, so we need a parallel
343 // move resolver.
344 InvokeRuntimeCallingConvention calling_convention;
345 codegen->EmitParallelMoves(
346 class_to_check_, LocationFrom(calling_convention.GetRegisterAt(0)),
347 object_class_, LocationFrom(calling_convention.GetRegisterAt(1)));
348
349 if (instruction_->IsInstanceOf()) {
350 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_);
351 Primitive::Type ret_type = instruction_->GetType();
352 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
353 arm64_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800354 CheckEntrypointTypes<kQuickInstanceofNonTrivial, uint32_t,
355 const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000356 } else {
357 DCHECK(instruction_->IsCheckCast());
358 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800359 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000360 }
361
362 codegen->RestoreLiveRegisters(locations);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000363 __ B(GetExitLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +0000364 }
365
366 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000367 HInstruction* const instruction_;
368 const Location class_to_check_;
369 const Location object_class_;
370 uint32_t dex_pc_;
371
Alexandre Rames67555f72014-11-18 10:55:16 +0000372 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM64);
373};
374
Alexandre Rames5319def2014-10-23 10:03:10 +0100375#undef __
376
377Location InvokeDexCallingConventionVisitor::GetNextLocation(Primitive::Type type) {
378 Location next_location;
379 if (type == Primitive::kPrimVoid) {
380 LOG(FATAL) << "Unreachable type " << type;
381 }
382
Alexandre Rames542361f2015-01-29 16:57:31 +0000383 if (Primitive::IsFloatingPointType(type) &&
384 (fp_index_ < calling_convention.GetNumberOfFpuRegisters())) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000385 next_location = LocationFrom(calling_convention.GetFpuRegisterAt(fp_index_++));
Alexandre Rames542361f2015-01-29 16:57:31 +0000386 } else if (!Primitive::IsFloatingPointType(type) &&
387 (gp_index_ < calling_convention.GetNumberOfRegisters())) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000388 next_location = LocationFrom(calling_convention.GetRegisterAt(gp_index_++));
389 } else {
390 size_t stack_offset = calling_convention.GetStackOffsetOf(stack_index_);
Alexandre Rames542361f2015-01-29 16:57:31 +0000391 next_location = Primitive::Is64BitType(type) ? Location::DoubleStackSlot(stack_offset)
392 : Location::StackSlot(stack_offset);
Alexandre Rames5319def2014-10-23 10:03:10 +0100393 }
394
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000395 // Space on the stack is reserved for all arguments.
Alexandre Rames542361f2015-01-29 16:57:31 +0000396 stack_index_ += Primitive::Is64BitType(type) ? 2 : 1;
Alexandre Rames5319def2014-10-23 10:03:10 +0100397 return next_location;
398}
399
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000400CodeGeneratorARM64::CodeGeneratorARM64(HGraph* graph, const CompilerOptions& compiler_options)
Alexandre Rames5319def2014-10-23 10:03:10 +0100401 : CodeGenerator(graph,
402 kNumberOfAllocatableRegisters,
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000403 kNumberOfAllocatableFPRegisters,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000404 kNumberOfAllocatableRegisterPairs,
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000405 callee_saved_core_registers.list(),
406 callee_saved_fp_registers.list(),
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000407 compiler_options),
Alexandre Rames5319def2014-10-23 10:03:10 +0100408 block_labels_(nullptr),
409 location_builder_(graph, this),
Alexandre Rames3e69f162014-12-10 10:36:50 +0000410 instruction_visitor_(graph, this),
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000411 move_resolver_(graph->GetArena(), this) {
412 // Save the link register (containing the return address) to mimic Quick.
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000413 AddAllocatedRegister(LocationFrom(lr));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000414}
Alexandre Rames5319def2014-10-23 10:03:10 +0100415
Alexandre Rames67555f72014-11-18 10:55:16 +0000416#undef __
417#define __ GetVIXLAssembler()->
Alexandre Rames5319def2014-10-23 10:03:10 +0100418
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000419void CodeGeneratorARM64::Finalize(CodeAllocator* allocator) {
420 // Ensure we emit the literal pool.
421 __ FinalizeCode();
422 CodeGenerator::Finalize(allocator);
423}
424
Alexandre Rames3e69f162014-12-10 10:36:50 +0000425void ParallelMoveResolverARM64::EmitMove(size_t index) {
426 MoveOperands* move = moves_.Get(index);
427 codegen_->MoveLocation(move->GetDestination(), move->GetSource());
428}
429
430void ParallelMoveResolverARM64::EmitSwap(size_t index) {
431 MoveOperands* move = moves_.Get(index);
432 codegen_->SwapLocations(move->GetDestination(), move->GetSource());
433}
434
435void ParallelMoveResolverARM64::RestoreScratch(int reg) {
436 __ Pop(Register(VIXLRegCodeFromART(reg), kXRegSize));
437}
438
439void ParallelMoveResolverARM64::SpillScratch(int reg) {
440 __ Push(Register(VIXLRegCodeFromART(reg), kXRegSize));
441}
442
Alexandre Rames5319def2014-10-23 10:03:10 +0100443void CodeGeneratorARM64::GenerateFrameEntry() {
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000444 __ Bind(&frame_entry_label_);
445
Serban Constantinescu02164b32014-11-13 14:05:07 +0000446 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod();
447 if (do_overflow_check) {
448 UseScratchRegisterScope temps(GetVIXLAssembler());
449 Register temp = temps.AcquireX();
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000450 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000451 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(kArm64)));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000452 __ Ldr(wzr, MemOperand(temp, 0));
453 RecordPcInfo(nullptr, 0);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000454 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100455
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000456 if (!HasEmptyFrame()) {
457 int frame_size = GetFrameSize();
458 // Stack layout:
459 // sp[frame_size - 8] : lr.
460 // ... : other preserved core registers.
461 // ... : other preserved fp registers.
462 // ... : reserved frame space.
463 // sp[0] : current method.
464 __ Str(kArtMethodRegister, MemOperand(sp, -frame_size, PreIndex));
465 __ PokeCPURegList(GetFramePreservedCoreRegisters(), frame_size - GetCoreSpillSize());
466 __ PokeCPURegList(GetFramePreservedFPRegisters(), frame_size - FrameEntrySpillSize());
467 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100468}
469
470void CodeGeneratorARM64::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000471 if (!HasEmptyFrame()) {
472 int frame_size = GetFrameSize();
473 __ PeekCPURegList(GetFramePreservedFPRegisters(), frame_size - FrameEntrySpillSize());
474 __ PeekCPURegList(GetFramePreservedCoreRegisters(), frame_size - GetCoreSpillSize());
475 __ Drop(frame_size);
476 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100477}
478
479void CodeGeneratorARM64::Bind(HBasicBlock* block) {
480 __ Bind(GetLabelOf(block));
481}
482
Alexandre Rames5319def2014-10-23 10:03:10 +0100483void CodeGeneratorARM64::Move(HInstruction* instruction,
484 Location location,
485 HInstruction* move_for) {
486 LocationSummary* locations = instruction->GetLocations();
487 if (locations != nullptr && locations->Out().Equals(location)) {
488 return;
489 }
490
491 Primitive::Type type = instruction->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000492 DCHECK_NE(type, Primitive::kPrimVoid);
Alexandre Rames5319def2014-10-23 10:03:10 +0100493
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000494 if (instruction->IsIntConstant()
495 || instruction->IsLongConstant()
496 || instruction->IsNullConstant()) {
497 int64_t value = GetInt64ValueOf(instruction->AsConstant());
Alexandre Rames5319def2014-10-23 10:03:10 +0100498 if (location.IsRegister()) {
499 Register dst = RegisterFrom(location, type);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000500 DCHECK(((instruction->IsIntConstant() || instruction->IsNullConstant()) && dst.Is32Bits()) ||
Alexandre Rames5319def2014-10-23 10:03:10 +0100501 (instruction->IsLongConstant() && dst.Is64Bits()));
502 __ Mov(dst, value);
503 } else {
504 DCHECK(location.IsStackSlot() || location.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000505 UseScratchRegisterScope temps(GetVIXLAssembler());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000506 Register temp = (instruction->IsIntConstant() || instruction->IsNullConstant())
507 ? temps.AcquireW()
508 : temps.AcquireX();
Alexandre Rames5319def2014-10-23 10:03:10 +0100509 __ Mov(temp, value);
510 __ Str(temp, StackOperandFrom(location));
511 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000512 } else if (instruction->IsTemporary()) {
513 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000514 MoveLocation(location, temp_location, type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100515 } else if (instruction->IsLoadLocal()) {
516 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
Alexandre Rames542361f2015-01-29 16:57:31 +0000517 if (Primitive::Is64BitType(type)) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000518 MoveLocation(location, Location::DoubleStackSlot(stack_slot), type);
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000519 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000520 MoveLocation(location, Location::StackSlot(stack_slot), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100521 }
522
523 } else {
524 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000525 MoveLocation(location, locations->Out(), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100526 }
527}
528
Alexandre Rames5319def2014-10-23 10:03:10 +0100529Location CodeGeneratorARM64::GetStackLocation(HLoadLocal* load) const {
530 Primitive::Type type = load->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000531
Alexandre Rames5319def2014-10-23 10:03:10 +0100532 switch (type) {
533 case Primitive::kPrimNot:
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000534 case Primitive::kPrimInt:
535 case Primitive::kPrimFloat:
536 return Location::StackSlot(GetStackSlot(load->GetLocal()));
537
538 case Primitive::kPrimLong:
539 case Primitive::kPrimDouble:
540 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
541
Alexandre Rames5319def2014-10-23 10:03:10 +0100542 case Primitive::kPrimBoolean:
543 case Primitive::kPrimByte:
544 case Primitive::kPrimChar:
545 case Primitive::kPrimShort:
Alexandre Rames5319def2014-10-23 10:03:10 +0100546 case Primitive::kPrimVoid:
Alexandre Rames5319def2014-10-23 10:03:10 +0100547 LOG(FATAL) << "Unexpected type " << type;
548 }
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000549
Alexandre Rames5319def2014-10-23 10:03:10 +0100550 LOG(FATAL) << "Unreachable";
551 return Location::NoLocation();
552}
553
554void CodeGeneratorARM64::MarkGCCard(Register object, Register value) {
Alexandre Rames67555f72014-11-18 10:55:16 +0000555 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +0100556 Register card = temps.AcquireX();
Serban Constantinescu02164b32014-11-13 14:05:07 +0000557 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit.
Alexandre Rames5319def2014-10-23 10:03:10 +0100558 vixl::Label done;
559 __ Cbz(value, &done);
560 __ Ldr(card, MemOperand(tr, Thread::CardTableOffset<kArm64WordSize>().Int32Value()));
561 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000562 __ Strb(card, MemOperand(card, temp.X()));
Alexandre Rames5319def2014-10-23 10:03:10 +0100563 __ Bind(&done);
564}
565
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000566void CodeGeneratorARM64::SetupBlockedRegisters(bool is_baseline) const {
567 // Blocked core registers:
568 // lr : Runtime reserved.
569 // tr : Runtime reserved.
570 // xSuspend : Runtime reserved. TODO: Unblock this when the runtime stops using it.
571 // ip1 : VIXL core temp.
572 // ip0 : VIXL core temp.
573 //
574 // Blocked fp registers:
575 // d31 : VIXL fp temp.
Alexandre Rames5319def2014-10-23 10:03:10 +0100576 CPURegList reserved_core_registers = vixl_reserved_core_registers;
577 reserved_core_registers.Combine(runtime_reserved_core_registers);
Alexandre Rames5319def2014-10-23 10:03:10 +0100578 while (!reserved_core_registers.IsEmpty()) {
579 blocked_core_registers_[reserved_core_registers.PopLowestIndex().code()] = true;
580 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000581
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000582 CPURegList reserved_fp_registers = vixl_reserved_fp_registers;
Zheng Xua3ec3942015-02-15 18:39:46 +0800583 while (!reserved_fp_registers.IsEmpty()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000584 blocked_fpu_registers_[reserved_fp_registers.PopLowestIndex().code()] = true;
585 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000586
587 if (is_baseline) {
588 CPURegList reserved_core_baseline_registers = callee_saved_core_registers;
589 while (!reserved_core_baseline_registers.IsEmpty()) {
590 blocked_core_registers_[reserved_core_baseline_registers.PopLowestIndex().code()] = true;
591 }
592
593 CPURegList reserved_fp_baseline_registers = callee_saved_fp_registers;
594 while (!reserved_fp_baseline_registers.IsEmpty()) {
595 blocked_fpu_registers_[reserved_fp_baseline_registers.PopLowestIndex().code()] = true;
596 }
597 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100598}
599
600Location CodeGeneratorARM64::AllocateFreeRegister(Primitive::Type type) const {
601 if (type == Primitive::kPrimVoid) {
602 LOG(FATAL) << "Unreachable type " << type;
603 }
604
Alexandre Rames542361f2015-01-29 16:57:31 +0000605 if (Primitive::IsFloatingPointType(type)) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000606 ssize_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfAllocatableFPRegisters);
607 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100608 return Location::FpuRegisterLocation(reg);
609 } else {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000610 ssize_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfAllocatableRegisters);
611 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100612 return Location::RegisterLocation(reg);
613 }
614}
615
Alexandre Rames3e69f162014-12-10 10:36:50 +0000616size_t CodeGeneratorARM64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
617 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
618 __ Str(reg, MemOperand(sp, stack_index));
619 return kArm64WordSize;
620}
621
622size_t CodeGeneratorARM64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
623 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
624 __ Ldr(reg, MemOperand(sp, stack_index));
625 return kArm64WordSize;
626}
627
628size_t CodeGeneratorARM64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
629 FPRegister reg = FPRegister(reg_id, kDRegSize);
630 __ Str(reg, MemOperand(sp, stack_index));
631 return kArm64WordSize;
632}
633
634size_t CodeGeneratorARM64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
635 FPRegister reg = FPRegister(reg_id, kDRegSize);
636 __ Ldr(reg, MemOperand(sp, stack_index));
637 return kArm64WordSize;
638}
639
Alexandre Rames5319def2014-10-23 10:03:10 +0100640void CodeGeneratorARM64::DumpCoreRegister(std::ostream& stream, int reg) const {
641 stream << Arm64ManagedRegister::FromXRegister(XRegister(reg));
642}
643
644void CodeGeneratorARM64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
645 stream << Arm64ManagedRegister::FromDRegister(DRegister(reg));
646}
647
Alexandre Rames67555f72014-11-18 10:55:16 +0000648void CodeGeneratorARM64::MoveConstant(CPURegister destination, HConstant* constant) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000649 if (constant->IsIntConstant()) {
650 __ Mov(Register(destination), constant->AsIntConstant()->GetValue());
651 } else if (constant->IsLongConstant()) {
652 __ Mov(Register(destination), constant->AsLongConstant()->GetValue());
653 } else if (constant->IsNullConstant()) {
654 __ Mov(Register(destination), 0);
Alexandre Rames67555f72014-11-18 10:55:16 +0000655 } else if (constant->IsFloatConstant()) {
656 __ Fmov(FPRegister(destination), constant->AsFloatConstant()->GetValue());
657 } else {
658 DCHECK(constant->IsDoubleConstant());
659 __ Fmov(FPRegister(destination), constant->AsDoubleConstant()->GetValue());
660 }
661}
662
Alexandre Rames3e69f162014-12-10 10:36:50 +0000663
664static bool CoherentConstantAndType(Location constant, Primitive::Type type) {
665 DCHECK(constant.IsConstant());
666 HConstant* cst = constant.GetConstant();
667 return (cst->IsIntConstant() && type == Primitive::kPrimInt) ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000668 // Null is mapped to a core W register, which we associate with kPrimInt.
669 (cst->IsNullConstant() && type == Primitive::kPrimInt) ||
Alexandre Rames3e69f162014-12-10 10:36:50 +0000670 (cst->IsLongConstant() && type == Primitive::kPrimLong) ||
671 (cst->IsFloatConstant() && type == Primitive::kPrimFloat) ||
672 (cst->IsDoubleConstant() && type == Primitive::kPrimDouble);
673}
674
675void CodeGeneratorARM64::MoveLocation(Location destination, Location source, Primitive::Type type) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000676 if (source.Equals(destination)) {
677 return;
678 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000679
680 // A valid move can always be inferred from the destination and source
681 // locations. When moving from and to a register, the argument type can be
682 // used to generate 32bit instead of 64bit moves. In debug mode we also
683 // checks the coherency of the locations and the type.
684 bool unspecified_type = (type == Primitive::kPrimVoid);
685
686 if (destination.IsRegister() || destination.IsFpuRegister()) {
687 if (unspecified_type) {
688 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr;
689 if (source.IsStackSlot() ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000690 (src_cst != nullptr && (src_cst->IsIntConstant()
691 || src_cst->IsFloatConstant()
692 || src_cst->IsNullConstant()))) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000693 // For stack slots and 32bit constants, a 64bit type is appropriate.
694 type = destination.IsRegister() ? Primitive::kPrimInt : Primitive::kPrimFloat;
Alexandre Rames67555f72014-11-18 10:55:16 +0000695 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000696 // If the source is a double stack slot or a 64bit constant, a 64bit
697 // type is appropriate. Else the source is a register, and since the
698 // type has not been specified, we chose a 64bit type to force a 64bit
699 // move.
700 type = destination.IsRegister() ? Primitive::kPrimLong : Primitive::kPrimDouble;
Alexandre Rames67555f72014-11-18 10:55:16 +0000701 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000702 }
Alexandre Rames542361f2015-01-29 16:57:31 +0000703 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(type)) ||
704 (destination.IsRegister() && !Primitive::IsFloatingPointType(type)));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000705 CPURegister dst = CPURegisterFrom(destination, type);
706 if (source.IsStackSlot() || source.IsDoubleStackSlot()) {
707 DCHECK(dst.Is64Bits() == source.IsDoubleStackSlot());
708 __ Ldr(dst, StackOperandFrom(source));
709 } else if (source.IsConstant()) {
710 DCHECK(CoherentConstantAndType(source, type));
711 MoveConstant(dst, source.GetConstant());
712 } else {
713 if (destination.IsRegister()) {
714 __ Mov(Register(dst), RegisterFrom(source, type));
715 } else {
716 __ Fmov(FPRegister(dst), FPRegisterFrom(source, type));
717 }
718 }
719
720 } else { // The destination is not a register. It must be a stack slot.
721 DCHECK(destination.IsStackSlot() || destination.IsDoubleStackSlot());
722 if (source.IsRegister() || source.IsFpuRegister()) {
723 if (unspecified_type) {
724 if (source.IsRegister()) {
725 type = destination.IsStackSlot() ? Primitive::kPrimInt : Primitive::kPrimLong;
726 } else {
727 type = destination.IsStackSlot() ? Primitive::kPrimFloat : Primitive::kPrimDouble;
728 }
729 }
Alexandre Rames542361f2015-01-29 16:57:31 +0000730 DCHECK((destination.IsDoubleStackSlot() == Primitive::Is64BitType(type)) &&
731 (source.IsFpuRegister() == Primitive::IsFloatingPointType(type)));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000732 __ Str(CPURegisterFrom(source, type), StackOperandFrom(destination));
733 } else if (source.IsConstant()) {
734 DCHECK(unspecified_type || CoherentConstantAndType(source, type));
735 UseScratchRegisterScope temps(GetVIXLAssembler());
736 HConstant* src_cst = source.GetConstant();
737 CPURegister temp;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000738 if (src_cst->IsIntConstant() || src_cst->IsNullConstant()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000739 temp = temps.AcquireW();
740 } else if (src_cst->IsLongConstant()) {
741 temp = temps.AcquireX();
742 } else if (src_cst->IsFloatConstant()) {
743 temp = temps.AcquireS();
744 } else {
745 DCHECK(src_cst->IsDoubleConstant());
746 temp = temps.AcquireD();
747 }
748 MoveConstant(temp, src_cst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000749 __ Str(temp, StackOperandFrom(destination));
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000750 } else {
Alexandre Rames67555f72014-11-18 10:55:16 +0000751 DCHECK(source.IsStackSlot() || source.IsDoubleStackSlot());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000752 DCHECK(source.IsDoubleStackSlot() == destination.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000753 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000754 // There is generally less pressure on FP registers.
755 FPRegister temp = destination.IsDoubleStackSlot() ? temps.AcquireD() : temps.AcquireS();
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000756 __ Ldr(temp, StackOperandFrom(source));
757 __ Str(temp, StackOperandFrom(destination));
758 }
759 }
760}
761
Alexandre Rames3e69f162014-12-10 10:36:50 +0000762void CodeGeneratorARM64::SwapLocations(Location loc1, Location loc2) {
763 DCHECK(!loc1.IsConstant());
764 DCHECK(!loc2.IsConstant());
765
766 if (loc1.Equals(loc2)) {
767 return;
768 }
769
770 UseScratchRegisterScope temps(GetAssembler()->vixl_masm_);
771
772 bool is_slot1 = loc1.IsStackSlot() || loc1.IsDoubleStackSlot();
773 bool is_slot2 = loc2.IsStackSlot() || loc2.IsDoubleStackSlot();
774 bool is_fp_reg1 = loc1.IsFpuRegister();
775 bool is_fp_reg2 = loc2.IsFpuRegister();
776
777 if (loc2.IsRegister() && loc1.IsRegister()) {
778 Register r1 = XRegisterFrom(loc1);
779 Register r2 = XRegisterFrom(loc2);
780 Register tmp = temps.AcquireSameSizeAs(r1);
781 __ Mov(tmp, r2);
782 __ Mov(r2, r1);
783 __ Mov(r1, tmp);
784 } else if (is_fp_reg2 && is_fp_reg1) {
785 FPRegister r1 = DRegisterFrom(loc1);
786 FPRegister r2 = DRegisterFrom(loc2);
787 FPRegister tmp = temps.AcquireSameSizeAs(r1);
788 __ Fmov(tmp, r2);
789 __ Fmov(r2, r1);
790 __ Fmov(r1, tmp);
791 } else if (is_slot1 != is_slot2) {
792 MemOperand mem = StackOperandFrom(is_slot1 ? loc1 : loc2);
793 Location reg_loc = is_slot1 ? loc2 : loc1;
794 CPURegister reg, tmp;
795 if (reg_loc.IsFpuRegister()) {
796 reg = DRegisterFrom(reg_loc);
797 tmp = temps.AcquireD();
798 } else {
799 reg = XRegisterFrom(reg_loc);
800 tmp = temps.AcquireX();
801 }
802 __ Ldr(tmp, mem);
803 __ Str(reg, mem);
804 if (reg_loc.IsFpuRegister()) {
805 __ Fmov(FPRegister(reg), FPRegister(tmp));
806 } else {
807 __ Mov(Register(reg), Register(tmp));
808 }
809 } else if (is_slot1 && is_slot2) {
810 MemOperand mem1 = StackOperandFrom(loc1);
811 MemOperand mem2 = StackOperandFrom(loc2);
812 Register tmp1 = loc1.IsStackSlot() ? temps.AcquireW() : temps.AcquireX();
813 Register tmp2 = temps.AcquireSameSizeAs(tmp1);
814 __ Ldr(tmp1, mem1);
815 __ Ldr(tmp2, mem2);
816 __ Str(tmp1, mem2);
817 __ Str(tmp2, mem1);
818 } else {
819 LOG(FATAL) << "Unimplemented";
820 }
821}
822
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000823void CodeGeneratorARM64::Load(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000824 CPURegister dst,
825 const MemOperand& src) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000826 switch (type) {
827 case Primitive::kPrimBoolean:
Alexandre Rames67555f72014-11-18 10:55:16 +0000828 __ Ldrb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000829 break;
830 case Primitive::kPrimByte:
Alexandre Rames67555f72014-11-18 10:55:16 +0000831 __ Ldrsb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000832 break;
833 case Primitive::kPrimShort:
Alexandre Rames67555f72014-11-18 10:55:16 +0000834 __ Ldrsh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000835 break;
836 case Primitive::kPrimChar:
Alexandre Rames67555f72014-11-18 10:55:16 +0000837 __ Ldrh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000838 break;
839 case Primitive::kPrimInt:
840 case Primitive::kPrimNot:
841 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000842 case Primitive::kPrimFloat:
843 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +0000844 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Alexandre Rames67555f72014-11-18 10:55:16 +0000845 __ Ldr(dst, src);
846 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000847 case Primitive::kPrimVoid:
848 LOG(FATAL) << "Unreachable type " << type;
849 }
850}
851
Calin Juravle77520bc2015-01-12 18:45:46 +0000852void CodeGeneratorARM64::LoadAcquire(HInstruction* instruction,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000853 CPURegister dst,
854 const MemOperand& src) {
855 UseScratchRegisterScope temps(GetVIXLAssembler());
856 Register temp_base = temps.AcquireX();
Calin Juravle77520bc2015-01-12 18:45:46 +0000857 Primitive::Type type = instruction->GetType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000858
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000859 DCHECK(!src.IsPreIndex());
860 DCHECK(!src.IsPostIndex());
861
862 // TODO(vixl): Let the MacroAssembler handle MemOperand.
Andreas Gampe878d58c2015-01-15 23:24:00 -0800863 __ Add(temp_base, src.base(), OperandFromMemOperand(src));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000864 MemOperand base = MemOperand(temp_base);
865 switch (type) {
866 case Primitive::kPrimBoolean:
867 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000868 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000869 break;
870 case Primitive::kPrimByte:
871 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000872 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000873 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
874 break;
875 case Primitive::kPrimChar:
876 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000877 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000878 break;
879 case Primitive::kPrimShort:
880 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000881 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000882 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
883 break;
884 case Primitive::kPrimInt:
885 case Primitive::kPrimNot:
886 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +0000887 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000888 __ Ldar(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000889 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000890 break;
891 case Primitive::kPrimFloat:
892 case Primitive::kPrimDouble: {
893 DCHECK(dst.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +0000894 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000895
896 Register temp = dst.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
897 __ Ldar(temp, base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000898 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000899 __ Fmov(FPRegister(dst), temp);
900 break;
901 }
902 case Primitive::kPrimVoid:
903 LOG(FATAL) << "Unreachable type " << type;
904 }
905}
906
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000907void CodeGeneratorARM64::Store(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000908 CPURegister src,
909 const MemOperand& dst) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000910 switch (type) {
911 case Primitive::kPrimBoolean:
912 case Primitive::kPrimByte:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000913 __ Strb(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000914 break;
915 case Primitive::kPrimChar:
916 case Primitive::kPrimShort:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000917 __ Strh(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000918 break;
919 case Primitive::kPrimInt:
920 case Primitive::kPrimNot:
921 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000922 case Primitive::kPrimFloat:
923 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +0000924 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000925 __ Str(src, dst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000926 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000927 case Primitive::kPrimVoid:
928 LOG(FATAL) << "Unreachable type " << type;
929 }
930}
931
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000932void CodeGeneratorARM64::StoreRelease(Primitive::Type type,
933 CPURegister src,
934 const MemOperand& dst) {
935 UseScratchRegisterScope temps(GetVIXLAssembler());
936 Register temp_base = temps.AcquireX();
937
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000938 DCHECK(!dst.IsPreIndex());
939 DCHECK(!dst.IsPostIndex());
940
941 // TODO(vixl): Let the MacroAssembler handle this.
Andreas Gampe878d58c2015-01-15 23:24:00 -0800942 Operand op = OperandFromMemOperand(dst);
943 __ Add(temp_base, dst.base(), op);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000944 MemOperand base = MemOperand(temp_base);
945 switch (type) {
946 case Primitive::kPrimBoolean:
947 case Primitive::kPrimByte:
948 __ Stlrb(Register(src), base);
949 break;
950 case Primitive::kPrimChar:
951 case Primitive::kPrimShort:
952 __ Stlrh(Register(src), base);
953 break;
954 case Primitive::kPrimInt:
955 case Primitive::kPrimNot:
956 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +0000957 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000958 __ Stlr(Register(src), base);
959 break;
960 case Primitive::kPrimFloat:
961 case Primitive::kPrimDouble: {
962 DCHECK(src.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +0000963 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000964
965 Register temp = src.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
966 __ Fmov(temp, FPRegister(src));
967 __ Stlr(temp, base);
968 break;
969 }
970 case Primitive::kPrimVoid:
971 LOG(FATAL) << "Unreachable type " << type;
972 }
973}
974
Alexandre Rames67555f72014-11-18 10:55:16 +0000975void CodeGeneratorARM64::LoadCurrentMethod(vixl::Register current_method) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000976 DCHECK(RequiresCurrentMethod());
Alexandre Rames67555f72014-11-18 10:55:16 +0000977 DCHECK(current_method.IsW());
978 __ Ldr(current_method, MemOperand(sp, kCurrentMethodStackOffset));
979}
980
981void CodeGeneratorARM64::InvokeRuntime(int32_t entry_point_offset,
982 HInstruction* instruction,
983 uint32_t dex_pc) {
984 __ Ldr(lr, MemOperand(tr, entry_point_offset));
985 __ Blr(lr);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000986 if (instruction != nullptr) {
987 RecordPcInfo(instruction, dex_pc);
988 DCHECK(instruction->IsSuspendCheck()
989 || instruction->IsBoundsCheck()
990 || instruction->IsNullCheck()
991 || instruction->IsDivZeroCheck()
992 || !IsLeafMethod());
993 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000994}
995
996void InstructionCodeGeneratorARM64::GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path,
997 vixl::Register class_reg) {
998 UseScratchRegisterScope temps(GetVIXLAssembler());
999 Register temp = temps.AcquireW();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001000 size_t status_offset = mirror::Class::StatusOffset().SizeValue();
1001
Serban Constantinescu02164b32014-11-13 14:05:07 +00001002 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001003 if (kUseAcquireRelease) {
1004 // TODO(vixl): Let the MacroAssembler handle MemOperand.
1005 __ Add(temp, class_reg, status_offset);
1006 __ Ldar(temp, HeapOperand(temp));
1007 __ Cmp(temp, mirror::Class::kStatusInitialized);
1008 __ B(lt, slow_path->GetEntryLabel());
1009 } else {
1010 __ Ldr(temp, HeapOperand(class_reg, status_offset));
1011 __ Cmp(temp, mirror::Class::kStatusInitialized);
1012 __ B(lt, slow_path->GetEntryLabel());
1013 __ Dmb(InnerShareable, BarrierReads);
1014 }
Alexandre Rames67555f72014-11-18 10:55:16 +00001015 __ Bind(slow_path->GetExitLabel());
1016}
Alexandre Rames5319def2014-10-23 10:03:10 +01001017
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001018void InstructionCodeGeneratorARM64::GenerateMemoryBarrier(MemBarrierKind kind) {
1019 BarrierType type = BarrierAll;
1020
1021 switch (kind) {
1022 case MemBarrierKind::kAnyAny:
1023 case MemBarrierKind::kAnyStore: {
1024 type = BarrierAll;
1025 break;
1026 }
1027 case MemBarrierKind::kLoadAny: {
1028 type = BarrierReads;
1029 break;
1030 }
1031 case MemBarrierKind::kStoreStore: {
1032 type = BarrierWrites;
1033 break;
1034 }
1035 default:
1036 LOG(FATAL) << "Unexpected memory barrier " << kind;
1037 }
1038 __ Dmb(InnerShareable, type);
1039}
1040
Serban Constantinescu02164b32014-11-13 14:05:07 +00001041void InstructionCodeGeneratorARM64::GenerateSuspendCheck(HSuspendCheck* instruction,
1042 HBasicBlock* successor) {
1043 SuspendCheckSlowPathARM64* slow_path =
1044 new (GetGraph()->GetArena()) SuspendCheckSlowPathARM64(instruction, successor);
1045 codegen_->AddSlowPath(slow_path);
1046 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
1047 Register temp = temps.AcquireW();
1048
1049 __ Ldrh(temp, MemOperand(tr, Thread::ThreadFlagsOffset<kArm64WordSize>().SizeValue()));
1050 if (successor == nullptr) {
1051 __ Cbnz(temp, slow_path->GetEntryLabel());
1052 __ Bind(slow_path->GetReturnLabel());
1053 } else {
1054 __ Cbz(temp, codegen_->GetLabelOf(successor));
1055 __ B(slow_path->GetEntryLabel());
1056 // slow_path will return to GetLabelOf(successor).
1057 }
1058}
1059
Alexandre Rames5319def2014-10-23 10:03:10 +01001060InstructionCodeGeneratorARM64::InstructionCodeGeneratorARM64(HGraph* graph,
1061 CodeGeneratorARM64* codegen)
1062 : HGraphVisitor(graph),
1063 assembler_(codegen->GetAssembler()),
1064 codegen_(codegen) {}
1065
1066#define FOR_EACH_UNIMPLEMENTED_INSTRUCTION(M) \
Alexandre Rames3e69f162014-12-10 10:36:50 +00001067 /* No unimplemented IR. */
Alexandre Rames5319def2014-10-23 10:03:10 +01001068
1069#define UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name) name##UnimplementedInstructionBreakCode
1070
1071enum UnimplementedInstructionBreakCode {
Alexandre Rames67555f72014-11-18 10:55:16 +00001072 // Using a base helps identify when we hit such breakpoints.
1073 UnimplementedInstructionBreakCodeBaseCode = 0x900,
Alexandre Rames5319def2014-10-23 10:03:10 +01001074#define ENUM_UNIMPLEMENTED_INSTRUCTION(name) UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name),
1075 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(ENUM_UNIMPLEMENTED_INSTRUCTION)
1076#undef ENUM_UNIMPLEMENTED_INSTRUCTION
1077};
1078
1079#define DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS(name) \
1080 void InstructionCodeGeneratorARM64::Visit##name(H##name* instr) { \
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001081 UNUSED(instr); \
Alexandre Rames5319def2014-10-23 10:03:10 +01001082 __ Brk(UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name)); \
1083 } \
1084 void LocationsBuilderARM64::Visit##name(H##name* instr) { \
1085 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr); \
1086 locations->SetOut(Location::Any()); \
1087 }
1088 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS)
1089#undef DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS
1090
1091#undef UNIMPLEMENTED_INSTRUCTION_BREAK_CODE
Alexandre Rames67555f72014-11-18 10:55:16 +00001092#undef FOR_EACH_UNIMPLEMENTED_INSTRUCTION
Alexandre Rames5319def2014-10-23 10:03:10 +01001093
Alexandre Rames67555f72014-11-18 10:55:16 +00001094void LocationsBuilderARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001095 DCHECK_EQ(instr->InputCount(), 2U);
1096 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1097 Primitive::Type type = instr->GetResultType();
1098 switch (type) {
1099 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001100 case Primitive::kPrimLong:
Alexandre Rames5319def2014-10-23 10:03:10 +01001101 locations->SetInAt(0, Location::RequiresRegister());
1102 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001103 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001104 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001105
1106 case Primitive::kPrimFloat:
1107 case Primitive::kPrimDouble:
1108 locations->SetInAt(0, Location::RequiresFpuRegister());
1109 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001110 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001111 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001112
Alexandre Rames5319def2014-10-23 10:03:10 +01001113 default:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001114 LOG(FATAL) << "Unexpected " << instr->DebugName() << " type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001115 }
1116}
1117
Alexandre Rames67555f72014-11-18 10:55:16 +00001118void InstructionCodeGeneratorARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001119 Primitive::Type type = instr->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001120
1121 switch (type) {
1122 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001123 case Primitive::kPrimLong: {
1124 Register dst = OutputRegister(instr);
1125 Register lhs = InputRegisterAt(instr, 0);
1126 Operand rhs = InputOperandAt(instr, 1);
Alexandre Rames5319def2014-10-23 10:03:10 +01001127 if (instr->IsAdd()) {
1128 __ Add(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001129 } else if (instr->IsAnd()) {
1130 __ And(dst, lhs, rhs);
1131 } else if (instr->IsOr()) {
1132 __ Orr(dst, lhs, rhs);
1133 } else if (instr->IsSub()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001134 __ Sub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001135 } else {
1136 DCHECK(instr->IsXor());
1137 __ Eor(dst, lhs, rhs);
Alexandre Rames5319def2014-10-23 10:03:10 +01001138 }
1139 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001140 }
1141 case Primitive::kPrimFloat:
1142 case Primitive::kPrimDouble: {
1143 FPRegister dst = OutputFPRegister(instr);
1144 FPRegister lhs = InputFPRegisterAt(instr, 0);
1145 FPRegister rhs = InputFPRegisterAt(instr, 1);
1146 if (instr->IsAdd()) {
1147 __ Fadd(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001148 } else if (instr->IsSub()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001149 __ Fsub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001150 } else {
1151 LOG(FATAL) << "Unexpected floating-point binary operation";
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001152 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001153 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001154 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001155 default:
Alexandre Rames67555f72014-11-18 10:55:16 +00001156 LOG(FATAL) << "Unexpected binary operation type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001157 }
1158}
1159
Serban Constantinescu02164b32014-11-13 14:05:07 +00001160void LocationsBuilderARM64::HandleShift(HBinaryOperation* instr) {
1161 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1162
1163 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1164 Primitive::Type type = instr->GetResultType();
1165 switch (type) {
1166 case Primitive::kPrimInt:
1167 case Primitive::kPrimLong: {
1168 locations->SetInAt(0, Location::RequiresRegister());
1169 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1170 locations->SetOut(Location::RequiresRegister());
1171 break;
1172 }
1173 default:
1174 LOG(FATAL) << "Unexpected shift type " << type;
1175 }
1176}
1177
1178void InstructionCodeGeneratorARM64::HandleShift(HBinaryOperation* instr) {
1179 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1180
1181 Primitive::Type type = instr->GetType();
1182 switch (type) {
1183 case Primitive::kPrimInt:
1184 case Primitive::kPrimLong: {
1185 Register dst = OutputRegister(instr);
1186 Register lhs = InputRegisterAt(instr, 0);
1187 Operand rhs = InputOperandAt(instr, 1);
1188 if (rhs.IsImmediate()) {
1189 uint32_t shift_value = (type == Primitive::kPrimInt)
1190 ? static_cast<uint32_t>(rhs.immediate() & kMaxIntShiftValue)
1191 : static_cast<uint32_t>(rhs.immediate() & kMaxLongShiftValue);
1192 if (instr->IsShl()) {
1193 __ Lsl(dst, lhs, shift_value);
1194 } else if (instr->IsShr()) {
1195 __ Asr(dst, lhs, shift_value);
1196 } else {
1197 __ Lsr(dst, lhs, shift_value);
1198 }
1199 } else {
1200 Register rhs_reg = dst.IsX() ? rhs.reg().X() : rhs.reg().W();
1201
1202 if (instr->IsShl()) {
1203 __ Lsl(dst, lhs, rhs_reg);
1204 } else if (instr->IsShr()) {
1205 __ Asr(dst, lhs, rhs_reg);
1206 } else {
1207 __ Lsr(dst, lhs, rhs_reg);
1208 }
1209 }
1210 break;
1211 }
1212 default:
1213 LOG(FATAL) << "Unexpected shift operation type " << type;
1214 }
1215}
1216
Alexandre Rames5319def2014-10-23 10:03:10 +01001217void LocationsBuilderARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001218 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001219}
1220
1221void InstructionCodeGeneratorARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001222 HandleBinaryOp(instruction);
1223}
1224
1225void LocationsBuilderARM64::VisitAnd(HAnd* instruction) {
1226 HandleBinaryOp(instruction);
1227}
1228
1229void InstructionCodeGeneratorARM64::VisitAnd(HAnd* instruction) {
1230 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001231}
1232
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001233void LocationsBuilderARM64::VisitArrayGet(HArrayGet* instruction) {
1234 LocationSummary* locations =
1235 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1236 locations->SetInAt(0, Location::RequiresRegister());
1237 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1238 locations->SetOut(Location::RequiresRegister());
1239}
1240
1241void InstructionCodeGeneratorARM64::VisitArrayGet(HArrayGet* instruction) {
1242 LocationSummary* locations = instruction->GetLocations();
1243 Primitive::Type type = instruction->GetType();
1244 Register obj = InputRegisterAt(instruction, 0);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001245 Location index = locations->InAt(1);
1246 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001247 MemOperand source = HeapOperand(obj);
Alexandre Rames67555f72014-11-18 10:55:16 +00001248 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001249
1250 if (index.IsConstant()) {
1251 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(type);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001252 source = HeapOperand(obj, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001253 } else {
1254 Register temp = temps.AcquireSameSizeAs(obj);
1255 Register index_reg = RegisterFrom(index, Primitive::kPrimInt);
1256 __ Add(temp, obj, Operand(index_reg, LSL, Primitive::ComponentSizeShift(type)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001257 source = HeapOperand(temp, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001258 }
1259
Alexandre Rames67555f72014-11-18 10:55:16 +00001260 codegen_->Load(type, OutputCPURegister(instruction), source);
Calin Juravle77520bc2015-01-12 18:45:46 +00001261 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001262}
1263
Alexandre Rames5319def2014-10-23 10:03:10 +01001264void LocationsBuilderARM64::VisitArrayLength(HArrayLength* instruction) {
1265 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1266 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001267 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001268}
1269
1270void InstructionCodeGeneratorARM64::VisitArrayLength(HArrayLength* instruction) {
1271 __ Ldr(OutputRegister(instruction),
1272 HeapOperand(InputRegisterAt(instruction, 0), mirror::Array::LengthOffset()));
Calin Juravle77520bc2015-01-12 18:45:46 +00001273 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001274}
1275
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001276void LocationsBuilderARM64::VisitArraySet(HArraySet* instruction) {
1277 Primitive::Type value_type = instruction->GetComponentType();
1278 bool is_object = value_type == Primitive::kPrimNot;
1279 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1280 instruction, is_object ? LocationSummary::kCall : LocationSummary::kNoCall);
1281 if (is_object) {
1282 InvokeRuntimeCallingConvention calling_convention;
1283 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
1284 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1)));
1285 locations->SetInAt(2, LocationFrom(calling_convention.GetRegisterAt(2)));
1286 } else {
1287 locations->SetInAt(0, Location::RequiresRegister());
1288 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1289 locations->SetInAt(2, Location::RequiresRegister());
1290 }
1291}
1292
1293void InstructionCodeGeneratorARM64::VisitArraySet(HArraySet* instruction) {
1294 Primitive::Type value_type = instruction->GetComponentType();
1295 if (value_type == Primitive::kPrimNot) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001296 codegen_->InvokeRuntime(QUICK_ENTRY_POINT(pAputObject), instruction, instruction->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08001297 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001298 } else {
1299 LocationSummary* locations = instruction->GetLocations();
1300 Register obj = InputRegisterAt(instruction, 0);
Alexandre Rames67555f72014-11-18 10:55:16 +00001301 CPURegister value = InputCPURegisterAt(instruction, 2);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001302 Location index = locations->InAt(1);
1303 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001304 MemOperand destination = HeapOperand(obj);
Alexandre Rames67555f72014-11-18 10:55:16 +00001305 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001306
1307 if (index.IsConstant()) {
1308 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001309 destination = HeapOperand(obj, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001310 } else {
1311 Register temp = temps.AcquireSameSizeAs(obj);
1312 Register index_reg = InputRegisterAt(instruction, 1);
1313 __ Add(temp, obj, Operand(index_reg, LSL, Primitive::ComponentSizeShift(value_type)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001314 destination = HeapOperand(temp, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001315 }
1316
1317 codegen_->Store(value_type, value, destination);
Calin Juravle77520bc2015-01-12 18:45:46 +00001318 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001319 }
1320}
1321
Alexandre Rames67555f72014-11-18 10:55:16 +00001322void LocationsBuilderARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
1323 LocationSummary* locations =
1324 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1325 locations->SetInAt(0, Location::RequiresRegister());
1326 locations->SetInAt(1, Location::RequiresRegister());
1327 if (instruction->HasUses()) {
1328 locations->SetOut(Location::SameAsFirstInput());
1329 }
1330}
1331
1332void InstructionCodeGeneratorARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001333 LocationSummary* locations = instruction->GetLocations();
1334 BoundsCheckSlowPathARM64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM64(
1335 instruction, locations->InAt(0), locations->InAt(1));
Alexandre Rames67555f72014-11-18 10:55:16 +00001336 codegen_->AddSlowPath(slow_path);
1337
1338 __ Cmp(InputRegisterAt(instruction, 0), InputOperandAt(instruction, 1));
1339 __ B(slow_path->GetEntryLabel(), hs);
1340}
1341
1342void LocationsBuilderARM64::VisitCheckCast(HCheckCast* instruction) {
1343 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1344 instruction, LocationSummary::kCallOnSlowPath);
1345 locations->SetInAt(0, Location::RequiresRegister());
1346 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001347 locations->AddTemp(Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001348}
1349
1350void InstructionCodeGeneratorARM64::VisitCheckCast(HCheckCast* instruction) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001351 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames67555f72014-11-18 10:55:16 +00001352 Register obj = InputRegisterAt(instruction, 0);;
1353 Register cls = InputRegisterAt(instruction, 1);;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001354 Register obj_cls = WRegisterFrom(instruction->GetLocations()->GetTemp(0));
Alexandre Rames67555f72014-11-18 10:55:16 +00001355
Alexandre Rames3e69f162014-12-10 10:36:50 +00001356 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
1357 instruction, locations->InAt(1), LocationFrom(obj_cls), instruction->GetDexPc());
Alexandre Rames67555f72014-11-18 10:55:16 +00001358 codegen_->AddSlowPath(slow_path);
1359
1360 // TODO: avoid this check if we know obj is not null.
1361 __ Cbz(obj, slow_path->GetExitLabel());
1362 // Compare the class of `obj` with `cls`.
Alexandre Rames3e69f162014-12-10 10:36:50 +00001363 __ Ldr(obj_cls, HeapOperand(obj, mirror::Object::ClassOffset()));
1364 __ Cmp(obj_cls, cls);
Alexandre Rames67555f72014-11-18 10:55:16 +00001365 __ B(ne, slow_path->GetEntryLabel());
1366 __ Bind(slow_path->GetExitLabel());
1367}
1368
1369void LocationsBuilderARM64::VisitClinitCheck(HClinitCheck* check) {
1370 LocationSummary* locations =
1371 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
1372 locations->SetInAt(0, Location::RequiresRegister());
1373 if (check->HasUses()) {
1374 locations->SetOut(Location::SameAsFirstInput());
1375 }
1376}
1377
1378void InstructionCodeGeneratorARM64::VisitClinitCheck(HClinitCheck* check) {
1379 // We assume the class is not null.
1380 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
1381 check->GetLoadClass(), check, check->GetDexPc(), true);
1382 codegen_->AddSlowPath(slow_path);
1383 GenerateClassInitializationCheck(slow_path, InputRegisterAt(check, 0));
1384}
1385
Serban Constantinescu02164b32014-11-13 14:05:07 +00001386void LocationsBuilderARM64::VisitCompare(HCompare* compare) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001387 LocationSummary* locations =
Serban Constantinescu02164b32014-11-13 14:05:07 +00001388 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
1389 Primitive::Type in_type = compare->InputAt(0)->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001390 switch (in_type) {
1391 case Primitive::kPrimLong: {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001392 locations->SetInAt(0, Location::RequiresRegister());
1393 locations->SetInAt(1, Location::RegisterOrConstant(compare->InputAt(1)));
1394 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1395 break;
1396 }
1397 case Primitive::kPrimFloat:
1398 case Primitive::kPrimDouble: {
1399 locations->SetInAt(0, Location::RequiresFpuRegister());
1400 locations->SetInAt(1, Location::RequiresFpuRegister());
1401 locations->SetOut(Location::RequiresRegister());
1402 break;
1403 }
1404 default:
1405 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
1406 }
1407}
1408
1409void InstructionCodeGeneratorARM64::VisitCompare(HCompare* compare) {
1410 Primitive::Type in_type = compare->InputAt(0)->GetType();
1411
1412 // 0 if: left == right
1413 // 1 if: left > right
1414 // -1 if: left < right
1415 switch (in_type) {
1416 case Primitive::kPrimLong: {
1417 Register result = OutputRegister(compare);
1418 Register left = InputRegisterAt(compare, 0);
1419 Operand right = InputOperandAt(compare, 1);
1420
1421 __ Cmp(left, right);
1422 __ Cset(result, ne);
1423 __ Cneg(result, result, lt);
1424 break;
1425 }
1426 case Primitive::kPrimFloat:
1427 case Primitive::kPrimDouble: {
1428 Register result = OutputRegister(compare);
1429 FPRegister left = InputFPRegisterAt(compare, 0);
1430 FPRegister right = InputFPRegisterAt(compare, 1);
1431
1432 __ Fcmp(left, right);
1433 if (compare->IsGtBias()) {
1434 __ Cset(result, ne);
1435 } else {
1436 __ Csetm(result, ne);
1437 }
1438 __ Cneg(result, result, compare->IsGtBias() ? mi : gt);
Alexandre Rames5319def2014-10-23 10:03:10 +01001439 break;
1440 }
1441 default:
1442 LOG(FATAL) << "Unimplemented compare type " << in_type;
1443 }
1444}
1445
1446void LocationsBuilderARM64::VisitCondition(HCondition* instruction) {
1447 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1448 locations->SetInAt(0, Location::RequiresRegister());
1449 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1450 if (instruction->NeedsMaterialization()) {
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001451 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001452 }
1453}
1454
1455void InstructionCodeGeneratorARM64::VisitCondition(HCondition* instruction) {
1456 if (!instruction->NeedsMaterialization()) {
1457 return;
1458 }
1459
1460 LocationSummary* locations = instruction->GetLocations();
1461 Register lhs = InputRegisterAt(instruction, 0);
1462 Operand rhs = InputOperandAt(instruction, 1);
1463 Register res = RegisterFrom(locations->Out(), instruction->GetType());
1464 Condition cond = ARM64Condition(instruction->GetCondition());
1465
1466 __ Cmp(lhs, rhs);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001467 __ Cset(res, cond);
Alexandre Rames5319def2014-10-23 10:03:10 +01001468}
1469
1470#define FOR_EACH_CONDITION_INSTRUCTION(M) \
1471 M(Equal) \
1472 M(NotEqual) \
1473 M(LessThan) \
1474 M(LessThanOrEqual) \
1475 M(GreaterThan) \
1476 M(GreaterThanOrEqual)
1477#define DEFINE_CONDITION_VISITORS(Name) \
1478void LocationsBuilderARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); } \
1479void InstructionCodeGeneratorARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); }
1480FOR_EACH_CONDITION_INSTRUCTION(DEFINE_CONDITION_VISITORS)
Alexandre Rames67555f72014-11-18 10:55:16 +00001481#undef DEFINE_CONDITION_VISITORS
Alexandre Rames5319def2014-10-23 10:03:10 +01001482#undef FOR_EACH_CONDITION_INSTRUCTION
1483
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001484void LocationsBuilderARM64::VisitDiv(HDiv* div) {
1485 LocationSummary* locations =
1486 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
1487 switch (div->GetResultType()) {
1488 case Primitive::kPrimInt:
1489 case Primitive::kPrimLong:
1490 locations->SetInAt(0, Location::RequiresRegister());
1491 locations->SetInAt(1, Location::RequiresRegister());
1492 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1493 break;
1494
1495 case Primitive::kPrimFloat:
1496 case Primitive::kPrimDouble:
1497 locations->SetInAt(0, Location::RequiresFpuRegister());
1498 locations->SetInAt(1, Location::RequiresFpuRegister());
1499 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1500 break;
1501
1502 default:
1503 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
1504 }
1505}
1506
1507void InstructionCodeGeneratorARM64::VisitDiv(HDiv* div) {
1508 Primitive::Type type = div->GetResultType();
1509 switch (type) {
1510 case Primitive::kPrimInt:
1511 case Primitive::kPrimLong:
1512 __ Sdiv(OutputRegister(div), InputRegisterAt(div, 0), InputRegisterAt(div, 1));
1513 break;
1514
1515 case Primitive::kPrimFloat:
1516 case Primitive::kPrimDouble:
1517 __ Fdiv(OutputFPRegister(div), InputFPRegisterAt(div, 0), InputFPRegisterAt(div, 1));
1518 break;
1519
1520 default:
1521 LOG(FATAL) << "Unexpected div type " << type;
1522 }
1523}
1524
Alexandre Rames67555f72014-11-18 10:55:16 +00001525void LocationsBuilderARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
1526 LocationSummary* locations =
1527 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1528 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
1529 if (instruction->HasUses()) {
1530 locations->SetOut(Location::SameAsFirstInput());
1531 }
1532}
1533
1534void InstructionCodeGeneratorARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
1535 SlowPathCodeARM64* slow_path =
1536 new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM64(instruction);
1537 codegen_->AddSlowPath(slow_path);
1538 Location value = instruction->GetLocations()->InAt(0);
1539
Alexandre Rames3e69f162014-12-10 10:36:50 +00001540 Primitive::Type type = instruction->GetType();
1541
1542 if ((type != Primitive::kPrimInt) && (type != Primitive::kPrimLong)) {
1543 LOG(FATAL) << "Unexpected type " << type << "for DivZeroCheck.";
1544 return;
1545 }
1546
Alexandre Rames67555f72014-11-18 10:55:16 +00001547 if (value.IsConstant()) {
1548 int64_t divisor = Int64ConstantFrom(value);
1549 if (divisor == 0) {
1550 __ B(slow_path->GetEntryLabel());
1551 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001552 // A division by a non-null constant is valid. We don't need to perform
1553 // any check, so simply fall through.
Alexandre Rames67555f72014-11-18 10:55:16 +00001554 }
1555 } else {
1556 __ Cbz(InputRegisterAt(instruction, 0), slow_path->GetEntryLabel());
1557 }
1558}
1559
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001560void LocationsBuilderARM64::VisitDoubleConstant(HDoubleConstant* constant) {
1561 LocationSummary* locations =
1562 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1563 locations->SetOut(Location::ConstantLocation(constant));
1564}
1565
1566void InstructionCodeGeneratorARM64::VisitDoubleConstant(HDoubleConstant* constant) {
1567 UNUSED(constant);
1568 // Will be generated at use site.
1569}
1570
Alexandre Rames5319def2014-10-23 10:03:10 +01001571void LocationsBuilderARM64::VisitExit(HExit* exit) {
1572 exit->SetLocations(nullptr);
1573}
1574
1575void InstructionCodeGeneratorARM64::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001576 UNUSED(exit);
Alexandre Rames5319def2014-10-23 10:03:10 +01001577 if (kIsDebugBuild) {
1578 down_cast<Arm64Assembler*>(GetAssembler())->Comment("Unreachable");
Alexandre Rames67555f72014-11-18 10:55:16 +00001579 __ Brk(__LINE__); // TODO: Introduce special markers for such code locations.
Alexandre Rames5319def2014-10-23 10:03:10 +01001580 }
1581}
1582
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001583void LocationsBuilderARM64::VisitFloatConstant(HFloatConstant* constant) {
1584 LocationSummary* locations =
1585 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1586 locations->SetOut(Location::ConstantLocation(constant));
1587}
1588
1589void InstructionCodeGeneratorARM64::VisitFloatConstant(HFloatConstant* constant) {
1590 UNUSED(constant);
1591 // Will be generated at use site.
1592}
1593
Alexandre Rames5319def2014-10-23 10:03:10 +01001594void LocationsBuilderARM64::VisitGoto(HGoto* got) {
1595 got->SetLocations(nullptr);
1596}
1597
1598void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) {
1599 HBasicBlock* successor = got->GetSuccessor();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001600 DCHECK(!successor->IsExitBlock());
1601 HBasicBlock* block = got->GetBlock();
1602 HInstruction* previous = got->GetPrevious();
1603 HLoopInformation* info = block->GetLoopInformation();
1604
1605 if (info != nullptr && info->IsBackEdge(block) && info->HasSuspendCheck()) {
1606 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
1607 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1608 return;
1609 }
1610 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1611 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1612 }
1613 if (!codegen_->GoesToNextBlock(block, successor)) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001614 __ B(codegen_->GetLabelOf(successor));
1615 }
1616}
1617
1618void LocationsBuilderARM64::VisitIf(HIf* if_instr) {
1619 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
1620 HInstruction* cond = if_instr->InputAt(0);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001621 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001622 locations->SetInAt(0, Location::RequiresRegister());
1623 }
1624}
1625
1626void InstructionCodeGeneratorARM64::VisitIf(HIf* if_instr) {
1627 HInstruction* cond = if_instr->InputAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01001628 HCondition* condition = cond->AsCondition();
1629 vixl::Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1630 vixl::Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1631
Serban Constantinescu02164b32014-11-13 14:05:07 +00001632 if (cond->IsIntConstant()) {
1633 int32_t cond_value = cond->AsIntConstant()->GetValue();
1634 if (cond_value == 1) {
1635 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(), if_instr->IfTrueSuccessor())) {
1636 __ B(true_target);
1637 }
1638 return;
1639 } else {
1640 DCHECK_EQ(cond_value, 0);
1641 }
1642 } else if (!cond->IsCondition() || condition->NeedsMaterialization()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001643 // The condition instruction has been materialized, compare the output to 0.
1644 Location cond_val = if_instr->GetLocations()->InAt(0);
1645 DCHECK(cond_val.IsRegister());
1646 __ Cbnz(InputRegisterAt(if_instr, 0), true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01001647 } else {
1648 // The condition instruction has not been materialized, use its inputs as
1649 // the comparison and its condition as the branch condition.
1650 Register lhs = InputRegisterAt(condition, 0);
1651 Operand rhs = InputOperandAt(condition, 1);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001652 Condition arm64_cond = ARM64Condition(condition->GetCondition());
1653 if ((arm64_cond == eq || arm64_cond == ne) && rhs.IsImmediate() && (rhs.immediate() == 0)) {
1654 if (arm64_cond == eq) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001655 __ Cbz(lhs, true_target);
1656 } else {
1657 __ Cbnz(lhs, true_target);
1658 }
1659 } else {
1660 __ Cmp(lhs, rhs);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001661 __ B(arm64_cond, true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01001662 }
1663 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001664 if (!codegen_->GoesToNextBlock(if_instr->GetBlock(), if_instr->IfFalseSuccessor())) {
1665 __ B(false_target);
1666 }
1667}
1668
1669void LocationsBuilderARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001670 LocationSummary* locations =
1671 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Alexandre Rames5319def2014-10-23 10:03:10 +01001672 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001673 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001674}
1675
1676void InstructionCodeGeneratorARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001677 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), instruction->GetFieldOffset());
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001678
1679 if (instruction->IsVolatile()) {
1680 if (kUseAcquireRelease) {
Calin Juravle77520bc2015-01-12 18:45:46 +00001681 // NB: LoadAcquire will record the pc info if needed.
1682 codegen_->LoadAcquire(instruction, OutputCPURegister(instruction), field);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001683 } else {
1684 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
Calin Juravle77520bc2015-01-12 18:45:46 +00001685 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001686 // For IRIW sequential consistency kLoadAny is not sufficient.
1687 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1688 }
1689 } else {
1690 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
Calin Juravle77520bc2015-01-12 18:45:46 +00001691 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001692 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001693}
1694
1695void LocationsBuilderARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001696 LocationSummary* locations =
1697 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Alexandre Rames5319def2014-10-23 10:03:10 +01001698 locations->SetInAt(0, Location::RequiresRegister());
1699 locations->SetInAt(1, Location::RequiresRegister());
1700}
1701
1702void InstructionCodeGeneratorARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001703 Register obj = InputRegisterAt(instruction, 0);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001704 CPURegister value = InputCPURegisterAt(instruction, 1);
1705 Offset offset = instruction->GetFieldOffset();
1706 Primitive::Type field_type = instruction->GetFieldType();
1707
1708 if (instruction->IsVolatile()) {
1709 if (kUseAcquireRelease) {
1710 codegen_->StoreRelease(field_type, value, HeapOperand(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001711 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001712 } else {
1713 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
1714 codegen_->Store(field_type, value, HeapOperand(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001715 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001716 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1717 }
1718 } else {
1719 codegen_->Store(field_type, value, HeapOperand(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001720 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001721 }
1722
1723 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001724 codegen_->MarkGCCard(obj, Register(value));
Alexandre Rames5319def2014-10-23 10:03:10 +01001725 }
1726}
1727
Alexandre Rames67555f72014-11-18 10:55:16 +00001728void LocationsBuilderARM64::VisitInstanceOf(HInstanceOf* instruction) {
1729 LocationSummary::CallKind call_kind =
1730 instruction->IsClassFinal() ? LocationSummary::kNoCall : LocationSummary::kCallOnSlowPath;
1731 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
1732 locations->SetInAt(0, Location::RequiresRegister());
1733 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001734 // The output does overlap inputs.
1735 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Alexandre Rames67555f72014-11-18 10:55:16 +00001736}
1737
1738void InstructionCodeGeneratorARM64::VisitInstanceOf(HInstanceOf* instruction) {
1739 LocationSummary* locations = instruction->GetLocations();
1740 Register obj = InputRegisterAt(instruction, 0);;
1741 Register cls = InputRegisterAt(instruction, 1);;
1742 Register out = OutputRegister(instruction);
1743
1744 vixl::Label done;
1745
1746 // Return 0 if `obj` is null.
1747 // TODO: Avoid this check if we know `obj` is not null.
1748 __ Mov(out, 0);
1749 __ Cbz(obj, &done);
1750
1751 // Compare the class of `obj` with `cls`.
Serban Constantinescu02164b32014-11-13 14:05:07 +00001752 __ Ldr(out, HeapOperand(obj, mirror::Object::ClassOffset()));
Alexandre Rames67555f72014-11-18 10:55:16 +00001753 __ Cmp(out, cls);
1754 if (instruction->IsClassFinal()) {
1755 // Classes must be equal for the instanceof to succeed.
1756 __ Cset(out, eq);
1757 } else {
1758 // If the classes are not equal, we go into a slow path.
1759 DCHECK(locations->OnlyCallsOnSlowPath());
1760 SlowPathCodeARM64* slow_path =
Alexandre Rames3e69f162014-12-10 10:36:50 +00001761 new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
1762 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Alexandre Rames67555f72014-11-18 10:55:16 +00001763 codegen_->AddSlowPath(slow_path);
1764 __ B(ne, slow_path->GetEntryLabel());
1765 __ Mov(out, 1);
1766 __ Bind(slow_path->GetExitLabel());
1767 }
1768
1769 __ Bind(&done);
1770}
1771
Alexandre Rames5319def2014-10-23 10:03:10 +01001772void LocationsBuilderARM64::VisitIntConstant(HIntConstant* constant) {
1773 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
1774 locations->SetOut(Location::ConstantLocation(constant));
1775}
1776
1777void InstructionCodeGeneratorARM64::VisitIntConstant(HIntConstant* constant) {
1778 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001779 UNUSED(constant);
Alexandre Rames5319def2014-10-23 10:03:10 +01001780}
1781
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001782void LocationsBuilderARM64::VisitNullConstant(HNullConstant* constant) {
1783 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
1784 locations->SetOut(Location::ConstantLocation(constant));
1785}
1786
1787void InstructionCodeGeneratorARM64::VisitNullConstant(HNullConstant* constant) {
1788 // Will be generated at use site.
1789 UNUSED(constant);
1790}
1791
Alexandre Rames5319def2014-10-23 10:03:10 +01001792void LocationsBuilderARM64::HandleInvoke(HInvoke* invoke) {
1793 LocationSummary* locations =
1794 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
1795 locations->AddTemp(LocationFrom(x0));
1796
1797 InvokeDexCallingConventionVisitor calling_convention_visitor;
1798 for (size_t i = 0; i < invoke->InputCount(); i++) {
1799 HInstruction* input = invoke->InputAt(i);
1800 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1801 }
1802
1803 Primitive::Type return_type = invoke->GetType();
1804 if (return_type != Primitive::kPrimVoid) {
1805 locations->SetOut(calling_convention_visitor.GetReturnLocation(return_type));
1806 }
1807}
1808
Alexandre Rames67555f72014-11-18 10:55:16 +00001809void LocationsBuilderARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
1810 HandleInvoke(invoke);
1811}
1812
1813void InstructionCodeGeneratorARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
1814 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
1815 Register temp = WRegisterFrom(invoke->GetLocations()->GetTemp(0));
1816 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1817 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1818 Location receiver = invoke->GetLocations()->InAt(0);
1819 Offset class_offset = mirror::Object::ClassOffset();
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001820 Offset entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames67555f72014-11-18 10:55:16 +00001821
1822 // The register ip1 is required to be used for the hidden argument in
1823 // art_quick_imt_conflict_trampoline, so prevent VIXL from using it.
1824 UseScratchRegisterScope scratch_scope(GetVIXLAssembler());
1825 scratch_scope.Exclude(ip1);
1826 __ Mov(ip1, invoke->GetDexMethodIndex());
1827
1828 // temp = object->GetClass();
1829 if (receiver.IsStackSlot()) {
1830 __ Ldr(temp, StackOperandFrom(receiver));
1831 __ Ldr(temp, HeapOperand(temp, class_offset));
1832 } else {
1833 __ Ldr(temp, HeapOperandFrom(receiver, class_offset));
1834 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001835 codegen_->MaybeRecordImplicitNullCheck(invoke);
Alexandre Rames67555f72014-11-18 10:55:16 +00001836 // temp = temp->GetImtEntryAt(method_offset);
1837 __ Ldr(temp, HeapOperand(temp, method_offset));
1838 // lr = temp->GetEntryPoint();
1839 __ Ldr(lr, HeapOperand(temp, entry_point));
1840 // lr();
1841 __ Blr(lr);
1842 DCHECK(!codegen_->IsLeafMethod());
1843 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1844}
1845
1846void LocationsBuilderARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08001847 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
1848 if (intrinsic.TryDispatch(invoke)) {
1849 return;
1850 }
1851
Alexandre Rames67555f72014-11-18 10:55:16 +00001852 HandleInvoke(invoke);
1853}
1854
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001855void LocationsBuilderARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08001856 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
1857 if (intrinsic.TryDispatch(invoke)) {
1858 return;
1859 }
1860
Alexandre Rames67555f72014-11-18 10:55:16 +00001861 HandleInvoke(invoke);
1862}
1863
Andreas Gampe878d58c2015-01-15 23:24:00 -08001864static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM64* codegen) {
1865 if (invoke->GetLocations()->Intrinsified()) {
1866 IntrinsicCodeGeneratorARM64 intrinsic(codegen);
1867 intrinsic.Dispatch(invoke);
1868 return true;
1869 }
1870 return false;
1871}
1872
1873void CodeGeneratorARM64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Register temp) {
1874 // Make sure that ArtMethod* is passed in kArtMethodRegister as per the calling convention.
1875 DCHECK(temp.Is(kArtMethodRegister));
Alexandre Rames5319def2014-10-23 10:03:10 +01001876 size_t index_in_cache = mirror::Array::DataOffset(kHeapRefSize).SizeValue() +
Andreas Gampe878d58c2015-01-15 23:24:00 -08001877 invoke->GetDexMethodIndex() * kHeapRefSize;
Alexandre Rames5319def2014-10-23 10:03:10 +01001878
1879 // TODO: Implement all kinds of calls:
1880 // 1) boot -> boot
1881 // 2) app -> boot
1882 // 3) app -> app
1883 //
1884 // Currently we implement the app -> app logic, which looks up in the resolve cache.
1885
Nicolas Geoffray0a299b92015-01-29 11:39:44 +00001886 // temp = method;
1887 LoadCurrentMethod(temp);
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001888 if (!invoke->IsRecursive()) {
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001889 // temp = temp->dex_cache_resolved_methods_;
1890 __ Ldr(temp, HeapOperand(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset()));
1891 // temp = temp[index_in_cache];
1892 __ Ldr(temp, HeapOperand(temp, index_in_cache));
1893 // lr = temp->entry_point_from_quick_compiled_code_;
1894 __ Ldr(lr, HeapOperand(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
1895 kArm64WordSize)));
1896 // lr();
1897 __ Blr(lr);
1898 } else {
1899 __ Bl(&frame_entry_label_);
1900 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001901
Andreas Gampe878d58c2015-01-15 23:24:00 -08001902 RecordPcInfo(invoke, invoke->GetDexPc());
1903 DCHECK(!IsLeafMethod());
1904}
1905
1906void InstructionCodeGeneratorARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
1907 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1908 return;
1909 }
1910
1911 Register temp = WRegisterFrom(invoke->GetLocations()->GetTemp(0));
1912 codegen_->GenerateStaticOrDirectCall(invoke, temp);
Alexandre Rames5319def2014-10-23 10:03:10 +01001913}
1914
1915void InstructionCodeGeneratorARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08001916 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1917 return;
1918 }
1919
Alexandre Rames5319def2014-10-23 10:03:10 +01001920 LocationSummary* locations = invoke->GetLocations();
1921 Location receiver = locations->InAt(0);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001922 Register temp = WRegisterFrom(invoke->GetLocations()->GetTemp(0));
Alexandre Rames5319def2014-10-23 10:03:10 +01001923 size_t method_offset = mirror::Class::EmbeddedVTableOffset().SizeValue() +
1924 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1925 Offset class_offset = mirror::Object::ClassOffset();
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001926 Offset entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames5319def2014-10-23 10:03:10 +01001927
1928 // temp = object->GetClass();
1929 if (receiver.IsStackSlot()) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001930 __ Ldr(temp, MemOperand(sp, receiver.GetStackIndex()));
1931 __ Ldr(temp, HeapOperand(temp, class_offset));
Alexandre Rames5319def2014-10-23 10:03:10 +01001932 } else {
1933 DCHECK(receiver.IsRegister());
Serban Constantinescu02164b32014-11-13 14:05:07 +00001934 __ Ldr(temp, HeapOperandFrom(receiver, class_offset));
Alexandre Rames5319def2014-10-23 10:03:10 +01001935 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001936 codegen_->MaybeRecordImplicitNullCheck(invoke);
Alexandre Rames5319def2014-10-23 10:03:10 +01001937 // temp = temp->GetMethodAt(method_offset);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001938 __ Ldr(temp, HeapOperand(temp, method_offset));
Alexandre Rames5319def2014-10-23 10:03:10 +01001939 // lr = temp->GetEntryPoint();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001940 __ Ldr(lr, HeapOperand(temp, entry_point.SizeValue()));
Alexandre Rames5319def2014-10-23 10:03:10 +01001941 // lr();
1942 __ Blr(lr);
1943 DCHECK(!codegen_->IsLeafMethod());
1944 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1945}
1946
Alexandre Rames67555f72014-11-18 10:55:16 +00001947void LocationsBuilderARM64::VisitLoadClass(HLoadClass* cls) {
1948 LocationSummary::CallKind call_kind = cls->CanCallRuntime() ? LocationSummary::kCallOnSlowPath
1949 : LocationSummary::kNoCall;
1950 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
1951 locations->SetOut(Location::RequiresRegister());
1952}
1953
1954void InstructionCodeGeneratorARM64::VisitLoadClass(HLoadClass* cls) {
1955 Register out = OutputRegister(cls);
1956 if (cls->IsReferrersClass()) {
1957 DCHECK(!cls->CanCallRuntime());
1958 DCHECK(!cls->MustGenerateClinitCheck());
1959 codegen_->LoadCurrentMethod(out);
1960 __ Ldr(out, HeapOperand(out, mirror::ArtMethod::DeclaringClassOffset()));
1961 } else {
1962 DCHECK(cls->CanCallRuntime());
1963 codegen_->LoadCurrentMethod(out);
1964 __ Ldr(out, HeapOperand(out, mirror::ArtMethod::DexCacheResolvedTypesOffset()));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001965 __ Ldr(out, HeapOperand(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
Alexandre Rames67555f72014-11-18 10:55:16 +00001966
1967 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
1968 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
1969 codegen_->AddSlowPath(slow_path);
1970 __ Cbz(out, slow_path->GetEntryLabel());
1971 if (cls->MustGenerateClinitCheck()) {
1972 GenerateClassInitializationCheck(slow_path, out);
1973 } else {
1974 __ Bind(slow_path->GetExitLabel());
1975 }
1976 }
1977}
1978
1979void LocationsBuilderARM64::VisitLoadException(HLoadException* load) {
1980 LocationSummary* locations =
1981 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
1982 locations->SetOut(Location::RequiresRegister());
1983}
1984
1985void InstructionCodeGeneratorARM64::VisitLoadException(HLoadException* instruction) {
1986 MemOperand exception = MemOperand(tr, Thread::ExceptionOffset<kArm64WordSize>().Int32Value());
1987 __ Ldr(OutputRegister(instruction), exception);
1988 __ Str(wzr, exception);
1989}
1990
Alexandre Rames5319def2014-10-23 10:03:10 +01001991void LocationsBuilderARM64::VisitLoadLocal(HLoadLocal* load) {
1992 load->SetLocations(nullptr);
1993}
1994
1995void InstructionCodeGeneratorARM64::VisitLoadLocal(HLoadLocal* load) {
1996 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001997 UNUSED(load);
Alexandre Rames5319def2014-10-23 10:03:10 +01001998}
1999
Alexandre Rames67555f72014-11-18 10:55:16 +00002000void LocationsBuilderARM64::VisitLoadString(HLoadString* load) {
2001 LocationSummary* locations =
2002 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
2003 locations->SetOut(Location::RequiresRegister());
2004}
2005
2006void InstructionCodeGeneratorARM64::VisitLoadString(HLoadString* load) {
2007 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM64(load);
2008 codegen_->AddSlowPath(slow_path);
2009
2010 Register out = OutputRegister(load);
2011 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08002012 __ Ldr(out, HeapOperand(out, mirror::ArtMethod::DeclaringClassOffset()));
2013 __ Ldr(out, HeapOperand(out, mirror::Class::DexCacheStringsOffset()));
Serban Constantinescu02164b32014-11-13 14:05:07 +00002014 __ Ldr(out, HeapOperand(out, CodeGenerator::GetCacheOffset(load->GetStringIndex())));
Alexandre Rames67555f72014-11-18 10:55:16 +00002015 __ Cbz(out, slow_path->GetEntryLabel());
2016 __ Bind(slow_path->GetExitLabel());
2017}
2018
Alexandre Rames5319def2014-10-23 10:03:10 +01002019void LocationsBuilderARM64::VisitLocal(HLocal* local) {
2020 local->SetLocations(nullptr);
2021}
2022
2023void InstructionCodeGeneratorARM64::VisitLocal(HLocal* local) {
2024 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
2025}
2026
2027void LocationsBuilderARM64::VisitLongConstant(HLongConstant* constant) {
2028 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2029 locations->SetOut(Location::ConstantLocation(constant));
2030}
2031
2032void InstructionCodeGeneratorARM64::VisitLongConstant(HLongConstant* constant) {
2033 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002034 UNUSED(constant);
Alexandre Rames5319def2014-10-23 10:03:10 +01002035}
2036
Alexandre Rames67555f72014-11-18 10:55:16 +00002037void LocationsBuilderARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
2038 LocationSummary* locations =
2039 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2040 InvokeRuntimeCallingConvention calling_convention;
2041 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
2042}
2043
2044void InstructionCodeGeneratorARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
2045 codegen_->InvokeRuntime(instruction->IsEnter()
2046 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
2047 instruction,
2048 instruction->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002049 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00002050}
2051
Alexandre Rames42d641b2014-10-27 14:00:51 +00002052void LocationsBuilderARM64::VisitMul(HMul* mul) {
2053 LocationSummary* locations =
2054 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2055 switch (mul->GetResultType()) {
2056 case Primitive::kPrimInt:
2057 case Primitive::kPrimLong:
2058 locations->SetInAt(0, Location::RequiresRegister());
2059 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002060 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00002061 break;
2062
2063 case Primitive::kPrimFloat:
2064 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002065 locations->SetInAt(0, Location::RequiresFpuRegister());
2066 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00002067 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00002068 break;
2069
2070 default:
2071 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
2072 }
2073}
2074
2075void InstructionCodeGeneratorARM64::VisitMul(HMul* mul) {
2076 switch (mul->GetResultType()) {
2077 case Primitive::kPrimInt:
2078 case Primitive::kPrimLong:
2079 __ Mul(OutputRegister(mul), InputRegisterAt(mul, 0), InputRegisterAt(mul, 1));
2080 break;
2081
2082 case Primitive::kPrimFloat:
2083 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002084 __ Fmul(OutputFPRegister(mul), InputFPRegisterAt(mul, 0), InputFPRegisterAt(mul, 1));
Alexandre Rames42d641b2014-10-27 14:00:51 +00002085 break;
2086
2087 default:
2088 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
2089 }
2090}
2091
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002092void LocationsBuilderARM64::VisitNeg(HNeg* neg) {
2093 LocationSummary* locations =
2094 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2095 switch (neg->GetResultType()) {
2096 case Primitive::kPrimInt:
Alexandre Rames67555f72014-11-18 10:55:16 +00002097 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002098 locations->SetInAt(0, Location::RegisterOrConstant(neg->InputAt(0)));
Alexandre Rames67555f72014-11-18 10:55:16 +00002099 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002100 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002101
2102 case Primitive::kPrimFloat:
2103 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00002104 locations->SetInAt(0, Location::RequiresFpuRegister());
2105 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002106 break;
2107
2108 default:
2109 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2110 }
2111}
2112
2113void InstructionCodeGeneratorARM64::VisitNeg(HNeg* neg) {
2114 switch (neg->GetResultType()) {
2115 case Primitive::kPrimInt:
2116 case Primitive::kPrimLong:
2117 __ Neg(OutputRegister(neg), InputOperandAt(neg, 0));
2118 break;
2119
2120 case Primitive::kPrimFloat:
2121 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00002122 __ Fneg(OutputFPRegister(neg), InputFPRegisterAt(neg, 0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002123 break;
2124
2125 default:
2126 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2127 }
2128}
2129
2130void LocationsBuilderARM64::VisitNewArray(HNewArray* instruction) {
2131 LocationSummary* locations =
2132 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2133 InvokeRuntimeCallingConvention calling_convention;
2134 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002135 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(2)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002136 locations->SetOut(LocationFrom(x0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002137 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
2138 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
2139 void*, uint32_t, int32_t, mirror::ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002140}
2141
2142void InstructionCodeGeneratorARM64::VisitNewArray(HNewArray* instruction) {
2143 LocationSummary* locations = instruction->GetLocations();
2144 InvokeRuntimeCallingConvention calling_convention;
2145 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
2146 DCHECK(type_index.Is(w0));
2147 Register current_method = RegisterFrom(locations->GetTemp(1), Primitive::kPrimNot);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002148 DCHECK(current_method.Is(w2));
Alexandre Rames67555f72014-11-18 10:55:16 +00002149 codegen_->LoadCurrentMethod(current_method);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002150 __ Mov(type_index, instruction->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +00002151 codegen_->InvokeRuntime(
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002152 GetThreadOffset<kArm64WordSize>(instruction->GetEntrypoint()).Int32Value(),
2153 instruction,
2154 instruction->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002155 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
2156 void*, uint32_t, int32_t, mirror::ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002157}
2158
Alexandre Rames5319def2014-10-23 10:03:10 +01002159void LocationsBuilderARM64::VisitNewInstance(HNewInstance* instruction) {
2160 LocationSummary* locations =
2161 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2162 InvokeRuntimeCallingConvention calling_convention;
2163 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
2164 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(1)));
2165 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002166 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, mirror::ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01002167}
2168
2169void InstructionCodeGeneratorARM64::VisitNewInstance(HNewInstance* instruction) {
2170 LocationSummary* locations = instruction->GetLocations();
2171 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
2172 DCHECK(type_index.Is(w0));
2173 Register current_method = RegisterFrom(locations->GetTemp(1), Primitive::kPrimNot);
2174 DCHECK(current_method.Is(w1));
Alexandre Rames67555f72014-11-18 10:55:16 +00002175 codegen_->LoadCurrentMethod(current_method);
Alexandre Rames5319def2014-10-23 10:03:10 +01002176 __ Mov(type_index, instruction->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +00002177 codegen_->InvokeRuntime(
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002178 GetThreadOffset<kArm64WordSize>(instruction->GetEntrypoint()).Int32Value(),
2179 instruction,
2180 instruction->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002181 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, mirror::ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01002182}
2183
2184void LocationsBuilderARM64::VisitNot(HNot* instruction) {
2185 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexandre Rames4e596512014-11-07 15:56:50 +00002186 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002187 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01002188}
2189
2190void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) {
2191 switch (instruction->InputAt(0)->GetType()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002192 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01002193 case Primitive::kPrimLong:
Roland Levillain55dcfb52014-10-24 18:09:09 +01002194 __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0));
Alexandre Rames5319def2014-10-23 10:03:10 +01002195 break;
2196
2197 default:
2198 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
2199 }
2200}
2201
2202void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) {
2203 LocationSummary* locations =
2204 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2205 locations->SetInAt(0, Location::RequiresRegister());
2206 if (instruction->HasUses()) {
2207 locations->SetOut(Location::SameAsFirstInput());
2208 }
2209}
2210
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002211void InstructionCodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00002212 if (codegen_->CanMoveNullCheckToUser(instruction)) {
2213 return;
2214 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002215 Location obj = instruction->GetLocations()->InAt(0);
2216
2217 __ Ldr(wzr, HeapOperandFrom(obj, Offset(0)));
2218 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2219}
2220
2221void InstructionCodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002222 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM64(instruction);
2223 codegen_->AddSlowPath(slow_path);
2224
2225 LocationSummary* locations = instruction->GetLocations();
2226 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00002227
2228 __ Cbz(RegisterFrom(obj, instruction->InputAt(0)->GetType()), slow_path->GetEntryLabel());
Alexandre Rames5319def2014-10-23 10:03:10 +01002229}
2230
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002231void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) {
2232 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
2233 GenerateImplicitNullCheck(instruction);
2234 } else {
2235 GenerateExplicitNullCheck(instruction);
2236 }
2237}
2238
Alexandre Rames67555f72014-11-18 10:55:16 +00002239void LocationsBuilderARM64::VisitOr(HOr* instruction) {
2240 HandleBinaryOp(instruction);
2241}
2242
2243void InstructionCodeGeneratorARM64::VisitOr(HOr* instruction) {
2244 HandleBinaryOp(instruction);
2245}
2246
Alexandre Rames3e69f162014-12-10 10:36:50 +00002247void LocationsBuilderARM64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
2248 LOG(FATAL) << "Unreachable";
2249}
2250
2251void InstructionCodeGeneratorARM64::VisitParallelMove(HParallelMove* instruction) {
2252 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
2253}
2254
Alexandre Rames5319def2014-10-23 10:03:10 +01002255void LocationsBuilderARM64::VisitParameterValue(HParameterValue* instruction) {
2256 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2257 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2258 if (location.IsStackSlot()) {
2259 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2260 } else if (location.IsDoubleStackSlot()) {
2261 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2262 }
2263 locations->SetOut(location);
2264}
2265
2266void InstructionCodeGeneratorARM64::VisitParameterValue(HParameterValue* instruction) {
2267 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002268 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002269}
2270
2271void LocationsBuilderARM64::VisitPhi(HPhi* instruction) {
2272 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2273 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2274 locations->SetInAt(i, Location::Any());
2275 }
2276 locations->SetOut(Location::Any());
2277}
2278
2279void InstructionCodeGeneratorARM64::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002280 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002281 LOG(FATAL) << "Unreachable";
2282}
2283
Serban Constantinescu02164b32014-11-13 14:05:07 +00002284void LocationsBuilderARM64::VisitRem(HRem* rem) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002285 Primitive::Type type = rem->GetResultType();
Alexandre Rames542361f2015-01-29 16:57:31 +00002286 LocationSummary::CallKind call_kind =
2287 Primitive::IsFloatingPointType(type) ? LocationSummary::kCall : LocationSummary::kNoCall;
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002288 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2289
2290 switch (type) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002291 case Primitive::kPrimInt:
2292 case Primitive::kPrimLong:
2293 locations->SetInAt(0, Location::RequiresRegister());
2294 locations->SetInAt(1, Location::RequiresRegister());
2295 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2296 break;
2297
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002298 case Primitive::kPrimFloat:
2299 case Primitive::kPrimDouble: {
2300 InvokeRuntimeCallingConvention calling_convention;
2301 locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0)));
2302 locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1)));
2303 locations->SetOut(calling_convention.GetReturnLocation(type));
2304
2305 break;
2306 }
2307
Serban Constantinescu02164b32014-11-13 14:05:07 +00002308 default:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002309 LOG(FATAL) << "Unexpected rem type " << type;
Serban Constantinescu02164b32014-11-13 14:05:07 +00002310 }
2311}
2312
2313void InstructionCodeGeneratorARM64::VisitRem(HRem* rem) {
2314 Primitive::Type type = rem->GetResultType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002315
Serban Constantinescu02164b32014-11-13 14:05:07 +00002316 switch (type) {
2317 case Primitive::kPrimInt:
2318 case Primitive::kPrimLong: {
2319 UseScratchRegisterScope temps(GetVIXLAssembler());
2320 Register dividend = InputRegisterAt(rem, 0);
2321 Register divisor = InputRegisterAt(rem, 1);
2322 Register output = OutputRegister(rem);
2323 Register temp = temps.AcquireSameSizeAs(output);
2324
2325 __ Sdiv(temp, dividend, divisor);
2326 __ Msub(output, temp, divisor, dividend);
2327 break;
2328 }
2329
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002330 case Primitive::kPrimFloat:
2331 case Primitive::kPrimDouble: {
2332 int32_t entry_offset = (type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pFmodf)
2333 : QUICK_ENTRY_POINT(pFmod);
2334 codegen_->InvokeRuntime(entry_offset, rem, rem->GetDexPc());
2335 break;
2336 }
2337
Serban Constantinescu02164b32014-11-13 14:05:07 +00002338 default:
2339 LOG(FATAL) << "Unexpected rem type " << type;
2340 }
2341}
2342
Alexandre Rames5319def2014-10-23 10:03:10 +01002343void LocationsBuilderARM64::VisitReturn(HReturn* instruction) {
2344 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2345 Primitive::Type return_type = instruction->InputAt(0)->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002346 locations->SetInAt(0, ARM64ReturnLocation(return_type));
Alexandre Rames5319def2014-10-23 10:03:10 +01002347}
2348
2349void InstructionCodeGeneratorARM64::VisitReturn(HReturn* instruction) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002350 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002351 codegen_->GenerateFrameExit();
Alexandre Rames3e69f162014-12-10 10:36:50 +00002352 __ Ret();
Alexandre Rames5319def2014-10-23 10:03:10 +01002353}
2354
2355void LocationsBuilderARM64::VisitReturnVoid(HReturnVoid* instruction) {
2356 instruction->SetLocations(nullptr);
2357}
2358
2359void InstructionCodeGeneratorARM64::VisitReturnVoid(HReturnVoid* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002360 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002361 codegen_->GenerateFrameExit();
Alexandre Rames3e69f162014-12-10 10:36:50 +00002362 __ Ret();
Alexandre Rames5319def2014-10-23 10:03:10 +01002363}
2364
Serban Constantinescu02164b32014-11-13 14:05:07 +00002365void LocationsBuilderARM64::VisitShl(HShl* shl) {
2366 HandleShift(shl);
2367}
2368
2369void InstructionCodeGeneratorARM64::VisitShl(HShl* shl) {
2370 HandleShift(shl);
2371}
2372
2373void LocationsBuilderARM64::VisitShr(HShr* shr) {
2374 HandleShift(shr);
2375}
2376
2377void InstructionCodeGeneratorARM64::VisitShr(HShr* shr) {
2378 HandleShift(shr);
2379}
2380
Alexandre Rames5319def2014-10-23 10:03:10 +01002381void LocationsBuilderARM64::VisitStoreLocal(HStoreLocal* store) {
2382 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
2383 Primitive::Type field_type = store->InputAt(1)->GetType();
2384 switch (field_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002385 case Primitive::kPrimNot:
Alexandre Rames5319def2014-10-23 10:03:10 +01002386 case Primitive::kPrimBoolean:
2387 case Primitive::kPrimByte:
2388 case Primitive::kPrimChar:
2389 case Primitive::kPrimShort:
2390 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002391 case Primitive::kPrimFloat:
Alexandre Rames5319def2014-10-23 10:03:10 +01002392 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
2393 break;
2394
2395 case Primitive::kPrimLong:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002396 case Primitive::kPrimDouble:
Alexandre Rames5319def2014-10-23 10:03:10 +01002397 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
2398 break;
2399
2400 default:
2401 LOG(FATAL) << "Unimplemented local type " << field_type;
2402 }
2403}
2404
2405void InstructionCodeGeneratorARM64::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002406 UNUSED(store);
Alexandre Rames5319def2014-10-23 10:03:10 +01002407}
2408
2409void LocationsBuilderARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002410 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002411}
2412
2413void InstructionCodeGeneratorARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002414 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002415}
2416
Alexandre Rames67555f72014-11-18 10:55:16 +00002417void LocationsBuilderARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
2418 LocationSummary* locations =
2419 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2420 locations->SetInAt(0, Location::RequiresRegister());
2421 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2422}
2423
2424void InstructionCodeGeneratorARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002425 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), instruction->GetFieldOffset());
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002426
2427 if (instruction->IsVolatile()) {
2428 if (kUseAcquireRelease) {
Calin Juravle77520bc2015-01-12 18:45:46 +00002429 // NB: LoadAcquire will record the pc info if needed.
2430 codegen_->LoadAcquire(instruction, OutputCPURegister(instruction), field);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002431 } else {
2432 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
2433 // For IRIW sequential consistency kLoadAny is not sufficient.
2434 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2435 }
2436 } else {
2437 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
2438 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002439}
2440
2441void LocationsBuilderARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002442 LocationSummary* locations =
2443 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2444 locations->SetInAt(0, Location::RequiresRegister());
2445 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Rames5319def2014-10-23 10:03:10 +01002446}
2447
Alexandre Rames67555f72014-11-18 10:55:16 +00002448void InstructionCodeGeneratorARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002449 Register cls = InputRegisterAt(instruction, 0);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002450 CPURegister value = InputCPURegisterAt(instruction, 1);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002451 Offset offset = instruction->GetFieldOffset();
Alexandre Rames67555f72014-11-18 10:55:16 +00002452 Primitive::Type field_type = instruction->GetFieldType();
Alexandre Rames5319def2014-10-23 10:03:10 +01002453
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002454 if (instruction->IsVolatile()) {
2455 if (kUseAcquireRelease) {
2456 codegen_->StoreRelease(field_type, value, HeapOperand(cls, offset));
2457 } else {
2458 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
2459 codegen_->Store(field_type, value, HeapOperand(cls, offset));
2460 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2461 }
2462 } else {
2463 codegen_->Store(field_type, value, HeapOperand(cls, offset));
2464 }
2465
2466 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002467 codegen_->MarkGCCard(cls, Register(value));
2468 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002469}
2470
2471void LocationsBuilderARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
2472 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
2473}
2474
2475void InstructionCodeGeneratorARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002476 HBasicBlock* block = instruction->GetBlock();
2477 if (block->GetLoopInformation() != nullptr) {
2478 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
2479 // The back edge will generate the suspend check.
2480 return;
2481 }
2482 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
2483 // The goto will generate the suspend check.
2484 return;
2485 }
2486 GenerateSuspendCheck(instruction, nullptr);
Alexandre Rames5319def2014-10-23 10:03:10 +01002487}
2488
2489void LocationsBuilderARM64::VisitTemporary(HTemporary* temp) {
2490 temp->SetLocations(nullptr);
2491}
2492
2493void InstructionCodeGeneratorARM64::VisitTemporary(HTemporary* temp) {
2494 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002495 UNUSED(temp);
Alexandre Rames5319def2014-10-23 10:03:10 +01002496}
2497
Alexandre Rames67555f72014-11-18 10:55:16 +00002498void LocationsBuilderARM64::VisitThrow(HThrow* instruction) {
2499 LocationSummary* locations =
2500 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2501 InvokeRuntimeCallingConvention calling_convention;
2502 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
2503}
2504
2505void InstructionCodeGeneratorARM64::VisitThrow(HThrow* instruction) {
2506 codegen_->InvokeRuntime(
2507 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc());
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002508 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00002509}
2510
2511void LocationsBuilderARM64::VisitTypeConversion(HTypeConversion* conversion) {
2512 LocationSummary* locations =
2513 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
2514 Primitive::Type input_type = conversion->GetInputType();
2515 Primitive::Type result_type = conversion->GetResultType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002516 DCHECK_NE(input_type, result_type);
Alexandre Rames67555f72014-11-18 10:55:16 +00002517 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
2518 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
2519 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
2520 }
2521
Alexandre Rames542361f2015-01-29 16:57:31 +00002522 if (Primitive::IsFloatingPointType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002523 locations->SetInAt(0, Location::RequiresFpuRegister());
2524 } else {
2525 locations->SetInAt(0, Location::RequiresRegister());
2526 }
2527
Alexandre Rames542361f2015-01-29 16:57:31 +00002528 if (Primitive::IsFloatingPointType(result_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002529 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2530 } else {
2531 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2532 }
2533}
2534
2535void InstructionCodeGeneratorARM64::VisitTypeConversion(HTypeConversion* conversion) {
2536 Primitive::Type result_type = conversion->GetResultType();
2537 Primitive::Type input_type = conversion->GetInputType();
2538
2539 DCHECK_NE(input_type, result_type);
2540
Alexandre Rames542361f2015-01-29 16:57:31 +00002541 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002542 int result_size = Primitive::ComponentSize(result_type);
2543 int input_size = Primitive::ComponentSize(input_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00002544 int min_size = std::min(result_size, input_size);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002545 Register output = OutputRegister(conversion);
2546 Register source = InputRegisterAt(conversion, 0);
Alexandre Rames3e69f162014-12-10 10:36:50 +00002547 if ((result_type == Primitive::kPrimChar) && (input_size < result_size)) {
2548 __ Ubfx(output, source, 0, result_size * kBitsPerByte);
2549 } else if ((result_type == Primitive::kPrimChar) ||
2550 ((input_type == Primitive::kPrimChar) && (result_size > input_size))) {
2551 __ Ubfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00002552 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00002553 __ Sbfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00002554 }
Alexandre Rames542361f2015-01-29 16:57:31 +00002555 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002556 __ Scvtf(OutputFPRegister(conversion), InputRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00002557 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002558 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
2559 __ Fcvtzs(OutputRegister(conversion), InputFPRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00002560 } else if (Primitive::IsFloatingPointType(result_type) &&
2561 Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002562 __ Fcvt(OutputFPRegister(conversion), InputFPRegisterAt(conversion, 0));
2563 } else {
2564 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
2565 << " to " << result_type;
Alexandre Rames67555f72014-11-18 10:55:16 +00002566 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00002567}
Alexandre Rames67555f72014-11-18 10:55:16 +00002568
Serban Constantinescu02164b32014-11-13 14:05:07 +00002569void LocationsBuilderARM64::VisitUShr(HUShr* ushr) {
2570 HandleShift(ushr);
2571}
2572
2573void InstructionCodeGeneratorARM64::VisitUShr(HUShr* ushr) {
2574 HandleShift(ushr);
Alexandre Rames67555f72014-11-18 10:55:16 +00002575}
2576
2577void LocationsBuilderARM64::VisitXor(HXor* instruction) {
2578 HandleBinaryOp(instruction);
2579}
2580
2581void InstructionCodeGeneratorARM64::VisitXor(HXor* instruction) {
2582 HandleBinaryOp(instruction);
2583}
2584
Calin Juravleb1498f62015-02-16 13:13:29 +00002585void LocationsBuilderARM64::VisitBoundType(HBoundType* instruction) {
2586 // Nothing to do, this should be removed during prepare for register allocator.
2587 UNUSED(instruction);
2588 LOG(FATAL) << "Unreachable";
2589}
2590
2591void InstructionCodeGeneratorARM64::VisitBoundType(HBoundType* instruction) {
2592 // Nothing to do, this should be removed during prepare for register allocator.
2593 UNUSED(instruction);
2594 LOG(FATAL) << "Unreachable";
2595}
2596
Alexandre Rames67555f72014-11-18 10:55:16 +00002597#undef __
2598#undef QUICK_ENTRY_POINT
2599
Alexandre Rames5319def2014-10-23 10:03:10 +01002600} // namespace arm64
2601} // namespace art