//===- Optional.h - Simple variant for passing optional values --*- C++ -*-===// // // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. // See https://llvm.org/LICENSE.txt for license information. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception // //===----------------------------------------------------------------------===// // // 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_H #define LLVM_ADT_OPTIONAL_H #include "llvm/ADT/None.h" #include "llvm/Support/AlignOf.h" #include "llvm/Support/Compiler.h" #include "llvm/Support/type_traits.h" #include #include #include #include namespace llvm { class raw_ostream; namespace optional_detail { /// Storage for any type. template ::value> struct OptionalStorage { AlignedCharArrayUnion storage; bool hasVal = false; OptionalStorage() = default; OptionalStorage(const T &y) : hasVal(true) { new (storage.buffer) T(y); } OptionalStorage(const OptionalStorage &O) : hasVal(O.hasVal) { if (hasVal) new (storage.buffer) T(*O.getPointer()); } OptionalStorage(T &&y) : hasVal(true) { new (storage.buffer) T(std::forward(y)); } OptionalStorage(OptionalStorage &&O) : hasVal(O.hasVal) { if (O.hasVal) { new (storage.buffer) T(std::move(*O.getPointer())); } } OptionalStorage &operator=(T &&y) { if (hasVal) *getPointer() = std::move(y); else { new (storage.buffer) T(std::move(y)); hasVal = true; } return *this; } OptionalStorage &operator=(OptionalStorage &&O) { if (!O.hasVal) reset(); else { *this = std::move(*O.getPointer()); } return *this; } // FIXME: these assignments (& the equivalent const T&/const Optional& ctors) // could be made more efficient by passing by value, possibly unifying them // with the rvalue versions above - but this could place a different set of // requirements (notably: the existence of a default ctor) when implemented // in that way. Careful SFINAE to avoid such pitfalls would be required. OptionalStorage &operator=(const T &y) { if (hasVal) *getPointer() = y; else { new (storage.buffer) T(y); hasVal = true; } return *this; } OptionalStorage &operator=(const OptionalStorage &O) { if (!O.hasVal) reset(); else *this = *O.getPointer(); return *this; } ~OptionalStorage() { reset(); } void reset() { if (hasVal) { (*getPointer()).~T(); hasVal = false; } } T *getPointer() { assert(hasVal); return reinterpret_cast(storage.buffer); } const T *getPointer() const { assert(hasVal); return reinterpret_cast(storage.buffer); } }; } // namespace optional_detail template class Optional { optional_detail::OptionalStorage Storage; public: using value_type = T; constexpr Optional() {} constexpr Optional(NoneType) {} Optional(const T &y) : Storage(y) {} Optional(const Optional &O) = default; Optional(T &&y) : Storage(std::forward(y)) {} Optional(Optional &&O) = default; Optional &operator=(T &&y) { Storage = std::move(y); return *this; } Optional &operator=(Optional &&O) = default; /// Create a new object by constructing it in place with the given arguments. template void emplace(ArgTypes &&... Args) { reset(); Storage.hasVal = true; new (getPointer()) T(std::forward(Args)...); } static inline Optional create(const T *y) { return y ? Optional(*y) : Optional(); } Optional &operator=(const T &y) { Storage = y; return *this; } Optional &operator=(const Optional &O) = default; void reset() { Storage.reset(); } const T *getPointer() const { assert(Storage.hasVal); return reinterpret_cast(Storage.storage.buffer); } T *getPointer() { assert(Storage.hasVal); return reinterpret_cast(Storage.storage.buffer); } const T &getValue() const LLVM_LVALUE_FUNCTION { return *getPointer(); } T &getValue() LLVM_LVALUE_FUNCTION { return *getPointer(); } explicit operator bool() const { return Storage.hasVal; } bool hasValue() const { return Storage.hasVal; } const T *operator->() const { return getPointer(); } T *operator->() { return getPointer(); } const T &operator*() const LLVM_LVALUE_FUNCTION { return *getPointer(); } T &operator*() LLVM_LVALUE_FUNCTION { return *getPointer(); } template constexpr T getValueOr(U &&value) const LLVM_LVALUE_FUNCTION { return hasValue() ? getValue() : std::forward(value); } #if LLVM_HAS_RVALUE_REFERENCE_THIS T &&getValue() && { return std::move(*getPointer()); } T &&operator*() && { return std::move(*getPointer()); } template T getValueOr(U &&value) && { return hasValue() ? std::move(getValue()) : std::forward(value); } #endif }; template bool operator==(const Optional &X, const Optional &Y) { if (X && Y) return *X == *Y; return X.hasValue() == Y.hasValue(); } template bool operator!=(const Optional &X, const Optional &Y) { return !(X == Y); } template bool operator<(const Optional &X, const Optional &Y) { if (X && Y) return *X < *Y; return X.hasValue() < Y.hasValue(); } template bool operator<=(const Optional &X, const Optional &Y) { return !(Y < X); } template bool operator>(const Optional &X, const Optional &Y) { return Y < X; } template bool operator>=(const Optional &X, const Optional &Y) { return !(X < Y); } template bool operator==(const Optional &X, NoneType) { return !X; } template bool operator==(NoneType, const Optional &X) { return X == None; } template bool operator!=(const Optional &X, NoneType) { return !(X == None); } template bool operator!=(NoneType, const Optional &X) { return X != None; } template bool operator<(const Optional &X, NoneType) { return false; } template bool operator<(NoneType, const Optional &X) { return X.hasValue(); } template bool operator<=(const Optional &X, NoneType) { return !(None < X); } template bool operator<=(NoneType, const Optional &X) { return !(X < None); } template bool operator>(const Optional &X, NoneType) { return None < X; } template bool operator>(NoneType, const Optional &X) { return X < None; } template bool operator>=(const Optional &X, NoneType) { return None <= X; } template bool operator>=(NoneType, const Optional &X) { return X <= None; } template bool operator==(const Optional &X, const T &Y) { return X && *X == Y; } template bool operator==(const T &X, const Optional &Y) { return Y && X == *Y; } template bool operator!=(const Optional &X, const T &Y) { return !(X == Y); } template bool operator!=(const T &X, const Optional &Y) { return !(X == Y); } template bool operator<(const Optional &X, const T &Y) { return !X || *X < Y; } template bool operator<(const T &X, const Optional &Y) { return Y && X < *Y; } template bool operator<=(const Optional &X, const T &Y) { return !(Y < X); } template bool operator<=(const T &X, const Optional &Y) { return !(Y < X); } template bool operator>(const Optional &X, const T &Y) { return Y < X; } template bool operator>(const T &X, const Optional &Y) { return Y < X; } template bool operator>=(const Optional &X, const T &Y) { return !(X < Y); } template bool operator>=(const T &X, const Optional &Y) { return !(X < Y); } raw_ostream &operator<<(raw_ostream &OS, NoneType); template () << std::declval())> raw_ostream &operator<<(raw_ostream &OS, const Optional &O) { if (O) OS << *O; else OS << None; return OS; } } // end namespace llvm #endif // LLVM_ADT_OPTIONAL_H