aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Object/ELFObjectFile.cpp
AgeCommit message (Expand)AuthorFilesLines
2015-06-04[Object, ELF] Don't assert on invalid magic in createELFObjectFile.Alexey Samsonov1-2/+3
2015-06-04[Object, ELF] Don't call llvm_unreachable() from createELFObjectFile.Alexey Samsonov1-2/+2
2015-06-02Simplify now that we always use an alignment of 2 for ELF files.Rafael Espindola1-42/+18
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-22/+13
2014-08-17Add a non-templated ELFObjectFileBase class.Rafael Espindola1-0/+4
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+2
2014-07-05This only needs a StringRef. No functionality change.Rafael Espindola1-1/+2
2014-06-24Replace two release calls with std::move. I missed this on the previous commit.Rafael Espindola1-2/+2
2014-06-24Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.Rafael Espindola1-8/+8
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-10/+19
2014-06-23Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola1-26/+9
2014-06-18Fix a memory leak in the error path.Rafael Espindola1-2/+10
2014-06-16Fix pr17056.Rafael Espindola1-5/+5
2014-06-13Remove 'using std::errro_code' from lib.Rafael Espindola1-2/+1
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-1/+1
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles1-1/+1
2014-01-24Make ObjectFile ownership of the MemoryBuffer optional.Rafael Espindola1-9/+18
2014-01-21Be a bit more consistent about using ErrorOr when constructing Binary objects.Rafael Espindola1-15/+18
2013-08-08[Object] Split the ELF interface into 3 parts.Michael J. Spencer1-2/+1
2013-05-24Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer1-1/+1
2013-02-03[Support] Add LLVM_IS_UNALIGNED_ACCESS_FAST.Michael J. Spencer1-4/+16
2013-01-15[Object][ELF] Simplify ELFObjectFile by using ELFType.Michael J. Spencer1-8/+8
2013-01-04[Object][ELF] Add a maximum alignment. This is used by createELFObjectFile to...Michael J. Spencer1-6/+28
2012-04-16Implement GDB integration for source level debugging of code JITed usingPreston Gurd1-10/+0
2012-02-12Expose the ELFObjectFile class directly in the Object/ELF.h header, similarlyEli Bendersky1-1695/+25
2012-02-04Object: avoid undefined behavior when bounds-checkingDylan Noblesmith1-8/+22
2012-01-24Sink assert-only variables into the assertsMatt Beaumont-Gay1-16/+10
2012-01-23Silence warnings in -asserts buildMatt Beaumont-Gay1-0/+6
2012-01-22Basic runtime dynamic loading capabilities added to ELFObjectFile, implementedEli Bendersky1-19/+239
2011-11-29Fixed ObjectFile functions:Danil Malyshev1-13/+36
2011-11-27Revert r145180 as it is causing test failures on all the bots.Chandler Carruth1-36/+13
2011-11-27Fixed ObjectFile functions:Danil Malyshev1-13/+36
2011-10-26Expand relocation type field to 64 bits. MachO scattered relocations require...Owen Anderson1-2/+2
2011-10-17Object: Add some types to SymbolRef::Type.Michael J. Spencer1-0/+6
2011-10-17Object: Add isSymbolAbsolute and getSymbolSection.Michael J. Spencer1-0/+29
2011-10-17Object: Add isSymbolWeak.Michael J. Spencer1-0/+12
2011-10-17Object: Implement casting for concrete classes.Michael J. Spencer1-0/+5
2011-10-17Object: Fix redundant name.Michael J. Spencer1-2/+2
2011-10-13ELF: Fix the section that relocations apply to. Add test to verify. Patch by ...Michael J. Spencer1-3/+3
2011-10-13Elf_Word is not POD! Stop using it in a DenseMap.Nick Lewycky1-7/+4
2011-10-12lib/Object/ELFObjectFile.cpp: Fix undefined behavior for MC/ELF/many-section....NAKAMURA Takumi1-1/+4
2011-10-11Reapply r141605 with fixes for appropriate handling of reserved section numbersNick Lewycky1-17/+50
2011-10-11Add support for .symtab_shnidx. Unfortunately, doing this required breaking aNick Lewycky1-9/+42
2011-10-11Revert r141605 as it broke tests for llvm-nm.Nick Lewycky1-34/+13
2011-10-11Add support for reading many-section ELF files.Nick Lewycky1-13/+34
2011-10-10Object: add getSectionAlignment.Michael J. Spencer1-0/+10
2011-10-07Fix GCC again.Michael J. Spencer1-1/+1
2011-10-07Change relocation API to be per section. This time without breaking GCC.Michael J. Spencer1-79/+301
2011-10-07Revert 141376 and 141377 due to breaking the build.Bill Wendling1-301/+79