blob: 0a9c873988cb5da1ce9559c3259d08b1d3827e3b [file] [log] [blame]
Andreas Gampe097f34c2017-08-23 08:57:51 -07001/*
2 * Copyright (C) 2017 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#ifndef COMPILER_OPTIONS_KEY
18#error "Please #define COMPILER_OPTIONS_KEY before #including this file"
19#define COMPILER_OPTIONS_KEY(...) // Don't display errors in this file in IDEs.
20#endif
21
22// This file defines the list of keys for CompilerOptionsMap.
23// These can be used with CompilerOptionsMap.Get/Set/etc, once that template class has been
24// instantiated.
25//
26// Column Descriptions:
27// <<Type>> <<Key Name>> (<<Default Value>>)
28//
29// Default values are only used by Map::GetOrDefault(K<T>).
30// If a default value is omitted here, T{} is used as the default value, which is
31// almost-always the value of the type as if it was memset to all 0.
32//
33// Please keep the columns aligned if possible when adding new rows.
34//
35
36// Parse-able keys from the command line.
37
38// TODO: Add type parser.
39COMPILER_OPTIONS_KEY (std::string, CompilerFilter)
40COMPILER_OPTIONS_KEY (Unit, PIC)
41COMPILER_OPTIONS_KEY (unsigned int, HugeMethodMaxThreshold)
42COMPILER_OPTIONS_KEY (unsigned int, LargeMethodMaxThreshold)
43COMPILER_OPTIONS_KEY (unsigned int, SmallMethodMaxThreshold)
44COMPILER_OPTIONS_KEY (unsigned int, TinyMethodMaxThreshold)
45COMPILER_OPTIONS_KEY (unsigned int, NumDexMethodsThreshold)
46COMPILER_OPTIONS_KEY (unsigned int, InlineMaxCodeUnitsThreshold)
47COMPILER_OPTIONS_KEY (bool, GenerateDebugInfo)
48COMPILER_OPTIONS_KEY (bool, GenerateMiniDebugInfo)
49COMPILER_OPTIONS_KEY (bool, GenerateBuildID)
50COMPILER_OPTIONS_KEY (Unit, Debuggable)
Nicolas Geoffrayacc56ac2018-10-09 08:45:24 +010051COMPILER_OPTIONS_KEY (Unit, Baseline)
Andreas Gampe097f34c2017-08-23 08:57:51 -070052COMPILER_OPTIONS_KEY (double, TopKProfileThreshold)
53COMPILER_OPTIONS_KEY (bool, AbortOnHardVerifierFailure)
Andreas Gampef39208f2017-10-19 15:06:59 -070054COMPILER_OPTIONS_KEY (bool, AbortOnSoftVerifierFailure)
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -070055COMPILER_OPTIONS_KEY (bool, ResolveStartupConstStrings, false)
Andreas Gampe097f34c2017-08-23 08:57:51 -070056COMPILER_OPTIONS_KEY (std::string, DumpInitFailures)
57COMPILER_OPTIONS_KEY (std::string, DumpCFG)
58COMPILER_OPTIONS_KEY (Unit, DumpCFGAppend)
59// TODO: Add type parser.
60COMPILER_OPTIONS_KEY (std::string, RegisterAllocationStrategy)
61COMPILER_OPTIONS_KEY (ParseStringList<','>, VerboseMethods)
Mathieu Chartiercd0f38f2018-10-15 09:44:35 -070062COMPILER_OPTIONS_KEY (bool, DeduplicateCode, true)
Nicolas Geoffray8d728322018-01-18 22:44:32 +000063COMPILER_OPTIONS_KEY (Unit, CountHotnessInCompiledCode)
Andreas Gampe5c803112018-04-13 17:28:34 -070064COMPILER_OPTIONS_KEY (ProfileMethodsCheck, CheckProfiledMethods)
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +000065COMPILER_OPTIONS_KEY (Unit, DumpTimings)
Vladimir Marko2da52b02018-05-08 16:31:34 +010066COMPILER_OPTIONS_KEY (Unit, DumpPassTimings)
Nicolas Geoffray2d8801f2017-11-28 15:50:07 +000067COMPILER_OPTIONS_KEY (Unit, DumpStats)
Mathieu Chartier1a842962018-11-13 15:09:51 -080068COMPILER_OPTIONS_KEY (unsigned int, MaxImageBlockSize)
Andreas Gampe097f34c2017-08-23 08:57:51 -070069
70#undef COMPILER_OPTIONS_KEY