blob: ccc85c8951c085e0372348d80a96723875f85019 [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 ART_DEX2OAT_DEX2OAT_OPTIONS_H_
18#define ART_DEX2OAT_DEX2OAT_OPTIONS_H_
19
20#include <cstdio>
21#include <string>
22#include <vector>
23
24#include "base/variant_map.h"
Andreas Gampe097f34c2017-08-23 08:57:51 -070025#include "cmdline_types.h" // TODO: don't need to include this file here
26#include "compiler.h"
David Sehr9e734c72018-01-04 17:56:19 -080027#include "dex/compact_dex_level.h"
Andreas Gampe097f34c2017-08-23 08:57:51 -070028#include "driver/compiler_options_map.h"
29#include "image.h"
30
31namespace art {
32
33template <typename TVariantMap,
34 template <typename TKeyValue> class TVariantMapKey>
35struct CmdlineParser;
36
37// Define a key that is usable with a Dex2oatArgumentMap.
38// This key will *not* work with other subtypes of VariantMap.
39template <typename TValue>
40struct Dex2oatArgumentMapKey : VariantMapKey<TValue> {
41 Dex2oatArgumentMapKey() {}
42 explicit Dex2oatArgumentMapKey(TValue default_value)
43 : VariantMapKey<TValue>(std::move(default_value)) {}
44 // Don't ODR-use constexpr default values, which means that Struct::Fields
45 // that are declared 'static constexpr T Name = Value' don't need to have a matching definition.
46};
47
48// Defines a type-safe heterogeneous key->value map.
49// Use the VariantMap interface to look up or to store a Dex2oatArgumentMapKey,Value pair.
50//
51// Example:
52// auto map = Dex2oatArgumentMap();
53// map.Set(Dex2oatArgumentMap::ZipFd, -1);
54// int *target_utilization = map.Get(Dex2oatArgumentMap::ZipFd);
55//
56struct Dex2oatArgumentMap : CompilerOptionsMap<Dex2oatArgumentMap, Dex2oatArgumentMapKey> {
57 // This 'using' line is necessary to inherit the variadic constructor.
58 using CompilerOptionsMap<Dex2oatArgumentMap, Dex2oatArgumentMapKey>::CompilerOptionsMap;
59
60 static std::unique_ptr<Dex2oatArgumentMap> Parse(int argc,
61 const char** argv,
62 std::string* error_msg);
63
64 // Make the next many usages of Key slightly shorter to type.
65 template <typename TValue>
66 using Key = Dex2oatArgumentMapKey<TValue>;
67
68 // List of key declarations, shorthand for 'static const Key<T> Name'
69#define DEX2OAT_OPTIONS_KEY(Type, Name, ...) static const Key<Type> (Name);
70#include "dex2oat_options.def"
71};
72
73extern template struct CompilerOptionsMap<Dex2oatArgumentMap, Dex2oatArgumentMapKey>;
74
75} // namespace art
76
77#endif // ART_DEX2OAT_DEX2OAT_OPTIONS_H_