oat_test.cc revision df013175d1aa04641e5c6175f8c786e547d31654
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 "compiler/oat_writer.h"
18#include "mirror/art_method-inl.h"
19#include "mirror/class-inl.h"
20#include "mirror/object_array-inl.h"
21#include "mirror/object-inl.h"
22#include "oat_file.h"
23#include "vector_output_stream.h"
24
25#include "common_test.h"
26
27namespace art {
28
29class OatTest : public CommonTest {
30 protected:
31  static const bool kCompile = false;  // DISABLED_ due to the time to compile libcore
32
33  void CheckMethod(mirror::ArtMethod* method,
34                   const OatFile::OatMethod& oat_method,
35                   const DexFile* dex_file)
36      SHARED_LOCKS_REQUIRED(Locks::mutator_lock_) {
37    const CompiledMethod* compiled_method =
38        compiler_driver_->GetCompiledMethod(MethodReference(dex_file,
39                                                            method->GetDexMethodIndex()));
40
41    if (compiled_method == NULL) {
42      EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " "
43                                                << oat_method.GetCode();
44#if !defined(ART_USE_PORTABLE_COMPILER)
45      EXPECT_EQ(oat_method.GetFrameSizeInBytes(), kCompile ? kStackAlignment : 0);
46      EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
47      EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
48#endif
49    } else {
50      const void* oat_code = oat_method.GetCode();
51      EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method);
52      uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2);
53      oat_code = reinterpret_cast<const void*>(oat_code_aligned);
54
55      const std::vector<uint8_t>& code = compiled_method->GetCode();
56      size_t code_size = code.size() * sizeof(code[0]);
57      EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size))
58          << PrettyMethod(method) << " " << code_size;
59      CHECK_EQ(0, memcmp(oat_code, &code[0], code_size));
60#if !defined(ART_USE_PORTABLE_COMPILER)
61      EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
62      EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
63      EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
64#endif
65    }
66  }
67};
68
69TEST_F(OatTest, WriteRead) {
70  TimingLogger timings("CommonTest::WriteRead", false, false);
71  ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
72
73  // TODO: make selectable
74#if defined(ART_USE_PORTABLE_COMPILER)
75  CompilerBackend compiler_backend = kPortable;
76#else
77  CompilerBackend compiler_backend = kQuick;
78#endif
79  InstructionSet insn_set = kIsTargetBuild ? kThumb2 : kX86;
80
81  InstructionSetFeatures insn_features;
82  verified_methods_data_.reset(new VerifiedMethodsData);
83  method_inliner_map_.reset(compiler_backend == kQuick ? new DexFileToMethodInlinerMap : nullptr);
84  callbacks_.Reset(verified_methods_data_.get(), method_inliner_map_.get());
85  CumulativeLogger timer("Compilation times");
86  compiler_driver_.reset(new CompilerDriver(verified_methods_data_.get(),
87                                            method_inliner_map_.get(),
88                                            compiler_backend, insn_set,
89                                            insn_features, false, NULL, 2, true, true, &timer));
90  jobject class_loader = NULL;
91  if (kCompile) {
92    TimingLogger timings("OatTest::WriteRead", false, false);
93    compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
94  }
95
96  ScopedObjectAccess soa(Thread::Current());
97  ScratchFile tmp;
98  OatWriter oat_writer(class_linker->GetBootClassPath(),
99                       42U,
100                       4096U,
101                       "lue.art",
102                       compiler_driver_.get(),
103                       &timings);
104  bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(),
105                                            !kIsTargetBuild,
106                                            class_linker->GetBootClassPath(),
107                                            oat_writer,
108                                            tmp.GetFile());
109  ASSERT_TRUE(success);
110
111  if (kCompile) {  // OatWriter strips the code, regenerate to compare
112    compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
113  }
114  std::string error_msg;
115  UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL, false,
116                                            &error_msg));
117  ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
118  const OatHeader& oat_header = oat_file->GetOatHeader();
119  ASSERT_TRUE(oat_header.IsValid());
120  ASSERT_EQ(1U, oat_header.GetDexFileCount());  // core
121  ASSERT_EQ(42U, oat_header.GetImageFileLocationOatChecksum());
122  ASSERT_EQ(4096U, oat_header.GetImageFileLocationOatDataBegin());
123  ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
124
125  const DexFile* dex_file = java_lang_dex_file_;
126  uint32_t dex_file_checksum = dex_file->GetLocationChecksum();
127  const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation().c_str(),
128                                                                    &dex_file_checksum);
129  ASSERT_TRUE(oat_dex_file != nullptr);
130  CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
131  for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
132    const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
133    const byte* class_data = dex_file->GetClassData(class_def);
134    size_t num_virtual_methods = 0;
135    if (class_data != NULL) {
136      ClassDataItemIterator it(*dex_file, class_data);
137      num_virtual_methods = it.NumVirtualMethods();
138    }
139    const char* descriptor = dex_file->GetClassDescriptor(class_def);
140    SirtRef<mirror::ClassLoader> loader(Thread::Current(), nullptr);
141    mirror::Class* klass = class_linker->FindClass(descriptor, loader);
142
143    UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
144    CHECK_EQ(mirror::Class::Status::kStatusNotReady, oat_class->GetStatus()) << descriptor;
145    CHECK_EQ(kCompile ? OatClassType::kOatClassAllCompiled : OatClassType::kOatClassNoneCompiled,
146             oat_class->GetType()) << descriptor;
147
148    size_t method_index = 0;
149    for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
150      CheckMethod(klass->GetDirectMethod(i),
151                  oat_class->GetOatMethod(method_index), dex_file);
152    }
153    for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
154      CheckMethod(klass->GetVirtualMethod(i),
155                  oat_class->GetOatMethod(method_index), dex_file);
156    }
157  }
158}
159
160TEST_F(OatTest, OatHeaderSizeCheck) {
161  // If this test is failing and you have to update these constants,
162  // it is time to update OatHeader::kOatVersion
163  EXPECT_EQ(76U, sizeof(OatHeader));
164  EXPECT_EQ(28U, sizeof(OatMethodOffsets));
165}
166
167TEST_F(OatTest, OatHeaderIsValid) {
168    InstructionSet instruction_set = kX86;
169    InstructionSetFeatures instruction_set_features;
170    std::vector<const DexFile*> dex_files;
171    uint32_t image_file_location_oat_checksum = 0;
172    uint32_t image_file_location_oat_begin = 0;
173    const std::string image_file_location;
174    OatHeader oat_header(instruction_set,
175                         instruction_set_features,
176                         &dex_files,
177                         image_file_location_oat_checksum,
178                         image_file_location_oat_begin,
179                         image_file_location);
180    ASSERT_TRUE(oat_header.IsValid());
181
182    char* magic = const_cast<char*>(oat_header.GetMagic());
183    strcpy(magic, "");  // bad magic
184    ASSERT_FALSE(oat_header.IsValid());
185    strcpy(magic, "oat\n000");  // bad version
186    ASSERT_FALSE(oat_header.IsValid());
187}
188
189}  // namespace art
190