aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/Object.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-08-07Convert getSymbolSection to return an ErrorOr.Rafael Espindola1-1/+3
2015-07-06Remove getRelocationAddress.Rafael Espindola1-7/+0
2015-07-03Return ErrorOr from getSymbolAddress.Rafael Espindola1-4/+4
2015-07-02Return ErrorOr from SymbolRef::getName.Rafael Espindola1-4/+4
2015-06-30Use ErrorOr in getRelocationAdress.Rafael Espindola1-4/+4
2015-06-30Don't return error_code from a function that doesn't fail.Rafael Espindola1-3/+1
2015-06-30Don't return error_code from a function that doesn't fail.Rafael Espindola1-4/+1
2015-06-29Don't return error_code from function that never fails.Rafael Espindola1-4/+1
2015-06-24Change how symbol sizes are handled in lib/Object.Rafael Espindola1-1/+1
2015-06-03Move to llvm-objdump a large amount of code to that is only used there.Rafael Espindola1-7/+1
2015-06-01Simplify another function that doesn't fail.Rafael Espindola1-4/+1
2014-10-08Remove bogus std::error_code returns form SectionRef.Rafael Espindola1-12/+3
2014-09-05Restore the ability to check if LLVMCreateObjectFile was successfulBjorn Steinbrink1-3/+4
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-18/+25
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+3
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-1/+3
2014-06-13Remove 'using std::errro_code' from lib.Rafael Espindola1-15/+14
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-04-21Convert getFileOffset to getOffset and move it to its only user.Rafael Espindola1-7/+0
2014-04-15[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-1/+1
2014-02-10Change the begin and end methods in ObjectFile to match the style guide.Rafael Espindola1-6/+6
2014-01-30Simplify the handling of iterators in ObjectFile.Rafael Espindola1-10/+3
2014-01-22Change createObjectFile to return an ErrorOr.Rafael Espindola1-1/+3
2014-01-07Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth1-1/+1
2013-06-05Handle relocations that don't point to symbols.Rafael Espindola1-4/+1
2013-05-01This patch breaks up Wrap.h so that it does not have to include all of Filip Pizlo1-1/+1
2013-04-22Move C++ code out of the C headers and into either C++ headersEric Christopher1-0/+39
2011-11-29Fixed ObjectFile functions:Danil Malyshev1-2/+9
2011-11-27Revert r145180 as it is causing test failures on all the bots.Chandler Carruth1-9/+2
2011-11-27Fixed ObjectFile functions:Danil Malyshev1-2/+9
2011-10-27Expose relocation accessors through the libObject C API.Owen Anderson1-0/+45
2011-10-27Add relocation iterators to the libObject C API.Owen Anderson1-0/+23
2011-10-21Use LLVMBool for a function that logically returns a boolean value.Owen Anderson1-1/+1
2011-10-21Bind libObject API for obtaining the section containing a Symbol.Owen Anderson1-0/+6
2011-10-21Expand the coverage of the libObject C bindings to include more SectionRef ac...Owen Anderson1-0/+69
2011-10-07Change relocation API to be per section. This time without breaking GCC.Michael J. Spencer1-2/+2
2011-10-07Revert 141376 and 141377 due to breaking the build.Bill Wendling1-2/+2
2011-10-07Change relocation API to be per section.Michael J. Spencer1-2/+2
2011-06-25Object: Add proper error handling.Michael J. Spencer1-6/+15
2011-04-03Move Object.cpp out of VMCore and into Object.Eric Christopher1-0/+59