blob: cccd6184c6fc03097dcbbc021a9c91da7a275d80 [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)
51COMPILER_OPTIONS_KEY (double, TopKProfileThreshold)
52COMPILER_OPTIONS_KEY (bool, AbortOnHardVerifierFailure)
Andreas Gampef39208f2017-10-19 15:06:59 -070053COMPILER_OPTIONS_KEY (bool, AbortOnSoftVerifierFailure)
Andreas Gampe097f34c2017-08-23 08:57:51 -070054COMPILER_OPTIONS_KEY (std::string, DumpInitFailures)
55COMPILER_OPTIONS_KEY (std::string, DumpCFG)
56COMPILER_OPTIONS_KEY (Unit, DumpCFGAppend)
57// TODO: Add type parser.
58COMPILER_OPTIONS_KEY (std::string, RegisterAllocationStrategy)
59COMPILER_OPTIONS_KEY (ParseStringList<','>, VerboseMethods)
Andreas Gampecac31ad2017-11-06 20:01:17 -080060COMPILER_OPTIONS_KEY (bool, DeduplicateCode, true)
Andreas Gampe097f34c2017-08-23 08:57:51 -070061
62#undef COMPILER_OPTIONS_KEY