Alexander Shaposhnikov | 8d0b74c | 2018-10-11 22:33:50 +0000 | [diff] [blame] | 1 | //===- CopyConfig.cpp -----------------------------------------------------===// |
| 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 | #include "CopyConfig.h" |
| 11 | #include "llvm-objcopy.h" |
| 12 | |
| 13 | #include "llvm/ADT/BitmaskEnum.h" |
| 14 | #include "llvm/ADT/Optional.h" |
| 15 | #include "llvm/ADT/SmallVector.h" |
| 16 | #include "llvm/ADT/StringRef.h" |
| 17 | #include "llvm/Object/ELFTypes.h" |
| 18 | #include "llvm/Option/Arg.h" |
| 19 | #include "llvm/Option/ArgList.h" |
| 20 | #include "llvm/Support/CommandLine.h" |
| 21 | #include "llvm/Support/Compression.h" |
| 22 | #include "llvm/Support/MemoryBuffer.h" |
| 23 | #include <memory> |
| 24 | #include <string> |
| 25 | |
| 26 | namespace llvm { |
| 27 | namespace objcopy { |
| 28 | |
| 29 | namespace { |
| 30 | enum ObjcopyID { |
| 31 | OBJCOPY_INVALID = 0, // This is not an option ID. |
| 32 | #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ |
| 33 | HELPTEXT, METAVAR, VALUES) \ |
| 34 | OBJCOPY_##ID, |
| 35 | #include "ObjcopyOpts.inc" |
| 36 | #undef OPTION |
| 37 | }; |
| 38 | |
| 39 | #define PREFIX(NAME, VALUE) const char *const OBJCOPY_##NAME[] = VALUE; |
| 40 | #include "ObjcopyOpts.inc" |
| 41 | #undef PREFIX |
| 42 | |
| 43 | static const opt::OptTable::Info ObjcopyInfoTable[] = { |
| 44 | #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ |
| 45 | HELPTEXT, METAVAR, VALUES) \ |
| 46 | {OBJCOPY_##PREFIX, \ |
| 47 | NAME, \ |
| 48 | HELPTEXT, \ |
| 49 | METAVAR, \ |
| 50 | OBJCOPY_##ID, \ |
| 51 | opt::Option::KIND##Class, \ |
| 52 | PARAM, \ |
| 53 | FLAGS, \ |
| 54 | OBJCOPY_##GROUP, \ |
| 55 | OBJCOPY_##ALIAS, \ |
| 56 | ALIASARGS, \ |
| 57 | VALUES}, |
| 58 | #include "ObjcopyOpts.inc" |
| 59 | #undef OPTION |
| 60 | }; |
| 61 | |
| 62 | class ObjcopyOptTable : public opt::OptTable { |
| 63 | public: |
Jordan Rupprecht | aaeaa0a | 2018-10-23 18:46:33 +0000 | [diff] [blame] | 64 | ObjcopyOptTable() : OptTable(ObjcopyInfoTable) {} |
Alexander Shaposhnikov | 8d0b74c | 2018-10-11 22:33:50 +0000 | [diff] [blame] | 65 | }; |
| 66 | |
| 67 | enum StripID { |
| 68 | STRIP_INVALID = 0, // This is not an option ID. |
| 69 | #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ |
| 70 | HELPTEXT, METAVAR, VALUES) \ |
| 71 | STRIP_##ID, |
| 72 | #include "StripOpts.inc" |
| 73 | #undef OPTION |
| 74 | }; |
| 75 | |
| 76 | #define PREFIX(NAME, VALUE) const char *const STRIP_##NAME[] = VALUE; |
| 77 | #include "StripOpts.inc" |
| 78 | #undef PREFIX |
| 79 | |
| 80 | static const opt::OptTable::Info StripInfoTable[] = { |
| 81 | #define OPTION(PREFIX, NAME, ID, KIND, GROUP, ALIAS, ALIASARGS, FLAGS, PARAM, \ |
| 82 | HELPTEXT, METAVAR, VALUES) \ |
| 83 | {STRIP_##PREFIX, NAME, HELPTEXT, \ |
| 84 | METAVAR, STRIP_##ID, opt::Option::KIND##Class, \ |
| 85 | PARAM, FLAGS, STRIP_##GROUP, \ |
| 86 | STRIP_##ALIAS, ALIASARGS, VALUES}, |
| 87 | #include "StripOpts.inc" |
| 88 | #undef OPTION |
| 89 | }; |
| 90 | |
| 91 | class StripOptTable : public opt::OptTable { |
| 92 | public: |
Jordan Rupprecht | aaeaa0a | 2018-10-23 18:46:33 +0000 | [diff] [blame] | 93 | StripOptTable() : OptTable(StripInfoTable) {} |
Alexander Shaposhnikov | 8d0b74c | 2018-10-11 22:33:50 +0000 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | enum SectionFlag { |
| 97 | SecNone = 0, |
| 98 | SecAlloc = 1 << 0, |
| 99 | SecLoad = 1 << 1, |
| 100 | SecNoload = 1 << 2, |
| 101 | SecReadonly = 1 << 3, |
| 102 | SecDebug = 1 << 4, |
| 103 | SecCode = 1 << 5, |
| 104 | SecData = 1 << 6, |
| 105 | SecRom = 1 << 7, |
| 106 | SecMerge = 1 << 8, |
| 107 | SecStrings = 1 << 9, |
| 108 | SecContents = 1 << 10, |
| 109 | SecShare = 1 << 11, |
| 110 | LLVM_MARK_AS_BITMASK_ENUM(/* LargestValue = */ SecShare) |
| 111 | }; |
| 112 | |
| 113 | } // namespace |
| 114 | |
| 115 | static SectionFlag parseSectionRenameFlag(StringRef SectionName) { |
| 116 | return llvm::StringSwitch<SectionFlag>(SectionName) |
| 117 | .Case("alloc", SectionFlag::SecAlloc) |
| 118 | .Case("load", SectionFlag::SecLoad) |
| 119 | .Case("noload", SectionFlag::SecNoload) |
| 120 | .Case("readonly", SectionFlag::SecReadonly) |
| 121 | .Case("debug", SectionFlag::SecDebug) |
| 122 | .Case("code", SectionFlag::SecCode) |
| 123 | .Case("data", SectionFlag::SecData) |
| 124 | .Case("rom", SectionFlag::SecRom) |
| 125 | .Case("merge", SectionFlag::SecMerge) |
| 126 | .Case("strings", SectionFlag::SecStrings) |
| 127 | .Case("contents", SectionFlag::SecContents) |
| 128 | .Case("share", SectionFlag::SecShare) |
| 129 | .Default(SectionFlag::SecNone); |
| 130 | } |
| 131 | |
| 132 | static SectionRename parseRenameSectionValue(StringRef FlagValue) { |
| 133 | if (!FlagValue.contains('=')) |
| 134 | error("Bad format for --rename-section: missing '='"); |
| 135 | |
| 136 | // Initial split: ".foo" = ".bar,f1,f2,..." |
| 137 | auto Old2New = FlagValue.split('='); |
| 138 | SectionRename SR; |
| 139 | SR.OriginalName = Old2New.first; |
| 140 | |
| 141 | // Flags split: ".bar" "f1" "f2" ... |
| 142 | SmallVector<StringRef, 6> NameAndFlags; |
| 143 | Old2New.second.split(NameAndFlags, ','); |
| 144 | SR.NewName = NameAndFlags[0]; |
| 145 | |
| 146 | if (NameAndFlags.size() > 1) { |
| 147 | SectionFlag Flags = SectionFlag::SecNone; |
| 148 | for (size_t I = 1, Size = NameAndFlags.size(); I < Size; ++I) { |
| 149 | SectionFlag Flag = parseSectionRenameFlag(NameAndFlags[I]); |
| 150 | if (Flag == SectionFlag::SecNone) |
| 151 | error("Unrecognized section flag '" + NameAndFlags[I] + |
| 152 | "'. Flags supported for GNU compatibility: alloc, load, noload, " |
| 153 | "readonly, debug, code, data, rom, share, contents, merge, " |
| 154 | "strings."); |
| 155 | Flags |= Flag; |
| 156 | } |
| 157 | |
| 158 | SR.NewFlags = 0; |
| 159 | if (Flags & SectionFlag::SecAlloc) |
| 160 | *SR.NewFlags |= ELF::SHF_ALLOC; |
| 161 | if (!(Flags & SectionFlag::SecReadonly)) |
| 162 | *SR.NewFlags |= ELF::SHF_WRITE; |
| 163 | if (Flags & SectionFlag::SecCode) |
| 164 | *SR.NewFlags |= ELF::SHF_EXECINSTR; |
| 165 | if (Flags & SectionFlag::SecMerge) |
| 166 | *SR.NewFlags |= ELF::SHF_MERGE; |
| 167 | if (Flags & SectionFlag::SecStrings) |
| 168 | *SR.NewFlags |= ELF::SHF_STRINGS; |
| 169 | } |
| 170 | |
| 171 | return SR; |
| 172 | } |
| 173 | |
| 174 | static const StringMap<MachineInfo> ArchMap{ |
| 175 | // Name, {EMachine, 64bit, LittleEndian} |
| 176 | {"aarch64", {ELF::EM_AARCH64, true, true}}, |
| 177 | {"arm", {ELF::EM_ARM, false, true}}, |
| 178 | {"i386", {ELF::EM_386, false, true}}, |
| 179 | {"i386:x86-64", {ELF::EM_X86_64, true, true}}, |
| 180 | {"powerpc:common64", {ELF::EM_PPC64, true, true}}, |
| 181 | {"sparc", {ELF::EM_SPARC, false, true}}, |
| 182 | {"x86-64", {ELF::EM_X86_64, true, true}}, |
| 183 | }; |
| 184 | |
| 185 | static const MachineInfo &getMachineInfo(StringRef Arch) { |
| 186 | auto Iter = ArchMap.find(Arch); |
| 187 | if (Iter == std::end(ArchMap)) |
| 188 | error("Invalid architecture: '" + Arch + "'"); |
| 189 | return Iter->getValue(); |
| 190 | } |
| 191 | |
| 192 | static void addGlobalSymbolsFromFile(std::vector<std::string> &Symbols, |
| 193 | StringRef Filename) { |
| 194 | SmallVector<StringRef, 16> Lines; |
| 195 | auto BufOrErr = MemoryBuffer::getFile(Filename); |
| 196 | if (!BufOrErr) |
| 197 | reportError(Filename, BufOrErr.getError()); |
| 198 | |
| 199 | BufOrErr.get()->getBuffer().split(Lines, '\n'); |
| 200 | for (StringRef Line : Lines) { |
| 201 | // Ignore everything after '#', trim whitespace, and only add the symbol if |
| 202 | // it's not empty. |
| 203 | auto TrimmedLine = Line.split('#').first.trim(); |
| 204 | if (!TrimmedLine.empty()) |
| 205 | Symbols.push_back(TrimmedLine.str()); |
| 206 | } |
| 207 | } |
| 208 | |
| 209 | // ParseObjcopyOptions returns the config and sets the input arguments. If a |
| 210 | // help flag is set then ParseObjcopyOptions will print the help messege and |
| 211 | // exit. |
| 212 | DriverConfig parseObjcopyOptions(ArrayRef<const char *> ArgsArr) { |
| 213 | ObjcopyOptTable T; |
| 214 | unsigned MissingArgumentIndex, MissingArgumentCount; |
| 215 | llvm::opt::InputArgList InputArgs = |
| 216 | T.ParseArgs(ArgsArr, MissingArgumentIndex, MissingArgumentCount); |
| 217 | |
| 218 | if (InputArgs.size() == 0) { |
| 219 | T.PrintHelp(errs(), "llvm-objcopy input [output]", "objcopy tool"); |
| 220 | exit(1); |
| 221 | } |
| 222 | |
| 223 | if (InputArgs.hasArg(OBJCOPY_help)) { |
| 224 | T.PrintHelp(outs(), "llvm-objcopy input [output]", "objcopy tool"); |
| 225 | exit(0); |
| 226 | } |
| 227 | |
| 228 | if (InputArgs.hasArg(OBJCOPY_version)) { |
| 229 | cl::PrintVersionMessage(); |
| 230 | exit(0); |
| 231 | } |
| 232 | |
| 233 | SmallVector<const char *, 2> Positional; |
| 234 | |
| 235 | for (auto Arg : InputArgs.filtered(OBJCOPY_UNKNOWN)) |
| 236 | error("unknown argument '" + Arg->getAsString(InputArgs) + "'"); |
| 237 | |
| 238 | for (auto Arg : InputArgs.filtered(OBJCOPY_INPUT)) |
| 239 | Positional.push_back(Arg->getValue()); |
| 240 | |
| 241 | if (Positional.empty()) |
| 242 | error("No input file specified"); |
| 243 | |
| 244 | if (Positional.size() > 2) |
| 245 | error("Too many positional arguments"); |
| 246 | |
| 247 | CopyConfig Config; |
| 248 | Config.InputFilename = Positional[0]; |
| 249 | Config.OutputFilename = Positional[Positional.size() == 1 ? 0 : 1]; |
Jordan Rupprecht | bb4588e | 2018-10-12 00:36:01 +0000 | [diff] [blame] | 250 | if (InputArgs.hasArg(OBJCOPY_target) && |
| 251 | (InputArgs.hasArg(OBJCOPY_input_target) || |
| 252 | InputArgs.hasArg(OBJCOPY_output_target))) |
| 253 | error("--target cannot be used with --input-target or --output-target"); |
| 254 | |
| 255 | if (InputArgs.hasArg(OBJCOPY_target)) { |
| 256 | Config.InputFormat = InputArgs.getLastArgValue(OBJCOPY_target); |
| 257 | Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_target); |
| 258 | } else { |
| 259 | Config.InputFormat = InputArgs.getLastArgValue(OBJCOPY_input_target); |
| 260 | Config.OutputFormat = InputArgs.getLastArgValue(OBJCOPY_output_target); |
| 261 | } |
Alexander Shaposhnikov | 8d0b74c | 2018-10-11 22:33:50 +0000 | [diff] [blame] | 262 | if (Config.InputFormat == "binary") { |
| 263 | auto BinaryArch = InputArgs.getLastArgValue(OBJCOPY_binary_architecture); |
| 264 | if (BinaryArch.empty()) |
| 265 | error("Specified binary input without specifiying an architecture"); |
| 266 | Config.BinaryArch = getMachineInfo(BinaryArch); |
| 267 | } |
| 268 | |
| 269 | if (auto Arg = InputArgs.getLastArg(OBJCOPY_compress_debug_sections, |
| 270 | OBJCOPY_compress_debug_sections_eq)) { |
| 271 | Config.CompressionType = DebugCompressionType::Z; |
| 272 | |
| 273 | if (Arg->getOption().getID() == OBJCOPY_compress_debug_sections_eq) { |
| 274 | Config.CompressionType = |
| 275 | StringSwitch<DebugCompressionType>( |
| 276 | InputArgs.getLastArgValue(OBJCOPY_compress_debug_sections_eq)) |
| 277 | .Case("zlib-gnu", DebugCompressionType::GNU) |
| 278 | .Case("zlib", DebugCompressionType::Z) |
| 279 | .Default(DebugCompressionType::None); |
| 280 | if (Config.CompressionType == DebugCompressionType::None) |
| 281 | error("Invalid or unsupported --compress-debug-sections format: " + |
| 282 | InputArgs.getLastArgValue(OBJCOPY_compress_debug_sections_eq)); |
| 283 | if (!zlib::isAvailable()) |
| 284 | error("LLVM was not compiled with LLVM_ENABLE_ZLIB: can not compress."); |
| 285 | } |
| 286 | } |
| 287 | |
| 288 | Config.SplitDWO = InputArgs.getLastArgValue(OBJCOPY_split_dwo); |
| 289 | Config.AddGnuDebugLink = InputArgs.getLastArgValue(OBJCOPY_add_gnu_debuglink); |
| 290 | Config.SymbolsPrefix = InputArgs.getLastArgValue(OBJCOPY_prefix_symbols); |
| 291 | |
| 292 | for (auto Arg : InputArgs.filtered(OBJCOPY_redefine_symbol)) { |
| 293 | if (!StringRef(Arg->getValue()).contains('=')) |
| 294 | error("Bad format for --redefine-sym"); |
| 295 | auto Old2New = StringRef(Arg->getValue()).split('='); |
| 296 | if (!Config.SymbolsToRename.insert(Old2New).second) |
| 297 | error("Multiple redefinition of symbol " + Old2New.first); |
| 298 | } |
| 299 | |
| 300 | for (auto Arg : InputArgs.filtered(OBJCOPY_rename_section)) { |
| 301 | SectionRename SR = parseRenameSectionValue(StringRef(Arg->getValue())); |
| 302 | if (!Config.SectionsToRename.try_emplace(SR.OriginalName, SR).second) |
| 303 | error("Multiple renames of section " + SR.OriginalName); |
| 304 | } |
| 305 | |
| 306 | for (auto Arg : InputArgs.filtered(OBJCOPY_remove_section)) |
| 307 | Config.ToRemove.push_back(Arg->getValue()); |
| 308 | for (auto Arg : InputArgs.filtered(OBJCOPY_keep)) |
| 309 | Config.Keep.push_back(Arg->getValue()); |
| 310 | for (auto Arg : InputArgs.filtered(OBJCOPY_only_keep)) |
| 311 | Config.OnlyKeep.push_back(Arg->getValue()); |
| 312 | for (auto Arg : InputArgs.filtered(OBJCOPY_add_section)) |
| 313 | Config.AddSection.push_back(Arg->getValue()); |
| 314 | for (auto Arg : InputArgs.filtered(OBJCOPY_dump_section)) |
| 315 | Config.DumpSection.push_back(Arg->getValue()); |
| 316 | Config.StripAll = InputArgs.hasArg(OBJCOPY_strip_all); |
| 317 | Config.StripAllGNU = InputArgs.hasArg(OBJCOPY_strip_all_gnu); |
| 318 | Config.StripDebug = InputArgs.hasArg(OBJCOPY_strip_debug); |
| 319 | Config.StripDWO = InputArgs.hasArg(OBJCOPY_strip_dwo); |
| 320 | Config.StripSections = InputArgs.hasArg(OBJCOPY_strip_sections); |
| 321 | Config.StripNonAlloc = InputArgs.hasArg(OBJCOPY_strip_non_alloc); |
| 322 | Config.StripUnneeded = InputArgs.hasArg(OBJCOPY_strip_unneeded); |
| 323 | Config.ExtractDWO = InputArgs.hasArg(OBJCOPY_extract_dwo); |
| 324 | Config.LocalizeHidden = InputArgs.hasArg(OBJCOPY_localize_hidden); |
| 325 | Config.Weaken = InputArgs.hasArg(OBJCOPY_weaken); |
| 326 | Config.DiscardAll = InputArgs.hasArg(OBJCOPY_discard_all); |
| 327 | Config.OnlyKeepDebug = InputArgs.hasArg(OBJCOPY_only_keep_debug); |
| 328 | Config.KeepFileSymbols = InputArgs.hasArg(OBJCOPY_keep_file_symbols); |
| 329 | Config.DecompressDebugSections = |
| 330 | InputArgs.hasArg(OBJCOPY_decompress_debug_sections); |
| 331 | for (auto Arg : InputArgs.filtered(OBJCOPY_localize_symbol)) |
| 332 | Config.SymbolsToLocalize.push_back(Arg->getValue()); |
| 333 | for (auto Arg : InputArgs.filtered(OBJCOPY_keep_global_symbol)) |
| 334 | Config.SymbolsToKeepGlobal.push_back(Arg->getValue()); |
| 335 | for (auto Arg : InputArgs.filtered(OBJCOPY_keep_global_symbols)) |
| 336 | addGlobalSymbolsFromFile(Config.SymbolsToKeepGlobal, Arg->getValue()); |
| 337 | for (auto Arg : InputArgs.filtered(OBJCOPY_globalize_symbol)) |
| 338 | Config.SymbolsToGlobalize.push_back(Arg->getValue()); |
| 339 | for (auto Arg : InputArgs.filtered(OBJCOPY_weaken_symbol)) |
| 340 | Config.SymbolsToWeaken.push_back(Arg->getValue()); |
| 341 | for (auto Arg : InputArgs.filtered(OBJCOPY_strip_symbol)) |
| 342 | Config.SymbolsToRemove.push_back(Arg->getValue()); |
| 343 | for (auto Arg : InputArgs.filtered(OBJCOPY_keep_symbol)) |
| 344 | Config.SymbolsToKeep.push_back(Arg->getValue()); |
| 345 | |
| 346 | Config.PreserveDates = InputArgs.hasArg(OBJCOPY_preserve_dates); |
| 347 | |
Alexander Shaposhnikov | 8d0b74c | 2018-10-11 22:33:50 +0000 | [diff] [blame] | 348 | if (Config.DecompressDebugSections && |
| 349 | Config.CompressionType != DebugCompressionType::None) { |
| 350 | error("Cannot specify --compress-debug-sections at the same time as " |
| 351 | "--decompress-debug-sections at the same time"); |
| 352 | } |
| 353 | |
| 354 | if (Config.DecompressDebugSections && !zlib::isAvailable()) |
| 355 | error("LLVM was not compiled with LLVM_ENABLE_ZLIB: cannot decompress."); |
| 356 | |
Jordan Rupprecht | ab9f662 | 2018-10-23 20:54:51 +0000 | [diff] [blame^] | 357 | DriverConfig DC; |
| 358 | DC.CopyConfigs.push_back(std::move(Config)); |
Alexander Shaposhnikov | 8d0b74c | 2018-10-11 22:33:50 +0000 | [diff] [blame] | 359 | return DC; |
| 360 | } |
| 361 | |
| 362 | // ParseStripOptions returns the config and sets the input arguments. If a |
| 363 | // help flag is set then ParseStripOptions will print the help messege and |
| 364 | // exit. |
| 365 | DriverConfig parseStripOptions(ArrayRef<const char *> ArgsArr) { |
| 366 | StripOptTable T; |
| 367 | unsigned MissingArgumentIndex, MissingArgumentCount; |
| 368 | llvm::opt::InputArgList InputArgs = |
| 369 | T.ParseArgs(ArgsArr, MissingArgumentIndex, MissingArgumentCount); |
| 370 | |
| 371 | if (InputArgs.size() == 0) { |
| 372 | T.PrintHelp(errs(), "llvm-strip [options] file...", "strip tool"); |
| 373 | exit(1); |
| 374 | } |
| 375 | |
| 376 | if (InputArgs.hasArg(STRIP_help)) { |
| 377 | T.PrintHelp(outs(), "llvm-strip [options] file...", "strip tool"); |
| 378 | exit(0); |
| 379 | } |
| 380 | |
| 381 | if (InputArgs.hasArg(STRIP_version)) { |
| 382 | cl::PrintVersionMessage(); |
| 383 | exit(0); |
| 384 | } |
| 385 | |
| 386 | SmallVector<const char *, 2> Positional; |
| 387 | for (auto Arg : InputArgs.filtered(STRIP_UNKNOWN)) |
| 388 | error("unknown argument '" + Arg->getAsString(InputArgs) + "'"); |
| 389 | for (auto Arg : InputArgs.filtered(STRIP_INPUT)) |
| 390 | Positional.push_back(Arg->getValue()); |
| 391 | |
| 392 | if (Positional.empty()) |
| 393 | error("No input file specified"); |
| 394 | |
| 395 | if (Positional.size() > 1 && InputArgs.hasArg(STRIP_output)) |
| 396 | error("Multiple input files cannot be used in combination with -o"); |
| 397 | |
| 398 | CopyConfig Config; |
| 399 | Config.StripDebug = InputArgs.hasArg(STRIP_strip_debug); |
| 400 | |
| 401 | Config.DiscardAll = InputArgs.hasArg(STRIP_discard_all); |
| 402 | Config.StripUnneeded = InputArgs.hasArg(STRIP_strip_unneeded); |
| 403 | Config.StripAll = InputArgs.hasArg(STRIP_strip_all); |
| 404 | |
| 405 | if (!Config.StripDebug && !Config.StripUnneeded && !Config.DiscardAll) |
| 406 | Config.StripAll = true; |
| 407 | |
| 408 | for (auto Arg : InputArgs.filtered(STRIP_remove_section)) |
| 409 | Config.ToRemove.push_back(Arg->getValue()); |
| 410 | |
| 411 | for (auto Arg : InputArgs.filtered(STRIP_keep_symbol)) |
| 412 | Config.SymbolsToKeep.push_back(Arg->getValue()); |
| 413 | |
| 414 | Config.PreserveDates = InputArgs.hasArg(STRIP_preserve_dates); |
| 415 | |
| 416 | DriverConfig DC; |
| 417 | if (Positional.size() == 1) { |
| 418 | Config.InputFilename = Positional[0]; |
| 419 | Config.OutputFilename = |
| 420 | InputArgs.getLastArgValue(STRIP_output, Positional[0]); |
| 421 | DC.CopyConfigs.push_back(std::move(Config)); |
| 422 | } else { |
| 423 | for (const char *Filename : Positional) { |
| 424 | Config.InputFilename = Filename; |
| 425 | Config.OutputFilename = Filename; |
| 426 | DC.CopyConfigs.push_back(Config); |
| 427 | } |
| 428 | } |
| 429 | |
| 430 | return DC; |
| 431 | } |
| 432 | |
| 433 | } // namespace objcopy |
| 434 | } // namespace llvm |