/* * Copyright (C) 2015 The Android Open Source Project * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #ifndef ART_COMPILER_LINKER_ARM64_RELATIVE_PATCHER_ARM64_H_ #define ART_COMPILER_LINKER_ARM64_RELATIVE_PATCHER_ARM64_H_ #include "base/array_ref.h" #include "base/bit_field.h" #include "linker/arm/relative_patcher_arm_base.h" namespace art { namespace linker { class Arm64RelativePatcher FINAL : public ArmBaseRelativePatcher { public: enum class BakerReadBarrierKind : uint8_t { kField, // Field get or array get with constant offset (i.e. constant index). kGcRoot, // GC root load. kLast }; static uint32_t EncodeBakerReadBarrierFieldData(uint32_t base_reg, uint32_t holder_reg) { CheckValidReg(base_reg); CheckValidReg(holder_reg); return BakerReadBarrierKindField::Encode(BakerReadBarrierKind::kField) | BakerReadBarrierFirstRegField::Encode(base_reg) | BakerReadBarrierSecondRegField::Encode(holder_reg); } static uint32_t EncodeBakerReadBarrierGcRootData(uint32_t root_reg) { CheckValidReg(root_reg); return BakerReadBarrierKindField::Encode(BakerReadBarrierKind::kGcRoot) | BakerReadBarrierFirstRegField::Encode(root_reg) | BakerReadBarrierSecondRegField::Encode(kInvalidEncodedReg); } Arm64RelativePatcher(RelativePatcherTargetProvider* provider, const Arm64InstructionSetFeatures* features); uint32_t ReserveSpace(uint32_t offset, const CompiledMethod* compiled_method, MethodReference method_ref) OVERRIDE; uint32_t ReserveSpaceEnd(uint32_t offset) OVERRIDE; uint32_t WriteThunks(OutputStream* out, uint32_t offset) OVERRIDE; void PatchCall(std::vector* code, uint32_t literal_offset, uint32_t patch_offset, uint32_t target_offset) OVERRIDE; void PatchPcRelativeReference(std::vector* code, const LinkerPatch& patch, uint32_t patch_offset, uint32_t target_offset) OVERRIDE; void PatchBakerReadBarrierBranch(std::vector* code, const LinkerPatch& patch, uint32_t patch_offset) OVERRIDE; protected: static constexpr uint32_t kInvalidEncodedReg = /* sp/zr is invalid */ 31u; ThunkKey GetBakerReadBarrierKey(const LinkerPatch& patch) OVERRIDE; std::vector CompileThunk(const ThunkKey& key) OVERRIDE; uint32_t MaxPositiveDisplacement(ThunkType type) OVERRIDE; uint32_t MaxNegativeDisplacement(ThunkType type) OVERRIDE; private: static constexpr size_t kBitsForBakerReadBarrierKind = MinimumBitsToStore(static_cast(BakerReadBarrierKind::kLast)); static constexpr size_t kBitsForRegister = 5u; using BakerReadBarrierKindField = BitField; using BakerReadBarrierFirstRegField = BitField; using BakerReadBarrierSecondRegField = BitField; static void CheckValidReg(uint32_t reg) { DCHECK(reg < 30u && reg != 16u && reg != 17u); } static uint32_t PatchAdrp(uint32_t adrp, uint32_t disp); static bool NeedsErratum843419Thunk(ArrayRef code, uint32_t literal_offset, uint32_t patch_offset); void SetInsn(std::vector* code, uint32_t offset, uint32_t value); static uint32_t GetInsn(ArrayRef code, uint32_t offset); template static uint32_t GetInsn(std::vector* code, uint32_t offset); const bool fix_cortex_a53_843419_; // Map original patch_offset to thunk offset. std::vector> adrp_thunk_locations_; size_t reserved_adrp_thunks_; size_t processed_adrp_thunks_; std::vector current_method_thunks_; friend class Arm64RelativePatcherTest; DISALLOW_COPY_AND_ASSIGN(Arm64RelativePatcher); }; } // namespace linker } // namespace art #endif // ART_COMPILER_LINKER_ARM64_RELATIVE_PATCHER_ARM64_H_