1/*
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 (bool,                        CompileArtTest)
41COMPILER_OPTIONS_KEY (Unit,                        PIC)
42COMPILER_OPTIONS_KEY (unsigned int,                HugeMethodMaxThreshold)
43COMPILER_OPTIONS_KEY (unsigned int,                LargeMethodMaxThreshold)
44COMPILER_OPTIONS_KEY (unsigned int,                NumDexMethodsThreshold)
45COMPILER_OPTIONS_KEY (unsigned int,                InlineMaxCodeUnitsThreshold)
46COMPILER_OPTIONS_KEY (bool,                        GenerateDebugInfo)
47COMPILER_OPTIONS_KEY (bool,                        GenerateMiniDebugInfo)
48COMPILER_OPTIONS_KEY (bool,                        GenerateBuildID)
49COMPILER_OPTIONS_KEY (Unit,                        Debuggable)
50COMPILER_OPTIONS_KEY (Unit,                        Baseline)
51COMPILER_OPTIONS_KEY (double,                      TopKProfileThreshold)
52COMPILER_OPTIONS_KEY (bool,                        AbortOnHardVerifierFailure)
53COMPILER_OPTIONS_KEY (bool,                        AbortOnSoftVerifierFailure)
54COMPILER_OPTIONS_KEY (bool,                        ResolveStartupConstStrings, false)
55COMPILER_OPTIONS_KEY (bool,                        InitializeAppImageClasses, false)
56COMPILER_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)
62COMPILER_OPTIONS_KEY (bool,                        DeduplicateCode,            true)
63COMPILER_OPTIONS_KEY (Unit,                        CountHotnessInCompiledCode)
64COMPILER_OPTIONS_KEY (ProfileMethodsCheck,         CheckProfiledMethods)
65COMPILER_OPTIONS_KEY (Unit,                        DumpTimings)
66COMPILER_OPTIONS_KEY (Unit,                        DumpPassTimings)
67COMPILER_OPTIONS_KEY (Unit,                        DumpStats)
68COMPILER_OPTIONS_KEY (unsigned int,                MaxImageBlockSize)
69
70#undef COMPILER_OPTIONS_KEY
71