Replace OwningPtr<T> with std::unique_ptr<T>.
[oota-llvm.git] / lib / Object / ObjectFile.cpp
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.