blob: b9f24ecf54ab921b8e4ad803fba4e0789150438f [file] [log] [blame]
Elliott Hughes2faa5f12012-01-30 14:42:07 -08001/*
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 */
Brian Carlstrome24fa612011-09-29 00:53:55 -070016
17#include "oat_file.h"
18#include "oat_writer.h"
19
20#include "common_test.h"
21
22namespace art {
23
Logan Chieneeb7edf2012-03-09 20:38:39 +080024class OatTest : public CommonTest {
25 protected:
26 void CheckMethod(Method* method,
27 const OatFile::OatMethod& oat_method,
28 const DexFile* dex_file) {
29 const CompiledMethod* compiled_method =
30 compiler_->GetCompiledMethod(Compiler::MethodReference(dex_file,
31 method->GetDexMethodIndex()));
32
33 if (compiled_method == NULL) {
34 EXPECT_TRUE(oat_method.GetCode() == NULL) << PrettyMethod(method) << " "
35 << oat_method.GetCode();
36 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), static_cast<uint32_t>(kStackAlignment));
37 EXPECT_EQ(oat_method.GetCoreSpillMask(), 0U);
38 EXPECT_EQ(oat_method.GetFpSpillMask(), 0U);
39 } else {
40 const void* oat_code = oat_method.GetCode();
41 EXPECT_TRUE(oat_code != NULL) << PrettyMethod(method);
42 uintptr_t oat_code_aligned = RoundDown(reinterpret_cast<uintptr_t>(oat_code), 2);
43 oat_code = reinterpret_cast<const void*>(oat_code_aligned);
44
45 const std::vector<uint8_t>& code = compiled_method->GetCode();
46 size_t code_size = code.size() * sizeof(code[0]);
47 EXPECT_EQ(0, memcmp(oat_code, &code[0], code_size))
48 << PrettyMethod(method) << " " << code_size;
49 CHECK_EQ(0, memcmp(oat_code, &code[0], code_size));
50 EXPECT_EQ(oat_method.GetFrameSizeInBytes(), compiled_method->GetFrameSizeInBytes());
51 EXPECT_EQ(oat_method.GetCoreSpillMask(), compiled_method->GetCoreSpillMask());
52 EXPECT_EQ(oat_method.GetFpSpillMask(), compiled_method->GetFpSpillMask());
53 }
54 }
55};
Brian Carlstrome24fa612011-09-29 00:53:55 -070056
57TEST_F(OatTest, WriteRead) {
58 const bool compile = false; // DISABLED_ due to the time to compile libcore
Jesse Wilson254db0f2011-11-16 16:44:11 -050059 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Brian Carlstrome24fa612011-09-29 00:53:55 -070060
Brian Carlstrom40381fb2011-10-19 14:13:40 -070061 SirtRef<ClassLoader> class_loader(NULL);
Brian Carlstrome24fa612011-09-29 00:53:55 -070062 if (compile) {
Brian Carlstromba0668e2012-03-26 13:14:07 -070063 compiler_.reset(new Compiler(kThumb2, false, 2, false, NULL, true, true));
Jesse Wilson254db0f2011-11-16 16:44:11 -050064 compiler_->CompileAll(class_loader.get(), class_linker->GetBootClassPath());
Brian Carlstrome24fa612011-09-29 00:53:55 -070065 }
66
67 ScratchFile tmp;
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070068 bool success = OatWriter::Create(tmp.GetFile(),
69 class_loader.get(),
70 class_linker->GetBootClassPath(),
71 42U,
72 "lue.art",
73 *compiler_.get());
Brian Carlstrome24fa612011-09-29 00:53:55 -070074 ASSERT_TRUE(success);
75
76 if (compile) { // OatWriter strips the code, regenerate to compare
Jesse Wilson254db0f2011-11-16 16:44:11 -050077 compiler_->CompileAll(class_loader.get(), class_linker->GetBootClassPath());
Brian Carlstrome24fa612011-09-29 00:53:55 -070078 }
Brian Carlstroma004aa92012-02-08 18:05:09 -080079 UniquePtr<OatFile> oat_file(OatFile::Open(tmp.GetFilename(), tmp.GetFilename(), NULL));
Brian Carlstrome24fa612011-09-29 00:53:55 -070080 ASSERT_TRUE(oat_file.get() != NULL);
81 const OatHeader& oat_header = oat_file->GetOatHeader();
82 ASSERT_EQ(1U, oat_header.GetDexFileCount());
Brian Carlstrom81f3ca12012-03-17 00:27:35 -070083 ASSERT_EQ(42U, oat_header.GetImageFileLocationChecksum());
84 ASSERT_EQ("lue.art", oat_header.GetImageFileLocation());
Brian Carlstrome24fa612011-09-29 00:53:55 -070085
Brian Carlstroma004aa92012-02-08 18:05:09 -080086 const DexFile* dex_file = java_lang_dex_file_;
87 const OatFile::OatDexFile* oat_dex_file = oat_file->GetOatDexFile(dex_file->GetLocation());
88 CHECK_EQ(dex_file->GetLocationChecksum(), oat_dex_file->GetDexFileLocationChecksum());
89 for (size_t i = 0; i < dex_file->NumClassDefs(); i++) {
90 const DexFile::ClassDef& class_def = dex_file->GetClassDef(i);
91 const byte* class_data = dex_file->GetClassData(class_def);
Ian Rogers0571d352011-11-03 19:51:38 -070092 size_t num_virtual_methods =0;
93 if (class_data != NULL) {
Brian Carlstroma004aa92012-02-08 18:05:09 -080094 ClassDataItemIterator it(*dex_file, class_data);
Ian Rogers0571d352011-11-03 19:51:38 -070095 num_virtual_methods = it.NumVirtualMethods();
96 }
Brian Carlstroma004aa92012-02-08 18:05:09 -080097 const char* descriptor = dex_file->GetClassDescriptor(class_def);
Brian Carlstrome24fa612011-09-29 00:53:55 -070098
Brian Carlstromaded5f72011-10-07 17:15:04 -070099 UniquePtr<const OatFile::OatClass> oat_class(oat_dex_file->GetOatClass(i));
Brian Carlstrome24fa612011-09-29 00:53:55 -0700100
Brian Carlstrom40381fb2011-10-19 14:13:40 -0700101 Class* klass = class_linker->FindClass(descriptor, class_loader.get());
Brian Carlstrome24fa612011-09-29 00:53:55 -0700102
103 size_t method_index = 0;
104 for (size_t i = 0; i < klass->NumDirectMethods(); i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800105 CheckMethod(klass->GetDirectMethod(i),
106 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700107 }
108 for (size_t i = 0; i < num_virtual_methods; i++, method_index++) {
Logan Chieneeb7edf2012-03-09 20:38:39 +0800109 CheckMethod(klass->GetVirtualMethod(i),
110 oat_class->GetOatMethod(method_index), dex_file);
Brian Carlstrome24fa612011-09-29 00:53:55 -0700111 }
112 }
113}
114
115} // namespace art