blob: 9fe60b8adc321aea1435d2c80f09028d59054df0 [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#ifndef ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_
18#define ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_
19
20#include "code_generator.h"
Serban Constantinescu02d81cc2015-01-05 16:08:49 +000021#include "dex/compiler_enums.h"
Calin Juravlecd6dffe2015-01-08 17:35:35 +000022#include "driver/compiler_options.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010023#include "nodes.h"
24#include "parallel_move_resolver.h"
25#include "utils/arm64/assembler_arm64.h"
Serban Constantinescu82e52ce2015-03-26 16:50:57 +000026#include "vixl/a64/disasm-a64.h"
27#include "vixl/a64/macro-assembler-a64.h"
Alexandre Rames5319def2014-10-23 10:03:10 +010028#include "arch/arm64/quick_method_frame_info_arm64.h"
29
30namespace art {
31namespace arm64 {
32
33class CodeGeneratorARM64;
Andreas Gampe878d58c2015-01-15 23:24:00 -080034
Nicolas Geoffray86a8d7a2014-11-19 08:47:18 +000035// Use a local definition to prevent copying mistakes.
36static constexpr size_t kArm64WordSize = kArm64PointerSize;
37
Alexandre Rames5319def2014-10-23 10:03:10 +010038static const vixl::Register kParameterCoreRegisters[] = {
39 vixl::x1, vixl::x2, vixl::x3, vixl::x4, vixl::x5, vixl::x6, vixl::x7
40};
41static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
42static const vixl::FPRegister kParameterFPRegisters[] = {
43 vixl::d0, vixl::d1, vixl::d2, vixl::d3, vixl::d4, vixl::d5, vixl::d6, vixl::d7
44};
45static constexpr size_t kParameterFPRegistersLength = arraysize(kParameterFPRegisters);
46
Andreas Gampe878d58c2015-01-15 23:24:00 -080047const vixl::Register tr = vixl::x18; // Thread Register
48static const vixl::Register kArtMethodRegister = vixl::w0; // Method register on invoke.
Alexandre Rames5319def2014-10-23 10:03:10 +010049
50const vixl::CPURegList vixl_reserved_core_registers(vixl::ip0, vixl::ip1);
Alexandre Ramesa89086e2014-11-07 17:13:25 +000051const vixl::CPURegList vixl_reserved_fp_registers(vixl::d31);
Alexandre Rames5319def2014-10-23 10:03:10 +010052
Zheng Xu69a50302015-04-14 20:04:41 +080053const vixl::CPURegList runtime_reserved_core_registers(tr, vixl::lr);
Serban Constantinescu3d087de2015-01-28 11:57:05 +000054
55// Callee-saved registers defined by AAPCS64.
56const vixl::CPURegList callee_saved_core_registers(vixl::CPURegister::kRegister,
57 vixl::kXRegSize,
58 vixl::x19.code(),
59 vixl::x30.code());
60const vixl::CPURegList callee_saved_fp_registers(vixl::CPURegister::kFPRegister,
61 vixl::kDRegSize,
62 vixl::d8.code(),
63 vixl::d15.code());
Alexandre Ramesa89086e2014-11-07 17:13:25 +000064Location ARM64ReturnLocation(Primitive::Type return_type);
65
Andreas Gampe878d58c2015-01-15 23:24:00 -080066class SlowPathCodeARM64 : public SlowPathCode {
67 public:
68 SlowPathCodeARM64() : entry_label_(), exit_label_() {}
69
70 vixl::Label* GetEntryLabel() { return &entry_label_; }
71 vixl::Label* GetExitLabel() { return &exit_label_; }
72
73 private:
74 vixl::Label entry_label_;
75 vixl::Label exit_label_;
76
77 DISALLOW_COPY_AND_ASSIGN(SlowPathCodeARM64);
78};
79
Nicolas Geoffrayd75948a2015-03-27 09:53:16 +000080static const vixl::Register kRuntimeParameterCoreRegisters[] =
81 { vixl::x0, vixl::x1, vixl::x2, vixl::x3, vixl::x4, vixl::x5, vixl::x6, vixl::x7 };
82static constexpr size_t kRuntimeParameterCoreRegistersLength =
83 arraysize(kRuntimeParameterCoreRegisters);
84static const vixl::FPRegister kRuntimeParameterFpuRegisters[] =
85 { vixl::d0, vixl::d1, vixl::d2, vixl::d3, vixl::d4, vixl::d5, vixl::d6, vixl::d7 };
86static constexpr size_t kRuntimeParameterFpuRegistersLength =
87 arraysize(kRuntimeParameterCoreRegisters);
88
89class InvokeRuntimeCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> {
90 public:
91 static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
92
93 InvokeRuntimeCallingConvention()
94 : CallingConvention(kRuntimeParameterCoreRegisters,
95 kRuntimeParameterCoreRegistersLength,
96 kRuntimeParameterFpuRegisters,
97 kRuntimeParameterFpuRegistersLength) {}
98
99 Location GetReturnLocation(Primitive::Type return_type);
100
101 private:
102 DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention);
103};
104
Alexandre Rames5319def2014-10-23 10:03:10 +0100105class InvokeDexCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> {
106 public:
107 InvokeDexCallingConvention()
108 : CallingConvention(kParameterCoreRegisters,
109 kParameterCoreRegistersLength,
110 kParameterFPRegisters,
111 kParameterFPRegistersLength) {}
112
113 Location GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000114 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100115 }
116
117
118 private:
119 DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConvention);
120};
121
122class InvokeDexCallingConventionVisitor {
123 public:
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000124 InvokeDexCallingConventionVisitor() : gp_index_(0), fp_index_(0), stack_index_(0) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100125
126 Location GetNextLocation(Primitive::Type type);
127 Location GetReturnLocation(Primitive::Type return_type) {
128 return calling_convention.GetReturnLocation(return_type);
129 }
130
131 private:
132 InvokeDexCallingConvention calling_convention;
133 // The current index for core registers.
134 uint32_t gp_index_;
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000135 // The current index for floating-point registers.
136 uint32_t fp_index_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100137 // The current stack index.
138 uint32_t stack_index_;
139
140 DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConventionVisitor);
141};
142
143class InstructionCodeGeneratorARM64 : public HGraphVisitor {
144 public:
145 InstructionCodeGeneratorARM64(HGraph* graph, CodeGeneratorARM64* codegen);
146
147#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000148 void Visit##name(H##name* instr) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100149 FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
150#undef DECLARE_VISIT_INSTRUCTION
151
152 void LoadCurrentMethod(XRegister reg);
153
154 Arm64Assembler* GetAssembler() const { return assembler_; }
Alexandre Rames67555f72014-11-18 10:55:16 +0000155 vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; }
Alexandre Rames5319def2014-10-23 10:03:10 +0100156
157 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000158 void GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path, vixl::Register class_reg);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000159 void GenerateMemoryBarrier(MemBarrierKind kind);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000160 void GenerateSuspendCheck(HSuspendCheck* instruction, HBasicBlock* successor);
Alexandre Rames67555f72014-11-18 10:55:16 +0000161 void HandleBinaryOp(HBinaryOperation* instr);
Alexandre Rames09a99962015-04-15 11:47:56 +0100162 void HandleFieldSet(HInstruction* instruction, const FieldInfo& field_info);
163 void HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000164 void HandleShift(HBinaryOperation* instr);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000165 void GenerateImplicitNullCheck(HNullCheck* instruction);
166 void GenerateExplicitNullCheck(HNullCheck* instruction);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700167 void GenerateTestAndBranch(HInstruction* instruction,
168 vixl::Label* true_target,
169 vixl::Label* false_target,
170 vixl::Label* always_true_target);
Alexandre Rames5319def2014-10-23 10:03:10 +0100171
172 Arm64Assembler* const assembler_;
173 CodeGeneratorARM64* const codegen_;
174
175 DISALLOW_COPY_AND_ASSIGN(InstructionCodeGeneratorARM64);
176};
177
178class LocationsBuilderARM64 : public HGraphVisitor {
179 public:
180 explicit LocationsBuilderARM64(HGraph* graph, CodeGeneratorARM64* codegen)
181 : HGraphVisitor(graph), codegen_(codegen) {}
182
183#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000184 void Visit##name(H##name* instr) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100185 FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
186#undef DECLARE_VISIT_INSTRUCTION
187
188 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000189 void HandleBinaryOp(HBinaryOperation* instr);
Alexandre Rames09a99962015-04-15 11:47:56 +0100190 void HandleFieldSet(HInstruction* instruction);
191 void HandleFieldGet(HInstruction* instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +0100192 void HandleInvoke(HInvoke* instr);
Alexandre Rames09a99962015-04-15 11:47:56 +0100193 void HandleShift(HBinaryOperation* instr);
Alexandre Rames5319def2014-10-23 10:03:10 +0100194
195 CodeGeneratorARM64* const codegen_;
196 InvokeDexCallingConventionVisitor parameter_visitor_;
197
198 DISALLOW_COPY_AND_ASSIGN(LocationsBuilderARM64);
199};
200
Alexandre Rames3e69f162014-12-10 10:36:50 +0000201class ParallelMoveResolverARM64 : public ParallelMoveResolver {
202 public:
203 ParallelMoveResolverARM64(ArenaAllocator* allocator, CodeGeneratorARM64* codegen)
204 : ParallelMoveResolver(allocator), codegen_(codegen) {}
205
206 void EmitMove(size_t index) OVERRIDE;
207 void EmitSwap(size_t index) OVERRIDE;
208 void RestoreScratch(int reg) OVERRIDE;
209 void SpillScratch(int reg) OVERRIDE;
210
211 private:
212 Arm64Assembler* GetAssembler() const;
213 vixl::MacroAssembler* GetVIXLAssembler() const {
214 return GetAssembler()->vixl_masm_;
215 }
216
217 CodeGeneratorARM64* const codegen_;
218
219 DISALLOW_COPY_AND_ASSIGN(ParallelMoveResolverARM64);
220};
221
Alexandre Rames5319def2014-10-23 10:03:10 +0100222class CodeGeneratorARM64 : public CodeGenerator {
223 public:
Serban Constantinescu579885a2015-02-22 20:51:33 +0000224 CodeGeneratorARM64(HGraph* graph,
225 const Arm64InstructionSetFeatures& isa_features,
226 const CompilerOptions& compiler_options);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000227 virtual ~CodeGeneratorARM64() {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100228
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000229 void GenerateFrameEntry() OVERRIDE;
230 void GenerateFrameExit() OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100231
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000232 vixl::CPURegList GetFramePreservedCoreRegisters() const {
233 return vixl::CPURegList(vixl::CPURegister::kRegister, vixl::kXRegSize,
234 core_spill_mask_);
235 }
236
237 vixl::CPURegList GetFramePreservedFPRegisters() const {
238 return vixl::CPURegList(vixl::CPURegister::kFPRegister, vixl::kDRegSize,
239 fpu_spill_mask_);
Alexandre Rames5319def2014-10-23 10:03:10 +0100240 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100241
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000242 void Bind(HBasicBlock* block) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100243
244 vixl::Label* GetLabelOf(HBasicBlock* block) const {
Nicolas Geoffraydc23d832015-02-16 11:15:43 +0000245 return CommonGetLabelOf<vixl::Label>(block_labels_, block);
Alexandre Rames5319def2014-10-23 10:03:10 +0100246 }
247
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000248 void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100249
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000250 size_t GetWordSize() const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100251 return kArm64WordSize;
252 }
253
Mark Mendellf85a9ca2015-01-13 09:20:58 -0500254 size_t GetFloatingPointSpillSlotSize() const OVERRIDE {
255 // Allocated in D registers, which are word sized.
256 return kArm64WordSize;
257 }
258
Alexandre Rames67555f72014-11-18 10:55:16 +0000259 uintptr_t GetAddressOf(HBasicBlock* block) const OVERRIDE {
260 vixl::Label* block_entry_label = GetLabelOf(block);
261 DCHECK(block_entry_label->IsBound());
262 return block_entry_label->location();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000263 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100264
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000265 HGraphVisitor* GetLocationBuilder() OVERRIDE { return &location_builder_; }
266 HGraphVisitor* GetInstructionVisitor() OVERRIDE { return &instruction_visitor_; }
267 Arm64Assembler* GetAssembler() OVERRIDE { return &assembler_; }
Alexandre Rames67555f72014-11-18 10:55:16 +0000268 vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; }
Alexandre Rames5319def2014-10-23 10:03:10 +0100269
270 // Emit a write barrier.
271 void MarkGCCard(vixl::Register object, vixl::Register value);
272
273 // Register allocation.
274
Nicolas Geoffray98893962015-01-21 12:32:32 +0000275 void SetupBlockedRegisters(bool is_baseline) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100276 // AllocateFreeRegister() is only used when allocating registers locally
277 // during CompileBaseline().
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000278 Location AllocateFreeRegister(Primitive::Type type) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100279
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000280 Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100281
Alexandre Rames3e69f162014-12-10 10:36:50 +0000282 size_t SaveCoreRegister(size_t stack_index, uint32_t reg_id);
283 size_t RestoreCoreRegister(size_t stack_index, uint32_t reg_id);
284 size_t SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id);
285 size_t RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id);
Alexandre Rames5319def2014-10-23 10:03:10 +0100286
287 // The number of registers that can be allocated. The register allocator may
288 // decide to reserve and not use a few of them.
289 // We do not consider registers sp, xzr, wzr. They are either not allocatable
290 // (xzr, wzr), or make for poor allocatable registers (sp alignment
291 // requirements, etc.). This also facilitates our task as all other registers
292 // can easily be mapped via to or from their type and index or code.
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000293 static const int kNumberOfAllocatableRegisters = vixl::kNumberOfRegisters - 1;
294 static const int kNumberOfAllocatableFPRegisters = vixl::kNumberOfFPRegisters;
Alexandre Rames5319def2014-10-23 10:03:10 +0100295 static constexpr int kNumberOfAllocatableRegisterPairs = 0;
296
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000297 void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
298 void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100299
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000300 InstructionSet GetInstructionSet() const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100301 return InstructionSet::kArm64;
302 }
303
Serban Constantinescu579885a2015-02-22 20:51:33 +0000304 const Arm64InstructionSetFeatures& GetInstructionSetFeatures() const {
305 return isa_features_;
306 }
307
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000308 void Initialize() OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100309 HGraph* graph = GetGraph();
310 int length = graph->GetBlocks().Size();
311 block_labels_ = graph->GetArena()->AllocArray<vixl::Label>(length);
312 for (int i = 0; i < length; ++i) {
313 new(block_labels_ + i) vixl::Label();
314 }
315 }
316
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000317 void Finalize(CodeAllocator* allocator) OVERRIDE;
318
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000319 // Code generation helpers.
Alexandre Rames67555f72014-11-18 10:55:16 +0000320 void MoveConstant(vixl::CPURegister destination, HConstant* constant);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000321 // The type is optional. When specified it must be coherent with the
322 // locations, and is used for optimisation and debugging.
323 void MoveLocation(Location destination, Location source,
324 Primitive::Type type = Primitive::kPrimVoid);
325 void SwapLocations(Location loc_1, Location loc_2);
Alexandre Rames67555f72014-11-18 10:55:16 +0000326 void Load(Primitive::Type type, vixl::CPURegister dst, const vixl::MemOperand& src);
327 void Store(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst);
328 void LoadCurrentMethod(vixl::Register current_method);
Calin Juravle77520bc2015-01-12 18:45:46 +0000329 void LoadAcquire(HInstruction* instruction, vixl::CPURegister dst, const vixl::MemOperand& src);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000330 void StoreRelease(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000331
332 // Generate code to invoke a runtime entry point.
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000333 void InvokeRuntime(int32_t offset,
334 HInstruction* instruction,
335 uint32_t dex_pc,
336 SlowPathCode* slow_path);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000337
Alexandre Rames3e69f162014-12-10 10:36:50 +0000338 ParallelMoveResolverARM64* GetMoveResolver() { return &move_resolver_; }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000339
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000340 bool NeedsTwoRegisters(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE {
341 return false;
342 }
343
Andreas Gampe878d58c2015-01-15 23:24:00 -0800344 void GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, vixl::Register temp);
345
Alexandre Rames5319def2014-10-23 10:03:10 +0100346 private:
347 // Labels for each block that will be compiled.
348 vixl::Label* block_labels_;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000349 vixl::Label frame_entry_label_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100350
351 LocationsBuilderARM64 location_builder_;
352 InstructionCodeGeneratorARM64 instruction_visitor_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000353 ParallelMoveResolverARM64 move_resolver_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100354 Arm64Assembler assembler_;
Serban Constantinescu579885a2015-02-22 20:51:33 +0000355 const Arm64InstructionSetFeatures& isa_features_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100356
357 DISALLOW_COPY_AND_ASSIGN(CodeGeneratorARM64);
358};
359
Alexandre Rames3e69f162014-12-10 10:36:50 +0000360inline Arm64Assembler* ParallelMoveResolverARM64::GetAssembler() const {
361 return codegen_->GetAssembler();
362}
363
Alexandre Rames5319def2014-10-23 10:03:10 +0100364} // namespace arm64
365} // namespace art
366
367#endif // ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_