oat_test.cc revision 131980fc9aeb2b4d03480443e0fb494c76ce03a2
1/*
2 * Copyright (C) 2011 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#include "arch/instruction_set_features.h"
18#include "art_method-inl.h"
19#include "base/unix_file/fd_file.h"
20#include "class_linker.h"
21#include "common_compiler_test.h"
22#include "compiled_method.h"
23#include "compiler.h"
24#include "dex/pass_manager.h"
25#include "dex/quick/dex_file_to_method_inliner_map.h"
26#include "dex/quick_compiler_callbacks.h"
27#include "dex/verification_results.h"
28#include "driver/compiler_driver.h"
29#include "driver/compiler_options.h"
30#include "dwarf/method_debug_info.h"
31#include "elf_writer.h"
32#include "elf_writer_quick.h"
33#include "entrypoints/quick/quick_entrypoints.h"
34#include "linker/vector_output_stream.h"
35#include "mirror/class-inl.h"
36#include "mirror/object_array-inl.h"
37#include "mirror/object-inl.h"
38#include "oat_file-inl.h"
39#include "oat_writer.h"
40#include "scoped_thread_state_change.h"
41
42namespace art {
43
44NO_RETURN static void Usage(const char* fmt, ...) {
45  va_list ap;
46  va_start(ap, fmt);
47  std::string error;
48  StringAppendV(&error, fmt, ap);
49  LOG(FATAL) << error;
50  va_end(ap);
51  UNREACHABLE();
52}
53
54class OatTest : public CommonCompilerTest {
55 protected:
56  static const bool kCompile = false;  // DISABLED_ due to the time to compile libcore
57
58  void CheckMethod(ArtMethod* method,
59                   const OatFile::OatMethod& oat_method,
60                   const DexFile& dex_file)
61      SHARED_REQUIRES(Locks::mutator_lock_) {
62    const CompiledMethod* compiled_method =
63        compiler_driver_->GetCompiledMethod(MethodReference(&dex_file,
64                                                            method->GetDexMethodIndex()));
65
66    if (compiled_method == nullptr) {
67      EXPECT_TRUE(oat_method.GetQuickCode() == nullptr) << PrettyMethod(method) << " "
68                                                        << oat_method.GetQuickCode();
69      EXPECT_EQ(oat_method.GetFrameSizeInBytes(), 0U);
70      EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
71      EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
72    } else {
73      const void* quick_oat_code = oat_method.GetQuickCode();
74      EXPECT_TRUE(quick_oat_code != nullptr) << PrettyMethod(method);
75      EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
76      EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
77      EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
78      uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(quick_oat_code), 2);
79      quick_oat_code = reinterpret_cast<const void*>(oat_code_aligned);
80      ArrayRef<const uint8_t> quick_code = compiled_method->GetQuickCode();
81      EXPECT_FALSE(quick_code.empty());
82      size_t code_size = quick_code.size() * sizeof(quick_code[0]);
83      EXPECT_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size))
84          << PrettyMethod(method) << " " << code_size;
85      CHECK_EQ(0, memcmp(quick_oat_code, &quick_code[0], code_size));
86    }
87  }
88
89  void SetupCompiler(Compiler::Kind compiler_kind,
90                     InstructionSet insn_set,
91                     const std::vector<std::string>& compiler_options,
92                     /*out*/std::string* error_msg) {
93    ASSERT_TRUE(error_msg != nullptr);
94    insn_features_.reset(InstructionSetFeatures::FromVariant(insn_set, "default", error_msg));
95    ASSERT_TRUE(insn_features_ != nullptr) << error_msg;
96    compiler_options_.reset(new CompilerOptions);
97    for (const std::string& option : compiler_options) {
98      compiler_options_->ParseCompilerOption(option, Usage);
99    }
100    verification_results_.reset(new VerificationResults(compiler_options_.get()));
101    method_inliner_map_.reset(new DexFileToMethodInlinerMap);
102    callbacks_.reset(new QuickCompilerCallbacks(verification_results_.get(),
103                                                method_inliner_map_.get(),
104                                                CompilerCallbacks::CallbackMode::kCompileApp));
105    Runtime::Current()->SetCompilerCallbacks(callbacks_.get());
106    timer_.reset(new CumulativeLogger("Compilation times"));
107    compiler_driver_.reset(new CompilerDriver(compiler_options_.get(),
108                                              verification_results_.get(),
109                                              method_inliner_map_.get(),
110                                              compiler_kind,
111                                              insn_set,
112                                              insn_features_.get(),
113                                              false,
114                                              nullptr,
115                                              nullptr,
116                                              nullptr,
117                                              2,
118                                              true,
119                                              true,
120                                              "",
121                                              false,
122                                              timer_.get(),
123                                              -1,
124                                              ""));
125  }
126
127  bool WriteElf(File* file,
128                const std::vector<const DexFile*>& dex_files,
129                SafeMap<std::string, std::string>& key_value_store) {
130    TimingLogger timings("WriteElf", false, false);
131    OatWriter oat_writer(dex_files,
132                         42U,
133                         4096U,
134                         0,
135                         compiler_driver_.get(),
136                         nullptr,
137                         /*compiling_boot_image*/false,
138                         &timings,
139                         &key_value_store);
140    std::unique_ptr<ElfWriter> elf_writer = CreateElfWriterQuick(
141        compiler_driver_->GetInstructionSet(),
142        &compiler_driver_->GetCompilerOptions(),
143        file);
144
145    elf_writer->Start();
146
147    OutputStream* rodata = elf_writer->StartRoData();
148    if (!oat_writer.WriteRodata(rodata)) {
149      return false;
150    }
151    elf_writer->EndRoData(rodata);
152
153    OutputStream* text = elf_writer->StartText();
154    if (!oat_writer.WriteCode(text)) {
155      return false;
156    }
157    elf_writer->EndText(text);
158
159    elf_writer->SetBssSize(oat_writer.GetBssSize());
160
161    elf_writer->WriteDynamicSection();
162
163    ArrayRef<const dwarf::MethodDebugInfo> method_infos(oat_writer.GetMethodDebugInfo());
164    elf_writer->WriteDebugInfo(method_infos);
165
166    ArrayRef<const uintptr_t> patch_locations(oat_writer.GetAbsolutePatchLocations());
167    elf_writer->WritePatchLocations(patch_locations);
168
169    return elf_writer->End();
170  }
171
172  std::unique_ptr<const InstructionSetFeatures> insn_features_;
173  std::unique_ptr<QuickCompilerCallbacks> callbacks_;
174};
175
176TEST_F(OatTest, WriteRead) {
177  TimingLogger timings("OatTest::WriteRead", false, false);
178  ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
179
180  // TODO: make selectable.
181  Compiler::Kind compiler_kind = Compiler::kQuick;
182  InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
183  std::string error_msg;
184  SetupCompiler(compiler_kind, insn_set, std::vector<std::string>(), /*out*/ &error_msg);
185
186  jobject class_loader = nullptr;
187  if (kCompile) {
188    TimingLogger timings2("OatTest::WriteRead", false, false);
189    compiler_driver_->SetDexFilesForOatFile(class_linker->GetBootClassPath());
190    compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings2);
191  }
192
193  ScratchFile tmp;
194  SafeMap<std::string, std::string> key_value_store;
195  key_value_store.Put(OatHeader::kImageLocationKey, "lue.art");
196  bool success = WriteElf(tmp.GetFile(), class_linker->GetBootClassPath(), key_value_store);
197  ASSERT_TRUE(success);
198
199  if (kCompile) {  // OatWriter strips the code, regenerate to compare
200    compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), &timings);
201  }
202  std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), nullptr,
203                                                  nullptr, false, nullptr, &error_msg));
204  ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
205  const OatHeader& oat_header = oat_file->GetOatHeader();
206  ASSERT_TRUE(oat_header.IsValid());
207  ASSERT_EQ(1U, oat_header.GetDexFileCount());  // core
208  ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
209  ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
210  ASSERT_EQ("lue.art", std::string(oat_header.GetStoreValueByKey(OatHeader::kImageLocationKey)));
211
212  ASSERT_TRUE(java_lang_dex_file_ != nullptr);
213  const DexFile& dex_file = *java_lang_dex_file_;
214  uint32_t dex_file_checksum = dex_file.GetLocationChecksum();
215  const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file.GetLocation().c_str(),
216                                                                    &dex_file_checksum);
217  ASSERT_TRUE(oat_dex_file != nullptr);
218  CHECK_EQ(dex_file.GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
219  ScopedObjectAccess soa(Thread::Current());
220  auto pointer_size = class_linker->GetImagePointerSize();
221  for (size_t i = 0; i < dex_file.NumClassDefs(); i++) {
222    const DexFile::ClassDef& class_def = dex_file.GetClassDef(i);
223    const uint8_t* class_data = dex_file.GetClassData(class_def);
224
225    size_t num_virtual_methods = 0;
226    if (class_data != nullptr) {
227      ClassDataItemIterator it(dex_file, class_data);
228      num_virtual_methods = it.NumVirtualMethods();
229    }
230
231    const char* descriptor = dex_file.GetClassDescriptor(class_def);
232    mirror::Class* klass = class_linker->FindClass(soa.Self(), descriptor,
233                                                   NullHandle<mirror::ClassLoader>());
234
235    const OatFile::OatClass oat_class = oat_dex_file->GetOatClass(i);
236    CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class.GetStatus()) << descriptor;
237    CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
238             oat_class.GetType()) << descriptor;
239
240    size_t method_index = 0;
241    for (auto& m : klass->GetDirectMethods(pointer_size)) {
242      CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
243      ++method_index;
244    }
245    size_t visited_virtuals = 0;
246    for (auto& m : klass->GetVirtualMethods(pointer_size)) {
247      if (!m.IsMiranda()) {
248        CheckMethod(&m, oat_class.GetOatMethod(method_index), dex_file);
249        ++method_index;
250        ++visited_virtuals;
251      }
252    }
253    EXPECT_EQ(visited_virtuals, num_virtual_methods);
254  }
255}
256
257TEST_F(OatTest, OatHeaderSizeCheck) {
258  // If this test is failing and you have to update these constants,
259  // it is time to update OatHeader::kOatVersion
260  EXPECT_EQ(72U, sizeof(OatHeader));
261  EXPECT_EQ(4U, sizeof(OatMethodOffsets));
262  EXPECT_EQ(28U, sizeof(OatQuickMethodHeader));
263  EXPECT_EQ(114 * GetInstructionSetPointerSize(kRuntimeISA), sizeof(QuickEntryPoints));
264}
265
266TEST_F(OatTest, OatHeaderIsValid) {
267    InstructionSet insn_set = kX86;
268    std::string error_msg;
269    std::unique_ptr<const InstructionSetFeatures> insn_features(
270        InstructionSetFeatures::FromVariant(insn_set, "default", &error_msg));
271    ASSERT_TRUE(insn_features.get() != nullptr) << error_msg;
272    std::vector<const DexFile*> dex_files;
273    uint32_t image_file_location_oat_checksum = 0;
274    uint32_t image_file_location_oat_begin = 0;
275    std::unique_ptr<OatHeader> oat_header(OatHeader::Create(insn_set,
276                                                            insn_features.get(),
277                                                            &dex_files,
278                                                            image_file_location_oat_checksum,
279                                                            image_file_location_oat_begin,
280                                                            nullptr));
281    ASSERT_NE(oat_header.get(), nullptr);
282    ASSERT_TRUE(oat_header->IsValid());
283
284    char* magic = const_cast<char*>(oat_header->GetMagic());
285    strcpy(magic, "");  // bad magic
286    ASSERT_FALSE(oat_header->IsValid());
287    strcpy(magic, "oat\n000");  // bad version
288    ASSERT_FALSE(oat_header->IsValid());
289}
290
291TEST_F(OatTest, EmptyTextSection) {
292  TimingLogger timings("OatTest::EmptyTextSection", false, false);
293
294  // TODO: make selectable.
295  Compiler::Kind compiler_kind = Compiler::kQuick;
296  InstructionSet insn_set = kRuntimeISA;
297  if (insn_set == kArm) insn_set = kThumb2;
298  std::string error_msg;
299  std::vector<std::string> compiler_options;
300  compiler_options.push_back("--compiler-filter=verify-at-runtime");
301  SetupCompiler(compiler_kind, insn_set, compiler_options, /*out*/ &error_msg);
302
303  jobject class_loader;
304  {
305    ScopedObjectAccess soa(Thread::Current());
306    class_loader = LoadDex("Main");
307  }
308  ASSERT_TRUE(class_loader != nullptr);
309  std::vector<const DexFile*> dex_files = GetDexFiles(class_loader);
310  ASSERT_TRUE(!dex_files.empty());
311
312  ClassLinker* const class_linker = Runtime::Current()->GetClassLinker();
313  for (const DexFile* dex_file : dex_files) {
314    ScopedObjectAccess soa(Thread::Current());
315    class_linker->RegisterDexFile(
316        *dex_file,
317        class_linker->GetOrCreateAllocatorForClassLoader(
318            soa.Decode<mirror::ClassLoader*>(class_loader)));
319  }
320  compiler_driver_->SetDexFilesForOatFile(dex_files);
321  compiler_driver_->CompileAll(class_loader, dex_files, &timings);
322
323  ScratchFile tmp;
324  SafeMap<std::string, std::string> key_value_store;
325  key_value_store.Put(OatHeader::kImageLocationKey, "test.art");
326  bool success = WriteElf(tmp.GetFile(), dex_files, key_value_store);
327  ASSERT_TRUE(success);
328
329  std::unique_ptr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(),
330                                                  tmp.GetFilename(),
331                                                  nullptr,
332                                                  nullptr,
333                                                  false,
334                                                  nullptr,
335                                                  &error_msg));
336  ASSERT_TRUE(oat_file != nullptr);
337  EXPECT_LT(static_cast<size_t>(oat_file->Size()), static_cast<size_t>(tmp.GetFile()->GetLength()));
338}
339
340}  // namespace art
341