aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Driver/ArgList.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/clang/Driver/ArgList.h')
-rw-r--r--include/clang/Driver/ArgList.h67
1 files changed, 67 insertions, 0 deletions
diff --git a/include/clang/Driver/ArgList.h b/include/clang/Driver/ArgList.h
new file mode 100644
index 0000000000..0fc488e73e
--- /dev/null
+++ b/include/clang/Driver/ArgList.h
@@ -0,0 +1,67 @@
+//===--- ArgList.h - Argument List Management ----------*- C++ -*-===//
+//
+// The LLVM Compiler Infrastructure
+//
+// This file is distributed under the University of Illinois Open Source
+// License. See LICENSE.TXT for details.
+//
+//===----------------------------------------------------------------------===//
+
+#ifndef CLANG_DRIVER_ARGLIST_H_
+#define CLANG_DRIVER_ARGLIST_H_
+
+#include "llvm/ADT/DenseMap.h"
+#include "llvm/ADT/SmallVector.h"
+
+namespace clang {
+namespace driver {
+ class Arg;
+
+ /// ArgList - Ordered collection of driver arguments.
+ ///
+ /// The ArgList class manages a list of Arg instances as well as
+ /// auxiliary data and convenience methods to allow Tools to quickly
+ /// check for the presence of Arg instances for a particular Option
+ /// and to iterate over groups of arguments.
+ class ArgList {
+ public:
+ typedef llvm::SmallVector<Arg*, 16> arglist_type;
+ typedef arglist_type::iterator iterator;
+ typedef arglist_type::const_iterator const_iterator;
+
+ private:
+ /// List of argument strings used by the contained Args.
+ ArgStringList ArgStrings;
+
+ /// The full list of arguments.
+ llvm::SmallVector<Arg*, 16> Args;
+
+ /// A map of arguments by option ID; in conjunction with the
+ /// intrusive list in Arg instances this allows iterating over all
+ /// arguments for a particular option.
+ llvm::DenseMap<unsigned, Arg*> ArgMap;
+
+ public:
+ ArgList(unsigned argc, const char **argv);
+ ArgList(const ArgList &);
+ ~ArgList();
+
+ unsigned size() const { return Args.size(); }
+
+ iterator begin() { return Args.begin(); }
+ iterator end() { return Args.end(); }
+
+ const_iterator begin() const { return Args.begin(); }
+ const_iterator end() const { return Args.end(); }
+
+ Arg *getArgForID(unsigned ID) const {
+ llvm::DenseMap<unsigned, Arg*>::iterator it = ArgMap.find(ID);
+ if (it != ArgMap.end())
+ return it->second;
+ return 0;
+ }
+ };
+} // end namespace driver
+} // end namespace clang
+
+#endif