-
Notifications
You must be signed in to change notification settings - Fork 12k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[libc] Trivial implementation of std::optional
This class has only the minimum functionality in it to provide what the TZ variable parsing needs. In particular, the standard makes guarantees about how trivial the destructors are, throws an expception if it's used incorrectly, etc. There are also missing features. Tested: Trivial testsuite added, and use in development. Reviewed By: gchatelet Differential Revision: https://reviews.llvm.org/D129920
- Loading branch information
Showing
5 changed files
with
165 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
//===-- Standalone implementation std::optional -----------------*- 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#ifndef LLVM_LIBC_SRC_SUPPORT_CPP_OPTIONAL_H | ||
#define LLVM_LIBC_SRC_SUPPORT_CPP_OPTIONAL_H | ||
|
||
namespace __llvm_libc { | ||
namespace cpp { | ||
|
||
// Trivial nullopt_t struct. | ||
struct nullopt_t {}; | ||
|
||
// nullopt that can be used and returned | ||
inline constexpr nullopt_t nullopt; | ||
|
||
// This is very simple implementation of the std::optional class. There are a | ||
// number of guarantees in the standard that are not made here. | ||
// | ||
// This class will be extended as needed in future. | ||
// | ||
// T currently needs to be a scalar or an object with the following properties: | ||
// - copy constructible | ||
// - copy assignable | ||
// - destructible | ||
template <class T> class optional { | ||
|
||
template <class E> class OptionalStorage { | ||
public: | ||
union { | ||
E StoredValue; | ||
char Placeholder; | ||
}; | ||
bool InUse = false; | ||
|
||
OptionalStorage() : Placeholder(0), InUse(false) {} | ||
OptionalStorage(const E &t) : StoredValue(t), InUse(true) {} | ||
~OptionalStorage() { | ||
if (InUse) | ||
StoredValue.~E(); | ||
} | ||
|
||
void reset() { | ||
if (InUse) | ||
StoredValue.~E(); | ||
InUse = false; | ||
} | ||
}; | ||
|
||
OptionalStorage<T> Storage; | ||
|
||
public: | ||
optional() {} | ||
optional(nullopt_t) {} | ||
optional(const T &t) : Storage(t) {} | ||
|
||
T value() const { return Storage.StoredValue; } | ||
|
||
bool has_value() const { return Storage.InUse; } | ||
|
||
void reset() { Storage.reset(); } | ||
|
||
constexpr explicit operator bool() const { return Storage.InUse; } | ||
|
||
constexpr optional &operator=(nullopt_t) { | ||
reset(); | ||
return *this; | ||
} | ||
|
||
constexpr T &operator*() & { return Storage.StoredValue; } | ||
|
||
constexpr const T &operator*() const & { return Storage.StoredValue; } | ||
}; | ||
} // namespace cpp | ||
} // namespace __llvm_libc | ||
|
||
#endif // LLVM_LIBC_SRC_SUPPORT_CPP_OPTIONAL_H |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
//===-- Unittests for Optional --------------------------------------------===// | ||
// | ||
// 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 | ||
// | ||
//===----------------------------------------------------------------------===// | ||
|
||
#include "src/__support/CPP/optional.h" | ||
#include "utils/UnitTest/Test.h" | ||
|
||
using __llvm_libc::cpp::nullopt; | ||
using __llvm_libc::cpp::optional; | ||
|
||
// This has clase has two properties for testing: | ||
// 1) No default constructor | ||
// 2) A non-trivial destructor with an observable side-effect | ||
class Contrived { | ||
int *_a; | ||
|
||
public: | ||
Contrived(int *a) : _a(a) {} | ||
~Contrived() { (*_a)++; } | ||
}; | ||
|
||
TEST(LlvmLibcOptionalTest, Tests) { | ||
optional<int> Trivial1(12); | ||
ASSERT_TRUE(Trivial1.has_value()); | ||
ASSERT_EQ(Trivial1.value(), 12); | ||
ASSERT_EQ(*Trivial1, 12); | ||
Trivial1.reset(); | ||
ASSERT_FALSE(Trivial1.has_value()); | ||
|
||
optional<int> Trivial2(12); | ||
ASSERT_TRUE(Trivial2.has_value()); | ||
Trivial2 = nullopt; | ||
ASSERT_FALSE(Trivial2.has_value()); | ||
|
||
// For this test case, the destructor increments the pointed-to value. | ||
int holding = 1; | ||
optional<Contrived> Complicated(&holding); | ||
// Destructor was run once as part of copying the object. | ||
ASSERT_EQ(holding, 2); | ||
// Destructor was run a second time as part of destruction. | ||
Complicated.reset(); | ||
ASSERT_EQ(holding, 3); | ||
// Destructor was not run a third time as the object is already destroyed. | ||
Complicated.reset(); | ||
ASSERT_EQ(holding, 3); | ||
|
||
// Test that assigning an optional to another works when set | ||
optional<int> Trivial3(12); | ||
optional<int> Trivial4 = Trivial3; | ||
ASSERT_TRUE(Trivial4.has_value()); | ||
ASSERT_EQ(Trivial4.value(), 12); | ||
|
||
// Test that assigning an option to another works when unset | ||
optional<int> Trivial5; | ||
ASSERT_FALSE(Trivial5.has_value()); | ||
optional<int> Trivial6 = Trivial5; | ||
ASSERT_FALSE(Trivial6.has_value()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters