Work on <atomic> continues. The file size is actually sane now...
git-svn-id: https://llvm.org/svn/llvm-project/libcxx/trunk@121181 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
4777bf2799
commit
91e2f26fec
10023
include/atomic
10023
include/atomic
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,107 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_add(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_add(atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_add(volatile atomic<T*>* obj, ptrdiff_t op);
|
||||||
|
//
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_add(atomic<T*>* obj, ptrdiff_t op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_add(&t, T(2)) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_add(&t, T(2)) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
testp()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_add(&t, 2) == T(1*sizeof(X)));
|
||||||
|
assert(t == T(3*sizeof(X)));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(1*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_add(&t, 2) == T(1*sizeof(X)));
|
||||||
|
assert(t == T(3*sizeof(X)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
explicit A(int d = 0) : i(d) {}
|
||||||
|
A(const A& a) : i(a.i) {}
|
||||||
|
A(const volatile A& a) : i(a.i) {}
|
||||||
|
|
||||||
|
void operator=(const volatile A& a) volatile {i = a.i;}
|
||||||
|
|
||||||
|
friend bool operator==(const A& x, const A& y)
|
||||||
|
{return x.i == y.i;}
|
||||||
|
};
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
testp<int*>();
|
||||||
|
testp<const int*>();
|
||||||
|
}
|
@ -0,0 +1,111 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_add_explicit(volatile atomic<Integral>* obj, Integral op,
|
||||||
|
// memory_order m);
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_add_explicit(atomic<Integral>* obj, Integral op,
|
||||||
|
// memory_order m);
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_add_explicit(volatile atomic<T*>* obj, ptrdiff_t op,
|
||||||
|
// memory_order m);
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_add_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_add_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_add_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
testp()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_add_explicit(&t, 2,
|
||||||
|
std::memory_order_seq_cst) == T(1*sizeof(X)));
|
||||||
|
assert(t == T(3*sizeof(X)));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(1*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_add_explicit(&t, 2,
|
||||||
|
std::memory_order_seq_cst) == T(1*sizeof(X)));
|
||||||
|
assert(t == T(3*sizeof(X)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
explicit A(int d = 0) : i(d) {}
|
||||||
|
A(const A& a) : i(a.i) {}
|
||||||
|
A(const volatile A& a) : i(a.i) {}
|
||||||
|
|
||||||
|
void operator=(const volatile A& a) volatile {i = a.i;}
|
||||||
|
|
||||||
|
friend bool operator==(const A& x, const A& y)
|
||||||
|
{return x.i == y.i;}
|
||||||
|
};
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
testp<int*>();
|
||||||
|
testp<const int*>();
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_and(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_and(atomic<Integral>* obj, Integral op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_and(&t, T(2)) == T(1));
|
||||||
|
assert(t == T(0));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_and(&t, T(2)) == T(3));
|
||||||
|
assert(t == T(2));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_and_explicit(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_and_explicit(atomic<Integral>* obj, Integral op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_and_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(1));
|
||||||
|
assert(t == T(0));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_and_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(3));
|
||||||
|
assert(t == T(2));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_or(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_or(atomic<Integral>* obj, Integral op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_or(&t, T(2)) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_or(&t, T(2)) == T(3));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_or_explicit(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_or_explicit(atomic<Integral>* obj, Integral op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_or_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_or_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(3));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
}
|
@ -0,0 +1,107 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_sub(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_sub(atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_sub(volatile atomic<T*>* obj, ptrdiff_t op);
|
||||||
|
//
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_sub(atomic<T*>* obj, ptrdiff_t op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_sub(&t, T(2)) == T(3));
|
||||||
|
assert(t == T(1));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_sub(&t, T(2)) == T(3));
|
||||||
|
assert(t == T(1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
testp()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(3*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_sub(&t, 2) == T(3*sizeof(X)));
|
||||||
|
assert(t == T(1*sizeof(X)));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_sub(&t, 2) == T(3*sizeof(X)));
|
||||||
|
assert(t == T(1*sizeof(X)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
explicit A(int d = 0) : i(d) {}
|
||||||
|
A(const A& a) : i(a.i) {}
|
||||||
|
A(const volatile A& a) : i(a.i) {}
|
||||||
|
|
||||||
|
void operator=(const volatile A& a) volatile {i = a.i;}
|
||||||
|
|
||||||
|
friend bool operator==(const A& x, const A& y)
|
||||||
|
{return x.i == y.i;}
|
||||||
|
};
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
testp<int*>();
|
||||||
|
testp<const int*>();
|
||||||
|
}
|
@ -0,0 +1,112 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_sub_explicit(volatile atomic<Integral>* obj, Integral op,
|
||||||
|
// memory_order m);
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_sub_explicit(atomic<Integral>* obj, Integral op,
|
||||||
|
// memory_order m);
|
||||||
|
//
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_sub_explicit(volatile atomic<T*>* obj, ptrdiff_t op,
|
||||||
|
// memory_order m);
|
||||||
|
// template <class T>
|
||||||
|
// T*
|
||||||
|
// atomic_fetch_sub_explicit(atomic<T*>* obj, ptrdiff_t op, memory_order m);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_sub_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(3));
|
||||||
|
assert(t == T(1));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_sub_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(3));
|
||||||
|
assert(t == T(1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
testp()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(3*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_sub_explicit(&t, 2,
|
||||||
|
std::memory_order_seq_cst) == T(3*sizeof(X)));
|
||||||
|
assert(t == T(1*sizeof(X)));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
typedef typename std::remove_pointer<T>::type X;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3*sizeof(X)));
|
||||||
|
assert(std::atomic_fetch_sub_explicit(&t, 2,
|
||||||
|
std::memory_order_seq_cst) == T(3*sizeof(X)));
|
||||||
|
assert(t == T(1*sizeof(X)));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
struct A
|
||||||
|
{
|
||||||
|
int i;
|
||||||
|
|
||||||
|
explicit A(int d = 0) : i(d) {}
|
||||||
|
A(const A& a) : i(a.i) {}
|
||||||
|
A(const volatile A& a) : i(a.i) {}
|
||||||
|
|
||||||
|
void operator=(const volatile A& a) volatile {i = a.i;}
|
||||||
|
|
||||||
|
friend bool operator==(const A& x, const A& y)
|
||||||
|
{return x.i == y.i;}
|
||||||
|
};
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
testp<int*>();
|
||||||
|
testp<const int*>();
|
||||||
|
}
|
@ -0,0 +1,61 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_xor(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_xor(atomic<Integral>* obj, Integral op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_xor(&t, T(2)) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_xor(&t, T(2)) == T(3));
|
||||||
|
assert(t == T(1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
}
|
@ -0,0 +1,63 @@
|
|||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
//
|
||||||
|
// The LLVM Compiler Infrastructure
|
||||||
|
//
|
||||||
|
// This file is dual licensed under the MIT and the University of Illinois Open
|
||||||
|
// Source Licenses. See LICENSE.TXT for details.
|
||||||
|
//
|
||||||
|
//===----------------------------------------------------------------------===//
|
||||||
|
|
||||||
|
// <atomic>
|
||||||
|
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_xor_explicit(volatile atomic<Integral>* obj, Integral op);
|
||||||
|
//
|
||||||
|
// template <class Integral>
|
||||||
|
// Integral
|
||||||
|
// atomic_fetch_xor_explicit(atomic<Integral>* obj, Integral op);
|
||||||
|
|
||||||
|
#include <atomic>
|
||||||
|
#include <cassert>
|
||||||
|
|
||||||
|
template <class T>
|
||||||
|
void
|
||||||
|
test()
|
||||||
|
{
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
A t;
|
||||||
|
std::atomic_init(&t, T(1));
|
||||||
|
assert(std::atomic_fetch_xor_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(1));
|
||||||
|
assert(t == T(3));
|
||||||
|
}
|
||||||
|
{
|
||||||
|
typedef std::atomic<T> A;
|
||||||
|
volatile A t;
|
||||||
|
std::atomic_init(&t, T(3));
|
||||||
|
assert(std::atomic_fetch_xor_explicit(&t, T(2),
|
||||||
|
std::memory_order_seq_cst) == T(3));
|
||||||
|
assert(t == T(1));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
int main()
|
||||||
|
{
|
||||||
|
test<char>();
|
||||||
|
test<signed char>();
|
||||||
|
test<unsigned char>();
|
||||||
|
test<short>();
|
||||||
|
test<unsigned short>();
|
||||||
|
test<int>();
|
||||||
|
test<unsigned int>();
|
||||||
|
test<long>();
|
||||||
|
test<unsigned long>();
|
||||||
|
test<long long>();
|
||||||
|
test<unsigned long long>();
|
||||||
|
test<wchar_t>();
|
||||||
|
#ifndef _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
test<char16_t>();
|
||||||
|
test<char32_t>();
|
||||||
|
#endif // _LIBCPP_HAS_NO_UNICODE_CHARS
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user