blob: 9ab1d7475bff8f88860b219b88e4dedfeaf69119 [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"
26#include "signal_catcher.h"
Ian Rogers10c5b782013-01-10 10:40:53 -080027#include "UniquePtr.h"
buzbeec143c552011-08-20 17:38:58 -070028#include "utils.h"
Brian Carlstrom700c8d32012-11-05 10:42:02 -080029#include "vector_output_stream.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070030
Brian Carlstromdb4d5402011-08-09 12:18:28 -070031namespace art {
32
Ian Rogers10c5b782013-01-10 10:40:53 -080033class ImageTest : public CommonTest {
34
35 protected:
36 virtual void SetUp() {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080037 ReserveImageSpace();
Ian Rogers10c5b782013-01-10 10:40:53 -080038 CommonTest::SetUp();
39 }
Ian Rogers10c5b782013-01-10 10:40:53 -080040};
Brian Carlstromdb4d5402011-08-09 12:18:28 -070041
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070042TEST_F(ImageTest, WriteRead) {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080043 ScratchFile tmp_elf;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070044 {
Brian Carlstrom700c8d32012-11-05 10:42:02 -080045 std::vector<uint8_t> oat_contents;
46 {
Brian Carlstrom96391602013-06-13 19:49:50 -070047 jobject class_loader = NULL;
48 ClassLinker* class_linker = Runtime::Current()->GetClassLinker();
49 compiler_driver_->CompileAll(class_loader, class_linker->GetBootClassPath());
50
Brian Carlstrom700c8d32012-11-05 10:42:02 -080051 ScopedObjectAccess soa(Thread::Current());
Brian Carlstrom700c8d32012-11-05 10:42:02 -080052 VectorOutputStream output_stream(tmp_elf.GetFilename(), oat_contents);
Brian Carlstrom96391602013-06-13 19:49:50 -070053 bool success_oat = OatWriter::Create(output_stream, class_linker->GetBootClassPath(),
54 0, 0, "", *compiler_driver_.get());
Brian Carlstrom700c8d32012-11-05 10:42:02 -080055 ASSERT_TRUE(success_oat);
Brian Carlstroma663ea52011-08-19 23:33:41 -070056
Brian Carlstrom3f47c122013-03-07 00:02:40 -080057 bool success_elf = compiler_driver_->WriteElf(GetTestAndroidRoot(),
Brian Carlstrom265091e2013-01-30 14:08:26 -080058 !kIsTargetBuild,
Brian Carlstrom96391602013-06-13 19:49:50 -070059 class_linker->GetBootClassPath(),
Brian Carlstrom265091e2013-01-30 14:08:26 -080060 oat_contents,
61 tmp_elf.GetFile());
62 ASSERT_TRUE(success_elf);
Ian Rogers00f7d0e2012-07-19 15:28:27 -070063 }
Ian Rogers0571d352011-11-03 19:51:38 -070064 }
Brian Carlstrom700c8d32012-11-05 10:42:02 -080065 // Workound bug that mcld::Linker::emit closes tmp_elf by reopening as tmp_oat.
66 UniquePtr<File> tmp_oat(OS::OpenFile(tmp_elf.GetFilename().c_str(), true, false));
67 ASSERT_TRUE(tmp_oat.get() != NULL);
Mathieu Chartier357e9be2012-08-01 11:00:14 -070068
Brian Carlstrome24fa612011-09-29 00:53:55 -070069 ScratchFile tmp_image;
jeffhao8161c032012-10-31 15:50:00 -070070 const uintptr_t requested_image_base = ART_BASE_ADDRESS;
71 {
Brian Carlstrom96391602013-06-13 19:49:50 -070072 ImageWriter writer(*compiler_driver_.get());
jeffhao8161c032012-10-31 15:50:00 -070073 bool success_image = writer.Write(tmp_image.GetFilename(), requested_image_base,
Brian Carlstrom96391602013-06-13 19:49:50 -070074 tmp_oat->GetPath(), tmp_oat->GetPath());
jeffhao8161c032012-10-31 15:50:00 -070075 ASSERT_TRUE(success_image);
Brian Carlstrom51c24672013-07-11 16:00:56 -070076 bool success_fixup = ElfFixup::Fixup(tmp_oat.get(), writer.GetOatDataBegin());
Brian Carlstrom700c8d32012-11-05 10:42:02 -080077 ASSERT_TRUE(success_fixup);
jeffhao8161c032012-10-31 15:50:00 -070078 }
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070079
80 {
Brian Carlstroma004aa92012-02-08 18:05:09 -080081 UniquePtr<File> file(OS::OpenFile(tmp_image.GetFilename().c_str(), false));
Elliott Hughes90a33692011-08-30 13:27:07 -070082 ASSERT_TRUE(file.get() != NULL);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070083 ImageHeader image_header;
84 file->ReadFully(&image_header, sizeof(image_header));
85 ASSERT_TRUE(image_header.IsValid());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070086
Ian Rogers1d54e732013-05-02 21:10:01 -070087 gc::Heap* heap = Runtime::Current()->GetHeap();
88 ASSERT_EQ(1U, heap->GetContinuousSpaces().size());
89 gc::space::ContinuousSpace* space = heap->GetContinuousSpaces().front();
Brian Carlstrom3320cf42011-10-04 14:58:28 -070090 ASSERT_FALSE(space->IsImageSpace());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070091 ASSERT_TRUE(space != NULL);
Ian Rogers1d54e732013-05-02 21:10:01 -070092 ASSERT_TRUE(space->IsDlMallocSpace());
Elliott Hughes76160052012-12-12 16:31:20 -080093 ASSERT_GE(sizeof(image_header) + space->Size(), static_cast<size_t>(file->GetLength()));
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070094 }
Brian Carlstrom8a436592011-08-15 21:27:23 -070095
Brian Carlstrom96391602013-06-13 19:49:50 -070096 ASSERT_TRUE(compiler_driver_->GetImageClasses() != NULL);
97 CompilerDriver::DescriptorSet image_classes(*compiler_driver_->GetImageClasses());
98
Mathieu Chartier0e4627e2012-10-23 16:13:36 -070099 // Need to delete the compiler since it has worker threads which are attached to runtime.
Ian Rogers1212a022013-03-04 10:48:41 -0800100 compiler_driver_.reset();
Mathieu Chartier0e4627e2012-10-23 16:13:36 -0700101
Ian Rogers10c5b782013-01-10 10:40:53 -0800102 // Tear down old runtime before making a new one, clearing out misc state.
103 runtime_.reset();
Brian Carlstroma004aa92012-02-08 18:05:09 -0800104 java_lang_dex_file_ = NULL;
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700105
Brian Carlstroma004aa92012-02-08 18:05:09 -0800106 UniquePtr<const DexFile> dex(DexFile::Open(GetLibCoreDexFileName(), GetLibCoreDexFileName()));
Elliott Hughes90a33692011-08-30 13:27:07 -0700107 ASSERT_TRUE(dex.get() != NULL);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700108
Ian Rogers10c5b782013-01-10 10:40:53 -0800109 // Remove the reservation of the memory for use to load the image.
Brian Carlstrom700c8d32012-11-05 10:42:02 -0800110 UnreserveImageSpace();
Ian Rogers10c5b782013-01-10 10:40:53 -0800111
Brian Carlstrom8a436592011-08-15 21:27:23 -0700112 Runtime::Options options;
Brian Carlstrom58ae9412011-10-04 00:56:06 -0700113 std::string image("-Ximage:");
114 image.append(tmp_image.GetFilename());
115 options.push_back(std::make_pair(image.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom8a436592011-08-15 21:27:23 -0700116
Ian Rogers00f7d0e2012-07-19 15:28:27 -0700117 if (!Runtime::Create(options, false)) {
118 LOG(FATAL) << "Failed to create runtime";
119 return;
120 }
121 runtime_.reset(Runtime::Current());
122 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
123 // give it away now and then switch to a more managable ScopedObjectAccess.
124 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
125 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes90a33692011-08-30 13:27:07 -0700126 ASSERT_TRUE(runtime_.get() != NULL);
Brian Carlstrom8a436592011-08-15 21:27:23 -0700127 class_linker_ = runtime_->GetClassLinker();
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700128
Ian Rogers1d54e732013-05-02 21:10:01 -0700129 gc::Heap* heap = Runtime::Current()->GetHeap();
130 ASSERT_EQ(2U, heap->GetContinuousSpaces().size());
131 ASSERT_TRUE(heap->GetContinuousSpaces()[0]->IsImageSpace());
132 ASSERT_FALSE(heap->GetContinuousSpaces()[0]->IsDlMallocSpace());
133 ASSERT_FALSE(heap->GetContinuousSpaces()[1]->IsImageSpace());
134 ASSERT_TRUE(heap->GetContinuousSpaces()[1]->IsDlMallocSpace());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700135
Ian Rogers1d54e732013-05-02 21:10:01 -0700136 gc::space::ImageSpace* image_space = heap->GetImageSpace();
Ian Rogers30fab402012-01-23 15:43:46 -0800137 byte* image_begin = image_space->Begin();
138 byte* image_end = image_space->End();
139 CHECK_EQ(requested_image_base, reinterpret_cast<uintptr_t>(image_begin));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800140 for (size_t i = 0; i < dex->NumClassDefs(); ++i) {
Brian Carlstromd2fbb2b2011-08-23 11:57:08 -0700141 const DexFile::ClassDef& class_def = dex->GetClassDef(i);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700142 const char* descriptor = dex->GetClassDescriptor(class_def);
Ian Rogers2dd0e2c2013-01-24 12:42:14 -0800143 mirror::Class* klass = class_linker_->FindSystemClass(descriptor);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700144 EXPECT_TRUE(klass != NULL) << descriptor;
Ian Rogers30fab402012-01-23 15:43:46 -0800145 EXPECT_LT(image_begin, reinterpret_cast<byte*>(klass)) << descriptor;
Brian Carlstrom96391602013-06-13 19:49:50 -0700146 if (image_classes.find(descriptor) != image_classes.end()) {
147 // image classes should be located before the end of the image.
148 EXPECT_LT(reinterpret_cast<byte*>(klass), image_end) << descriptor;
149 } else {
150 // non image classes should be in a space after the image.
151 EXPECT_GT(reinterpret_cast<byte*>(klass), image_end) << descriptor;
152 }
Elliott Hughes5f791332011-09-15 17:45:30 -0700153 EXPECT_EQ(*klass->GetRawLockWordAddress(), 0); // address should have been removed from monitor
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700154 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700155}
156
157} // namespace art