blob: afccb4acc0e38a18be5432f67b6146e373aaf098 [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 Carlstrom4a289ed2011-08-16 17:17:49 -070021#include "file.h"
22#include "image.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070023#include "image_writer.h"
Brian Carlstrome24fa612011-09-29 00:53:55 -070024#include "oat_writer.h"
Elliott Hughes42ee1422011-09-06 12:33:32 -070025#include "signal_catcher.h"
Mathieu Chartier7469ebf2012-09-24 16:28:36 -070026#include "gc/space.h"
buzbeec143c552011-08-20 17:38:58 -070027#include "utils.h"
Brian Carlstromdb4d5402011-08-09 12:18:28 -070028
Brian Carlstromdb4d5402011-08-09 12:18:28 -070029namespace art {
30
Brian Carlstromf734cf52011-08-17 16:28:14 -070031class ImageTest : public CommonTest {};
Brian Carlstromdb4d5402011-08-09 12:18:28 -070032
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070033TEST_F(ImageTest, WriteRead) {
Brian Carlstrome24fa612011-09-29 00:53:55 -070034 ScratchFile tmp_oat;
Ian Rogers00f7d0e2012-07-19 15:28:27 -070035 {
36 ScopedObjectAccess soa(Thread::Current());
37 std::vector<const DexFile*> dex_files;
38 dex_files.push_back(java_lang_dex_file_);
Brian Carlstrom28db0122012-10-18 16:20:41 -070039 bool success_oat = OatWriter::Create(tmp_oat.GetFile(), NULL, dex_files, 0, 0, "", *compiler_.get());
Ian Rogers00f7d0e2012-07-19 15:28:27 -070040 ASSERT_TRUE(success_oat);
Brian Carlstroma663ea52011-08-19 23:33:41 -070041
Ian Rogers00f7d0e2012-07-19 15:28:27 -070042 // Force all system classes into memory
43 for (size_t i = 0; i < java_lang_dex_file_->NumClassDefs(); ++i) {
44 const DexFile::ClassDef& class_def = java_lang_dex_file_->GetClassDef(i);
45 const char* descriptor = java_lang_dex_file_->GetClassDescriptor(class_def);
46 Class* klass = class_linker_->FindSystemClass(descriptor);
47 EXPECT_TRUE(klass != NULL) << descriptor;
48 }
Ian Rogers0571d352011-11-03 19:51:38 -070049 }
Mathieu Chartier357e9be2012-08-01 11:00:14 -070050
Brian Carlstromae826982011-11-09 01:33:42 -080051 ImageWriter writer(NULL);
Brian Carlstrome24fa612011-09-29 00:53:55 -070052 ScratchFile tmp_image;
Brian Carlstrom58ae9412011-10-04 00:56:06 -070053 const uintptr_t requested_image_base = 0x60000000;
54 bool success_image = writer.Write(tmp_image.GetFilename(), requested_image_base,
Brian Carlstromf5822582012-03-19 22:34:31 -070055 tmp_oat.GetFilename(), tmp_oat.GetFilename(),
56 *compiler_.get());
Brian Carlstrome24fa612011-09-29 00:53:55 -070057 ASSERT_TRUE(success_image);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070058
59 {
Brian Carlstroma004aa92012-02-08 18:05:09 -080060 UniquePtr<File> file(OS::OpenFile(tmp_image.GetFilename().c_str(), false));
Elliott Hughes90a33692011-08-30 13:27:07 -070061 ASSERT_TRUE(file.get() != NULL);
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070062 ImageHeader image_header;
63 file->ReadFully(&image_header, sizeof(image_header));
64 ASSERT_TRUE(image_header.IsValid());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070065
Elliott Hughesb3bd5f02012-03-08 21:05:27 -080066 Heap* heap = Runtime::Current()->GetHeap();
67 ASSERT_EQ(1U, heap->GetSpaces().size());
Mathieu Chartier2fde5332012-09-14 14:51:54 -070068 ContinuousSpace* space = heap->GetSpaces().front();
Brian Carlstrom3320cf42011-10-04 14:58:28 -070069 ASSERT_FALSE(space->IsImageSpace());
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070070 ASSERT_TRUE(space != NULL);
Mathieu Chartierb062fdd2012-07-03 09:51:48 -070071 ASSERT_TRUE(space->IsAllocSpace());
Brian Carlstrom4a289ed2011-08-16 17:17:49 -070072 ASSERT_GE(sizeof(image_header) + space->Size(), static_cast<size_t>(file->Length()));
73 }
Brian Carlstrom8a436592011-08-15 21:27:23 -070074
Brian Carlstroma663ea52011-08-19 23:33:41 -070075 // tear down old runtime before making a new one, clearing out misc state
Brian Carlstrom8a436592011-08-15 21:27:23 -070076 delete runtime_.release();
Brian Carlstroma004aa92012-02-08 18:05:09 -080077 java_lang_dex_file_ = NULL;
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070078
Brian Carlstroma004aa92012-02-08 18:05:09 -080079 UniquePtr<const DexFile> dex(DexFile::Open(GetLibCoreDexFileName(), GetLibCoreDexFileName()));
Elliott Hughes90a33692011-08-30 13:27:07 -070080 ASSERT_TRUE(dex.get() != NULL);
Brian Carlstrom8a436592011-08-15 21:27:23 -070081
Brian Carlstrom8a436592011-08-15 21:27:23 -070082 Runtime::Options options;
Brian Carlstrom58ae9412011-10-04 00:56:06 -070083 std::string image("-Ximage:");
84 image.append(tmp_image.GetFilename());
85 options.push_back(std::make_pair(image.c_str(), reinterpret_cast<void*>(NULL)));
Brian Carlstrom8a436592011-08-15 21:27:23 -070086
Ian Rogers00f7d0e2012-07-19 15:28:27 -070087 if (!Runtime::Create(options, false)) {
88 LOG(FATAL) << "Failed to create runtime";
89 return;
90 }
91 runtime_.reset(Runtime::Current());
92 // Runtime::Create acquired the mutator_lock_ that is normally given away when we Runtime::Start,
93 // give it away now and then switch to a more managable ScopedObjectAccess.
94 Thread::Current()->TransitionFromRunnableToSuspended(kNative);
95 ScopedObjectAccess soa(Thread::Current());
Elliott Hughes90a33692011-08-30 13:27:07 -070096 ASSERT_TRUE(runtime_.get() != NULL);
Brian Carlstrom8a436592011-08-15 21:27:23 -070097 class_linker_ = runtime_->GetClassLinker();
Brian Carlstrom9cff8e12011-08-18 16:47:29 -070098
Ian Rogers169c9a72011-11-13 20:13:17 -080099 ASSERT_TRUE(runtime_->GetJniDlsymLookupStub() != NULL);
Brian Carlstrom16192862011-09-12 17:50:06 -0700100
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800101 Heap* heap = Runtime::Current()->GetHeap();
102 ASSERT_EQ(2U, heap->GetSpaces().size());
103 ASSERT_TRUE(heap->GetSpaces()[0]->IsImageSpace());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700104 ASSERT_FALSE(heap->GetSpaces()[0]->IsAllocSpace());
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800105 ASSERT_FALSE(heap->GetSpaces()[1]->IsImageSpace());
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700106 ASSERT_TRUE(heap->GetSpaces()[1]->IsAllocSpace());
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700107
Brian Carlstromfddf6f62012-03-15 16:56:45 -0700108 ImageSpace* image_space = heap->GetImageSpace();
Ian Rogers30fab402012-01-23 15:43:46 -0800109 byte* image_begin = image_space->Begin();
110 byte* image_end = image_space->End();
111 CHECK_EQ(requested_image_base, reinterpret_cast<uintptr_t>(image_begin));
Elliott Hughesb3bd5f02012-03-08 21:05:27 -0800112 for (size_t i = 0; i < dex->NumClassDefs(); ++i) {
Brian Carlstromd2fbb2b2011-08-23 11:57:08 -0700113 const DexFile::ClassDef& class_def = dex->GetClassDef(i);
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700114 const char* descriptor = dex->GetClassDescriptor(class_def);
115 Class* klass = class_linker_->FindSystemClass(descriptor);
Brian Carlstroma663ea52011-08-19 23:33:41 -0700116 EXPECT_TRUE(klass != NULL) << descriptor;
Ian Rogers30fab402012-01-23 15:43:46 -0800117 EXPECT_LT(image_begin, reinterpret_cast<byte*>(klass)) << descriptor;
118 EXPECT_LT(reinterpret_cast<byte*>(klass), image_end) << descriptor;
Elliott Hughes5f791332011-09-15 17:45:30 -0700119 EXPECT_EQ(*klass->GetRawLockWordAddress(), 0); // address should have been removed from monitor
Brian Carlstrom9cff8e12011-08-18 16:47:29 -0700120 }
Brian Carlstromdb4d5402011-08-09 12:18:28 -0700121}
122
123} // namespace art