aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/MachOUniversal.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-09Return ErrorOr<std::unique_ptr<Archive>> form getAsArchive.Rafael Espindola1-14/+10
2014-10-20Be more specific about return type of MachOUniversalBinary::getObjectForArchAlexey Samsonov1-2/+2
2014-09-03unique_ptrify MachOUniversalBinary::createDavid Blaikie1-2/+2
2014-08-19Fix a pair of use after free. Should bring the bots back.Rafael Espindola1-2/+2
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-13/+9
2014-07-31A std::unique_ptr case I missed in the previous patch.Rafael Espindola1-2/+3
2014-06-24Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.Rafael Espindola1-8/+9
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-2/+2
2014-06-23Convert a few methods to use ErrorOr.Rafael Espindola1-10/+6
2014-06-19Change the output of llvm-nm and llvm-size for Mach-O universal files (akaKevin Enderby1-6/+2
2014-06-18Teach llvm-size to know about Mach-O universal files (aka fat files) andKevin Enderby1-1/+1
2014-06-14Replacing the private implementations of SwapValue with calls to sys::swapByt...Artyom Skrobov1-12/+7
2014-06-14Renaming SwapByteOrder() to getSwappedBytes()Artyom Skrobov1-1/+1
2014-06-13Remove 'using std::errro_code' from lib.Rafael Espindola1-10/+8
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-05-14Teach llvm-nm to know about fat archives (aka MachOUniversal filesKevin Enderby1-0/+20
2014-04-15[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...Craig Topper1-1/+1
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-5/+5
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles1-1/+1
2014-01-21Be a bit more consistent about using ErrorOr when constructing Binary objects.Rafael Espindola1-4/+14
2014-01-07Re-sort all of the includes with ./utils/sort_includes.py so thatChandler Carruth1-1/+0
2013-09-01Move everything depending on Object/MachOFormat.h over to Support/MachO.h.Charles Davis1-29/+29
2013-08-27Revert "Fix the build broken by r189315." and "Move everything depending on O...Charles Davis1-29/+29
2013-08-27Move everything depending on Object/MachOFormat.h over to Support/MachO.h.Charles Davis1-29/+29
2013-06-19MachOUniversal.cpp: Fix abuse of Twine. It would be sufficient to use std::st...NAKAMURA Takumi1-3/+3
2013-06-18Basic support for parsing Mach-O universal binaries in LLVMObject libraryAlexey Samsonov1-0/+139