0e3c4fdc2ce90b59df3b6a35b7886d668938f697
[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 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   if (mode & 004)
316     outs() << "r";
317   else
318     outs() << "-";
319   if (mode & 002)
320     outs() << "w";
321   else
322     outs() << "-";
323   if (mode & 001)
324     outs() << "x";
325   else
326     outs() << "-";
327 }
328
329 // Implement the 't' operation. This function prints out just
330 // the file names of each of the members. However, if verbose mode is requested
331 // ('v' modifier) then the file type, permission mode, user, group, size, and
332 // modification time are also printed.
333 static void doDisplayTable(StringRef Name, const object::Archive::Child &C) {
334   if (Verbose) {
335     sys::fs::perms Mode = C.getAccessMode();
336     printMode((Mode >> 6) & 007);
337     printMode((Mode >> 3) & 007);
338     printMode(Mode & 007);
339     outs() << ' ' << C.getUID();
340     outs() << '/' << C.getGID();
341     outs() << ' ' << format("%6llu", C.getSize());
342     outs() << ' ' << C.getLastModified().str();
343     outs() << ' ';
344   }
345   outs() << Name << "\n";
346 }
347
348 // Implement the 'x' operation. This function extracts files back to the file
349 // system.
350 static void doExtract(StringRef Name, const object::Archive::Child &C) {
351   // Retain the original mode.
352   sys::fs::perms Mode = C.getAccessMode();
353   SmallString<128> Storage = Name;
354
355   int FD;
356   failIfError(
357       sys::fs::openFileForWrite(Storage.c_str(), FD, sys::fs::F_None, Mode),
358       Storage.c_str());
359
360   {
361     raw_fd_ostream file(FD, false);
362
363     // Get the data and its length
364     StringRef Data = *C.getBuffer();
365
366     // Write the data.
367     file.write(Data.data(), Data.size());
368   }
369
370   // If we're supposed to retain the original modification times, etc. do so
371   // now.
372   if (OriginalDates)
373     failIfError(
374         sys::fs::setLastModificationAndAccessTime(FD, C.getLastModified()));
375
376   if (close(FD))
377     fail("Could not close the file");
378 }
379
380 static bool shouldCreateArchive(ArchiveOperation Op) {
381   switch (Op) {
382   case Print:
383   case Delete:
384   case Move:
385   case DisplayTable:
386   case Extract:
387   case CreateSymTab:
388     return false;
389
390   case QuickAppend:
391   case ReplaceOrInsert:
392     return true;
393   }
394
395   llvm_unreachable("Missing entry in covered switch.");
396 }
397
398 static void performReadOperation(ArchiveOperation Operation,
399                                  object::Archive *OldArchive) {
400   if (Operation == Extract && OldArchive->isThin()) {
401     errs() << "extracting from a thin archive is not supported\n";
402     std::exit(1);
403   }
404
405   bool Filter = !Members.empty();
406   for (const object::Archive::Child &C : OldArchive->children()) {
407     ErrorOr<StringRef> NameOrErr = C.getName();
408     failIfError(NameOrErr.getError());
409     StringRef Name = NameOrErr.get();
410
411     if (Filter) {
412       auto I = std::find(Members.begin(), Members.end(), Name);
413       if (I == Members.end())
414         continue;
415       Members.erase(I);
416     }
417
418     switch (Operation) {
419     default:
420       llvm_unreachable("Not a read operation");
421     case Print:
422       doPrint(Name, C);
423       break;
424     case DisplayTable:
425       doDisplayTable(Name, C);
426       break;
427     case Extract:
428       doExtract(Name, C);
429       break;
430     }
431   }
432   if (Members.empty())
433     return;
434   for (StringRef Name : Members)
435     errs() << Name << " was not found\n";
436   std::exit(1);
437 }
438
439 template <typename T>
440 void addMember(std::vector<NewArchiveIterator> &Members, T I, StringRef Name,
441                int Pos = -1) {
442   NewArchiveIterator NI(I, Name);
443   if (Pos == -1)
444     Members.push_back(NI);
445   else
446     Members[Pos] = NI;
447 }
448
449 enum InsertAction {
450   IA_AddOldMember,
451   IA_AddNewMeber,
452   IA_Delete,
453   IA_MoveOldMember,
454   IA_MoveNewMember
455 };
456
457 static InsertAction computeInsertAction(ArchiveOperation Operation,
458                                         object::Archive::child_iterator I,
459                                         StringRef Name,
460                                         std::vector<StringRef>::iterator &Pos) {
461   if (Operation == QuickAppend || Members.empty())
462     return IA_AddOldMember;
463
464   auto MI =
465       std::find_if(Members.begin(), Members.end(), [Name](StringRef Path) {
466         return Name == sys::path::filename(Path);
467       });
468
469   if (MI == Members.end())
470     return IA_AddOldMember;
471
472   Pos = MI;
473
474   if (Operation == Delete)
475     return IA_Delete;
476
477   if (Operation == Move)
478     return IA_MoveOldMember;
479
480   if (Operation == ReplaceOrInsert) {
481     StringRef PosName = sys::path::filename(RelPos);
482     if (!OnlyUpdate) {
483       if (PosName.empty())
484         return IA_AddNewMeber;
485       return IA_MoveNewMember;
486     }
487
488     // We could try to optimize this to a fstat, but it is not a common
489     // operation.
490     sys::fs::file_status Status;
491     failIfError(sys::fs::status(*MI, Status), *MI);
492     if (Status.getLastModificationTime() < I->getLastModified()) {
493       if (PosName.empty())
494         return IA_AddOldMember;
495       return IA_MoveOldMember;
496     }
497
498     if (PosName.empty())
499       return IA_AddNewMeber;
500     return IA_MoveNewMember;
501   }
502   llvm_unreachable("No such operation");
503 }
504
505 // We have to walk this twice and computing it is not trivial, so creating an
506 // explicit std::vector is actually fairly efficient.
507 static std::vector<NewArchiveIterator>
508 computeNewArchiveMembers(ArchiveOperation Operation,
509                          object::Archive *OldArchive) {
510   std::vector<NewArchiveIterator> Ret;
511   std::vector<NewArchiveIterator> Moved;
512   int InsertPos = -1;
513   StringRef PosName = sys::path::filename(RelPos);
514   if (OldArchive) {
515     for (auto &Child : OldArchive->children()) {
516       int Pos = Ret.size();
517       ErrorOr<StringRef> NameOrErr = Child.getName();
518       failIfError(NameOrErr.getError());
519       StringRef Name = NameOrErr.get();
520       if (Name == PosName) {
521         assert(AddAfter || AddBefore);
522         if (AddBefore)
523           InsertPos = Pos;
524         else
525           InsertPos = Pos + 1;
526       }
527
528       std::vector<StringRef>::iterator MemberI = Members.end();
529       InsertAction Action =
530           computeInsertAction(Operation, Child, Name, MemberI);
531       switch (Action) {
532       case IA_AddOldMember:
533         addMember(Ret, Child, Name);
534         break;
535       case IA_AddNewMeber:
536         addMember(Ret, *MemberI, Name);
537         break;
538       case IA_Delete:
539         break;
540       case IA_MoveOldMember:
541         addMember(Moved, Child, Name);
542         break;
543       case IA_MoveNewMember:
544         addMember(Moved, *MemberI, Name);
545         break;
546       }
547       if (MemberI != Members.end())
548         Members.erase(MemberI);
549     }
550   }
551
552   if (Operation == Delete)
553     return Ret;
554
555   if (!RelPos.empty() && InsertPos == -1)
556     fail("Insertion point not found");
557
558   if (RelPos.empty())
559     InsertPos = Ret.size();
560
561   assert(unsigned(InsertPos) <= Ret.size());
562   Ret.insert(Ret.begin() + InsertPos, Moved.begin(), Moved.end());
563
564   Ret.insert(Ret.begin() + InsertPos, Members.size(),
565              NewArchiveIterator("", ""));
566   int Pos = InsertPos;
567   for (auto &Member : Members) {
568     StringRef Name = sys::path::filename(Member);
569     addMember(Ret, Member, Name, Pos);
570     ++Pos;
571   }
572
573   return Ret;
574 }
575
576 static void
577 performWriteOperation(ArchiveOperation Operation, object::Archive *OldArchive,
578                       std::vector<NewArchiveIterator> *NewMembersP) {
579   object::Archive::Kind Kind;
580   switch (FormatOpt) {
581   case Default: {
582     Triple T(sys::getProcessTriple());
583     if (T.isOSDarwin())
584       Kind = object::Archive::K_BSD;
585     else
586       Kind = object::Archive::K_GNU;
587     break;
588   }
589   case GNU:
590     Kind = object::Archive::K_GNU;
591     break;
592   case BSD:
593     Kind = object::Archive::K_BSD;
594     break;
595   }
596   if (NewMembersP) {
597     std::pair<StringRef, std::error_code> Result = writeArchive(
598         ArchiveName, *NewMembersP, Symtab, Kind, Deterministic, Thin);
599     failIfError(Result.second, Result.first);
600     return;
601   }
602   std::vector<NewArchiveIterator> NewMembers =
603       computeNewArchiveMembers(Operation, OldArchive);
604   auto Result =
605       writeArchive(ArchiveName, NewMembers, Symtab, Kind, Deterministic, Thin);
606   failIfError(Result.second, Result.first);
607 }
608
609 static void createSymbolTable(object::Archive *OldArchive) {
610   // When an archive is created or modified, if the s option is given, the
611   // resulting archive will have a current symbol table. If the S option
612   // is given, it will have no symbol table.
613   // In summary, we only need to update the symbol table if we have none.
614   // This is actually very common because of broken build systems that think
615   // they have to run ranlib.
616   if (OldArchive->hasSymbolTable())
617     return;
618
619   performWriteOperation(CreateSymTab, OldArchive, nullptr);
620 }
621
622 static void performOperation(ArchiveOperation Operation,
623                              object::Archive *OldArchive,
624                              std::vector<NewArchiveIterator> *NewMembers) {
625   switch (Operation) {
626   case Print:
627   case DisplayTable:
628   case Extract:
629     performReadOperation(Operation, OldArchive);
630     return;
631
632   case Delete:
633   case Move:
634   case QuickAppend:
635   case ReplaceOrInsert:
636     performWriteOperation(Operation, OldArchive, NewMembers);
637     return;
638   case CreateSymTab:
639     createSymbolTable(OldArchive);
640     return;
641   }
642   llvm_unreachable("Unknown operation.");
643 }
644
645 static int performOperation(ArchiveOperation Operation,
646                             std::vector<NewArchiveIterator> *NewMembers) {
647   // Create or open the archive object.
648   ErrorOr<std::unique_ptr<MemoryBuffer>> Buf =
649       MemoryBuffer::getFile(ArchiveName, -1, false);
650   std::error_code EC = Buf.getError();
651   if (EC && EC != errc::no_such_file_or_directory) {
652     errs() << ToolName << ": error opening '" << ArchiveName
653            << "': " << EC.message() << "!\n";
654     return 1;
655   }
656
657   if (!EC) {
658     object::Archive Archive(Buf.get()->getMemBufferRef(), EC);
659
660     if (EC) {
661       errs() << ToolName << ": error loading '" << ArchiveName
662              << "': " << EC.message() << "!\n";
663       return 1;
664     }
665     performOperation(Operation, &Archive, NewMembers);
666     return 0;
667   }
668
669   assert(EC == errc::no_such_file_or_directory);
670
671   if (!shouldCreateArchive(Operation)) {
672     failIfError(EC, Twine("error loading '") + ArchiveName + "'");
673   } else {
674     if (!Create) {
675       // Produce a warning if we should and we're creating the archive
676       errs() << ToolName << ": creating " << ArchiveName << "\n";
677     }
678   }
679
680   performOperation(Operation, nullptr, NewMembers);
681   return 0;
682 }
683
684 static void runMRIScript() {
685   enum class MRICommand { AddLib, AddMod, Create, Save, End, Invalid };
686
687   ErrorOr<std::unique_ptr<MemoryBuffer>> Buf = MemoryBuffer::getSTDIN();
688   failIfError(Buf.getError());
689   const MemoryBuffer &Ref = *Buf.get();
690   bool Saved = false;
691   std::vector<NewArchiveIterator> NewMembers;
692   std::vector<std::unique_ptr<MemoryBuffer>> ArchiveBuffers;
693   std::vector<std::unique_ptr<object::Archive>> Archives;
694
695   for (line_iterator I(Ref, /*SkipBlanks*/ true, ';'), E; I != E; ++I) {
696     StringRef Line = *I;
697     StringRef CommandStr, Rest;
698     std::tie(CommandStr, Rest) = Line.split(' ');
699     Rest = Rest.trim();
700     if (!Rest.empty() && Rest.front() == '"' && Rest.back() == '"')
701       Rest = Rest.drop_front().drop_back();
702     auto Command = StringSwitch<MRICommand>(CommandStr.lower())
703                        .Case("addlib", MRICommand::AddLib)
704                        .Case("addmod", MRICommand::AddMod)
705                        .Case("create", MRICommand::Create)
706                        .Case("save", MRICommand::Save)
707                        .Case("end", MRICommand::End)
708                        .Default(MRICommand::Invalid);
709
710     switch (Command) {
711     case MRICommand::AddLib: {
712       auto BufOrErr = MemoryBuffer::getFile(Rest, -1, false);
713       failIfError(BufOrErr.getError(), "Could not open library");
714       ArchiveBuffers.push_back(std::move(*BufOrErr));
715       auto LibOrErr =
716           object::Archive::create(ArchiveBuffers.back()->getMemBufferRef());
717       failIfError(LibOrErr.getError(), "Could not parse library");
718       Archives.push_back(std::move(*LibOrErr));
719       object::Archive &Lib = *Archives.back();
720       for (auto &Member : Lib.children()) {
721         ErrorOr<StringRef> NameOrErr = Member.getName();
722         failIfError(NameOrErr.getError());
723         addMember(NewMembers, Member, *NameOrErr);
724       }
725       break;
726     }
727     case MRICommand::AddMod:
728       addMember(NewMembers, Rest, sys::path::filename(Rest));
729       break;
730     case MRICommand::Create:
731       Create = true;
732       if (!ArchiveName.empty())
733         fail("Editing multiple archives not supported");
734       if (Saved)
735         fail("File already saved");
736       ArchiveName = Rest;
737       break;
738     case MRICommand::Save:
739       Saved = true;
740       break;
741     case MRICommand::End:
742       break;
743     case MRICommand::Invalid:
744       fail("Unknown command: " + CommandStr);
745     }
746   }
747
748   // Nothing to do if not saved.
749   if (Saved)
750     performOperation(ReplaceOrInsert, &NewMembers);
751   exit(0);
752 }
753
754 static int ar_main() {
755   // Do our own parsing of the command line because the CommandLine utility
756   // can't handle the grouped positional parameters without a dash.
757   ArchiveOperation Operation = parseCommandLine();
758   return performOperation(Operation, nullptr);
759 }
760
761 static int ranlib_main() {
762   if (RestOfArgs.size() != 1)
763     fail(ToolName + "takes just one archive as argument");
764   ArchiveName = RestOfArgs[0];
765   return performOperation(CreateSymTab, nullptr);
766 }
767
768 int main(int argc, char **argv) {
769   ToolName = argv[0];
770   // Print a stack trace if we signal out.
771   sys::PrintStackTraceOnErrorSignal();
772   PrettyStackTraceProgram X(argc, argv);
773   llvm_shutdown_obj Y;  // Call llvm_shutdown() on exit.
774
775   llvm::InitializeAllTargetInfos();
776   llvm::InitializeAllTargetMCs();
777   llvm::InitializeAllAsmParsers();
778
779   StringRef Stem = sys::path::stem(ToolName);
780   if (Stem.find("ranlib") == StringRef::npos &&
781       Stem.find("lib") != StringRef::npos)
782     return libDriverMain(makeArrayRef(argv, argc));
783
784   // Have the command line options parsed and handle things
785   // like --help and --version.
786   cl::ParseCommandLineOptions(argc, argv,
787     "LLVM Archiver (llvm-ar)\n\n"
788     "  This program archives bitcode files into single libraries\n"
789   );
790
791   if (Stem.find("ar") != StringRef::npos)
792     return ar_main();
793   if (Stem.find("ranlib") != StringRef::npos)
794     return ranlib_main();
795   fail("Not ranlib, ar or lib!");
796 }