[WebAssembly] Use TSFlags instead of keeping a list of special-case opcodes.
[oota-llvm.git] / lib / Object / ELFObjectFile.cpp
2015-06-04 Alexey Samsonov[Object, ELF] Don't assert on invalid magic in createEL...
2015-06-04 Alexey Samsonov[Object, ELF] Don't call llvm_unreachable() from create...
2015-06-02 Rafael EspindolaSimplify now that we always use an alignment of 2 for...
2014-08-19 Rafael EspindolaDon't own the buffer in object::Binary.
2014-08-17 Rafael EspindolaAdd a non-templated ELFObjectFileBase class.
2014-07-31 Rafael EspindolaUse std::unique_ptr to make the ownership explicit.
2014-07-05 Rafael EspindolaThis only needs a StringRef. No functionality change.
2014-06-24 Rafael EspindolaReplace two release calls with std::move. I missed...
2014-06-24 Rafael EspindolaPass a unique_ptr<MemoryBuffer> to the constructors...
2014-06-23 Rafael EspindolaPass a std::unique_ptr& to the create??? methods is...
2014-06-23 Rafael EspindolaMake ObjectFile and BitcodeReader always own the Memory...
2014-06-18 Rafael EspindolaFix a memory leak in the error path.
2014-06-16 Rafael EspindolaFix pr17056.
2014-06-13 Rafael EspindolaRemove 'using std::errro_code' from lib.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-03-06 Ahmed CharlesReplace OwningPtr<T> with std::unique_ptr<T>.
2014-03-05 Ahmed Charles[C++11] Replace OwningPtr::take() with OwningPtr::relea...
2014-01-24 Rafael EspindolaMake ObjectFile ownership of the MemoryBuffer optional.
2014-01-21 Rafael EspindolaBe a bit more consistent about using ErrorOr when const...
2013-08-08 Michael J. Spencer[Object] Split the ELF interface into 3 parts.
2013-05-24 Michael J. SpencerReplace Count{Leading,Trailing}Zeros_{32,64} with count...
2013-02-03 Michael J. Spencer[Support] Add LLVM_IS_UNALIGNED_ACCESS_FAST.
2013-01-15 Michael J. Spencer[Object][ELF] Simplify ELFObjectFile by using ELFType.
2013-01-04 Michael J. Spencer[Object][ELF] Add a maximum alignment. This is used...
2012-04-16 Preston GurdImplement GDB integration for source level debugging...
2012-02-12 Eli BenderskyExpose the ELFObjectFile class directly in the Object...
2012-02-04 Dylan NoblesmithObject: avoid undefined behavior when bounds-checking
2012-01-24 Matt Beaumont-GaySink assert-only variables into the asserts
2012-01-23 Matt Beaumont-GaySilence warnings in -asserts build
2012-01-22 Eli BenderskyBasic runtime dynamic loading capabilities added to...
2011-11-29 Danil MalyshevFixed ObjectFile functions:
2011-11-27 Chandler CarruthRevert r145180 as it is causing test failures on all...
2011-11-27 Danil MalyshevFixed ObjectFile functions:
2011-10-26 Owen AndersonExpand relocation type field to 64 bits. MachO scatter...
2011-10-17 Michael J. SpencerObject: Add some types to SymbolRef::Type.
2011-10-17 Michael J. SpencerObject: Add isSymbolAbsolute and getSymbolSection.
2011-10-17 Michael J. SpencerObject: Add isSymbolWeak.
2011-10-17 Michael J. SpencerObject: Implement casting for concrete classes.
2011-10-17 Michael J. SpencerObject: Fix redundant name.
2011-10-13 Michael J. SpencerELF: Fix the section that relocations apply to. Add...
2011-10-13 Nick LewyckyElf_Word is not POD! Stop using it in a DenseMap.
2011-10-12 NAKAMURA Takumilib/Object/ELFObjectFile.cpp: Fix undefined behavior...
2011-10-11 Nick LewyckyReapply r141605 with fixes for appropriate handling...
2011-10-11 Nick LewyckyAdd support for .symtab_shnidx. Unfortunately, doing...
2011-10-11 Nick LewyckyRevert r141605 as it broke tests for llvm-nm.
2011-10-11 Nick LewyckyAdd support for reading many-section ELF files.
2011-10-10 Michael J. SpencerObject: add getSectionAlignment.
2011-10-07 Michael J. SpencerFix GCC again.
2011-10-07 Michael J. SpencerChange relocation API to be per section. This time...
2011-10-07 Bill WendlingRevert 141376 and 141377 due to breaking the build.
2011-10-07 Michael J. SpencerChange relocation API to be per section.
2011-09-28 Michael J. SpencerObject: Add isSection{Data,BSS}.
2011-09-14 Benjamin KramerObject: make the following changes into SymbolRef
2011-09-08 Benjamin KramerAdd support for relocations to ObjectFile.
2011-07-15 Benjamin KramerObjectFile: Add a method to check whether a section...
2011-06-25 Michael J. SpencerObject: Add proper error handling.
2011-06-25 Michael J. SpencerMake Binary the parent of ObjectFile and update childre...
2011-06-13 Michael J. SpencerRevert the last two commits in the series. r132911...
2011-06-13 Michael J. SpencerMake Binary the parent of ObjectFile and update childre...
2011-04-03 Eric ChristopherAssorted bugfixes in object file handling:
2011-01-21 Michael J. SpencerObject: Fix type punned pointer issues by making DataRe...
2011-01-20 Michael J. SpencerObject: Add ELF support.