blob: d4be7c0cdc89b6c9bd0552b14e377d15c8117b2a [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 Carlstromdb4d5402011-08-09 12:18:28 -070016
Ian Rogers0cfe1fb2011-08-26 03:29:44 -070017#include <string>
18#include <vector>
19
Brian Carlstromdb4d5402011-08-09 12:18:28 -070020#include "common_test.h"
Brian Carlstrom51c24672013-07-11 16:00:56 -070021#include "compiler/elf_fixup.h"
22#include "compiler/image_writer.h"
23#include "compiler/oat_writer.h"
Ian Rogers1d54e732013-05-02 21:10:01 -070024#include "gc/space/image_space.h"
Brian Carlstrom51c24672013-07-11 16:00:56 -070025#include "image.h"
Ian Rogersd9c4fc92013-10-01 19:45:43 -070026#include "lock_word.h"
27#include "mirror/object-inl.h"
Brian Carlstrom51c24672013-07-11 16:00:56 -070028#include "signal_catcher.h"
Ian Rogers10c5b782013-01-10 10:40:53 -080029#include "UniquePtr.h"
buzbeec143c552011-08-20 17:38:58 -070030#include "utils.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080031#include "vector_output_stream.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070032
Brian Carlstromdb4d5402011-08-09 12:18:28 -070033namespace art {
34
Ian Rogers10c5b782013-01-10 10:40:53 -080035class ImageTest : public CommonTest {
Ian Rogers10c5b782013-01-10 10:40:53 -080036 protected:
37 virtual void SetUp() {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080038 ReserveImageSpace();
Ian Rogers10c5b782013-01-10 10:40:53 -080039 CommonTest::SetUp();
40 }
Ian Rogers10c5b782013-01-10 10:40:53 -080041};
Brian Carlstromdb4d5402011-08-09 12:18:28 -070042
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070043TEST_F(ImageTest, WriteRead) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080044 ScratchFile tmp_elf;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070045 {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080046 {
Brian Carlstrom96391602013-06-13 19:49:50 -070047 jobject class_loader = NULL;
48 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
Anwar Ghuloum6f28d912013-07-24 15:02:53 -070049 base::TimingLogger timings("ImageTest::WriteRead", false, false);
Ian Rogersbd2c19f2013-07-25 17:43:46 -070050 timings.StartSplit("CompileAll");
Ian Rogerse9869532013-08-03 14:56:04 -070051#if defined(ART_USE_PORTABLE_COMPILER)
52 // TODO: we disable this for portable so the test executes in a reasonable amount of time.
53 // We shouldn't need to do this.
Ian Rogers36e58b82013-08-09 09:09:41 -070054 runtime_->SetCompilerFilter(Runtime::kInterpretOnly);
Ian Rogerse9869532013-08-03 14:56:04 -070055#endif
Brian Carlstrom5f675322013-09-03 22:45:51 -070056 for (const DexFile* dex_file : class_linker->GetBootClassPath()) {
57 dex_file->EnableWrite();
58 }
Brian Carlstrom45602482013-07-21 22:07:55 -070059 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath(), timings);
Brian Carlstrom96391602013-06-13 19:49:50 -070060
Brian Carlstrom700c8d32012-11-05 10:42:02 -080061 ScopedObjectAccess soa(Thread::Current());
Brian Carlstromc50d8e12013-07-23 22:35:16 -070062 OatWriter oat_writer(class_linker->GetBootClassPath(),
63 0, 0, "", compiler_driver_.get());
64 bool success = compiler_driver_->WriteElf(GetTestAndroidRoot(),
65 !kIsTargetBuild,
66 class_linker->GetBootClassPath(),
67 oat_writer,
68 tmp_elf.GetFile());
69 ASSERT_TRUE(success);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070070 }
Ian Rogers0571d352011-11-03 19:51:38 -070071 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -080072 // Workound bug that mcld::Linker::emit closes tmp_elf by reopening as tmp_oat.
Brian Carlstrom7571e8b2013-08-12 17:04:14 -070073 UniquePtr<File> tmp_oat(OS::OpenFileReadWrite(tmp_elf.GetFilename().c_str()));
Brian Carlstrom700c8d32012-11-05 10:42:02 -080074 ASSERT_TRUE(tmp_oat.get() != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -070075
Brian Carlstrome24fa612011-09-29 00:53:55 -070076 ScratchFile tmp_image;
jeffhao8161c032012-10-31 15:50:00 -070077 const uintptr_t requested_image_base = ART_BASE_ADDRESS;
78 {
Brian Carlstrom96391602013-06-13 19:49:50 -070079 ImageWriter writer(*compiler_driver_.get());
jeffhao8161c032012-10-31 15:50:00 -070080 bool success_image = writer.Write(tmp_image.GetFilename(), requested_image_base,
Brian Carlstrom96391602013-06-13 19:49:50 -070081 tmp_oat->GetPath(), tmp_oat->GetPath());
jeffhao8161c032012-10-31 15:50:00 -070082 ASSERT_TRUE(success_image);
Brian Carlstrom51c24672013-07-11 16:00:56 -070083 bool success_fixup = ElfFixup::Fixup(tmp_oat.get(), writer.GetOatDataBegin());
Brian Carlstrom700c8d32012-11-05 10:42:02 -080084 ASSERT_TRUE(success_fixup);
jeffhao8161c032012-10-31 15:50:00 -070085 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070086
87 {
Brian Carlstrom7571e8b2013-08-12 17:04:14 -070088 UniquePtr<File> file(OS::OpenFileForReading(tmp_image.GetFilename().c_str()));
Elliott Hughes90a33692011-08-30 13:27:07 -070089 ASSERT_TRUE(file.get() != NULL);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070090 ImageHeader image_header;
91 file->ReadFully(&image_header, sizeof(image_header));
92 ASSERT_TRUE(image_header.IsValid());
Mathieu Chartier31e89252013-08-28 11:29:12 -070093 ASSERT_GE(image_header.GetImageBitmapOffset(), sizeof(image_header));
94 ASSERT_NE(0U, image_header.GetImageBitmapSize());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070095
Ian Rogers1d54e732013-05-02 21:10:01 -070096 gc::Heap* heap = Runtime::Current()->GetHeap();
97 ASSERT_EQ(1U, heap->GetContinuousSpaces().size());
98 gc::space::ContinuousSpace* space = heap->GetContinuousSpaces().front();
Brian Carlstrom3320cf42011-10-04 14:58:28 -070099 ASSERT_FALSE(space->IsImageSpace());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -0700100 ASSERT_TRUE(space != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -0700101 ASSERT_TRUE(space->IsDlMallocSpace());
Elliott Hughes76160052012-12-12 16:31:20 -0800102 ASSERT_GE(sizeof(image_header) + space->Size(), static_cast<size_t>(file->GetLength()));
Brian Carlstrom4a289ed2011-08-16 17:17:49 -0700103 }
Brian Carlstrom8a436592011-08-15 21:27:23 -0700104
Brian Carlstrom96391602013-06-13 19:49:50 -0700105 ASSERT_TRUE(compiler_driver_->GetImageClasses() != NULL);
106 CompilerDriver::DescriptorSet image_classes(*compiler_driver_->GetImageClasses());
107
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700108 // Need to delete the compiler since it has worker threads which are attached to runtime.
Ian Rogers1212a022013-03-04 10:48:41 -0800109 compiler_driver_.reset();
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700110
Ian Rogers10c5b782013-01-10 10:40:53 -0800111 // Tear down old runtime before making a new one, clearing out misc state.
112 runtime_.reset();
Brian Carlstroma004aa92012-02-08 18:05:09 -0800113 java_lang_dex_file_ = NULL;
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700114
Brian Carlstroma004aa92012-02-08 18:05:09 -0800115 UniquePtr<const DexFile> dex(DexFile::Open(GetLibCoreDexFileName(), GetLibCoreDexFileName()));
Elliott Hughes90a33692011-08-30 13:27:07 -0700116 ASSERT_TRUE(dex.get() != NULL);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700117
Ian Rogers10c5b782013-01-10 10:40:53 -0800118 // Remove the reservation of the memory for use to load the image.
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800119 UnreserveImageSpace();
Ian Rogers10c5b782013-01-10 10:40:53 -0800120
Brian Carlstrom8a436592011-08-15 21:27:23 -0700121 Runtime::Options options;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700122 std::string image("-Ximage:");
123 image.append(tmp_image.GetFilename());
124 options.push_back(std::make_pair(image.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom8a436592011-08-15 21:27:23 -0700125
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700126 if (!Runtime::Create(options, false)) {
127 LOG(FATAL) << "Failed to create runtime";
128 return;
129 }
130 runtime_.reset(Runtime::Current());
131 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
132 // give it away now and then switch to a more managable ScopedObjectAccess.
133 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
134 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes90a33692011-08-30 13:27:07 -0700135 ASSERT_TRUE(runtime_.get() != NULL);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700136 class_linker_ = runtime_->GetClassLinker();
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700137
Ian Rogers1d54e732013-05-02 21:10:01 -0700138 gc::Heap* heap = Runtime::Current()->GetHeap();
139 ASSERT_EQ(2U, heap->GetContinuousSpaces().size());
140 ASSERT_TRUE(heap->GetContinuousSpaces()[0]->IsImageSpace());
141 ASSERT_FALSE(heap->GetContinuousSpaces()[0]->IsDlMallocSpace());
142 ASSERT_FALSE(heap->GetContinuousSpaces()[1]->IsImageSpace());
143 ASSERT_TRUE(heap->GetContinuousSpaces()[1]->IsDlMallocSpace());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700144
Ian Rogers1d54e732013-05-02 21:10:01 -0700145 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Mathieu Chartier31e89252013-08-28 11:29:12 -0700146 image_space->VerifyImageAllocations();
Ian Rogers30fab402012-01-23 15:43:46 -0800147 byte* image_begin = image_space->Begin();
148 byte* image_end = image_space->End();
149 CHECK_EQ(requested_image_base, reinterpret_cast<uintptr_t>(image_begin));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800150 for (size_t i = 0; i < dex->NumClassDefs(); ++i) {
Brian Carlstromd2fbb2b2011-08-23 11:57:08 -0700151 const DexFile::ClassDef& class_def = dex->GetClassDef(i);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700152 const char* descriptor = dex->GetClassDescriptor(class_def);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800153 mirror::Class* klass = class_linker_->FindSystemClass(descriptor);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700154 EXPECT_TRUE(klass != NULL) << descriptor;
Ian Rogers30fab402012-01-23 15:43:46 -0800155 EXPECT_LT(image_begin, reinterpret_cast<byte*>(klass)) << descriptor;
Brian Carlstrom96391602013-06-13 19:49:50 -0700156 if (image_classes.find(descriptor) != image_classes.end()) {
157 // image classes should be located before the end of the image.
158 EXPECT_LT(reinterpret_cast<byte*>(klass), image_end) << descriptor;
159 } else {
160 // non image classes should be in a space after the image.
161 EXPECT_GT(reinterpret_cast<byte*>(klass), image_end) << descriptor;
162 }
Ian Rogersd9c4fc92013-10-01 19:45:43 -0700163 EXPECT_TRUE(Monitor::IsValidLockWord(klass->GetLockWord()));
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700164 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700165}
166
Brian Carlstrom179486a2013-09-03 11:51:42 -0700167TEST_F(ImageTest, ImageHeaderIsValid) {
168 uint32_t image_begin = ART_BASE_ADDRESS;
169 uint32_t image_size_ = 16 * KB;
170 uint32_t image_bitmap_offset = 0;
171 uint32_t image_bitmap_size = 0;
172 uint32_t image_roots = ART_BASE_ADDRESS + (1 * KB);
173 uint32_t oat_checksum = 0;
174 uint32_t oat_file_begin = ART_BASE_ADDRESS + (4 * KB); // page aligned
175 uint32_t oat_data_begin = ART_BASE_ADDRESS + (8 * KB); // page aligned
176 uint32_t oat_data_end = ART_BASE_ADDRESS + (9 * KB);
177 uint32_t oat_file_end = ART_BASE_ADDRESS + (10 * KB);
178 ImageHeader image_header(image_begin,
179 image_size_,
180 image_bitmap_offset,
181 image_bitmap_size,
182 image_roots,
183 oat_checksum,
184 oat_file_begin,
185 oat_data_begin,
186 oat_data_end,
187 oat_file_end);
188 ASSERT_TRUE(image_header.IsValid());
189
190 char* magic = const_cast<char*>(image_header.GetMagic());
191 strcpy(magic, ""); // bad magic
192 ASSERT_FALSE(image_header.IsValid());
193 strcpy(magic, "art\n000"); // bad version
194 ASSERT_FALSE(image_header.IsValid());
195}
196
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700197} // namespace art