summaryrefslogtreecommitdiff
path: root/lib/Object/Archive.cpp
Commit message (Expand)AuthorAge
* [C++11] Add overloads for externally used OwningPtr functions.Ahmed Charles2014-03-05
* Add a SymbolicFile interface between Binary and ObjectFile.Rafael Espindola2014-02-21
* Be a bit more consistent about using ErrorOr when constructing Binary objects.Rafael Espindola2014-01-21
* Rename these methods to match the style guide.Rafael Espindola2014-01-21
* Return an ErrorOr<Binary *> from createBinary.Rafael Espindola2014-01-15
* Add support for the 's' operation to llvm-ar.Rafael Espindola2013-07-29
* Add 'const' qualifiers to static const char* variables.Craig Topper2013-07-16
* Change llvm-ar to use lib/Object.Rafael Espindola2013-07-12
* Don't reject an empty archive.Rafael Espindola2013-07-12
* Find the symbol table on archives created on OS X.Rafael Espindola2013-07-10
* Don't crash in 'llvm -s' when an archive has no symtab.Rafael Espindola2013-07-10
* Add missing getters. They will be used in llvm-ar.Rafael Espindola2013-07-09
* Archive members cannot be larger than 4GB. Return a uint32_t.Rafael Espindola2013-07-09
* Add getHeader helper and move ToHeader to the cpp file.Rafael Espindola2013-07-09
* Compute the size of an archive member in the constructor.Rafael Espindola2013-07-09
* Move some code out of line. No functionality change.Rafael Espindola2013-07-09
* Remove a useless declarations (found by scan-build)Sylvestre Ledru2013-07-05
* Use the raw member names in Archive::Archive.Rafael Espindola2013-07-05
* Add support for archives with no symbol table or string table.Rafael Espindola2013-07-04
* Add support for gnu archives with a string table and no symtab.Rafael Espindola2013-07-03
* Remove the LLVM specific archive index.Rafael Espindola2013-06-14
* [Object/COFF] Fix Windows .lib name handling.Rui Ueyama2013-06-03
* [Object][Archive] Improve performance.Michael J. Spencer2013-02-03
* [Object][Archive] Fix name handling with bsd style long names.Michael J. Spencer2013-01-10
* [Object][Archive] Apparently StringRef::getAsInteger for APInt accepts spaces.Michael J. Spencer2013-01-10
* [Object][Archive] Use uint64_t instead of APInt. It is significantly faster.Michael J. Spencer2013-01-09
* Use the new script to sort the includes of every file under lib.Chandler Carruth2012-12-03
* s/assert/llvm_unreachable/Matt Beaumont-Gay2012-11-14
* Fix broken asserts. Also, spell 'indices' correctly.Matt Beaumont-Gay2012-11-14
* [Object] Fix endianess bug by refactoring Archive::Symbol::getMember.Michael J. Spencer2012-11-14
* Adding changes to support GNU style archive library readingShankar Easwaran2012-11-13
* Convert comments to proper Doxygen comments.Dmitri Gribenko2012-06-09
* Mark some static arrays as const.Craig Topper2012-05-24
* [Object]David Meyer2012-03-09
* Remove static ctor.Benjamin Kramer2012-02-22
* Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie2011-12-20
* Simplify code.Benjamin Kramer2011-11-04
* Removed unused variable.Chad Rosier2011-11-02
* Object/Archive: Add symbol table iteration.Michael J. Spencer2011-11-02
* Object/Archive: Cleanup anon namespace.Michael J. Spencer2011-10-25
* Object/Archive: Add BSD style long file name support and skip internal members.Michael J. Spencer2011-10-25
* lib/Object: Suppress warnings on gcc-4.3.4 cygwinNAKAMURA Takumi2011-10-08
* Object: constize Archive.Michael J. Spencer2011-10-08
* Object: Add archive support.Michael J. Spencer2011-09-27