index
:
bcm5719-llvm
meklort-10.0.0
meklort-10.0.1
ortega-7.0.1
Project Ortega BCM5719 LLVM
Raptor Computing Systems
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
llvm
/
lib
/
Support
/
CommandLine.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
StringRef-ify some Option APIs
David Blaikie
2015-11-17
1
-26
/
+25
*
There is only one saver of strings.
Rafael Espindola
2015-08-13
1
-2
/
+2
*
Remove macro guards for extern template instantiations.
Benjamin Kramer
2015-07-13
1
-15
/
+15
*
Revert r240137 (Fixed/added namespace ending comments using clang-tidy. NFC)
Alexander Kornienko
2015-06-23
1
-2
/
+2
*
Fixed/added namespace ending comments using clang-tidy. NFC
Alexander Kornienko
2015-06-19
1
-2
/
+2
*
Bring in a BumpPtrStringSaver from lld and simplify the interface.
Rafael Espindola
2015-06-13
1
-28
/
+10
*
Use 'override/final' instead of 'virtual' for overridden methods
Alexander Kornienko
2015-04-11
1
-1
/
+1
*
Remove more superfluous .str() and replace std::string concatenation with Twine.
Yaron Keren
2015-03-30
1
-1
/
+1
*
Purge unused includes throughout libSupport.
Benjamin Kramer
2015-03-23
1
-2
/
+0
*
CommandLine: Replace cold std::sort with array_pod_sort.
Benjamin Kramer
2015-03-14
1
-11
/
+12
*
Simplify expressions involving boolean constants with clang-tidy
David Blaikie
2015-03-09
1
-2
/
+2
*
Prefer SmallVector::append/insert over push_back loops.
Benjamin Kramer
2015-02-17
1
-3
/
+1
*
Fixing broken bots.
Chris Bieneman
2015-02-13
1
-1
/
+1
*
NFC. Moving the RegisteredOptionCategories global into the CommandLineParser ...
Chris Bieneman
2015-02-13
1
-15
/
+18
*
NFC. clang-format wants to change this from two lines to one.
Chris Bieneman
2015-02-13
1
-2
/
+1
*
NFC. More code cleanup making LookupOption a member of the CommandLineParser.
Chris Bieneman
2015-02-13
1
-4
/
+6
*
Make helper functions/classes/globals static. NFC.
Benjamin Kramer
2015-02-06
1
-0
/
+4
*
NFC. Making printOptionValues an API on the parser class.
Chris Bieneman
2015-01-30
1
-3
/
+7
*
CommandLineParser: Avoid non-static member nitializer(s).
NAKAMURA Takumi
2015-01-29
1
-2
/
+4
*
Build fix for Visual Studio. NFC.
Chris Bieneman
2015-01-28
1
-5
/
+2
*
Refactoring llvm command line parsing and option registration.
Chris Bieneman
2015-01-28
1
-170
/
+158
*
Re-landing changes to use ArrayRef instead of SmallVectorImpl, and new API test.
Chris Bieneman
2015-01-27
1
-2
/
+1
*
Revert r227148 & r227154 which added a test which infinitely loops.
Richard Trieu
2015-01-27
1
-1
/
+2
*
One more fix to the new API to fix const-correctness.
Chris Bieneman
2015-01-27
1
-1
/
+1
*
Pete Cooper suggested the new API should use ArrayRef instead of SmallVectorI...
Chris Bieneman
2015-01-26
1
-2
/
+1
*
Add new HideUnrelatedOptions API that takes a SmallVectorImpl.
Chris Bieneman
2015-01-26
1
-0
/
+14
*
Putting all the standard tool options into a "Generic" category.
Chris Bieneman
2015-01-26
1
-9
/
+16
*
If we see UTF-8 BOM sequence at the beginning of a response file, we shall
Yunzhong Gao
2015-01-24
1
-0
/
+12
*
Adding a new cl::HideUnrelatedOptions API to allow clang to migrate off cl::g...
Chris Bieneman
2015-01-21
1
-1
/
+11
*
Running clang-format on CommandLine.h and CommandLine.cpp.
Chris Bieneman
2015-01-13
1
-273
/
+262
*
Silence static analyzer warnings in LLVMSupport.
Michael Ilseman
2014-12-11
1
-0
/
+2
*
Update SetVector to rely on the underlying set's insert to return a pair<iter...
David Blaikie
2014-11-19
1
-1
/
+1
*
Remove StringMap::GetOrCreateValue in favor of StringMap::insert
David Blaikie
2014-11-19
1
-1
/
+1
*
Introduce LLVMParseCommandLineOptions C API function.
Peter Collingbourne
2014-10-16
1
-0
/
+6
*
Defining a new API for debug options that doesn't rely on static global cl::o...
Chris Bieneman
2014-10-15
1
-3
/
+9
*
Fix PR17239 by changing the semantics of the RemainingArgsClass Option kind
Reid Kleckner
2014-08-22
1
-8
/
+35
*
Revert "[Support] Promote cl::StringSaver to a separate utility"
Sean Silva
2014-08-15
1
-7
/
+27
*
[Support] Promote cl::StringSaver to a separate utility
Sean Silva
2014-08-15
1
-27
/
+7
*
Remove some calls to std::move.
Rafael Espindola
2014-08-01
1
-3
/
+3
*
Support: Use a range-based for
Justin Bogner
2014-07-14
1
-5
/
+4
*
Update the MemoryBuffer API to use ErrorOr.
Rafael Espindola
2014-07-06
1
-2
/
+4
*
Revert "Introduce a string_ostream string builder facilty"
Alp Toker
2014-06-26
1
-15
/
+19
*
Introduce a string_ostream string builder facilty
Alp Toker
2014-06-26
1
-19
/
+15
*
CommandLine: bail out when options get multiply registered
Alp Toker
2014-06-19
1
-3
/
+13
*
tools: Add a space between package version and LLVM_VERSION_INFO
Justin Bogner
2014-06-17
1
-1
/
+1
*
Remove system_error.h.
Rafael Espindola
2014-06-12
1
-1
/
+1
*
cl::ParseCommandLineOptions(): Use StringRef to receive sys::path::filename()...
NAKAMURA Takumi
2014-04-23
1
-1
/
+1
*
[Modules] Make Support/Debug.h modular. This requires it to not change
Chandler Carruth
2014-04-21
1
-0
/
+2
*
[C++11] More 'nullptr' conversion. In some cases just using a boolean check i...
Craig Topper
2014-04-15
1
-2
/
+2
*
[C++11] Replace some comparisons with 'nullptr' with simple boolean checks to...
Craig Topper
2014-04-09
1
-11
/
+10
[prev]
[next]