cac46d2e50b91727ec70860febbf5a443ef44a89
[oota-llvm.git] / tools / llvm-ar / llvm-ar.cpp
1 //===-- llvm-ar.cpp - LLVM archive librarian utility ----------------------===//
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 // Builds up (relatively) standard unix archive files (.a) containing LLVM
11 // bitcode or other files.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #include "llvm/ADT/StringSwitch.h"
16 #include "llvm/ADT/Triple.h"
17 #include "llvm/IR/LLVMContext.h"
18 #include "llvm/IR/Module.h"
19 #include "llvm/LibDriver/LibDriver.h"
20 #include "llvm/Object/Archive.h"
21 #include "llvm/Object/ArchiveWriter.h"
22 #include "llvm/Object/ObjectFile.h"
23 #include "llvm/Support/CommandLine.h"
24 #include "llvm/Support/Errc.h"
25 #include "llvm/Support/FileSystem.h"
26 #include "llvm/Support/Format.h"
27 #include "llvm/Support/LineIterator.h"
28 #include "llvm/Support/ManagedStatic.h"
29 #include "llvm/Support/MemoryBuffer.h"
30 #include "llvm/Support/Path.h"
31 #include "llvm/Support/PrettyStackTrace.h"
32 #include "llvm/Support/Signals.h"
33 #include "llvm/Support/TargetSelect.h"
34 #include "llvm/Support/ToolOutputFile.h"
35 #include "llvm/Support/raw_ostream.h"
36 #include <algorithm>
37 #include <cstdlib>
38 #include <memory>
39
40 #if !defined(_MSC_VER) && !defined(__MINGW32__)
41 #include <unistd.h>
42 #else
43 #include <io.h>
44 #endif
45
46 using namespace llvm;
47
48 // The name this program was invoked as.
49 static StringRef ToolName;
50
51 // Show the error message and exit.
52 LLVM_ATTRIBUTE_NORETURN static void fail(Twine Error) {
53   outs() << ToolName << ": " << Error << ".\n";
54   exit(1);
55 }
56
57 static void failIfError(std::error_code EC, Twine Context = "") {
58   if (!EC)
59     return;
60
61   std::string ContextStr = Context.str();
62   if (ContextStr == "")
63     fail(EC.message());
64   fail(Context + ": " + EC.message());
65 }
66
67 // llvm-ar/llvm-ranlib remaining positional arguments.
68 static cl::list<std::string>
69     RestOfArgs(cl::Positional, cl::ZeroOrMore,
70                cl::desc("[relpos] [count] <archive-file> [members]..."));
71
72 static cl::opt<bool> MRI("M", cl::desc(""));
73
74 namespace {
75 enum Format { Default, GNU, BSD };
76 }
77
78 static cl::opt<Format>
79     FormatOpt("format", cl::desc("Archive format to create"),
80               cl::values(clEnumValN(Default, "defalut", "default"),
81                          clEnumValN(GNU, "gnu", "gnu"),
82                          clEnumValN(BSD, "bsd", "bsd"), clEnumValEnd));
83
84 static std::string Options;
85
86 // Provide additional help output explaining the operations and modifiers of
87 // llvm-ar. This object instructs the CommandLine library to print the text of
88 // the constructor when the --help option is given.
89 static cl::extrahelp MoreHelp(
90   "\nOPERATIONS:\n"
91   "  d[NsS]       - delete file(s) from the archive\n"
92   "  m[abiSs]     - move file(s) in the archive\n"
93   "  p[kN]        - print file(s) found in the archive\n"
94   "  q[ufsS]      - quick append file(s) to the archive\n"
95   "  r[abfiuRsS]  - replace or insert file(s) into the archive\n"
96   "  t            - display contents of archive\n"
97   "  x[No]        - extract file(s) from the archive\n"
98   "\nMODIFIERS (operation specific):\n"
99   "  [a] - put file(s) after [relpos]\n"
100   "  [b] - put file(s) before [relpos] (same as [i])\n"
101   "  [i] - put file(s) before [relpos] (same as [b])\n"
102   "  [o] - preserve original dates\n"
103   "  [s] - create an archive index (cf. ranlib)\n"
104   "  [S] - do not build a symbol table\n"
105   "  [u] - update only files newer than archive contents\n"
106   "\nMODIFIERS (generic):\n"
107   "  [c] - do not warn if the library had to be created\n"
108   "  [v] - be verbose about actions taken\n"
109 );
110
111 // This enumeration delineates the kinds of operations on an archive
112 // that are permitted.
113 enum ArchiveOperation {
114   Print,            ///< Print the contents of the archive
115   Delete,           ///< Delete the specified members
116   Move,             ///< Move members to end or as given by {a,b,i} modifiers
117   QuickAppend,      ///< Quickly append to end of archive
118   ReplaceOrInsert,  ///< Replace or Insert members
119   DisplayTable,     ///< Display the table of contents
120   Extract,          ///< Extract files back to file system
121   CreateSymTab      ///< Create a symbol table in an existing archive
122 };
123
124 // Modifiers to follow operation to vary behavior
125 static bool AddAfter = false;      ///< 'a' modifier
126 static bool AddBefore = false;     ///< 'b' modifier
127 static bool Create = false;        ///< 'c' modifier
128 static bool OriginalDates = false; ///< 'o' modifier
129 static bool OnlyUpdate = false;    ///< 'u' modifier
130 static bool Verbose = false;       ///< 'v' modifier
131 static bool Symtab = true;         ///< 's' modifier
132 static bool Deterministic = true;  ///< 'D' and 'U' modifiers
133 static bool Thin = false;          ///< 'T' modifier
134
135 // Relative Positional Argument (for insert/move). This variable holds
136 // the name of the archive member to which the 'a', 'b' or 'i' modifier
137 // refers. Only one of 'a', 'b' or 'i' can be specified so we only need
138 // one variable.
139 static std::string RelPos;
140
141 // This variable holds the name of the archive file as given on the
142 // command line.
143 static std::string ArchiveName;
144
145 // This variable holds the list of member files to proecess, as given
146 // on the command line.
147 static std::vector<StringRef> Members;
148
149 // Show the error message, the help message and exit.
150 LLVM_ATTRIBUTE_NORETURN static void
151 show_help(const std::string &msg) {
152   errs() << ToolName << ": " << msg << "\n\n";
153   cl::PrintHelpMessage();
154   std::exit(1);
155 }
156
157 // Extract the member filename from the command line for the [relpos] argument
158 // associated with a, b, and i modifiers
159 static void getRelPos() {
160   if(RestOfArgs.size() == 0)
161     show_help("Expected [relpos] for a, b, or i modifier");
162   RelPos = RestOfArgs[0];
163   RestOfArgs.erase(RestOfArgs.begin());
164 }
165
166 static void getOptions() {
167   if(RestOfArgs.size() == 0)
168     show_help("Expected options");
169   Options = RestOfArgs[0];
170   RestOfArgs.erase(RestOfArgs.begin());
171 }
172
173 // Get the archive file name from the command line
174 static void getArchive() {
175   if(RestOfArgs.size() == 0)
176     show_help("An archive name must be specified");
177   ArchiveName = RestOfArgs[0];
178   RestOfArgs.erase(RestOfArgs.begin());
179 }
180
181 // Copy over remaining items in RestOfArgs to our Members vector
182 static void getMembers() {
183   for (auto &Arg : RestOfArgs)
184     Members.push_back(Arg);
185 }
186
187 static void runMRIScript();
188
189 // Parse the command line options as presented and return the operation
190 // specified. Process all modifiers and check to make sure that constraints on
191 // modifier/operation pairs have not been violated.
192 static ArchiveOperation parseCommandLine() {
193   if (MRI) {
194     if (!RestOfArgs.empty())
195       fail("Cannot mix -M and other options");
196     runMRIScript();
197   }
198
199   getOptions();
200
201   // Keep track of number of operations. We can only specify one
202   // per execution.
203   unsigned NumOperations = 0;
204
205   // Keep track of the number of positional modifiers (a,b,i). Only
206   // one can be specified.
207   unsigned NumPositional = 0;
208
209   // Keep track of which operation was requested
210   ArchiveOperation Operation;
211
212   bool MaybeJustCreateSymTab = false;
213
214   for(unsigned i=0; i<Options.size(); ++i) {
215     switch(Options[i]) {
216     case 'd': ++NumOperations; Operation = Delete; break;
217     case 'm': ++NumOperations; Operation = Move ; break;
218     case 'p': ++NumOperations; Operation = Print; break;
219     case 'q': ++NumOperations; Operation = QuickAppend; break;
220     case 'r': ++NumOperations; Operation = ReplaceOrInsert; break;
221     case 't': ++NumOperations; Operation = DisplayTable; break;
222     case 'x': ++NumOperations; Operation = Extract; break;
223     case 'c': Create = true; break;
224     case 'l': /* accepted but unused */ break;
225     case 'o': OriginalDates = true; break;
226     case 's':
227       Symtab = true;
228       MaybeJustCreateSymTab = true;
229       break;
230     case 'S':
231       Symtab = false;
232       break;
233     case 'u': OnlyUpdate = true; break;
234     case 'v': Verbose = true; break;
235     case 'a':
236       getRelPos();
237       AddAfter = true;
238       NumPositional++;
239       break;
240     case 'b':
241       getRelPos();
242       AddBefore = true;
243       NumPositional++;
244       break;
245     case 'i':
246       getRelPos();
247       AddBefore = true;
248       NumPositional++;
249       break;
250     case 'D':
251       Deterministic = true;
252       break;
253     case 'U':
254       Deterministic = false;
255       break;
256     case 'T':
257       Thin = true;
258       break;
259     default:
260       cl::PrintHelpMessage();
261     }
262   }
263
264   // At this point, the next thing on the command line must be
265   // the archive name.
266   getArchive();
267
268   // Everything on the command line at this point is a member.
269   getMembers();
270
271  if (NumOperations == 0 && MaybeJustCreateSymTab) {
272     NumOperations = 1;
273     Operation = CreateSymTab;
274     if (!Members.empty())
275       show_help("The s operation takes only an archive as argument");
276   }
277
278   // Perform various checks on the operation/modifier specification
279   // to make sure we are dealing with a legal request.
280   if (NumOperations == 0)
281     show_help("You must specify at least one of the operations");
282   if (NumOperations > 1)
283     show_help("Only one operation may be specified");
284   if (NumPositional > 1)
285     show_help("You may only specify one of a, b, and i modifiers");
286   if (AddAfter || AddBefore) {
287     if (Operation != Move && Operation != ReplaceOrInsert)
288       show_help("The 'a', 'b' and 'i' modifiers can only be specified with "
289             "the 'm' or 'r' operations");
290   }
291   if (OriginalDates && Operation != Extract)
292     show_help("The 'o' modifier is only applicable to the 'x' operation");
293   if (OnlyUpdate && Operation != ReplaceOrInsert)
294     show_help("The 'u' modifier is only applicable to the 'r' operation");
295
296   // Return the parsed operation to the caller
297   return Operation;
298 }
299
300 // Implements the 'p' operation. This function traverses the archive
301 // looking for members that match the path list.
302 static void doPrint(StringRef Name, const object::Archive::Child &C) {
303   if (Verbose)
304     outs() << "Printing " << Name << "\n";
305
306   ErrorOr<StringRef> DataOrErr = C.getBuffer();
307   failIfError(DataOrErr.getError());
308   StringRef Data = *DataOrErr;
309   outs().write(Data.data(), Data.size());
310 }
311
312 // Utility function for printing out the file mode when the 't' operation is in
313 // verbose mode.
314 static void printMode(unsigned mode) {
315   outs() << ((mode & 004) ? "r" : "-");
316   outs() << ((mode & 002) ? "w" : "-");
317   outs() << ((mode & 001) ? "x" : "-");
318 }
319
320 // Implement the 't' operation. This function prints out just
321 // the file names of each of the members. However, if verbose mode is requested
322 // ('v' modifier) then the file type, permission mode, user, group, size, and
323 // modification time are also printed.
324 static void doDisplayTable(StringRef Name, const object::Archive::Child &C) {
325   if (Verbose) {
326     sys::fs::perms Mode = C.getAccessMode();
327     printMode((Mode >> 6) & 007);
328     printMode((Mode >> 3) & 007);
329     printMode(Mode & 007);
330     outs() << ' ' << C.getUID();
331     outs() << '/' << C.getGID();
332     ErrorOr<uint64_t> Size = C.getSize();
333     failIfError(Size.getError());
334     outs() << ' ' << format("%6llu", Size.get());
335     outs() << ' ' << C.getLastModified().str();
336     outs() << ' ';
337   }
338   outs() << Name << "\n";
339 }
340
341 // Implement the 'x' operation. This function extracts files back to the file
342 // system.
343 static void doExtract(StringRef Name, const object::Archive::Child &C) {
344   // Retain the original mode.
345   sys::fs::perms Mode = C.getAccessMode();
346   SmallString<128> Storage = Name;
347
348   int FD;
349   failIfError(
350       sys::fs::openFileForWrite(Storage.c_str(), FD, sys::fs::F_None, Mode),
351       Storage.c_str());
352
353   {
354     raw_fd_ostream file(FD, false);
355
356     // Get the data and its length
357     StringRef Data = *C.getBuffer();
358
359     // Write the data.
360     file.write(Data.data(), Data.size());
361   }
362
363   // If we're supposed to retain the original modification times, etc. do so
364   // now.
365   if (OriginalDates)
366     failIfError(
367         sys::fs::setLastModificationAndAccessTime(FD, C.getLastModified()));
368
369   if (close(FD))
370     fail("Could not close the file");
371 }
372
373 static bool shouldCreateArchive(ArchiveOperation Op) {
374   switch (Op) {
375   case Print:
376   case Delete:
377   case Move:
378   case DisplayTable:
379   case Extract:
380   case CreateSymTab:
381     return false;
382
383   case QuickAppend:
384   case ReplaceOrInsert:
385     return true;
386   }
387
388   llvm_unreachable("Missing entry in covered switch.");
389 }
390
391 static void performReadOperation(ArchiveOperation Operation,
392                                  object::Archive *OldArchive) {
393   if (Operation == Extract && OldArchive->isThin()) {
394     errs() << "extracting from a thin archive is not supported\n";
395     std::exit(1);
396   }
397
398   bool Filter = !Members.empty();
399   for (auto &ChildOrErr : OldArchive->children()) {
400     failIfError(ChildOrErr.getError());
401     const object::Archive::Child &C = *ChildOrErr;
402
403     ErrorOr<StringRef> NameOrErr = C.getName();
404     failIfError(NameOrErr.getError());
405     StringRef Name = NameOrErr.get();
406
407     if (Filter) {
408       auto I = std::find(Members.begin(), Members.end(), Name);
409       if (I == Members.end())
410         continue;
411       Members.erase(I);
412     }
413
414     switch (Operation) {
415     default:
416       llvm_unreachable("Not a read operation");
417     case Print:
418       doPrint(Name, C);
419       break;
420     case DisplayTable:
421       doDisplayTable(Name, C);
422       break;
423     case Extract:
424       doExtract(Name, C);
425       break;
426     }
427   }
428   if (Members.empty())
429     return;
430   for (StringRef Name : Members)
431     errs() << Name << " was not found\n";
432   std::exit(1);
433 }
434
435 static void addMember(std::vector<NewArchiveIterator> &Members,
436                       StringRef FileName, int Pos = -1) {
437   NewArchiveIterator NI(FileName);
438   if (Pos == -1)
439     Members.push_back(NI);
440   else
441     Members[Pos] = NI;
442 }
443
444 static void addMember(std::vector<NewArchiveIterator> &Members,
445                       const object::Archive::Child &M, StringRef Name,
446                       int Pos = -1) {
447   if (Thin && !M.getParent()->isThin())
448     fail("Cannot convert a regular archive to a thin one");
449   NewArchiveIterator NI(M, Name);
450   if (Pos == -1)
451     Members.push_back(NI);
452   else
453     Members[Pos] = NI;
454 }
455
456 enum InsertAction {
457   IA_AddOldMember,
458   IA_AddNewMeber,
459   IA_Delete,
460   IA_MoveOldMember,
461   IA_MoveNewMember
462 };
463
464 static InsertAction computeInsertAction(ArchiveOperation Operation,
465                                         const object::Archive::Child &Member,
466                                         StringRef Name,
467                                         std::vector<StringRef>::iterator &Pos) {
468   if (Operation == QuickAppend || Members.empty())
469     return IA_AddOldMember;
470
471   auto MI =
472       std::find_if(Members.begin(), Members.end(), [Name](StringRef Path) {
473         return Name == sys::path::filename(Path);
474       });
475
476   if (MI == Members.end())
477     return IA_AddOldMember;
478
479   Pos = MI;
480
481   if (Operation == Delete)
482     return IA_Delete;
483
484   if (Operation == Move)
485     return IA_MoveOldMember;
486
487   if (Operation == ReplaceOrInsert) {
488     StringRef PosName = sys::path::filename(RelPos);
489     if (!OnlyUpdate) {
490       if (PosName.empty())
491         return IA_AddNewMeber;
492       return IA_MoveNewMember;
493     }
494
495     // We could try to optimize this to a fstat, but it is not a common
496     // operation.
497     sys::fs::file_status Status;
498     failIfError(sys::fs::status(*MI, Status), *MI);
499     if (Status.getLastModificationTime() < Member.getLastModified()) {
500       if (PosName.empty())
501         return IA_AddOldMember;
502       return IA_MoveOldMember;
503     }
504
505     if (PosName.empty())
506       return IA_AddNewMeber;
507     return IA_MoveNewMember;
508   }
509   llvm_unreachable("No such operation");
510 }
511
512 // We have to walk this twice and computing it is not trivial, so creating an
513 // explicit std::vector is actually fairly efficient.
514 static std::vector<NewArchiveIterator>
515 computeNewArchiveMembers(ArchiveOperation Operation,
516                          object::Archive *OldArchive) {
517   std::vector<NewArchiveIterator> Ret;
518   std::vector<NewArchiveIterator> Moved;
519   int InsertPos = -1;
520   StringRef PosName = sys::path::filename(RelPos);
521   if (OldArchive) {
522     for (auto &ChildOrErr : OldArchive->children()) {
523       failIfError(ChildOrErr.getError());
524       auto &Child = ChildOrErr.get();
525       int Pos = Ret.size();
526       ErrorOr<StringRef> NameOrErr = Child.getName();
527       failIfError(NameOrErr.getError());
528       StringRef Name = NameOrErr.get();
529       if (Name == PosName) {
530         assert(AddAfter || AddBefore);
531         if (AddBefore)
532           InsertPos = Pos;
533         else
534           InsertPos = Pos + 1;
535       }
536
537       std::vector<StringRef>::iterator MemberI = Members.end();
538       InsertAction Action =
539           computeInsertAction(Operation, Child, Name, MemberI);
540       switch (Action) {
541       case IA_AddOldMember:
542         addMember(Ret, Child, Name);
543         break;
544       case IA_AddNewMeber:
545         addMember(Ret, *MemberI);
546         break;
547       case IA_Delete:
548         break;
549       case IA_MoveOldMember:
550         addMember(Moved, Child, Name);
551         break;
552       case IA_MoveNewMember:
553         addMember(Moved, *MemberI);
554         break;
555       }
556       if (MemberI != Members.end())
557         Members.erase(MemberI);
558     }
559   }
560
561   if (Operation == Delete)
562     return Ret;
563
564   if (!RelPos.empty() && InsertPos == -1)
565     fail("Insertion point not found");
566
567   if (RelPos.empty())
568     InsertPos = Ret.size();
569
570   assert(unsigned(InsertPos) <= Ret.size());
571   Ret.insert(Ret.begin() + InsertPos, Moved.begin(), Moved.end());
572
573   Ret.insert(Ret.begin() + InsertPos, Members.size(), NewArchiveIterator(""));
574   int Pos = InsertPos;
575   for (auto &Member : Members) {
576     addMember(Ret, Member, Pos);
577     ++Pos;
578   }
579
580   return Ret;
581 }
582
583 static void
584 performWriteOperation(ArchiveOperation Operation, object::Archive *OldArchive,
585                       std::vector<NewArchiveIterator> *NewMembersP) {
586   object::Archive::Kind Kind;
587   switch (FormatOpt) {
588   case Default: {
589     Triple T(sys::getProcessTriple());
590     if (T.isOSDarwin())
591       Kind = object::Archive::K_BSD;
592     else
593       Kind = object::Archive::K_GNU;
594     break;
595   }
596   case GNU:
597     Kind = object::Archive::K_GNU;
598     break;
599   case BSD:
600     Kind = object::Archive::K_BSD;
601     break;
602   }
603   if (NewMembersP) {
604     std::pair<StringRef, std::error_code> Result = writeArchive(
605         ArchiveName, *NewMembersP, Symtab, Kind, Deterministic, Thin);
606     failIfError(Result.second, Result.first);
607     return;
608   }
609   std::vector<NewArchiveIterator> NewMembers =
610       computeNewArchiveMembers(Operation, OldArchive);
611   auto Result =
612       writeArchive(ArchiveName, NewMembers, Symtab, Kind, Deterministic, Thin);
613   failIfError(Result.second, Result.first);
614 }
615
616 static void createSymbolTable(object::Archive *OldArchive) {
617   // When an archive is created or modified, if the s option is given, the
618   // resulting archive will have a current symbol table. If the S option
619   // is given, it will have no symbol table.
620   // In summary, we only need to update the symbol table if we have none.
621   // This is actually very common because of broken build systems that think
622   // they have to run ranlib.
623   if (OldArchive->hasSymbolTable())
624     return;
625
626   performWriteOperation(CreateSymTab, OldArchive, nullptr);
627 }
628
629 static void performOperation(ArchiveOperation Operation,
630                              object::Archive *OldArchive,
631                              std::vector<NewArchiveIterator> *NewMembers) {
632   switch (Operation) {
633   case Print:
634   case DisplayTable:
635   case Extract:
636     performReadOperation(Operation, OldArchive);
637     return;
638
639   case Delete:
640   case Move:
641   case QuickAppend:
642   case ReplaceOrInsert:
643     performWriteOperation(Operation, OldArchive, NewMembers);
644     return;
645   case CreateSymTab:
646     createSymbolTable(OldArchive);
647     return;
648   }
649   llvm_unreachable("Unknown operation.");
650 }
651
652 static int performOperation(ArchiveOperation Operation,
653                             std::vector<NewArchiveIterator> *NewMembers) {
654   // Create or open the archive object.
655   ErrorOr<std::unique_ptr<MemoryBuffer>> Buf =
656       MemoryBuffer::getFile(ArchiveName, -1, false);
657   std::error_code EC = Buf.getError();
658   if (EC && EC != errc::no_such_file_or_directory) {
659     errs() << ToolName << ": error opening '" << ArchiveName
660            << "': " << EC.message() << "!\n";
661     return 1;
662   }
663
664   if (!EC) {
665     object::Archive Archive(Buf.get()->getMemBufferRef(), EC);
666
667     if (EC) {
668       errs() << ToolName << ": error loading '" << ArchiveName
669              << "': " << EC.message() << "!\n";
670       return 1;
671     }
672     performOperation(Operation, &Archive, NewMembers);
673     return 0;
674   }
675
676   assert(EC == errc::no_such_file_or_directory);
677
678   if (!shouldCreateArchive(Operation)) {
679     failIfError(EC, Twine("error loading '") + ArchiveName + "'");
680   } else {
681     if (!Create) {
682       // Produce a warning if we should and we're creating the archive
683       errs() << ToolName << ": creating " << ArchiveName << "\n";
684     }
685   }
686
687   performOperation(Operation, nullptr, NewMembers);
688   return 0;
689 }
690
691 static void runMRIScript() {
692   enum class MRICommand { AddLib, AddMod, Create, Save, End, Invalid };
693
694   ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getSTDIN();
695   failIfError(Buf.getError());
696   const MemoryBuffer &Ref = *Buf.get();
697   bool Saved = false;
698   std::vector<NewArchiveIterator> NewMembers;
699   std::vector<std::unique_ptr<MemoryBuffer>> ArchiveBuffers;
700   std::vector<std::unique_ptr<object::Archive>> Archives;
701
702   for (line_iterator I(Ref, /*SkipBlanks*/ true, ';'), E; I != E; ++I) {
703     StringRef Line = *I;
704     StringRef CommandStr, Rest;
705     std::tie(CommandStr, Rest) = Line.split(' ');
706     Rest = Rest.trim();
707     if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"')
708       Rest = Rest.drop_front().drop_back();
709     auto Command = StringSwitch<MRICommand>(CommandStr.lower())
710                        .Case("addlib", MRICommand::AddLib)
711                        .Case("addmod", MRICommand::AddMod)
712                        .Case("create", MRICommand::Create)
713                        .Case("save", MRICommand::Save)
714                        .Case("end", MRICommand::End)
715                        .Default(MRICommand::Invalid);
716
717     switch (Command) {
718     case MRICommand::AddLib: {
719       auto BufOrErr = MemoryBuffer::getFile(Rest, -1, false);
720       failIfError(BufOrErr.getError(), "Could not open library");
721       ArchiveBuffers.push_back(std::move(*BufOrErr));
722       auto LibOrErr =
723           object::Archive::create(ArchiveBuffers.back()->getMemBufferRef());
724       failIfError(LibOrErr.getError(), "Could not parse library");
725       Archives.push_back(std::move(*LibOrErr));
726       object::Archive &Lib = *Archives.back();
727       for (auto &MemberOrErr : Lib.children()) {
728         failIfError(MemberOrErr.getError());
729         auto &Member = MemberOrErr.get();
730         ErrorOr<StringRef> NameOrErr = Member.getName();
731         failIfError(NameOrErr.getError());
732         addMember(NewMembers, Member, *NameOrErr);
733       }
734       break;
735     }
736     case MRICommand::AddMod:
737       addMember(NewMembers, Rest);
738       break;
739     case MRICommand::Create:
740       Create = true;
741       if (!ArchiveName.empty())
742         fail("Editing multiple archives not supported");
743       if (Saved)
744         fail("File already saved");
745       ArchiveName = Rest;
746       break;
747     case MRICommand::Save:
748       Saved = true;
749       break;
750     case MRICommand::End:
751       break;
752     case MRICommand::Invalid:
753       fail("Unknown command: " + CommandStr);
754     }
755   }
756
757   // Nothing to do if not saved.
758   if (Saved)
759     performOperation(ReplaceOrInsert, &NewMembers);
760   exit(0);
761 }
762
763 static int ar_main() {
764   // Do our own parsing of the command line because the CommandLine utility
765   // can't handle the grouped positional parameters without a dash.
766   ArchiveOperation Operation = parseCommandLine();
767   return performOperation(Operation, nullptr);
768 }
769
770 static int ranlib_main() {
771   if (RestOfArgs.size() != 1)
772     fail(ToolName + "takes just one archive as argument");
773   ArchiveName = RestOfArgs[0];
774   return performOperation(CreateSymTab, nullptr);
775 }
776
777 int main(int argc, char **argv) {
778   ToolName = argv[0];
779   // Print a stack trace if we signal out.
780   sys::PrintStackTraceOnErrorSignal();
781   PrettyStackTraceProgram X(argc, argv);
782   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
783
784   llvm::InitializeAllTargetInfos();
785   llvm::InitializeAllTargetMCs();
786   llvm::InitializeAllAsmParsers();
787
788   StringRef Stem = sys::path::stem(ToolName);
789   if (Stem.find("ranlib") == StringRef::npos &&
790       Stem.find("lib") != StringRef::npos)
791     return libDriverMain(makeArrayRef(argv, argc));
792
793   // Have the command line options parsed and handle things
794   // like --help and --version.
795   cl::ParseCommandLineOptions(argc, argv,
796     "LLVM Archiver (llvm-ar)\n\n"
797     "  This program archives bitcode files into single libraries\n"
798   );
799
800   if (Stem.find("ranlib") != StringRef::npos)
801     return ranlib_main();
802   if (Stem.find("ar") != StringRef::npos)
803     return ar_main();
804   fail("Not ranlib, ar or lib!");
805 }