Fix case for include of Compiler.h.
[oota-llvm.git] / include / llvm / Object /
2012-10-11 Sean SilvaRemove unnecessary classof()'s
2012-10-10 Eric ChristopherFormatting and 80-col.
2012-10-10 Andrew KaylorThis patch adds new functions to the SectionRef and...
2012-10-05 Hemant KulkarniAdd ELF program header.
2012-10-05 Adhemerval ZanellaAdd PowerPC64 definitions for ELF.h
2012-09-29 Bob WilsonAdd LLVM support for Swift.
2012-09-21 Alexey SamsonovFix SymbolRef::getAddress implementation for ELF. The...
2012-09-17 Richard SmithRemove redundant semicolons to fix -pedantic-errors...
2012-09-17 Sid ManningAdd Michael Spencer's iterator class for stepping throu...
2012-09-17 Craig TopperMark unimplemented copy constructors and copy assignmen...
2012-09-10 Michael J. Spencer[Object] Extract Elf_Ehdr. Patch by Hemant Kulkarni!
2012-09-05 Nick LewyckyTeach libObject about some more ELF relocations. llvm...
2012-09-01 Logan ChienAdd ARM ELF support to llvm-objdump.
2012-08-21 Richard SmithFix misaligned access in MachO object file reader:...
2012-08-17 Akira HatanakaCorrect MCJIT functionality for MIPS32 architecture.
2012-08-16 Roman DivackyRevert r162034, r162035 and r162037.
2012-08-16 Roman DivackyHandle PowerPC.
2012-07-24 Michael J. Spencer[Object] Remove unneeded const_cast.
2012-07-24 Anshuman DasguptaAdd new interfaces to support ldd's ReaderElf.cpp.
2012-06-23 Marshall ClowAdd relocation types for Hexagon processor; patch by...
2012-06-20 Chandler CarruthRemove 'static' from inline functions defined in header...
2012-06-18 Marshall ClowAdded accessors for getting coff_relocation info
2012-06-15 Marshall ClowAdding acessors to COFFObjectFile so that clients can...
2012-06-02 Benjamin KramerFix typos found by github.com/lyda/misspell-check
2012-05-18 Jim GrosbachRefactor data-in-code annotations.
2012-04-16 Preston GurdImplement GDB integration for source level debugging...
2012-04-13 Craig TopperRemove getElfArchType from ELF.h. It's only used in...
2012-04-12 Preston GurdThis patch improves the MCJIT runtime dynamic loader...
2012-04-10 Danil MalyshevAdd a constructor for DataRefImpl and remove excess...
2012-03-19 Michael J. Spencer[Object/COFF]: Expose getSectionContents.
2012-03-19 Michael J. Spencer[Object/COFF]: Expose getSectionName.
2012-03-09 David MeyerSupport reading GNU symbol versions in ELFObjectFile
2012-03-09 David Meyer[Object]
2012-03-01 David Meyer[Object]
2012-03-01 David Meyer[Object]
2012-02-29 David Meyer[Object] Add symbol attribute flags: ST_ThreadLocal...
2012-02-28 David MeyerIn the ObjectFile interface, replace isInternal(),...
2012-02-28 Michael J. Spencer[Object] Add {begin,end}_dynamic_symbols stubs and...
2012-02-27 Michael J. SpencerRemove duplicate copy of Object/ELF.h that somehow...
2012-02-12 Eli BenderskyExpose the ELFObjectFile class directly in the Object...
2012-01-22 Eli BenderskyRemove trailing spaces
2012-01-22 Eli BenderskyBasic runtime dynamic loading capabilities added to...
2011-12-20 David BlaikieUnweaken vtables as per llvm.org/docs/CodingStandards...
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-11-16 Michael J. SpencerObject/Archive: Give Child a operator < for map.
2011-11-02 Michael J. Spencerobject: Add operator < for SymbolRef and SectionRef.
2011-11-02 Michael J. SpencerObject/Archive: Add symbol table iteration.
2011-10-26 Owen AndersonAdd support for scattered relocations to the MachO...
2011-10-26 Owen AndersonExpand relocation type field to 64 bits. MachO scatter...
2011-10-25 Michael J. SpencerObject/Archive: Add BSD style long file name support...
2011-10-25 Owen AndersonAdd support for the notion of "hidden" relocations...
2011-10-24 Owen AndersonMore fixes and improvements to MachO relocation pretty...
2011-10-18 Michael J. SpencerObject/COFF: Change type from a struct to a uint16_t...
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/COFF: Expose more data in the public API.
2011-10-17 Michael J. SpencerObject: Implement casting for concrete classes.
2011-10-17 Michael J. Spencer80-col.
2011-10-17 Owen AndersonAdd an accessor to get the underlying MachO representation.
2011-10-17 Michael J. SpencerObject: Fix redundant name.
2011-10-11 Owen AndersonExpose MachOObjectFile externally, like we do for COFF...
2011-10-11 Nick LewyckyAdd support for .symtab_shnidx. Unfortunately, doing...
2011-10-10 Michael J. SpencerObject: add getSectionAlignment.
2011-10-08 Michael J. SpencerObject: constize Archive.
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-27 Michael J. SpencerObject: Add archive support.
2011-09-14 Benjamin KramerObject: make the following changes into SymbolRef
2011-09-08 Benjamin KramerAdd support for relocations to ObjectFile.
2011-08-30 Benjamin KramerTeach macho-dump to dump the uleb128s referred to by...
2011-08-30 Benjamin KramerTeach macho-dump how to dump linkedit_data load commands.
2011-07-15 Benjamin KramerTeach llvm-objdump to disassemble sections symbol by...
2011-07-15 Benjamin KramerObjectFile: Add a method to check whether a section...
2011-07-05 Michael J. SpencerFix 80-col.
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-25 Michael J. SpencerAdd Binary class. This is a cleaner parent than ObjectFile.
2011-06-25 Michael J. SpencerAdd Object/Error.
2011-06-13 Benjamin KramerRevert r132910 and r132909 on behalf of Michael. They...
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-06-13 Michael J. SpencerAdd Binary class. This is a cleaner parent than ObjectFile.
2011-06-13 Michael J. SpencerAdd Object/Error.
2011-04-03 Eric ChristopherStart migrating mach-o dumping facilities to the object...
2011-02-03 Bob WilsonEdit a comment for consistency.
2011-01-21 Michael J. SpencerObject: Fix type punned pointer issues by making DataRe...
2011-01-14 Evan ChengCompleted :lower16: / :upper16: support for movw /...
2010-12-21 Daniel DunbarMC/Mach-O: Shuffle enums a bit to make it harder to...
2010-12-10 Daniel DunbarMach-O/ARM: Add relocation type enumeration.
2010-12-10 Daniel DunbarMach-O: Tweak field name.
2010-11-29 Michael J. SpencerMerge System into Support.
2010-11-27 Daniel Dunbarmacho-dump: Add support for --dump-section-data and...
2010-11-27 Daniel Dunbarmacho-dump: Add support for dumping symbol table entries.
2010-11-27 Daniel Dunbarmacho-dump: Add support for dumping string table data.
2010-11-27 Daniel Dunbarmacho-dump: Add support for dumping relocation entries.
next