blob: 4f6e9226655b8dfe9a1fbec7aae146c42a70b14e [file] [log] [blame]
Mathieu Chartier5bdab122015-01-26 18:30:19 -08001/*
2 * Copyright (C) 2015 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 "compiler_options.h"
18
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +000019#include <fstream>
20
Mathieu Chartier5bdab122015-01-26 18:30:19 -080021#include "dex/pass_manager.h"
22
23namespace art {
24
25CompilerOptions::CompilerOptions()
26 : compiler_filter_(kDefaultCompilerFilter),
27 huge_method_threshold_(kDefaultHugeMethodThreshold),
28 large_method_threshold_(kDefaultLargeMethodThreshold),
29 small_method_threshold_(kDefaultSmallMethodThreshold),
30 tiny_method_threshold_(kDefaultTinyMethodThreshold),
31 num_dex_methods_threshold_(kDefaultNumDexMethodsThreshold),
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +000032 inline_depth_limit_(kUnsetInlineDepthLimit),
33 inline_max_code_units_(kUnsetInlineMaxCodeUnits),
Jeff Haodcdc85b2015-12-04 14:06:18 -080034 no_inline_from_(nullptr),
Mathieu Chartier5bdab122015-01-26 18:30:19 -080035 include_patch_information_(kDefaultIncludePatchInformation),
36 top_k_profile_threshold_(kDefaultTopKProfileThreshold),
Andreas Gampe7b2f09e2015-03-02 14:07:33 -080037 debuggable_(false),
David Srbecky0cf44932015-12-09 14:09:59 +000038 native_debuggable_(kDefaultNativeDebuggable),
David Srbecky8363c772015-05-28 16:12:43 +010039 generate_debug_info_(kDefaultGenerateDebugInfo),
Mathieu Chartier5bdab122015-01-26 18:30:19 -080040 implicit_null_checks_(true),
41 implicit_so_checks_(true),
42 implicit_suspend_checks_(false),
43 compile_pic_(false),
44 verbose_methods_(nullptr),
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +000045 pass_manager_options_(),
Andreas Gampe6cf49e52015-03-05 13:08:45 -080046 abort_on_hard_verifier_failure_(false),
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +000047 init_failure_output_(nullptr),
48 dump_cfg_file_name_(""),
49 dump_cfg_append_(false) {
Mathieu Chartier5bdab122015-01-26 18:30:19 -080050}
51
Vladimir Markob163bb72015-03-31 21:49:49 +010052CompilerOptions::~CompilerOptions() {
53 // The destructor looks empty but it destroys a PassManagerOptions object. We keep it here
54 // because we don't want to include the PassManagerOptions definition from the header file.
55}
56
Mathieu Chartier5bdab122015-01-26 18:30:19 -080057CompilerOptions::CompilerOptions(CompilerFilter compiler_filter,
58 size_t huge_method_threshold,
59 size_t large_method_threshold,
60 size_t small_method_threshold,
61 size_t tiny_method_threshold,
62 size_t num_dex_methods_threshold,
Calin Juravleec748352015-07-29 13:52:12 +010063 size_t inline_depth_limit,
64 size_t inline_max_code_units,
Vladimir Marko47496c22016-01-27 16:15:08 +000065 const std::vector<const DexFile*>* no_inline_from,
Mathieu Chartier5bdab122015-01-26 18:30:19 -080066 bool include_patch_information,
67 double top_k_profile_threshold,
Andreas Gampe7b2f09e2015-03-02 14:07:33 -080068 bool debuggable,
David Srbecky8363c772015-05-28 16:12:43 +010069 bool generate_debug_info,
Mathieu Chartier5bdab122015-01-26 18:30:19 -080070 bool implicit_null_checks,
71 bool implicit_so_checks,
72 bool implicit_suspend_checks,
73 bool compile_pic,
74 const std::vector<std::string>* verbose_methods,
Andreas Gampe6cf49e52015-03-05 13:08:45 -080075 std::ostream* init_failure_output,
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +000076 bool abort_on_hard_verifier_failure,
77 const std::string& dump_cfg_file_name,
78 bool dump_cfg_append
Mathieu Chartier5bdab122015-01-26 18:30:19 -080079 ) : // NOLINT(whitespace/parens)
80 compiler_filter_(compiler_filter),
81 huge_method_threshold_(huge_method_threshold),
82 large_method_threshold_(large_method_threshold),
83 small_method_threshold_(small_method_threshold),
84 tiny_method_threshold_(tiny_method_threshold),
85 num_dex_methods_threshold_(num_dex_methods_threshold),
Calin Juravleec748352015-07-29 13:52:12 +010086 inline_depth_limit_(inline_depth_limit),
87 inline_max_code_units_(inline_max_code_units),
Jeff Haodcdc85b2015-12-04 14:06:18 -080088 no_inline_from_(no_inline_from),
Mathieu Chartier5bdab122015-01-26 18:30:19 -080089 include_patch_information_(include_patch_information),
90 top_k_profile_threshold_(top_k_profile_threshold),
Andreas Gampe7b2f09e2015-03-02 14:07:33 -080091 debuggable_(debuggable),
David Srbecky0cf44932015-12-09 14:09:59 +000092 native_debuggable_(kDefaultNativeDebuggable),
David Srbecky8363c772015-05-28 16:12:43 +010093 generate_debug_info_(generate_debug_info),
Mathieu Chartier5bdab122015-01-26 18:30:19 -080094 implicit_null_checks_(implicit_null_checks),
95 implicit_so_checks_(implicit_so_checks),
96 implicit_suspend_checks_(implicit_suspend_checks),
97 compile_pic_(compile_pic),
98 verbose_methods_(verbose_methods),
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +000099 pass_manager_options_(),
Andreas Gampe6cf49e52015-03-05 13:08:45 -0800100 abort_on_hard_verifier_failure_(abort_on_hard_verifier_failure),
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000101 init_failure_output_(init_failure_output),
102 dump_cfg_file_name_(dump_cfg_file_name),
103 dump_cfg_append_(dump_cfg_append) {
Mathieu Chartier5bdab122015-01-26 18:30:19 -0800104}
105
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +0000106void CompilerOptions::ParseHugeMethodMax(const StringPiece& option, UsageFn Usage) {
107 ParseUintOption(option, "--huge-method-max", &huge_method_threshold_, Usage);
108}
109
110void CompilerOptions::ParseLargeMethodMax(const StringPiece& option, UsageFn Usage) {
111 ParseUintOption(option, "--large-method-max", &large_method_threshold_, Usage);
112}
113
114void CompilerOptions::ParseSmallMethodMax(const StringPiece& option, UsageFn Usage) {
115 ParseUintOption(option, "--small-method-max", &small_method_threshold_, Usage);
116}
117
118void CompilerOptions::ParseTinyMethodMax(const StringPiece& option, UsageFn Usage) {
119 ParseUintOption(option, "--tiny-method-max", &tiny_method_threshold_, Usage);
120}
121
122void CompilerOptions::ParseNumDexMethods(const StringPiece& option, UsageFn Usage) {
123 ParseUintOption(option, "--num-dex-methods", &num_dex_methods_threshold_, Usage);
124}
125
126void CompilerOptions::ParseInlineDepthLimit(const StringPiece& option, UsageFn Usage) {
127 ParseUintOption(option, "--inline-depth-limit", &inline_depth_limit_, Usage);
128}
129
130void CompilerOptions::ParseInlineMaxCodeUnits(const StringPiece& option, UsageFn Usage) {
Nicolas Geoffray18c12bb2015-12-15 12:09:43 +0000131 ParseUintOption(option, "--inline-max-code-units", &inline_max_code_units_, Usage);
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +0000132}
133
134void CompilerOptions::ParseDisablePasses(const StringPiece& option,
135 UsageFn Usage ATTRIBUTE_UNUSED) {
136 DCHECK(option.starts_with("--disable-passes="));
137 const std::string disable_passes = option.substr(strlen("--disable-passes=")).data();
138 pass_manager_options_.SetDisablePassList(disable_passes);
139}
140
141void CompilerOptions::ParsePrintPasses(const StringPiece& option,
142 UsageFn Usage ATTRIBUTE_UNUSED) {
143 DCHECK(option.starts_with("--print-passes="));
144 const std::string print_passes = option.substr(strlen("--print-passes=")).data();
145 pass_manager_options_.SetPrintPassList(print_passes);
146}
147
148void CompilerOptions::ParseDumpCfgPasses(const StringPiece& option,
149 UsageFn Usage ATTRIBUTE_UNUSED) {
150 DCHECK(option.starts_with("--dump-cfg-passes="));
151 const std::string dump_passes_string = option.substr(strlen("--dump-cfg-passes=")).data();
152 pass_manager_options_.SetDumpPassList(dump_passes_string);
153}
154
155void CompilerOptions::ParsePassOptions(const StringPiece& option,
156 UsageFn Usage ATTRIBUTE_UNUSED) {
157 DCHECK(option.starts_with("--pass-options="));
158 const std::string pass_options = option.substr(strlen("--pass-options=")).data();
159 pass_manager_options_.SetOverriddenPassOptions(pass_options);
160}
161
162void CompilerOptions::ParseDumpInitFailures(const StringPiece& option,
163 UsageFn Usage ATTRIBUTE_UNUSED) {
164 DCHECK(option.starts_with("--dump-init-failures="));
165 std::string file_name = option.substr(strlen("--dump-init-failures=")).data();
166 init_failure_output_.reset(new std::ofstream(file_name));
167 if (init_failure_output_.get() == nullptr) {
168 LOG(ERROR) << "Failed to allocate ofstream";
169 } else if (init_failure_output_->fail()) {
170 LOG(ERROR) << "Failed to open " << file_name << " for writing the initialization "
171 << "failures.";
172 init_failure_output_.reset();
173 }
174}
175
176bool CompilerOptions::ParseCompilerOption(const StringPiece& option, UsageFn Usage) {
177 if (option.starts_with("--compiler-filter=")) {
178 const char* compiler_filter_string = option.substr(strlen("--compiler-filter=")).data();
179 if (strcmp(compiler_filter_string, "verify-none") == 0) {
180 compiler_filter_ = CompilerOptions::kVerifyNone;
181 } else if (strcmp(compiler_filter_string, "interpret-only") == 0) {
182 compiler_filter_ = CompilerOptions::kInterpretOnly;
183 } else if (strcmp(compiler_filter_string, "verify-at-runtime") == 0) {
184 compiler_filter_ = CompilerOptions::kVerifyAtRuntime;
185 } else if (strcmp(compiler_filter_string, "space") == 0) {
186 compiler_filter_ = CompilerOptions::kSpace;
187 } else if (strcmp(compiler_filter_string, "balanced") == 0) {
188 compiler_filter_ = CompilerOptions::kBalanced;
189 } else if (strcmp(compiler_filter_string, "speed") == 0) {
190 compiler_filter_ = CompilerOptions::kSpeed;
191 } else if (strcmp(compiler_filter_string, "everything") == 0) {
192 compiler_filter_ = CompilerOptions::kEverything;
193 } else if (strcmp(compiler_filter_string, "time") == 0) {
194 compiler_filter_ = CompilerOptions::kTime;
195 } else {
196 Usage("Unknown --compiler-filter value %s", compiler_filter_string);
197 }
198 } else if (option == "--compile-pic") {
199 compile_pic_ = true;
200 } else if (option.starts_with("--huge-method-max=")) {
201 ParseHugeMethodMax(option, Usage);
202 } else if (option.starts_with("--large-method-max=")) {
203 ParseLargeMethodMax(option, Usage);
204 } else if (option.starts_with("--small-method-max=")) {
205 ParseSmallMethodMax(option, Usage);
206 } else if (option.starts_with("--tiny-method-max=")) {
207 ParseTinyMethodMax(option, Usage);
208 } else if (option.starts_with("--num-dex-methods=")) {
209 ParseNumDexMethods(option, Usage);
210 } else if (option.starts_with("--inline-depth-limit=")) {
211 ParseInlineDepthLimit(option, Usage);
212 } else if (option.starts_with("--inline-max-code-units=")) {
213 ParseInlineMaxCodeUnits(option, Usage);
214 } else if (option == "--generate-debug-info" || option == "-g") {
215 generate_debug_info_ = true;
216 } else if (option == "--no-generate-debug-info") {
217 generate_debug_info_ = false;
218 } else if (option == "--debuggable") {
219 debuggable_ = true;
David Srbecky0cf44932015-12-09 14:09:59 +0000220 } else if (option == "--native-debuggable") {
221 native_debuggable_ = true;
222 debuggable_ = true;
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +0000223 } else if (option.starts_with("--top-k-profile-threshold=")) {
224 ParseDouble(option.data(), '=', 0.0, 100.0, &top_k_profile_threshold_, Usage);
225 } else if (option == "--include-patch-information") {
226 include_patch_information_ = true;
227 } else if (option == "--no-include-patch-information") {
228 include_patch_information_ = false;
229 } else if (option == "--abort-on-hard-verifier-error") {
230 abort_on_hard_verifier_failure_ = true;
231 } else if (option == "--print-pass-names") {
232 pass_manager_options_.SetPrintPassNames(true);
233 } else if (option.starts_with("--disable-passes=")) {
234 ParseDisablePasses(option, Usage);
235 } else if (option.starts_with("--print-passes=")) {
236 ParsePrintPasses(option, Usage);
237 } else if (option == "--print-all-passes") {
238 pass_manager_options_.SetPrintAllPasses();
239 } else if (option.starts_with("--dump-cfg-passes=")) {
240 ParseDumpCfgPasses(option, Usage);
241 } else if (option == "--print-pass-options") {
242 pass_manager_options_.SetPrintPassOptions(true);
243 } else if (option.starts_with("--pass-options=")) {
244 ParsePassOptions(option, Usage);
245 } else if (option.starts_with("--dump-init-failures=")) {
246 ParseDumpInitFailures(option, Usage);
Nicolas Geoffrayc903b6a2016-01-18 12:56:06 +0000247 } else if (option.starts_with("--dump-cfg=")) {
248 dump_cfg_file_name_ = option.substr(strlen("--dump-cfg=")).data();
249 } else if (option.starts_with("--dump-cfg-append")) {
250 dump_cfg_append_ = true;
Nicolas Geoffrayabbb0f72015-10-29 18:55:58 +0000251 } else {
252 // Option not recognized.
253 return false;
254 }
255 return true;
256}
257
Mathieu Chartier5bdab122015-01-26 18:30:19 -0800258} // namespace art