blob: c62ba951cde8121d1fc78fcfd4ffa9fbc62dd44f [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
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010047const vixl::Register tr = vixl::x19; // Thread Register
Mathieu Chartiere401d142015-04-22 13:56:20 -070048static const vixl::Register kArtMethodRegister = vixl::x0; // 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
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010055// Callee-saved registers AAPCS64 (without x19 - Thread Register)
Serban Constantinescu3d087de2015-01-28 11:57:05 +000056const vixl::CPURegList callee_saved_core_registers(vixl::CPURegister::kRegister,
57 vixl::kXRegSize,
Serban Constantinescu9bd88b02015-04-22 16:24:46 +010058 vixl::x20.code(),
Serban Constantinescu3d087de2015-01-28 11:57:05 +000059 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
Zheng Xuda403092015-04-24 17:35:39 +080073 void SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) OVERRIDE;
74 void RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) OVERRIDE;
75
Andreas Gampe878d58c2015-01-15 23:24:00 -080076 private:
77 vixl::Label entry_label_;
78 vixl::Label exit_label_;
79
80 DISALLOW_COPY_AND_ASSIGN(SlowPathCodeARM64);
81};
82
Nicolas Geoffrayd75948a2015-03-27 09:53:16 +000083static const vixl::Register kRuntimeParameterCoreRegisters[] =
84 { vixl::x0, vixl::x1, vixl::x2, vixl::x3, vixl::x4, vixl::x5, vixl::x6, vixl::x7 };
85static constexpr size_t kRuntimeParameterCoreRegistersLength =
86 arraysize(kRuntimeParameterCoreRegisters);
87static const vixl::FPRegister kRuntimeParameterFpuRegisters[] =
88 { vixl::d0, vixl::d1, vixl::d2, vixl::d3, vixl::d4, vixl::d5, vixl::d6, vixl::d7 };
89static constexpr size_t kRuntimeParameterFpuRegistersLength =
90 arraysize(kRuntimeParameterCoreRegisters);
91
92class InvokeRuntimeCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> {
93 public:
94 static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters);
95
96 InvokeRuntimeCallingConvention()
97 : CallingConvention(kRuntimeParameterCoreRegisters,
98 kRuntimeParameterCoreRegistersLength,
99 kRuntimeParameterFpuRegisters,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700100 kRuntimeParameterFpuRegistersLength,
101 kArm64PointerSize) {}
Nicolas Geoffrayd75948a2015-03-27 09:53:16 +0000102
103 Location GetReturnLocation(Primitive::Type return_type);
104
105 private:
106 DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention);
107};
108
Alexandre Rames5319def2014-10-23 10:03:10 +0100109class InvokeDexCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> {
110 public:
111 InvokeDexCallingConvention()
112 : CallingConvention(kParameterCoreRegisters,
113 kParameterCoreRegistersLength,
114 kParameterFPRegisters,
Mathieu Chartiere401d142015-04-22 13:56:20 -0700115 kParameterFPRegistersLength,
116 kArm64PointerSize) {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100117
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100118 Location GetReturnLocation(Primitive::Type return_type) const {
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000119 return ARM64ReturnLocation(return_type);
Alexandre Rames5319def2014-10-23 10:03:10 +0100120 }
121
122
123 private:
124 DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConvention);
125};
126
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100127class InvokeDexCallingConventionVisitorARM64 : public InvokeDexCallingConventionVisitor {
Alexandre Rames5319def2014-10-23 10:03:10 +0100128 public:
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100129 InvokeDexCallingConventionVisitorARM64() {}
130 virtual ~InvokeDexCallingConventionVisitorARM64() {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100131
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100132 Location GetNextLocation(Primitive::Type type) OVERRIDE;
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100133 Location GetReturnLocation(Primitive::Type return_type) const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100134 return calling_convention.GetReturnLocation(return_type);
135 }
Nicolas Geoffrayfd88f162015-06-03 11:23:52 +0100136 Location GetMethodLocation() const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100137
138 private:
139 InvokeDexCallingConvention calling_convention;
Alexandre Rames5319def2014-10-23 10:03:10 +0100140
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100141 DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConventionVisitorARM64);
Alexandre Rames5319def2014-10-23 10:03:10 +0100142};
143
144class InstructionCodeGeneratorARM64 : public HGraphVisitor {
145 public:
146 InstructionCodeGeneratorARM64(HGraph* graph, CodeGeneratorARM64* codegen);
147
148#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000149 void Visit##name(H##name* instr) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100150 FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
151#undef DECLARE_VISIT_INSTRUCTION
152
153 void LoadCurrentMethod(XRegister reg);
154
155 Arm64Assembler* GetAssembler() const { return assembler_; }
Alexandre Rames67555f72014-11-18 10:55:16 +0000156 vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; }
Alexandre Rames5319def2014-10-23 10:03:10 +0100157
158 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000159 void GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path, vixl::Register class_reg);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000160 void GenerateMemoryBarrier(MemBarrierKind kind);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000161 void GenerateSuspendCheck(HSuspendCheck* instruction, HBasicBlock* successor);
Alexandre Rames67555f72014-11-18 10:55:16 +0000162 void HandleBinaryOp(HBinaryOperation* instr);
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100163 void HandleFieldSet(HInstruction* instruction,
164 const FieldInfo& field_info,
165 bool value_can_be_null);
Alexandre Rames09a99962015-04-15 11:47:56 +0100166 void HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info);
Serban Constantinescu02164b32014-11-13 14:05:07 +0000167 void HandleShift(HBinaryOperation* instr);
Calin Juravlecd6dffe2015-01-08 17:35:35 +0000168 void GenerateImplicitNullCheck(HNullCheck* instruction);
169 void GenerateExplicitNullCheck(HNullCheck* instruction);
Mingyao Yangd43b3ac2015-04-01 14:03:04 -0700170 void GenerateTestAndBranch(HInstruction* instruction,
171 vixl::Label* true_target,
172 vixl::Label* false_target,
173 vixl::Label* always_true_target);
Zheng Xuc6667102015-05-15 16:08:45 +0800174 void DivRemOneOrMinusOne(HBinaryOperation* instruction);
175 void DivRemByPowerOfTwo(HBinaryOperation* instruction);
176 void GenerateDivRemWithAnyConstant(HBinaryOperation* instruction);
177 void GenerateDivRemIntegral(HBinaryOperation* instruction);
178
Alexandre Rames5319def2014-10-23 10:03:10 +0100179
180 Arm64Assembler* const assembler_;
181 CodeGeneratorARM64* const codegen_;
182
183 DISALLOW_COPY_AND_ASSIGN(InstructionCodeGeneratorARM64);
184};
185
186class LocationsBuilderARM64 : public HGraphVisitor {
187 public:
188 explicit LocationsBuilderARM64(HGraph* graph, CodeGeneratorARM64* codegen)
189 : HGraphVisitor(graph), codegen_(codegen) {}
190
191#define DECLARE_VISIT_INSTRUCTION(name, super) \
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000192 void Visit##name(H##name* instr) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100193 FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION)
194#undef DECLARE_VISIT_INSTRUCTION
195
196 private:
Alexandre Rames67555f72014-11-18 10:55:16 +0000197 void HandleBinaryOp(HBinaryOperation* instr);
Alexandre Rames09a99962015-04-15 11:47:56 +0100198 void HandleFieldSet(HInstruction* instruction);
199 void HandleFieldGet(HInstruction* instruction);
Alexandre Rames5319def2014-10-23 10:03:10 +0100200 void HandleInvoke(HInvoke* instr);
Alexandre Rames09a99962015-04-15 11:47:56 +0100201 void HandleShift(HBinaryOperation* instr);
Alexandre Rames5319def2014-10-23 10:03:10 +0100202
203 CodeGeneratorARM64* const codegen_;
Roland Levillain2d27c8e2015-04-28 15:48:45 +0100204 InvokeDexCallingConventionVisitorARM64 parameter_visitor_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100205
206 DISALLOW_COPY_AND_ASSIGN(LocationsBuilderARM64);
207};
208
Zheng Xuad4450e2015-04-17 18:48:56 +0800209class ParallelMoveResolverARM64 : public ParallelMoveResolverNoSwap {
Alexandre Rames3e69f162014-12-10 10:36:50 +0000210 public:
211 ParallelMoveResolverARM64(ArenaAllocator* allocator, CodeGeneratorARM64* codegen)
Zheng Xuad4450e2015-04-17 18:48:56 +0800212 : ParallelMoveResolverNoSwap(allocator), codegen_(codegen), vixl_temps_() {}
Alexandre Rames3e69f162014-12-10 10:36:50 +0000213
Zheng Xuad4450e2015-04-17 18:48:56 +0800214 protected:
215 void PrepareForEmitNativeCode() OVERRIDE;
216 void FinishEmitNativeCode() OVERRIDE;
217 Location AllocateScratchLocationFor(Location::Kind kind) OVERRIDE;
218 void FreeScratchLocation(Location loc) OVERRIDE;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000219 void EmitMove(size_t index) OVERRIDE;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000220
221 private:
222 Arm64Assembler* GetAssembler() const;
223 vixl::MacroAssembler* GetVIXLAssembler() const {
224 return GetAssembler()->vixl_masm_;
225 }
226
227 CodeGeneratorARM64* const codegen_;
Zheng Xuad4450e2015-04-17 18:48:56 +0800228 vixl::UseScratchRegisterScope vixl_temps_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000229
230 DISALLOW_COPY_AND_ASSIGN(ParallelMoveResolverARM64);
231};
232
Alexandre Rames5319def2014-10-23 10:03:10 +0100233class CodeGeneratorARM64 : public CodeGenerator {
234 public:
Serban Constantinescu579885a2015-02-22 20:51:33 +0000235 CodeGeneratorARM64(HGraph* graph,
236 const Arm64InstructionSetFeatures& isa_features,
237 const CompilerOptions& compiler_options);
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000238 virtual ~CodeGeneratorARM64() {}
Alexandre Rames5319def2014-10-23 10:03:10 +0100239
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000240 void GenerateFrameEntry() OVERRIDE;
241 void GenerateFrameExit() OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100242
Zheng Xuda403092015-04-24 17:35:39 +0800243 vixl::CPURegList GetFramePreservedCoreRegisters() const;
244 vixl::CPURegList GetFramePreservedFPRegisters() const;
Alexandre Rames5319def2014-10-23 10:03:10 +0100245
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000246 void Bind(HBasicBlock* block) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100247
248 vixl::Label* GetLabelOf(HBasicBlock* block) const {
Nicolas Geoffraydc23d832015-02-16 11:15:43 +0000249 return CommonGetLabelOf<vixl::Label>(block_labels_, block);
Alexandre Rames5319def2014-10-23 10:03:10 +0100250 }
251
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000252 void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100253
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000254 size_t GetWordSize() const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100255 return kArm64WordSize;
256 }
257
Mark Mendellf85a9ca2015-01-13 09:20:58 -0500258 size_t GetFloatingPointSpillSlotSize() const OVERRIDE {
259 // Allocated in D registers, which are word sized.
260 return kArm64WordSize;
261 }
262
Alexandre Rames67555f72014-11-18 10:55:16 +0000263 uintptr_t GetAddressOf(HBasicBlock* block) const OVERRIDE {
264 vixl::Label* block_entry_label = GetLabelOf(block);
265 DCHECK(block_entry_label->IsBound());
266 return block_entry_label->location();
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000267 }
Alexandre Rames5319def2014-10-23 10:03:10 +0100268
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000269 HGraphVisitor* GetLocationBuilder() OVERRIDE { return &location_builder_; }
270 HGraphVisitor* GetInstructionVisitor() OVERRIDE { return &instruction_visitor_; }
271 Arm64Assembler* GetAssembler() OVERRIDE { return &assembler_; }
Alexandre Rames67555f72014-11-18 10:55:16 +0000272 vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; }
Alexandre Rames5319def2014-10-23 10:03:10 +0100273
274 // Emit a write barrier.
Nicolas Geoffray07276db2015-05-18 14:22:09 +0100275 void MarkGCCard(vixl::Register object, vixl::Register value, bool value_can_be_null);
Alexandre Rames5319def2014-10-23 10:03:10 +0100276
277 // Register allocation.
278
Nicolas Geoffray98893962015-01-21 12:32:32 +0000279 void SetupBlockedRegisters(bool is_baseline) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100280 // AllocateFreeRegister() is only used when allocating registers locally
281 // during CompileBaseline().
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000282 Location AllocateFreeRegister(Primitive::Type type) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100283
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000284 Location GetStackLocation(HLoadLocal* load) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100285
Zheng Xuda403092015-04-24 17:35:39 +0800286 size_t SaveCoreRegister(size_t stack_index, uint32_t reg_id) OVERRIDE;
287 size_t RestoreCoreRegister(size_t stack_index, uint32_t reg_id) OVERRIDE;
288 size_t SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) OVERRIDE;
289 size_t RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100290
291 // The number of registers that can be allocated. The register allocator may
292 // decide to reserve and not use a few of them.
293 // We do not consider registers sp, xzr, wzr. They are either not allocatable
294 // (xzr, wzr), or make for poor allocatable registers (sp alignment
295 // requirements, etc.). This also facilitates our task as all other registers
296 // can easily be mapped via to or from their type and index or code.
Alexandre Ramesa89086e2014-11-07 17:13:25 +0000297 static const int kNumberOfAllocatableRegisters = vixl::kNumberOfRegisters - 1;
298 static const int kNumberOfAllocatableFPRegisters = vixl::kNumberOfFPRegisters;
Alexandre Rames5319def2014-10-23 10:03:10 +0100299 static constexpr int kNumberOfAllocatableRegisterPairs = 0;
300
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000301 void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE;
302 void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE;
Alexandre Rames5319def2014-10-23 10:03:10 +0100303
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000304 InstructionSet GetInstructionSet() const OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100305 return InstructionSet::kArm64;
306 }
307
Serban Constantinescu579885a2015-02-22 20:51:33 +0000308 const Arm64InstructionSetFeatures& GetInstructionSetFeatures() const {
309 return isa_features_;
310 }
311
Nicolas Geoffrayde58ab22014-11-05 12:46:03 +0000312 void Initialize() OVERRIDE {
Alexandre Rames5319def2014-10-23 10:03:10 +0100313 HGraph* graph = GetGraph();
314 int length = graph->GetBlocks().Size();
315 block_labels_ = graph->GetArena()->AllocArray<vixl::Label>(length);
316 for (int i = 0; i < length; ++i) {
317 new(block_labels_ + i) vixl::Label();
318 }
319 }
320
Serban Constantinescu32f5b4d2014-11-25 20:05:46 +0000321 void Finalize(CodeAllocator* allocator) OVERRIDE;
322
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000323 // Code generation helpers.
Alexandre Rames67555f72014-11-18 10:55:16 +0000324 void MoveConstant(vixl::CPURegister destination, HConstant* constant);
Alexandre Rames3e69f162014-12-10 10:36:50 +0000325 // The type is optional. When specified it must be coherent with the
326 // locations, and is used for optimisation and debugging.
327 void MoveLocation(Location destination, Location source,
328 Primitive::Type type = Primitive::kPrimVoid);
Alexandre Rames67555f72014-11-18 10:55:16 +0000329 void Load(Primitive::Type type, vixl::CPURegister dst, const vixl::MemOperand& src);
330 void Store(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst);
331 void LoadCurrentMethod(vixl::Register current_method);
Calin Juravle77520bc2015-01-12 18:45:46 +0000332 void LoadAcquire(HInstruction* instruction, vixl::CPURegister dst, const vixl::MemOperand& src);
Serban Constantinescu02d81cc2015-01-05 16:08:49 +0000333 void StoreRelease(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst);
Alexandre Rames67555f72014-11-18 10:55:16 +0000334
335 // Generate code to invoke a runtime entry point.
Nicolas Geoffrayeeefa122015-03-13 18:52:59 +0000336 void InvokeRuntime(int32_t offset,
337 HInstruction* instruction,
338 uint32_t dex_pc,
339 SlowPathCode* slow_path);
Alexandre Ramesfc19de82014-11-07 17:13:31 +0000340
Alexandre Rames3e69f162014-12-10 10:36:50 +0000341 ParallelMoveResolverARM64* GetMoveResolver() { return &move_resolver_; }
Nicolas Geoffrayf0e39372014-11-12 17:50:07 +0000342
Nicolas Geoffray840e5462015-01-07 16:01:24 +0000343 bool NeedsTwoRegisters(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE {
344 return false;
345 }
346
Andreas Gampe878d58c2015-01-15 23:24:00 -0800347 void GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, vixl::Register temp);
348
Alexandre Rames5319def2014-10-23 10:03:10 +0100349 private:
350 // Labels for each block that will be compiled.
351 vixl::Label* block_labels_;
Nicolas Geoffray1cf95282014-12-12 19:22:03 +0000352 vixl::Label frame_entry_label_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100353
354 LocationsBuilderARM64 location_builder_;
355 InstructionCodeGeneratorARM64 instruction_visitor_;
Alexandre Rames3e69f162014-12-10 10:36:50 +0000356 ParallelMoveResolverARM64 move_resolver_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100357 Arm64Assembler assembler_;
Serban Constantinescu579885a2015-02-22 20:51:33 +0000358 const Arm64InstructionSetFeatures& isa_features_;
Alexandre Rames5319def2014-10-23 10:03:10 +0100359
360 DISALLOW_COPY_AND_ASSIGN(CodeGeneratorARM64);
361};
362
Alexandre Rames3e69f162014-12-10 10:36:50 +0000363inline Arm64Assembler* ParallelMoveResolverARM64::GetAssembler() const {
364 return codegen_->GetAssembler();
365}
366
Alexandre Rames5319def2014-10-23 10:03:10 +0100367} // namespace arm64
368} // namespace art
369
370#endif // ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_