blob: 0f36c383d494cf4dc2db25706a834d55f678dcbe [file] [log] [blame]
Mehdi Amini33a7ea42015-12-15 00:59:19 +00001//========- unittests/Support/ThreadPools.cpp - ThreadPools.h tests --========//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9
10#include "llvm/Support/ThreadPool.h"
11
12#include "llvm/ADT/STLExtras.h"
Mehdi Amini942e52c2015-12-15 09:10:25 +000013#include "llvm/ADT/SmallVector.h"
14#include "llvm/ADT/Triple.h"
15#include "llvm/Support/Host.h"
16#include "llvm/Support/TargetSelect.h"
Mehdi Amini33a7ea42015-12-15 00:59:19 +000017
18#include "gtest/gtest.h"
19
20using namespace llvm;
Mehdi Amini33a7ea42015-12-15 00:59:19 +000021
Mehdi Amini942e52c2015-12-15 09:10:25 +000022// Fixture for the unittests, allowing to *temporarily* disable the unittests
23// on a particular platform
24class ThreadPoolTest : public testing::Test {
25 Triple Host;
26 SmallVector<Triple::ArchType, 4> UnsupportedArchs;
27 SmallVector<Triple::OSType, 4> UnsupportedOSs;
28 SmallVector<Triple::EnvironmentType, 1> UnsupportedEnvironments;
29protected:
30 // This is intended for platform as a temporary "XFAIL"
31 bool isUnsupportedOSOrEnvironment() {
32 Triple Host(Triple::normalize(sys::getProcessTriple()));
33
34 if (std::find(UnsupportedEnvironments.begin(), UnsupportedEnvironments.end(),
35 Host.getEnvironment()) != UnsupportedEnvironments.end())
36 return true;
37
38 if (std::find(UnsupportedOSs.begin(), UnsupportedOSs.end(), Host.getOS())
39 != UnsupportedOSs.end())
40 return true;
41
42 if (std::find(UnsupportedArchs.begin(), UnsupportedArchs.end(), Host.getArch())
43 != UnsupportedArchs.end())
44 return true;
45
46 return false;
47 }
48
49 ThreadPoolTest() {
50 // Add unsupported configuration here, example:
51 // UnsupportedArchs.push_back(Triple::x86_64);
Mehdi Amini4b8d75b2015-12-15 09:10:28 +000052
53 // See https://llvm.org/bugs/show_bug.cgi?id=25829
54 UnsupportedArchs.push_back(Triple::ppc64le);
55 UnsupportedArchs.push_back(Triple::ppc64);
Mehdi Amini942e52c2015-12-15 09:10:25 +000056 }
Mehdi Amini0129fca2015-12-19 05:12:07 +000057
58 /// Make sure this thread not progress faster than the main thread.
59 void waitForMainThread() {
Vedant Kumar3791e3d2015-12-19 09:54:27 +000060 std::unique_lock<std::mutex> LockGuard(WaitMainThreadMutex);
61 WaitMainThread.wait(LockGuard, [&] { return MainThreadReady; });
Mehdi Amini0129fca2015-12-19 05:12:07 +000062 }
Vedant Kumar2cf75332015-12-19 09:49:09 +000063
64 /// Set the readiness of the main thread.
Mehdi Aminifa4e4742015-12-19 22:56:24 +000065 void setMainThreadReady() {
66 {
67 std::unique_lock<std::mutex> LockGuard(WaitMainThreadMutex);
68 MainThreadReady = true;
69 }
Vedant Kumar2cf75332015-12-19 09:49:09 +000070 WaitMainThread.notify_all();
71 }
72
Mehdi Aminifa4e4742015-12-19 22:56:24 +000073 void SetUp() override { MainThreadReady = false; }
74
Mehdi Amini0129fca2015-12-19 05:12:07 +000075 std::condition_variable WaitMainThread;
76 std::mutex WaitMainThreadMutex;
77 bool MainThreadReady;
78
Mehdi Amini942e52c2015-12-15 09:10:25 +000079};
80
81#define CHECK_UNSUPPORTED() \
82 do { \
83 if (isUnsupportedOSOrEnvironment()) \
84 return; \
85 } while (0); \
86
87TEST_F(ThreadPoolTest, AsyncBarrier) {
88 CHECK_UNSUPPORTED();
Mehdi Amini33a7ea42015-12-15 00:59:19 +000089 // test that async & barrier work together properly.
90
91 std::atomic_int checked_in{0};
92
93 ThreadPool Pool;
94 for (size_t i = 0; i < 5; ++i) {
Mehdi Amini0129fca2015-12-19 05:12:07 +000095 Pool.async([this, &checked_in, i] {
96 waitForMainThread();
Mehdi Amini33a7ea42015-12-15 00:59:19 +000097 ++checked_in;
98 });
99 }
Mehdi Amini0129fca2015-12-19 05:12:07 +0000100 ASSERT_EQ(0, checked_in);
Mehdi Aminifa4e4742015-12-19 22:56:24 +0000101 setMainThreadReady();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000102 Pool.wait();
103 ASSERT_EQ(5, checked_in);
104}
105
Teresa Johnsonf064d622015-12-15 04:44:02 +0000106static void TestFunc(std::atomic_int &checked_in, int i) { checked_in += i; }
107
Mehdi Amini942e52c2015-12-15 09:10:25 +0000108TEST_F(ThreadPoolTest, AsyncBarrierArgs) {
109 CHECK_UNSUPPORTED();
Teresa Johnsonf064d622015-12-15 04:44:02 +0000110 // Test that async works with a function requiring multiple parameters.
111 std::atomic_int checked_in{0};
112
113 ThreadPool Pool;
114 for (size_t i = 0; i < 5; ++i) {
115 Pool.async(TestFunc, std::ref(checked_in), i);
116 }
117 Pool.wait();
118 ASSERT_EQ(10, checked_in);
119}
120
Mehdi Amini942e52c2015-12-15 09:10:25 +0000121TEST_F(ThreadPoolTest, Async) {
122 CHECK_UNSUPPORTED();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000123 ThreadPool Pool;
124 std::atomic_int i{0};
Mehdi Amini0129fca2015-12-19 05:12:07 +0000125 Pool.async([this, &i] {
126 waitForMainThread();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000127 ++i;
128 });
129 Pool.async([&i] { ++i; });
Mehdi Amini0129fca2015-12-19 05:12:07 +0000130 ASSERT_NE(2, i.load());
Mehdi Aminifa4e4742015-12-19 22:56:24 +0000131 setMainThreadReady();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000132 Pool.wait();
133 ASSERT_EQ(2, i.load());
134}
135
Mehdi Amini942e52c2015-12-15 09:10:25 +0000136TEST_F(ThreadPoolTest, GetFuture) {
137 CHECK_UNSUPPORTED();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000138 ThreadPool Pool;
139 std::atomic_int i{0};
Mehdi Amini0129fca2015-12-19 05:12:07 +0000140 Pool.async([this, &i] {
141 waitForMainThread();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000142 ++i;
143 });
144 // Force the future using get()
145 Pool.async([&i] { ++i; }).get();
Mehdi Amini0129fca2015-12-19 05:12:07 +0000146 ASSERT_NE(2, i.load());
Mehdi Aminifa4e4742015-12-19 22:56:24 +0000147 setMainThreadReady();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000148 Pool.wait();
149 ASSERT_EQ(2, i.load());
150}
151
Mehdi Amini942e52c2015-12-15 09:10:25 +0000152TEST_F(ThreadPoolTest, PoolDestruction) {
153 CHECK_UNSUPPORTED();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000154 // Test that we are waiting on destruction
155 std::atomic_int checked_in{0};
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000156 {
157 ThreadPool Pool;
158 for (size_t i = 0; i < 5; ++i) {
Mehdi Amini0129fca2015-12-19 05:12:07 +0000159 Pool.async([this, &checked_in, i] {
160 waitForMainThread();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000161 ++checked_in;
162 });
163 }
Mehdi Amini0129fca2015-12-19 05:12:07 +0000164 ASSERT_EQ(0, checked_in);
Mehdi Aminifa4e4742015-12-19 22:56:24 +0000165 setMainThreadReady();
Mehdi Amini33a7ea42015-12-15 00:59:19 +0000166 }
167 ASSERT_EQ(5, checked_in);
168}