blob: 7cc643293c37ed79b4081d5b0f039ba616383154 [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 */
Carl Shapirofc322c72011-07-27 00:20:01 -070016
Brian Carlstrom491ca9e2014-03-02 18:24:38 -080017#include "parsed_options.h"
Elliott Hughes90a33692011-08-30 13:27:07 -070018
Ian Rogers700a4022014-05-19 16:49:03 -070019#include <memory>
20
Andreas Gampea00f0122015-12-16 16:54:35 -080021#include "arch/instruction_set.h"
Vladimir Markob9c29f62019-03-20 14:22:51 +000022#include "base/common_art_test.h"
Carl Shapirofc322c72011-07-27 00:20:01 -070023
24namespace art {
Carl Shapirofc322c72011-07-27 00:20:01 -070025
Vladimir Markob9c29f62019-03-20 14:22:51 +000026class ParsedOptionsTest : public CommonArtTest {
Igor Murashkineb6c7c22015-02-04 17:30:43 -080027 public:
28 static void SetUpTestCase() {
Vladimir Markob9c29f62019-03-20 14:22:51 +000029 CommonArtTest::SetUpAndroidRootEnvVars();
Igor Murashkineb6c7c22015-02-04 17:30:43 -080030 }
31};
Carl Shapirofc322c72011-07-27 00:20:01 -070032
Peter Collingbourne29310572022-03-10 16:14:04 -080033static int test_vfprintf(FILE*, const char*, va_list) { return 0; }
34static void test_abort() {}
35static void test_exit(jint) {}
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070036
Peter Collingbourne29310572022-03-10 16:14:04 -080037TEST_F(ParsedOptionsTest, ParsedOptions) {
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070038 std::string boot_class_path;
Przemyslaw Szczepaniak5b8e6e32015-09-30 14:40:33 +010039 std::string class_path;
Brian Carlstrom69b15fb2011-09-03 12:25:21 -070040 boot_class_path += "-Xbootclasspath:";
Przemyslaw Szczepaniak5b8e6e32015-09-30 14:40:33 +010041
42 bool first_dex_file = true;
Vladimir Markob9c29f62019-03-20 14:22:51 +000043 for (const std::string& dex_file_name : GetLibCoreDexFileNames()) {
Przemyslaw Szczepaniak5b8e6e32015-09-30 14:40:33 +010044 if (!first_dex_file) {
45 class_path += ":";
46 } else {
47 first_dex_file = false;
48 }
49 class_path += dex_file_name;
50 }
51 boot_class_path += class_path;
Vladimir Marko91f10322018-12-07 18:04:10 +000052 std::vector<std::string> expected_boot_class_path;
53 Split(class_path, ':', &expected_boot_class_path);
Brian Carlstromf734cf52011-08-17 16:28:14 -070054
Ian Rogerse63db272014-07-15 15:36:11 -070055 RuntimeOptions options;
Mathieu Chartier2cebb242015-04-21 16:50:40 -070056 options.push_back(std::make_pair(boot_class_path.c_str(), nullptr));
57 options.push_back(std::make_pair("-classpath", nullptr));
Narayan Kamathd1ef4362015-11-12 11:49:06 +000058 options.push_back(std::make_pair(class_path.c_str(), nullptr));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070059 options.push_back(std::make_pair("-cp", nullptr));
Narayan Kamathd1ef4362015-11-12 11:49:06 +000060 options.push_back(std::make_pair(class_path.c_str(), nullptr));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070061 options.push_back(std::make_pair("-Ximage:boot_image", nullptr));
62 options.push_back(std::make_pair("-Xcheck:jni", nullptr));
63 options.push_back(std::make_pair("-Xms2048", nullptr));
64 options.push_back(std::make_pair("-Xmx4k", nullptr));
65 options.push_back(std::make_pair("-Xss1m", nullptr));
66 options.push_back(std::make_pair("-XX:HeapTargetUtilization=0.75", nullptr));
Hans Boehmbb2467b2019-03-29 22:55:06 -070067 options.push_back(std::make_pair("-XX:StopForNativeAllocs=200m", nullptr));
Mathieu Chartier2cebb242015-04-21 16:50:40 -070068 options.push_back(std::make_pair("-Dfoo=bar", nullptr));
69 options.push_back(std::make_pair("-Dbaz=qux", nullptr));
70 options.push_back(std::make_pair("-verbose:gc,class,jni", nullptr));
Peter Collingbourne29310572022-03-10 16:14:04 -080071 options.push_back(std::make_pair("vfprintf", reinterpret_cast<void*>(test_vfprintf)));
72 options.push_back(std::make_pair("abort", reinterpret_cast<void*>(test_abort)));
73 options.push_back(std::make_pair("exit", reinterpret_cast<void*>(test_exit)));
Brian Carlstromf734cf52011-08-17 16:28:14 -070074
Igor Murashkinaaebaa02015-01-26 10:55:53 -080075 RuntimeArgumentMap map;
Vladimir Marko88b2b802015-12-04 14:19:04 +000076 bool parsed = ParsedOptions::Parse(options, false, &map);
77 ASSERT_TRUE(parsed);
Igor Murashkinaaebaa02015-01-26 10:55:53 -080078 ASSERT_NE(0u, map.Size());
79
80 using Opt = RuntimeArgumentMap;
81
82#define EXPECT_PARSED_EQ(expected, actual_key) EXPECT_EQ(expected, map.GetOrDefault(actual_key))
Vladimir Marko91f10322018-12-07 18:04:10 +000083#define EXPECT_PARSED_EQ_AS_STRING_VECTOR(expected, actual_key) \
84 EXPECT_EQ(expected, static_cast<std::vector<std::string>>(map.GetOrDefault(actual_key)))
Igor Murashkinaaebaa02015-01-26 10:55:53 -080085#define EXPECT_PARSED_EXISTS(actual_key) EXPECT_TRUE(map.Exists(actual_key))
86
Vladimir Marko91f10322018-12-07 18:04:10 +000087 EXPECT_PARSED_EQ_AS_STRING_VECTOR(expected_boot_class_path, Opt::BootClassPath);
Narayan Kamathd1ef4362015-11-12 11:49:06 +000088 EXPECT_PARSED_EQ(class_path, Opt::ClassPath);
Victor Hsieh61ffd042021-05-20 15:14:25 -070089 std::vector<std::string> boot_images = map.GetOrDefault(Opt::Image);
90 ASSERT_EQ(1U, boot_images.size());
91 EXPECT_EQ(std::string("boot_image"), boot_images[0]);
Igor Murashkinaaebaa02015-01-26 10:55:53 -080092 EXPECT_PARSED_EXISTS(Opt::CheckJni);
93 EXPECT_PARSED_EQ(2048U, Opt::MemoryInitialSize);
94 EXPECT_PARSED_EQ(4 * KB, Opt::MemoryMaximumSize);
95 EXPECT_PARSED_EQ(1 * MB, Opt::StackSize);
Hans Boehmbb2467b2019-03-29 22:55:06 -070096 EXPECT_PARSED_EQ(200 * MB, Opt::StopForNativeAllocs);
Igor Murashkinaaebaa02015-01-26 10:55:53 -080097 EXPECT_DOUBLE_EQ(0.75, map.GetOrDefault(Opt::HeapTargetUtilization));
Peter Collingbourne29310572022-03-10 16:14:04 -080098 EXPECT_TRUE(reinterpret_cast<void*>(test_vfprintf) == map.GetOrDefault(Opt::HookVfprintf));
99 EXPECT_TRUE(reinterpret_cast<void*>(test_exit) == map.GetOrDefault(Opt::HookExit));
100 EXPECT_TRUE(reinterpret_cast<void*>(test_abort) == map.GetOrDefault(Opt::HookAbort));
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800101 EXPECT_TRUE(VLOG_IS_ON(class_linker));
102 EXPECT_FALSE(VLOG_IS_ON(compiler));
103 EXPECT_FALSE(VLOG_IS_ON(heap));
104 EXPECT_TRUE(VLOG_IS_ON(gc));
Mathieu Chartier765b2a02019-05-02 11:04:13 -0700105 EXPECT_FALSE(VLOG_IS_ON(interpreter));
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800106 EXPECT_FALSE(VLOG_IS_ON(jdwp));
107 EXPECT_TRUE(VLOG_IS_ON(jni));
108 EXPECT_FALSE(VLOG_IS_ON(monitor));
Phil Wang751beff2015-08-28 15:17:15 +0800109 EXPECT_FALSE(VLOG_IS_ON(signals));
110 EXPECT_FALSE(VLOG_IS_ON(simulator));
Elliott Hughes4dd9b4d2011-12-12 18:29:24 -0800111 EXPECT_FALSE(VLOG_IS_ON(startup));
112 EXPECT_FALSE(VLOG_IS_ON(third_party_jni));
113 EXPECT_FALSE(VLOG_IS_ON(threads));
Igor Murashkinaaebaa02015-01-26 10:55:53 -0800114
115 auto&& properties_list = map.GetOrDefault(Opt::PropertiesList);
116 ASSERT_EQ(2U, properties_list.size());
117 EXPECT_EQ("foo=bar", properties_list[0]);
118 EXPECT_EQ("baz=qux", properties_list[1]);
Brian Carlstromf734cf52011-08-17 16:28:14 -0700119}
120
Igor Murashkin2798da12015-02-06 17:59:39 -0800121TEST_F(ParsedOptionsTest, ParsedOptionsGc) {
122 RuntimeOptions options;
Mathieu Chartierf8e5d8c2018-04-06 13:35:37 -0700123 options.push_back(std::make_pair("-Xgc:SS", nullptr));
Igor Murashkin2798da12015-02-06 17:59:39 -0800124
125 RuntimeArgumentMap map;
Vladimir Marko88b2b802015-12-04 14:19:04 +0000126 bool parsed = ParsedOptions::Parse(options, false, &map);
127 ASSERT_TRUE(parsed);
Igor Murashkin2798da12015-02-06 17:59:39 -0800128 ASSERT_NE(0u, map.Size());
129
130 using Opt = RuntimeArgumentMap;
131
132 EXPECT_TRUE(map.Exists(Opt::GcOption));
133
134 XGcOption xgc = map.GetOrDefault(Opt::GcOption);
Mathieu Chartierf8e5d8c2018-04-06 13:35:37 -0700135 EXPECT_EQ(gc::kCollectorTypeSS, xgc.collector_type_);
Andreas Gampea00f0122015-12-16 16:54:35 -0800136}
137
Albert Mingkun Yang0b4d1462018-11-29 13:25:35 +0000138TEST_F(ParsedOptionsTest, ParsedOptionsGenerationalCC) {
139 RuntimeOptions options;
140 options.push_back(std::make_pair("-Xgc:generational_cc", nullptr));
141
142 RuntimeArgumentMap map;
143 bool parsed = ParsedOptions::Parse(options, false, &map);
144 ASSERT_TRUE(parsed);
145 ASSERT_NE(0u, map.Size());
146
147 using Opt = RuntimeArgumentMap;
148
149 EXPECT_TRUE(map.Exists(Opt::GcOption));
150
151 XGcOption xgc = map.GetOrDefault(Opt::GcOption);
152 ASSERT_TRUE(xgc.generational_cc);
153}
154
Andreas Gampea00f0122015-12-16 16:54:35 -0800155TEST_F(ParsedOptionsTest, ParsedOptionsInstructionSet) {
156 using Opt = RuntimeArgumentMap;
157
158 {
159 // Nothing set, should be kRuntimeISA.
160 RuntimeOptions options;
161 RuntimeArgumentMap map;
162 bool parsed = ParsedOptions::Parse(options, false, &map);
163 ASSERT_TRUE(parsed);
164 InstructionSet isa = map.GetOrDefault(Opt::ImageInstructionSet);
165 EXPECT_EQ(kRuntimeISA, isa);
166 }
167
Vladimir Marko41b605c2020-02-12 10:52:22 +0000168 const char* isa_strings[] = { "arm", "arm64", "x86", "x86_64" };
Andreas Gampea00f0122015-12-16 16:54:35 -0800169 InstructionSet ISAs[] = { InstructionSet::kArm,
170 InstructionSet::kArm64,
171 InstructionSet::kX86,
Vladimir Marko41b605c2020-02-12 10:52:22 +0000172 InstructionSet::kX86_64 };
Andreas Gampea00f0122015-12-16 16:54:35 -0800173 static_assert(arraysize(isa_strings) == arraysize(ISAs), "Need same amount.");
174
175 for (size_t i = 0; i < arraysize(isa_strings); ++i) {
176 RuntimeOptions options;
177 options.push_back(std::make_pair("imageinstructionset", isa_strings[i]));
178 RuntimeArgumentMap map;
179 bool parsed = ParsedOptions::Parse(options, false, &map);
180 ASSERT_TRUE(parsed);
181 InstructionSet isa = map.GetOrDefault(Opt::ImageInstructionSet);
182 EXPECT_EQ(ISAs[i], isa);
183 }
184}
Igor Murashkin2798da12015-02-06 17:59:39 -0800185
Brian Carlstromf734cf52011-08-17 16:28:14 -0700186} // namespace art