blob: 71a2423ae1c8465b64517443a7579bb3ce21da93 [file] [log] [blame]
Alexander Shaposhnikovbd934ff2018-10-11 22:33:50 +00001//===- CopyConfig.h -------------------------------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#ifndef LLVM_TOOLS_LLVM_OBJCOPY_COPY_CONFIG_H
11#define LLVM_TOOLS_LLVM_OBJCOPY_COPY_CONFIG_H
12
13#include "llvm/ADT/ArrayRef.h"
14#include "llvm/ADT/Optional.h"
15#include "llvm/ADT/SmallVector.h"
16#include "llvm/ADT/StringMap.h"
17#include "llvm/ADT/StringRef.h"
18// Necessary for llvm::DebugCompressionType::None
19#include "llvm/Target/TargetOptions.h"
20#include <string>
21#include <vector>
22
23namespace llvm {
24namespace objcopy {
25
26// This type keeps track of the machine info for various architectures. This
27// lets us map architecture names to ELF types and the e_machine value of the
28// ELF file.
29struct MachineInfo {
30 uint16_t EMachine;
31 bool Is64Bit;
32 bool IsLittleEndian;
33};
34
35struct SectionRename {
36 StringRef OriginalName;
37 StringRef NewName;
38 Optional<uint64_t> NewFlags;
39};
40
41// Configuration for copying/stripping a single file.
42struct CopyConfig {
43 // Main input/output options
44 StringRef InputFilename;
45 StringRef InputFormat;
46 StringRef OutputFilename;
47 StringRef OutputFormat;
48
Jordan Rupprechtf570c1c2019-01-07 16:59:12 +000049 // Only applicable for --input-format=binary
Alexander Shaposhnikovbd934ff2018-10-11 22:33:50 +000050 MachineInfo BinaryArch;
Jordan Rupprechtf570c1c2019-01-07 16:59:12 +000051 // Only applicable when --output-format!=binary (e.g. elf64-x86-64).
52 Optional<MachineInfo> OutputArch;
Alexander Shaposhnikovbd934ff2018-10-11 22:33:50 +000053
54 // Advanced options
55 StringRef AddGnuDebugLink;
Jake Ehrlich14107a32018-12-03 19:49:23 +000056 StringRef BuildIdLinkDir;
57 Optional<StringRef> BuildIdLinkInput;
58 Optional<StringRef> BuildIdLinkOutput;
Alexander Shaposhnikovbd934ff2018-10-11 22:33:50 +000059 StringRef SplitDWO;
60 StringRef SymbolsPrefix;
61
62 // Repeated options
63 std::vector<StringRef> AddSection;
64 std::vector<StringRef> DumpSection;
Jordan Rupprecht65bac062018-11-13 19:32:27 +000065 std::vector<StringRef> KeepSection;
Jake Ehrlichbeec7d492018-12-06 02:03:53 +000066 std::vector<StringRef> OnlySection;
Alexander Shaposhnikovbd934ff2018-10-11 22:33:50 +000067 std::vector<StringRef> SymbolsToGlobalize;
68 std::vector<StringRef> SymbolsToKeep;
69 std::vector<StringRef> SymbolsToLocalize;
70 std::vector<StringRef> SymbolsToRemove;
71 std::vector<StringRef> SymbolsToWeaken;
72 std::vector<StringRef> ToRemove;
73 std::vector<std::string> SymbolsToKeepGlobal;
74
75 // Map options
76 StringMap<SectionRename> SectionsToRename;
77 StringMap<StringRef> SymbolsToRename;
78
79 // Boolean options
Jordan Rupprecht167fb182018-11-01 17:36:37 +000080 bool DeterministicArchives = true;
Alexander Shaposhnikovbd934ff2018-10-11 22:33:50 +000081 bool DiscardAll = false;
82 bool ExtractDWO = false;
83 bool KeepFileSymbols = false;
84 bool LocalizeHidden = false;
85 bool OnlyKeepDebug = false;
86 bool PreserveDates = false;
87 bool StripAll = false;
88 bool StripAllGNU = false;
89 bool StripDWO = false;
90 bool StripDebug = false;
91 bool StripNonAlloc = false;
92 bool StripSections = false;
93 bool StripUnneeded = false;
94 bool Weaken = false;
95 bool DecompressDebugSections = false;
96 DebugCompressionType CompressionType = DebugCompressionType::None;
97};
98
99// Configuration for the overall invocation of this tool. When invoked as
100// objcopy, will always contain exactly one CopyConfig. When invoked as strip,
101// will contain one or more CopyConfigs.
102struct DriverConfig {
103 SmallVector<CopyConfig, 1> CopyConfigs;
104};
105
106// ParseObjcopyOptions returns the config and sets the input arguments. If a
107// help flag is set then ParseObjcopyOptions will print the help messege and
108// exit.
109DriverConfig parseObjcopyOptions(ArrayRef<const char *> ArgsArr);
110
111// ParseStripOptions returns the config and sets the input arguments. If a
112// help flag is set then ParseStripOptions will print the help messege and
113// exit.
114DriverConfig parseStripOptions(ArrayRef<const char *> ArgsArr);
115
116} // namespace objcopy
117} // namespace llvm
118
119#endif