blob: cbb2e5c749dba28edc35f50eeb4e7cf975e7697e [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"
26#include "a64/disasm-a64.h"
27#include "a64/macro-assembler-a64.h"
28#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.
Serban Constantinescu3d087de2015-01-28 11:57:05 +000049const vixl::Register kQuickSuspendRegister = vixl::x19;
Alexandre Rames5319def2014-10-23 10:03:10 +010050
51const vixl::CPURegList vixl_reserved_core_registers(vixl::ip0, vixl::ip1);
Alexandre Ramesa89086e2014-11-07 17:13:25 +000052const vixl::CPURegList vixl_reserved_fp_registers(vixl::d31);
Alexandre Rames5319def2014-10-23 10:03:10 +010053
Serban Constantinescu3d087de2015-01-28 11:57:05 +000054// TODO: When the runtime does not use kQuickSuspendRegister as a suspend
55// counter remove it from the reserved registers list.
56const vixl::CPURegList runtime_reserved_core_registers(tr, kQuickSuspendRegister, vixl::lr);
57
58// Callee-saved registers defined by AAPCS64.
59const vixl::CPURegList callee_saved_core_registers(vixl::CPURegister::kRegister,
60 vixl::kXRegSize,
61 vixl::x19.code(),
62 vixl::x30.code());
63const vixl::CPURegList callee_saved_fp_registers(vixl::CPURegister::kFPRegister,
64 vixl::kDRegSize,
65 vixl::d8.code(),
66 vixl::d15.code());
Alexandre Ramesa89086e2014-11-07 17:13:25 +000067Location ARM64ReturnLocation(Primitive::Type return_type);
68
Andreas Gampe878d58c2015-01-15 23:24:00 -080069class SlowPathCodeARM64 : public SlowPathCode {
70 public:
71 SlowPathCodeARM64() : entry_label_(), exit_label_() {}
72
73 vixl::Label* GetEntryLabel() { return &entry_label_; }
74 vixl::Label* GetExitLabel() { return &exit_label_; }
75
76 private:
77 vixl::Label entry_label_;
78 vixl::Label exit_label_;
79
80 DISALLOW_COPY_AND_ASSIGN(SlowPathCodeARM64);
81};
82
Alexandre Rames5319def2014-10-23 10:03:10 +010083class InvokeDexCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> {
84 public:
85 InvokeDexCallingConvention()
86 : CallingConvention(kParameterCoreRegisters,
87 kParameterCoreRegistersLength,
88 kParameterFPRegisters,
89 kParameterFPRegistersLength) {}
90
91 Location GetReturnLocation(Primitive::Type return_type) {
Alexandre Ramesa89086e2014-11-07 17:13:25 +000092 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +010093 }
94
95
96 private:
97 DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConvention);
98};
99
100class InvokeDexCallingConventionVisitor {
101 public:
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000102 InvokeDexCallingConventionVisitor() : gp_index_(0), fp_index_(0), stack_index_(0) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100103
104 Location GetNextLocation(Primitive::Type type);
105 Location GetReturnLocation(Primitive::Type return_type) {
106 return calling_convention.GetReturnLocation(return_type);
107 }
108
109 private:
110 InvokeDexCallingConvention calling_convention;
111 // The current index for core registers.
112 uint32_t gp_index_;
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000113 // The current index for floating-point registers.
114 uint32_t fp_index_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100115 // The current stack index.
116 uint32_t stack_index_;
117
118 DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConventionVisitor);
119};
120
121class InstructionCodeGeneratorARM64 : public HGraphVisitor {
122 public:
123 InstructionCodeGeneratorARM64(HGraph* graph, CodeGeneratorARM64* codegen);
124
125#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000126 void Visit##name(H##name* instr) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100127 FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
128#undef DECLARE_VISIT_INSTRUCTION
129
130 void LoadCurrentMethod(XRegister reg);
131
132 Arm64Assembler* GetAssembler() const { return assembler_; }
Alexandre Rames67555f72014-11-18 10:55:16 +0000133 vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; }
Alexandre Rames5319def2014-10-23 10:03:10 +0100134
135 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000136 void GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path, vixl::Register class_reg);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000137 void GenerateMemoryBarrier(MemBarrierKind kind);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000138 void GenerateSuspendCheck(HSuspendCheck* instruction, HBasicBlock* successor);
Alexandre Rames67555f72014-11-18 10:55:16 +0000139 void HandleBinaryOp(HBinaryOperation* instr);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000140 void HandleShift(HBinaryOperation* instr);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000141 void GenerateImplicitNullCheck(HNullCheck* instruction);
142 void GenerateExplicitNullCheck(HNullCheck* instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +0100143
144 Arm64Assembler* const assembler_;
145 CodeGeneratorARM64* const codegen_;
146
147 DISALLOW_COPY_AND_ASSIGN(InstructionCodeGeneratorARM64);
148};
149
150class LocationsBuilderARM64 : public HGraphVisitor {
151 public:
152 explicit LocationsBuilderARM64(HGraph* graph, CodeGeneratorARM64* codegen)
153 : HGraphVisitor(graph), codegen_(codegen) {}
154
155#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000156 void Visit##name(H##name* instr) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100157 FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
158#undef DECLARE_VISIT_INSTRUCTION
159
160 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000161 void HandleBinaryOp(HBinaryOperation* instr);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000162 void HandleShift(HBinaryOperation* instr);
Alexandre Rames5319def2014-10-23 10:03:10 +0100163 void HandleInvoke(HInvoke* instr);
164
165 CodeGeneratorARM64* const codegen_;
166 InvokeDexCallingConventionVisitor parameter_visitor_;
167
168 DISALLOW_COPY_AND_ASSIGN(LocationsBuilderARM64);
169};
170
Alexandre Rames3e69f162014-12-10 10:36:50 +0000171class ParallelMoveResolverARM64 : public ParallelMoveResolver {
172 public:
173 ParallelMoveResolverARM64(ArenaAllocator* allocator, CodeGeneratorARM64* codegen)
174 : ParallelMoveResolver(allocator), codegen_(codegen) {}
175
176 void EmitMove(size_t index) OVERRIDE;
177 void EmitSwap(size_t index) OVERRIDE;
178 void RestoreScratch(int reg) OVERRIDE;
179 void SpillScratch(int reg) OVERRIDE;
180
181 private:
182 Arm64Assembler* GetAssembler() const;
183 vixl::MacroAssembler* GetVIXLAssembler() const {
184 return GetAssembler()->vixl_masm_;
185 }
186
187 CodeGeneratorARM64* const codegen_;
188
189 DISALLOW_COPY_AND_ASSIGN(ParallelMoveResolverARM64);
190};
191
Alexandre Rames5319def2014-10-23 10:03:10 +0100192class CodeGeneratorARM64 : public CodeGenerator {
193 public:
Serban Constantinescu579885a2015-02-22 20:51:33 +0000194 CodeGeneratorARM64(HGraph* graph,
195 const Arm64InstructionSetFeatures& isa_features,
196 const CompilerOptions& compiler_options);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000197 virtual ~CodeGeneratorARM64() {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100198
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000199 void GenerateFrameEntry() OVERRIDE;
200 void GenerateFrameExit() OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100201
Serban Constantinescu3d087de2015-01-28 11:57:05 +0000202 vixl::CPURegList GetFramePreservedCoreRegisters() const {
203 return vixl::CPURegList(vixl::CPURegister::kRegister, vixl::kXRegSize,
204 core_spill_mask_);
205 }
206
207 vixl::CPURegList GetFramePreservedFPRegisters() const {
208 return vixl::CPURegList(vixl::CPURegister::kFPRegister, vixl::kDRegSize,
209 fpu_spill_mask_);
Alexandre Rames5319def2014-10-23 10:03:10 +0100210 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100211
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000212 void Bind(HBasicBlock* block) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100213
214 vixl::Label* GetLabelOf(HBasicBlock* block) const {
Nicolas Geoffraydc23d832015-02-16 11:15:43 +0000215 return CommonGetLabelOf<vixl::Label>(block_labels_, block);
Alexandre Rames5319def2014-10-23 10:03:10 +0100216 }
217
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000218 void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100219
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000220 size_t GetWordSize() const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100221 return kArm64WordSize;
222 }
223
Mark Mendellf85a9ca2015-01-13 09:20:58 -0500224 size_t GetFloatingPointSpillSlotSize() const OVERRIDE {
225 // Allocated in D registers, which are word sized.
226 return kArm64WordSize;
227 }
228
Alexandre Rames67555f72014-11-18 10:55:16 +0000229 uintptr_t GetAddressOf(HBasicBlock* block) const OVERRIDE {
230 vixl::Label* block_entry_label = GetLabelOf(block);
231 DCHECK(block_entry_label->IsBound());
232 return block_entry_label->location();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000233 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100234
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000235 HGraphVisitor* GetLocationBuilder() OVERRIDE { return &location_builder_; }
236 HGraphVisitor* GetInstructionVisitor() OVERRIDE { return &instruction_visitor_; }
237 Arm64Assembler* GetAssembler() OVERRIDE { return &assembler_; }
Alexandre Rames67555f72014-11-18 10:55:16 +0000238 vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; }
Alexandre Rames5319def2014-10-23 10:03:10 +0100239
240 // Emit a write barrier.
241 void MarkGCCard(vixl::Register object, vixl::Register value);
242
243 // Register allocation.
244
Nicolas Geoffray98893962015-01-21 12:32:32 +0000245 void SetupBlockedRegisters(bool is_baseline) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100246 // AllocateFreeRegister() is only used when allocating registers locally
247 // during CompileBaseline().
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000248 Location AllocateFreeRegister(Primitive::Type type) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100249
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000250 Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100251
Alexandre Rames3e69f162014-12-10 10:36:50 +0000252 size_t SaveCoreRegister(size_t stack_index, uint32_t reg_id);
253 size_t RestoreCoreRegister(size_t stack_index, uint32_t reg_id);
254 size_t SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id);
255 size_t RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id);
Alexandre Rames5319def2014-10-23 10:03:10 +0100256
257 // The number of registers that can be allocated. The register allocator may
258 // decide to reserve and not use a few of them.
259 // We do not consider registers sp, xzr, wzr. They are either not allocatable
260 // (xzr, wzr), or make for poor allocatable registers (sp alignment
261 // requirements, etc.). This also facilitates our task as all other registers
262 // can easily be mapped via to or from their type and index or code.
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000263 static const int kNumberOfAllocatableRegisters = vixl::kNumberOfRegisters - 1;
264 static const int kNumberOfAllocatableFPRegisters = vixl::kNumberOfFPRegisters;
Alexandre Rames5319def2014-10-23 10:03:10 +0100265 static constexpr int kNumberOfAllocatableRegisterPairs = 0;
266
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000267 void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
268 void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100269
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000270 InstructionSet GetInstructionSet() const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100271 return InstructionSet::kArm64;
272 }
273
Serban Constantinescu579885a2015-02-22 20:51:33 +0000274 const Arm64InstructionSetFeatures& GetInstructionSetFeatures() const {
275 return isa_features_;
276 }
277
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000278 void Initialize() OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100279 HGraph* graph = GetGraph();
280 int length = graph->GetBlocks().Size();
281 block_labels_ = graph->GetArena()->AllocArray<vixl::Label>(length);
282 for (int i = 0; i < length; ++i) {
283 new(block_labels_ + i) vixl::Label();
284 }
285 }
286
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000287 void Finalize(CodeAllocator* allocator) OVERRIDE;
288
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000289 // Code generation helpers.
Alexandre Rames67555f72014-11-18 10:55:16 +0000290 void MoveConstant(vixl::CPURegister destination, HConstant* constant);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000291 // The type is optional. When specified it must be coherent with the
292 // locations, and is used for optimisation and debugging.
293 void MoveLocation(Location destination, Location source,
294 Primitive::Type type = Primitive::kPrimVoid);
295 void SwapLocations(Location loc_1, Location loc_2);
Alexandre Rames67555f72014-11-18 10:55:16 +0000296 void Load(Primitive::Type type, vixl::CPURegister dst, const vixl::MemOperand& src);
297 void Store(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst);
298 void LoadCurrentMethod(vixl::Register current_method);
Calin Juravle77520bc2015-01-12 18:45:46 +0000299 void LoadAcquire(HInstruction* instruction, vixl::CPURegister dst, const vixl::MemOperand& src);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000300 void StoreRelease(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000301
302 // Generate code to invoke a runtime entry point.
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000303 void InvokeRuntime(int32_t offset,
304 HInstruction* instruction,
305 uint32_t dex_pc,
306 SlowPathCode* slow_path);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000307
Alexandre Rames3e69f162014-12-10 10:36:50 +0000308 ParallelMoveResolverARM64* GetMoveResolver() { return &move_resolver_; }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000309
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000310 bool NeedsTwoRegisters(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE {
311 return false;
312 }
313
Andreas Gampe878d58c2015-01-15 23:24:00 -0800314 void GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, vixl::Register temp);
315
Alexandre Rames5319def2014-10-23 10:03:10 +0100316 private:
317 // Labels for each block that will be compiled.
318 vixl::Label* block_labels_;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000319 vixl::Label frame_entry_label_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100320
321 LocationsBuilderARM64 location_builder_;
322 InstructionCodeGeneratorARM64 instruction_visitor_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000323 ParallelMoveResolverARM64 move_resolver_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100324 Arm64Assembler assembler_;
Serban Constantinescu579885a2015-02-22 20:51:33 +0000325 const Arm64InstructionSetFeatures& isa_features_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100326
327 DISALLOW_COPY_AND_ASSIGN(CodeGeneratorARM64);
328};
329
Alexandre Rames3e69f162014-12-10 10:36:50 +0000330inline Arm64Assembler* ParallelMoveResolverARM64::GetAssembler() const {
331 return codegen_->GetAssembler();
332}
333
Alexandre Rames5319def2014-10-23 10:03:10 +0100334} // namespace arm64
335} // namespace art
336
337#endif // ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_