Don't use 'using std::error_code' in include/llvm.
[oota-llvm.git] / lib / Object / MachOObjectFile.cpp
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-05 Kevin EnderbyAdd "-format darwin" to llvm-nm to be like darwin's...
2014-05-30 Tim NorthoverMachO: support N_INDR aliases in assembly files.
2014-05-20 Kevin EnderbyUpdate MachOObjectFile::getSymbolAddress so it returns...
2014-05-20 Kevin EnderbyRevert r209235 as it broke two tests:
2014-05-20 Kevin EnderbyUpdate MachOObjectFile::getSymbolAddress so it returns...
2014-05-19 Kevin EnderbyImplement MachOObjectFile::isSectionData() and MachOObj...
2014-05-12 Lang Hames[RuntimeDyld] Add support for MachO __jump_table and...
2014-04-15 Craig Topper[C++11] More 'nullptr' conversion. In some cases just...
2014-04-04 Rafael EspindolaAdd an assert that this is only used with .o files.
2014-04-03 Rafael EspindolaImplement getRelocationAddress for MachO and ET_REL...
2014-04-03 Rafael EspindolaImplement macho relocation iterators with section numbe...
2014-04-03 Rafael EspindolaFix llvm-objdump crash.
2014-04-03 Rafael EspindolaRemove section_rel_empty. Just compare begin() and...
2014-04-03 Rafael EspindolaImplement get getSymbolFileOffset with getSymbolAddress.
2014-04-03 Rafael EspindolaRemove getSymbolValue.
2014-04-03 Rafael EspindolaRevert "Fix a nomenclature error in llvm-nm."
2014-04-02 Rafael EspindolaFix a nomenclature error in llvm-nm.
2014-03-29 Tim NorthoverARM64: initial backend import
2014-03-21 Juergen Ributzka[RuntimeDyld] Allow processRelocationRef to process...
2014-03-18 Jim GrosbachDarwin: Add assembler directives to create version...
2014-03-17 Alexey Samsonov[C++11] Introduce ObjectFile::symbols() to use range...
2014-03-13 Alexey Samsonov[C++11] Introduce ObjectFile::sections().
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-02-21 Rafael EspindolaAdd a SymbolicFile interface between Binary and ObjectFile.
2014-02-10 Rafael EspindolaChange the begin and end methods in ObjectFile to match...
2014-02-04 Rafael EspindolaRemove unused SF_ThreadLocal.
2014-01-31 Rafael EspindolaSimplify getSymbolFlags.
2014-01-30 Rafael EspindolaOnly ELF has a dynamic symbol table. Remove it from...
2014-01-30 Rafael EspindolaSimplify the handling of iterators in ObjectFile.
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-12-06 Eric ChristopherFix a pair of array index checks.
2013-11-02 Rafael Espindolamove getSymbolNMTypeChar to the one program that needs...
2013-11-02 Rafael EspindolaFix llvm-nm to mach OS X's nm on some tests.
2013-09-27 Rui UeyamaObject/COFF: Rename getXXX{Begin,End} -> xxx_{begin...
2013-09-01 Charles DavisMove everything depending on Object/MachOFormat.h over...
2013-08-27 Charles DavisRevert "Fix the build broken by r189315." and "Move...
2013-08-27 Charles DavisMove everything depending on Object/MachOFormat.h over...
2013-08-27 Charles DavisSupport/MachO: Add a bunch of defines.
2013-08-21 Jakub StaszakMove #includes from .h to .cpp file.
2013-08-08 David Fanginitial draft of PPCMachObjectWriter.cpp
2013-08-03 Benjamin KramerMachObjectFile: Don't leak on error.
2013-07-22 Eric ChristopherTypo.
2013-07-22 Eric Christopher80-column tidying. Formatting choices by clang-format.
2013-06-18 Alexey SamsonovBasic support for parsing Mach-O universal binaries...
2013-06-06 Kevin EnderbyTeach llvm-objdump with the -macho parser how to use...
2013-06-05 Rafael EspindolaHandle relocations that don't point to symbols.
2013-05-14 Ahmed BougachaObject: Fix Mach-O relocation printing.
2013-05-09 Rafael EspindolaChange getRelocationAdditionalInfo to be ELF only.
2013-04-30 Rafael EspindolaFix Addend computation for non external relocations...
2013-04-29 Rafael EspindolaAdd getSymbolAlignment to the ObjectFile interface.
2013-04-26 Rafael EspindolaUse llvm/Object/MachO.h in macho-dumper. Drop the old...
2013-04-25 Rafael EspindolaUse a pointer as the relocation iterator.
2013-04-25 Rafael EspindolaClarify getRelocationAddress x getRelocationOffset...
2013-04-24 Rafael EspindolaUse pointers to iterate over symbols.
2013-04-24 Rafael EspindolaRevert r180189.
2013-04-24 Rafael EspindolaFormatting fixes.
2013-04-24 Rafael EspindolaUse a pointer as the relocation iterator.
2013-04-19 Rafael Espindolarefactor the struct byte swapping to a helper function.
2013-04-19 Rafael EspindolaDon't read one command past the end.
2013-04-18 Rafael EspindolaAt Jim Grosbach's request detemplate Object/MachO.h.
2013-04-13 Rafael EspindolaFinish templating MachObjectFile over endianness.
2013-04-12 Rafael EspindolaAdd 179294 back, but don't use bit fields so that it...
2013-04-11 Rafael EspindolaRevert my last two commits while I debug what is wrong...
2013-04-11 Rafael EspindolaPrint more information about relocations.
2013-04-11 Rafael EspindolaFix MachO's getRelocationAdditionalInfo.
2013-04-10 Rafael EspindolaTemplate MachOObjectFile over endianness too.
2013-04-10 Rafael EspindolaTemplate the MachO types over endianness.
2013-04-09 Rafael EspindolaConvert MachOObjectFile to a template.
2013-04-09 Rafael EspindolaMore uses for SymbolTableEntryBase.
2013-04-09 Rafael EspindolaAdd a SymbolTableEntryBase.
2013-04-08 Rafael EspindolaAdd a SectionBase struct.
2013-04-08 Rafael EspindolaTemplate the MachO types over the word size.
2013-04-08 Rafael EspindolaRemove is64BitLoadCommand.
2013-04-08 Rafael EspindolaAdd all 4 MachO object types. Use the stored type to...
2013-04-07 Rafael EspindolaMake MachOObjectFile independent from MachOObject.
2013-04-07 Rafael EspindolaImplement MachOObjectFile::getData directly.
2013-04-07 Rafael EspindolaImplement MachOObjectFile::is64Bit directly.
2013-04-07 Rafael EspindolaImplement MachOObjectFile::getHeaderSize directly.
2013-04-07 Rafael EspindolaImplement MachOObjectFile::getHeader directly.
2013-04-07 Rafael EspindolaImplement MachOObjectFile::getHeaderSize and MachOObjec...
2013-04-07 Rafael EspindolaRemove LoadCommandInfo now that we always have a pointe...
2013-04-07 Rafael EspindolaAdd MachOObjectFile::LoadCommandInfo.
2013-04-07 Rafael EspindolaUse getLoadCommandInfo instead of MachOObj->getLoadComm...
2013-04-07 Rafael EspindolaConstruct MachOObject in MachOObjectFile's constructor.
2013-04-07 Rafael EspindolaRemove unused argument.
2013-04-07 Rafael EspindolaRemove MachOObjectFile::getObject.
2013-04-07 Rafael EspindolaRemove two uses of getObject.
2013-04-07 Rafael EspindolaRemove last use of InMemoryStruct in llvm-objdump.
2013-04-06 Rafael EspindolaRemove last use of InMemoryStruct from MachOObjectFile...
2013-04-06 Rafael EspindolaDon't use InMemoryStruct<macho::SymtabLoadCommand>.
2013-04-06 Rafael EspindolaDon't use InMemoryStruct in getSymbol64TableEntry.
2013-04-06 Rafael EspindolaDon't use InMemoryStruct in getSymbolTableEntry.
2013-04-06 Rafael EspindolaDon't use InMemoryStruct in getRelocation.
2013-04-05 Rafael EspindolaDefine versions of Section that are explicitly marked...
2013-04-05 Rafael EspindolaDon't use InMemoryStruct in getSection and getSection64.
2013-04-05 Rafael EspindolaDon't fetch pointers from a InMemoryStruct.
2013-02-28 Eric ChristopherMove an assert earlier in a file and check that the...
next