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" |
Serban Constantinescu | 82e52ce | 2015-03-26 16:50:57 +0000 | [diff] [blame] | 26 | #include "vixl/a64/disasm-a64.h" |
| 27 | #include "vixl/a64/macro-assembler-a64.h" |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 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 | |
Serban Constantinescu | 9bd88b0 | 2015-04-22 16:24:46 +0100 | [diff] [blame] | 47 | const vixl::Register tr = vixl::x19; // Thread Register |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 48 | static const vixl::Register kArtMethodRegister = vixl::x0; // Method register on invoke. |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 49 | |
| 50 | const vixl::CPURegList vixl_reserved_core_registers(vixl::ip0, vixl::ip1); |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 51 | const vixl::CPURegList vixl_reserved_fp_registers(vixl::d31); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 52 | |
Zheng Xu | 69a5030 | 2015-04-14 20:04:41 +0800 | [diff] [blame] | 53 | const vixl::CPURegList runtime_reserved_core_registers(tr, vixl::lr); |
Serban Constantinescu | 3d087de | 2015-01-28 11:57:05 +0000 | [diff] [blame] | 54 | |
Serban Constantinescu | 9bd88b0 | 2015-04-22 16:24:46 +0100 | [diff] [blame] | 55 | // Callee-saved registers AAPCS64 (without x19 - Thread Register) |
Serban Constantinescu | 3d087de | 2015-01-28 11:57:05 +0000 | [diff] [blame] | 56 | const vixl::CPURegList callee_saved_core_registers(vixl::CPURegister::kRegister, |
| 57 | vixl::kXRegSize, |
Serban Constantinescu | 9bd88b0 | 2015-04-22 16:24:46 +0100 | [diff] [blame] | 58 | vixl::x20.code(), |
Serban Constantinescu | 3d087de | 2015-01-28 11:57:05 +0000 | [diff] [blame] | 59 | vixl::x30.code()); |
| 60 | const vixl::CPURegList callee_saved_fp_registers(vixl::CPURegister::kFPRegister, |
| 61 | vixl::kDRegSize, |
| 62 | vixl::d8.code(), |
| 63 | vixl::d15.code()); |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 64 | Location ARM64ReturnLocation(Primitive::Type return_type); |
| 65 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 66 | class 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 Xu | da40309 | 2015-04-24 17:35:39 +0800 | [diff] [blame] | 73 | void SaveLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) OVERRIDE; |
| 74 | void RestoreLiveRegisters(CodeGenerator* codegen, LocationSummary* locations) OVERRIDE; |
| 75 | |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 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, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 100 | kRuntimeParameterFpuRegistersLength, |
| 101 | kArm64PointerSize) {} |
Nicolas Geoffray | d75948a | 2015-03-27 09:53:16 +0000 | [diff] [blame] | 102 | |
| 103 | Location GetReturnLocation(Primitive::Type return_type); |
| 104 | |
| 105 | private: |
| 106 | DISALLOW_COPY_AND_ASSIGN(InvokeRuntimeCallingConvention); |
| 107 | }; |
| 108 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 109 | class InvokeDexCallingConvention : public CallingConvention<vixl::Register, vixl::FPRegister> { |
| 110 | public: |
| 111 | InvokeDexCallingConvention() |
| 112 | : CallingConvention(kParameterCoreRegisters, |
| 113 | kParameterCoreRegistersLength, |
| 114 | kParameterFPRegisters, |
Mathieu Chartier | e401d14 | 2015-04-22 13:56:20 -0700 | [diff] [blame] | 115 | kParameterFPRegistersLength, |
| 116 | kArm64PointerSize) {} |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 117 | |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 118 | Location GetReturnLocation(Primitive::Type return_type) const { |
Alexandre Rames | a89086e | 2014-11-07 17:13:25 +0000 | [diff] [blame] | 119 | return ARM64ReturnLocation(return_type); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | |
| 123 | private: |
| 124 | DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConvention); |
| 125 | }; |
| 126 | |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 127 | class InvokeDexCallingConventionVisitorARM64 : public InvokeDexCallingConventionVisitor { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 128 | public: |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 129 | InvokeDexCallingConventionVisitorARM64() {} |
| 130 | virtual ~InvokeDexCallingConventionVisitorARM64() {} |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 131 | |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 132 | Location GetNextLocation(Primitive::Type type) OVERRIDE; |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 133 | Location GetReturnLocation(Primitive::Type return_type) const OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 134 | return calling_convention.GetReturnLocation(return_type); |
| 135 | } |
Nicolas Geoffray | fd88f16 | 2015-06-03 11:23:52 +0100 | [diff] [blame] | 136 | Location GetMethodLocation() const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 137 | |
| 138 | private: |
| 139 | InvokeDexCallingConvention calling_convention; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 140 | |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 141 | DISALLOW_COPY_AND_ASSIGN(InvokeDexCallingConventionVisitorARM64); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 142 | }; |
| 143 | |
| 144 | class InstructionCodeGeneratorARM64 : public HGraphVisitor { |
| 145 | public: |
| 146 | InstructionCodeGeneratorARM64(HGraph* graph, CodeGeneratorARM64* codegen); |
| 147 | |
| 148 | #define DECLARE_VISIT_INSTRUCTION(name, super) \ |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 149 | void Visit##name(H##name* instr) OVERRIDE; |
Alexandre Rames | ef20f71 | 2015-06-09 10:29:30 +0100 | [diff] [blame] | 150 | |
| 151 | FOR_EACH_CONCRETE_INSTRUCTION_COMMON(DECLARE_VISIT_INSTRUCTION) |
| 152 | FOR_EACH_CONCRETE_INSTRUCTION_ARM64(DECLARE_VISIT_INSTRUCTION) |
| 153 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 154 | #undef DECLARE_VISIT_INSTRUCTION |
| 155 | |
Alexandre Rames | ef20f71 | 2015-06-09 10:29:30 +0100 | [diff] [blame] | 156 | void VisitInstruction(HInstruction* instruction) OVERRIDE { |
| 157 | LOG(FATAL) << "Unreachable instruction " << instruction->DebugName() |
| 158 | << " (id " << instruction->GetId() << ")"; |
| 159 | } |
| 160 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 161 | Arm64Assembler* GetAssembler() const { return assembler_; } |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 162 | vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 163 | |
| 164 | private: |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 165 | void GenerateClassInitializationCheck(SlowPathCodeARM64* slow_path, vixl::Register class_reg); |
Serban Constantinescu | 02d81cc | 2015-01-05 16:08:49 +0000 | [diff] [blame] | 166 | void GenerateMemoryBarrier(MemBarrierKind kind); |
Serban Constantinescu | 02164b3 | 2014-11-13 14:05:07 +0000 | [diff] [blame] | 167 | void GenerateSuspendCheck(HSuspendCheck* instruction, HBasicBlock* successor); |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 168 | void HandleBinaryOp(HBinaryOperation* instr); |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 169 | void HandleFieldSet(HInstruction* instruction, |
| 170 | const FieldInfo& field_info, |
| 171 | bool value_can_be_null); |
Alexandre Rames | 09a9996 | 2015-04-15 11:47:56 +0100 | [diff] [blame] | 172 | void HandleFieldGet(HInstruction* instruction, const FieldInfo& field_info); |
Serban Constantinescu | 02164b3 | 2014-11-13 14:05:07 +0000 | [diff] [blame] | 173 | void HandleShift(HBinaryOperation* instr); |
Calin Juravle | cd6dffe | 2015-01-08 17:35:35 +0000 | [diff] [blame] | 174 | void GenerateImplicitNullCheck(HNullCheck* instruction); |
| 175 | void GenerateExplicitNullCheck(HNullCheck* instruction); |
Mingyao Yang | d43b3ac | 2015-04-01 14:03:04 -0700 | [diff] [blame] | 176 | void GenerateTestAndBranch(HInstruction* instruction, |
| 177 | vixl::Label* true_target, |
| 178 | vixl::Label* false_target, |
| 179 | vixl::Label* always_true_target); |
Zheng Xu | c666710 | 2015-05-15 16:08:45 +0800 | [diff] [blame] | 180 | void DivRemOneOrMinusOne(HBinaryOperation* instruction); |
| 181 | void DivRemByPowerOfTwo(HBinaryOperation* instruction); |
| 182 | void GenerateDivRemWithAnyConstant(HBinaryOperation* instruction); |
| 183 | void GenerateDivRemIntegral(HBinaryOperation* instruction); |
David Brazdil | fc6a86a | 2015-06-26 10:33:45 +0000 | [diff] [blame] | 184 | void HandleGoto(HInstruction* got, HBasicBlock* successor); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 185 | |
| 186 | Arm64Assembler* const assembler_; |
| 187 | CodeGeneratorARM64* const codegen_; |
| 188 | |
| 189 | DISALLOW_COPY_AND_ASSIGN(InstructionCodeGeneratorARM64); |
| 190 | }; |
| 191 | |
| 192 | class LocationsBuilderARM64 : public HGraphVisitor { |
| 193 | public: |
Roland Levillain | 3887c46 | 2015-08-12 18:15:42 +0100 | [diff] [blame] | 194 | LocationsBuilderARM64(HGraph* graph, CodeGeneratorARM64* codegen) |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 195 | : HGraphVisitor(graph), codegen_(codegen) {} |
| 196 | |
| 197 | #define DECLARE_VISIT_INSTRUCTION(name, super) \ |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 198 | void Visit##name(H##name* instr) OVERRIDE; |
Alexandre Rames | ef20f71 | 2015-06-09 10:29:30 +0100 | [diff] [blame] | 199 | |
| 200 | FOR_EACH_CONCRETE_INSTRUCTION_COMMON(DECLARE_VISIT_INSTRUCTION) |
| 201 | FOR_EACH_CONCRETE_INSTRUCTION_ARM64(DECLARE_VISIT_INSTRUCTION) |
| 202 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 203 | #undef DECLARE_VISIT_INSTRUCTION |
| 204 | |
Alexandre Rames | ef20f71 | 2015-06-09 10:29:30 +0100 | [diff] [blame] | 205 | void VisitInstruction(HInstruction* instruction) OVERRIDE { |
| 206 | LOG(FATAL) << "Unreachable instruction " << instruction->DebugName() |
| 207 | << " (id " << instruction->GetId() << ")"; |
| 208 | } |
| 209 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 210 | private: |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 211 | void HandleBinaryOp(HBinaryOperation* instr); |
Alexandre Rames | 09a9996 | 2015-04-15 11:47:56 +0100 | [diff] [blame] | 212 | void HandleFieldSet(HInstruction* instruction); |
| 213 | void HandleFieldGet(HInstruction* instruction); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 214 | void HandleInvoke(HInvoke* instr); |
Alexandre Rames | 09a9996 | 2015-04-15 11:47:56 +0100 | [diff] [blame] | 215 | void HandleShift(HBinaryOperation* instr); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 216 | |
| 217 | CodeGeneratorARM64* const codegen_; |
Roland Levillain | 2d27c8e | 2015-04-28 15:48:45 +0100 | [diff] [blame] | 218 | InvokeDexCallingConventionVisitorARM64 parameter_visitor_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 219 | |
| 220 | DISALLOW_COPY_AND_ASSIGN(LocationsBuilderARM64); |
| 221 | }; |
| 222 | |
Zheng Xu | ad4450e | 2015-04-17 18:48:56 +0800 | [diff] [blame] | 223 | class ParallelMoveResolverARM64 : public ParallelMoveResolverNoSwap { |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 224 | public: |
| 225 | ParallelMoveResolverARM64(ArenaAllocator* allocator, CodeGeneratorARM64* codegen) |
Zheng Xu | ad4450e | 2015-04-17 18:48:56 +0800 | [diff] [blame] | 226 | : ParallelMoveResolverNoSwap(allocator), codegen_(codegen), vixl_temps_() {} |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 227 | |
Zheng Xu | ad4450e | 2015-04-17 18:48:56 +0800 | [diff] [blame] | 228 | protected: |
| 229 | void PrepareForEmitNativeCode() OVERRIDE; |
| 230 | void FinishEmitNativeCode() OVERRIDE; |
| 231 | Location AllocateScratchLocationFor(Location::Kind kind) OVERRIDE; |
| 232 | void FreeScratchLocation(Location loc) OVERRIDE; |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 233 | void EmitMove(size_t index) OVERRIDE; |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 234 | |
| 235 | private: |
| 236 | Arm64Assembler* GetAssembler() const; |
| 237 | vixl::MacroAssembler* GetVIXLAssembler() const { |
| 238 | return GetAssembler()->vixl_masm_; |
| 239 | } |
| 240 | |
| 241 | CodeGeneratorARM64* const codegen_; |
Zheng Xu | ad4450e | 2015-04-17 18:48:56 +0800 | [diff] [blame] | 242 | vixl::UseScratchRegisterScope vixl_temps_; |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 243 | |
| 244 | DISALLOW_COPY_AND_ASSIGN(ParallelMoveResolverARM64); |
| 245 | }; |
| 246 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 247 | class CodeGeneratorARM64 : public CodeGenerator { |
| 248 | public: |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 249 | CodeGeneratorARM64(HGraph* graph, |
| 250 | const Arm64InstructionSetFeatures& isa_features, |
| 251 | const CompilerOptions& compiler_options); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 252 | virtual ~CodeGeneratorARM64() {} |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 253 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 254 | void GenerateFrameEntry() OVERRIDE; |
| 255 | void GenerateFrameExit() OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 256 | |
Zheng Xu | da40309 | 2015-04-24 17:35:39 +0800 | [diff] [blame] | 257 | vixl::CPURegList GetFramePreservedCoreRegisters() const; |
| 258 | vixl::CPURegList GetFramePreservedFPRegisters() const; |
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 | void Bind(HBasicBlock* block) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 261 | |
| 262 | vixl::Label* GetLabelOf(HBasicBlock* block) const { |
Nicolas Geoffray | dc23d83 | 2015-02-16 11:15:43 +0000 | [diff] [blame] | 263 | return CommonGetLabelOf<vixl::Label>(block_labels_, block); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 264 | } |
| 265 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 266 | void Move(HInstruction* instruction, Location location, HInstruction* move_for) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 267 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 268 | size_t GetWordSize() const OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 269 | return kArm64WordSize; |
| 270 | } |
| 271 | |
Mark Mendell | f85a9ca | 2015-01-13 09:20:58 -0500 | [diff] [blame] | 272 | size_t GetFloatingPointSpillSlotSize() const OVERRIDE { |
| 273 | // Allocated in D registers, which are word sized. |
| 274 | return kArm64WordSize; |
| 275 | } |
| 276 | |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 277 | uintptr_t GetAddressOf(HBasicBlock* block) const OVERRIDE { |
| 278 | vixl::Label* block_entry_label = GetLabelOf(block); |
| 279 | DCHECK(block_entry_label->IsBound()); |
| 280 | return block_entry_label->location(); |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 281 | } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 282 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 283 | HGraphVisitor* GetLocationBuilder() OVERRIDE { return &location_builder_; } |
| 284 | HGraphVisitor* GetInstructionVisitor() OVERRIDE { return &instruction_visitor_; } |
| 285 | Arm64Assembler* GetAssembler() OVERRIDE { return &assembler_; } |
Alexandre Rames | eb7b739 | 2015-06-19 14:47:01 +0100 | [diff] [blame] | 286 | const Arm64Assembler& GetAssembler() const OVERRIDE { return assembler_; } |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 287 | vixl::MacroAssembler* GetVIXLAssembler() { return GetAssembler()->vixl_masm_; } |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 288 | |
| 289 | // Emit a write barrier. |
Nicolas Geoffray | 07276db | 2015-05-18 14:22:09 +0100 | [diff] [blame] | 290 | void MarkGCCard(vixl::Register object, vixl::Register value, bool value_can_be_null); |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 291 | |
| 292 | // Register allocation. |
| 293 | |
Nicolas Geoffray | 9889396 | 2015-01-21 12:32:32 +0000 | [diff] [blame] | 294 | void SetupBlockedRegisters(bool is_baseline) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 295 | // AllocateFreeRegister() is only used when allocating registers locally |
| 296 | // during CompileBaseline(). |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 297 | Location AllocateFreeRegister(Primitive::Type type) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 298 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 299 | Location GetStackLocation(HLoadLocal* load) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 300 | |
Zheng Xu | da40309 | 2015-04-24 17:35:39 +0800 | [diff] [blame] | 301 | size_t SaveCoreRegister(size_t stack_index, uint32_t reg_id) OVERRIDE; |
| 302 | size_t RestoreCoreRegister(size_t stack_index, uint32_t reg_id) OVERRIDE; |
| 303 | size_t SaveFloatingPointRegister(size_t stack_index, uint32_t reg_id) OVERRIDE; |
| 304 | size_t RestoreFloatingPointRegister(size_t stack_index, uint32_t reg_id) OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 305 | |
| 306 | // The number of registers that can be allocated. The register allocator may |
| 307 | // decide to reserve and not use a few of them. |
| 308 | // We do not consider registers sp, xzr, wzr. They are either not allocatable |
| 309 | // (xzr, wzr), or make for poor allocatable registers (sp alignment |
| 310 | // requirements, etc.). This also facilitates our task as all other registers |
| 311 | // 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] | 312 | static const int kNumberOfAllocatableRegisters = vixl::kNumberOfRegisters - 1; |
| 313 | static const int kNumberOfAllocatableFPRegisters = vixl::kNumberOfFPRegisters; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 314 | static constexpr int kNumberOfAllocatableRegisterPairs = 0; |
| 315 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 316 | void DumpCoreRegister(std::ostream& stream, int reg) const OVERRIDE; |
| 317 | void DumpFloatingPointRegister(std::ostream& stream, int reg) const OVERRIDE; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 318 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 319 | InstructionSet GetInstructionSet() const OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 320 | return InstructionSet::kArm64; |
| 321 | } |
| 322 | |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 323 | const Arm64InstructionSetFeatures& GetInstructionSetFeatures() const { |
| 324 | return isa_features_; |
| 325 | } |
| 326 | |
Nicolas Geoffray | de58ab2 | 2014-11-05 12:46:03 +0000 | [diff] [blame] | 327 | void Initialize() OVERRIDE { |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 328 | HGraph* graph = GetGraph(); |
| 329 | int length = graph->GetBlocks().Size(); |
| 330 | block_labels_ = graph->GetArena()->AllocArray<vixl::Label>(length); |
| 331 | for (int i = 0; i < length; ++i) { |
| 332 | new(block_labels_ + i) vixl::Label(); |
| 333 | } |
| 334 | } |
| 335 | |
Serban Constantinescu | 32f5b4d | 2014-11-25 20:05:46 +0000 | [diff] [blame] | 336 | void Finalize(CodeAllocator* allocator) OVERRIDE; |
| 337 | |
Alexandre Rames | fc19de8 | 2014-11-07 17:13:31 +0000 | [diff] [blame] | 338 | // Code generation helpers. |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 339 | void MoveConstant(vixl::CPURegister destination, HConstant* constant); |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 340 | // The type is optional. When specified it must be coherent with the |
| 341 | // locations, and is used for optimisation and debugging. |
| 342 | void MoveLocation(Location destination, Location source, |
| 343 | Primitive::Type type = Primitive::kPrimVoid); |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 344 | void Load(Primitive::Type type, vixl::CPURegister dst, const vixl::MemOperand& src); |
| 345 | void Store(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst); |
Calin Juravle | 77520bc | 2015-01-12 18:45:46 +0000 | [diff] [blame] | 346 | void LoadAcquire(HInstruction* instruction, vixl::CPURegister dst, const vixl::MemOperand& src); |
Serban Constantinescu | 02d81cc | 2015-01-05 16:08:49 +0000 | [diff] [blame] | 347 | void StoreRelease(Primitive::Type type, vixl::CPURegister rt, const vixl::MemOperand& dst); |
Alexandre Rames | 67555f7 | 2014-11-18 10:55:16 +0000 | [diff] [blame] | 348 | |
| 349 | // Generate code to invoke a runtime entry point. |
Nicolas Geoffray | eeefa12 | 2015-03-13 18:52:59 +0000 | [diff] [blame] | 350 | void InvokeRuntime(int32_t offset, |
| 351 | HInstruction* instruction, |
| 352 | uint32_t dex_pc, |
| 353 | SlowPathCode* slow_path); |
Alexandre Rames | fc19de8 | 2014-11-07 17:13:31 +0000 | [diff] [blame] | 354 | |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 355 | ParallelMoveResolverARM64* GetMoveResolver() { return &move_resolver_; } |
Nicolas Geoffray | f0e3937 | 2014-11-12 17:50:07 +0000 | [diff] [blame] | 356 | |
Nicolas Geoffray | 840e546 | 2015-01-07 16:01:24 +0000 | [diff] [blame] | 357 | bool NeedsTwoRegisters(Primitive::Type type ATTRIBUTE_UNUSED) const OVERRIDE { |
| 358 | return false; |
| 359 | } |
| 360 | |
Nicolas Geoffray | 38207af | 2015-06-01 15:46:22 +0100 | [diff] [blame] | 361 | void GenerateStaticOrDirectCall(HInvokeStaticOrDirect* invoke, Location temp); |
Andreas Gampe | 878d58c | 2015-01-15 23:24:00 -0800 | [diff] [blame] | 362 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 363 | private: |
| 364 | // Labels for each block that will be compiled. |
| 365 | vixl::Label* block_labels_; |
Nicolas Geoffray | 1cf9528 | 2014-12-12 19:22:03 +0000 | [diff] [blame] | 366 | vixl::Label frame_entry_label_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 367 | |
| 368 | LocationsBuilderARM64 location_builder_; |
| 369 | InstructionCodeGeneratorARM64 instruction_visitor_; |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 370 | ParallelMoveResolverARM64 move_resolver_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 371 | Arm64Assembler assembler_; |
Serban Constantinescu | 579885a | 2015-02-22 20:51:33 +0000 | [diff] [blame] | 372 | const Arm64InstructionSetFeatures& isa_features_; |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 373 | |
| 374 | DISALLOW_COPY_AND_ASSIGN(CodeGeneratorARM64); |
| 375 | }; |
| 376 | |
Alexandre Rames | 3e69f16 | 2014-12-10 10:36:50 +0000 | [diff] [blame] | 377 | inline Arm64Assembler* ParallelMoveResolverARM64::GetAssembler() const { |
| 378 | return codegen_->GetAssembler(); |
| 379 | } |
| 380 | |
Alexandre Rames | 5319def | 2014-10-23 10:03:10 +0100 | [diff] [blame] | 381 | } // namespace arm64 |
| 382 | } // namespace art |
| 383 | |
| 384 | #endif // ART_COMPILER_OPTIMIZING_CODE_GENERATOR_ARM64_H_ |