diff options
| author | Ted Kremenek <kremenek@apple.com> | 2010-04-09 20:25:54 +0000 |
|---|---|---|
| committer | Ted Kremenek <kremenek@apple.com> | 2010-04-09 20:25:54 +0000 |
| commit | bfe98e644be6df1704fa1b30877153adf904998f (patch) | |
| tree | 3362137b086d56f76db206cd3019396ec48527e1 | |
| parent | 41ef2a6b32419f020c51eeca34ab50a88347071a (diff) | |
| download | bcm5719-llvm-bfe98e644be6df1704fa1b30877153adf904998f.tar.gz bcm5719-llvm-bfe98e644be6df1704fa1b30877153adf904998f.zip | |
Move 'Optional' class from Clang to LLVM/ADT.
llvm-svn: 100889
| -rw-r--r-- | llvm/include/llvm/ADT/Optional.h | 66 |
1 files changed, 66 insertions, 0 deletions
diff --git a/llvm/include/llvm/ADT/Optional.h b/llvm/include/llvm/ADT/Optional.h new file mode 100644 index 00000000000..34e54a07a0e --- /dev/null +++ b/llvm/include/llvm/ADT/Optional.h @@ -0,0 +1,66 @@ +//===-- Optional.h - Simple variant for passing optional values ---*- C++ -*-=// +// +// The LLVM Compiler Infrastructure +// +// This file is distributed under the University of Illinois Open Source +// License. See LICENSE.TXT for details. +// +//===----------------------------------------------------------------------===// +// +// This file provides Optional, a template class modeled in the spirit of +// OCaml's 'opt' variant. The idea is to strongly type whether or not +// a value can be optional. +// +//===----------------------------------------------------------------------===// + +#ifndef LLVM_ADT_OPTIONAL +#define LLVM_ADT_OPTIONAL + +#include <cassert> + +namespace llvm { + +template<typename T> +class Optional { + T x; + unsigned hasVal : 1; +public: + explicit Optional() : x(), hasVal(false) {} + Optional(const T &y) : x(y), hasVal(true) {} + + static inline Optional create(const T* y) { + return y ? Optional(*y) : Optional(); + } + + Optional &operator=(const T &y) { + x = y; + hasVal = true; + return *this; + } + + const T* getPointer() const { assert(hasVal); return &x; } + const T& getValue() const { assert(hasVal); return x; } + + operator bool() const { return hasVal; } + bool hasValue() const { return hasVal; } + const T* operator->() const { return getPointer(); } + const T& operator*() const { assert(hasVal); return x; } +}; + +template<typename T> struct simplify_type; + +template <typename T> +struct simplify_type<const Optional<T> > { + typedef const T* SimpleType; + static SimpleType getSimplifiedValue(const Optional<T> &Val) { + return Val.getPointer(); + } +}; + +template <typename T> +struct simplify_type<Optional<T> > + : public simplify_type<const Optional<T> > {}; + +} // end llvm namespace + +#endif |

