blob: 9b47a0d5b0bba8bbe4e53b40d408d6ef53280e06 [file] [log] [blame]
Vladimir Marko944da602016-02-19 12:27:55 +00001/*
2 * Copyright (C) 2016 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
Vladimir Marko74527972016-11-29 15:57:32 +000017#ifndef ART_DEX2OAT_LINKER_MULTI_OAT_RELATIVE_PATCHER_H_
18#define ART_DEX2OAT_LINKER_MULTI_OAT_RELATIVE_PATCHER_H_
Vladimir Marko944da602016-02-19 12:27:55 +000019
20#include "arch/instruction_set.h"
David Sehr67bf42e2018-02-26 16:43:04 -080021#include "base/safe_map.h"
Vladimir Marko1b404a82017-09-01 13:35:26 +010022#include "debug/method_debug_info.h"
David Sehr312f3b22018-03-19 08:39:26 -070023#include "dex/method_reference.h"
Vladimir Marko74527972016-11-29 15:57:32 +000024#include "linker/relative_patcher.h"
Vladimir Marko944da602016-02-19 12:27:55 +000025
26namespace art {
27
28class CompiledMethod;
Vladimir Markoca1e0382018-04-11 09:58:41 +000029class CompiledMethodStorage;
Vladimir Marko944da602016-02-19 12:27:55 +000030class InstructionSetFeatures;
31
32namespace linker {
33
34// MultiOatRelativePatcher is a helper class for handling patching across
35// any number of oat files. It provides storage for method code offsets
36// and wraps RelativePatcher calls, adjusting relative offsets according
37// to the value set by SetAdjustment().
Roland Levillainbbc6e7e2018-08-24 16:58:47 +010038class MultiOatRelativePatcher final {
Vladimir Marko944da602016-02-19 12:27:55 +000039 public:
Mathieu Chartierfc8b4222017-09-17 13:44:24 -070040 using const_iterator = SafeMap<MethodReference, uint32_t>::const_iterator;
Vladimir Marko944da602016-02-19 12:27:55 +000041
Vladimir Markoca1e0382018-04-11 09:58:41 +000042 MultiOatRelativePatcher(InstructionSet instruction_set,
43 const InstructionSetFeatures* features,
44 CompiledMethodStorage* storage);
Vladimir Marko944da602016-02-19 12:27:55 +000045
46 // Mark the start of a new oat file (for statistics retrieval) and set the
47 // adjustment for a new oat file to apply to all relative offsets that are
48 // passed to the MultiOatRelativePatcher.
49 //
50 // The adjustment should be the global offset of the base from which relative
51 // offsets are calculated, such as the start of .rodata for the current oat file.
52 // It must must never point directly to a method's code to avoid relative offsets
53 // with value 0 because this value is used as a missing offset indication in
54 // GetOffset() and an error indication in WriteThunks(). Additionally, it must be
55 // page-aligned, so that it does not skew alignment calculations, say arm64 ADRP.
56 void StartOatFile(uint32_t adjustment);
57
58 // Get relative offset. Returns 0 when the offset has not been set yet.
59 uint32_t GetOffset(MethodReference method_ref) {
60 auto it = method_offset_map_.map.find(method_ref);
61 return (it != method_offset_map_.map.end()) ? it->second - adjustment_ : 0u;
62 }
63
64 // Set the offset.
65 void SetOffset(MethodReference method_ref, uint32_t offset) {
66 method_offset_map_.map.Put(method_ref, offset + adjustment_);
67 }
68
69 // Wrapper around RelativePatcher::ReserveSpace(), doing offset adjustment.
70 uint32_t ReserveSpace(uint32_t offset,
71 const CompiledMethod* compiled_method,
72 MethodReference method_ref) {
73 offset += adjustment_;
74 offset = relative_patcher_->ReserveSpace(offset, compiled_method, method_ref);
75 offset -= adjustment_;
76 return offset;
77 }
78
79 // Wrapper around RelativePatcher::ReserveSpaceEnd(), doing offset adjustment.
80 uint32_t ReserveSpaceEnd(uint32_t offset) {
81 offset += adjustment_;
82 offset = relative_patcher_->ReserveSpaceEnd(offset);
83 offset -= adjustment_;
84 return offset;
85 }
86
87 // Wrapper around RelativePatcher::WriteThunks(), doing offset adjustment.
88 uint32_t WriteThunks(OutputStream* out, uint32_t offset) {
89 offset += adjustment_;
90 offset = relative_patcher_->WriteThunks(out, offset);
91 if (offset != 0u) { // 0u indicates write error.
92 offset -= adjustment_;
93 }
94 return offset;
95 }
96
97 // Wrapper around RelativePatcher::PatchCall(), doing offset adjustment.
98 void PatchCall(std::vector<uint8_t>* code,
99 uint32_t literal_offset,
100 uint32_t patch_offset,
101 uint32_t target_offset) {
102 patch_offset += adjustment_;
103 target_offset += adjustment_;
104 relative_patcher_->PatchCall(code, literal_offset, patch_offset, target_offset);
105 }
106
Vladimir Marko5f078202017-05-18 13:32:53 +0100107 // Wrapper around RelativePatcher::PatchPcRelativeReference(), doing offset adjustment.
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000108 void PatchPcRelativeReference(std::vector<uint8_t>* code,
109 const LinkerPatch& patch,
110 uint32_t patch_offset,
111 uint32_t target_offset) {
Vladimir Marko944da602016-02-19 12:27:55 +0000112 patch_offset += adjustment_;
113 target_offset += adjustment_;
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000114 relative_patcher_->PatchPcRelativeReference(code, patch, patch_offset, target_offset);
Vladimir Marko944da602016-02-19 12:27:55 +0000115 }
116
Vladimir Markof4f2daa2017-03-20 18:26:59 +0000117 void PatchBakerReadBarrierBranch(std::vector<uint8_t>* code,
118 const LinkerPatch& patch,
119 uint32_t patch_offset) {
120 patch_offset += adjustment_;
121 relative_patcher_->PatchBakerReadBarrierBranch(code, patch, patch_offset);
122 }
123
Vladimir Marko1b404a82017-09-01 13:35:26 +0100124 std::vector<debug::MethodDebugInfo> GenerateThunkDebugInfo(size_t executable_offset) {
125 executable_offset += adjustment_;
126 return relative_patcher_->GenerateThunkDebugInfo(executable_offset);
127 }
128
Vladimir Marko944da602016-02-19 12:27:55 +0000129 // Wrappers around RelativePatcher for statistics retrieval.
130 uint32_t CodeAlignmentSize() const;
131 uint32_t RelativeCallThunksSize() const;
132 uint32_t MiscThunksSize() const;
133
134 private:
Vladimir Markoca1e0382018-04-11 09:58:41 +0000135 class ThunkProvider : public RelativePatcherThunkProvider {
136 public:
137 explicit ThunkProvider(CompiledMethodStorage* storage)
138 : storage_(storage) {}
139
140 void GetThunkCode(const LinkerPatch& patch,
141 /*out*/ ArrayRef<const uint8_t>* code,
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100142 /*out*/ std::string* debug_name) override;
Vladimir Markoca1e0382018-04-11 09:58:41 +0000143
144 private:
145 CompiledMethodStorage* storage_;
146 };
147
Vladimir Marko944da602016-02-19 12:27:55 +0000148 // Map method reference to assigned offset.
Vladimir Marko74527972016-11-29 15:57:32 +0000149 // Wrap the map in a class implementing RelativePatcherTargetProvider.
150 class MethodOffsetMap : public RelativePatcherTargetProvider {
Vladimir Marko944da602016-02-19 12:27:55 +0000151 public:
Roland Levillainbbc6e7e2018-08-24 16:58:47 +0100152 std::pair<bool, uint32_t> FindMethodOffset(MethodReference ref) override;
Mathieu Chartierfc8b4222017-09-17 13:44:24 -0700153 SafeMap<MethodReference, uint32_t> map;
Vladimir Marko944da602016-02-19 12:27:55 +0000154 };
155
Vladimir Markoca1e0382018-04-11 09:58:41 +0000156 ThunkProvider thunk_provider_;
Vladimir Marko944da602016-02-19 12:27:55 +0000157 MethodOffsetMap method_offset_map_;
158 std::unique_ptr<RelativePatcher> relative_patcher_;
159 uint32_t adjustment_;
160 InstructionSet instruction_set_;
161
162 uint32_t start_size_code_alignment_;
163 uint32_t start_size_relative_call_thunks_;
164 uint32_t start_size_misc_thunks_;
165
166 friend class MultiOatRelativePatcherTest;
167
168 DISALLOW_COPY_AND_ASSIGN(MultiOatRelativePatcher);
169};
170
171} // namespace linker
172} // namespace art
173
Vladimir Marko74527972016-11-29 15:57:32 +0000174#endif // ART_DEX2OAT_LINKER_MULTI_OAT_RELATIVE_PATCHER_H_