OSDN Git Service

Make sure the functions' range is empty before going through it in the LLVM C API...
[android-x86/external-llvm.git] / tools / llvm-nm /
2016-02-11 Davide Italiano[llvm-nm] Simplify code logic. Rewrite a single functio...
2016-02-10 Davide Italiano[llvm-nm] Minor style change. Prefer EXIT_SUCCESS over 0.
2016-02-10 Davide Italiano[llvm-nm] Prefer range-based loop over explicit iterator.
2016-02-10 Hemant Kulkarni[llvm-nm] Add -radix option
2016-02-08 Davide Italiano[llvm-nm] Remove excessive parenthesis, noticed by...
2016-02-08 Davide Italiano[llvm-nm] Yet another attempt of simplifying code.
2016-02-05 Davide Italiano[llvm-nm] Prefer empty() over size() == 0.
2016-02-05 Davide Italiano[llvm-nm] Transform a switch() statement in a pair...
2016-02-05 Davide Italiano[llvm-nm] Simplify code logic. NFCI.
2016-02-01 Davide Italiano[llvm-nm] Simplify the code a bit. NFCI.
2016-01-29 Davide Italiano[llvm-nm] Add a comment to explain why we initialize MC.
2016-01-27 Davide Italiano[llvm-nm] Remove redundant check for file validity.
2016-01-26 Chris BienemanRemove autoconf support
2016-01-26 Davide Italiano[llvm-nm] Roll several conditions into a single if...
2016-01-26 Davide Italiano[llvm-nm] Simplify. No functional changes intended.
2016-01-22 Kevin EnderbyFix MachOObjectFile::getSymbolName() to not call report...
2016-01-21 Kevin EnderbyFix MachOObjectFile::getSymbolSection() to not call...
2016-01-16 Manuel JacobGlobalValue: use getValueType() instead of getType...
2015-11-19 Reid KlecknerFix UMR in llvm-nm on IR object files in printDarwinSymbol
2015-11-10 Kevin EnderbyFix llvm-nm(1) printing of llvm-bitcode files for ...
2015-11-05 Kevin EnderbyReapply r250906 with many suggested updates from Rafael...
2015-11-03 Rafael EspindolaDon't implicitly construct a Archive::child_iterator.
2015-11-02 Kevin EnderbyAllow llvm-nm’s single letter command line flags to...
2015-10-30 Kevin EnderbyImplemented the code to make llvm-nm’s -g option work.
2015-10-21 Kevin EnderbyBacking out commit r250906 as it broke lld.
2015-10-21 Kevin EnderbyThis removes the eating of the error in Archive::Child...
2015-10-07 Pete CooperStop linking all target libraries in llvm-nm and llvm...
2015-10-06 Hans WennborgFix Clang-tidy modernize-use-nullptr warnings in source...
2015-08-07 Rafael EspindolaConvert getSymbolSection to return an ErrorOr.
2015-07-13 Rafael EspindolaUse std::make_tuple to reduce code duplication.
2015-07-07 Rafael EspindolaDelete UnknownAddress. It is a perfectly valid symbol...
2015-07-06 Rafael Espindolallvm-nm: treat weak undefined as undefined.
2015-07-06 Rafael EspindolaSwap operands instead of using !.
2015-07-06 Rafael EspindolaWhen sorting by address, undefined symbols go first.
2015-07-06 Rafael EspindolaReduce code duplication. NFC.
2015-07-06 Rafael EspindolaFix printing of common symbols.
2015-07-03 Rafael EspindolaReturn ErrorOr from getSymbolAddress.
2015-07-02 Rafael EspindolaReturn ErrorOr from SymbolRef::getName.
2015-06-26 Rafael EspindolaSimplify isSymbolList64Bit. NFC.
2015-06-26 Rafael EspindolaSimplify isObject. NFC.
2015-06-26 Rafael EspindolaImplement elf_section_iterator and getELFType().
2015-06-25 Rafael EspindolaAdd an ELFSymbolRef type.
2015-06-25 Rafael Espindolallvm-nm: print 'n' instead of '?'
2015-06-25 Rafael EspindolaUse range loop. NFC.
2015-06-25 Rafael EspindolaModernize getELFDynamicSymbolIterators.
2015-06-24 Rafael EspindolaChange how symbol sizes are handled in lib/Object.
2015-06-01 Rafael EspindolaSimplify another function that doesn't fail.
2015-05-22 Rafael EspindolaFix llvm-nm -S option.
2015-03-23 David BlaikieCleanup else-after-return and add an early-return to...
2015-01-14 Chandler Carruth[cleanup] Re-sort all the #include lines in LLVM using
2014-12-09 Rafael EspindolaReturn ErrorOr<std::unique_ptr<Archive>> form getAsArchive.
2014-10-31 David MajnemerObject, COFF: Cleanup symbol type code, improve binutil...
2014-09-18 Peter CollingbourneLTO: introduce object file-based on-disk module format.
2014-09-10 David MajnemerObject: Add support for bigobj
2014-08-19 Rafael EspindolaDon't own the buffer in object::Binary.
2014-08-08 Rafael EspindolaUse a simpler predicate. NFC.
2014-08-01 Rafael EspindolaRemove some calls to std::move.
2014-07-31 Rafael EspindolaReplaces a few pointers with references in llvm-nm...
2014-07-31 Rafael EspindolaUse std::unique_ptr to make the ownership explicit.
2014-07-28 Kevin EnderbyTweak llvm-nm’s -undefined-only (aka -u) printing for...
2014-07-24 Kevin EnderbyAdd an implementation for llvm-nm’s -print-file-name...
2014-07-21 David BlaikieCorrect the ownership passing semantics of object:...
2014-07-17 Kevin EnderbyTweak formating to match what clang-format would be...
2014-07-17 Kevin EnderbyAdd printing of Mach-O stabs in llvm-nm.
2014-07-16 Kevin EnderbyAdd the "-x" flag to llvm-nm for Mach-O files that...
2014-07-14 NAKAMURA Takumi[CMake] Update libdeps.
2014-07-11 Kevin EnderbyAdd the "-s" flag to llvm-nm for Mach-O files that...
2014-07-08 Kevin EnderbyChanged the lvm-nm alias "-s" for -print-armap to ...
2014-07-06 Rafael EspindolaUpdate the MemoryBuffer API to use ErrorOr.
2014-07-03 Kevin EnderbyAdd the -just-symbol-name (aka -j) flag to llvm-nm...
2014-07-03 Rafael Espindolafix configure+make build
2014-07-03 Rafael EspindolaAdd support for inline asm symbols to IRObjectFile.
2014-07-03 Kevin EnderbyAdd the -U flag to llvm-nm as an alias to -defined...
2014-07-02 Kevin EnderbyAdd the -reverse-sort flag (aka -r) to llvm-nm
2014-07-01 Kevin EnderbyAlso run clang-format on llvm-nm.cpp to tidy things...
2014-06-30 Kevin EnderbyAdd the -arch flag support to llvm-nm to select the...
2014-06-23 Rafael EspindolaPass a std::unique_ptr& to the create??? methods is...
2014-06-23 Rafael EspindolaMake ObjectFile and BitcodeReader always own the Memory...
2014-06-23 Rafael EspindolaConvert a few methods to use ErrorOr.
2014-06-23 Kevin EnderbyChange the default input for llvm-nm to be a.out instea...
2014-06-20 Kevin EnderbyFix some double printing of filenames for archives...
2014-06-20 Kevin EnderbyAdded the -m option as an alias for -format=darwin...
2014-06-19 Kevin EnderbyFix the output of llvm-nm for Mach-O files to use the...
2014-06-19 Kevin EnderbyChange the output of llvm-nm and llvm-size for Mach...
2014-06-16 Rafael EspindolaConvert the Archive API to use ErrorOr.
2014-06-13 Rafael EspindolaRemove 'using std::error_code' from tools.
2014-06-12 Rafael EspindolaDon't use 'using std::error_code' in include/llvm.
2014-06-12 Rafael EspindolaRemove system_error.h.
2014-06-05 Kevin EnderbyAdd "-format darwin" to llvm-nm to be like darwin's...
2014-06-03 Rafael EspindolaAllow alias to point to an arbitrary ConstantExpr.
2014-05-30 Tim NorthoverMachO: support N_INDR aliases in assembly files.
2014-05-16 Rafael EspindolaDelete getAliasedGlobal.
2014-05-14 Kevin EnderbyTeach llvm-nm to know about fat archives (aka MachOUniv...
2014-05-12 Kevin EnderbySuggested improvement by Rafael Espindola to use isa...
2014-05-09 Kevin EnderbyFix llvm-nm to print the full 64-bit address for symbol...
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-19 David MajnemerObject: Provide a richer means of describing auxiliary...
2014-03-18 Rui UeyamaObject/COFF: Add function to check if section number...
2014-03-18 Alexey Samsonov[C++11] Change the interface of getCOFF{Section,Relocat...
next