Don't own the buffer in object::Binary.
[oota-llvm.git] / lib / Object / ObjectFile.cpp
2014-08-19 Rafael EspindolaDon't own the buffer in object::Binary.
2014-07-31 Rafael EspindolaUse std::unique_ptr to make the ownership explicit.
2014-07-06 Rafael EspindolaUpdate the MemoryBuffer API to use ErrorOr.
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-13 Rafael EspindolaRemove 'using std::errro_code' from lib.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-12 Rafael EspindolaRemove system_error.h.
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2014-03-05 Ahmed Charles[C++11] Replace OwningPtr::take() with OwningPtr::relea...
2014-02-21 Aaron BallmanShankar kindly pointed out that I wasn't following...
2014-02-21 Aaron BallmanFixing the MSVC build by including a file.
2014-02-21 Rafael EspindolaAdd a SymbolicFile interface between Binary and ObjectFile.
2014-01-24 Rafael EspindolaMake ObjectFile ownership of the MemoryBuffer optional.
2014-01-22 Rafael EspindolaPass the computed magic to createBinary and createObjec...
2014-01-22 Rafael EspindolaChange createObjectFile to return an ErrorOr.
2014-01-21 Rafael EspindolaBe a bit more consistent about using ErrorOr when const...
2013-11-15 Rui UeyamaPath: Recognize COFF import library file magic.
2013-10-15 Rui UeyamaPath: Recognize Windows compiled resource file.
2013-07-24 Rafael EspindolaDelete the buffer in createObjectFile if it fails.
2013-06-18 Alexey SamsonovBasic support for parsing Mach-O universal binaries...
2013-06-11 Rafael EspindolaFix variable name style. Don't cast to and from int.
2013-06-11 Rafael EspindolaConvert another use of sys::identifyFileType.
2013-06-10 Rafael EspindolaPass a StringRef to sys::identifyFileType.
2013-05-30 Rafael EspindolaChange how we iterate over relocations on ELF.
2013-04-29 Rafael EspindolaAdd getSymbolAlignment to the ObjectFile interface.
2013-04-07 Rafael EspindolaRemove unused argument.
2013-01-25 Eli BenderskyWhen encountering an unknown file format, ObjectFile...
2011-12-25 Rafael EspindolaRemove unused variables.
2011-12-20 David BlaikieUnweaken vtables as per llvm.org/docs/CodingStandards...
2011-09-14 Benjamin KramerObjectFile: Add support for mach-o-style dSYM companion...
2011-06-25 Michael J. SpencerMake Binary the parent of ObjectFile and update childre...
2011-06-13 Michael J. SpencerRevert the last two commits in the series. r132911...
2011-06-13 Michael J. SpencerMake Binary the parent of ObjectFile and update childre...
2011-04-22 Eric ChristopherHook in mach-o object files into Object interface.
2011-01-20 Michael J. SpencerObject: Add ELF support.
2011-01-20 Michael J. SpencerObject: Add COFF Support.
2010-12-16 Michael J. SpencerMemoryBuffer now return an error_code and returns a...
2010-12-09 Michael J. SpencerSupport/MemoryBuffer: Replace all uses of std::string...
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-17 Peter CollingbourneFix typo: Exectuable -> Executable
2010-11-16 Michael J. SpencerObject: Get rid of sys::Path, Triple, and cleanup names...
2010-11-15 Michael J. SpencerAdd LLVMObject Library.