OSDN Git Service

Object: Find terminator correctly when reading long filenames in GNU archives (PR37244)
[android-x86/external-llvm.git] / lib / Object / Archive.cpp
2018-05-08 Hans WennborgObject: Find terminator correctly when reading long...
2017-10-27 Jake EhrlichMake 32-bit member offset in Archive::Symbol::getMember...
2017-09-20 Jake EhrlichRename K_MIPS64 to K_GNU64
2017-06-06 Chandler CarruthSort the remaining #include lines in include/... and...
2017-04-19 Eugene Zelenko[Object] Fix some Clang-tidy modernize and Include...
2016-11-11 Mehdi AminiMake the Error class constructor protected
2016-10-24 Pavel Labath[Object] Replace TimeValue with std::chrono
2016-10-05 Lang Hames[Object] Fix a crash in Archive::child_iterator's defau...
2016-09-30 Rui Ueyama[Object] Define Archive::isEmpty().
2016-08-04 Kevin EnderbyClean up the logic of the Archive::Child::Child() with...
2016-08-03 Kevin EnderbyClean up of libObject/Archive interfaces and change...
2016-08-03 Vedant KumarReapply "More fixes to get good error messages for...
2016-08-03 Vedant KumarRevert "More fixes to get good error messages for bad...
2016-08-02 Kevin EnderbyMore fixes to get good error messages for bad archives.
2016-08-01 David BlaikieSimplify some code found when it was moved in r277177
2016-07-29 Kevin EnderbyThink this will fix issues with the error messages...
2016-07-29 Kevin EnderbyThe next step along the way to getting good error messa...
2016-07-25 Kevin EnderbyNext step along the way to getting good error messages...
2016-07-22 Lang Hames[Support] Make ErrorAsOutParameter take an Error* rathe...
2016-07-19 Kevin EnderbyNext step along the way to getting good error messages...
2016-07-14 Lang Hames[Object] Change Archive::findSym to return an Expected...
2016-07-14 Lang Hames[Object] Re-apply r275316 now that I have the correspon...
2016-07-14 Lang Hames[Object] Revert r275316, Archive::child_iterator change...
2016-07-13 Lang Hames[Object] Change Archive::child_iterator for better...
2016-07-05 Saleem AbdulrasoolObject: support empty UID/GID fields
2016-06-29 Kevin EnderbyChange Archive::create() from ErrorOr<...> to Expected...
2016-06-24 Rafael EspindolaMake sure Format is always initialized.
2016-06-17 Kevin EnderbyAdd support for Darwin’s static library table of conten...
2016-05-17 Kevin EnderbyChange llvm-objdump, llvm-nm and llvm-size when reporti...
2016-05-02 Rafael EspindolaExpose a getFullName for thin archive members.
2016-04-18 Mehdi Amini[NFC] Header cleanup
2016-04-06 Kevin EnderbyThread Expected<...> up from createMachOObjectFile...
2016-03-31 Peter CollingbourneObject: Correctly read thin archives containing absolut...
2016-02-16 Vedant KumarSimplify users of StringRef::{l,r}trim (NFC)
2015-11-05 Kevin EnderbyReapply r250906 with many suggested updates from Rafael...
2015-11-03 Rafael EspindolaThis never returns end(), simplify to use Child instead...
2015-10-31 Rafael EspindolaDon't store a Child to the first regular member.
2015-10-31 Rafael EspindolaSimplify handling of archive Symbol tables.
2015-10-31 Rafael EspindolaSimplify the handling of the archive string table.
2015-10-21 Kevin EnderbyBacking out commit r250906 as it broke lld.
2015-10-21 Kevin EnderbyThis removes the eating of the error in Archive::Child...
2015-10-13 Kevin EnderbyTweak to r250117 and change to use ErrorOr and drop...
2015-10-12 Kevin EnderbyFixed bugs in llvm-obdump while parsing Mach-O files...
2015-10-08 Rafael EspindolaHandle Archive::getNumberOfSymbols being called in...
2015-07-22 Rafael EspindolaFix fetching the symbol table of a thin archive.
2015-07-15 Rafael EspindolaSimplify a few uses of remove_filename by using parent_...
2015-07-14 Rafael EspindolaAdd support for reading members out of thin archives.
2015-07-14 Rafael EspindolaAdd a herper function. NFC.
2015-07-13 Rafael EspindolaFix reading archive members with / in the name.
2015-07-08 Rafael EspindolaDon't reject an archive with just a symbol table.
2015-07-08 Rafael EspindolaDisallow Archive::child_iterator that don't point to...
2015-06-09 Rui UeyamaRemove object_error::success and use std::error_code...
2015-05-26 Rui UeyamaObject: Add Archive::getNumberOfSymbols().
2015-03-02 Rui UeyamaUse read{16,32,64}{le,be}() instead of *reinterpret_cas...
2015-02-17 Simon Atanasyan[Object] Support reading 64-bit MIPS ELF archives
2015-02-10 Simon Atanasyan[Object] Reformat the code with clang-format
2015-01-16 Kevin EnderbyFix the Archive::Child::getRawSize() method used by...
2015-01-16 Kevin EnderbyThis should fix the build bot clang-cmake-armv7-a15...
2015-01-15 Kevin EnderbyAdd the option, -archive-headers, used with -macho...
2014-12-16 Rafael EspindolaStart adding thin archive support.
2014-11-12 Nick KledzikObject, support both mach-o archive t.o.c file names
2014-08-19 Rafael EspindolaDon't own the buffer in object::Binary.
2014-07-31 Rafael EspindolaA std::unique_ptr case I missed in the previous patch.
2014-07-21 David BlaikieCorrect the ownership passing semantics of object:...
2014-07-21 David BlaikieRemove unnecessary use of unique_ptr::release() used...
2014-07-21 David BlaikieRemove unused variable.
2014-07-08 Kevin EnderbyAdd support for BSD format Archive map symbols (aka...
2014-06-24 Rafael EspindolaPass a unique_ptr<MemoryBuffer> to the constructors...
2014-06-23 Rafael EspindolaPass a std::unique_ptr& to the create??? methods is...
2014-06-23 Rafael EspindolaMake ObjectFile and BitcodeReader always own the Memory...
2014-06-16 Rafael EspindolaConvert the Archive API to use ErrorOr.
2014-06-13 Rafael EspindolaRemove 'using std::errro_code' from lib.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-05-31 Rafael EspindolaUse error_code() instead of error_code::succes()
2014-05-18 Craig TopperRemove last uses of OwningPtr from llvm. As far as...
2014-04-15 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-03-05 Ahmed Charles[C++11] Add overloads for externally used OwningPtr...
2014-02-21 Rafael EspindolaAdd a SymbolicFile interface between Binary and ObjectFile.
2014-01-21 Rafael EspindolaBe a bit more consistent about using ErrorOr when const...
2014-01-21 Rafael EspindolaRename these methods to match the style guide.
2014-01-15 Rafael EspindolaReturn an ErrorOr<Binary *> from createBinary.
2013-07-29 Rafael EspindolaAdd support for the 's' operation to llvm-ar.
2013-07-16 Craig TopperAdd 'const' qualifiers to static const char* variables.
2013-07-12 Rafael EspindolaChange llvm-ar to use lib/Object.
2013-07-12 Rafael EspindolaDon't reject an empty archive.
2013-07-10 Rafael EspindolaFind the symbol table on archives created on OS X.
2013-07-10 Rafael EspindolaDon't crash in 'llvm -s' when an archive has no symtab.
2013-07-09 Rafael EspindolaAdd missing getters. They will be used in llvm-ar.
2013-07-09 Rafael EspindolaArchive members cannot be larger than 4GB. Return a...
2013-07-09 Rafael EspindolaAdd getHeader helper and move ToHeader to the cpp file.
2013-07-09 Rafael EspindolaCompute the size of an archive member in the constructor.
2013-07-09 Rafael EspindolaMove some code out of line. No functionality change.
2013-07-05 Sylvestre LedruRemove a useless declarations (found by scan-build)
2013-07-05 Rafael EspindolaUse the raw member names in Archive::Archive.
2013-07-04 Rafael EspindolaAdd support for archives with no symbol table or string...
2013-07-03 Rafael EspindolaAdd support for gnu archives with a string table and...
2013-06-14 Rafael EspindolaRemove the LLVM specific archive index.
2013-06-03 Rui Ueyama[Object/COFF] Fix Windows .lib name handling.
2013-02-03 Michael J. Spencer[Object][Archive] Improve performance.
2013-01-10 Michael J. Spencer[Object][Archive] Fix name handling with bsd style...
next