aboutsummaryrefslogtreecommitdiff
path: root/llvm/tools/llvm-cxxdump
AgeCommit message (Expand)AuthorFilesLines
2023-01-05Move from llvm::makeArrayRef to ArrayRef deduction guides - llvm/ partserge-sans-paille1-5/+5
2022-08-07[llvm] Qualify auto (NFC)Kazu Hirata1-1/+1
2022-06-05Remove unneeded cl::ZeroOrMore for cl::opt/cl::list optionsFangrui Song1-1/+1
2021-10-08Fix shlib builds for all lib/Target/*/TargetInfo libsReid Kleckner1-0/+1
2021-10-08Move TargetRegistry.(h|cpp) from Support to MCReid Kleckner1-1/+1
2021-10-07[NFC] Including <string> in llvm-cxxdump/Error.cppQiongsi Wu1-0/+1
2021-07-28[llvm] Replace LLVM_ATTRIBUTE_NORETURN with C++11 [[noreturn]]Fangrui Song1-1/+1
2021-07-20[llvm][tools] Hide more unrelated tool optionsTimm Bäder1-1/+3
2020-11-13llvmbuildectomy - replace llvm-build by plain cmakeserge-sans-paille1-21/+0
2019-10-21[llvm/Object] - Make ELFObjectFile::getRelocatedSection return Expected<secti...George Rimar1-1/+5
2019-05-23Break false dependencies on target librariesDaniel Sanders1-1/+1
2019-05-16Recommit [Object] Change object::SectionRef::getContents() to return Expected...Fangrui Song1-6/+11
2019-05-16Revert r360876 "[Object] Change object::SectionRef::getContents() to return E...Hans Wennborg1-11/+6
2019-05-16[Object] Change object::SectionRef::getContents() to return Expected<StringRef>Fangrui Song1-6/+11
2019-01-19Update the file headers across all of the LLVM projects in the monorepoChandler Carruth5-20/+15
2018-11-11[Support] Make error banner optional in logAllUnhandledErrorsJonas Devlieghere1-2/+3
2018-11-11[llvm-cxxdump] Use error reporting helpers from supportJonas Devlieghere1-7/+8
2018-07-23Fixing a typo; NFC.Aaron Ballman1-1/+1
2018-04-13Define InitLLVM to do common initialization all at once.Rui Ueyama1-6/+2
2017-12-18Fix more inconsistent line endings. NFC.Dimitry Andric1-7/+7
2017-11-03Add llvm::for_each as a range-based extensions to <algorithm> and make use of...Aaron Ballman1-8/+7
2016-11-11Make the Error class constructor protectedMehdi Amini1-1/+1
2016-10-21Fix a bug in the code of llvm-cxxdump in dumpArchive() whenKevin Enderby1-1/+1
2016-10-19Remove LLVM_NOEXCEPT and replace it with noexceptReid Kleckner1-1/+1
2016-07-14[Object] Re-apply r275316 now that I have the corresponding LLD patch ready.Lang Hames1-3/+11
2016-07-14[Object] Revert r275316, Archive::child_iterator changes, while I update lld.Lang Hames1-11/+3
2016-07-13[Object] Change Archive::child_iterator for better interop with Error/Expected.Lang Hames1-3/+11
2016-06-24Thread Expected<...> up from libObject’s getSymbolAddress() for symbols to ...Kevin Enderby1-2/+2
2016-06-09Search for llvm-symbolizer binary in the same directory as argv[0], beforeRichard Smith1-1/+1
2016-05-24Add FIXMEs to all derived classes of std::error_category.Peter Collingbourne1-0/+3
2016-05-17Change llvm-objdump, llvm-nm and llvm-size when reporting an object file errorKevin Enderby1-4/+10
2016-05-02Thread Expected<...> up from libObject’s getType() for symbols to allow llv...Kevin Enderby1-2/+2
2016-04-20Thread Expected<...> up from libObject’s getName() for symbols to allow llv...Kevin Enderby1-6/+6
2016-04-06Thread Expected<...> up from createMachOObjectFile() to allow llvm-objdump to...Kevin Enderby1-2/+3
2016-01-26Remove autoconf supportChris Bieneman1-18/+0
2015-11-05Reapply r250906 with many suggested updates from Rafael Espindola.Kevin Enderby1-1/+3
2015-10-21Backing out commit r250906 as it broke lld.Kevin Enderby1-6/+1
2015-10-21This removes the eating of the error in Archive::Child::getSize() when the ch...Kevin Enderby1-1/+6
2015-09-21Use makeArrayRef or None to avoid unnecessarily mentioning the ArrayRef type ...Craig Topper1-3/+3
2015-09-15[llvm-cxxdump] Remove duplicate code check.Davide Italiano1-6/+0
2015-08-13[llvm-cxxdump] Correctly process relocations when given multiple filesDavid Majnemer1-16/+10
2015-08-07Convert getSymbolSection to return an ErrorOr.Rafael Espindola1-2/+3
2015-07-17[llvm-cxxdump] Don't rely on global stateDavide Italiano1-41/+18
2015-07-03Return ErrorOr from getSymbolAddress.Rafael Espindola1-2/+3
2015-07-02Return ErrorOr from SymbolRef::getName.Rafael Espindola1-8/+9
2015-06-29Don't return error_code from function that never fails.Rafael Espindola1-6/+2
2015-06-24Make computeSymbolSizes never fail.Rafael Espindola1-4/+2
2015-06-23Compute correct symbol sizes for MachO and COFF.Rafael Espindola1-2/+9
2015-06-01Simplify another function that doesn't fail.Rafael Espindola1-2/+3
2015-04-15Change range-based for-loop to use const auto&. No functionality change.Richard Trieu1-16/+11