aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/ObjectFile.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-02-29Rename embedded bitcode section in MachOSteven Wu1-0/+7
2015-08-07Convert getSymbolSection to return an ErrorOr.Rafael Espindola1-3/+3
2015-07-07Delete UnknownAddress. It is a perfectly valid symbol value.Rafael Espindola1-0/+9
2015-07-02Return ErrorOr from SymbolRef::getName.Rafael Espindola1-3/+3
2015-06-30Implement containsSymbol with other lower level methods.Rafael Espindola1-0/+7
2015-06-09Remove object_error::success and use std::error_code() insteadRui Ueyama1-1/+1
2015-05-31Simplify interface of function that doesn't fail.Rafael Espindola1-5/+1
2015-02-25Object: Handle Mach-O kext bundle filesJustin Bogner1-0/+1
2014-11-18Support ELF files of unknown type.Michael J. Spencer1-0/+1
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-8/+16
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+5
2014-07-06Update the MemoryBuffer API to use ErrorOr.Rafael Espindola1-3/+4
2014-06-24Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.Rafael Espindola1-3/+3
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-4/+5
2014-06-23Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola1-9/+5
2014-06-13Remove 'using std::errro_code' from lib.Rafael Espindola1-7/+6
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-12Remove system_error.h.Rafael Espindola1-1/+1
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+1
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles1-1/+1
2014-02-21Shankar kindly pointed out that I wasn't following the coding convention prop...Aaron Ballman1-1/+1
2014-02-21Fixing the MSVC build by including a file.Aaron Ballman1-0/+1
2014-02-21Add a SymbolicFile interface between Binary and ObjectFile.Rafael Espindola1-1/+10
2014-01-24Make ObjectFile ownership of the MemoryBuffer optional.Rafael Espindola1-7/+9
2014-01-22Pass the computed magic to createBinary and createObjectFile if available.Rafael Espindola1-2/+4
2014-01-22Change createObjectFile to return an ErrorOr.Rafael Espindola1-14/+10
2014-01-21Be a bit more consistent about using ErrorOr when constructing Binary objects.Rafael Espindola1-3/+3
2013-11-15Path: Recognize COFF import library file magic.Rui Ueyama1-0/+1
2013-10-15Path: Recognize Windows compiled resource file.Rui Ueyama1-0/+1
2013-07-24Delete the buffer in createObjectFile if it fails.Rafael Espindola1-1/+4
2013-06-18Basic support for parsing Mach-O universal binaries in LLVMObject libraryAlexey Samsonov1-0/+1
2013-06-11Fix variable name style. Don't cast to and from int.Rafael Espindola1-0/+2
2013-06-11Convert another use of sys::identifyFileType.Rafael Espindola1-25/+26
2013-06-10Pass a StringRef to sys::identifyFileType.Rafael Espindola1-2/+1
2013-05-30Change how we iterate over relocations on ELF.Rafael Espindola1-0/+4
2013-04-29Add getSymbolAlignment to the ObjectFile interface.Rafael Espindola1-0/+6
2013-04-07Remove unused argument.Rafael Espindola1-1/+1
2013-01-25When encountering an unknown file format, ObjectFile::createObjectFile shouldEli Bendersky1-1/+3
2011-12-25Remove unused variables.Rafael Espindola1-1/+1
2011-12-20Unweaken vtables as per http://llvm.org/docs/CodingStandards.html#ll_virtual_...David Blaikie1-0/+2
2011-09-14ObjectFile: Add support for mach-o-style dSYM companion files.Benjamin Kramer1-0/+1
2011-06-25Make Binary the parent of ObjectFile and update children to new interface.Michael J. Spencer1-12/+2
2011-06-13Revert the last two commits in the series. r132911, r132912.Michael J. Spencer1-2/+12
2011-06-13Make Binary the parent of ObjectFile and update children to new interface.Michael J. Spencer1-12/+2
2011-04-22Hook in mach-o object files into Object interface.Eric Christopher1-1/+1
2011-01-20Object: Add ELF support.Michael J. Spencer1-1/+1
2011-01-20Object: Add COFF Support.Michael J. Spencer1-1/+1
2010-12-16MemoryBuffer now return an error_code and returns a OwningPtr<MemoryBuffer> v...Michael J. Spencer1-2/+5
2010-12-09Support/MemoryBuffer: Replace all uses of std::string *ErrMsg with error_code...Michael J. Spencer1-1/+3
2010-11-29Merge System into Support.Michael J. Spencer1-1/+1