aboutsummaryrefslogtreecommitdiff
path: root/llvm/lib/Support/CommandLine.cpp
AgeCommit message (Expand)AuthorFilesLines
2016-12-14Don't double-initialize cl::opt for iterating in reverse order to uncover non...Mehdi Amini1-1/+1
2016-12-14[llvm] Iterate SmallPtrSet in reverse order to uncover non-determinism in cod...Mandeep Singh Grang1-0/+11
2016-11-20Fix file name resolution in nested response filesSerge Pavlov1-0/+6
2016-11-01Allow resolving response file names relative to including fileSerge Pavlov1-6/+23
2016-10-12[Support][CommandLine] Display subcommands in help when there are less than 3Alex Lorenz1-1/+1
2016-10-11[cl] Don't print subcommand help when no subcommands present.Zachary Turner1-4/+6
2016-10-05[Support][CommandLine] Add cl::getRegisteredSubcommands()Dean Michael Berris1-0/+11
2016-10-05Use StringRef in StringSaver API (NFC)Mehdi Amini1-5/+5
2016-10-01Use StringRef in CommandLine Options handling (NFC)Mehdi Amini1-52/+54
2016-09-13Revert "[Support][CommandLine] Add cl::getRegisteredSubcommands()"Zachary Turner1-11/+0
2016-09-13[Support][CommandLine] Add cl::getRegisteredSubcommands()Dean Michael Berris1-0/+11
2016-08-17Replace a few more "fall through" comments with LLVM_FALLTHROUGHJustin Bogner1-3/+3
2016-08-11Use the range variant of find instead of unpacking begin/endDavid Majnemer1-1/+1
2016-07-24[CommandLine] Use Process::GetEnv instead of _wgetenvDavid Majnemer1-21/+4
2016-07-22[llvm-cov] - Improve llvm-cov error messageYing Yi1-1/+2
2016-07-19Get rid of call to StringRef::substr that's never used.Justin Lebar1-1/+0
2016-06-29Resubmit "Update llvm command line parser to support subcommands."Zachary Turner1-98/+383
2016-06-28Revert r274054 to try to appease the botManman Ren1-378/+98
2016-06-28Update llvm command line parser to support subcommands.Zachary Turner1-98/+378
2016-06-17Avoid duplicated map lookups. No functionality change intended.Benjamin Kramer1-6/+4
2016-06-10[STLExtras] Introduce and use llvm::count_if; NFCSanjoy Das1-5/+4
2016-06-08Apply most suggestions of clang-tidy's performance-unnecessary-value-paramBenjamin Kramer1-1/+1
2016-05-05Remove LLVM_ENABLE_TIMESTAMPSChris Bieneman1-3/+0
2016-04-26Use gcc's rules for parsing gcc-style response filesNico Weber1-7/+4
2016-03-15[CMake] Add PACKAGE_VENDOR for customizing version outputChris Bieneman1-2/+6
2016-03-11More UTF string conversion wrappersMarianne Mailhot-Sarrasin1-0/+19
2016-01-30Avoid overly large SmallPtrSet/SmallSetMatthias Braun1-1/+1
2015-12-28Refactor: Simplify boolean conditional return statements in llvm/lib/SupportAlexander Kornienko1-4/+1
2015-11-17StringRef-ify some Option APIsDavid Blaikie1-26/+25
2015-08-13There is only one saver of strings.Rafael Espindola1-2/+2
2015-07-13Remove macro guards for extern template instantiations.Benjamin Kramer1-15/+15
2015-06-23Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)Alexander Kornienko1-2/+2
2015-06-19Fixed/added namespace ending comments using clang-tidy. NFCAlexander Kornienko1-2/+2
2015-06-13Bring in a BumpPtrStringSaver from lld and simplify the interface.Rafael Espindola1-28/+10
2015-04-11Use 'override/final' instead of 'virtual' for overridden methodsAlexander Kornienko1-1/+1
2015-03-30Remove more superfluous .str() and replace std::string concatenation with Twine.Yaron Keren1-1/+1
2015-03-23Purge unused includes throughout libSupport.Benjamin Kramer1-2/+0
2015-03-14CommandLine: Replace cold std::sort with array_pod_sort.Benjamin Kramer1-11/+12
2015-03-09Simplify expressions involving boolean constants with clang-tidyDavid Blaikie1-2/+2
2015-02-17Prefer SmallVector::append/insert over push_back loops.Benjamin Kramer1-3/+1
2015-02-13Fixing broken bots.Chris Bieneman1-1/+1
2015-02-13NFC. Moving the RegisteredOptionCategories global into the CommandLineParser ...Chris Bieneman1-15/+18
2015-02-13NFC. clang-format wants to change this from two lines to one.Chris Bieneman1-2/+1
2015-02-13NFC. More code cleanup making LookupOption a member of the CommandLineParser.Chris Bieneman1-4/+6
2015-02-06Make helper functions/classes/globals static. NFC.Benjamin Kramer1-0/+4
2015-01-30NFC. Making printOptionValues an API on the parser class.Chris Bieneman1-3/+7
2015-01-29CommandLineParser: Avoid non-static member nitializer(s).NAKAMURA Takumi1-2/+4
2015-01-28Build fix for Visual Studio. NFC.Chris Bieneman1-5/+2
2015-01-28Refactoring llvm command line parsing and option registration.Chris Bieneman1-170/+158
2015-01-27Re-landing changes to use ArrayRef instead of SmallVectorImpl, and new API test.Chris Bieneman1-2/+1