blob: 15a1aa4d10326497b729375602b28950b752925c [file] [log] [blame]
Richard Uhler66d874d2015-01-15 09:37:19 -08001/*
2 * Copyright (C) 2014 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 "oat_file_assistant.h"
18
19#include <algorithm>
20#include <fstream>
21#include <string>
22#include <vector>
23#include <sys/param.h>
24
25#include <backtrace/BacktraceMap.h>
26#include <gtest/gtest.h>
27
Mathieu Chartierc7853442015-03-27 14:35:38 -070028#include "art_field-inl.h"
Vladimir Marko3481ba22015-04-13 12:22:36 +010029#include "class_linker-inl.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080030#include "common_runtime_test.h"
Andreas Gampebb9c6b12015-03-29 13:56:36 -070031#include "compiler_callbacks.h"
Richard Uhlerf16d5722015-05-11 09:32:47 -070032#include "gc/space/image_space.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080033#include "mem_map.h"
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -070034#include "oat_file_manager.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080035#include "os.h"
Richard Uhler23cedd22015-04-08 13:17:29 -070036#include "scoped_thread_state_change.h"
Richard Uhler66d874d2015-01-15 09:37:19 -080037#include "thread-inl.h"
38#include "utils.h"
39
40namespace art {
41
42class OatFileAssistantTest : public CommonRuntimeTest {
43 public:
44 virtual void SetUp() {
45 ReserveImageSpace();
46 CommonRuntimeTest::SetUp();
47
48 // Create a scratch directory to work from.
49 scratch_dir_ = android_data_ + "/OatFileAssistantTest";
50 ASSERT_EQ(0, mkdir(scratch_dir_.c_str(), 0700));
51
Richard Uhler63434112015-03-16 14:32:16 -070052 // Create a subdirectory in scratch for odex files.
53 odex_oat_dir_ = scratch_dir_ + "/oat";
54 ASSERT_EQ(0, mkdir(odex_oat_dir_.c_str(), 0700));
55
56 odex_dir_ = odex_oat_dir_ + "/" + std::string(GetInstructionSetString(kRuntimeISA));
57 ASSERT_EQ(0, mkdir(odex_dir_.c_str(), 0700));
58
Richard Uhler66d874d2015-01-15 09:37:19 -080059
60 // Verify the environment is as we expect
61 uint32_t checksum;
62 std::string error_msg;
63 ASSERT_TRUE(OS::FileExists(GetImageFile().c_str()))
64 << "Expected pre-compiled boot image to be at: " << GetImageFile();
65 ASSERT_TRUE(OS::FileExists(GetDexSrc1().c_str()))
66 << "Expected dex file to be at: " << GetDexSrc1();
67 ASSERT_TRUE(OS::FileExists(GetStrippedDexSrc1().c_str()))
68 << "Expected stripped dex file to be at: " << GetStrippedDexSrc1();
Igor Murashkinb1d8c312015-08-04 11:18:43 -070069 ASSERT_FALSE(DexFile::GetChecksum(GetStrippedDexSrc1().c_str(), &checksum, &error_msg))
Richard Uhler66d874d2015-01-15 09:37:19 -080070 << "Expected stripped dex file to be stripped: " << GetStrippedDexSrc1();
Richard Uhler66d874d2015-01-15 09:37:19 -080071 ASSERT_TRUE(OS::FileExists(GetDexSrc2().c_str()))
72 << "Expected dex file to be at: " << GetDexSrc2();
Richard Uhler67ff7d12015-05-14 13:21:13 -070073
74 // GetMultiDexSrc2 should have the same primary dex checksum as
75 // GetMultiDexSrc1, but a different secondary dex checksum.
76 std::vector<std::unique_ptr<const DexFile>> multi1;
77 ASSERT_TRUE(DexFile::Open(GetMultiDexSrc1().c_str(),
Igor Murashkinb1d8c312015-08-04 11:18:43 -070078 GetMultiDexSrc1().c_str(), &error_msg, &multi1)) << error_msg;
Richard Uhler67ff7d12015-05-14 13:21:13 -070079 ASSERT_GT(multi1.size(), 1u);
80
81 std::vector<std::unique_ptr<const DexFile>> multi2;
82 ASSERT_TRUE(DexFile::Open(GetMultiDexSrc2().c_str(),
Igor Murashkinb1d8c312015-08-04 11:18:43 -070083 GetMultiDexSrc2().c_str(), &error_msg, &multi2)) << error_msg;
Richard Uhler67ff7d12015-05-14 13:21:13 -070084 ASSERT_GT(multi2.size(), 1u);
85
86 ASSERT_EQ(multi1[0]->GetLocationChecksum(), multi2[0]->GetLocationChecksum());
87 ASSERT_NE(multi1[1]->GetLocationChecksum(), multi2[1]->GetLocationChecksum());
Richard Uhler66d874d2015-01-15 09:37:19 -080088 }
89
90 virtual void SetUpRuntimeOptions(RuntimeOptions* options) {
Richard Uhler892fc962015-03-10 16:57:05 +000091 // options->push_back(std::make_pair("-verbose:oat", nullptr));
Richard Uhler66d874d2015-01-15 09:37:19 -080092
93 // Set up the image location.
94 options->push_back(std::make_pair("-Ximage:" + GetImageLocation(),
95 nullptr));
96 // Make sure compilercallbacks are not set so that relocation will be
97 // enabled.
Andreas Gampebb9c6b12015-03-29 13:56:36 -070098 callbacks_.reset();
Richard Uhler66d874d2015-01-15 09:37:19 -080099 }
100
101 virtual void PreRuntimeCreate() {
102 UnreserveImageSpace();
103 }
104
105 virtual void PostRuntimeCreate() {
106 ReserveImageSpace();
107 }
108
109 virtual void TearDown() {
Richard Uhler63434112015-03-16 14:32:16 -0700110 ClearDirectory(odex_dir_.c_str());
111 ASSERT_EQ(0, rmdir(odex_dir_.c_str()));
112
113 ClearDirectory(odex_oat_dir_.c_str());
114 ASSERT_EQ(0, rmdir(odex_oat_dir_.c_str()));
Richard Uhler66d874d2015-01-15 09:37:19 -0800115
116 ClearDirectory(scratch_dir_.c_str());
117 ASSERT_EQ(0, rmdir(scratch_dir_.c_str()));
118
119 CommonRuntimeTest::TearDown();
120 }
121
122 void Copy(std::string src, std::string dst) {
123 std::ifstream src_stream(src, std::ios::binary);
124 std::ofstream dst_stream(dst, std::ios::binary);
125
126 dst_stream << src_stream.rdbuf();
127 }
128
129 // Returns the directory where the pre-compiled core.art can be found.
130 // TODO: We should factor out this into common tests somewhere rather than
131 // re-hardcoding it here (This was copied originally from the elf writer
132 // test).
133 std::string GetImageDirectory() {
134 if (IsHost()) {
135 const char* host_dir = getenv("ANDROID_HOST_OUT");
Mathieu Chartier2cebb242015-04-21 16:50:40 -0700136 CHECK(host_dir != nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800137 return std::string(host_dir) + "/framework";
138 } else {
139 return std::string("/data/art-test");
140 }
141 }
142
143 std::string GetImageLocation() {
144 return GetImageDirectory() + "/core.art";
145 }
146
147 std::string GetImageFile() {
148 return GetImageDirectory() + "/" + GetInstructionSetString(kRuntimeISA)
149 + "/core.art";
150 }
151
152 std::string GetDexSrc1() {
153 return GetTestDexFileName("Main");
154 }
155
156 // Returns the path to a dex file equivalent to GetDexSrc1, but with the dex
157 // file stripped.
158 std::string GetStrippedDexSrc1() {
159 return GetTestDexFileName("MainStripped");
160 }
161
162 std::string GetMultiDexSrc1() {
163 return GetTestDexFileName("MultiDex");
164 }
165
Richard Uhler67ff7d12015-05-14 13:21:13 -0700166 // Returns the path to a multidex file equivalent to GetMultiDexSrc2, but
167 // with the contents of the secondary dex file changed.
168 std::string GetMultiDexSrc2() {
169 return GetTestDexFileName("MultiDexModifiedSecondary");
170 }
171
Richard Uhler66d874d2015-01-15 09:37:19 -0800172 std::string GetDexSrc2() {
173 return GetTestDexFileName("Nested");
174 }
175
176 // Scratch directory, for dex and odex files (oat files will go in the
177 // dalvik cache).
178 std::string GetScratchDir() {
179 return scratch_dir_;
180 }
181
Richard Uhler63434112015-03-16 14:32:16 -0700182 // Odex directory is the subdirectory in the scratch directory where odex
Richard Uhler66d874d2015-01-15 09:37:19 -0800183 // files should be located.
Richard Uhler63434112015-03-16 14:32:16 -0700184 std::string GetOdexDir() {
185 return odex_dir_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800186 }
187
Richard Uhler93aa2102015-08-10 14:47:41 -0700188 // Generate a non-PIC odex file for the purposes of test.
Richard Uhler94f5bda2015-07-22 08:25:11 -0700189 // The generated odex file will be un-relocated.
Richard Uhler66d874d2015-01-15 09:37:19 -0800190 void GenerateOdexForTest(const std::string& dex_location,
Andreas Gampe29d38e72016-03-23 15:31:51 +0000191 const std::string& odex_location,
192 CompilerFilter::Filter filter) {
Richard Uhler93aa2102015-08-10 14:47:41 -0700193 // To generate an un-relocated odex file, we first compile a relocated
194 // version of the file, then manually call patchoat to make it look as if
195 // it is unrelocated.
196 std::string relocated_odex_location = odex_location + ".relocated";
197 std::vector<std::string> args;
198 args.push_back("--dex-file=" + dex_location);
199 args.push_back("--oat-file=" + relocated_odex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000200 args.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(filter));
Richard Uhler93aa2102015-08-10 14:47:41 -0700201
202 // We need to use the quick compiler to generate non-PIC code, because
203 // the optimizing compiler always generates PIC.
204 args.push_back("--compiler-backend=Quick");
Andreas Gampe29d38e72016-03-23 15:31:51 +0000205 args.push_back("--include-patch-information");
Richard Uhler93aa2102015-08-10 14:47:41 -0700206
207 std::string error_msg;
208 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
209
210 // Use patchoat to unrelocate the relocated odex file.
211 Runtime* runtime = Runtime::Current();
212 std::vector<std::string> argv;
213 argv.push_back(runtime->GetPatchoatExecutable());
214 argv.push_back("--instruction-set=" + std::string(GetInstructionSetString(kRuntimeISA)));
215 argv.push_back("--input-oat-file=" + relocated_odex_location);
216 argv.push_back("--output-oat-file=" + odex_location);
217 argv.push_back("--base-offset-delta=0x00008000");
218 std::string command_line(Join(argv, ' '));
219 ASSERT_TRUE(Exec(argv, &error_msg)) << error_msg;
220
221 // Verify the odex file was generated as expected and really is
222 // unrelocated.
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800223 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
224 odex_location.c_str(),
225 nullptr,
226 nullptr,
227 false,
228 /*low_4gb*/false,
229 dex_location.c_str(),
230 &error_msg));
Richard Uhler93aa2102015-08-10 14:47:41 -0700231 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
Nicolas Geoffray845e5062016-03-23 06:42:05 +0000232 EXPECT_FALSE(odex_file->IsPic());
Richard Uhlerd1537b52016-03-29 13:27:41 -0700233 EXPECT_TRUE(odex_file->HasPatchInfo());
Andreas Gampe29d38e72016-03-23 15:31:51 +0000234 EXPECT_EQ(filter, odex_file->GetCompilerFilter());
235
236 if (CompilerFilter::IsCompilationEnabled(filter)) {
237 const std::vector<gc::space::ImageSpace*> image_spaces =
238 runtime->GetHeap()->GetBootImageSpaces();
239 ASSERT_TRUE(!image_spaces.empty() && image_spaces[0] != nullptr);
240 const ImageHeader& image_header = image_spaces[0]->GetImageHeader();
241 const OatHeader& oat_header = odex_file->GetOatHeader();
Jeff Haob11ffb72016-04-07 15:40:54 -0700242 uint32_t combined_checksum = OatFileAssistant::CalculateCombinedImageChecksum();
243 EXPECT_EQ(combined_checksum, oat_header.GetImageFileLocationOatChecksum());
Andreas Gampe29d38e72016-03-23 15:31:51 +0000244 EXPECT_NE(reinterpret_cast<uintptr_t>(image_header.GetOatDataBegin()),
245 oat_header.GetImageFileLocationOatDataBegin());
246 EXPECT_NE(image_header.GetPatchDelta(), oat_header.GetImagePatchDelta());
247 }
Richard Uhler93aa2102015-08-10 14:47:41 -0700248 }
249
250 void GeneratePicOdexForTest(const std::string& dex_location,
Andreas Gampe29d38e72016-03-23 15:31:51 +0000251 const std::string& odex_location,
252 CompilerFilter::Filter filter) {
Richard Uhler93aa2102015-08-10 14:47:41 -0700253 // Temporarily redirect the dalvik cache so dex2oat doesn't find the
254 // relocated image file.
Richard Uhler66d874d2015-01-15 09:37:19 -0800255 std::string android_data_tmp = GetScratchDir() + "AndroidDataTmp";
256 setenv("ANDROID_DATA", android_data_tmp.c_str(), 1);
257 std::vector<std::string> args;
258 args.push_back("--dex-file=" + dex_location);
259 args.push_back("--oat-file=" + odex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000260 args.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(filter));
Richard Uhler93aa2102015-08-10 14:47:41 -0700261 args.push_back("--compile-pic");
Richard Uhler66d874d2015-01-15 09:37:19 -0800262 args.push_back("--runtime-arg");
263 args.push_back("-Xnorelocate");
264 std::string error_msg;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700265 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800266 setenv("ANDROID_DATA", android_data_.c_str(), 1);
Richard Uhler94f5bda2015-07-22 08:25:11 -0700267
268 // Verify the odex file was generated as expected.
Mathieu Chartier0b4cbd02016-03-08 16:49:58 -0800269 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
270 odex_location.c_str(),
271 nullptr,
272 nullptr,
273 false,
274 /*low_4gb*/false,
275 dex_location.c_str(),
276 &error_msg));
Richard Uhler94f5bda2015-07-22 08:25:11 -0700277 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
Richard Uhler93aa2102015-08-10 14:47:41 -0700278 EXPECT_TRUE(odex_file->IsPic());
Andreas Gampe29d38e72016-03-23 15:31:51 +0000279 EXPECT_EQ(filter, odex_file->GetCompilerFilter());
Calin Juravleb077e152016-02-18 18:47:37 +0000280 }
David Brazdilce4b0ba2016-01-28 15:05:49 +0000281
Richard Uhlerd1537b52016-03-29 13:27:41 -0700282 // Generate a non-PIC odex file without patch information for the purposes
283 // of test. The generated odex file will be un-relocated.
284 // TODO: This won't work correctly if we depend on the boot image being
285 // randomly relocated by a non-zero amount. We should have a better solution
286 // for avoiding that flakiness and duplicating code to generate odex and oat
287 // files for test.
288 void GenerateNoPatchOdexForTest(const std::string& dex_location,
289 const std::string& odex_location,
290 CompilerFilter::Filter filter) {
291 // Temporarily redirect the dalvik cache so dex2oat doesn't find the
292 // relocated image file.
293 std::string android_data_tmp = GetScratchDir() + "AndroidDataTmp";
294 setenv("ANDROID_DATA", android_data_tmp.c_str(), 1);
295 std::vector<std::string> args;
296 args.push_back("--dex-file=" + dex_location);
297 args.push_back("--oat-file=" + odex_location);
298 args.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(filter));
299 args.push_back("--runtime-arg");
300 args.push_back("-Xnorelocate");
301 std::string error_msg;
302 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
303 setenv("ANDROID_DATA", android_data_.c_str(), 1);
304
305 // Verify the odex file was generated as expected.
306 std::unique_ptr<OatFile> odex_file(OatFile::Open(odex_location.c_str(),
307 odex_location.c_str(),
308 nullptr,
309 nullptr,
310 false,
311 /*low_4gb*/false,
312 dex_location.c_str(),
313 &error_msg));
314 ASSERT_TRUE(odex_file.get() != nullptr) << error_msg;
315 EXPECT_FALSE(odex_file->IsPic());
316 EXPECT_FALSE(odex_file->HasPatchInfo());
317 EXPECT_EQ(filter, odex_file->GetCompilerFilter());
318 }
319
Richard Uhler66d874d2015-01-15 09:37:19 -0800320 private:
321 // Reserve memory around where the image will be loaded so other memory
322 // won't conflict when it comes time to load the image.
323 // This can be called with an already loaded image to reserve the space
324 // around it.
325 void ReserveImageSpace() {
326 MemMap::Init();
327
328 // Ensure a chunk of memory is reserved for the image space.
329 uintptr_t reservation_start = ART_BASE_ADDRESS + ART_BASE_ADDRESS_MIN_DELTA;
330 uintptr_t reservation_end = ART_BASE_ADDRESS + ART_BASE_ADDRESS_MAX_DELTA
Hiroshi Yamauchi3dbf2342015-03-17 16:01:11 -0700331 // Include the main space that has to come right after the
332 // image in case of the GSS collector.
333 + 384 * MB;
Richard Uhler66d874d2015-01-15 09:37:19 -0800334
Richard Uhler66d874d2015-01-15 09:37:19 -0800335 std::unique_ptr<BacktraceMap> map(BacktraceMap::Create(getpid(), true));
336 ASSERT_TRUE(map.get() != nullptr) << "Failed to build process map";
337 for (BacktraceMap::const_iterator it = map->begin();
338 reservation_start < reservation_end && it != map->end(); ++it) {
Richard Uhler3efe9792015-03-30 16:18:03 -0700339 ReserveImageSpaceChunk(reservation_start, std::min(it->start, reservation_end));
340 reservation_start = std::max(reservation_start, it->end);
341 }
342 ReserveImageSpaceChunk(reservation_start, reservation_end);
343 }
Richard Uhler66d874d2015-01-15 09:37:19 -0800344
Richard Uhler3efe9792015-03-30 16:18:03 -0700345 // Reserve a chunk of memory for the image space in the given range.
346 // Only has effect for chunks with a positive number of bytes.
347 void ReserveImageSpaceChunk(uintptr_t start, uintptr_t end) {
348 if (start < end) {
349 std::string error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800350 image_reservation_.push_back(std::unique_ptr<MemMap>(
351 MemMap::MapAnonymous("image reservation",
Richard Uhler3efe9792015-03-30 16:18:03 -0700352 reinterpret_cast<uint8_t*>(start), end - start,
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700353 PROT_NONE, false, false, &error_msg)));
Richard Uhler66d874d2015-01-15 09:37:19 -0800354 ASSERT_TRUE(image_reservation_.back().get() != nullptr) << error_msg;
355 LOG(INFO) << "Reserved space for image " <<
356 reinterpret_cast<void*>(image_reservation_.back()->Begin()) << "-" <<
357 reinterpret_cast<void*>(image_reservation_.back()->End());
Richard Uhler66d874d2015-01-15 09:37:19 -0800358 }
359 }
360
361
362 // Unreserve any memory reserved by ReserveImageSpace. This should be called
363 // before the image is loaded.
364 void UnreserveImageSpace() {
365 image_reservation_.clear();
366 }
367
368 std::string scratch_dir_;
Richard Uhler63434112015-03-16 14:32:16 -0700369 std::string odex_oat_dir_;
370 std::string odex_dir_;
Richard Uhler66d874d2015-01-15 09:37:19 -0800371 std::vector<std::unique_ptr<MemMap>> image_reservation_;
372};
373
374class OatFileAssistantNoDex2OatTest : public OatFileAssistantTest {
375 public:
376 virtual void SetUpRuntimeOptions(RuntimeOptions* options) {
377 OatFileAssistantTest::SetUpRuntimeOptions(options);
378 options->push_back(std::make_pair("-Xnodex2oat", nullptr));
379 }
380};
381
382// Generate an oat file for the purposes of test, as opposed to testing
383// generation of oat files.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000384static void GenerateOatForTest(const char* dex_location, CompilerFilter::Filter filter) {
385 // Use an oat file assistant to find the proper oat location.
386 OatFileAssistant ofa(dex_location, kRuntimeISA, false, false);
387 const std::string* oat_location = ofa.OatFileName();
388 ASSERT_TRUE(oat_location != nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800389
Andreas Gampe29d38e72016-03-23 15:31:51 +0000390 std::vector<std::string> args;
391 args.push_back("--dex-file=" + std::string(dex_location));
392 args.push_back("--oat-file=" + *oat_location);
393 args.push_back("--compiler-filter=" + CompilerFilter::NameOfFilter(filter));
394 args.push_back("--runtime-arg");
395 args.push_back("-Xnorelocate");
Richard Uhler66d874d2015-01-15 09:37:19 -0800396 std::string error_msg;
Andreas Gampe29d38e72016-03-23 15:31:51 +0000397 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
398
399 // Verify the oat file was generated as expected.
400 std::unique_ptr<OatFile> oat_file(OatFile::Open(oat_location->c_str(),
401 oat_location->c_str(),
402 nullptr,
403 nullptr,
404 false,
405 /*low_4gb*/false,
406 dex_location,
407 &error_msg));
408 ASSERT_TRUE(oat_file.get() != nullptr) << error_msg;
409 EXPECT_EQ(filter, oat_file->GetCompilerFilter());
Richard Uhler66d874d2015-01-15 09:37:19 -0800410}
411
412// Case: We have a DEX file, but no OAT file for it.
Richard Uhler95abd042015-03-24 09:51:28 -0700413// Expect: The status is kDex2OatNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -0800414TEST_F(OatFileAssistantTest, DexNoOat) {
415 std::string dex_location = GetScratchDir() + "/DexNoOat.jar";
416 Copy(GetDexSrc1(), dex_location);
417
Andreas Gampe29d38e72016-03-23 15:31:51 +0000418 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800419
Andreas Gampe29d38e72016-03-23 15:31:51 +0000420 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
421 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
422 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
423 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
424 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
425 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeedProfile));
426 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
427 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -0800428
429 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
430 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
431 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
432 EXPECT_FALSE(oat_file_assistant.OdexFileNeedsRelocation());
433 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
Richard Uhler95abd042015-03-24 09:51:28 -0700434 EXPECT_EQ(OatFileAssistant::kOatOutOfDate, oat_file_assistant.OdexFileStatus());
Richard Uhler66d874d2015-01-15 09:37:19 -0800435 EXPECT_FALSE(oat_file_assistant.OatFileExists());
436 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
437 EXPECT_FALSE(oat_file_assistant.OatFileNeedsRelocation());
438 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler95abd042015-03-24 09:51:28 -0700439 EXPECT_EQ(OatFileAssistant::kOatOutOfDate, oat_file_assistant.OatFileStatus());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700440 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800441}
442
443// Case: We have no DEX file and no OAT file.
Richard Uhler9b994ea2015-06-24 08:44:19 -0700444// Expect: Status is kNoDexOptNeeded. Loading should fail, but not crash.
Richard Uhler66d874d2015-01-15 09:37:19 -0800445TEST_F(OatFileAssistantTest, NoDexNoOat) {
446 std::string dex_location = GetScratchDir() + "/NoDexNoOat.jar";
447
Andreas Gampe29d38e72016-03-23 15:31:51 +0000448 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -0800449
Andreas Gampe29d38e72016-03-23 15:31:51 +0000450 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
451 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler9b994ea2015-06-24 08:44:19 -0700452 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
453
454 // Trying to make the oat file up to date should not fail or crash.
455 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700456 EXPECT_EQ(OatFileAssistant::kUpdateSucceeded, oat_file_assistant.MakeUpToDate(&error_msg));
Richard Uhler9b994ea2015-06-24 08:44:19 -0700457
458 // Trying to get the best oat file should fail, but not crash.
Richard Uhler66d874d2015-01-15 09:37:19 -0800459 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
460 EXPECT_EQ(nullptr, oat_file.get());
461}
462
463// Case: We have a DEX file and up-to-date OAT file for it.
Richard Uhler95abd042015-03-24 09:51:28 -0700464// Expect: The status is kNoDexOptNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -0800465TEST_F(OatFileAssistantTest, OatUpToDate) {
466 std::string dex_location = GetScratchDir() + "/OatUpToDate.jar";
467 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000468 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800469
Andreas Gampe29d38e72016-03-23 15:31:51 +0000470 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800471
Andreas Gampe29d38e72016-03-23 15:31:51 +0000472 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
473 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
474 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
475 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
476 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
477 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
478 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
479 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kEverything));
480
Richard Uhler66d874d2015-01-15 09:37:19 -0800481 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
482 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
483 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
484 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
485 EXPECT_TRUE(oat_file_assistant.OatFileExists());
486 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
487 EXPECT_FALSE(oat_file_assistant.OatFileNeedsRelocation());
488 EXPECT_TRUE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler95abd042015-03-24 09:51:28 -0700489 EXPECT_EQ(OatFileAssistant::kOatUpToDate, oat_file_assistant.OatFileStatus());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700490 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800491}
492
Andreas Gampe29d38e72016-03-23 15:31:51 +0000493// Case: We have a DEX file and speed-profile OAT file for it.
494// Expect: The status is kNoDexOptNeeded if the profile hasn't changed.
495TEST_F(OatFileAssistantTest, ProfileOatUpToDate) {
496 std::string dex_location = GetScratchDir() + "/ProfileOatUpToDate.jar";
497 Copy(GetDexSrc1(), dex_location);
498 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeedProfile);
499
500 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
501
502 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
503 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeedProfile));
504 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
505 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
506
507 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
508 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
509 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
510 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
511 EXPECT_TRUE(oat_file_assistant.OatFileExists());
512 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
513 EXPECT_FALSE(oat_file_assistant.OatFileNeedsRelocation());
514 EXPECT_TRUE(oat_file_assistant.OatFileIsUpToDate());
515 EXPECT_EQ(OatFileAssistant::kOatUpToDate, oat_file_assistant.OatFileStatus());
516 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
517}
518
519// Case: We have a DEX file and speed-profile OAT file for it.
520// Expect: The status is kNoDex2OatNeeded if the profile has changed.
521TEST_F(OatFileAssistantTest, ProfileOatOutOfDate) {
522 std::string dex_location = GetScratchDir() + "/ProfileOatOutOfDate.jar";
523 Copy(GetDexSrc1(), dex_location);
524 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeedProfile);
525
526 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, true, false);
527
528 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
529 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeedProfile));
530 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
531 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
532
533 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
534 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
535 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
536 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
537 EXPECT_TRUE(oat_file_assistant.OatFileExists());
538 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
539 EXPECT_FALSE(oat_file_assistant.OatFileNeedsRelocation());
540 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
541 EXPECT_EQ(OatFileAssistant::kOatOutOfDate, oat_file_assistant.OatFileStatus());
542 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
543}
544
Richard Uhler66d874d2015-01-15 09:37:19 -0800545// Case: We have a MultiDEX file and up-to-date OAT file for it.
Richard Uhler95abd042015-03-24 09:51:28 -0700546// Expect: The status is kNoDexOptNeeded and we load all dex files.
Richard Uhler66d874d2015-01-15 09:37:19 -0800547TEST_F(OatFileAssistantTest, MultiDexOatUpToDate) {
548 std::string dex_location = GetScratchDir() + "/MultiDexOatUpToDate.jar";
549 Copy(GetMultiDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000550 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800551
Andreas Gampe29d38e72016-03-23 15:31:51 +0000552 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
553 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
554 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler9b994ea2015-06-24 08:44:19 -0700555 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler95abd042015-03-24 09:51:28 -0700556
557 // Verify we can load both dex files.
Richard Uhlere5fed032015-03-18 08:21:11 -0700558 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
Richard Uhler66d874d2015-01-15 09:37:19 -0800559 ASSERT_TRUE(oat_file.get() != nullptr);
560 EXPECT_TRUE(oat_file->IsExecutable());
561 std::vector<std::unique_ptr<const DexFile>> dex_files;
Richard Uhlere5fed032015-03-18 08:21:11 -0700562 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
563 EXPECT_EQ(2u, dex_files.size());
564}
565
Richard Uhler67ff7d12015-05-14 13:21:13 -0700566// Case: We have a MultiDEX file where the secondary dex file is out of date.
567// Expect: The status is kDex2OatNeeded.
568TEST_F(OatFileAssistantTest, MultiDexSecondaryOutOfDate) {
569 std::string dex_location = GetScratchDir() + "/MultiDexSecondaryOutOfDate.jar";
570
571 // Compile code for GetMultiDexSrc1.
572 Copy(GetMultiDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000573 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler67ff7d12015-05-14 13:21:13 -0700574
575 // Now overwrite the dex file with GetMultiDexSrc2 so the secondary checksum
576 // is out of date.
577 Copy(GetMultiDexSrc2(), dex_location);
578
Andreas Gampe29d38e72016-03-23 15:31:51 +0000579 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
580 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
581 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler9b994ea2015-06-24 08:44:19 -0700582 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler67ff7d12015-05-14 13:21:13 -0700583}
584
Richard Uhlere5fed032015-03-18 08:21:11 -0700585// Case: We have a MultiDEX file and up-to-date OAT file for it with relative
586// encoded dex locations.
Richard Uhler95abd042015-03-24 09:51:28 -0700587// Expect: The oat file status is kNoDexOptNeeded.
Richard Uhlere5fed032015-03-18 08:21:11 -0700588TEST_F(OatFileAssistantTest, RelativeEncodedDexLocation) {
589 std::string dex_location = GetScratchDir() + "/RelativeEncodedDexLocation.jar";
Richard Uhler63434112015-03-16 14:32:16 -0700590 std::string oat_location = GetOdexDir() + "/RelativeEncodedDexLocation.oat";
Richard Uhlere5fed032015-03-18 08:21:11 -0700591
592 // Create the dex file
593 Copy(GetMultiDexSrc1(), dex_location);
594
595 // Create the oat file with relative encoded dex location.
596 std::vector<std::string> args;
597 args.push_back("--dex-file=" + dex_location);
598 args.push_back("--dex-location=" + std::string("RelativeEncodedDexLocation.jar"));
599 args.push_back("--oat-file=" + oat_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000600 args.push_back("--compiler-filter=speed");
Richard Uhlere5fed032015-03-18 08:21:11 -0700601
602 std::string error_msg;
Igor Murashkinb1d8c312015-08-04 11:18:43 -0700603 ASSERT_TRUE(OatFileAssistant::Dex2Oat(args, &error_msg)) << error_msg;
Richard Uhlere5fed032015-03-18 08:21:11 -0700604
605 // Verify we can load both dex files.
606 OatFileAssistant oat_file_assistant(dex_location.c_str(),
607 oat_location.c_str(),
Andreas Gampe29d38e72016-03-23 15:31:51 +0000608 kRuntimeISA, false, true);
Richard Uhlere5fed032015-03-18 08:21:11 -0700609 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
610 ASSERT_TRUE(oat_file.get() != nullptr);
611 EXPECT_TRUE(oat_file->IsExecutable());
612 std::vector<std::unique_ptr<const DexFile>> dex_files;
613 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
Richard Uhler66d874d2015-01-15 09:37:19 -0800614 EXPECT_EQ(2u, dex_files.size());
615}
616
Richard Uhler95abd042015-03-24 09:51:28 -0700617// Case: We have a DEX file and out-of-date OAT file.
618// Expect: The status is kDex2OatNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -0800619TEST_F(OatFileAssistantTest, OatOutOfDate) {
620 std::string dex_location = GetScratchDir() + "/OatOutOfDate.jar";
621
622 // We create a dex, generate an oat for it, then overwrite the dex with a
623 // different dex to make the oat out of date.
624 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000625 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800626 Copy(GetDexSrc2(), dex_location);
627
Andreas Gampe29d38e72016-03-23 15:31:51 +0000628 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
629 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
630 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
631 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
632 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -0800633
634 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
635 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
636 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
637 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
638 EXPECT_TRUE(oat_file_assistant.OatFileExists());
639 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
640 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700641 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800642}
643
644// Case: We have a DEX file and an ODEX file, but no OAT file.
Richard Uhler95abd042015-03-24 09:51:28 -0700645// Expect: The status is kPatchOatNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -0800646TEST_F(OatFileAssistantTest, DexOdexNoOat) {
647 std::string dex_location = GetScratchDir() + "/DexOdexNoOat.jar";
Richard Uhler63434112015-03-16 14:32:16 -0700648 std::string odex_location = GetOdexDir() + "/DexOdexNoOat.odex";
Richard Uhler66d874d2015-01-15 09:37:19 -0800649
650 // Create the dex and odex files
651 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000652 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800653
654 // Verify the status.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000655 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800656
Andreas Gampe29d38e72016-03-23 15:31:51 +0000657 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
658 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
659 EXPECT_EQ(OatFileAssistant::kPatchOatNeeded,
660 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -0800661
662 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
663 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
664 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
665 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
666 EXPECT_TRUE(oat_file_assistant.OdexFileNeedsRelocation());
Richard Uhler66d874d2015-01-15 09:37:19 -0800667 EXPECT_FALSE(oat_file_assistant.OatFileExists());
668 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
669 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700670 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler5f946da2015-07-17 12:28:32 -0700671
672 // We should still be able to get the non-executable odex file to run from.
673 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
674 ASSERT_TRUE(oat_file.get() != nullptr);
Richard Uhler66d874d2015-01-15 09:37:19 -0800675}
676
677// Case: We have a stripped DEX file and an ODEX file, but no OAT file.
Richard Uhler95abd042015-03-24 09:51:28 -0700678// Expect: The status is kPatchOatNeeded
Richard Uhler66d874d2015-01-15 09:37:19 -0800679TEST_F(OatFileAssistantTest, StrippedDexOdexNoOat) {
680 std::string dex_location = GetScratchDir() + "/StrippedDexOdexNoOat.jar";
Richard Uhler63434112015-03-16 14:32:16 -0700681 std::string odex_location = GetOdexDir() + "/StrippedDexOdexNoOat.odex";
Richard Uhler66d874d2015-01-15 09:37:19 -0800682
683 // Create the dex and odex files
684 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000685 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800686
687 // Strip the dex file
688 Copy(GetStrippedDexSrc1(), dex_location);
689
690 // Verify the status.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000691 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -0800692
Andreas Gampe29d38e72016-03-23 15:31:51 +0000693 EXPECT_EQ(OatFileAssistant::kPatchOatNeeded,
694 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -0800695
696 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
697 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
698 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
699 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
700 EXPECT_FALSE(oat_file_assistant.OatFileExists());
701 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
702 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700703 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800704
705 // Make the oat file up to date.
706 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700707 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -0700708 ASSERT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -0700709 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800710
Andreas Gampe29d38e72016-03-23 15:31:51 +0000711 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
712 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -0800713
714 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
715 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
716 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
717 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
718 EXPECT_TRUE(oat_file_assistant.OatFileExists());
719 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
720 EXPECT_TRUE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700721 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800722
723 // Verify we can load the dex files from it.
724 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
725 ASSERT_TRUE(oat_file.get() != nullptr);
726 EXPECT_TRUE(oat_file->IsExecutable());
727 std::vector<std::unique_ptr<const DexFile>> dex_files;
728 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
729 EXPECT_EQ(1u, dex_files.size());
730}
731
Richard Uhler95abd042015-03-24 09:51:28 -0700732// Case: We have a stripped DEX file, an ODEX file, and an out-of-date OAT file.
733// Expect: The status is kPatchOatNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -0800734TEST_F(OatFileAssistantTest, StrippedDexOdexOat) {
735 std::string dex_location = GetScratchDir() + "/StrippedDexOdexOat.jar";
Richard Uhler63434112015-03-16 14:32:16 -0700736 std::string odex_location = GetOdexDir() + "/StrippedDexOdexOat.odex";
Richard Uhler66d874d2015-01-15 09:37:19 -0800737
738 // Create the oat file from a different dex file so it looks out of date.
739 Copy(GetDexSrc2(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000740 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800741
742 // Create the odex file
743 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000744 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800745
746 // Strip the dex file.
747 Copy(GetStrippedDexSrc1(), dex_location);
748
749 // Verify the status.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000750 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -0800751
Andreas Gampe29d38e72016-03-23 15:31:51 +0000752 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
753 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
754 EXPECT_EQ(OatFileAssistant::kPatchOatNeeded,
755 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
756 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded, // Can't run dex2oat because dex file is stripped.
757 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kEverything));
Richard Uhler66d874d2015-01-15 09:37:19 -0800758
759 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
760 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
761 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
762 EXPECT_TRUE(oat_file_assistant.OdexFileNeedsRelocation());
763 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
764 EXPECT_TRUE(oat_file_assistant.OatFileExists());
765 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
766 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700767 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800768
769 // Make the oat file up to date.
770 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700771 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -0700772 ASSERT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -0700773 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -0800774
Andreas Gampe29d38e72016-03-23 15:31:51 +0000775 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
776 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
777 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded, // Can't run dex2oat because dex file is stripped.
778 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kEverything));
Richard Uhler66d874d2015-01-15 09:37:19 -0800779
780 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
781 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
782 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
783 EXPECT_TRUE(oat_file_assistant.OdexFileNeedsRelocation());
784 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
785 EXPECT_TRUE(oat_file_assistant.OatFileExists());
786 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
787 EXPECT_FALSE(oat_file_assistant.OatFileNeedsRelocation());
788 EXPECT_TRUE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700789 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800790
791 // Verify we can load the dex files from it.
792 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
793 ASSERT_TRUE(oat_file.get() != nullptr);
794 EXPECT_TRUE(oat_file->IsExecutable());
795 std::vector<std::unique_ptr<const DexFile>> dex_files;
796 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
797 EXPECT_EQ(1u, dex_files.size());
798}
799
Richard Uhler9b994ea2015-06-24 08:44:19 -0700800// Case: We have a stripped (or resource-only) DEX file, no ODEX file and no
801// OAT file. Expect: The status is kNoDexOptNeeded.
802TEST_F(OatFileAssistantTest, ResourceOnlyDex) {
803 std::string dex_location = GetScratchDir() + "/ResourceOnlyDex.jar";
804
805 Copy(GetStrippedDexSrc1(), dex_location);
806
807 // Verify the status.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000808 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler9b994ea2015-06-24 08:44:19 -0700809
Andreas Gampe29d38e72016-03-23 15:31:51 +0000810 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
811 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
812 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
813 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
814 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
815 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
Richard Uhler9b994ea2015-06-24 08:44:19 -0700816
817 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
818 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
819 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
820 EXPECT_FALSE(oat_file_assistant.OdexFileNeedsRelocation());
821 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
822 EXPECT_FALSE(oat_file_assistant.OatFileExists());
823 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
824 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
825 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
826
827 // Make the oat file up to date. This should have no effect.
828 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700829 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -0700830 EXPECT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -0700831 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
Richard Uhler9b994ea2015-06-24 08:44:19 -0700832
Andreas Gampe29d38e72016-03-23 15:31:51 +0000833 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
834 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler9b994ea2015-06-24 08:44:19 -0700835
836 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
837 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
838 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
839 EXPECT_FALSE(oat_file_assistant.OdexFileNeedsRelocation());
840 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
841 EXPECT_FALSE(oat_file_assistant.OatFileExists());
842 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
843 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
844 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
845}
846
Richard Uhler95abd042015-03-24 09:51:28 -0700847// Case: We have a DEX file, no ODEX file and an OAT file that needs
848// relocation.
849// Expect: The status is kSelfPatchOatNeeded.
850TEST_F(OatFileAssistantTest, SelfRelocation) {
851 std::string dex_location = GetScratchDir() + "/SelfRelocation.jar";
852 std::string oat_location = GetOdexDir() + "/SelfRelocation.oat";
853
854 // Create the dex and odex files
855 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000856 GenerateOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed);
Richard Uhler95abd042015-03-24 09:51:28 -0700857
858 OatFileAssistant oat_file_assistant(dex_location.c_str(),
Andreas Gampe29d38e72016-03-23 15:31:51 +0000859 oat_location.c_str(), kRuntimeISA, false, true);
Richard Uhler95abd042015-03-24 09:51:28 -0700860
Andreas Gampe29d38e72016-03-23 15:31:51 +0000861 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
862 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
863 EXPECT_EQ(OatFileAssistant::kSelfPatchOatNeeded,
864 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
865 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
866 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kEverything));
Richard Uhler95abd042015-03-24 09:51:28 -0700867
868 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
869 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
870 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
871 EXPECT_FALSE(oat_file_assistant.OdexFileNeedsRelocation());
872 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
873 EXPECT_TRUE(oat_file_assistant.OatFileExists());
874 EXPECT_TRUE(oat_file_assistant.OatFileNeedsRelocation());
875 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
876 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700877 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler95abd042015-03-24 09:51:28 -0700878
879 // Make the oat file up to date.
880 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700881 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -0700882 ASSERT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -0700883 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
Richard Uhler95abd042015-03-24 09:51:28 -0700884
Andreas Gampe29d38e72016-03-23 15:31:51 +0000885 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
886 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler95abd042015-03-24 09:51:28 -0700887
888 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
889 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
890 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
891 EXPECT_FALSE(oat_file_assistant.OdexFileNeedsRelocation());
892 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
893 EXPECT_TRUE(oat_file_assistant.OatFileExists());
894 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
895 EXPECT_FALSE(oat_file_assistant.OatFileNeedsRelocation());
896 EXPECT_TRUE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700897 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler95abd042015-03-24 09:51:28 -0700898
899 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
900 ASSERT_TRUE(oat_file.get() != nullptr);
901 EXPECT_TRUE(oat_file->IsExecutable());
902 std::vector<std::unique_ptr<const DexFile>> dex_files;
903 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
904 EXPECT_EQ(1u, dex_files.size());
905}
906
Richard Uhlerd1537b52016-03-29 13:27:41 -0700907// Case: We have a DEX file, no ODEX file and an OAT file that needs
908// relocation but doesn't have patch info.
909// Expect: The status is kDex2OatNeeded, because we can't run patchoat.
910TEST_F(OatFileAssistantTest, NoSelfRelocation) {
911 std::string dex_location = GetScratchDir() + "/NoSelfRelocation.jar";
912 std::string oat_location = GetOdexDir() + "/NoSelfRelocation.oat";
913
914 // Create the dex and odex files
915 Copy(GetDexSrc1(), dex_location);
916 GenerateNoPatchOdexForTest(dex_location, oat_location, CompilerFilter::kSpeed);
917
918 OatFileAssistant oat_file_assistant(dex_location.c_str(),
919 oat_location.c_str(), kRuntimeISA, false, true);
920
921 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
922 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
923
924 // Make the oat file up to date.
925 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -0700926 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -0700927 ASSERT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -0700928 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
Richard Uhlerd1537b52016-03-29 13:27:41 -0700929 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
930 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
931
932 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
933 ASSERT_TRUE(oat_file.get() != nullptr);
934 EXPECT_TRUE(oat_file->IsExecutable());
935 std::vector<std::unique_ptr<const DexFile>> dex_files;
936 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
937 EXPECT_EQ(1u, dex_files.size());
938}
939
Richard Uhler66d874d2015-01-15 09:37:19 -0800940// Case: We have a DEX file, an ODEX file and an OAT file, where the ODEX and
941// OAT files both have patch delta of 0.
Richard Uhler95abd042015-03-24 09:51:28 -0700942// Expect: It shouldn't crash, and status is kPatchOatNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -0800943TEST_F(OatFileAssistantTest, OdexOatOverlap) {
944 std::string dex_location = GetScratchDir() + "/OdexOatOverlap.jar";
Richard Uhler63434112015-03-16 14:32:16 -0700945 std::string odex_location = GetOdexDir() + "/OdexOatOverlap.odex";
946 std::string oat_location = GetOdexDir() + "/OdexOatOverlap.oat";
Richard Uhler66d874d2015-01-15 09:37:19 -0800947
948 // Create the dex and odex files
949 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000950 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800951
952 // Create the oat file by copying the odex so they are located in the same
953 // place in memory.
954 Copy(odex_location, oat_location);
955
956 // Verify things don't go bad.
957 OatFileAssistant oat_file_assistant(dex_location.c_str(),
Andreas Gampe29d38e72016-03-23 15:31:51 +0000958 oat_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -0800959
Andreas Gampe29d38e72016-03-23 15:31:51 +0000960 EXPECT_EQ(OatFileAssistant::kPatchOatNeeded,
961 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -0800962
963 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
964 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
965 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
966 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
967 EXPECT_TRUE(oat_file_assistant.OatFileExists());
968 EXPECT_FALSE(oat_file_assistant.OatFileIsOutOfDate());
969 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -0700970 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -0800971
972 // Things aren't relocated, so it should fall back to interpreted.
973 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
974 ASSERT_TRUE(oat_file.get() != nullptr);
Richard Uhlerf16d5722015-05-11 09:32:47 -0700975
Richard Uhler66d874d2015-01-15 09:37:19 -0800976 EXPECT_FALSE(oat_file->IsExecutable());
977 std::vector<std::unique_ptr<const DexFile>> dex_files;
978 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
979 EXPECT_EQ(1u, dex_files.size());
980}
981
982// Case: We have a DEX file and a PIC ODEX file, but no OAT file.
Richard Uhler95abd042015-03-24 09:51:28 -0700983// Expect: The status is kNoDexOptNeeded, because PIC needs no relocation.
Richard Uhler66d874d2015-01-15 09:37:19 -0800984TEST_F(OatFileAssistantTest, DexPicOdexNoOat) {
985 std::string dex_location = GetScratchDir() + "/DexPicOdexNoOat.jar";
Richard Uhler63434112015-03-16 14:32:16 -0700986 std::string odex_location = GetOdexDir() + "/DexPicOdexNoOat.odex";
Richard Uhler66d874d2015-01-15 09:37:19 -0800987
988 // Create the dex and odex files
989 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +0000990 GeneratePicOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -0800991
992 // Verify the status.
Andreas Gampe29d38e72016-03-23 15:31:51 +0000993 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -0800994
Andreas Gampe29d38e72016-03-23 15:31:51 +0000995 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
996 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
997 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
998 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kEverything));
Richard Uhler66d874d2015-01-15 09:37:19 -0800999
1000 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
1001 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
1002 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
1003 EXPECT_TRUE(oat_file_assistant.OdexFileIsUpToDate());
1004 EXPECT_FALSE(oat_file_assistant.OatFileExists());
1005 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
1006 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -07001007 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -08001008}
1009
Andreas Gampe29d38e72016-03-23 15:31:51 +00001010// Case: We have a DEX file and a VerifyAtRuntime ODEX file, but no OAT file.
1011// Expect: The status is kNoDexOptNeeded, because VerifyAtRuntime contains no code.
1012TEST_F(OatFileAssistantTest, DexVerifyAtRuntimeOdexNoOat) {
1013 std::string dex_location = GetScratchDir() + "/DexVerifyAtRuntimeOdexNoOat.jar";
1014 std::string odex_location = GetOdexDir() + "/DexVerifyAtRuntimeOdexNoOat.odex";
David Brazdilce4b0ba2016-01-28 15:05:49 +00001015
1016 // Create the dex and odex files
1017 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +00001018 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kVerifyAtRuntime);
David Brazdilce4b0ba2016-01-28 15:05:49 +00001019
1020 // Verify the status.
Andreas Gampe29d38e72016-03-23 15:31:51 +00001021 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
David Brazdilce4b0ba2016-01-28 15:05:49 +00001022
Andreas Gampe29d38e72016-03-23 15:31:51 +00001023 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
1024 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kVerifyAtRuntime));
1025 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
1026 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
David Brazdilce4b0ba2016-01-28 15:05:49 +00001027
1028 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
1029 EXPECT_TRUE(oat_file_assistant.OdexFileExists());
1030 EXPECT_FALSE(oat_file_assistant.OdexFileIsOutOfDate());
Nicolas Geoffray845e5062016-03-23 06:42:05 +00001031 EXPECT_TRUE(oat_file_assistant.OdexFileIsUpToDate());
David Brazdilce4b0ba2016-01-28 15:05:49 +00001032 EXPECT_FALSE(oat_file_assistant.OatFileExists());
1033 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
1034 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
1035 EXPECT_TRUE(oat_file_assistant.HasOriginalDexFiles());
1036}
1037
Richard Uhler66d874d2015-01-15 09:37:19 -08001038// Case: We have a DEX file and up-to-date OAT file for it.
1039// Expect: We should load an executable dex file.
1040TEST_F(OatFileAssistantTest, LoadOatUpToDate) {
1041 std::string dex_location = GetScratchDir() + "/LoadOatUpToDate.jar";
1042
1043 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +00001044 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -08001045
1046 // Load the oat using an oat file assistant.
Andreas Gampe29d38e72016-03-23 15:31:51 +00001047 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
1048
1049 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1050 ASSERT_TRUE(oat_file.get() != nullptr);
1051 EXPECT_TRUE(oat_file->IsExecutable());
1052 std::vector<std::unique_ptr<const DexFile>> dex_files;
1053 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
1054 EXPECT_EQ(1u, dex_files.size());
1055}
1056
1057// Case: We have a DEX file and up-to-date interpret-only OAT file for it.
1058// Expect: We should still load the oat file as executable.
1059TEST_F(OatFileAssistantTest, LoadExecInterpretOnlyOatUpToDate) {
1060 std::string dex_location = GetScratchDir() + "/LoadExecInterpretOnlyOatUpToDate.jar";
1061
1062 Copy(GetDexSrc1(), dex_location);
1063 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kInterpretOnly);
1064
1065 // Load the oat using an oat file assistant.
1066 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -08001067
1068 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1069 ASSERT_TRUE(oat_file.get() != nullptr);
1070 EXPECT_TRUE(oat_file->IsExecutable());
1071 std::vector<std::unique_ptr<const DexFile>> dex_files;
1072 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
1073 EXPECT_EQ(1u, dex_files.size());
1074}
1075
1076// Case: We have a DEX file and up-to-date OAT file for it.
1077// Expect: Loading non-executable should load the oat non-executable.
1078TEST_F(OatFileAssistantTest, LoadNoExecOatUpToDate) {
1079 std::string dex_location = GetScratchDir() + "/LoadNoExecOatUpToDate.jar";
1080
1081 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +00001082 GenerateOatForTest(dex_location.c_str(), CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -08001083
1084 // Load the oat using an oat file assistant.
Andreas Gampe29d38e72016-03-23 15:31:51 +00001085 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -08001086
1087 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1088 ASSERT_TRUE(oat_file.get() != nullptr);
1089 EXPECT_FALSE(oat_file->IsExecutable());
1090 std::vector<std::unique_ptr<const DexFile>> dex_files;
1091 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
1092 EXPECT_EQ(1u, dex_files.size());
1093}
1094
1095// Case: We have a DEX file.
1096// Expect: We should load an executable dex file from an alternative oat
1097// location.
1098TEST_F(OatFileAssistantTest, LoadDexNoAlternateOat) {
1099 std::string dex_location = GetScratchDir() + "/LoadDexNoAlternateOat.jar";
1100 std::string oat_location = GetScratchDir() + "/LoadDexNoAlternateOat.oat";
1101
1102 Copy(GetDexSrc1(), dex_location);
1103
1104 OatFileAssistant oat_file_assistant(
Andreas Gampe29d38e72016-03-23 15:31:51 +00001105 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -08001106 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -07001107 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -07001108 ASSERT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -07001109 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
Richard Uhler66d874d2015-01-15 09:37:19 -08001110
1111 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1112 ASSERT_TRUE(oat_file.get() != nullptr);
1113 EXPECT_TRUE(oat_file->IsExecutable());
1114 std::vector<std::unique_ptr<const DexFile>> dex_files;
1115 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
1116 EXPECT_EQ(1u, dex_files.size());
1117
1118 EXPECT_TRUE(OS::FileExists(oat_location.c_str()));
1119
1120 // Verify it didn't create an oat in the default location.
Andreas Gampe29d38e72016-03-23 15:31:51 +00001121 OatFileAssistant ofm(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -08001122 EXPECT_FALSE(ofm.OatFileExists());
1123}
1124
Richard Uhler8327cf72015-10-13 16:34:59 -07001125// Case: We have a DEX file but can't write the oat file.
1126// Expect: We should fail to make the oat file up to date.
1127TEST_F(OatFileAssistantTest, LoadDexUnwriteableAlternateOat) {
1128 std::string dex_location = GetScratchDir() + "/LoadDexUnwriteableAlternateOat.jar";
1129
1130 // Make the oat location unwritable by inserting some non-existent
1131 // intermediate directories.
1132 std::string oat_location = GetScratchDir() + "/foo/bar/LoadDexUnwriteableAlternateOat.oat";
1133
1134 Copy(GetDexSrc1(), dex_location);
1135
1136 OatFileAssistant oat_file_assistant(
Andreas Gampe29d38e72016-03-23 15:31:51 +00001137 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
Richard Uhler8327cf72015-10-13 16:34:59 -07001138 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -07001139 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -07001140 ASSERT_EQ(OatFileAssistant::kUpdateNotAttempted,
Richard Uhlerf4b34872016-04-13 11:03:46 -07001141 oat_file_assistant.MakeUpToDate(&error_msg));
Richard Uhler8327cf72015-10-13 16:34:59 -07001142
1143 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1144 ASSERT_TRUE(oat_file.get() == nullptr);
1145}
1146
1147// Case: We don't have a DEX file and can't write the oat file.
1148// Expect: We should fail to generate the oat file without crashing.
1149TEST_F(OatFileAssistantTest, GenNoDex) {
1150 std::string dex_location = GetScratchDir() + "/GenNoDex.jar";
1151 std::string oat_location = GetScratchDir() + "/GenNoDex.oat";
1152
1153 OatFileAssistant oat_file_assistant(
Andreas Gampe29d38e72016-03-23 15:31:51 +00001154 dex_location.c_str(), oat_location.c_str(), kRuntimeISA, false, true);
Richard Uhler8327cf72015-10-13 16:34:59 -07001155 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -07001156 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -07001157 EXPECT_EQ(OatFileAssistant::kUpdateNotAttempted,
Richard Uhlerf4b34872016-04-13 11:03:46 -07001158 oat_file_assistant.GenerateOatFile(&error_msg));
Richard Uhler8327cf72015-10-13 16:34:59 -07001159}
1160
Richard Uhler66d874d2015-01-15 09:37:19 -08001161// Turn an absolute path into a path relative to the current working
1162// directory.
1163static std::string MakePathRelative(std::string target) {
1164 char buf[MAXPATHLEN];
1165 std::string cwd = getcwd(buf, MAXPATHLEN);
1166
1167 // Split the target and cwd paths into components.
1168 std::vector<std::string> target_path;
1169 std::vector<std::string> cwd_path;
1170 Split(target, '/', &target_path);
1171 Split(cwd, '/', &cwd_path);
1172
1173 // Reverse the path components, so we can use pop_back().
1174 std::reverse(target_path.begin(), target_path.end());
1175 std::reverse(cwd_path.begin(), cwd_path.end());
1176
1177 // Drop the common prefix of the paths. Because we reversed the path
1178 // components, this becomes the common suffix of target_path and cwd_path.
1179 while (!target_path.empty() && !cwd_path.empty()
1180 && target_path.back() == cwd_path.back()) {
1181 target_path.pop_back();
1182 cwd_path.pop_back();
1183 }
1184
1185 // For each element of the remaining cwd_path, add '..' to the beginning
1186 // of the target path. Because we reversed the path components, we add to
1187 // the end of target_path.
1188 for (unsigned int i = 0; i < cwd_path.size(); i++) {
1189 target_path.push_back("..");
1190 }
1191
1192 // Reverse again to get the right path order, and join to get the result.
1193 std::reverse(target_path.begin(), target_path.end());
1194 return Join(target_path, '/');
1195}
1196
1197// Case: Non-absolute path to Dex location.
1198// Expect: Not sure, but it shouldn't crash.
1199TEST_F(OatFileAssistantTest, NonAbsoluteDexLocation) {
1200 std::string abs_dex_location = GetScratchDir() + "/NonAbsoluteDexLocation.jar";
1201 Copy(GetDexSrc1(), abs_dex_location);
1202
1203 std::string dex_location = MakePathRelative(abs_dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +00001204 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -08001205
1206 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
Andreas Gampe29d38e72016-03-23 15:31:51 +00001207 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
1208 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -08001209 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
1210 EXPECT_FALSE(oat_file_assistant.OatFileExists());
1211 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
1212 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
1213 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
1214 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
1215}
1216
1217// Case: Very short, non-existent Dex location.
Richard Uhler9b994ea2015-06-24 08:44:19 -07001218// Expect: kNoDexOptNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -08001219TEST_F(OatFileAssistantTest, ShortDexLocation) {
1220 std::string dex_location = "/xx";
1221
Andreas Gampe29d38e72016-03-23 15:31:51 +00001222 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -08001223
1224 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
Andreas Gampe29d38e72016-03-23 15:31:51 +00001225 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
1226 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -08001227 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
1228 EXPECT_FALSE(oat_file_assistant.OatFileExists());
1229 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
1230 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
1231 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
1232 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
Richard Uhler9b994ea2015-06-24 08:44:19 -07001233 EXPECT_FALSE(oat_file_assistant.HasOriginalDexFiles());
Richard Uhler66d874d2015-01-15 09:37:19 -08001234
Richard Uhler9b994ea2015-06-24 08:44:19 -07001235 // Trying to make it up to date should have no effect.
Richard Uhler66d874d2015-01-15 09:37:19 -08001236 std::string error_msg;
Richard Uhlerf4b34872016-04-13 11:03:46 -07001237 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
Richard Uhler1e860612016-03-30 12:17:55 -07001238 EXPECT_EQ(OatFileAssistant::kUpdateSucceeded,
Richard Uhlerf4b34872016-04-13 11:03:46 -07001239 oat_file_assistant.MakeUpToDate(&error_msg));
Richard Uhler9b994ea2015-06-24 08:44:19 -07001240 EXPECT_TRUE(error_msg.empty());
Richard Uhler66d874d2015-01-15 09:37:19 -08001241}
1242
1243// Case: Non-standard extension for dex file.
Richard Uhler95abd042015-03-24 09:51:28 -07001244// Expect: The status is kDex2OatNeeded.
Richard Uhler66d874d2015-01-15 09:37:19 -08001245TEST_F(OatFileAssistantTest, LongDexExtension) {
1246 std::string dex_location = GetScratchDir() + "/LongDexExtension.jarx";
1247 Copy(GetDexSrc1(), dex_location);
1248
Andreas Gampe29d38e72016-03-23 15:31:51 +00001249 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
Richard Uhler66d874d2015-01-15 09:37:19 -08001250
Andreas Gampe29d38e72016-03-23 15:31:51 +00001251 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
1252 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
Richard Uhler66d874d2015-01-15 09:37:19 -08001253
1254 EXPECT_FALSE(oat_file_assistant.IsInBootClassPath());
1255 EXPECT_FALSE(oat_file_assistant.OdexFileExists());
1256 EXPECT_TRUE(oat_file_assistant.OdexFileIsOutOfDate());
1257 EXPECT_FALSE(oat_file_assistant.OdexFileIsUpToDate());
1258 EXPECT_FALSE(oat_file_assistant.OatFileExists());
1259 EXPECT_TRUE(oat_file_assistant.OatFileIsOutOfDate());
1260 EXPECT_FALSE(oat_file_assistant.OatFileIsUpToDate());
1261}
1262
1263// A task to generate a dex location. Used by the RaceToGenerate test.
1264class RaceGenerateTask : public Task {
1265 public:
1266 explicit RaceGenerateTask(const std::string& dex_location, const std::string& oat_location)
Jeff Haof0192c82016-03-28 20:39:50 -07001267 : dex_location_(dex_location), oat_location_(oat_location), loaded_oat_file_(nullptr)
Richard Uhler66d874d2015-01-15 09:37:19 -08001268 {}
1269
Roland Levillain4b8f1ec2015-08-26 18:34:03 +01001270 void Run(Thread* self ATTRIBUTE_UNUSED) {
Richard Uhler66d874d2015-01-15 09:37:19 -08001271 // Load the dex files, and save a pointer to the loaded oat file, so that
1272 // we can verify only one oat file was loaded for the dex location.
Richard Uhler66d874d2015-01-15 09:37:19 -08001273 std::vector<std::unique_ptr<const DexFile>> dex_files;
1274 std::vector<std::string> error_msgs;
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001275 const OatFile* oat_file = nullptr;
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001276 dex_files = Runtime::Current()->GetOatFileManager().OpenDexFilesFromOat(
1277 dex_location_.c_str(),
1278 oat_location_.c_str(),
Mathieu Chartierfbc31082016-01-24 11:59:56 -08001279 /*class_loader*/nullptr,
1280 /*dex_elements*/nullptr,
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001281 &oat_file,
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001282 &error_msgs);
Richard Uhler66d874d2015-01-15 09:37:19 -08001283 CHECK(!dex_files.empty()) << Join(error_msgs, '\n');
Richard Uhler07b3c232015-03-31 15:57:54 -07001284 CHECK(dex_files[0]->GetOatDexFile() != nullptr) << dex_files[0]->GetLocation();
1285 loaded_oat_file_ = dex_files[0]->GetOatDexFile()->GetOatFile();
Mathieu Chartiere58991b2015-10-13 07:59:34 -07001286 CHECK_EQ(loaded_oat_file_, oat_file);
Richard Uhler66d874d2015-01-15 09:37:19 -08001287 }
1288
1289 const OatFile* GetLoadedOatFile() const {
1290 return loaded_oat_file_;
1291 }
1292
1293 private:
1294 std::string dex_location_;
1295 std::string oat_location_;
1296 const OatFile* loaded_oat_file_;
1297};
1298
1299// Test the case where multiple processes race to generate an oat file.
1300// This simulates multiple processes using multiple threads.
1301//
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001302// We want unique Oat files to be loaded even when there is a race to load.
1303// TODO: The test case no longer tests locking the way it was intended since we now get multiple
1304// copies of the same Oat files mapped at different locations.
Richard Uhler66d874d2015-01-15 09:37:19 -08001305TEST_F(OatFileAssistantTest, RaceToGenerate) {
1306 std::string dex_location = GetScratchDir() + "/RaceToGenerate.jar";
Richard Uhler63434112015-03-16 14:32:16 -07001307 std::string oat_location = GetOdexDir() + "/RaceToGenerate.oat";
Richard Uhler66d874d2015-01-15 09:37:19 -08001308
1309 // We use the lib core dex file, because it's large, and hopefully should
1310 // take a while to generate.
Narayan Kamathd1ef4362015-11-12 11:49:06 +00001311 Copy(GetLibCoreDexFileNames()[0], dex_location);
Richard Uhler66d874d2015-01-15 09:37:19 -08001312
1313 const int kNumThreads = 32;
1314 Thread* self = Thread::Current();
1315 ThreadPool thread_pool("Oat file assistant test thread pool", kNumThreads);
1316 std::vector<std::unique_ptr<RaceGenerateTask>> tasks;
1317 for (int i = 0; i < kNumThreads; i++) {
1318 std::unique_ptr<RaceGenerateTask> task(new RaceGenerateTask(dex_location, oat_location));
1319 thread_pool.AddTask(self, task.get());
1320 tasks.push_back(std::move(task));
1321 }
1322 thread_pool.StartWorkers(self);
1323 thread_pool.Wait(self, true, false);
1324
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001325 // Verify every task got a unique oat file.
1326 std::set<const OatFile*> oat_files;
Richard Uhler66d874d2015-01-15 09:37:19 -08001327 for (auto& task : tasks) {
Mathieu Chartierf9c6fc62015-10-07 11:44:05 -07001328 const OatFile* oat_file = task->GetLoadedOatFile();
1329 EXPECT_TRUE(oat_files.find(oat_file) == oat_files.end());
1330 oat_files.insert(oat_file);
Richard Uhler66d874d2015-01-15 09:37:19 -08001331 }
1332}
1333
1334// Case: We have a DEX file and an ODEX file, no OAT file, and dex2oat is
1335// disabled.
1336// Expect: We should load the odex file non-executable.
1337TEST_F(OatFileAssistantNoDex2OatTest, LoadDexOdexNoOat) {
1338 std::string dex_location = GetScratchDir() + "/LoadDexOdexNoOat.jar";
Richard Uhler63434112015-03-16 14:32:16 -07001339 std::string odex_location = GetOdexDir() + "/LoadDexOdexNoOat.odex";
Richard Uhler66d874d2015-01-15 09:37:19 -08001340
1341 // Create the dex and odex files
1342 Copy(GetDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +00001343 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -08001344
1345 // Load the oat using an executable oat file assistant.
Andreas Gampe29d38e72016-03-23 15:31:51 +00001346 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -08001347
1348 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1349 ASSERT_TRUE(oat_file.get() != nullptr);
1350 EXPECT_FALSE(oat_file->IsExecutable());
1351 std::vector<std::unique_ptr<const DexFile>> dex_files;
1352 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
1353 EXPECT_EQ(1u, dex_files.size());
1354}
1355
1356// Case: We have a MultiDEX file and an ODEX file, no OAT file, and dex2oat is
1357// disabled.
1358// Expect: We should load the odex file non-executable.
1359TEST_F(OatFileAssistantNoDex2OatTest, LoadMultiDexOdexNoOat) {
1360 std::string dex_location = GetScratchDir() + "/LoadMultiDexOdexNoOat.jar";
Richard Uhler63434112015-03-16 14:32:16 -07001361 std::string odex_location = GetOdexDir() + "/LoadMultiDexOdexNoOat.odex";
Richard Uhler66d874d2015-01-15 09:37:19 -08001362
1363 // Create the dex and odex files
1364 Copy(GetMultiDexSrc1(), dex_location);
Andreas Gampe29d38e72016-03-23 15:31:51 +00001365 GenerateOdexForTest(dex_location, odex_location, CompilerFilter::kSpeed);
Richard Uhler66d874d2015-01-15 09:37:19 -08001366
1367 // Load the oat using an executable oat file assistant.
Andreas Gampe29d38e72016-03-23 15:31:51 +00001368 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, true);
Richard Uhler66d874d2015-01-15 09:37:19 -08001369
1370 std::unique_ptr<OatFile> oat_file = oat_file_assistant.GetBestOatFile();
1371 ASSERT_TRUE(oat_file.get() != nullptr);
1372 EXPECT_FALSE(oat_file->IsExecutable());
1373 std::vector<std::unique_ptr<const DexFile>> dex_files;
1374 dex_files = oat_file_assistant.LoadDexFiles(*oat_file, dex_location.c_str());
1375 EXPECT_EQ(2u, dex_files.size());
1376}
1377
Richard Uhlerf4b34872016-04-13 11:03:46 -07001378TEST_F(OatFileAssistantTest, RuntimeCompilerFilterOptionUsed) {
1379 std::string dex_location = GetScratchDir() + "/RuntimeCompilerFilterOptionUsed.jar";
1380 Copy(GetDexSrc1(), dex_location);
1381
1382 OatFileAssistant oat_file_assistant(dex_location.c_str(), kRuntimeISA, false, false);
1383
1384 std::string error_msg;
1385 Runtime::Current()->AddCompilerOption("--compiler-filter=interpret-only");
1386 EXPECT_EQ(OatFileAssistant::kUpdateSucceeded,
1387 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
1388 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
1389 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
1390 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded,
1391 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
1392
1393 Runtime::Current()->AddCompilerOption("--compiler-filter=speed");
1394 EXPECT_EQ(OatFileAssistant::kUpdateSucceeded,
1395 oat_file_assistant.MakeUpToDate(&error_msg)) << error_msg;
1396 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
1397 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kInterpretOnly));
1398 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded,
1399 oat_file_assistant.GetDexOptNeeded(CompilerFilter::kSpeed));
1400
1401 Runtime::Current()->AddCompilerOption("--compiler-filter=bogus");
1402 EXPECT_EQ(OatFileAssistant::kUpdateNotAttempted,
1403 oat_file_assistant.MakeUpToDate(&error_msg));
1404}
1405
Richard Uhler66d874d2015-01-15 09:37:19 -08001406TEST(OatFileAssistantUtilsTest, DexFilenameToOdexFilename) {
1407 std::string error_msg;
1408 std::string odex_file;
1409
1410 EXPECT_TRUE(OatFileAssistant::DexFilenameToOdexFilename(
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001411 "/foo/bar/baz.jar", kArm, &odex_file, &error_msg)) << error_msg;
Richard Uhler63434112015-03-16 14:32:16 -07001412 EXPECT_EQ("/foo/bar/oat/arm/baz.odex", odex_file);
Richard Uhler66d874d2015-01-15 09:37:19 -08001413
1414 EXPECT_TRUE(OatFileAssistant::DexFilenameToOdexFilename(
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001415 "/foo/bar/baz.funnyext", kArm, &odex_file, &error_msg)) << error_msg;
Richard Uhler63434112015-03-16 14:32:16 -07001416 EXPECT_EQ("/foo/bar/oat/arm/baz.odex", odex_file);
Richard Uhler66d874d2015-01-15 09:37:19 -08001417
1418 EXPECT_FALSE(OatFileAssistant::DexFilenameToOdexFilename(
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001419 "nopath.jar", kArm, &odex_file, &error_msg));
Richard Uhler66d874d2015-01-15 09:37:19 -08001420 EXPECT_FALSE(OatFileAssistant::DexFilenameToOdexFilename(
Igor Murashkinb1d8c312015-08-04 11:18:43 -07001421 "/foo/bar/baz_noext", kArm, &odex_file, &error_msg));
Richard Uhler66d874d2015-01-15 09:37:19 -08001422}
1423
Richard Uhler23cedd22015-04-08 13:17:29 -07001424// Verify the dexopt status values from dalvik.system.DexFile
1425// match the OatFileAssistant::DexOptStatus values.
1426TEST_F(OatFileAssistantTest, DexOptStatusValues) {
1427 ScopedObjectAccess soa(Thread::Current());
1428 StackHandleScope<1> hs(soa.Self());
1429 ClassLinker* linker = Runtime::Current()->GetClassLinker();
1430 Handle<mirror::Class> dexfile(
1431 hs.NewHandle(linker->FindSystemClass(soa.Self(), "Ldalvik/system/DexFile;")));
1432 ASSERT_FALSE(dexfile.Get() == nullptr);
1433 linker->EnsureInitialized(soa.Self(), dexfile, true, true);
1434
Mathieu Chartierc7853442015-03-27 14:35:38 -07001435 ArtField* no_dexopt_needed = mirror::Class::FindStaticField(
Richard Uhler23cedd22015-04-08 13:17:29 -07001436 soa.Self(), dexfile, "NO_DEXOPT_NEEDED", "I");
1437 ASSERT_FALSE(no_dexopt_needed == nullptr);
1438 EXPECT_EQ(no_dexopt_needed->GetTypeAsPrimitiveType(), Primitive::kPrimInt);
1439 EXPECT_EQ(OatFileAssistant::kNoDexOptNeeded, no_dexopt_needed->GetInt(dexfile.Get()));
1440
Mathieu Chartierc7853442015-03-27 14:35:38 -07001441 ArtField* dex2oat_needed = mirror::Class::FindStaticField(
Richard Uhler23cedd22015-04-08 13:17:29 -07001442 soa.Self(), dexfile, "DEX2OAT_NEEDED", "I");
1443 ASSERT_FALSE(dex2oat_needed == nullptr);
1444 EXPECT_EQ(dex2oat_needed->GetTypeAsPrimitiveType(), Primitive::kPrimInt);
1445 EXPECT_EQ(OatFileAssistant::kDex2OatNeeded, dex2oat_needed->GetInt(dexfile.Get()));
1446
Mathieu Chartierc7853442015-03-27 14:35:38 -07001447 ArtField* patchoat_needed = mirror::Class::FindStaticField(
Richard Uhler23cedd22015-04-08 13:17:29 -07001448 soa.Self(), dexfile, "PATCHOAT_NEEDED", "I");
1449 ASSERT_FALSE(patchoat_needed == nullptr);
1450 EXPECT_EQ(patchoat_needed->GetTypeAsPrimitiveType(), Primitive::kPrimInt);
1451 EXPECT_EQ(OatFileAssistant::kPatchOatNeeded, patchoat_needed->GetInt(dexfile.Get()));
1452
Mathieu Chartierc7853442015-03-27 14:35:38 -07001453 ArtField* self_patchoat_needed = mirror::Class::FindStaticField(
Richard Uhler23cedd22015-04-08 13:17:29 -07001454 soa.Self(), dexfile, "SELF_PATCHOAT_NEEDED", "I");
1455 ASSERT_FALSE(self_patchoat_needed == nullptr);
1456 EXPECT_EQ(self_patchoat_needed->GetTypeAsPrimitiveType(), Primitive::kPrimInt);
1457 EXPECT_EQ(OatFileAssistant::kSelfPatchOatNeeded, self_patchoat_needed->GetInt(dexfile.Get()));
1458}
Richard Uhler66d874d2015-01-15 09:37:19 -08001459
1460// TODO: More Tests:
Andreas Gampe29d38e72016-03-23 15:31:51 +00001461// * Image checksum change is out of date for kIntepretOnly, but not
1462// kVerifyAtRuntime. But target of kVerifyAtRuntime still says current
1463// kInterpretOnly is out of date.
Richard Uhler66d874d2015-01-15 09:37:19 -08001464// * Test class linker falls back to unquickened dex for DexNoOat
1465// * Test class linker falls back to unquickened dex for MultiDexNoOat
Richard Uhler66d874d2015-01-15 09:37:19 -08001466// * Test using secondary isa
Richard Uhler66d874d2015-01-15 09:37:19 -08001467// * Test for status of oat while oat is being generated (how?)
1468// * Test case where 32 and 64 bit boot class paths differ,
1469// and we ask IsInBootClassPath for a class in exactly one of the 32 or
1470// 64 bit boot class paths.
1471// * Test unexpected scenarios (?):
1472// - Dex is stripped, don't have odex.
1473// - Oat file corrupted after status check, before reload unexecutable
1474// because it's unrelocated and no dex2oat
Calin Juravleb077e152016-02-18 18:47:37 +00001475// * Test unrelocated specific target compilation type can be relocated to
1476// make it up to date.
Richard Uhler66d874d2015-01-15 09:37:19 -08001477
1478} // namespace art