aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-nm/llvm-nm.cpp
AgeCommit message (Expand)AuthorFilesLines
2014-12-09Return ErrorOr<std::unique_ptr<Archive>> form getAsArchive.Rafael Espindola1-6/+8
2014-10-31Object, COFF: Cleanup symbol type code, improve binutils compatibilityDavid Majnemer1-9/+5
2014-09-18LTO: introduce object file-based on-disk module format.Peter Collingbourne1-2/+5
2014-09-10Object: Add support for bigobjDavid Majnemer1-4/+4
2014-08-19Don't own the buffer in object::Binary.Rafael Espindola1-1/+1
2014-08-08Use a simpler predicate. NFC.Rafael Espindola1-2/+1
2014-08-01Remove some calls to std::move.Rafael Espindola1-14/+14
2014-07-31Replaces a few pointers with references in llvm-nm.cpp.Rafael Espindola1-40/+39
2014-07-31Use std::unique_ptr to make the ownership explicit.Rafael Espindola1-2/+2
2014-07-28Tweak llvm-nm’s -undefined-only (aka -u) printing for Mach-O filesKevin Enderby1-1/+1
2014-07-24Add an implementation for llvm-nm’s -print-file-name option (aka -o and -A).Kevin Enderby1-49/+102
2014-07-21Correct the ownership passing semantics of object::createBinary and make them...David Blaikie1-3/+2
2014-07-17Tweak formating to match what clang-format would be for llvm-nm.cpp .Kevin Enderby1-3/+2
2014-07-17Add printing of Mach-O stabs in llvm-nm.Kevin Enderby1-1/+85
2014-07-16Add the "-x" flag to llvm-nm for Mach-O files that prints the fields of a sym...Kevin Enderby1-6/+41
2014-07-11Add the "-s" flag to llvm-nm for Mach-O files that prints symbols only inKevin Enderby1-0/+70
2014-07-08Changed the lvm-nm alias "-s" for -print-armap to "-M".Kevin Enderby1-1/+1
2014-07-06Update the MemoryBuffer API to use ErrorOr.Rafael Espindola1-2/+4
2014-07-03Add the -just-symbol-name (aka -j) flag to llvm-nm to just print theKevin Enderby1-0/+9
2014-07-03Add support for inline asm symbols to IRObjectFile.Rafael Espindola1-4/+11
2014-07-03Add the -U flag to llvm-nm as an alias to -defined-onlyKevin Enderby1-0/+2
2014-07-02Add the -reverse-sort flag (aka -r) to llvm-nmKevin Enderby1-24/+61
2014-07-01Also run clang-format on llvm-nm.cpp to tidy things up. No functional changes.Kevin Enderby1-51/+40
2014-06-30Add the -arch flag support to llvm-nm to select the slice out of a Mach-OKevin Enderby1-0/+147
2014-06-23Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola1-1/+1
2014-06-23Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola1-1/+2
2014-06-23Convert a few methods to use ErrorOr.Rafael Espindola1-2/+3
2014-06-23Change the default input for llvm-nm to be a.out instead of standard inputKevin Enderby1-1/+1
2014-06-20Fix some double printing of filenames for archives in llvm-nm whenKevin Enderby1-10/+13
2014-06-20Added the -m option as an alias for -format=darwin to llvm-nm and llvm-sizeKevin Enderby1-0/+3
2014-06-19Fix the output of llvm-nm for Mach-O files to use the characters ‘d’ and ...Kevin Enderby1-0/+4
2014-06-19Change the output of llvm-nm and llvm-size for Mach-O universal files (akaKevin Enderby1-4/+18
2014-06-16Convert the Archive API to use ErrorOr.Rafael Espindola1-14/+13
2014-06-13Remove 'using std::error_code' from tools.Rafael Espindola1-2/+1
2014-06-12Don't use 'using std::error_code' in include/llvm.Rafael Espindola1-0/+1
2014-06-12Remove system_error.h.Rafael Espindola1-1/+1
2014-06-05Add "-format darwin" to llvm-nm to be like darwin's nm(1) -m output.Kevin Enderby1-4/+176
2014-06-03Allow alias to point to an arbitrary ConstantExpr.Rafael Espindola1-6/+2
2014-05-30MachO: support N_INDR aliases in assembly files.Tim Northover1-0/+2
2014-05-16Delete getAliasedGlobal.Rafael Espindola1-1/+1
2014-05-14Teach llvm-nm to know about fat archives (aka MachOUniversal filesKevin Enderby1-0/+14
2014-05-12Suggested improvement by Rafael Espindola to use isa<> in a few placesKevin Enderby1-6/+6
2014-05-09Fix llvm-nm to print the full 64-bit address for symbols in 64-bit object files.Kevin Enderby1-8/+36
2014-04-03Revert "Fix a nomenclature error in llvm-nm."Rafael Espindola1-27/+27
2014-04-02Fix a nomenclature error in llvm-nm.Rafael Espindola1-27/+27
2014-03-19Object: Provide a richer means of describing auxiliary symbolsDavid Majnemer1-2/+1
2014-03-18Object/COFF: Add function to check if section number is reserved one.Rui Ueyama1-3/+2
2014-03-18[C++11] Change the interface of getCOFF{Section,Relocation,Symbol} to make it...Alexey Samsonov1-2/+2
2014-03-15Object/COFF: change data type of SymbolNumber from int16 to uint16.Rui Ueyama1-1/+3
2014-03-06Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles1-4/+4