summaryrefslogtreecommitdiff
path: root/tools/llvm-nm
Commit message (Expand)AuthorAge
* Pass a std::unique_ptr& to the create??? methods is lib/Object.Rafael Espindola2014-06-23
* Make ObjectFile and BitcodeReader always own the MemoryBuffer.Rafael Espindola2014-06-23
* Convert a few methods to use ErrorOr.Rafael Espindola2014-06-23
* Change the default input for llvm-nm to be a.out instead of standard inputKevin Enderby2014-06-23
* Fix some double printing of filenames for archives in llvm-nm whenKevin Enderby2014-06-20
* Added the -m option as an alias for -format=darwin to llvm-nm and llvm-sizeKevin Enderby2014-06-20
* Fix the output of llvm-nm for Mach-O files to use the characters ā€˜dā€™ and ...Kevin Enderby2014-06-19
* Change the output of llvm-nm and llvm-size for Mach-O universal files (akaKevin Enderby2014-06-19
* Convert the Archive API to use ErrorOr.Rafael Espindola2014-06-16
* Remove 'using std::error_code' from tools.Rafael Espindola2014-06-13
* Don't use 'using std::error_code' in include/llvm.Rafael Espindola2014-06-12
* Remove system_error.h.Rafael Espindola2014-06-12
* Add "-format darwin" to llvm-nm to be like darwin's nm(1) -m output.Kevin Enderby2014-06-05
* Allow alias to point to an arbitrary ConstantExpr.Rafael Espindola2014-06-03
* MachO: support N_INDR aliases in assembly files.Tim Northover2014-05-30
* Delete getAliasedGlobal.Rafael Espindola2014-05-16
* Teach llvm-nm to know about fat archives (aka MachOUniversal filesKevin Enderby2014-05-14
* Suggested improvement by Rafael Espindola to use isa<> in a few placesKevin Enderby2014-05-12
* Fix llvm-nm to print the full 64-bit address for symbols in 64-bit object files.Kevin Enderby2014-05-09
* Revert "Fix a nomenclature error in llvm-nm."Rafael Espindola2014-04-03
* Fix a nomenclature error in llvm-nm.Rafael Espindola2014-04-02
* Object: Provide a richer means of describing auxiliary symbolsDavid Majnemer2014-03-19
* Object/COFF: Add function to check if section number is reserved one.Rui Ueyama2014-03-18
* [C++11] Change the interface of getCOFF{Section,Relocation,Symbol} to make it...Alexey Samsonov2014-03-18
* Object/COFF: change data type of SymbolNumber from int16 to uint16.Rui Ueyama2014-03-15
* Replace OwningPtr<T> with std::unique_ptr<T>.Ahmed Charles2014-03-06
* [C++11] Replace OwningPtr::take() with OwningPtr::release().Ahmed Charles2014-03-05
* [cleanup] Re-sort all the includes with utils/sort_includes.py.Chandler Carruth2014-03-04
* Move getELFDynamicSymbolIterators to a public header.Alexey Samsonov2014-02-26
* Add a SymbolicFile interface between Binary and ObjectFile.Rafael Espindola2014-02-21
* Change the begin and end methods in ObjectFile to match the style guide.Rafael Espindola2014-02-10
* Use the information provided by getFlags to unify some code in llvm-nm.Rafael Espindola2014-02-05
* Small fix for llvm-nm handling of weak symbols on ELF (print 'v').Rafael Espindola2014-02-04
* Move error handling down to getSymbolNMTypeChar.Rafael Espindola2014-02-04
* Simplify getSymbolFlags.Rafael Espindola2014-01-31
* This file already has a "using namespace object;", use it.Rafael Espindola2014-01-30
* Only ELF has a dynamic symbol table. Remove it from ObjectFile.Rafael Espindola2014-01-30
* Use early returns and factor the object::Binary creation.Rafael Espindola2014-01-30
* Simplify the handling of iterators in ObjectFile.Rafael Espindola2014-01-30
* Fix TLS handling in ELF's getAddress and llvm-nm to print 'D' for it.Rafael Espindola2014-01-30
* Normalize the style in llvm-nm.cpp.Rafael Espindola2014-01-29
* Pass the computed magic to createBinary and createObjectFile if available.Rafael Espindola2014-01-22
* Rename these methods to match the style guide.Rafael Espindola2014-01-21
* Return an ErrorOr<Binary *> from createBinary.Rafael Espindola2014-01-15
* Make parseBitcodeFile return an ErrorOr<Module *>.Rafael Espindola2014-01-15
* [CMake] Update LLVM_LINK_COMPONENTS for each CMakeLists.txt.NAKAMURA Takumi2013-12-10
* move getSymbolNMTypeChar to the one program that needs it: nm.Rafael Espindola2013-11-02
* Revert "Encapsulate PassManager debug flags to avoid static init and cxa_exit."Andrew Trick2013-09-19
* Encapsulate PassManager debug flags to avoid static init and cxa_exit.Andrew Trick2013-09-18
* Don't crash in 'llvm -s' when an archive has no symtab.Rafael Espindola2013-07-10