Home | History | Annotate | Download | only in llvm-ar

Lines Matching full:archive

1 //===-- llvm-ar.cpp - LLVM archive librarian utility ----------------------===//
10 // Builds up (relatively) standard unix archive files (.a) containing LLVM
17 #include "llvm/Bitcode/Archive.h"
42 cl::desc("[relpos] [count] <archive-file> [members]..."));
49 " d[NsS] - delete file(s) from the archive\n"
50 " m[abiSs] - move file(s) in the archive\n"
51 " p[kN] - print file(s) found in the archive\n"
52 " q[ufsS] - quick append file(s) to the archive\n"
53 " r[abfiuzRsS] - replace or insert file(s) into the archive\n"
54 " t - display contents of archive\n"
55 " x[No] - extract file(s) from the archive\n"
66 " [s] - create an archive index (cf. ranlib)\n"
68 " [u] - update only files newer than archive contents\n"
76 // This enumeration delineates the kinds of operations on an archive
80 Print, ///< Print the contents of the archive
83 QuickAppend, ///< Quickly append to end of archive
107 // the name of the archive member to which the 'a', 'b' or 'i' modifier
112 // Select which of multiple entries in the archive with the same name should be
116 // This variable holds the name of the archive file as given on the
128 // The Archive object to which all the editing operations will be sent.
129 Archive* TheArchive = 0;
157 // getArchive - Get the archive file name from the command line
164 throw "An archive name must be specified.";
237 // the archive name.
307 // the operations that add/replace files to the archive ('q' and 'r')
337 // printSymbolTable - print out the archive's symbol table.
340 const Archive::SymTabType& symtab = TheArchive->getSymbolTable();
341 for (Archive::SymTabType::const_iterator I=symtab.begin(), E=symtab.end();
348 // doPrint - Implements the 'p' operation. This function traverses the archive
356 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
407 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
445 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
481 // members from the archive. Note that if the count is specified, there should
491 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
495 Archive::iterator J = I;
505 // We're done editting, reconstruct the archive.
514 // order of the archive members so that when the archive is written the move
523 // archive.
524 Archive::iterator moveto_spot = TheArchive->end();
527 // the archive to find the member in question. If we don't find it, its no
530 for (Archive::iterator I = TheArchive->begin(), E= TheArchive->end();
547 // Scan the archive again, this time looking for the members to move to the
549 for (Archive::iterator I = TheArchive->begin(), E= TheArchive->end();
560 // We're done editting, reconstruct the archive.
569 // indiscriminantly adds the members to the archive and rebuilds it.
585 // We're done editting, reconstruct the archive.
594 // any existing files or insert new ones into the archive.
607 // Default the insertion spot to the end of the archive
608 Archive::iterator insert_spot = TheArchive->end();
610 // Iterate over the archive contents
611 for (Archive::iterator I = TheArchive->begin(), E = TheArchive->end();
614 // Determine if this archive member matches one of the paths we're trying
683 // We're done editting, reconstruct the archive.
714 // Check the path name of the archive
717 throw std::string("Archive name invalid: ") + ArchiveName;
719 // Create or open the archive object.
722 // Produce a warning if we should and we're creating the archive
725 TheArchive = Archive::CreateEmpty(ArchivePath, Context);
729 TheArchive = Archive::OpenAndLoad(ArchivePath, Context, &Error);
738 assert(TheArchive && "Unable to instantiate the archive");
740 // Make sure we clean up the archive even on failure.
741 std::auto_ptr<Archive> AutoArchive(TheArchive);