aboutsummaryrefslogtreecommitdiff
path: root/lib/Driver/OptTable.cpp
AgeCommit message (Expand)Author
2012-05-01Unify Options.td and CC1Options.td, in a first step towards unifying the seri...James Molloy
2011-09-23More missing header inclusions from llvm_unreachable migration.David Blaikie
2011-09-23Switch assert(0/false) llvm_unreachable.David Blaikie
2011-07-23remove unneeded llvm:: namespace qualifiers on some core types now that LLVM....Chris Lattner
2011-04-15fix a bunch of comment typos found by codespell. Patch byChris Lattner
2010-12-31Remove stray emacs mode markers in all these files that was causing emacs toNick Lewycky
2010-10-11Declare argv parameters as const char* const* instead of to char** to clarify...Axel Naumann
2010-08-13Driver/OptParser: Add a NoForward flag to prevent forwarding certain options toDaniel Dunbar
2010-06-16Frontend: Allow passing -cc1 level arguments to plugins. Patch by Troy Strasz...Daniel Dunbar
2010-06-11Driver: Change OptTable::ParseArg to take any ArgList.Daniel Dunbar
2010-06-09Driver: Eliminate Arg subclasses, which are now unnecessary.Daniel Dunbar
2010-06-09Driver: Keep the rendering style in the option, instead of as part of the Arg.Daniel Dunbar
2010-06-09Driver: Change Arg to just hold the values directly, instead of implicitlyDaniel Dunbar
2010-03-20Driver: Allow Render{Separate,Joined} option flags on JoinedOrSeparate option...Daniel Dunbar
2009-12-04OptTable: Allow option groups to be used to define "help groups", which willDaniel Dunbar
2009-12-04OptParser: Add HelpHidden flag.Daniel Dunbar
2009-12-03Add OptTable::PrintHelp.Daniel Dunbar
2009-11-19Factor out OptTable::ParseArgs, for parsing an entire argument vector.Daniel Dunbar
2009-11-19Driver: Take option ID for {Input,Unknown}Option, to drop dependency on actua...Daniel Dunbar
2009-11-19Driver: Introduce OptSpecifier class for protecting access to an option id.Daniel Dunbar
2009-11-19Driver: Split OptTable out into OptTable.{h,cpp}Daniel Dunbar
2009-11-18Make MSVC happy.Daniel Dunbar
2009-11-18Driver: Rework OptTable to have no dependency on the options it manages.Daniel Dunbar
2009-11-18Driver: Switch Options.def to storing flags as a bitmask (instead of mangledDaniel Dunbar
2009-09-09Remove tabs, and whitespace cleanups.Mike Stump
2009-07-13Explicitly initialize the options array, MinGW's gcc 4.3.5 appears to have a bugDaniel Dunbar
2009-04-07Driver: Add 'q' flag for options which shouldn't be reported as unused.Daniel Dunbar
2009-04-07Driver: Fix a parsing bug where some options were matchedDaniel Dunbar
2009-03-31Driver: Add OptTable::getOptionKind.Daniel Dunbar
2009-03-31Driver: Add extra parameters for help text to option definitions.Daniel Dunbar
2009-03-25Driver: Replace Option::ForwardToGCC by Option::DriverOption (whichDaniel Dunbar
2009-03-25Driver: Prep for tool chain specific argument translation.Daniel Dunbar
2009-03-25gcc 4.3 finds my use of ^ suspicious.Daniel Dunbar
2009-03-23Driver: Make argument parsing fast.Daniel Dunbar
2009-03-23Driver: Fix off by one in computation of first searchable option.Daniel Dunbar
2009-03-23Driver: Check that options are ordered properly (outside ofDaniel Dunbar
2009-03-22Driver: Implement 'missing argument' error.Daniel Dunbar
2009-03-18Driver: Add "d" flag to Options.def for options which are completelyDaniel Dunbar
2009-03-12Driver: Value initialization is nicer than memset.Daniel Dunbar
2009-03-12Driver: Drop some unnecessary uses of clang namespace.Daniel Dunbar
2009-03-12Driver: '-' is parsed as an input.Daniel Dunbar
2009-03-12Driver: Add Option flags.Daniel Dunbar
2009-03-12Driver: Tweak option naming/def:Daniel Dunbar
2009-03-12Driver: Reorder arguments in Options.def so option name is first.Daniel Dunbar
2009-03-04Driver: Implement Option::accept methods.Daniel Dunbar
2009-03-04Driver: Fix off by one in ParseOneArg; this code is ugly but will beDaniel Dunbar
2009-03-04Driver: Add OptTable::ParseOneArg.Daniel Dunbar
2009-03-04Driver: Option's need to know their ID.Daniel Dunbar
2009-03-04Driver: Add Option flags.Daniel Dunbar
2009-03-04Driver: More Option implementation.Daniel Dunbar