diff --git a/llvm/include/llvm/ADT/EnumMatcher.h b/llvm/include/llvm/ADT/EnumMatcher.h new file mode 100644 --- /dev/null +++ b/llvm/include/llvm/ADT/EnumMatcher.h @@ -0,0 +1,36 @@ +#ifndef LLVM_ADT_ENUMMATCHER_H +#define LLVM_ADT_ENUMMATCHER_H + +#include "llvm/Support/Compiler.h" + +namespace llvm { + +namespace detail { +// This magic blob of code here looks awful, but it is actually pretty clever. +// If you call isValidForDXIL with a constant value, this should generate an +// insane AST that will all constant fold down to true or false. +// If you call it with a non-constant value, it should turn into a nasty switch, +// which is as good as you're going to do anyways... +template +LLVM_ATTRIBUTE_ALWAYS_INLINE bool unrollCompare(T Left, T Right) { + return Left == Right; +} + +template +LLVM_ATTRIBUTE_ALWAYS_INLINE bool unrollCompare(T Left, T Right, V... Vals) { + if (Left == Right) + return true; + return unrollCompare(Left, Vals...); +} +} // namespace detail + +// TODO: When we update to C++17 we can use auto here to avoid needing to +// specify the type of the enum. +template +LLVM_ATTRIBUTE_ALWAYS_INLINE bool isInEnumSet(T InVal) { + return detail::unrollCompare(InVal, Val, Vals...); +} + +} // namespace llvm + +#endif // LLVM_ADT_ENUMMATCHER_H diff --git a/llvm/unittests/ADT/CMakeLists.txt b/llvm/unittests/ADT/CMakeLists.txt --- a/llvm/unittests/ADT/CMakeLists.txt +++ b/llvm/unittests/ADT/CMakeLists.txt @@ -23,6 +23,7 @@ DepthFirstIteratorTest.cpp DirectedGraphTest.cpp EnumeratedArrayTest.cpp + EnumMatcherTests.cpp EquivalenceClassesTest.cpp FallibleIteratorTest.cpp FloatingPointMode.cpp diff --git a/llvm/unittests/ADT/EnumMatcherTests.cpp b/llvm/unittests/ADT/EnumMatcherTests.cpp new file mode 100644 --- /dev/null +++ b/llvm/unittests/ADT/EnumMatcherTests.cpp @@ -0,0 +1,38 @@ +//===- llvm/unittest/ADT/EnumMatcherTests.cpp -------------------*- 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 +// +//===----------------------------------------------------------------------===// +// +//===----------------------------------------------------------------------===// + +#include "llvm/ADT/EnumMatcher.h" +#include "gtest/gtest.h" + +using namespace llvm; + +enum Doggos { + Floofer, + Woofer, + SubWoofer, + Pupper, + Pupperino, + Longboi, +}; + +TEST(EnumMatcher, MatchCase) { + { + bool Val = isInEnumSet(Woofer); + ASSERT_TRUE(Val); + } + { + bool Val = isInEnumSet(SubWoofer); + ASSERT_TRUE(Val); + } + { + bool Val = isInEnumSet(Pupper); + ASSERT_FALSE(Val); + } +}