aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/ObjectFile.cpp
AgeCommit message (Expand)AuthorFilesLines
2017-10-10Convert two uses of ErrorOr to Expected.Rafael Espindola1-2/+2
2017-09-26[dwarfdump] Skip 'stripped' sectionsJonas Devlieghere1-0/+2
2017-09-19Allow public Triple deduction from ObjectFiles.Vlad Tsyrklevich1-0/+25
2017-06-07Move Object format code to lib/BinaryFormat.Zachary Turner1-29/+30
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth1-1/+1
2017-04-19[Object] Fix some Clang-tidy modernize and Include What You Use warnings; oth...Eugene Zelenko1-3/+11
2016-11-30[WebAssembly] Add llvm-objdump support for wasm file formatDerek Schuff1-1/+4
2016-11-15Add a file magic for CL.exe's object file created with /GL.Rui Ueyama1-0/+1
2016-10-18Object: Add a missing return in ObjectFile::createObjectFileJustin Bogner1-2/+2
2016-05-02Thread Expected<...> up from libObject’s getType() for symbols to allow llv...Kevin Enderby1-2/+5
2016-04-20Thread Expected<...> up from libObject’s getName() for symbols to allow llv...Kevin Enderby1-3/+3
2016-04-06Thread Expected<...> up from createMachOObjectFile() to allow llvm-objdump to...Kevin Enderby1-10/+10
2016-03-25[Object] Make createMachOObjectFile return Expected<...> rather thanLang Hames1-1/+1
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