summaryrefslogtreecommitdiff
path: root/lib/Object/ELFObjectFile.cpp
AgeCommit message (Expand)Author
2017-10-10Make the ELFObjectFile constructor private.Rafael Espindola
2017-10-10Simplify. NFC.Rafael Espindola
2017-10-10Convert two uses of ErrorOr to Expected.Rafael Espindola
2017-08-12[Triple] Add isThumb and isARM functions.Florian Hahn
2017-06-07Move Object format code to lib/BinaryFormat.Zachary Turner
2017-06-06Sort the remaining #include lines in include/... and lib/....Chandler Carruth
2017-04-24[Object] Fix some Clang-tidy modernize and Include What You Use warnings; oth...Eugene Zelenko
2017-01-18[ARM] Create SubtargetFeatures from build attrsSam Parker
2017-01-18[ARM] Create objdump subtarget from build attrsSam Parker
2017-01-13Revert r291903 and r291898. Reason: they break check-lld on the bots.Ivan Krasin
2017-01-13[ARM] Enable objdump to construct triple for ARMSam Parker
2016-06-16[llvm-objdump] Support detection of feature bits from the object and implemen...Daniel Sanders
2015-06-04[Object, ELF] Don't assert on invalid magic in createELFObjectFile.Alexey Samsonov
2015-06-04[Object, ELF] Don't call llvm_unreachable() from createELFObjectFile.Alexey Samsonov
2015-06-02Simplify now that we always use an alignment of 2 for ELF files.Rafael Espindola
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola
2014-08-17Add a non-templated ELFObjectFileBase class.Rafael Espindola
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola
2014-07-05This only needs a StringRef. No functionality change.Rafael Espindola
2014-06-24Replace two release calls with std::move. I missed this on the previous commit.Rafael Espindola
2014-06-24Pass a unique_ptr<MemoryBuffer> to the constructors in the Binary hierarchy.Rafael Espindola
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola
2014-06-23Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola
2014-06-18Fix a memory leak in the error path.Rafael Espindola
2014-06-16Fix pr17056.Rafael Espindola
2014-06-13Remove 'using std::errro_code' from lib.Rafael Espindola
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles
2014-03-05[C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles
2014-01-24Make ObjectFile ownership of the MemoryBuffer optional.Rafael Espindola
2014-01-21Be a bit more consistent about using ErrorOr when constructing Binary objects.Rafael Espindola
2013-08-08[Object] Split the ELF interface into 3 parts.Michael J. Spencer
2013-05-24Replace Count{Leading,Trailing}Zeros_{32,64} with count{Leading,Trailing}Zeros.Michael J. Spencer
2013-02-03[Support] Add LLVM_IS_UNALIGNED_ACCESS_FAST.Michael J. Spencer
2013-01-15[Object][ELF] Simplify ELFObjectFile by using ELFType.Michael J. Spencer
2013-01-04[Object][ELF] Add a maximum alignment. This is used by createELFObjectFile to...Michael J. Spencer
2012-04-16Implement GDB integration for source level debugging of code JITed usingPreston Gurd
2012-02-12Expose the ELFObjectFile class directly in the Object/ELF.h header, similarlyEli Bendersky
2012-02-04Object: avoid undefined behavior when bounds-checkingDylan Noblesmith
2012-01-24Sink assert-only variables into the assertsMatt Beaumont-Gay
2012-01-23Silence warnings in -asserts buildMatt Beaumont-Gay
2012-01-22Basic runtime dynamic loading capabilities added to ELFObjectFile, implementedEli Bendersky
2011-11-29Fixed ObjectFile functions:Danil Malyshev
2011-11-27Revert r145180 as it is causing test failures on all the bots.Chandler Carruth
2011-11-27Fixed ObjectFile functions:Danil Malyshev
2011-10-26Expand relocation type field to 64 bits. MachO scattered relocations require...Owen Anderson
2011-10-17Object: Add some types to SymbolRef::Type.Michael J. Spencer
2011-10-17Object: Add isSymbolAbsolute and getSymbolSection.Michael J. Spencer
2011-10-17Object: Add isSymbolWeak.Michael J. Spencer
2011-10-17Object: Implement casting for concrete classes.Michael J. Spencer