2016-08-23 00:21:07 +02:00
|
|
|
//===- unittests/ADT/IListSentinelTest.cpp - ilist_sentinel unit tests ----===//
|
|
|
|
//
|
2019-01-19 09:50:56 +01:00
|
|
|
// 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
|
2016-08-23 00:21:07 +02:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2016-09-11 18:20:53 +02:00
|
|
|
#include "llvm/ADT/ilist_node.h"
|
2016-08-23 00:21:07 +02:00
|
|
|
#include "gtest/gtest.h"
|
|
|
|
|
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
2016-09-11 18:20:53 +02:00
|
|
|
template <class T, class... Options> struct PickSentinel {
|
|
|
|
typedef ilist_sentinel<
|
|
|
|
typename ilist_detail::compute_node_options<T, Options...>::type>
|
|
|
|
type;
|
|
|
|
};
|
|
|
|
|
2016-08-23 00:21:07 +02:00
|
|
|
class Node : public ilist_node<Node> {};
|
2016-09-11 18:20:53 +02:00
|
|
|
class TrackingNode : public ilist_node<Node, ilist_sentinel_tracking<true>> {};
|
|
|
|
typedef PickSentinel<Node>::type Sentinel;
|
|
|
|
typedef PickSentinel<Node, ilist_sentinel_tracking<true>>::type
|
|
|
|
TrackingSentinel;
|
|
|
|
typedef PickSentinel<Node, ilist_sentinel_tracking<false>>::type
|
|
|
|
NoTrackingSentinel;
|
2016-08-23 00:21:07 +02:00
|
|
|
|
2016-09-10 18:55:06 +02:00
|
|
|
struct LocalAccess : ilist_detail::NodeAccess {
|
|
|
|
using NodeAccess::getPrev;
|
|
|
|
using NodeAccess::getNext;
|
|
|
|
};
|
|
|
|
|
2016-08-23 00:21:07 +02:00
|
|
|
TEST(IListSentinelTest, DefaultConstructor) {
|
2016-09-11 18:20:53 +02:00
|
|
|
Sentinel S;
|
2016-09-10 18:55:06 +02:00
|
|
|
EXPECT_EQ(&S, LocalAccess::getPrev(S));
|
|
|
|
EXPECT_EQ(&S, LocalAccess::getNext(S));
|
2016-09-30 21:52:27 +02:00
|
|
|
#if LLVM_ENABLE_ABI_BREAKING_CHECKS
|
2016-08-23 00:21:07 +02:00
|
|
|
EXPECT_TRUE(S.isKnownSentinel());
|
|
|
|
#else
|
|
|
|
EXPECT_FALSE(S.isKnownSentinel());
|
|
|
|
#endif
|
2016-09-11 18:20:53 +02:00
|
|
|
|
|
|
|
TrackingSentinel TS;
|
|
|
|
NoTrackingSentinel NTS;
|
|
|
|
EXPECT_TRUE(TS.isSentinel());
|
|
|
|
EXPECT_TRUE(TS.isKnownSentinel());
|
|
|
|
EXPECT_FALSE(NTS.isKnownSentinel());
|
2016-08-23 00:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
TEST(IListSentinelTest, NormalNodeIsNotKnownSentinel) {
|
|
|
|
Node N;
|
2016-09-10 18:55:06 +02:00
|
|
|
EXPECT_EQ(nullptr, LocalAccess::getPrev(N));
|
|
|
|
EXPECT_EQ(nullptr, LocalAccess::getNext(N));
|
2016-08-23 00:21:07 +02:00
|
|
|
EXPECT_FALSE(N.isKnownSentinel());
|
2016-09-11 18:20:53 +02:00
|
|
|
|
|
|
|
TrackingNode TN;
|
|
|
|
EXPECT_FALSE(TN.isSentinel());
|
2016-08-23 00:21:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
} // end namespace
|