blob: 5cb02172d22362f9f8f4f71db24b77040c31c372 [file] [log] [blame]
Alexandre Rames5319def2014-10-23 10:03:10 +01001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include "code_generator_arm64.h"
18
Serban Constantinescu579885a2015-02-22 20:51:33 +000019#include "arch/arm64/instruction_set_features_arm64.h"
Andreas Gampe878d58c2015-01-15 23:24:00 -080020#include "common_arm64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010021#include "entrypoints/quick/quick_entrypoints.h"
Andreas Gampe1cc7dba2014-12-17 18:43:01 -080022#include "entrypoints/quick/quick_entrypoints_enum.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010023#include "gc/accounting/card_table.h"
Andreas Gampe878d58c2015-01-15 23:24:00 -080024#include "intrinsics.h"
25#include "intrinsics_arm64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010026#include "mirror/array-inl.h"
27#include "mirror/art_method.h"
28#include "mirror/class.h"
Calin Juravlecd6dffe2015-01-08 17:35:35 +000029#include "offsets.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010030#include "thread.h"
31#include "utils/arm64/assembler_arm64.h"
32#include "utils/assembler.h"
33#include "utils/stack_checks.h"
34
35
36using namespace vixl; // NOLINT(build/namespaces)
37
38#ifdef __
39#error "ARM64 Codegen VIXL macro-assembler macro already defined."
40#endif
41
Alexandre Rames5319def2014-10-23 10:03:10 +010042namespace art {
43
44namespace arm64 {
45
Andreas Gampe878d58c2015-01-15 23:24:00 -080046using helpers::CPURegisterFrom;
47using helpers::DRegisterFrom;
48using helpers::FPRegisterFrom;
49using helpers::HeapOperand;
50using helpers::HeapOperandFrom;
51using helpers::InputCPURegisterAt;
52using helpers::InputFPRegisterAt;
53using helpers::InputRegisterAt;
54using helpers::InputOperandAt;
55using helpers::Int64ConstantFrom;
Andreas Gampe878d58c2015-01-15 23:24:00 -080056using helpers::LocationFrom;
57using helpers::OperandFromMemOperand;
58using helpers::OutputCPURegister;
59using helpers::OutputFPRegister;
60using helpers::OutputRegister;
61using helpers::RegisterFrom;
62using helpers::StackOperandFrom;
63using helpers::VIXLRegCodeFromART;
64using helpers::WRegisterFrom;
65using helpers::XRegisterFrom;
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +000066using helpers::ARM64EncodableConstantOrRegister;
Andreas Gampe878d58c2015-01-15 23:24:00 -080067
Alexandre Rames5319def2014-10-23 10:03:10 +010068static constexpr size_t kHeapRefSize = sizeof(mirror::HeapReference<mirror::Object>);
69static constexpr int kCurrentMethodStackOffset = 0;
70
Alexandre Rames5319def2014-10-23 10:03:10 +010071inline Condition ARM64Condition(IfCondition cond) {
72 switch (cond) {
73 case kCondEQ: return eq;
74 case kCondNE: return ne;
75 case kCondLT: return lt;
76 case kCondLE: return le;
77 case kCondGT: return gt;
78 case kCondGE: return ge;
79 default:
80 LOG(FATAL) << "Unknown if condition";
81 }
82 return nv; // Unreachable.
83}
84
Alexandre Ramesa89086e2014-11-07 17:13:25 +000085Location ARM64ReturnLocation(Primitive::Type return_type) {
86 DCHECK_NE(return_type, Primitive::kPrimVoid);
87 // Note that in practice, `LocationFrom(x0)` and `LocationFrom(w0)` create the
88 // same Location object, and so do `LocationFrom(d0)` and `LocationFrom(s0)`,
89 // but we use the exact registers for clarity.
90 if (return_type == Primitive::kPrimFloat) {
91 return LocationFrom(s0);
92 } else if (return_type == Primitive::kPrimDouble) {
93 return LocationFrom(d0);
94 } else if (return_type == Primitive::kPrimLong) {
95 return LocationFrom(x0);
96 } else {
97 return LocationFrom(w0);
98 }
99}
100
Alexandre Rames5319def2014-10-23 10:03:10 +0100101Location InvokeRuntimeCallingConvention::GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000102 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100103}
104
Alexandre Rames67555f72014-11-18 10:55:16 +0000105#define __ down_cast<CodeGeneratorARM64*>(codegen)->GetVIXLAssembler()->
106#define QUICK_ENTRY_POINT(x) QUICK_ENTRYPOINT_OFFSET(kArm64WordSize, x).Int32Value()
Alexandre Rames5319def2014-10-23 10:03:10 +0100107
Alexandre Rames5319def2014-10-23 10:03:10 +0100108class BoundsCheckSlowPathARM64 : public SlowPathCodeARM64 {
109 public:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000110 BoundsCheckSlowPathARM64(HBoundsCheck* instruction,
111 Location index_location,
112 Location length_location)
113 : instruction_(instruction),
114 index_location_(index_location),
115 length_location_(length_location) {}
116
Alexandre Rames5319def2014-10-23 10:03:10 +0100117
Alexandre Rames67555f72014-11-18 10:55:16 +0000118 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000119 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100120 __ Bind(GetEntryLabel());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000121 // We're moving two locations to locations that could overlap, so we need a parallel
122 // move resolver.
123 InvokeRuntimeCallingConvention calling_convention;
124 codegen->EmitParallelMoves(
125 index_location_, LocationFrom(calling_convention.GetRegisterAt(0)),
126 length_location_, LocationFrom(calling_convention.GetRegisterAt(1)));
127 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000128 QUICK_ENTRY_POINT(pThrowArrayBounds), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800129 CheckEntrypointTypes<kQuickThrowArrayBounds, void, int32_t, int32_t>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100130 }
131
132 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000133 HBoundsCheck* const instruction_;
134 const Location index_location_;
135 const Location length_location_;
136
Alexandre Rames5319def2014-10-23 10:03:10 +0100137 DISALLOW_COPY_AND_ASSIGN(BoundsCheckSlowPathARM64);
138};
139
Alexandre Rames67555f72014-11-18 10:55:16 +0000140class DivZeroCheckSlowPathARM64 : public SlowPathCodeARM64 {
141 public:
142 explicit DivZeroCheckSlowPathARM64(HDivZeroCheck* instruction) : instruction_(instruction) {}
143
144 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
145 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
146 __ Bind(GetEntryLabel());
147 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000148 QUICK_ENTRY_POINT(pThrowDivZero), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800149 CheckEntrypointTypes<kQuickThrowDivZero, void, void>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000150 }
151
152 private:
153 HDivZeroCheck* const instruction_;
154 DISALLOW_COPY_AND_ASSIGN(DivZeroCheckSlowPathARM64);
155};
156
157class LoadClassSlowPathARM64 : public SlowPathCodeARM64 {
158 public:
159 LoadClassSlowPathARM64(HLoadClass* cls,
160 HInstruction* at,
161 uint32_t dex_pc,
162 bool do_clinit)
163 : cls_(cls), at_(at), dex_pc_(dex_pc), do_clinit_(do_clinit) {
164 DCHECK(at->IsLoadClass() || at->IsClinitCheck());
165 }
166
167 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
168 LocationSummary* locations = at_->GetLocations();
169 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
170
171 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000172 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000173
174 InvokeRuntimeCallingConvention calling_convention;
175 __ Mov(calling_convention.GetRegisterAt(0).W(), cls_->GetTypeIndex());
176 arm64_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1).W());
177 int32_t entry_point_offset = do_clinit_ ? QUICK_ENTRY_POINT(pInitializeStaticStorage)
178 : QUICK_ENTRY_POINT(pInitializeType);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000179 arm64_codegen->InvokeRuntime(entry_point_offset, at_, dex_pc_, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800180 if (do_clinit_) {
181 CheckEntrypointTypes<kQuickInitializeStaticStorage, void*, uint32_t, mirror::ArtMethod*>();
182 } else {
183 CheckEntrypointTypes<kQuickInitializeType, void*, uint32_t, mirror::ArtMethod*>();
184 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000185
186 // Move the class to the desired location.
187 Location out = locations->Out();
188 if (out.IsValid()) {
189 DCHECK(out.IsRegister() && !locations->GetLiveRegisters()->ContainsCoreRegister(out.reg()));
190 Primitive::Type type = at_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000191 arm64_codegen->MoveLocation(out, calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000192 }
193
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000194 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000195 __ B(GetExitLabel());
196 }
197
198 private:
199 // The class this slow path will load.
200 HLoadClass* const cls_;
201
202 // The instruction where this slow path is happening.
203 // (Might be the load class or an initialization check).
204 HInstruction* const at_;
205
206 // The dex PC of `at_`.
207 const uint32_t dex_pc_;
208
209 // Whether to initialize the class.
210 const bool do_clinit_;
211
212 DISALLOW_COPY_AND_ASSIGN(LoadClassSlowPathARM64);
213};
214
215class LoadStringSlowPathARM64 : public SlowPathCodeARM64 {
216 public:
217 explicit LoadStringSlowPathARM64(HLoadString* instruction) : instruction_(instruction) {}
218
219 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
220 LocationSummary* locations = instruction_->GetLocations();
221 DCHECK(!locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
222 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
223
224 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000225 SaveLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000226
227 InvokeRuntimeCallingConvention calling_convention;
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800228 arm64_codegen->LoadCurrentMethod(calling_convention.GetRegisterAt(1).W());
229 __ Mov(calling_convention.GetRegisterAt(0).W(), instruction_->GetStringIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +0000230 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000231 QUICK_ENTRY_POINT(pResolveString), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800232 CheckEntrypointTypes<kQuickResolveString, void*, uint32_t, mirror::ArtMethod*>();
Alexandre Rames67555f72014-11-18 10:55:16 +0000233 Primitive::Type type = instruction_->GetType();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000234 arm64_codegen->MoveLocation(locations->Out(), calling_convention.GetReturnLocation(type), type);
Alexandre Rames67555f72014-11-18 10:55:16 +0000235
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000236 RestoreLiveRegisters(codegen, locations);
Alexandre Rames67555f72014-11-18 10:55:16 +0000237 __ B(GetExitLabel());
238 }
239
240 private:
241 HLoadString* const instruction_;
242
243 DISALLOW_COPY_AND_ASSIGN(LoadStringSlowPathARM64);
244};
245
Alexandre Rames5319def2014-10-23 10:03:10 +0100246class NullCheckSlowPathARM64 : public SlowPathCodeARM64 {
247 public:
248 explicit NullCheckSlowPathARM64(HNullCheck* instr) : instruction_(instr) {}
249
Alexandre Rames67555f72014-11-18 10:55:16 +0000250 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
251 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100252 __ Bind(GetEntryLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +0000253 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000254 QUICK_ENTRY_POINT(pThrowNullPointer), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800255 CheckEntrypointTypes<kQuickThrowNullPointer, void, void>();
Alexandre Rames5319def2014-10-23 10:03:10 +0100256 }
257
258 private:
259 HNullCheck* const instruction_;
260
261 DISALLOW_COPY_AND_ASSIGN(NullCheckSlowPathARM64);
262};
263
264class SuspendCheckSlowPathARM64 : public SlowPathCodeARM64 {
265 public:
266 explicit SuspendCheckSlowPathARM64(HSuspendCheck* instruction,
267 HBasicBlock* successor)
268 : instruction_(instruction), successor_(successor) {}
269
Alexandre Rames67555f72014-11-18 10:55:16 +0000270 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
271 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
Alexandre Rames5319def2014-10-23 10:03:10 +0100272 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000273 SaveLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000274 arm64_codegen->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000275 QUICK_ENTRY_POINT(pTestSuspend), instruction_, instruction_->GetDexPc(), this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800276 CheckEntrypointTypes<kQuickTestSuspend, void, void>();
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000277 RestoreLiveRegisters(codegen, instruction_->GetLocations());
Alexandre Rames67555f72014-11-18 10:55:16 +0000278 if (successor_ == nullptr) {
279 __ B(GetReturnLabel());
280 } else {
281 __ B(arm64_codegen->GetLabelOf(successor_));
282 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100283 }
284
285 vixl::Label* GetReturnLabel() {
286 DCHECK(successor_ == nullptr);
287 return &return_label_;
288 }
289
Alexandre Rames5319def2014-10-23 10:03:10 +0100290 private:
291 HSuspendCheck* const instruction_;
292 // If not null, the block to branch to after the suspend check.
293 HBasicBlock* const successor_;
294
295 // If `successor_` is null, the label to branch to after the suspend check.
296 vixl::Label return_label_;
297
298 DISALLOW_COPY_AND_ASSIGN(SuspendCheckSlowPathARM64);
299};
300
Alexandre Rames67555f72014-11-18 10:55:16 +0000301class TypeCheckSlowPathARM64 : public SlowPathCodeARM64 {
302 public:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000303 TypeCheckSlowPathARM64(HInstruction* instruction,
304 Location class_to_check,
305 Location object_class,
306 uint32_t dex_pc)
307 : instruction_(instruction),
308 class_to_check_(class_to_check),
309 object_class_(object_class),
310 dex_pc_(dex_pc) {}
Alexandre Rames67555f72014-11-18 10:55:16 +0000311
312 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000313 LocationSummary* locations = instruction_->GetLocations();
314 DCHECK(instruction_->IsCheckCast()
315 || !locations->GetLiveRegisters()->ContainsCoreRegister(locations->Out().reg()));
316 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
317
Alexandre Rames67555f72014-11-18 10:55:16 +0000318 __ Bind(GetEntryLabel());
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000319 SaveLiveRegisters(codegen, locations);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000320
321 // We're moving two locations to locations that could overlap, so we need a parallel
322 // move resolver.
323 InvokeRuntimeCallingConvention calling_convention;
324 codegen->EmitParallelMoves(
325 class_to_check_, LocationFrom(calling_convention.GetRegisterAt(0)),
326 object_class_, LocationFrom(calling_convention.GetRegisterAt(1)));
327
328 if (instruction_->IsInstanceOf()) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000329 arm64_codegen->InvokeRuntime(
330 QUICK_ENTRY_POINT(pInstanceofNonTrivial), instruction_, dex_pc_, this);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000331 Primitive::Type ret_type = instruction_->GetType();
332 Location ret_loc = calling_convention.GetReturnLocation(ret_type);
333 arm64_codegen->MoveLocation(locations->Out(), ret_loc, ret_type);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800334 CheckEntrypointTypes<kQuickInstanceofNonTrivial, uint32_t,
335 const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000336 } else {
337 DCHECK(instruction_->IsCheckCast());
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000338 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pCheckCast), instruction_, dex_pc_, this);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -0800339 CheckEntrypointTypes<kQuickCheckCast, void, const mirror::Class*, const mirror::Class*>();
Alexandre Rames3e69f162014-12-10 10:36:50 +0000340 }
341
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +0000342 RestoreLiveRegisters(codegen, locations);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000343 __ B(GetExitLabel());
Alexandre Rames67555f72014-11-18 10:55:16 +0000344 }
345
346 private:
Alexandre Rames3e69f162014-12-10 10:36:50 +0000347 HInstruction* const instruction_;
348 const Location class_to_check_;
349 const Location object_class_;
350 uint32_t dex_pc_;
351
Alexandre Rames67555f72014-11-18 10:55:16 +0000352 DISALLOW_COPY_AND_ASSIGN(TypeCheckSlowPathARM64);
353};
354
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700355class DeoptimizationSlowPathARM64 : public SlowPathCodeARM64 {
356 public:
357 explicit DeoptimizationSlowPathARM64(HInstruction* instruction)
358 : instruction_(instruction) {}
359
360 void EmitNativeCode(CodeGenerator* codegen) OVERRIDE {
361 __ Bind(GetEntryLabel());
362 SaveLiveRegisters(codegen, instruction_->GetLocations());
363 DCHECK(instruction_->IsDeoptimize());
364 HDeoptimize* deoptimize = instruction_->AsDeoptimize();
365 uint32_t dex_pc = deoptimize->GetDexPc();
366 CodeGeneratorARM64* arm64_codegen = down_cast<CodeGeneratorARM64*>(codegen);
367 arm64_codegen->InvokeRuntime(QUICK_ENTRY_POINT(pDeoptimize), instruction_, dex_pc, this);
368 }
369
370 private:
371 HInstruction* const instruction_;
372 DISALLOW_COPY_AND_ASSIGN(DeoptimizationSlowPathARM64);
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
Serban Constantinescu579885a2015-02-22 20:51:33 +0000400CodeGeneratorARM64::CodeGeneratorARM64(HGraph* graph,
401 const Arm64InstructionSetFeatures& isa_features,
402 const CompilerOptions& compiler_options)
Alexandre Rames5319def2014-10-23 10:03:10 +0100403 : CodeGenerator(graph,
404 kNumberOfAllocatableRegisters,
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000405 kNumberOfAllocatableFPRegisters,
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000406 kNumberOfAllocatableRegisterPairs,
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000407 callee_saved_core_registers.list(),
408 callee_saved_fp_registers.list(),
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000409 compiler_options),
Alexandre Rames5319def2014-10-23 10:03:10 +0100410 block_labels_(nullptr),
411 location_builder_(graph, this),
Alexandre Rames3e69f162014-12-10 10:36:50 +0000412 instruction_visitor_(graph, this),
Serban Constantinescu579885a2015-02-22 20:51:33 +0000413 move_resolver_(graph->GetArena(), this),
414 isa_features_(isa_features) {
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000415 // Save the link register (containing the return address) to mimic Quick.
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000416 AddAllocatedRegister(LocationFrom(lr));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000417}
Alexandre Rames5319def2014-10-23 10:03:10 +0100418
Alexandre Rames67555f72014-11-18 10:55:16 +0000419#undef __
420#define __ GetVIXLAssembler()->
Alexandre Rames5319def2014-10-23 10:03:10 +0100421
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000422void CodeGeneratorARM64::Finalize(CodeAllocator* allocator) {
423 // Ensure we emit the literal pool.
424 __ FinalizeCode();
425 CodeGenerator::Finalize(allocator);
426}
427
Alexandre Rames3e69f162014-12-10 10:36:50 +0000428void ParallelMoveResolverARM64::EmitMove(size_t index) {
429 MoveOperands* move = moves_.Get(index);
430 codegen_->MoveLocation(move->GetDestination(), move->GetSource());
431}
432
433void ParallelMoveResolverARM64::EmitSwap(size_t index) {
434 MoveOperands* move = moves_.Get(index);
435 codegen_->SwapLocations(move->GetDestination(), move->GetSource());
436}
437
438void ParallelMoveResolverARM64::RestoreScratch(int reg) {
439 __ Pop(Register(VIXLRegCodeFromART(reg), kXRegSize));
440}
441
442void ParallelMoveResolverARM64::SpillScratch(int reg) {
443 __ Push(Register(VIXLRegCodeFromART(reg), kXRegSize));
444}
445
Alexandre Rames5319def2014-10-23 10:03:10 +0100446void CodeGeneratorARM64::GenerateFrameEntry() {
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000447 __ Bind(&frame_entry_label_);
448
Serban Constantinescu02164b32014-11-13 14:05:07 +0000449 bool do_overflow_check = FrameNeedsStackCheck(GetFrameSize(), kArm64) || !IsLeafMethod();
450 if (do_overflow_check) {
451 UseScratchRegisterScope temps(GetVIXLAssembler());
452 Register temp = temps.AcquireX();
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000453 DCHECK(GetCompilerOptions().GetImplicitStackOverflowChecks());
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000454 __ Sub(temp, sp, static_cast<int32_t>(GetStackOverflowReservedBytes(kArm64)));
Nicolas Geoffrayd97dc402015-01-22 13:50:01 +0000455 __ Ldr(wzr, MemOperand(temp, 0));
456 RecordPcInfo(nullptr, 0);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000457 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100458
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000459 if (!HasEmptyFrame()) {
460 int frame_size = GetFrameSize();
461 // Stack layout:
462 // sp[frame_size - 8] : lr.
463 // ... : other preserved core registers.
464 // ... : other preserved fp registers.
465 // ... : reserved frame space.
466 // sp[0] : current method.
467 __ Str(kArtMethodRegister, MemOperand(sp, -frame_size, PreIndex));
468 __ PokeCPURegList(GetFramePreservedCoreRegisters(), frame_size - GetCoreSpillSize());
469 __ PokeCPURegList(GetFramePreservedFPRegisters(), frame_size - FrameEntrySpillSize());
470 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100471}
472
473void CodeGeneratorARM64::GenerateFrameExit() {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000474 if (!HasEmptyFrame()) {
475 int frame_size = GetFrameSize();
476 __ PeekCPURegList(GetFramePreservedFPRegisters(), frame_size - FrameEntrySpillSize());
477 __ PeekCPURegList(GetFramePreservedCoreRegisters(), frame_size - GetCoreSpillSize());
478 __ Drop(frame_size);
479 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100480}
481
482void CodeGeneratorARM64::Bind(HBasicBlock* block) {
483 __ Bind(GetLabelOf(block));
484}
485
Alexandre Rames5319def2014-10-23 10:03:10 +0100486void CodeGeneratorARM64::Move(HInstruction* instruction,
487 Location location,
488 HInstruction* move_for) {
489 LocationSummary* locations = instruction->GetLocations();
490 if (locations != nullptr && locations->Out().Equals(location)) {
491 return;
492 }
493
494 Primitive::Type type = instruction->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000495 DCHECK_NE(type, Primitive::kPrimVoid);
Alexandre Rames5319def2014-10-23 10:03:10 +0100496
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000497 if (instruction->IsIntConstant()
498 || instruction->IsLongConstant()
499 || instruction->IsNullConstant()) {
500 int64_t value = GetInt64ValueOf(instruction->AsConstant());
Alexandre Rames5319def2014-10-23 10:03:10 +0100501 if (location.IsRegister()) {
502 Register dst = RegisterFrom(location, type);
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000503 DCHECK(((instruction->IsIntConstant() || instruction->IsNullConstant()) && dst.Is32Bits()) ||
Alexandre Rames5319def2014-10-23 10:03:10 +0100504 (instruction->IsLongConstant() && dst.Is64Bits()));
505 __ Mov(dst, value);
506 } else {
507 DCHECK(location.IsStackSlot() || location.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000508 UseScratchRegisterScope temps(GetVIXLAssembler());
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000509 Register temp = (instruction->IsIntConstant() || instruction->IsNullConstant())
510 ? temps.AcquireW()
511 : temps.AcquireX();
Alexandre Rames5319def2014-10-23 10:03:10 +0100512 __ Mov(temp, value);
513 __ Str(temp, StackOperandFrom(location));
514 }
Nicolas Geoffrayf43083d2014-11-07 10:48:10 +0000515 } else if (instruction->IsTemporary()) {
516 Location temp_location = GetTemporaryLocation(instruction->AsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000517 MoveLocation(location, temp_location, type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100518 } else if (instruction->IsLoadLocal()) {
519 uint32_t stack_slot = GetStackSlot(instruction->AsLoadLocal()->GetLocal());
Alexandre Rames542361f2015-01-29 16:57:31 +0000520 if (Primitive::Is64BitType(type)) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000521 MoveLocation(location, Location::DoubleStackSlot(stack_slot), type);
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000522 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000523 MoveLocation(location, Location::StackSlot(stack_slot), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100524 }
525
526 } else {
527 DCHECK((instruction->GetNext() == move_for) || instruction->GetNext()->IsTemporary());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000528 MoveLocation(location, locations->Out(), type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100529 }
530}
531
Alexandre Rames5319def2014-10-23 10:03:10 +0100532Location CodeGeneratorARM64::GetStackLocation(HLoadLocal* load) const {
533 Primitive::Type type = load->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000534
Alexandre Rames5319def2014-10-23 10:03:10 +0100535 switch (type) {
536 case Primitive::kPrimNot:
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000537 case Primitive::kPrimInt:
538 case Primitive::kPrimFloat:
539 return Location::StackSlot(GetStackSlot(load->GetLocal()));
540
541 case Primitive::kPrimLong:
542 case Primitive::kPrimDouble:
543 return Location::DoubleStackSlot(GetStackSlot(load->GetLocal()));
544
Alexandre Rames5319def2014-10-23 10:03:10 +0100545 case Primitive::kPrimBoolean:
546 case Primitive::kPrimByte:
547 case Primitive::kPrimChar:
548 case Primitive::kPrimShort:
Alexandre Rames5319def2014-10-23 10:03:10 +0100549 case Primitive::kPrimVoid:
Alexandre Rames5319def2014-10-23 10:03:10 +0100550 LOG(FATAL) << "Unexpected type " << type;
551 }
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000552
Alexandre Rames5319def2014-10-23 10:03:10 +0100553 LOG(FATAL) << "Unreachable";
554 return Location::NoLocation();
555}
556
557void CodeGeneratorARM64::MarkGCCard(Register object, Register value) {
Alexandre Rames67555f72014-11-18 10:55:16 +0000558 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames5319def2014-10-23 10:03:10 +0100559 Register card = temps.AcquireX();
Serban Constantinescu02164b32014-11-13 14:05:07 +0000560 Register temp = temps.AcquireW(); // Index within the CardTable - 32bit.
Alexandre Rames5319def2014-10-23 10:03:10 +0100561 vixl::Label done;
562 __ Cbz(value, &done);
563 __ Ldr(card, MemOperand(tr, Thread::CardTableOffset<kArm64WordSize>().Int32Value()));
564 __ Lsr(temp, object, gc::accounting::CardTable::kCardShift);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000565 __ Strb(card, MemOperand(card, temp.X()));
Alexandre Rames5319def2014-10-23 10:03:10 +0100566 __ Bind(&done);
567}
568
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000569void CodeGeneratorARM64::SetupBlockedRegisters(bool is_baseline) const {
570 // Blocked core registers:
571 // lr : Runtime reserved.
572 // tr : Runtime reserved.
573 // xSuspend : Runtime reserved. TODO: Unblock this when the runtime stops using it.
574 // ip1 : VIXL core temp.
575 // ip0 : VIXL core temp.
576 //
577 // Blocked fp registers:
578 // d31 : VIXL fp temp.
Alexandre Rames5319def2014-10-23 10:03:10 +0100579 CPURegList reserved_core_registers = vixl_reserved_core_registers;
580 reserved_core_registers.Combine(runtime_reserved_core_registers);
Alexandre Rames5319def2014-10-23 10:03:10 +0100581 while (!reserved_core_registers.IsEmpty()) {
582 blocked_core_registers_[reserved_core_registers.PopLowestIndex().code()] = true;
583 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000584
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000585 CPURegList reserved_fp_registers = vixl_reserved_fp_registers;
Zheng Xua3ec3942015-02-15 18:39:46 +0800586 while (!reserved_fp_registers.IsEmpty()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000587 blocked_fpu_registers_[reserved_fp_registers.PopLowestIndex().code()] = true;
588 }
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000589
590 if (is_baseline) {
591 CPURegList reserved_core_baseline_registers = callee_saved_core_registers;
592 while (!reserved_core_baseline_registers.IsEmpty()) {
593 blocked_core_registers_[reserved_core_baseline_registers.PopLowestIndex().code()] = true;
594 }
595
596 CPURegList reserved_fp_baseline_registers = callee_saved_fp_registers;
597 while (!reserved_fp_baseline_registers.IsEmpty()) {
598 blocked_fpu_registers_[reserved_fp_baseline_registers.PopLowestIndex().code()] = true;
599 }
600 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100601}
602
603Location CodeGeneratorARM64::AllocateFreeRegister(Primitive::Type type) const {
604 if (type == Primitive::kPrimVoid) {
605 LOG(FATAL) << "Unreachable type " << type;
606 }
607
Alexandre Rames542361f2015-01-29 16:57:31 +0000608 if (Primitive::IsFloatingPointType(type)) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000609 ssize_t reg = FindFreeEntry(blocked_fpu_registers_, kNumberOfAllocatableFPRegisters);
610 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100611 return Location::FpuRegisterLocation(reg);
612 } else {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000613 ssize_t reg = FindFreeEntry(blocked_core_registers_, kNumberOfAllocatableRegisters);
614 DCHECK_NE(reg, -1);
Alexandre Rames5319def2014-10-23 10:03:10 +0100615 return Location::RegisterLocation(reg);
616 }
617}
618
Alexandre Rames3e69f162014-12-10 10:36:50 +0000619size_t CodeGeneratorARM64::SaveCoreRegister(size_t stack_index, uint32_t reg_id) {
620 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
621 __ Str(reg, MemOperand(sp, stack_index));
622 return kArm64WordSize;
623}
624
625size_t CodeGeneratorARM64::RestoreCoreRegister(size_t stack_index, uint32_t reg_id) {
626 Register reg = Register(VIXLRegCodeFromART(reg_id), kXRegSize);
627 __ Ldr(reg, MemOperand(sp, stack_index));
628 return kArm64WordSize;
629}
630
631size_t CodeGeneratorARM64::SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
632 FPRegister reg = FPRegister(reg_id, kDRegSize);
633 __ Str(reg, MemOperand(sp, stack_index));
634 return kArm64WordSize;
635}
636
637size_t CodeGeneratorARM64::RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) {
638 FPRegister reg = FPRegister(reg_id, kDRegSize);
639 __ Ldr(reg, MemOperand(sp, stack_index));
640 return kArm64WordSize;
641}
642
Alexandre Rames5319def2014-10-23 10:03:10 +0100643void CodeGeneratorARM64::DumpCoreRegister(std::ostream& stream, int reg) const {
644 stream << Arm64ManagedRegister::FromXRegister(XRegister(reg));
645}
646
647void CodeGeneratorARM64::DumpFloatingPointRegister(std::ostream& stream, int reg) const {
648 stream << Arm64ManagedRegister::FromDRegister(DRegister(reg));
649}
650
Alexandre Rames67555f72014-11-18 10:55:16 +0000651void CodeGeneratorARM64::MoveConstant(CPURegister destination, HConstant* constant) {
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000652 if (constant->IsIntConstant()) {
653 __ Mov(Register(destination), constant->AsIntConstant()->GetValue());
654 } else if (constant->IsLongConstant()) {
655 __ Mov(Register(destination), constant->AsLongConstant()->GetValue());
656 } else if (constant->IsNullConstant()) {
657 __ Mov(Register(destination), 0);
Alexandre Rames67555f72014-11-18 10:55:16 +0000658 } else if (constant->IsFloatConstant()) {
659 __ Fmov(FPRegister(destination), constant->AsFloatConstant()->GetValue());
660 } else {
661 DCHECK(constant->IsDoubleConstant());
662 __ Fmov(FPRegister(destination), constant->AsDoubleConstant()->GetValue());
663 }
664}
665
Alexandre Rames3e69f162014-12-10 10:36:50 +0000666
667static bool CoherentConstantAndType(Location constant, Primitive::Type type) {
668 DCHECK(constant.IsConstant());
669 HConstant* cst = constant.GetConstant();
670 return (cst->IsIntConstant() && type == Primitive::kPrimInt) ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000671 // Null is mapped to a core W register, which we associate with kPrimInt.
672 (cst->IsNullConstant() && type == Primitive::kPrimInt) ||
Alexandre Rames3e69f162014-12-10 10:36:50 +0000673 (cst->IsLongConstant() && type == Primitive::kPrimLong) ||
674 (cst->IsFloatConstant() && type == Primitive::kPrimFloat) ||
675 (cst->IsDoubleConstant() && type == Primitive::kPrimDouble);
676}
677
678void CodeGeneratorARM64::MoveLocation(Location destination, Location source, Primitive::Type type) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000679 if (source.Equals(destination)) {
680 return;
681 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000682
683 // A valid move can always be inferred from the destination and source
684 // locations. When moving from and to a register, the argument type can be
685 // used to generate 32bit instead of 64bit moves. In debug mode we also
686 // checks the coherency of the locations and the type.
687 bool unspecified_type = (type == Primitive::kPrimVoid);
688
689 if (destination.IsRegister() || destination.IsFpuRegister()) {
690 if (unspecified_type) {
691 HConstant* src_cst = source.IsConstant() ? source.GetConstant() : nullptr;
692 if (source.IsStackSlot() ||
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000693 (src_cst != nullptr && (src_cst->IsIntConstant()
694 || src_cst->IsFloatConstant()
695 || src_cst->IsNullConstant()))) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000696 // For stack slots and 32bit constants, a 64bit type is appropriate.
697 type = destination.IsRegister() ? Primitive::kPrimInt : Primitive::kPrimFloat;
Alexandre Rames67555f72014-11-18 10:55:16 +0000698 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000699 // If the source is a double stack slot or a 64bit constant, a 64bit
700 // type is appropriate. Else the source is a register, and since the
701 // type has not been specified, we chose a 64bit type to force a 64bit
702 // move.
703 type = destination.IsRegister() ? Primitive::kPrimLong : Primitive::kPrimDouble;
Alexandre Rames67555f72014-11-18 10:55:16 +0000704 }
Alexandre Rames3e69f162014-12-10 10:36:50 +0000705 }
Alexandre Rames542361f2015-01-29 16:57:31 +0000706 DCHECK((destination.IsFpuRegister() && Primitive::IsFloatingPointType(type)) ||
707 (destination.IsRegister() && !Primitive::IsFloatingPointType(type)));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000708 CPURegister dst = CPURegisterFrom(destination, type);
709 if (source.IsStackSlot() || source.IsDoubleStackSlot()) {
710 DCHECK(dst.Is64Bits() == source.IsDoubleStackSlot());
711 __ Ldr(dst, StackOperandFrom(source));
712 } else if (source.IsConstant()) {
713 DCHECK(CoherentConstantAndType(source, type));
714 MoveConstant(dst, source.GetConstant());
715 } else {
716 if (destination.IsRegister()) {
717 __ Mov(Register(dst), RegisterFrom(source, type));
718 } else {
719 __ Fmov(FPRegister(dst), FPRegisterFrom(source, type));
720 }
721 }
722
723 } else { // The destination is not a register. It must be a stack slot.
724 DCHECK(destination.IsStackSlot() || destination.IsDoubleStackSlot());
725 if (source.IsRegister() || source.IsFpuRegister()) {
726 if (unspecified_type) {
727 if (source.IsRegister()) {
728 type = destination.IsStackSlot() ? Primitive::kPrimInt : Primitive::kPrimLong;
729 } else {
730 type = destination.IsStackSlot() ? Primitive::kPrimFloat : Primitive::kPrimDouble;
731 }
732 }
Alexandre Rames542361f2015-01-29 16:57:31 +0000733 DCHECK((destination.IsDoubleStackSlot() == Primitive::Is64BitType(type)) &&
734 (source.IsFpuRegister() == Primitive::IsFloatingPointType(type)));
Alexandre Rames3e69f162014-12-10 10:36:50 +0000735 __ Str(CPURegisterFrom(source, type), StackOperandFrom(destination));
736 } else if (source.IsConstant()) {
737 DCHECK(unspecified_type || CoherentConstantAndType(source, type));
738 UseScratchRegisterScope temps(GetVIXLAssembler());
739 HConstant* src_cst = source.GetConstant();
740 CPURegister temp;
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +0000741 if (src_cst->IsIntConstant() || src_cst->IsNullConstant()) {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000742 temp = temps.AcquireW();
743 } else if (src_cst->IsLongConstant()) {
744 temp = temps.AcquireX();
745 } else if (src_cst->IsFloatConstant()) {
746 temp = temps.AcquireS();
747 } else {
748 DCHECK(src_cst->IsDoubleConstant());
749 temp = temps.AcquireD();
750 }
751 MoveConstant(temp, src_cst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000752 __ Str(temp, StackOperandFrom(destination));
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000753 } else {
Alexandre Rames67555f72014-11-18 10:55:16 +0000754 DCHECK(source.IsStackSlot() || source.IsDoubleStackSlot());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000755 DCHECK(source.IsDoubleStackSlot() == destination.IsDoubleStackSlot());
Alexandre Rames67555f72014-11-18 10:55:16 +0000756 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Rames3e69f162014-12-10 10:36:50 +0000757 // There is generally less pressure on FP registers.
758 FPRegister temp = destination.IsDoubleStackSlot() ? temps.AcquireD() : temps.AcquireS();
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000759 __ Ldr(temp, StackOperandFrom(source));
760 __ Str(temp, StackOperandFrom(destination));
761 }
762 }
763}
764
Alexandre Rames3e69f162014-12-10 10:36:50 +0000765void CodeGeneratorARM64::SwapLocations(Location loc1, Location loc2) {
766 DCHECK(!loc1.IsConstant());
767 DCHECK(!loc2.IsConstant());
768
769 if (loc1.Equals(loc2)) {
770 return;
771 }
772
773 UseScratchRegisterScope temps(GetAssembler()->vixl_masm_);
774
775 bool is_slot1 = loc1.IsStackSlot() || loc1.IsDoubleStackSlot();
776 bool is_slot2 = loc2.IsStackSlot() || loc2.IsDoubleStackSlot();
777 bool is_fp_reg1 = loc1.IsFpuRegister();
778 bool is_fp_reg2 = loc2.IsFpuRegister();
779
780 if (loc2.IsRegister() && loc1.IsRegister()) {
781 Register r1 = XRegisterFrom(loc1);
782 Register r2 = XRegisterFrom(loc2);
783 Register tmp = temps.AcquireSameSizeAs(r1);
784 __ Mov(tmp, r2);
785 __ Mov(r2, r1);
786 __ Mov(r1, tmp);
787 } else if (is_fp_reg2 && is_fp_reg1) {
788 FPRegister r1 = DRegisterFrom(loc1);
789 FPRegister r2 = DRegisterFrom(loc2);
790 FPRegister tmp = temps.AcquireSameSizeAs(r1);
791 __ Fmov(tmp, r2);
792 __ Fmov(r2, r1);
793 __ Fmov(r1, tmp);
794 } else if (is_slot1 != is_slot2) {
795 MemOperand mem = StackOperandFrom(is_slot1 ? loc1 : loc2);
796 Location reg_loc = is_slot1 ? loc2 : loc1;
797 CPURegister reg, tmp;
798 if (reg_loc.IsFpuRegister()) {
799 reg = DRegisterFrom(reg_loc);
800 tmp = temps.AcquireD();
801 } else {
802 reg = XRegisterFrom(reg_loc);
803 tmp = temps.AcquireX();
804 }
805 __ Ldr(tmp, mem);
806 __ Str(reg, mem);
807 if (reg_loc.IsFpuRegister()) {
808 __ Fmov(FPRegister(reg), FPRegister(tmp));
809 } else {
810 __ Mov(Register(reg), Register(tmp));
811 }
812 } else if (is_slot1 && is_slot2) {
813 MemOperand mem1 = StackOperandFrom(loc1);
814 MemOperand mem2 = StackOperandFrom(loc2);
815 Register tmp1 = loc1.IsStackSlot() ? temps.AcquireW() : temps.AcquireX();
816 Register tmp2 = temps.AcquireSameSizeAs(tmp1);
817 __ Ldr(tmp1, mem1);
818 __ Ldr(tmp2, mem2);
819 __ Str(tmp1, mem2);
820 __ Str(tmp2, mem1);
821 } else {
822 LOG(FATAL) << "Unimplemented";
823 }
824}
825
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000826void CodeGeneratorARM64::Load(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000827 CPURegister dst,
828 const MemOperand& src) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000829 switch (type) {
830 case Primitive::kPrimBoolean:
Alexandre Rames67555f72014-11-18 10:55:16 +0000831 __ Ldrb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000832 break;
833 case Primitive::kPrimByte:
Alexandre Rames67555f72014-11-18 10:55:16 +0000834 __ Ldrsb(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000835 break;
836 case Primitive::kPrimShort:
Alexandre Rames67555f72014-11-18 10:55:16 +0000837 __ Ldrsh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000838 break;
839 case Primitive::kPrimChar:
Alexandre Rames67555f72014-11-18 10:55:16 +0000840 __ Ldrh(Register(dst), src);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000841 break;
842 case Primitive::kPrimInt:
843 case Primitive::kPrimNot:
844 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000845 case Primitive::kPrimFloat:
846 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +0000847 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Alexandre Rames67555f72014-11-18 10:55:16 +0000848 __ Ldr(dst, src);
849 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000850 case Primitive::kPrimVoid:
851 LOG(FATAL) << "Unreachable type " << type;
852 }
853}
854
Calin Juravle77520bc2015-01-12 18:45:46 +0000855void CodeGeneratorARM64::LoadAcquire(HInstruction* instruction,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000856 CPURegister dst,
857 const MemOperand& src) {
858 UseScratchRegisterScope temps(GetVIXLAssembler());
859 Register temp_base = temps.AcquireX();
Calin Juravle77520bc2015-01-12 18:45:46 +0000860 Primitive::Type type = instruction->GetType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000861
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000862 DCHECK(!src.IsPreIndex());
863 DCHECK(!src.IsPostIndex());
864
865 // TODO(vixl): Let the MacroAssembler handle MemOperand.
Andreas Gampe878d58c2015-01-15 23:24:00 -0800866 __ Add(temp_base, src.base(), OperandFromMemOperand(src));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000867 MemOperand base = MemOperand(temp_base);
868 switch (type) {
869 case Primitive::kPrimBoolean:
870 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000871 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000872 break;
873 case Primitive::kPrimByte:
874 __ Ldarb(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000875 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000876 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
877 break;
878 case Primitive::kPrimChar:
879 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000880 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000881 break;
882 case Primitive::kPrimShort:
883 __ Ldarh(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000884 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000885 __ Sbfx(Register(dst), Register(dst), 0, Primitive::ComponentSize(type) * kBitsPerByte);
886 break;
887 case Primitive::kPrimInt:
888 case Primitive::kPrimNot:
889 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +0000890 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000891 __ Ldar(Register(dst), base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000892 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000893 break;
894 case Primitive::kPrimFloat:
895 case Primitive::kPrimDouble: {
896 DCHECK(dst.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +0000897 DCHECK_EQ(dst.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000898
899 Register temp = dst.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
900 __ Ldar(temp, base);
Calin Juravle77520bc2015-01-12 18:45:46 +0000901 MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000902 __ Fmov(FPRegister(dst), temp);
903 break;
904 }
905 case Primitive::kPrimVoid:
906 LOG(FATAL) << "Unreachable type " << type;
907 }
908}
909
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000910void CodeGeneratorARM64::Store(Primitive::Type type,
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000911 CPURegister src,
912 const MemOperand& dst) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000913 switch (type) {
914 case Primitive::kPrimBoolean:
915 case Primitive::kPrimByte:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000916 __ Strb(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000917 break;
918 case Primitive::kPrimChar:
919 case Primitive::kPrimShort:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000920 __ Strh(Register(src), dst);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000921 break;
922 case Primitive::kPrimInt:
923 case Primitive::kPrimNot:
924 case Primitive::kPrimLong:
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000925 case Primitive::kPrimFloat:
926 case Primitive::kPrimDouble:
Alexandre Rames542361f2015-01-29 16:57:31 +0000927 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000928 __ Str(src, dst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000929 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000930 case Primitive::kPrimVoid:
931 LOG(FATAL) << "Unreachable type " << type;
932 }
933}
934
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000935void CodeGeneratorARM64::StoreRelease(Primitive::Type type,
936 CPURegister src,
937 const MemOperand& dst) {
938 UseScratchRegisterScope temps(GetVIXLAssembler());
939 Register temp_base = temps.AcquireX();
940
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000941 DCHECK(!dst.IsPreIndex());
942 DCHECK(!dst.IsPostIndex());
943
944 // TODO(vixl): Let the MacroAssembler handle this.
Andreas Gampe878d58c2015-01-15 23:24:00 -0800945 Operand op = OperandFromMemOperand(dst);
946 __ Add(temp_base, dst.base(), op);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000947 MemOperand base = MemOperand(temp_base);
948 switch (type) {
949 case Primitive::kPrimBoolean:
950 case Primitive::kPrimByte:
951 __ Stlrb(Register(src), base);
952 break;
953 case Primitive::kPrimChar:
954 case Primitive::kPrimShort:
955 __ Stlrh(Register(src), base);
956 break;
957 case Primitive::kPrimInt:
958 case Primitive::kPrimNot:
959 case Primitive::kPrimLong:
Alexandre Rames542361f2015-01-29 16:57:31 +0000960 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000961 __ Stlr(Register(src), base);
962 break;
963 case Primitive::kPrimFloat:
964 case Primitive::kPrimDouble: {
965 DCHECK(src.IsFPRegister());
Alexandre Rames542361f2015-01-29 16:57:31 +0000966 DCHECK_EQ(src.Is64Bits(), Primitive::Is64BitType(type));
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000967
968 Register temp = src.Is64Bits() ? temps.AcquireX() : temps.AcquireW();
969 __ Fmov(temp, FPRegister(src));
970 __ Stlr(temp, base);
971 break;
972 }
973 case Primitive::kPrimVoid:
974 LOG(FATAL) << "Unreachable type " << type;
975 }
976}
977
Alexandre Rames67555f72014-11-18 10:55:16 +0000978void CodeGeneratorARM64::LoadCurrentMethod(vixl::Register current_method) {
Nicolas Geoffrayc0572a42015-02-06 14:35:25 +0000979 DCHECK(RequiresCurrentMethod());
Alexandre Rames67555f72014-11-18 10:55:16 +0000980 DCHECK(current_method.IsW());
981 __ Ldr(current_method, MemOperand(sp, kCurrentMethodStackOffset));
982}
983
984void CodeGeneratorARM64::InvokeRuntime(int32_t entry_point_offset,
985 HInstruction* instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000986 uint32_t dex_pc,
987 SlowPathCode* slow_path) {
Alexandre Rames67555f72014-11-18 10:55:16 +0000988 __ Ldr(lr, MemOperand(tr, entry_point_offset));
989 __ Blr(lr);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000990 if (instruction != nullptr) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000991 RecordPcInfo(instruction, dex_pc, slow_path);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000992 DCHECK(instruction->IsSuspendCheck()
993 || instruction->IsBoundsCheck()
994 || instruction->IsNullCheck()
995 || instruction->IsDivZeroCheck()
996 || !IsLeafMethod());
997 }
Alexandre Rames67555f72014-11-18 10:55:16 +0000998}
999
1000void InstructionCodeGeneratorARM64::GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path,
1001 vixl::Register class_reg) {
1002 UseScratchRegisterScope temps(GetVIXLAssembler());
1003 Register temp = temps.AcquireW();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001004 size_t status_offset = mirror::Class::StatusOffset().SizeValue();
Serban Constantinescu579885a2015-02-22 20:51:33 +00001005 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001006
Serban Constantinescu02164b32014-11-13 14:05:07 +00001007 // Even if the initialized flag is set, we need to ensure consistent memory ordering.
Serban Constantinescu579885a2015-02-22 20:51:33 +00001008 if (use_acquire_release) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001009 // TODO(vixl): Let the MacroAssembler handle MemOperand.
1010 __ Add(temp, class_reg, status_offset);
1011 __ Ldar(temp, HeapOperand(temp));
1012 __ Cmp(temp, mirror::Class::kStatusInitialized);
1013 __ B(lt, slow_path->GetEntryLabel());
1014 } else {
1015 __ Ldr(temp, HeapOperand(class_reg, status_offset));
1016 __ Cmp(temp, mirror::Class::kStatusInitialized);
1017 __ B(lt, slow_path->GetEntryLabel());
1018 __ Dmb(InnerShareable, BarrierReads);
1019 }
Alexandre Rames67555f72014-11-18 10:55:16 +00001020 __ Bind(slow_path->GetExitLabel());
1021}
Alexandre Rames5319def2014-10-23 10:03:10 +01001022
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001023void InstructionCodeGeneratorARM64::GenerateMemoryBarrier(MemBarrierKind kind) {
1024 BarrierType type = BarrierAll;
1025
1026 switch (kind) {
1027 case MemBarrierKind::kAnyAny:
1028 case MemBarrierKind::kAnyStore: {
1029 type = BarrierAll;
1030 break;
1031 }
1032 case MemBarrierKind::kLoadAny: {
1033 type = BarrierReads;
1034 break;
1035 }
1036 case MemBarrierKind::kStoreStore: {
1037 type = BarrierWrites;
1038 break;
1039 }
1040 default:
1041 LOG(FATAL) << "Unexpected memory barrier " << kind;
1042 }
1043 __ Dmb(InnerShareable, type);
1044}
1045
Serban Constantinescu02164b32014-11-13 14:05:07 +00001046void InstructionCodeGeneratorARM64::GenerateSuspendCheck(HSuspendCheck* instruction,
1047 HBasicBlock* successor) {
1048 SuspendCheckSlowPathARM64* slow_path =
1049 new (GetGraph()->GetArena()) SuspendCheckSlowPathARM64(instruction, successor);
1050 codegen_->AddSlowPath(slow_path);
1051 UseScratchRegisterScope temps(codegen_->GetVIXLAssembler());
1052 Register temp = temps.AcquireW();
1053
1054 __ Ldrh(temp, MemOperand(tr, Thread::ThreadFlagsOffset<kArm64WordSize>().SizeValue()));
1055 if (successor == nullptr) {
1056 __ Cbnz(temp, slow_path->GetEntryLabel());
1057 __ Bind(slow_path->GetReturnLabel());
1058 } else {
1059 __ Cbz(temp, codegen_->GetLabelOf(successor));
1060 __ B(slow_path->GetEntryLabel());
1061 // slow_path will return to GetLabelOf(successor).
1062 }
1063}
1064
Alexandre Rames5319def2014-10-23 10:03:10 +01001065InstructionCodeGeneratorARM64::InstructionCodeGeneratorARM64(HGraph* graph,
1066 CodeGeneratorARM64* codegen)
1067 : HGraphVisitor(graph),
1068 assembler_(codegen->GetAssembler()),
1069 codegen_(codegen) {}
1070
1071#define FOR_EACH_UNIMPLEMENTED_INSTRUCTION(M) \
Alexandre Rames3e69f162014-12-10 10:36:50 +00001072 /* No unimplemented IR. */
Alexandre Rames5319def2014-10-23 10:03:10 +01001073
1074#define UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name) name##UnimplementedInstructionBreakCode
1075
1076enum UnimplementedInstructionBreakCode {
Alexandre Rames67555f72014-11-18 10:55:16 +00001077 // Using a base helps identify when we hit such breakpoints.
1078 UnimplementedInstructionBreakCodeBaseCode = 0x900,
Alexandre Rames5319def2014-10-23 10:03:10 +01001079#define ENUM_UNIMPLEMENTED_INSTRUCTION(name) UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name),
1080 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(ENUM_UNIMPLEMENTED_INSTRUCTION)
1081#undef ENUM_UNIMPLEMENTED_INSTRUCTION
1082};
1083
1084#define DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS(name) \
1085 void InstructionCodeGeneratorARM64::Visit##name(H##name* instr) { \
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001086 UNUSED(instr); \
Alexandre Rames5319def2014-10-23 10:03:10 +01001087 __ Brk(UNIMPLEMENTED_INSTRUCTION_BREAK_CODE(name)); \
1088 } \
1089 void LocationsBuilderARM64::Visit##name(H##name* instr) { \
1090 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr); \
1091 locations->SetOut(Location::Any()); \
1092 }
1093 FOR_EACH_UNIMPLEMENTED_INSTRUCTION(DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS)
1094#undef DEFINE_UNIMPLEMENTED_INSTRUCTION_VISITORS
1095
1096#undef UNIMPLEMENTED_INSTRUCTION_BREAK_CODE
Alexandre Rames67555f72014-11-18 10:55:16 +00001097#undef FOR_EACH_UNIMPLEMENTED_INSTRUCTION
Alexandre Rames5319def2014-10-23 10:03:10 +01001098
Alexandre Rames67555f72014-11-18 10:55:16 +00001099void LocationsBuilderARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001100 DCHECK_EQ(instr->InputCount(), 2U);
1101 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1102 Primitive::Type type = instr->GetResultType();
1103 switch (type) {
1104 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001105 case Primitive::kPrimLong:
Alexandre Rames5319def2014-10-23 10:03:10 +01001106 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001107 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instr->InputAt(1), instr));
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001108 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001109 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001110
1111 case Primitive::kPrimFloat:
1112 case Primitive::kPrimDouble:
1113 locations->SetInAt(0, Location::RequiresFpuRegister());
1114 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001115 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001116 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001117
Alexandre Rames5319def2014-10-23 10:03:10 +01001118 default:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001119 LOG(FATAL) << "Unexpected " << instr->DebugName() << " type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001120 }
1121}
1122
Alexandre Rames67555f72014-11-18 10:55:16 +00001123void InstructionCodeGeneratorARM64::HandleBinaryOp(HBinaryOperation* instr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001124 Primitive::Type type = instr->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001125
1126 switch (type) {
1127 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001128 case Primitive::kPrimLong: {
1129 Register dst = OutputRegister(instr);
1130 Register lhs = InputRegisterAt(instr, 0);
1131 Operand rhs = InputOperandAt(instr, 1);
Alexandre Rames5319def2014-10-23 10:03:10 +01001132 if (instr->IsAdd()) {
1133 __ Add(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001134 } else if (instr->IsAnd()) {
1135 __ And(dst, lhs, rhs);
1136 } else if (instr->IsOr()) {
1137 __ Orr(dst, lhs, rhs);
1138 } else if (instr->IsSub()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001139 __ Sub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001140 } else {
1141 DCHECK(instr->IsXor());
1142 __ Eor(dst, lhs, rhs);
Alexandre Rames5319def2014-10-23 10:03:10 +01001143 }
1144 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001145 }
1146 case Primitive::kPrimFloat:
1147 case Primitive::kPrimDouble: {
1148 FPRegister dst = OutputFPRegister(instr);
1149 FPRegister lhs = InputFPRegisterAt(instr, 0);
1150 FPRegister rhs = InputFPRegisterAt(instr, 1);
1151 if (instr->IsAdd()) {
1152 __ Fadd(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001153 } else if (instr->IsSub()) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001154 __ Fsub(dst, lhs, rhs);
Alexandre Rames67555f72014-11-18 10:55:16 +00001155 } else {
1156 LOG(FATAL) << "Unexpected floating-point binary operation";
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001157 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001158 break;
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001159 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001160 default:
Alexandre Rames67555f72014-11-18 10:55:16 +00001161 LOG(FATAL) << "Unexpected binary operation type " << type;
Alexandre Rames5319def2014-10-23 10:03:10 +01001162 }
1163}
1164
Serban Constantinescu02164b32014-11-13 14:05:07 +00001165void LocationsBuilderARM64::HandleShift(HBinaryOperation* instr) {
1166 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1167
1168 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instr);
1169 Primitive::Type type = instr->GetResultType();
1170 switch (type) {
1171 case Primitive::kPrimInt:
1172 case Primitive::kPrimLong: {
1173 locations->SetInAt(0, Location::RequiresRegister());
1174 locations->SetInAt(1, Location::RegisterOrConstant(instr->InputAt(1)));
1175 locations->SetOut(Location::RequiresRegister());
1176 break;
1177 }
1178 default:
1179 LOG(FATAL) << "Unexpected shift type " << type;
1180 }
1181}
1182
1183void InstructionCodeGeneratorARM64::HandleShift(HBinaryOperation* instr) {
1184 DCHECK(instr->IsShl() || instr->IsShr() || instr->IsUShr());
1185
1186 Primitive::Type type = instr->GetType();
1187 switch (type) {
1188 case Primitive::kPrimInt:
1189 case Primitive::kPrimLong: {
1190 Register dst = OutputRegister(instr);
1191 Register lhs = InputRegisterAt(instr, 0);
1192 Operand rhs = InputOperandAt(instr, 1);
1193 if (rhs.IsImmediate()) {
1194 uint32_t shift_value = (type == Primitive::kPrimInt)
1195 ? static_cast<uint32_t>(rhs.immediate() & kMaxIntShiftValue)
1196 : static_cast<uint32_t>(rhs.immediate() & kMaxLongShiftValue);
1197 if (instr->IsShl()) {
1198 __ Lsl(dst, lhs, shift_value);
1199 } else if (instr->IsShr()) {
1200 __ Asr(dst, lhs, shift_value);
1201 } else {
1202 __ Lsr(dst, lhs, shift_value);
1203 }
1204 } else {
1205 Register rhs_reg = dst.IsX() ? rhs.reg().X() : rhs.reg().W();
1206
1207 if (instr->IsShl()) {
1208 __ Lsl(dst, lhs, rhs_reg);
1209 } else if (instr->IsShr()) {
1210 __ Asr(dst, lhs, rhs_reg);
1211 } else {
1212 __ Lsr(dst, lhs, rhs_reg);
1213 }
1214 }
1215 break;
1216 }
1217 default:
1218 LOG(FATAL) << "Unexpected shift operation type " << type;
1219 }
1220}
1221
Alexandre Rames5319def2014-10-23 10:03:10 +01001222void LocationsBuilderARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001223 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001224}
1225
1226void InstructionCodeGeneratorARM64::VisitAdd(HAdd* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001227 HandleBinaryOp(instruction);
1228}
1229
1230void LocationsBuilderARM64::VisitAnd(HAnd* instruction) {
1231 HandleBinaryOp(instruction);
1232}
1233
1234void InstructionCodeGeneratorARM64::VisitAnd(HAnd* instruction) {
1235 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001236}
1237
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001238void LocationsBuilderARM64::VisitArrayGet(HArrayGet* instruction) {
1239 LocationSummary* locations =
1240 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1241 locations->SetInAt(0, Location::RequiresRegister());
1242 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1243 locations->SetOut(Location::RequiresRegister());
1244}
1245
1246void InstructionCodeGeneratorARM64::VisitArrayGet(HArrayGet* instruction) {
1247 LocationSummary* locations = instruction->GetLocations();
1248 Primitive::Type type = instruction->GetType();
1249 Register obj = InputRegisterAt(instruction, 0);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001250 Location index = locations->InAt(1);
1251 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001252 MemOperand source = HeapOperand(obj);
Alexandre Rames67555f72014-11-18 10:55:16 +00001253 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001254
1255 if (index.IsConstant()) {
1256 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(type);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001257 source = HeapOperand(obj, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001258 } else {
1259 Register temp = temps.AcquireSameSizeAs(obj);
1260 Register index_reg = RegisterFrom(index, Primitive::kPrimInt);
1261 __ Add(temp, obj, Operand(index_reg, LSL, Primitive::ComponentSizeShift(type)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001262 source = HeapOperand(temp, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001263 }
1264
Alexandre Rames67555f72014-11-18 10:55:16 +00001265 codegen_->Load(type, OutputCPURegister(instruction), source);
Calin Juravle77520bc2015-01-12 18:45:46 +00001266 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001267}
1268
Alexandre Rames5319def2014-10-23 10:03:10 +01001269void LocationsBuilderARM64::VisitArrayLength(HArrayLength* instruction) {
1270 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1271 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001272 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001273}
1274
1275void InstructionCodeGeneratorARM64::VisitArrayLength(HArrayLength* instruction) {
1276 __ Ldr(OutputRegister(instruction),
1277 HeapOperand(InputRegisterAt(instruction, 0), mirror::Array::LengthOffset()));
Calin Juravle77520bc2015-01-12 18:45:46 +00001278 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01001279}
1280
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001281void LocationsBuilderARM64::VisitArraySet(HArraySet* instruction) {
1282 Primitive::Type value_type = instruction->GetComponentType();
1283 bool is_object = value_type == Primitive::kPrimNot;
1284 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1285 instruction, is_object ? LocationSummary::kCall : LocationSummary::kNoCall);
1286 if (is_object) {
1287 InvokeRuntimeCallingConvention calling_convention;
1288 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
1289 locations->SetInAt(1, LocationFrom(calling_convention.GetRegisterAt(1)));
1290 locations->SetInAt(2, LocationFrom(calling_convention.GetRegisterAt(2)));
1291 } else {
1292 locations->SetInAt(0, Location::RequiresRegister());
1293 locations->SetInAt(1, Location::RegisterOrConstant(instruction->InputAt(1)));
1294 locations->SetInAt(2, Location::RequiresRegister());
1295 }
1296}
1297
1298void InstructionCodeGeneratorARM64::VisitArraySet(HArraySet* instruction) {
1299 Primitive::Type value_type = instruction->GetComponentType();
1300 if (value_type == Primitive::kPrimNot) {
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00001301 codegen_->InvokeRuntime(
1302 QUICK_ENTRY_POINT(pAputObject), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08001303 CheckEntrypointTypes<kQuickAputObject, void, mirror::Array*, int32_t, mirror::Object*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001304 } else {
1305 LocationSummary* locations = instruction->GetLocations();
1306 Register obj = InputRegisterAt(instruction, 0);
Alexandre Rames67555f72014-11-18 10:55:16 +00001307 CPURegister value = InputCPURegisterAt(instruction, 2);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001308 Location index = locations->InAt(1);
1309 size_t offset = mirror::Array::DataOffset(Primitive::ComponentSize(value_type)).Uint32Value();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001310 MemOperand destination = HeapOperand(obj);
Alexandre Rames67555f72014-11-18 10:55:16 +00001311 UseScratchRegisterScope temps(GetVIXLAssembler());
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001312
1313 if (index.IsConstant()) {
1314 offset += Int64ConstantFrom(index) << Primitive::ComponentSizeShift(value_type);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001315 destination = HeapOperand(obj, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001316 } else {
1317 Register temp = temps.AcquireSameSizeAs(obj);
1318 Register index_reg = InputRegisterAt(instruction, 1);
1319 __ Add(temp, obj, Operand(index_reg, LSL, Primitive::ComponentSizeShift(value_type)));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001320 destination = HeapOperand(temp, offset);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001321 }
1322
1323 codegen_->Store(value_type, value, destination);
Calin Juravle77520bc2015-01-12 18:45:46 +00001324 codegen_->MaybeRecordImplicitNullCheck(instruction);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001325 }
1326}
1327
Alexandre Rames67555f72014-11-18 10:55:16 +00001328void LocationsBuilderARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
1329 LocationSummary* locations =
1330 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1331 locations->SetInAt(0, Location::RequiresRegister());
1332 locations->SetInAt(1, Location::RequiresRegister());
1333 if (instruction->HasUses()) {
1334 locations->SetOut(Location::SameAsFirstInput());
1335 }
1336}
1337
1338void InstructionCodeGeneratorARM64::VisitBoundsCheck(HBoundsCheck* instruction) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001339 LocationSummary* locations = instruction->GetLocations();
1340 BoundsCheckSlowPathARM64* slow_path = new (GetGraph()->GetArena()) BoundsCheckSlowPathARM64(
1341 instruction, locations->InAt(0), locations->InAt(1));
Alexandre Rames67555f72014-11-18 10:55:16 +00001342 codegen_->AddSlowPath(slow_path);
1343
1344 __ Cmp(InputRegisterAt(instruction, 0), InputOperandAt(instruction, 1));
1345 __ B(slow_path->GetEntryLabel(), hs);
1346}
1347
1348void LocationsBuilderARM64::VisitCheckCast(HCheckCast* instruction) {
1349 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(
1350 instruction, LocationSummary::kCallOnSlowPath);
1351 locations->SetInAt(0, Location::RequiresRegister());
1352 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Rames3e69f162014-12-10 10:36:50 +00001353 locations->AddTemp(Location::RequiresRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00001354}
1355
1356void InstructionCodeGeneratorARM64::VisitCheckCast(HCheckCast* instruction) {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001357 LocationSummary* locations = instruction->GetLocations();
Alexandre Rames67555f72014-11-18 10:55:16 +00001358 Register obj = InputRegisterAt(instruction, 0);;
1359 Register cls = InputRegisterAt(instruction, 1);;
Alexandre Rames3e69f162014-12-10 10:36:50 +00001360 Register obj_cls = WRegisterFrom(instruction->GetLocations()->GetTemp(0));
Alexandre Rames67555f72014-11-18 10:55:16 +00001361
Alexandre Rames3e69f162014-12-10 10:36:50 +00001362 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
1363 instruction, locations->InAt(1), LocationFrom(obj_cls), instruction->GetDexPc());
Alexandre Rames67555f72014-11-18 10:55:16 +00001364 codegen_->AddSlowPath(slow_path);
1365
1366 // TODO: avoid this check if we know obj is not null.
1367 __ Cbz(obj, slow_path->GetExitLabel());
1368 // Compare the class of `obj` with `cls`.
Alexandre Rames3e69f162014-12-10 10:36:50 +00001369 __ Ldr(obj_cls, HeapOperand(obj, mirror::Object::ClassOffset()));
1370 __ Cmp(obj_cls, cls);
Alexandre Rames67555f72014-11-18 10:55:16 +00001371 __ B(ne, slow_path->GetEntryLabel());
1372 __ Bind(slow_path->GetExitLabel());
1373}
1374
1375void LocationsBuilderARM64::VisitClinitCheck(HClinitCheck* check) {
1376 LocationSummary* locations =
1377 new (GetGraph()->GetArena()) LocationSummary(check, LocationSummary::kCallOnSlowPath);
1378 locations->SetInAt(0, Location::RequiresRegister());
1379 if (check->HasUses()) {
1380 locations->SetOut(Location::SameAsFirstInput());
1381 }
1382}
1383
1384void InstructionCodeGeneratorARM64::VisitClinitCheck(HClinitCheck* check) {
1385 // We assume the class is not null.
1386 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
1387 check->GetLoadClass(), check, check->GetDexPc(), true);
1388 codegen_->AddSlowPath(slow_path);
1389 GenerateClassInitializationCheck(slow_path, InputRegisterAt(check, 0));
1390}
1391
Serban Constantinescu02164b32014-11-13 14:05:07 +00001392void LocationsBuilderARM64::VisitCompare(HCompare* compare) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001393 LocationSummary* locations =
Serban Constantinescu02164b32014-11-13 14:05:07 +00001394 new (GetGraph()->GetArena()) LocationSummary(compare, LocationSummary::kNoCall);
1395 Primitive::Type in_type = compare->InputAt(0)->GetType();
Alexandre Rames5319def2014-10-23 10:03:10 +01001396 switch (in_type) {
1397 case Primitive::kPrimLong: {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001398 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001399 locations->SetInAt(1, ARM64EncodableConstantOrRegister(compare->InputAt(1), compare));
Serban Constantinescu02164b32014-11-13 14:05:07 +00001400 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1401 break;
1402 }
1403 case Primitive::kPrimFloat:
1404 case Primitive::kPrimDouble: {
1405 locations->SetInAt(0, Location::RequiresFpuRegister());
Alexandre Rames93415462015-02-17 15:08:20 +00001406 HInstruction* right = compare->InputAt(1);
1407 if ((right->IsFloatConstant() && (right->AsFloatConstant()->GetValue() == 0.0f)) ||
1408 (right->IsDoubleConstant() && (right->AsDoubleConstant()->GetValue() == 0.0))) {
1409 locations->SetInAt(1, Location::ConstantLocation(right->AsConstant()));
1410 } else {
1411 locations->SetInAt(1, Location::RequiresFpuRegister());
1412 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00001413 locations->SetOut(Location::RequiresRegister());
1414 break;
1415 }
1416 default:
1417 LOG(FATAL) << "Unexpected type for compare operation " << in_type;
1418 }
1419}
1420
1421void InstructionCodeGeneratorARM64::VisitCompare(HCompare* compare) {
1422 Primitive::Type in_type = compare->InputAt(0)->GetType();
1423
1424 // 0 if: left == right
1425 // 1 if: left > right
1426 // -1 if: left < right
1427 switch (in_type) {
1428 case Primitive::kPrimLong: {
1429 Register result = OutputRegister(compare);
1430 Register left = InputRegisterAt(compare, 0);
1431 Operand right = InputOperandAt(compare, 1);
1432
1433 __ Cmp(left, right);
1434 __ Cset(result, ne);
1435 __ Cneg(result, result, lt);
1436 break;
1437 }
1438 case Primitive::kPrimFloat:
1439 case Primitive::kPrimDouble: {
1440 Register result = OutputRegister(compare);
1441 FPRegister left = InputFPRegisterAt(compare, 0);
Alexandre Rames93415462015-02-17 15:08:20 +00001442 if (compare->GetLocations()->InAt(1).IsConstant()) {
1443 if (kIsDebugBuild) {
1444 HInstruction* right = compare->GetLocations()->InAt(1).GetConstant();
1445 DCHECK((right->IsFloatConstant() && (right->AsFloatConstant()->GetValue() == 0.0f)) ||
1446 (right->IsDoubleConstant() && (right->AsDoubleConstant()->GetValue() == 0.0)));
1447 }
1448 // 0.0 is the only immediate that can be encoded directly in a FCMP instruction.
1449 __ Fcmp(left, 0.0);
1450 } else {
1451 __ Fcmp(left, InputFPRegisterAt(compare, 1));
1452 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00001453 if (compare->IsGtBias()) {
1454 __ Cset(result, ne);
1455 } else {
1456 __ Csetm(result, ne);
1457 }
1458 __ Cneg(result, result, compare->IsGtBias() ? mi : gt);
Alexandre Rames5319def2014-10-23 10:03:10 +01001459 break;
1460 }
1461 default:
1462 LOG(FATAL) << "Unimplemented compare type " << in_type;
1463 }
1464}
1465
1466void LocationsBuilderARM64::VisitCondition(HCondition* instruction) {
1467 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
1468 locations->SetInAt(0, Location::RequiresRegister());
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00001469 locations->SetInAt(1, ARM64EncodableConstantOrRegister(instruction->InputAt(1), instruction));
Alexandre Rames5319def2014-10-23 10:03:10 +01001470 if (instruction->NeedsMaterialization()) {
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001471 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001472 }
1473}
1474
1475void InstructionCodeGeneratorARM64::VisitCondition(HCondition* instruction) {
1476 if (!instruction->NeedsMaterialization()) {
1477 return;
1478 }
1479
1480 LocationSummary* locations = instruction->GetLocations();
1481 Register lhs = InputRegisterAt(instruction, 0);
1482 Operand rhs = InputOperandAt(instruction, 1);
1483 Register res = RegisterFrom(locations->Out(), instruction->GetType());
1484 Condition cond = ARM64Condition(instruction->GetCondition());
1485
1486 __ Cmp(lhs, rhs);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001487 __ Cset(res, cond);
Alexandre Rames5319def2014-10-23 10:03:10 +01001488}
1489
1490#define FOR_EACH_CONDITION_INSTRUCTION(M) \
1491 M(Equal) \
1492 M(NotEqual) \
1493 M(LessThan) \
1494 M(LessThanOrEqual) \
1495 M(GreaterThan) \
1496 M(GreaterThanOrEqual)
1497#define DEFINE_CONDITION_VISITORS(Name) \
1498void LocationsBuilderARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); } \
1499void InstructionCodeGeneratorARM64::Visit##Name(H##Name* comp) { VisitCondition(comp); }
1500FOR_EACH_CONDITION_INSTRUCTION(DEFINE_CONDITION_VISITORS)
Alexandre Rames67555f72014-11-18 10:55:16 +00001501#undef DEFINE_CONDITION_VISITORS
Alexandre Rames5319def2014-10-23 10:03:10 +01001502#undef FOR_EACH_CONDITION_INSTRUCTION
1503
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001504void LocationsBuilderARM64::VisitDiv(HDiv* div) {
1505 LocationSummary* locations =
1506 new (GetGraph()->GetArena()) LocationSummary(div, LocationSummary::kNoCall);
1507 switch (div->GetResultType()) {
1508 case Primitive::kPrimInt:
1509 case Primitive::kPrimLong:
1510 locations->SetInAt(0, Location::RequiresRegister());
1511 locations->SetInAt(1, Location::RequiresRegister());
1512 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
1513 break;
1514
1515 case Primitive::kPrimFloat:
1516 case Primitive::kPrimDouble:
1517 locations->SetInAt(0, Location::RequiresFpuRegister());
1518 locations->SetInAt(1, Location::RequiresFpuRegister());
1519 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
1520 break;
1521
1522 default:
1523 LOG(FATAL) << "Unexpected div type " << div->GetResultType();
1524 }
1525}
1526
1527void InstructionCodeGeneratorARM64::VisitDiv(HDiv* div) {
1528 Primitive::Type type = div->GetResultType();
1529 switch (type) {
1530 case Primitive::kPrimInt:
1531 case Primitive::kPrimLong:
1532 __ Sdiv(OutputRegister(div), InputRegisterAt(div, 0), InputRegisterAt(div, 1));
1533 break;
1534
1535 case Primitive::kPrimFloat:
1536 case Primitive::kPrimDouble:
1537 __ Fdiv(OutputFPRegister(div), InputFPRegisterAt(div, 0), InputFPRegisterAt(div, 1));
1538 break;
1539
1540 default:
1541 LOG(FATAL) << "Unexpected div type " << type;
1542 }
1543}
1544
Alexandre Rames67555f72014-11-18 10:55:16 +00001545void LocationsBuilderARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
1546 LocationSummary* locations =
1547 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
1548 locations->SetInAt(0, Location::RegisterOrConstant(instruction->InputAt(0)));
1549 if (instruction->HasUses()) {
1550 locations->SetOut(Location::SameAsFirstInput());
1551 }
1552}
1553
1554void InstructionCodeGeneratorARM64::VisitDivZeroCheck(HDivZeroCheck* instruction) {
1555 SlowPathCodeARM64* slow_path =
1556 new (GetGraph()->GetArena()) DivZeroCheckSlowPathARM64(instruction);
1557 codegen_->AddSlowPath(slow_path);
1558 Location value = instruction->GetLocations()->InAt(0);
1559
Alexandre Rames3e69f162014-12-10 10:36:50 +00001560 Primitive::Type type = instruction->GetType();
1561
1562 if ((type != Primitive::kPrimInt) && (type != Primitive::kPrimLong)) {
1563 LOG(FATAL) << "Unexpected type " << type << "for DivZeroCheck.";
1564 return;
1565 }
1566
Alexandre Rames67555f72014-11-18 10:55:16 +00001567 if (value.IsConstant()) {
1568 int64_t divisor = Int64ConstantFrom(value);
1569 if (divisor == 0) {
1570 __ B(slow_path->GetEntryLabel());
1571 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00001572 // A division by a non-null constant is valid. We don't need to perform
1573 // any check, so simply fall through.
Alexandre Rames67555f72014-11-18 10:55:16 +00001574 }
1575 } else {
1576 __ Cbz(InputRegisterAt(instruction, 0), slow_path->GetEntryLabel());
1577 }
1578}
1579
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001580void LocationsBuilderARM64::VisitDoubleConstant(HDoubleConstant* constant) {
1581 LocationSummary* locations =
1582 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1583 locations->SetOut(Location::ConstantLocation(constant));
1584}
1585
1586void InstructionCodeGeneratorARM64::VisitDoubleConstant(HDoubleConstant* constant) {
1587 UNUSED(constant);
1588 // Will be generated at use site.
1589}
1590
Alexandre Rames5319def2014-10-23 10:03:10 +01001591void LocationsBuilderARM64::VisitExit(HExit* exit) {
1592 exit->SetLocations(nullptr);
1593}
1594
1595void InstructionCodeGeneratorARM64::VisitExit(HExit* exit) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001596 UNUSED(exit);
Alexandre Rames5319def2014-10-23 10:03:10 +01001597}
1598
Alexandre Ramesa89086e2014-11-07 17:13:25 +00001599void LocationsBuilderARM64::VisitFloatConstant(HFloatConstant* constant) {
1600 LocationSummary* locations =
1601 new (GetGraph()->GetArena()) LocationSummary(constant, LocationSummary::kNoCall);
1602 locations->SetOut(Location::ConstantLocation(constant));
1603}
1604
1605void InstructionCodeGeneratorARM64::VisitFloatConstant(HFloatConstant* constant) {
1606 UNUSED(constant);
1607 // Will be generated at use site.
1608}
1609
Alexandre Rames5319def2014-10-23 10:03:10 +01001610void LocationsBuilderARM64::VisitGoto(HGoto* got) {
1611 got->SetLocations(nullptr);
1612}
1613
1614void InstructionCodeGeneratorARM64::VisitGoto(HGoto* got) {
1615 HBasicBlock* successor = got->GetSuccessor();
Serban Constantinescu02164b32014-11-13 14:05:07 +00001616 DCHECK(!successor->IsExitBlock());
1617 HBasicBlock* block = got->GetBlock();
1618 HInstruction* previous = got->GetPrevious();
1619 HLoopInformation* info = block->GetLoopInformation();
1620
David Brazdil46e2a392015-03-16 17:31:52 +00001621 if (info != nullptr && info->IsBackEdge(*block) && info->HasSuspendCheck()) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001622 codegen_->ClearSpillSlotsFromLoopPhisInStackMap(info->GetSuspendCheck());
1623 GenerateSuspendCheck(info->GetSuspendCheck(), successor);
1624 return;
1625 }
1626 if (block->IsEntryBlock() && (previous != nullptr) && previous->IsSuspendCheck()) {
1627 GenerateSuspendCheck(previous->AsSuspendCheck(), nullptr);
1628 }
1629 if (!codegen_->GoesToNextBlock(block, successor)) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001630 __ B(codegen_->GetLabelOf(successor));
1631 }
1632}
1633
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001634void InstructionCodeGeneratorARM64::GenerateTestAndBranch(HInstruction* instruction,
1635 vixl::Label* true_target,
1636 vixl::Label* false_target,
1637 vixl::Label* always_true_target) {
1638 HInstruction* cond = instruction->InputAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01001639 HCondition* condition = cond->AsCondition();
Alexandre Rames5319def2014-10-23 10:03:10 +01001640
Serban Constantinescu02164b32014-11-13 14:05:07 +00001641 if (cond->IsIntConstant()) {
1642 int32_t cond_value = cond->AsIntConstant()->GetValue();
1643 if (cond_value == 1) {
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001644 if (always_true_target != nullptr) {
1645 __ B(always_true_target);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001646 }
1647 return;
1648 } else {
1649 DCHECK_EQ(cond_value, 0);
1650 }
1651 } else if (!cond->IsCondition() || condition->NeedsMaterialization()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001652 // The condition instruction has been materialized, compare the output to 0.
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001653 Location cond_val = instruction->GetLocations()->InAt(0);
Alexandre Rames5319def2014-10-23 10:03:10 +01001654 DCHECK(cond_val.IsRegister());
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001655 __ Cbnz(InputRegisterAt(instruction, 0), true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01001656 } else {
1657 // The condition instruction has not been materialized, use its inputs as
1658 // the comparison and its condition as the branch condition.
1659 Register lhs = InputRegisterAt(condition, 0);
1660 Operand rhs = InputOperandAt(condition, 1);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001661 Condition arm64_cond = ARM64Condition(condition->GetCondition());
Alexandre Rames4388dcc2015-02-03 10:28:33 +00001662 if ((arm64_cond != gt && arm64_cond != le) && rhs.IsImmediate() && (rhs.immediate() == 0)) {
1663 switch (arm64_cond) {
1664 case eq:
1665 __ Cbz(lhs, true_target);
1666 break;
1667 case ne:
1668 __ Cbnz(lhs, true_target);
1669 break;
1670 case lt:
1671 // Test the sign bit and branch accordingly.
1672 __ Tbnz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, true_target);
1673 break;
1674 case ge:
1675 // Test the sign bit and branch accordingly.
1676 __ Tbz(lhs, (lhs.IsX() ? kXRegSize : kWRegSize) - 1, true_target);
1677 break;
1678 default:
1679 // Without the `static_cast` the compiler throws an error for
1680 // `-Werror=sign-promo`.
1681 LOG(FATAL) << "Unexpected condition: " << static_cast<int>(arm64_cond);
Alexandre Rames5319def2014-10-23 10:03:10 +01001682 }
1683 } else {
1684 __ Cmp(lhs, rhs);
Andreas Gampe277ccbd2014-11-03 21:36:10 -08001685 __ B(arm64_cond, true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +01001686 }
1687 }
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001688 if (false_target != nullptr) {
Alexandre Rames5319def2014-10-23 10:03:10 +01001689 __ B(false_target);
1690 }
1691}
1692
Mingyao Yangd43b3ac2015-04-01 14:03:04 -07001693void LocationsBuilderARM64::VisitIf(HIf* if_instr) {
1694 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(if_instr);
1695 HInstruction* cond = if_instr->InputAt(0);
1696 if (!cond->IsCondition() || cond->AsCondition()->NeedsMaterialization()) {
1697 locations->SetInAt(0, Location::RequiresRegister());
1698 }
1699}
1700
1701void InstructionCodeGeneratorARM64::VisitIf(HIf* if_instr) {
1702 vixl::Label* true_target = codegen_->GetLabelOf(if_instr->IfTrueSuccessor());
1703 vixl::Label* false_target = codegen_->GetLabelOf(if_instr->IfFalseSuccessor());
1704 vixl::Label* always_true_target = true_target;
1705 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1706 if_instr->IfTrueSuccessor())) {
1707 always_true_target = nullptr;
1708 }
1709 if (codegen_->GoesToNextBlock(if_instr->GetBlock(),
1710 if_instr->IfFalseSuccessor())) {
1711 false_target = nullptr;
1712 }
1713 GenerateTestAndBranch(if_instr, true_target, false_target, always_true_target);
1714}
1715
1716void LocationsBuilderARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
1717 LocationSummary* locations = new (GetGraph()->GetArena())
1718 LocationSummary(deoptimize, LocationSummary::kCallOnSlowPath);
1719 HInstruction* cond = deoptimize->InputAt(0);
1720 DCHECK(cond->IsCondition());
1721 if (cond->AsCondition()->NeedsMaterialization()) {
1722 locations->SetInAt(0, Location::RequiresRegister());
1723 }
1724}
1725
1726void InstructionCodeGeneratorARM64::VisitDeoptimize(HDeoptimize* deoptimize) {
1727 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena())
1728 DeoptimizationSlowPathARM64(deoptimize);
1729 codegen_->AddSlowPath(slow_path);
1730 vixl::Label* slow_path_entry = slow_path->GetEntryLabel();
1731 GenerateTestAndBranch(deoptimize, slow_path_entry, nullptr, slow_path_entry);
1732}
1733
Alexandre Rames5319def2014-10-23 10:03:10 +01001734void LocationsBuilderARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001735 LocationSummary* locations =
1736 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Alexandre Rames5319def2014-10-23 10:03:10 +01001737 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00001738 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01001739}
1740
1741void InstructionCodeGeneratorARM64::VisitInstanceFieldGet(HInstanceFieldGet* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001742 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), instruction->GetFieldOffset());
Serban Constantinescu579885a2015-02-22 20:51:33 +00001743 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001744
1745 if (instruction->IsVolatile()) {
Serban Constantinescu579885a2015-02-22 20:51:33 +00001746 if (use_acquire_release) {
Calin Juravle77520bc2015-01-12 18:45:46 +00001747 // NB: LoadAcquire will record the pc info if needed.
1748 codegen_->LoadAcquire(instruction, OutputCPURegister(instruction), field);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001749 } else {
1750 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
Calin Juravle77520bc2015-01-12 18:45:46 +00001751 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001752 // For IRIW sequential consistency kLoadAny is not sufficient.
1753 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1754 }
1755 } else {
1756 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
Calin Juravle77520bc2015-01-12 18:45:46 +00001757 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001758 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001759}
1760
1761void LocationsBuilderARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001762 LocationSummary* locations =
1763 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
Alexandre Rames5319def2014-10-23 10:03:10 +01001764 locations->SetInAt(0, Location::RequiresRegister());
1765 locations->SetInAt(1, Location::RequiresRegister());
1766}
1767
1768void InstructionCodeGeneratorARM64::VisitInstanceFieldSet(HInstanceFieldSet* instruction) {
Alexandre Ramesfc19de82014-11-07 17:13:31 +00001769 Register obj = InputRegisterAt(instruction, 0);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001770 CPURegister value = InputCPURegisterAt(instruction, 1);
1771 Offset offset = instruction->GetFieldOffset();
1772 Primitive::Type field_type = instruction->GetFieldType();
Serban Constantinescu579885a2015-02-22 20:51:33 +00001773 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001774
1775 if (instruction->IsVolatile()) {
Serban Constantinescu579885a2015-02-22 20:51:33 +00001776 if (use_acquire_release) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001777 codegen_->StoreRelease(field_type, value, HeapOperand(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001778 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001779 } else {
1780 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
1781 codegen_->Store(field_type, value, HeapOperand(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001782 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001783 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
1784 }
1785 } else {
1786 codegen_->Store(field_type, value, HeapOperand(obj, offset));
Calin Juravle77520bc2015-01-12 18:45:46 +00001787 codegen_->MaybeRecordImplicitNullCheck(instruction);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00001788 }
1789
1790 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Alexandre Rames67555f72014-11-18 10:55:16 +00001791 codegen_->MarkGCCard(obj, Register(value));
Alexandre Rames5319def2014-10-23 10:03:10 +01001792 }
1793}
1794
Alexandre Rames67555f72014-11-18 10:55:16 +00001795void LocationsBuilderARM64::VisitInstanceOf(HInstanceOf* instruction) {
1796 LocationSummary::CallKind call_kind =
1797 instruction->IsClassFinal() ? LocationSummary::kNoCall : LocationSummary::kCallOnSlowPath;
1798 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction, call_kind);
1799 locations->SetInAt(0, Location::RequiresRegister());
1800 locations->SetInAt(1, Location::RequiresRegister());
Nicolas Geoffray6c2dff82015-01-21 14:56:54 +00001801 // The output does overlap inputs.
1802 locations->SetOut(Location::RequiresRegister(), Location::kOutputOverlap);
Alexandre Rames67555f72014-11-18 10:55:16 +00001803}
1804
1805void InstructionCodeGeneratorARM64::VisitInstanceOf(HInstanceOf* instruction) {
1806 LocationSummary* locations = instruction->GetLocations();
1807 Register obj = InputRegisterAt(instruction, 0);;
1808 Register cls = InputRegisterAt(instruction, 1);;
1809 Register out = OutputRegister(instruction);
1810
1811 vixl::Label done;
1812
1813 // Return 0 if `obj` is null.
1814 // TODO: Avoid this check if we know `obj` is not null.
1815 __ Mov(out, 0);
1816 __ Cbz(obj, &done);
1817
1818 // Compare the class of `obj` with `cls`.
Serban Constantinescu02164b32014-11-13 14:05:07 +00001819 __ Ldr(out, HeapOperand(obj, mirror::Object::ClassOffset()));
Alexandre Rames67555f72014-11-18 10:55:16 +00001820 __ Cmp(out, cls);
1821 if (instruction->IsClassFinal()) {
1822 // Classes must be equal for the instanceof to succeed.
1823 __ Cset(out, eq);
1824 } else {
1825 // If the classes are not equal, we go into a slow path.
1826 DCHECK(locations->OnlyCallsOnSlowPath());
1827 SlowPathCodeARM64* slow_path =
Alexandre Rames3e69f162014-12-10 10:36:50 +00001828 new (GetGraph()->GetArena()) TypeCheckSlowPathARM64(
1829 instruction, locations->InAt(1), locations->Out(), instruction->GetDexPc());
Alexandre Rames67555f72014-11-18 10:55:16 +00001830 codegen_->AddSlowPath(slow_path);
1831 __ B(ne, slow_path->GetEntryLabel());
1832 __ Mov(out, 1);
1833 __ Bind(slow_path->GetExitLabel());
1834 }
1835
1836 __ Bind(&done);
1837}
1838
Alexandre Rames5319def2014-10-23 10:03:10 +01001839void LocationsBuilderARM64::VisitIntConstant(HIntConstant* constant) {
1840 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
1841 locations->SetOut(Location::ConstantLocation(constant));
1842}
1843
1844void InstructionCodeGeneratorARM64::VisitIntConstant(HIntConstant* constant) {
1845 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07001846 UNUSED(constant);
Alexandre Rames5319def2014-10-23 10:03:10 +01001847}
1848
Nicolas Geoffrayd6138ef2015-02-18 14:48:53 +00001849void LocationsBuilderARM64::VisitNullConstant(HNullConstant* constant) {
1850 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
1851 locations->SetOut(Location::ConstantLocation(constant));
1852}
1853
1854void InstructionCodeGeneratorARM64::VisitNullConstant(HNullConstant* constant) {
1855 // Will be generated at use site.
1856 UNUSED(constant);
1857}
1858
Alexandre Rames5319def2014-10-23 10:03:10 +01001859void LocationsBuilderARM64::HandleInvoke(HInvoke* invoke) {
1860 LocationSummary* locations =
1861 new (GetGraph()->GetArena()) LocationSummary(invoke, LocationSummary::kCall);
1862 locations->AddTemp(LocationFrom(x0));
1863
1864 InvokeDexCallingConventionVisitor calling_convention_visitor;
1865 for (size_t i = 0; i < invoke->InputCount(); i++) {
1866 HInstruction* input = invoke->InputAt(i);
1867 locations->SetInAt(i, calling_convention_visitor.GetNextLocation(input->GetType()));
1868 }
1869
1870 Primitive::Type return_type = invoke->GetType();
1871 if (return_type != Primitive::kPrimVoid) {
1872 locations->SetOut(calling_convention_visitor.GetReturnLocation(return_type));
1873 }
1874}
1875
Alexandre Rames67555f72014-11-18 10:55:16 +00001876void LocationsBuilderARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
1877 HandleInvoke(invoke);
1878}
1879
1880void InstructionCodeGeneratorARM64::VisitInvokeInterface(HInvokeInterface* invoke) {
1881 // TODO: b/18116999, our IMTs can miss an IncompatibleClassChangeError.
1882 Register temp = WRegisterFrom(invoke->GetLocations()->GetTemp(0));
1883 uint32_t method_offset = mirror::Class::EmbeddedImTableOffset().Uint32Value() +
1884 (invoke->GetImtIndex() % mirror::Class::kImtSize) * sizeof(mirror::Class::ImTableEntry);
1885 Location receiver = invoke->GetLocations()->InAt(0);
1886 Offset class_offset = mirror::Object::ClassOffset();
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001887 Offset entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames67555f72014-11-18 10:55:16 +00001888
1889 // The register ip1 is required to be used for the hidden argument in
1890 // art_quick_imt_conflict_trampoline, so prevent VIXL from using it.
1891 UseScratchRegisterScope scratch_scope(GetVIXLAssembler());
1892 scratch_scope.Exclude(ip1);
1893 __ Mov(ip1, invoke->GetDexMethodIndex());
1894
1895 // temp = object->GetClass();
1896 if (receiver.IsStackSlot()) {
1897 __ Ldr(temp, StackOperandFrom(receiver));
1898 __ Ldr(temp, HeapOperand(temp, class_offset));
1899 } else {
1900 __ Ldr(temp, HeapOperandFrom(receiver, class_offset));
1901 }
Calin Juravle77520bc2015-01-12 18:45:46 +00001902 codegen_->MaybeRecordImplicitNullCheck(invoke);
Alexandre Rames67555f72014-11-18 10:55:16 +00001903 // temp = temp->GetImtEntryAt(method_offset);
1904 __ Ldr(temp, HeapOperand(temp, method_offset));
1905 // lr = temp->GetEntryPoint();
1906 __ Ldr(lr, HeapOperand(temp, entry_point));
1907 // lr();
1908 __ Blr(lr);
1909 DCHECK(!codegen_->IsLeafMethod());
1910 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
1911}
1912
1913void LocationsBuilderARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08001914 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
1915 if (intrinsic.TryDispatch(invoke)) {
1916 return;
1917 }
1918
Alexandre Rames67555f72014-11-18 10:55:16 +00001919 HandleInvoke(invoke);
1920}
1921
Nicolas Geoffraye53798a2014-12-01 10:31:54 +00001922void LocationsBuilderARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08001923 IntrinsicLocationsBuilderARM64 intrinsic(GetGraph()->GetArena());
1924 if (intrinsic.TryDispatch(invoke)) {
1925 return;
1926 }
1927
Alexandre Rames67555f72014-11-18 10:55:16 +00001928 HandleInvoke(invoke);
1929}
1930
Andreas Gampe878d58c2015-01-15 23:24:00 -08001931static bool TryGenerateIntrinsicCode(HInvoke* invoke, CodeGeneratorARM64* codegen) {
1932 if (invoke->GetLocations()->Intrinsified()) {
1933 IntrinsicCodeGeneratorARM64 intrinsic(codegen);
1934 intrinsic.Dispatch(invoke);
1935 return true;
1936 }
1937 return false;
1938}
1939
1940void CodeGeneratorARM64::GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Register temp) {
1941 // Make sure that ArtMethod* is passed in kArtMethodRegister as per the calling convention.
1942 DCHECK(temp.Is(kArtMethodRegister));
Alexandre Rames5319def2014-10-23 10:03:10 +01001943 size_t index_in_cache = mirror::Array::DataOffset(kHeapRefSize).SizeValue() +
Andreas Gampe878d58c2015-01-15 23:24:00 -08001944 invoke->GetDexMethodIndex() * kHeapRefSize;
Alexandre Rames5319def2014-10-23 10:03:10 +01001945
1946 // TODO: Implement all kinds of calls:
1947 // 1) boot -> boot
1948 // 2) app -> boot
1949 // 3) app -> app
1950 //
1951 // Currently we implement the app -> app logic, which looks up in the resolve cache.
1952
Nicolas Geoffray0a299b92015-01-29 11:39:44 +00001953 // temp = method;
1954 LoadCurrentMethod(temp);
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001955 if (!invoke->IsRecursive()) {
Nicolas Geoffray1cf95282014-12-12 19:22:03 +00001956 // temp = temp->dex_cache_resolved_methods_;
1957 __ Ldr(temp, HeapOperand(temp, mirror::ArtMethod::DexCacheResolvedMethodsOffset()));
1958 // temp = temp[index_in_cache];
1959 __ Ldr(temp, HeapOperand(temp, index_in_cache));
1960 // lr = temp->entry_point_from_quick_compiled_code_;
1961 __ Ldr(lr, HeapOperand(temp, mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(
1962 kArm64WordSize)));
1963 // lr();
1964 __ Blr(lr);
1965 } else {
1966 __ Bl(&frame_entry_label_);
1967 }
Alexandre Rames5319def2014-10-23 10:03:10 +01001968
Andreas Gampe878d58c2015-01-15 23:24:00 -08001969 DCHECK(!IsLeafMethod());
1970}
1971
1972void InstructionCodeGeneratorARM64::VisitInvokeStaticOrDirect(HInvokeStaticOrDirect* invoke) {
1973 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1974 return;
1975 }
1976
1977 Register temp = WRegisterFrom(invoke->GetLocations()->GetTemp(0));
1978 codegen_->GenerateStaticOrDirectCall(invoke, temp);
Nicolas Geoffraya8ac9132015-03-13 16:36:36 +00001979 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
Alexandre Rames5319def2014-10-23 10:03:10 +01001980}
1981
1982void InstructionCodeGeneratorARM64::VisitInvokeVirtual(HInvokeVirtual* invoke) {
Andreas Gampe878d58c2015-01-15 23:24:00 -08001983 if (TryGenerateIntrinsicCode(invoke, codegen_)) {
1984 return;
1985 }
1986
Alexandre Rames5319def2014-10-23 10:03:10 +01001987 LocationSummary* locations = invoke->GetLocations();
1988 Location receiver = locations->InAt(0);
Serban Constantinescu02164b32014-11-13 14:05:07 +00001989 Register temp = WRegisterFrom(invoke->GetLocations()->GetTemp(0));
Alexandre Rames5319def2014-10-23 10:03:10 +01001990 size_t method_offset = mirror::Class::EmbeddedVTableOffset().SizeValue() +
1991 invoke->GetVTableIndex() * sizeof(mirror::Class::VTableEntry);
1992 Offset class_offset = mirror::Object::ClassOffset();
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +00001993 Offset entry_point = mirror::ArtMethod::EntryPointFromQuickCompiledCodeOffset(kArm64WordSize);
Alexandre Rames5319def2014-10-23 10:03:10 +01001994
1995 // temp = object->GetClass();
1996 if (receiver.IsStackSlot()) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00001997 __ Ldr(temp, MemOperand(sp, receiver.GetStackIndex()));
1998 __ Ldr(temp, HeapOperand(temp, class_offset));
Alexandre Rames5319def2014-10-23 10:03:10 +01001999 } else {
2000 DCHECK(receiver.IsRegister());
Serban Constantinescu02164b32014-11-13 14:05:07 +00002001 __ Ldr(temp, HeapOperandFrom(receiver, class_offset));
Alexandre Rames5319def2014-10-23 10:03:10 +01002002 }
Calin Juravle77520bc2015-01-12 18:45:46 +00002003 codegen_->MaybeRecordImplicitNullCheck(invoke);
Alexandre Rames5319def2014-10-23 10:03:10 +01002004 // temp = temp->GetMethodAt(method_offset);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002005 __ Ldr(temp, HeapOperand(temp, method_offset));
Alexandre Rames5319def2014-10-23 10:03:10 +01002006 // lr = temp->GetEntryPoint();
Serban Constantinescu02164b32014-11-13 14:05:07 +00002007 __ Ldr(lr, HeapOperand(temp, entry_point.SizeValue()));
Alexandre Rames5319def2014-10-23 10:03:10 +01002008 // lr();
2009 __ Blr(lr);
2010 DCHECK(!codegen_->IsLeafMethod());
2011 codegen_->RecordPcInfo(invoke, invoke->GetDexPc());
2012}
2013
Alexandre Rames67555f72014-11-18 10:55:16 +00002014void LocationsBuilderARM64::VisitLoadClass(HLoadClass* cls) {
2015 LocationSummary::CallKind call_kind = cls->CanCallRuntime() ? LocationSummary::kCallOnSlowPath
2016 : LocationSummary::kNoCall;
2017 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(cls, call_kind);
2018 locations->SetOut(Location::RequiresRegister());
2019}
2020
2021void InstructionCodeGeneratorARM64::VisitLoadClass(HLoadClass* cls) {
2022 Register out = OutputRegister(cls);
2023 if (cls->IsReferrersClass()) {
2024 DCHECK(!cls->CanCallRuntime());
2025 DCHECK(!cls->MustGenerateClinitCheck());
2026 codegen_->LoadCurrentMethod(out);
2027 __ Ldr(out, HeapOperand(out, mirror::ArtMethod::DeclaringClassOffset()));
2028 } else {
2029 DCHECK(cls->CanCallRuntime());
2030 codegen_->LoadCurrentMethod(out);
2031 __ Ldr(out, HeapOperand(out, mirror::ArtMethod::DexCacheResolvedTypesOffset()));
Serban Constantinescu02164b32014-11-13 14:05:07 +00002032 __ Ldr(out, HeapOperand(out, CodeGenerator::GetCacheOffset(cls->GetTypeIndex())));
Alexandre Rames67555f72014-11-18 10:55:16 +00002033
2034 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadClassSlowPathARM64(
2035 cls, cls, cls->GetDexPc(), cls->MustGenerateClinitCheck());
2036 codegen_->AddSlowPath(slow_path);
2037 __ Cbz(out, slow_path->GetEntryLabel());
2038 if (cls->MustGenerateClinitCheck()) {
2039 GenerateClassInitializationCheck(slow_path, out);
2040 } else {
2041 __ Bind(slow_path->GetExitLabel());
2042 }
2043 }
2044}
2045
2046void LocationsBuilderARM64::VisitLoadException(HLoadException* load) {
2047 LocationSummary* locations =
2048 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kNoCall);
2049 locations->SetOut(Location::RequiresRegister());
2050}
2051
2052void InstructionCodeGeneratorARM64::VisitLoadException(HLoadException* instruction) {
2053 MemOperand exception = MemOperand(tr, Thread::ExceptionOffset<kArm64WordSize>().Int32Value());
2054 __ Ldr(OutputRegister(instruction), exception);
2055 __ Str(wzr, exception);
2056}
2057
Alexandre Rames5319def2014-10-23 10:03:10 +01002058void LocationsBuilderARM64::VisitLoadLocal(HLoadLocal* load) {
2059 load->SetLocations(nullptr);
2060}
2061
2062void InstructionCodeGeneratorARM64::VisitLoadLocal(HLoadLocal* load) {
2063 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002064 UNUSED(load);
Alexandre Rames5319def2014-10-23 10:03:10 +01002065}
2066
Alexandre Rames67555f72014-11-18 10:55:16 +00002067void LocationsBuilderARM64::VisitLoadString(HLoadString* load) {
2068 LocationSummary* locations =
2069 new (GetGraph()->GetArena()) LocationSummary(load, LocationSummary::kCallOnSlowPath);
2070 locations->SetOut(Location::RequiresRegister());
2071}
2072
2073void InstructionCodeGeneratorARM64::VisitLoadString(HLoadString* load) {
2074 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) LoadStringSlowPathARM64(load);
2075 codegen_->AddSlowPath(slow_path);
2076
2077 Register out = OutputRegister(load);
2078 codegen_->LoadCurrentMethod(out);
Mathieu Chartiereace4582014-11-24 18:29:54 -08002079 __ Ldr(out, HeapOperand(out, mirror::ArtMethod::DeclaringClassOffset()));
2080 __ Ldr(out, HeapOperand(out, mirror::Class::DexCacheStringsOffset()));
Serban Constantinescu02164b32014-11-13 14:05:07 +00002081 __ Ldr(out, HeapOperand(out, CodeGenerator::GetCacheOffset(load->GetStringIndex())));
Alexandre Rames67555f72014-11-18 10:55:16 +00002082 __ Cbz(out, slow_path->GetEntryLabel());
2083 __ Bind(slow_path->GetExitLabel());
2084}
2085
Alexandre Rames5319def2014-10-23 10:03:10 +01002086void LocationsBuilderARM64::VisitLocal(HLocal* local) {
2087 local->SetLocations(nullptr);
2088}
2089
2090void InstructionCodeGeneratorARM64::VisitLocal(HLocal* local) {
2091 DCHECK_EQ(local->GetBlock(), GetGraph()->GetEntryBlock());
2092}
2093
2094void LocationsBuilderARM64::VisitLongConstant(HLongConstant* constant) {
2095 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(constant);
2096 locations->SetOut(Location::ConstantLocation(constant));
2097}
2098
2099void InstructionCodeGeneratorARM64::VisitLongConstant(HLongConstant* constant) {
2100 // Will be generated at use site.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002101 UNUSED(constant);
Alexandre Rames5319def2014-10-23 10:03:10 +01002102}
2103
Alexandre Rames67555f72014-11-18 10:55:16 +00002104void LocationsBuilderARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
2105 LocationSummary* locations =
2106 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2107 InvokeRuntimeCallingConvention calling_convention;
2108 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
2109}
2110
2111void InstructionCodeGeneratorARM64::VisitMonitorOperation(HMonitorOperation* instruction) {
2112 codegen_->InvokeRuntime(instruction->IsEnter()
2113 ? QUICK_ENTRY_POINT(pLockObject) : QUICK_ENTRY_POINT(pUnlockObject),
2114 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002115 instruction->GetDexPc(),
2116 nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002117 CheckEntrypointTypes<kQuickLockObject, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00002118}
2119
Alexandre Rames42d641b2014-10-27 14:00:51 +00002120void LocationsBuilderARM64::VisitMul(HMul* mul) {
2121 LocationSummary* locations =
2122 new (GetGraph()->GetArena()) LocationSummary(mul, LocationSummary::kNoCall);
2123 switch (mul->GetResultType()) {
2124 case Primitive::kPrimInt:
2125 case Primitive::kPrimLong:
2126 locations->SetInAt(0, Location::RequiresRegister());
2127 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002128 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00002129 break;
2130
2131 case Primitive::kPrimFloat:
2132 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002133 locations->SetInAt(0, Location::RequiresFpuRegister());
2134 locations->SetInAt(1, Location::RequiresFpuRegister());
Alexandre Rames67555f72014-11-18 10:55:16 +00002135 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Rames42d641b2014-10-27 14:00:51 +00002136 break;
2137
2138 default:
2139 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
2140 }
2141}
2142
2143void InstructionCodeGeneratorARM64::VisitMul(HMul* mul) {
2144 switch (mul->GetResultType()) {
2145 case Primitive::kPrimInt:
2146 case Primitive::kPrimLong:
2147 __ Mul(OutputRegister(mul), InputRegisterAt(mul, 0), InputRegisterAt(mul, 1));
2148 break;
2149
2150 case Primitive::kPrimFloat:
2151 case Primitive::kPrimDouble:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002152 __ Fmul(OutputFPRegister(mul), InputFPRegisterAt(mul, 0), InputFPRegisterAt(mul, 1));
Alexandre Rames42d641b2014-10-27 14:00:51 +00002153 break;
2154
2155 default:
2156 LOG(FATAL) << "Unexpected mul type " << mul->GetResultType();
2157 }
2158}
2159
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002160void LocationsBuilderARM64::VisitNeg(HNeg* neg) {
2161 LocationSummary* locations =
2162 new (GetGraph()->GetArena()) LocationSummary(neg, LocationSummary::kNoCall);
2163 switch (neg->GetResultType()) {
2164 case Primitive::kPrimInt:
Alexandre Rames67555f72014-11-18 10:55:16 +00002165 case Primitive::kPrimLong:
Serban Constantinescu2d35d9d2015-02-22 22:08:01 +00002166 locations->SetInAt(0, ARM64EncodableConstantOrRegister(neg->InputAt(0), neg));
Alexandre Rames67555f72014-11-18 10:55:16 +00002167 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002168 break;
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002169
2170 case Primitive::kPrimFloat:
2171 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00002172 locations->SetInAt(0, Location::RequiresFpuRegister());
2173 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002174 break;
2175
2176 default:
2177 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2178 }
2179}
2180
2181void InstructionCodeGeneratorARM64::VisitNeg(HNeg* neg) {
2182 switch (neg->GetResultType()) {
2183 case Primitive::kPrimInt:
2184 case Primitive::kPrimLong:
2185 __ Neg(OutputRegister(neg), InputOperandAt(neg, 0));
2186 break;
2187
2188 case Primitive::kPrimFloat:
2189 case Primitive::kPrimDouble:
Alexandre Rames67555f72014-11-18 10:55:16 +00002190 __ Fneg(OutputFPRegister(neg), InputFPRegisterAt(neg, 0));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002191 break;
2192
2193 default:
2194 LOG(FATAL) << "Unexpected neg type " << neg->GetResultType();
2195 }
2196}
2197
2198void LocationsBuilderARM64::VisitNewArray(HNewArray* instruction) {
2199 LocationSummary* locations =
2200 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2201 InvokeRuntimeCallingConvention calling_convention;
2202 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002203 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(2)));
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002204 locations->SetOut(LocationFrom(x0));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002205 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(1)));
2206 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
2207 void*, uint32_t, int32_t, mirror::ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002208}
2209
2210void InstructionCodeGeneratorARM64::VisitNewArray(HNewArray* instruction) {
2211 LocationSummary* locations = instruction->GetLocations();
2212 InvokeRuntimeCallingConvention calling_convention;
2213 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
2214 DCHECK(type_index.Is(w0));
2215 Register current_method = RegisterFrom(locations->GetTemp(1), Primitive::kPrimNot);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002216 DCHECK(current_method.Is(w2));
Alexandre Rames67555f72014-11-18 10:55:16 +00002217 codegen_->LoadCurrentMethod(current_method);
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002218 __ Mov(type_index, instruction->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +00002219 codegen_->InvokeRuntime(
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002220 GetThreadOffset<kArm64WordSize>(instruction->GetEntrypoint()).Int32Value(),
2221 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002222 instruction->GetDexPc(),
2223 nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002224 CheckEntrypointTypes<kQuickAllocArrayWithAccessCheck,
2225 void*, uint32_t, int32_t, mirror::ArtMethod*>();
Alexandre Ramesfc19de82014-11-07 17:13:31 +00002226}
2227
Alexandre Rames5319def2014-10-23 10:03:10 +01002228void LocationsBuilderARM64::VisitNewInstance(HNewInstance* instruction) {
2229 LocationSummary* locations =
2230 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2231 InvokeRuntimeCallingConvention calling_convention;
2232 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(0)));
2233 locations->AddTemp(LocationFrom(calling_convention.GetRegisterAt(1)));
2234 locations->SetOut(calling_convention.GetReturnLocation(Primitive::kPrimNot));
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002235 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, mirror::ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01002236}
2237
2238void InstructionCodeGeneratorARM64::VisitNewInstance(HNewInstance* instruction) {
2239 LocationSummary* locations = instruction->GetLocations();
2240 Register type_index = RegisterFrom(locations->GetTemp(0), Primitive::kPrimInt);
2241 DCHECK(type_index.Is(w0));
2242 Register current_method = RegisterFrom(locations->GetTemp(1), Primitive::kPrimNot);
2243 DCHECK(current_method.Is(w1));
Alexandre Rames67555f72014-11-18 10:55:16 +00002244 codegen_->LoadCurrentMethod(current_method);
Alexandre Rames5319def2014-10-23 10:03:10 +01002245 __ Mov(type_index, instruction->GetTypeIndex());
Alexandre Rames67555f72014-11-18 10:55:16 +00002246 codegen_->InvokeRuntime(
Nicolas Geoffraycb1b00a2015-01-28 14:50:01 +00002247 GetThreadOffset<kArm64WordSize>(instruction->GetEntrypoint()).Int32Value(),
2248 instruction,
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002249 instruction->GetDexPc(),
2250 nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002251 CheckEntrypointTypes<kQuickAllocObjectWithAccessCheck, void*, uint32_t, mirror::ArtMethod*>();
Alexandre Rames5319def2014-10-23 10:03:10 +01002252}
2253
2254void LocationsBuilderARM64::VisitNot(HNot* instruction) {
2255 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
Alexandre Rames4e596512014-11-07 15:56:50 +00002256 locations->SetInAt(0, Location::RequiresRegister());
Alexandre Ramesfb4e5fa2014-11-06 12:41:16 +00002257 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
Alexandre Rames5319def2014-10-23 10:03:10 +01002258}
2259
2260void InstructionCodeGeneratorARM64::VisitNot(HNot* instruction) {
Nicolas Geoffrayd8ef2e92015-02-24 16:02:06 +00002261 switch (instruction->GetResultType()) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002262 case Primitive::kPrimInt:
Alexandre Rames5319def2014-10-23 10:03:10 +01002263 case Primitive::kPrimLong:
Roland Levillain55dcfb52014-10-24 18:09:09 +01002264 __ Mvn(OutputRegister(instruction), InputOperandAt(instruction, 0));
Alexandre Rames5319def2014-10-23 10:03:10 +01002265 break;
2266
2267 default:
2268 LOG(FATAL) << "Unexpected type for not operation " << instruction->GetResultType();
2269 }
2270}
2271
2272void LocationsBuilderARM64::VisitNullCheck(HNullCheck* instruction) {
2273 LocationSummary* locations =
2274 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2275 locations->SetInAt(0, Location::RequiresRegister());
2276 if (instruction->HasUses()) {
2277 locations->SetOut(Location::SameAsFirstInput());
2278 }
2279}
2280
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002281void InstructionCodeGeneratorARM64::GenerateImplicitNullCheck(HNullCheck* instruction) {
Calin Juravle77520bc2015-01-12 18:45:46 +00002282 if (codegen_->CanMoveNullCheckToUser(instruction)) {
2283 return;
2284 }
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002285 Location obj = instruction->GetLocations()->InAt(0);
2286
2287 __ Ldr(wzr, HeapOperandFrom(obj, Offset(0)));
2288 codegen_->RecordPcInfo(instruction, instruction->GetDexPc());
2289}
2290
2291void InstructionCodeGeneratorARM64::GenerateExplicitNullCheck(HNullCheck* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002292 SlowPathCodeARM64* slow_path = new (GetGraph()->GetArena()) NullCheckSlowPathARM64(instruction);
2293 codegen_->AddSlowPath(slow_path);
2294
2295 LocationSummary* locations = instruction->GetLocations();
2296 Location obj = locations->InAt(0);
Calin Juravle77520bc2015-01-12 18:45:46 +00002297
2298 __ Cbz(RegisterFrom(obj, instruction->InputAt(0)->GetType()), slow_path->GetEntryLabel());
Alexandre Rames5319def2014-10-23 10:03:10 +01002299}
2300
Calin Juravlecd6dffe2015-01-08 17:35:35 +00002301void InstructionCodeGeneratorARM64::VisitNullCheck(HNullCheck* instruction) {
2302 if (codegen_->GetCompilerOptions().GetImplicitNullChecks()) {
2303 GenerateImplicitNullCheck(instruction);
2304 } else {
2305 GenerateExplicitNullCheck(instruction);
2306 }
2307}
2308
Alexandre Rames67555f72014-11-18 10:55:16 +00002309void LocationsBuilderARM64::VisitOr(HOr* instruction) {
2310 HandleBinaryOp(instruction);
2311}
2312
2313void InstructionCodeGeneratorARM64::VisitOr(HOr* instruction) {
2314 HandleBinaryOp(instruction);
2315}
2316
Alexandre Rames3e69f162014-12-10 10:36:50 +00002317void LocationsBuilderARM64::VisitParallelMove(HParallelMove* instruction ATTRIBUTE_UNUSED) {
2318 LOG(FATAL) << "Unreachable";
2319}
2320
2321void InstructionCodeGeneratorARM64::VisitParallelMove(HParallelMove* instruction) {
2322 codegen_->GetMoveResolver()->EmitNativeCode(instruction);
2323}
2324
Alexandre Rames5319def2014-10-23 10:03:10 +01002325void LocationsBuilderARM64::VisitParameterValue(HParameterValue* instruction) {
2326 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2327 Location location = parameter_visitor_.GetNextLocation(instruction->GetType());
2328 if (location.IsStackSlot()) {
2329 location = Location::StackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2330 } else if (location.IsDoubleStackSlot()) {
2331 location = Location::DoubleStackSlot(location.GetStackIndex() + codegen_->GetFrameSize());
2332 }
2333 locations->SetOut(location);
2334}
2335
2336void InstructionCodeGeneratorARM64::VisitParameterValue(HParameterValue* instruction) {
2337 // Nothing to do, the parameter is already at its location.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002338 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002339}
2340
2341void LocationsBuilderARM64::VisitPhi(HPhi* instruction) {
2342 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2343 for (size_t i = 0, e = instruction->InputCount(); i < e; ++i) {
2344 locations->SetInAt(i, Location::Any());
2345 }
2346 locations->SetOut(Location::Any());
2347}
2348
2349void InstructionCodeGeneratorARM64::VisitPhi(HPhi* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002350 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002351 LOG(FATAL) << "Unreachable";
2352}
2353
Serban Constantinescu02164b32014-11-13 14:05:07 +00002354void LocationsBuilderARM64::VisitRem(HRem* rem) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002355 Primitive::Type type = rem->GetResultType();
Alexandre Rames542361f2015-01-29 16:57:31 +00002356 LocationSummary::CallKind call_kind =
2357 Primitive::IsFloatingPointType(type) ? LocationSummary::kCall : LocationSummary::kNoCall;
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002358 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(rem, call_kind);
2359
2360 switch (type) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002361 case Primitive::kPrimInt:
2362 case Primitive::kPrimLong:
2363 locations->SetInAt(0, Location::RequiresRegister());
2364 locations->SetInAt(1, Location::RequiresRegister());
2365 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2366 break;
2367
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002368 case Primitive::kPrimFloat:
2369 case Primitive::kPrimDouble: {
2370 InvokeRuntimeCallingConvention calling_convention;
2371 locations->SetInAt(0, LocationFrom(calling_convention.GetFpuRegisterAt(0)));
2372 locations->SetInAt(1, LocationFrom(calling_convention.GetFpuRegisterAt(1)));
2373 locations->SetOut(calling_convention.GetReturnLocation(type));
2374
2375 break;
2376 }
2377
Serban Constantinescu02164b32014-11-13 14:05:07 +00002378 default:
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002379 LOG(FATAL) << "Unexpected rem type " << type;
Serban Constantinescu02164b32014-11-13 14:05:07 +00002380 }
2381}
2382
2383void InstructionCodeGeneratorARM64::VisitRem(HRem* rem) {
2384 Primitive::Type type = rem->GetResultType();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002385
Serban Constantinescu02164b32014-11-13 14:05:07 +00002386 switch (type) {
2387 case Primitive::kPrimInt:
2388 case Primitive::kPrimLong: {
2389 UseScratchRegisterScope temps(GetVIXLAssembler());
2390 Register dividend = InputRegisterAt(rem, 0);
2391 Register divisor = InputRegisterAt(rem, 1);
2392 Register output = OutputRegister(rem);
2393 Register temp = temps.AcquireSameSizeAs(output);
2394
2395 __ Sdiv(temp, dividend, divisor);
2396 __ Msub(output, temp, divisor, dividend);
2397 break;
2398 }
2399
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002400 case Primitive::kPrimFloat:
2401 case Primitive::kPrimDouble: {
2402 int32_t entry_offset = (type == Primitive::kPrimFloat) ? QUICK_ENTRY_POINT(pFmodf)
2403 : QUICK_ENTRY_POINT(pFmod);
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002404 codegen_->InvokeRuntime(entry_offset, rem, rem->GetDexPc(), nullptr);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002405 break;
2406 }
2407
Serban Constantinescu02164b32014-11-13 14:05:07 +00002408 default:
2409 LOG(FATAL) << "Unexpected rem type " << type;
2410 }
2411}
2412
Alexandre Rames5319def2014-10-23 10:03:10 +01002413void LocationsBuilderARM64::VisitReturn(HReturn* instruction) {
2414 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(instruction);
2415 Primitive::Type return_type = instruction->InputAt(0)->GetType();
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002416 locations->SetInAt(0, ARM64ReturnLocation(return_type));
Alexandre Rames5319def2014-10-23 10:03:10 +01002417}
2418
2419void InstructionCodeGeneratorARM64::VisitReturn(HReturn* instruction) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002420 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002421 codegen_->GenerateFrameExit();
Alexandre Rames3e69f162014-12-10 10:36:50 +00002422 __ Ret();
Alexandre Rames5319def2014-10-23 10:03:10 +01002423}
2424
2425void LocationsBuilderARM64::VisitReturnVoid(HReturnVoid* instruction) {
2426 instruction->SetLocations(nullptr);
2427}
2428
2429void InstructionCodeGeneratorARM64::VisitReturnVoid(HReturnVoid* instruction) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002430 UNUSED(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002431 codegen_->GenerateFrameExit();
Alexandre Rames3e69f162014-12-10 10:36:50 +00002432 __ Ret();
Alexandre Rames5319def2014-10-23 10:03:10 +01002433}
2434
Serban Constantinescu02164b32014-11-13 14:05:07 +00002435void LocationsBuilderARM64::VisitShl(HShl* shl) {
2436 HandleShift(shl);
2437}
2438
2439void InstructionCodeGeneratorARM64::VisitShl(HShl* shl) {
2440 HandleShift(shl);
2441}
2442
2443void LocationsBuilderARM64::VisitShr(HShr* shr) {
2444 HandleShift(shr);
2445}
2446
2447void InstructionCodeGeneratorARM64::VisitShr(HShr* shr) {
2448 HandleShift(shr);
2449}
2450
Alexandre Rames5319def2014-10-23 10:03:10 +01002451void LocationsBuilderARM64::VisitStoreLocal(HStoreLocal* store) {
2452 LocationSummary* locations = new (GetGraph()->GetArena()) LocationSummary(store);
2453 Primitive::Type field_type = store->InputAt(1)->GetType();
2454 switch (field_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002455 case Primitive::kPrimNot:
Alexandre Rames5319def2014-10-23 10:03:10 +01002456 case Primitive::kPrimBoolean:
2457 case Primitive::kPrimByte:
2458 case Primitive::kPrimChar:
2459 case Primitive::kPrimShort:
2460 case Primitive::kPrimInt:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002461 case Primitive::kPrimFloat:
Alexandre Rames5319def2014-10-23 10:03:10 +01002462 locations->SetInAt(1, Location::StackSlot(codegen_->GetStackSlot(store->GetLocal())));
2463 break;
2464
2465 case Primitive::kPrimLong:
Alexandre Ramesa89086e2014-11-07 17:13:25 +00002466 case Primitive::kPrimDouble:
Alexandre Rames5319def2014-10-23 10:03:10 +01002467 locations->SetInAt(1, Location::DoubleStackSlot(codegen_->GetStackSlot(store->GetLocal())));
2468 break;
2469
2470 default:
2471 LOG(FATAL) << "Unimplemented local type " << field_type;
2472 }
2473}
2474
2475void InstructionCodeGeneratorARM64::VisitStoreLocal(HStoreLocal* store) {
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002476 UNUSED(store);
Alexandre Rames5319def2014-10-23 10:03:10 +01002477}
2478
2479void LocationsBuilderARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002480 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002481}
2482
2483void InstructionCodeGeneratorARM64::VisitSub(HSub* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002484 HandleBinaryOp(instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +01002485}
2486
Alexandre Rames67555f72014-11-18 10:55:16 +00002487void LocationsBuilderARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
2488 LocationSummary* locations =
2489 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2490 locations->SetInAt(0, Location::RequiresRegister());
2491 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2492}
2493
2494void InstructionCodeGeneratorARM64::VisitStaticFieldGet(HStaticFieldGet* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002495 MemOperand field = HeapOperand(InputRegisterAt(instruction, 0), instruction->GetFieldOffset());
Serban Constantinescu579885a2015-02-22 20:51:33 +00002496 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002497
2498 if (instruction->IsVolatile()) {
Serban Constantinescu579885a2015-02-22 20:51:33 +00002499 if (use_acquire_release) {
Calin Juravle77520bc2015-01-12 18:45:46 +00002500 // NB: LoadAcquire will record the pc info if needed.
2501 codegen_->LoadAcquire(instruction, OutputCPURegister(instruction), field);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002502 } else {
2503 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
2504 // For IRIW sequential consistency kLoadAny is not sufficient.
2505 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2506 }
2507 } else {
2508 codegen_->Load(instruction->GetType(), OutputCPURegister(instruction), field);
2509 }
Alexandre Rames67555f72014-11-18 10:55:16 +00002510}
2511
2512void LocationsBuilderARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames5319def2014-10-23 10:03:10 +01002513 LocationSummary* locations =
2514 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kNoCall);
2515 locations->SetInAt(0, Location::RequiresRegister());
2516 locations->SetInAt(1, Location::RequiresRegister());
Alexandre Rames5319def2014-10-23 10:03:10 +01002517}
2518
Alexandre Rames67555f72014-11-18 10:55:16 +00002519void InstructionCodeGeneratorARM64::VisitStaticFieldSet(HStaticFieldSet* instruction) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002520 Register cls = InputRegisterAt(instruction, 0);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002521 CPURegister value = InputCPURegisterAt(instruction, 1);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002522 Offset offset = instruction->GetFieldOffset();
Alexandre Rames67555f72014-11-18 10:55:16 +00002523 Primitive::Type field_type = instruction->GetFieldType();
Serban Constantinescu579885a2015-02-22 20:51:33 +00002524 bool use_acquire_release = codegen_->GetInstructionSetFeatures().PreferAcquireRelease();
Alexandre Rames5319def2014-10-23 10:03:10 +01002525
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002526 if (instruction->IsVolatile()) {
Serban Constantinescu579885a2015-02-22 20:51:33 +00002527 if (use_acquire_release) {
Serban Constantinescu02d81cc2015-01-05 16:08:49 +00002528 codegen_->StoreRelease(field_type, value, HeapOperand(cls, offset));
2529 } else {
2530 GenerateMemoryBarrier(MemBarrierKind::kAnyStore);
2531 codegen_->Store(field_type, value, HeapOperand(cls, offset));
2532 GenerateMemoryBarrier(MemBarrierKind::kAnyAny);
2533 }
2534 } else {
2535 codegen_->Store(field_type, value, HeapOperand(cls, offset));
2536 }
2537
2538 if (CodeGenerator::StoreNeedsWriteBarrier(field_type, instruction->InputAt(1))) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002539 codegen_->MarkGCCard(cls, Register(value));
2540 }
Alexandre Rames5319def2014-10-23 10:03:10 +01002541}
2542
2543void LocationsBuilderARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
2544 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCallOnSlowPath);
2545}
2546
2547void InstructionCodeGeneratorARM64::VisitSuspendCheck(HSuspendCheck* instruction) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002548 HBasicBlock* block = instruction->GetBlock();
2549 if (block->GetLoopInformation() != nullptr) {
2550 DCHECK(block->GetLoopInformation()->GetSuspendCheck() == instruction);
2551 // The back edge will generate the suspend check.
2552 return;
2553 }
2554 if (block->IsEntryBlock() && instruction->GetNext()->IsGoto()) {
2555 // The goto will generate the suspend check.
2556 return;
2557 }
2558 GenerateSuspendCheck(instruction, nullptr);
Alexandre Rames5319def2014-10-23 10:03:10 +01002559}
2560
2561void LocationsBuilderARM64::VisitTemporary(HTemporary* temp) {
2562 temp->SetLocations(nullptr);
2563}
2564
2565void InstructionCodeGeneratorARM64::VisitTemporary(HTemporary* temp) {
2566 // Nothing to do, this is driven by the code generator.
Ian Rogers6a3c1fc2014-10-31 00:33:20 -07002567 UNUSED(temp);
Alexandre Rames5319def2014-10-23 10:03:10 +01002568}
2569
Alexandre Rames67555f72014-11-18 10:55:16 +00002570void LocationsBuilderARM64::VisitThrow(HThrow* instruction) {
2571 LocationSummary* locations =
2572 new (GetGraph()->GetArena()) LocationSummary(instruction, LocationSummary::kCall);
2573 InvokeRuntimeCallingConvention calling_convention;
2574 locations->SetInAt(0, LocationFrom(calling_convention.GetRegisterAt(0)));
2575}
2576
2577void InstructionCodeGeneratorARM64::VisitThrow(HThrow* instruction) {
2578 codegen_->InvokeRuntime(
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +00002579 QUICK_ENTRY_POINT(pDeliverException), instruction, instruction->GetDexPc(), nullptr);
Andreas Gampe1cc7dba2014-12-17 18:43:01 -08002580 CheckEntrypointTypes<kQuickDeliverException, void, mirror::Object*>();
Alexandre Rames67555f72014-11-18 10:55:16 +00002581}
2582
2583void LocationsBuilderARM64::VisitTypeConversion(HTypeConversion* conversion) {
2584 LocationSummary* locations =
2585 new (GetGraph()->GetArena()) LocationSummary(conversion, LocationSummary::kNoCall);
2586 Primitive::Type input_type = conversion->GetInputType();
2587 Primitive::Type result_type = conversion->GetResultType();
Nicolas Geoffray01fcc9e2014-12-01 14:16:20 +00002588 DCHECK_NE(input_type, result_type);
Alexandre Rames67555f72014-11-18 10:55:16 +00002589 if ((input_type == Primitive::kPrimNot) || (input_type == Primitive::kPrimVoid) ||
2590 (result_type == Primitive::kPrimNot) || (result_type == Primitive::kPrimVoid)) {
2591 LOG(FATAL) << "Unexpected type conversion from " << input_type << " to " << result_type;
2592 }
2593
Alexandre Rames542361f2015-01-29 16:57:31 +00002594 if (Primitive::IsFloatingPointType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002595 locations->SetInAt(0, Location::RequiresFpuRegister());
2596 } else {
2597 locations->SetInAt(0, Location::RequiresRegister());
2598 }
2599
Alexandre Rames542361f2015-01-29 16:57:31 +00002600 if (Primitive::IsFloatingPointType(result_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002601 locations->SetOut(Location::RequiresFpuRegister(), Location::kNoOutputOverlap);
2602 } else {
2603 locations->SetOut(Location::RequiresRegister(), Location::kNoOutputOverlap);
2604 }
2605}
2606
2607void InstructionCodeGeneratorARM64::VisitTypeConversion(HTypeConversion* conversion) {
2608 Primitive::Type result_type = conversion->GetResultType();
2609 Primitive::Type input_type = conversion->GetInputType();
2610
2611 DCHECK_NE(input_type, result_type);
2612
Alexandre Rames542361f2015-01-29 16:57:31 +00002613 if (Primitive::IsIntegralType(result_type) && Primitive::IsIntegralType(input_type)) {
Alexandre Rames67555f72014-11-18 10:55:16 +00002614 int result_size = Primitive::ComponentSize(result_type);
2615 int input_size = Primitive::ComponentSize(input_type);
Alexandre Rames3e69f162014-12-10 10:36:50 +00002616 int min_size = std::min(result_size, input_size);
Serban Constantinescu02164b32014-11-13 14:05:07 +00002617 Register output = OutputRegister(conversion);
2618 Register source = InputRegisterAt(conversion, 0);
Alexandre Rames3e69f162014-12-10 10:36:50 +00002619 if ((result_type == Primitive::kPrimChar) && (input_size < result_size)) {
2620 __ Ubfx(output, source, 0, result_size * kBitsPerByte);
2621 } else if ((result_type == Primitive::kPrimChar) ||
2622 ((input_type == Primitive::kPrimChar) && (result_size > input_size))) {
2623 __ Ubfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00002624 } else {
Alexandre Rames3e69f162014-12-10 10:36:50 +00002625 __ Sbfx(output, output.IsX() ? source.X() : source.W(), 0, min_size * kBitsPerByte);
Alexandre Rames67555f72014-11-18 10:55:16 +00002626 }
Alexandre Rames542361f2015-01-29 16:57:31 +00002627 } else if (Primitive::IsFloatingPointType(result_type) && Primitive::IsIntegralType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002628 __ Scvtf(OutputFPRegister(conversion), InputRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00002629 } else if (Primitive::IsIntegralType(result_type) && Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002630 CHECK(result_type == Primitive::kPrimInt || result_type == Primitive::kPrimLong);
2631 __ Fcvtzs(OutputRegister(conversion), InputFPRegisterAt(conversion, 0));
Alexandre Rames542361f2015-01-29 16:57:31 +00002632 } else if (Primitive::IsFloatingPointType(result_type) &&
2633 Primitive::IsFloatingPointType(input_type)) {
Serban Constantinescu02164b32014-11-13 14:05:07 +00002634 __ Fcvt(OutputFPRegister(conversion), InputFPRegisterAt(conversion, 0));
2635 } else {
2636 LOG(FATAL) << "Unexpected or unimplemented type conversion from " << input_type
2637 << " to " << result_type;
Alexandre Rames67555f72014-11-18 10:55:16 +00002638 }
Serban Constantinescu02164b32014-11-13 14:05:07 +00002639}
Alexandre Rames67555f72014-11-18 10:55:16 +00002640
Serban Constantinescu02164b32014-11-13 14:05:07 +00002641void LocationsBuilderARM64::VisitUShr(HUShr* ushr) {
2642 HandleShift(ushr);
2643}
2644
2645void InstructionCodeGeneratorARM64::VisitUShr(HUShr* ushr) {
2646 HandleShift(ushr);
Alexandre Rames67555f72014-11-18 10:55:16 +00002647}
2648
2649void LocationsBuilderARM64::VisitXor(HXor* instruction) {
2650 HandleBinaryOp(instruction);
2651}
2652
2653void InstructionCodeGeneratorARM64::VisitXor(HXor* instruction) {
2654 HandleBinaryOp(instruction);
2655}
2656
Calin Juravleb1498f62015-02-16 13:13:29 +00002657void LocationsBuilderARM64::VisitBoundType(HBoundType* instruction) {
2658 // Nothing to do, this should be removed during prepare for register allocator.
2659 UNUSED(instruction);
2660 LOG(FATAL) << "Unreachable";
2661}
2662
2663void InstructionCodeGeneratorARM64::VisitBoundType(HBoundType* instruction) {
2664 // Nothing to do, this should be removed during prepare for register allocator.
2665 UNUSED(instruction);
2666 LOG(FATAL) << "Unreachable";
2667}
2668
Alexandre Rames67555f72014-11-18 10:55:16 +00002669#undef __
2670#undef QUICK_ENTRY_POINT
2671
Alexandre Rames5319def2014-10-23 10:03:10 +01002672} // namespace arm64
2673} // namespace art