blob: c07de79984003edfd2f5ae04e4102c88978d5096 [file] [log] [blame]
Vladimir Markob163bb72015-03-31 21:49:49 +01001/*
2 * Copyright (C) 2015 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_LINKER_RELATIVE_PATCHER_TEST_H_
18#define ART_COMPILER_LINKER_RELATIVE_PATCHER_TEST_H_
19
20#include "arch/instruction_set.h"
21#include "arch/instruction_set_features.h"
22#include "base/macros.h"
23#include "compiled_method.h"
24#include "dex/quick/dex_file_to_method_inliner_map.h"
25#include "dex/verification_results.h"
26#include "driver/compiler_driver.h"
27#include "driver/compiler_options.h"
28#include "globals.h"
29#include "gtest/gtest.h"
30#include "linker/relative_patcher.h"
31#include "method_reference.h"
32#include "oat.h"
Nicolas Geoffray524e7ea2015-10-16 17:13:34 +010033#include "oat_quick_method_header.h"
Vladimir Markob163bb72015-03-31 21:49:49 +010034#include "utils/array_ref.h"
35#include "vector_output_stream.h"
36
37namespace art {
38namespace linker {
39
40// Base class providing infrastructure for architecture-specific tests.
41class RelativePatcherTest : public testing::Test {
42 protected:
43 RelativePatcherTest(InstructionSet instruction_set, const std::string& variant)
44 : compiler_options_(),
45 verification_results_(&compiler_options_),
46 inliner_map_(),
Vladimir Marko944da602016-02-19 12:27:55 +000047 driver_(&compiler_options_,
48 &verification_results_,
49 &inliner_map_,
50 Compiler::kQuick,
51 instruction_set,
52 /* instruction_set_features*/ nullptr,
53 /* boot_image */ false,
54 /* image_classes */ nullptr,
55 /* compiled_classes */ nullptr,
56 /* compiled_methods */ nullptr,
57 /* thread_count */ 1u,
58 /* dump_stats */ false,
59 /* dump_passes */ false,
60 /* timer */ nullptr,
61 /* swap_fd */ -1,
62 /* profile_compilation_info */ nullptr),
Vladimir Markob163bb72015-03-31 21:49:49 +010063 error_msg_(),
64 instruction_set_(instruction_set),
65 features_(InstructionSetFeatures::FromVariant(instruction_set, variant, &error_msg_)),
66 method_offset_map_(),
67 patcher_(RelativePatcher::Create(instruction_set, features_.get(), &method_offset_map_)),
68 dex_cache_arrays_begin_(0u),
69 compiled_method_refs_(),
70 compiled_methods_(),
71 patched_code_(),
72 output_(),
73 out_("test output stream", &output_) {
74 CHECK(error_msg_.empty()) << instruction_set << "/" << variant;
75 patched_code_.reserve(16 * KB);
76 }
77
78 MethodReference MethodRef(uint32_t method_idx) {
Vladimir Marko4d23c9d2015-04-01 23:03:09 +010079 CHECK_NE(method_idx, 0u);
Vladimir Markob163bb72015-03-31 21:49:49 +010080 return MethodReference(nullptr, method_idx);
81 }
82
83 void AddCompiledMethod(MethodReference method_ref,
84 const ArrayRef<const uint8_t>& code,
Vladimir Markob207e142015-04-02 21:25:21 +010085 const ArrayRef<const LinkerPatch>& patches) {
Vladimir Markob163bb72015-03-31 21:49:49 +010086 compiled_method_refs_.push_back(method_ref);
87 compiled_methods_.emplace_back(new CompiledMethod(
Vladimir Marko9d07e3d2016-03-31 12:02:28 +010088 &driver_,
89 instruction_set_,
90 code,
91 /* frame_size_in_bytes */ 0u,
92 /* core_spill_mask */ 0u,
93 /* fp_spill_mask */ 0u,
94 /* src_mapping_table */ ArrayRef<const SrcMapElem>(),
95 /* vmap_table */ ArrayRef<const uint8_t>(),
96 /* cfi_info */ ArrayRef<const uint8_t>(),
Vladimir Markob163bb72015-03-31 21:49:49 +010097 patches));
98 }
99
100 void Link() {
101 // Reserve space.
102 static_assert(kTrampolineOffset == 0u, "Unexpected trampoline offset.");
103 uint32_t offset = kTrampolineSize;
104 size_t idx = 0u;
105 for (auto& compiled_method : compiled_methods_) {
Vladimir Marko4d23c9d2015-04-01 23:03:09 +0100106 offset = patcher_->ReserveSpace(offset, compiled_method.get(), compiled_method_refs_[idx]);
Vladimir Markob163bb72015-03-31 21:49:49 +0100107
108 uint32_t aligned_offset = compiled_method->AlignCode(offset);
109 uint32_t aligned_code_delta = aligned_offset - offset;
110 offset += aligned_code_delta;
111
112 offset += sizeof(OatQuickMethodHeader);
113 uint32_t quick_code_offset = offset + compiled_method->CodeDelta();
Vladimir Marko35831e82015-09-11 11:59:18 +0100114 const auto code = compiled_method->GetQuickCode();
Vladimir Markob163bb72015-03-31 21:49:49 +0100115 offset += code.size();
116
117 method_offset_map_.map.Put(compiled_method_refs_[idx], quick_code_offset);
118 ++idx;
119 }
Vladimir Marko71b0ddf2015-04-02 19:45:06 +0100120 offset = patcher_->ReserveSpaceEnd(offset);
Vladimir Markob163bb72015-03-31 21:49:49 +0100121 uint32_t output_size = offset;
122 output_.reserve(output_size);
123
124 // Write data.
125 DCHECK(output_.empty());
126 uint8_t dummy_trampoline[kTrampolineSize];
127 memset(dummy_trampoline, 0, sizeof(dummy_trampoline));
128 out_.WriteFully(dummy_trampoline, kTrampolineSize);
129 offset = kTrampolineSize;
130 static const uint8_t kPadding[] = {
131 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u, 0u
132 };
133 uint8_t dummy_header[sizeof(OatQuickMethodHeader)];
134 memset(dummy_header, 0, sizeof(dummy_header));
135 for (auto& compiled_method : compiled_methods_) {
136 offset = patcher_->WriteThunks(&out_, offset);
137
138 uint32_t aligned_offset = compiled_method->AlignCode(offset);
139 uint32_t aligned_code_delta = aligned_offset - offset;
140 CHECK_LE(aligned_code_delta, sizeof(kPadding));
141 out_.WriteFully(kPadding, aligned_code_delta);
142 offset += aligned_code_delta;
143
144 out_.WriteFully(dummy_header, sizeof(OatQuickMethodHeader));
145 offset += sizeof(OatQuickMethodHeader);
Vladimir Marko35831e82015-09-11 11:59:18 +0100146 ArrayRef<const uint8_t> code = compiled_method->GetQuickCode();
Vladimir Markob163bb72015-03-31 21:49:49 +0100147 if (!compiled_method->GetPatches().empty()) {
148 patched_code_.assign(code.begin(), code.end());
149 code = ArrayRef<const uint8_t>(patched_code_);
150 for (const LinkerPatch& patch : compiled_method->GetPatches()) {
Vladimir Markodb8e62d2016-03-30 16:30:21 +0100151 if (patch.GetType() == LinkerPatch::Type::kCallRelative) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100152 auto result = method_offset_map_.FindMethodOffset(patch.TargetMethod());
153 uint32_t target_offset =
154 result.first ? result.second : kTrampolineOffset + compiled_method->CodeDelta();
155 patcher_->PatchCall(&patched_code_, patch.LiteralOffset(),
156 offset + patch.LiteralOffset(), target_offset);
Vladimir Markodb8e62d2016-03-30 16:30:21 +0100157 } else if (patch.GetType() == LinkerPatch::Type::kDexCacheArray) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100158 uint32_t target_offset = dex_cache_arrays_begin_ + patch.TargetDexCacheElementOffset();
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000159 patcher_->PatchPcRelativeReference(&patched_code_,
160 patch,
161 offset + patch.LiteralOffset(),
162 target_offset);
Vladimir Markodb8e62d2016-03-30 16:30:21 +0100163 } else if (patch.GetType() == LinkerPatch::Type::kStringRelative) {
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000164 uint32_t target_offset = string_index_to_offset_map_.Get(patch.TargetStringIndex());
165 patcher_->PatchPcRelativeReference(&patched_code_,
166 patch,
167 offset + patch.LiteralOffset(),
168 target_offset);
Vladimir Markob163bb72015-03-31 21:49:49 +0100169 } else {
Vladimir Markodb8e62d2016-03-30 16:30:21 +0100170 LOG(FATAL) << "Bad patch type. " << patch.GetType();
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000171 UNREACHABLE();
Vladimir Markob163bb72015-03-31 21:49:49 +0100172 }
173 }
174 }
175 out_.WriteFully(&code[0], code.size());
176 offset += code.size();
177 }
178 offset = patcher_->WriteThunks(&out_, offset);
179 CHECK_EQ(offset, output_size);
180 CHECK_EQ(output_.size(), output_size);
181 }
182
183 bool CheckLinkedMethod(MethodReference method_ref, const ArrayRef<const uint8_t>& expected_code) {
184 // Sanity check: original code size must match linked_code.size().
185 size_t idx = 0u;
186 for (auto ref : compiled_method_refs_) {
187 if (ref.dex_file == method_ref.dex_file &&
188 ref.dex_method_index == method_ref.dex_method_index) {
189 break;
190 }
191 ++idx;
192 }
193 CHECK_NE(idx, compiled_method_refs_.size());
Vladimir Marko35831e82015-09-11 11:59:18 +0100194 CHECK_EQ(compiled_methods_[idx]->GetQuickCode().size(), expected_code.size());
Vladimir Markob163bb72015-03-31 21:49:49 +0100195
196 auto result = method_offset_map_.FindMethodOffset(method_ref);
197 CHECK(result.first); // Must have been linked.
Vladimir Marko4d23c9d2015-04-01 23:03:09 +0100198 size_t offset = result.second - compiled_methods_[idx]->CodeDelta();
Vladimir Markob163bb72015-03-31 21:49:49 +0100199 CHECK_LT(offset, output_.size());
200 CHECK_LE(offset + expected_code.size(), output_.size());
201 ArrayRef<const uint8_t> linked_code(&output_[offset], expected_code.size());
202 if (linked_code == expected_code) {
203 return true;
204 }
205 // Log failure info.
Vladimir Marko4d23c9d2015-04-01 23:03:09 +0100206 DumpDiff(expected_code, linked_code);
207 return false;
208 }
209
210 void DumpDiff(const ArrayRef<const uint8_t>& expected_code,
211 const ArrayRef<const uint8_t>& linked_code) {
Vladimir Markob163bb72015-03-31 21:49:49 +0100212 std::ostringstream expected_hex;
213 std::ostringstream linked_hex;
214 std::ostringstream diff_indicator;
215 static const char digits[] = "0123456789abcdef";
216 bool found_diff = false;
217 for (size_t i = 0; i != expected_code.size(); ++i) {
218 expected_hex << " " << digits[expected_code[i] >> 4] << digits[expected_code[i] & 0xf];
219 linked_hex << " " << digits[linked_code[i] >> 4] << digits[linked_code[i] & 0xf];
Vladimir Markob163bb72015-03-31 21:49:49 +0100220 if (!found_diff) {
221 found_diff = (expected_code[i] != linked_code[i]);
Vladimir Marko3f311cf2015-04-02 15:28:45 +0100222 diff_indicator << (found_diff ? " ^^" : " ");
Vladimir Markob163bb72015-03-31 21:49:49 +0100223 }
224 }
225 CHECK(found_diff);
Vladimir Marko3f311cf2015-04-02 15:28:45 +0100226 std::string expected_hex_str = expected_hex.str();
227 std::string linked_hex_str = linked_hex.str();
228 std::string diff_indicator_str = diff_indicator.str();
229 if (diff_indicator_str.length() > 60) {
230 CHECK_EQ(diff_indicator_str.length() % 3u, 0u);
231 size_t remove = diff_indicator_str.length() / 3 - 5;
232 std::ostringstream oss;
233 oss << "[stripped " << remove << "]";
234 std::string replacement = oss.str();
235 expected_hex_str.replace(0u, remove * 3u, replacement);
236 linked_hex_str.replace(0u, remove * 3u, replacement);
237 diff_indicator_str.replace(0u, remove * 3u, replacement);
238 }
Vladimir Markob163bb72015-03-31 21:49:49 +0100239 LOG(ERROR) << "diff expected_code linked_code";
Vladimir Marko3f311cf2015-04-02 15:28:45 +0100240 LOG(ERROR) << "<" << expected_hex_str;
241 LOG(ERROR) << ">" << linked_hex_str;
242 LOG(ERROR) << " " << diff_indicator_str;
Vladimir Markob163bb72015-03-31 21:49:49 +0100243 }
244
245 // Map method reference to assinged offset.
246 // Wrap the map in a class implementing linker::RelativePatcherTargetProvider.
247 class MethodOffsetMap FINAL : public linker::RelativePatcherTargetProvider {
248 public:
249 std::pair<bool, uint32_t> FindMethodOffset(MethodReference ref) OVERRIDE {
250 auto it = map.find(ref);
251 if (it == map.end()) {
252 return std::pair<bool, uint32_t>(false, 0u);
253 } else {
254 return std::pair<bool, uint32_t>(true, it->second);
255 }
256 }
257 SafeMap<MethodReference, uint32_t, MethodReferenceComparator> map;
258 };
259
260 static const uint32_t kTrampolineSize = 4u;
261 static const uint32_t kTrampolineOffset = 0u;
262
263 CompilerOptions compiler_options_;
264 VerificationResults verification_results_;
265 DexFileToMethodInlinerMap inliner_map_;
266 CompilerDriver driver_; // Needed for constructing CompiledMethod.
267 std::string error_msg_;
268 InstructionSet instruction_set_;
269 std::unique_ptr<const InstructionSetFeatures> features_;
270 MethodOffsetMap method_offset_map_;
271 std::unique_ptr<RelativePatcher> patcher_;
272 uint32_t dex_cache_arrays_begin_;
Vladimir Markocac5a7e2016-02-22 10:39:50 +0000273 SafeMap<uint32_t, uint32_t> string_index_to_offset_map_;
Vladimir Markob163bb72015-03-31 21:49:49 +0100274 std::vector<MethodReference> compiled_method_refs_;
275 std::vector<std::unique_ptr<CompiledMethod>> compiled_methods_;
276 std::vector<uint8_t> patched_code_;
277 std::vector<uint8_t> output_;
278 VectorOutputStream out_;
279};
280
281} // namespace linker
282} // namespace art
283
284#endif // ART_COMPILER_LINKER_RELATIVE_PATCHER_TEST_H_