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