summaryrefslogtreecommitdiff
path: root/tools/llvm-readobj/MachODumper.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-03-17[C++11] Introduce ObjectFile::symbols() to use range-based loops.Alexey Samsonov1-27/+24
2014-03-14[C++11] Introduce SectionRef::relocations() to use range-based loopsAlexey Samsonov1-19/+16
2014-03-13[C++11] Use ObjectFile::sections() in commandline llvm toolsAlexey Samsonov1-41/+34
2014-03-06Fix warning about mismatched signs in comparison.Rafael Espindola1-1/+1
2014-03-06Fix the printing of n_type.Rafael Espindola1-4/+7
2014-03-06Use the existing N_STAB from the MachO namespace.Rafael Espindola1-5/+1
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-2/+2
2014-03-02Switch all uses of LLVM_OVERRIDE to just use 'override' directly.Craig Topper1-6/+6
2014-02-10Change the begin and end methods in ObjectFile to match the style guide.Rafael Espindola1-14/+14
2014-01-30Simplify the handling of iterators in ObjectFile.Rafael Espindola1-23/+7
2014-01-13Re-sort #include lines again, prior to moving headers around.Chandler Carruth1-1/+0
2013-10-01Remove several unused variables.Rafael Espindola1-2/+0
2013-09-01Move everything depending on Object/MachOFormat.h over to Support/MachO.h.Charles Davis1-33/+33
2013-08-27Revert "Fix the build broken by r189315." and "Move everything depending on O...Charles Davis1-33/+33
2013-08-27Move everything depending on Object/MachOFormat.h over to Support/MachO.h.Charles Davis1-33/+33
2013-06-05Handle relocations that don't point to symbols.Rafael Espindola1-4/+3
2013-04-24Use pointers to iterate over symbols.Rafael Espindola1-1/+3
2013-04-22llvm-readobj: Do not print NULL StringRefsNico Rieck1-5/+4
2013-04-18At Jim Grosbach's request detemplate Object/MachO.h.Rafael Espindola1-75/+58
2013-04-15Remove getters now that we can specialize structs on the host endianness.Rafael Espindola1-3/+3
2013-04-13Finish templating MachObjectFile over endianness.Rafael Espindola1-52/+80
2013-04-12Add -expand-relocs to llvm-readobjNico Rieck1-12/+26
2013-04-12Add 179294 back, but don't use bit fields so that it works on big endian hosts.Rafael Espindola1-4/+12
2013-04-11Revert my last two commits while I debug what is wrong in a big endian host.Rafael Espindola1-12/+4
2013-04-11Print more information about relocations.Rafael Espindola1-4/+12
2013-04-10Template MachOObjectFile over endianness too.Rafael Espindola1-8/+8
2013-04-09Convert MachOObjectFile to a template.Rafael Espindola1-13/+15
2013-04-08Template the MachO types over the word size.Rafael Espindola1-5/+6
2013-04-07Remove two uses of getObject.Rafael Espindola1-13/+2
2013-04-07Remove usage of InMemoryStruct in getSymbol.Rafael Espindola1-26/+6
2013-04-07Remove a use of InMemoryStruct in llvm-readobj.Rafael Espindola1-9/+6
2013-04-07Make getObject const. Remove a const_cast.Rafael Espindola1-1/+1
2013-04-05Don't fetch pointers from a InMemoryStruct.Rafael Espindola1-15/+8
2013-04-03Implements low-level object file format specific output for COFF andEric Christopher1-0/+438