summaryrefslogtreecommitdiff
path: root/lib/Object/ObjectFile.cpp
Commit message (Expand)AuthorAge
* Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.Rafael Espindola2014-06-24
* Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola2014-06-23
* Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola2014-06-23
* Remove 'using std::errro_code' from lib.Rafael Espindola2014-06-13
* Don't use 'using std::error_code' in include/llvm.Rafael Espindola2014-06-12
* Remove system_error.h.Rafael Espindola2014-06-12
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-06
* [C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles2014-03-05
* Shankar kindly pointed out that I wasn't following the coding convention prop...Aaron Ballman2014-02-21
* Fixing the MSVC build by including a file.Aaron Ballman2014-02-21
* Add a SymbolicFile interface between Binary and ObjectFile.Rafael Espindola2014-02-21
* Make ObjectFile ownership of the MemoryBuffer optional.Rafael Espindola2014-01-24
* Pass the computed magic to createBinary and createObjectFile if available.Rafael Espindola2014-01-22
* Change createObjectFile to return an ErrorOr.Rafael Espindola2014-01-22
* Be a bit more consistent about using ErrorOr when constructing Binary objects.Rafael Espindola2014-01-21
* Path: Recognize COFF import library file magic.Rui Ueyama2013-11-15
* Path: Recognize Windows compiled resource file.Rui Ueyama2013-10-15
* Delete the buffer in createObjectFile if it fails.Rafael Espindola2013-07-24
* Basic support for parsing Mach-O universal binaries in LLVMObject libraryAlexey Samsonov2013-06-18
* Fix variable name style. Don't cast to and from int.Rafael Espindola2013-06-11
* Convert another use of sys::identifyFileType.Rafael Espindola2013-06-11
* Pass a StringRef to sys::identifyFileType.Rafael Espindola2013-06-10
* Change how we iterate over relocations on ELF.Rafael Espindola2013-05-30
* Add getSymbolAlignment to the ObjectFile interface.Rafael Espindola2013-04-29
* Remove unused argument.Rafael Espindola2013-04-07
* When encountering an unknown file format, ObjectFile::createObjectFile shouldEli Bendersky2013-01-25
* Remove unused variables.Rafael Espindola2011-12-25
* Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie2011-12-20
* ObjectFile: Add support for mach-o-style dSYM companion files.Benjamin Kramer2011-09-14
* Make Binary the parent of ObjectFile and update children to new interface.Michael J. Spencer2011-06-25
* Revert the last two commits in the series. r132911, r132912.Michael J. Spencer2011-06-13
* Make Binary the parent of ObjectFile and update children to new interface.Michael J. Spencer2011-06-13
* Hook in mach-o object files into Object interface.Eric Christopher2011-04-22
* Object: Add ELF support.Michael J. Spencer2011-01-20
* Object: Add COFF Support.Michael J. Spencer2011-01-20
* MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer2010-12-16
* Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer2010-12-09
* Merge System into Support.Michael J. Spencer2010-11-29
* Fix typo: Exectuable -> ExecutablePeter Collingbourne2010-11-17
* Object: Get rid of sys::Path, Triple, and cleanup namespace.Michael J. Spencer2010-11-16
* Add LLVMObject Library.Michael J. Spencer2010-11-15