Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 1 | /* |
| 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 Constantinescu | 02d81cc | 2015-01-05 16:08:49 +0000 | [diff] [blame] | 21 | #include "dex/compiler_enums.h" |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 22 | #include "driver/compiler_options.h" |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 23 | #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 | |
| 30 | namespace art { |
| 31 | namespace arm64 { |
| 32 | |
| 33 | class CodeGeneratorARM64; |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 34 | |
Nicolas Geoffray | 86a8d7a | 2014-11-19 08:47:18 +0000 | [diff] [blame] | 35 | // Use a local definition to prevent copying mistakes. |
| 36 | static constexpr size_t kArm64WordSize = kArm64PointerSize; |
| 37 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 38 | static const vixl::Register kParameterCoreRegisters[] = { |
| 39 | vixl::x1, vixl::x2, vixl::x3, vixl::x4, vixl::x5, vixl::x6, vixl::x7 |
| 40 | }; |
| 41 | static constexpr size_t kParameterCoreRegistersLength = arraysize(kParameterCoreRegisters); |
| 42 | static const vixl::FPRegister kParameterFPRegisters[] = { |
| 43 | vixl::d0, vixl::d1, vixl::d2, vixl::d3, vixl::d4, vixl::d5, vixl::d6, vixl::d7 |
| 44 | }; |
| 45 | static constexpr size_t kParameterFPRegistersLength = arraysize(kParameterFPRegisters); |
| 46 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 47 | const vixl::Register tr = vixl::x18; // Thread Register |
| 48 | static const vixl::Register kArtMethodRegister = vixl::w0; // Method register on invoke. |
Serban Constantinescu | 3d087de | 2015-01-28 11:57:05 +0000 | [diff] [blame] | 49 | const vixl::Register kQuickSuspendRegister = vixl::x19; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 50 | |
| 51 | const vixl::CPURegList vixl_reserved_core_registers(vixl::ip0, vixl::ip1); |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 52 | const vixl::CPURegList vixl_reserved_fp_registers(vixl::d31); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 53 | |
Serban Constantinescu | 3d087de | 2015-01-28 11:57:05 +0000 | [diff] [blame] | 54 | // TODO: When the runtime does not use kQuickSuspendRegister as a suspend |
| 55 | // counter remove it from the reserved registers list. |
| 56 | const vixl::CPURegList runtime_reserved_core_registers(tr, kQuickSuspendRegister, vixl::lr); |
| 57 | |
| 58 | // Callee-saved registers defined by AAPCS64. |
| 59 | const vixl::CPURegList callee_saved_core_registers(vixl::CPURegister::kRegister, |
| 60 | vixl::kXRegSize, |
| 61 | vixl::x19.code(), |
| 62 | vixl::x30.code()); |
| 63 | const vixl::CPURegList callee_saved_fp_registers(vixl::CPURegister::kFPRegister, |
| 64 | vixl::kDRegSize, |
| 65 | vixl::d8.code(), |
| 66 | vixl::d15.code()); |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 67 | Location ARM64ReturnLocation(Primitive::Type return_type); |
| 68 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 69 | class 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 | |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 83 | static const vixl::Register kRuntimeParameterCoreRegisters[] = |
| 84 | { vixl::x0, vixl::x1, vixl::x2, vixl::x3, vixl::x4, vixl::x5, vixl::x6, vixl::x7 }; |
| 85 | static constexpr size_t kRuntimeParameterCoreRegistersLength = |
| 86 | arraysize(kRuntimeParameterCoreRegisters); |
| 87 | static const vixl::FPRegister kRuntimeParameterFpuRegisters[] = |
| 88 | { vixl::d0, vixl::d1, vixl::d2, vixl::d3, vixl::d4, vixl::d5, vixl::d6, vixl::d7 }; |
| 89 | static constexpr size_t kRuntimeParameterFpuRegistersLength = |
| 90 | arraysize(kRuntimeParameterCoreRegisters); |
| 91 | |
| 92 | class 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, |
| 100 | kRuntimeParameterFpuRegistersLength) {} |
| 101 | |
| 102 | Location GetReturnLocation(Primitive::Type return_type); |
| 103 | |
| 104 | private: |
| 105 | DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention); |
| 106 | }; |
| 107 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 108 | class InvokeDexCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> { |
| 109 | public: |
| 110 | InvokeDexCallingConvention() |
| 111 | : CallingConvention(kParameterCoreRegisters, |
| 112 | kParameterCoreRegistersLength, |
| 113 | kParameterFPRegisters, |
| 114 | kParameterFPRegistersLength) {} |
| 115 | |
| 116 | Location GetReturnLocation(Primitive::Type return_type) { |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 117 | return ARM64ReturnLocation(return_type); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 118 | } |
| 119 | |
| 120 | |
| 121 | private: |
| 122 | DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConvention); |
| 123 | }; |
| 124 | |
| 125 | class InvokeDexCallingConventionVisitor { |
| 126 | public: |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 127 | InvokeDexCallingConventionVisitor() : gp_index_(0), fp_index_(0), stack_index_(0) {} |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 128 | |
| 129 | Location GetNextLocation(Primitive::Type type); |
| 130 | Location GetReturnLocation(Primitive::Type return_type) { |
| 131 | return calling_convention.GetReturnLocation(return_type); |
| 132 | } |
| 133 | |
| 134 | private: |
| 135 | InvokeDexCallingConvention calling_convention; |
| 136 | // The current index for core registers. |
| 137 | uint32_t gp_index_; |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 138 | // The current index for floating-point registers. |
| 139 | uint32_t fp_index_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 140 | // The current stack index. |
| 141 | uint32_t stack_index_; |
| 142 | |
| 143 | DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConventionVisitor); |
| 144 | }; |
| 145 | |
| 146 | class InstructionCodeGeneratorARM64 : public HGraphVisitor { |
| 147 | public: |
| 148 | InstructionCodeGeneratorARM64(HGraph* graph, CodeGeneratorARM64* codegen); |
| 149 | |
| 150 | #define DECLARE_VISIT_INSTRUCTION(name, super) \ |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 151 | void Visit##name(H##name* instr) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 152 | FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION) |
| 153 | #undef DECLARE_VISIT_INSTRUCTION |
| 154 | |
| 155 | void LoadCurrentMethod(XRegister reg); |
| 156 | |
| 157 | Arm64Assembler* GetAssembler() const { return assembler_; } |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 158 | vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 159 | |
| 160 | private: |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 161 | void GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path, vixl::Register class_reg); |
Serban Constantinescu | 02d81cc | 2015-01-05 16:08:49 +0000 | [diff] [blame] | 162 | void GenerateMemoryBarrier(MemBarrierKind kind); |
Serban Constantinescu | 02164b3 | 2014-11-13 14:05:07 +0000 | [diff] [blame] | 163 | void GenerateSuspendCheck(HSuspendCheck* instruction, HBasicBlock* successor); |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 164 | void HandleBinaryOp(HBinaryOperation* instr); |
Serban Constantinescu | 02164b3 | 2014-11-13 14:05:07 +0000 | [diff] [blame] | 165 | void HandleShift(HBinaryOperation* instr); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 166 | void GenerateImplicitNullCheck(HNullCheck* instruction); |
| 167 | void GenerateExplicitNullCheck(HNullCheck* instruction); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 168 | |
| 169 | Arm64Assembler* const assembler_; |
| 170 | CodeGeneratorARM64* const codegen_; |
| 171 | |
| 172 | DISALLOW_COPY_AND_ASSIGN(InstructionCodeGeneratorARM64); |
| 173 | }; |
| 174 | |
| 175 | class LocationsBuilderARM64 : public HGraphVisitor { |
| 176 | public: |
| 177 | explicit LocationsBuilderARM64(HGraph* graph, CodeGeneratorARM64* codegen) |
| 178 | : HGraphVisitor(graph), codegen_(codegen) {} |
| 179 | |
| 180 | #define DECLARE_VISIT_INSTRUCTION(name, super) \ |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 181 | void Visit##name(H##name* instr) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 182 | FOR_EACH_CONCRETE_INSTRUCTION(DECLARE_VISIT_INSTRUCTION) |
| 183 | #undef DECLARE_VISIT_INSTRUCTION |
| 184 | |
| 185 | private: |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 186 | void HandleBinaryOp(HBinaryOperation* instr); |
Serban Constantinescu | 02164b3 | 2014-11-13 14:05:07 +0000 | [diff] [blame] | 187 | void HandleShift(HBinaryOperation* instr); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 188 | void HandleInvoke(HInvoke* instr); |
| 189 | |
| 190 | CodeGeneratorARM64* const codegen_; |
| 191 | InvokeDexCallingConventionVisitor parameter_visitor_; |
| 192 | |
| 193 | DISALLOW_COPY_AND_ASSIGN(LocationsBuilderARM64); |
| 194 | }; |
| 195 | |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 196 | class ParallelMoveResolverARM64 : public ParallelMoveResolver { |
| 197 | public: |
| 198 | ParallelMoveResolverARM64(ArenaAllocator* allocator, CodeGeneratorARM64* codegen) |
| 199 | : ParallelMoveResolver(allocator), codegen_(codegen) {} |
| 200 | |
| 201 | void EmitMove(size_t index) OVERRIDE; |
| 202 | void EmitSwap(size_t index) OVERRIDE; |
| 203 | void RestoreScratch(int reg) OVERRIDE; |
| 204 | void SpillScratch(int reg) OVERRIDE; |
| 205 | |
| 206 | private: |
| 207 | Arm64Assembler* GetAssembler() const; |
| 208 | vixl::MacroAssembler* GetVIXLAssembler() const { |
| 209 | return GetAssembler()->vixl_masm_; |
| 210 | } |
| 211 | |
| 212 | CodeGeneratorARM64* const codegen_; |
| 213 | |
| 214 | DISALLOW_COPY_AND_ASSIGN(ParallelMoveResolverARM64); |
| 215 | }; |
| 216 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 217 | class CodeGeneratorARM64 : public CodeGenerator { |
| 218 | public: |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 219 | CodeGeneratorARM64(HGraph* graph, |
| 220 | const Arm64InstructionSetFeatures& isa_features, |
| 221 | const CompilerOptions& compiler_options); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 222 | virtual ~CodeGeneratorARM64() {} |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 223 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 224 | void GenerateFrameEntry() OVERRIDE; |
| 225 | void GenerateFrameExit() OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 226 | |
Serban Constantinescu | 3d087de | 2015-01-28 11:57:05 +0000 | [diff] [blame] | 227 | vixl::CPURegList GetFramePreservedCoreRegisters() const { |
| 228 | return vixl::CPURegList(vixl::CPURegister::kRegister, vixl::kXRegSize, |
| 229 | core_spill_mask_); |
| 230 | } |
| 231 | |
| 232 | vixl::CPURegList GetFramePreservedFPRegisters() const { |
| 233 | return vixl::CPURegList(vixl::CPURegister::kFPRegister, vixl::kDRegSize, |
| 234 | fpu_spill_mask_); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 235 | } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 236 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 237 | void Bind(HBasicBlock* block) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 238 | |
| 239 | vixl::Label* GetLabelOf(HBasicBlock* block) const { |
Nicolas Geoffray | dc23d83 | 2015-02-16 11:15:43 +0000 | [diff] [blame] | 240 | return CommonGetLabelOf<vixl::Label>(block_labels_, block); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 241 | } |
| 242 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 243 | void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 244 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 245 | size_t GetWordSize() const OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 246 | return kArm64WordSize; |
| 247 | } |
| 248 | |
Mark Mendell | f85a9ca | 2015-01-13 09:20:58 -0500 | [diff] [blame] | 249 | size_t GetFloatingPointSpillSlotSize() const OVERRIDE { |
| 250 | // Allocated in D registers, which are word sized. |
| 251 | return kArm64WordSize; |
| 252 | } |
| 253 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 254 | uintptr_t GetAddressOf(HBasicBlock* block) const OVERRIDE { |
| 255 | vixl::Label* block_entry_label = GetLabelOf(block); |
| 256 | DCHECK(block_entry_label->IsBound()); |
| 257 | return block_entry_label->location(); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 258 | } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 259 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 260 | HGraphVisitor* GetLocationBuilder() OVERRIDE { return &location_builder_; } |
| 261 | HGraphVisitor* GetInstructionVisitor() OVERRIDE { return &instruction_visitor_; } |
| 262 | Arm64Assembler* GetAssembler() OVERRIDE { return &assembler_; } |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 263 | vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 264 | |
| 265 | // Emit a write barrier. |
| 266 | void MarkGCCard(vixl::Register object, vixl::Register value); |
| 267 | |
| 268 | // Register allocation. |
| 269 | |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 270 | void SetupBlockedRegisters(bool is_baseline) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 271 | // AllocateFreeRegister() is only used when allocating registers locally |
| 272 | // during CompileBaseline(). |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 273 | Location AllocateFreeRegister(Primitive::Type type) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 274 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 275 | Location GetStackLocation(HLoadLocal* load) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 276 | |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 277 | size_t SaveCoreRegister(size_t stack_index, uint32_t reg_id); |
| 278 | size_t RestoreCoreRegister(size_t stack_index, uint32_t reg_id); |
| 279 | size_t SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id); |
| 280 | size_t RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 281 | |
| 282 | // The number of registers that can be allocated. The register allocator may |
| 283 | // decide to reserve and not use a few of them. |
| 284 | // We do not consider registers sp, xzr, wzr. They are either not allocatable |
| 285 | // (xzr, wzr), or make for poor allocatable registers (sp alignment |
| 286 | // requirements, etc.). This also facilitates our task as all other registers |
| 287 | // can easily be mapped via to or from their type and index or code. |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 288 | static const int kNumberOfAllocatableRegisters = vixl::kNumberOfRegisters - 1; |
| 289 | static const int kNumberOfAllocatableFPRegisters = vixl::kNumberOfFPRegisters; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 290 | static constexpr int kNumberOfAllocatableRegisterPairs = 0; |
| 291 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 292 | void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE; |
| 293 | void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 294 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 295 | InstructionSet GetInstructionSet() const OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 296 | return InstructionSet::kArm64; |
| 297 | } |
| 298 | |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 299 | const Arm64InstructionSetFeatures& GetInstructionSetFeatures() const { |
| 300 | return isa_features_; |
| 301 | } |
| 302 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 303 | void Initialize() OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 304 | HGraph* graph = GetGraph(); |
| 305 | int length = graph->GetBlocks().Size(); |
| 306 | block_labels_ = graph->GetArena()->AllocArray<vixl::Label>(length); |
| 307 | for (int i = 0; i < length; ++i) { |
| 308 | new(block_labels_ + i) vixl::Label(); |
| 309 | } |
| 310 | } |
| 311 | |
Serban Constantinescu | 32f5b4d | 2014-11-25 20:05:46 +0000 | [diff] [blame] | 312 | void Finalize(CodeAllocator* allocator) OVERRIDE; |
| 313 | |
Alexandre Rames | fc19de8 | 2014-11-07 17:13:31 +0000 | [diff] [blame] | 314 | // Code generation helpers. |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 315 | void MoveConstant(vixl::CPURegister destination, HConstant* constant); |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 316 | // The type is optional. When specified it must be coherent with the |
| 317 | // locations, and is used for optimisation and debugging. |
| 318 | void MoveLocation(Location destination, Location source, |
| 319 | Primitive::Type type = Primitive::kPrimVoid); |
| 320 | void SwapLocations(Location loc_1, Location loc_2); |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 321 | void Load(Primitive::Type type, vixl::CPURegister dst, const vixl::MemOperand& src); |
| 322 | void Store(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst); |
| 323 | void LoadCurrentMethod(vixl::Register current_method); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 324 | void LoadAcquire(HInstruction* instruction, vixl::CPURegister dst, const vixl::MemOperand& src); |
Serban Constantinescu | 02d81cc | 2015-01-05 16:08:49 +0000 | [diff] [blame] | 325 | void StoreRelease(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst); |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 326 | |
| 327 | // Generate code to invoke a runtime entry point. |
Nicolas Geoffray | eeefa12 | 2015-03-13 18:52:59 +0000 | [diff] [blame] | 328 | void InvokeRuntime(int32_t offset, |
| 329 | HInstruction* instruction, |
| 330 | uint32_t dex_pc, |
| 331 | SlowPathCode* slow_path); |
Alexandre Rames | fc19de8 | 2014-11-07 17:13:31 +0000 | [diff] [blame] | 332 | |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 333 | ParallelMoveResolverARM64* GetMoveResolver() { return &move_resolver_; } |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 334 | |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 335 | bool NeedsTwoRegisters(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { |
| 336 | return false; |
| 337 | } |
| 338 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 339 | void GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, vixl::Register temp); |
| 340 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 341 | private: |
| 342 | // Labels for each block that will be compiled. |
| 343 | vixl::Label* block_labels_; |
Nicolas Geoffray | 1cf9528 | 2014-12-12 19:22:03 +0000 | [diff] [blame] | 344 | vixl::Label frame_entry_label_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 345 | |
| 346 | LocationsBuilderARM64 location_builder_; |
| 347 | InstructionCodeGeneratorARM64 instruction_visitor_; |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 348 | ParallelMoveResolverARM64 move_resolver_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 349 | Arm64Assembler assembler_; |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 350 | const Arm64InstructionSetFeatures& isa_features_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 351 | |
| 352 | DISALLOW_COPY_AND_ASSIGN(CodeGeneratorARM64); |
| 353 | }; |
| 354 | |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 355 | inline Arm64Assembler* ParallelMoveResolverARM64::GetAssembler() const { |
| 356 | return codegen_->GetAssembler(); |
| 357 | } |
| 358 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 359 | } // namespace arm64 |
| 360 | } // namespace art |
| 361 | |
| 362 | #endif // ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_ |