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 (Unit, PIC) 41COMPILER_OPTIONS_KEY (unsigned int, HugeMethodMaxThreshold) 42COMPILER_OPTIONS_KEY (unsigned int, LargeMethodMaxThreshold) 43COMPILER_OPTIONS_KEY (unsigned int, NumDexMethodsThreshold) 44COMPILER_OPTIONS_KEY (unsigned int, InlineMaxCodeUnitsThreshold) 45COMPILER_OPTIONS_KEY (bool, GenerateDebugInfo) 46COMPILER_OPTIONS_KEY (bool, GenerateMiniDebugInfo) 47COMPILER_OPTIONS_KEY (bool, GenerateBuildID) 48COMPILER_OPTIONS_KEY (Unit, Debuggable) 49COMPILER_OPTIONS_KEY (Unit, Baseline) 50COMPILER_OPTIONS_KEY (double, TopKProfileThreshold) 51COMPILER_OPTIONS_KEY (bool, AbortOnHardVerifierFailure) 52COMPILER_OPTIONS_KEY (bool, AbortOnSoftVerifierFailure) 53COMPILER_OPTIONS_KEY (bool, ResolveStartupConstStrings, false) 54COMPILER_OPTIONS_KEY (bool, InitializeAppImageClasses, false) 55COMPILER_OPTIONS_KEY (std::string, DumpInitFailures) 56COMPILER_OPTIONS_KEY (std::string, DumpCFG) 57COMPILER_OPTIONS_KEY (Unit, DumpCFGAppend) 58// TODO: Add type parser. 59COMPILER_OPTIONS_KEY (std::string, RegisterAllocationStrategy) 60COMPILER_OPTIONS_KEY (ParseStringList<','>, VerboseMethods) 61COMPILER_OPTIONS_KEY (bool, DeduplicateCode, true) 62COMPILER_OPTIONS_KEY (Unit, CountHotnessInCompiledCode) 63COMPILER_OPTIONS_KEY (ProfileMethodsCheck, CheckProfiledMethods) 64COMPILER_OPTIONS_KEY (Unit, DumpTimings) 65COMPILER_OPTIONS_KEY (Unit, DumpPassTimings) 66COMPILER_OPTIONS_KEY (Unit, DumpStats) 67COMPILER_OPTIONS_KEY (unsigned int, MaxImageBlockSize) 68 69#undef COMPILER_OPTIONS_KEY 70