| // { dg-do run } |
| // Test that template class iterators and imperfectly-nested loops |
| // work together. |
| // This variant tests initialization by assignment. |
| |
| typedef __PTRDIFF_TYPE__ ptrdiff_t; |
| extern "C" void abort (); |
| |
| template <typename T> |
| class I |
| { |
| public: |
| typedef ptrdiff_t difference_type; |
| I (); |
| ~I (); |
| I (T *); |
| I (const I &); |
| T &operator * (); |
| T *operator -> (); |
| T &operator [] (const difference_type &) const; |
| I &operator = (const I &); |
| I &operator ++ (); |
| I operator ++ (int); |
| I &operator -- (); |
| I operator -- (int); |
| I &operator += (const difference_type &); |
| I &operator -= (const difference_type &); |
| I operator + (const difference_type &) const; |
| I operator - (const difference_type &) const; |
| template <typename S> friend bool operator == (I<S> &, I<S> &); |
| template <typename S> friend bool operator == (const I<S> &, const I<S> &); |
| template <typename S> friend bool operator < (I<S> &, I<S> &); |
| template <typename S> friend bool operator < (const I<S> &, const I<S> &); |
| template <typename S> friend bool operator <= (I<S> &, I<S> &); |
| template <typename S> friend bool operator <= (const I<S> &, const I<S> &); |
| template <typename S> friend bool operator > (I<S> &, I<S> &); |
| template <typename S> friend bool operator > (const I<S> &, const I<S> &); |
| template <typename S> friend bool operator >= (I<S> &, I<S> &); |
| template <typename S> friend bool operator >= (const I<S> &, const I<S> &); |
| template <typename S> friend typename I<S>::difference_type operator - (I<S> &, I<S> &); |
| template <typename S> friend typename I<S>::difference_type operator - (const I<S> &, const I<S> &); |
| template <typename S> friend I<S> operator + (typename I<S>::difference_type , const I<S> &); |
| private: |
| T *p; |
| }; |
| template <typename T> I<T>::I () : p (0) {} |
| template <typename T> I<T>::~I () { p = (T *) 0; } |
| template <typename T> I<T>::I (T *x) : p (x) {} |
| template <typename T> I<T>::I (const I &x) : p (x.p) {} |
| template <typename T> T &I<T>::operator * () { return *p; } |
| template <typename T> T *I<T>::operator -> () { return p; } |
| template <typename T> T &I<T>::operator [] (const difference_type &x) const { return p[x]; } |
| template <typename T> I<T> &I<T>::operator = (const I &x) { p = x.p; return *this; } |
| template <typename T> I<T> &I<T>::operator ++ () { ++p; return *this; } |
| template <typename T> I<T> I<T>::operator ++ (int) { return I (p++); } |
| template <typename T> I<T> &I<T>::operator -- () { --p; return *this; } |
| template <typename T> I<T> I<T>::operator -- (int) { return I (p--); } |
| template <typename T> I<T> &I<T>::operator += (const difference_type &x) { p += x; return *this; } |
| template <typename T> I<T> &I<T>::operator -= (const difference_type &x) { p -= x; return *this; } |
| template <typename T> I<T> I<T>::operator + (const difference_type &x) const { return I (p + x); } |
| template <typename T> I<T> I<T>::operator - (const difference_type &x) const { return I (p - x); } |
| template <typename T> bool operator == (I<T> &x, I<T> &y) { return x.p == y.p; } |
| template <typename T> bool operator == (const I<T> &x, const I<T> &y) { return x.p == y.p; } |
| template <typename T> bool operator != (I<T> &x, I<T> &y) { return !(x == y); } |
| template <typename T> bool operator != (const I<T> &x, const I<T> &y) { return !(x == y); } |
| template <typename T> bool operator < (I<T> &x, I<T> &y) { return x.p < y.p; } |
| template <typename T> bool operator < (const I<T> &x, const I<T> &y) { return x.p < y.p; } |
| template <typename T> bool operator <= (I<T> &x, I<T> &y) { return x.p <= y.p; } |
| template <typename T> bool operator <= (const I<T> &x, const I<T> &y) { return x.p <= y.p; } |
| template <typename T> bool operator > (I<T> &x, I<T> &y) { return x.p > y.p; } |
| template <typename T> bool operator > (const I<T> &x, const I<T> &y) { return x.p > y.p; } |
| template <typename T> bool operator >= (I<T> &x, I<T> &y) { return x.p >= y.p; } |
| template <typename T> bool operator >= (const I<T> &x, const I<T> &y) { return x.p >= y.p; } |
| template <typename T> typename I<T>::difference_type operator - (I<T> &x, I<T> &y) { return x.p - y.p; } |
| template <typename T> typename I<T>::difference_type operator - (const I<T> &x, const I<T> &y) { return x.p - y.p; } |
| template <typename T> I<T> operator + (typename I<T>::difference_type x, const I<T> &y) { return I<T> (x + y.p); } |
| |
| template <typename T> |
| class J |
| { |
| public: |
| J(const I<T> &x, const I<T> &y) : b (x), e (y) {} |
| const I<T> &begin (); |
| const I<T> &end (); |
| private: |
| I<T> b, e; |
| }; |
| |
| template <typename T> const I<T> &J<T>::begin () { return b; } |
| template <typename T> const I<T> &J<T>::end () { return e; } |
| |
| static int f1count[3], f2count[3]; |
| |
| #ifndef __cplusplus |
| extern void abort (void); |
| #else |
| extern "C" void abort (void); |
| #endif |
| |
| void f1 (int depth) |
| { |
| f1count[depth]++; |
| } |
| |
| void f2 (int depth) |
| { |
| f2count[depth]++; |
| } |
| |
| template <typename T> |
| void s1 (J<T> a1, J<T> a2, J<T> a3) |
| { |
| I<T> i, j, k; |
| |
| #pragma omp for collapse(3) |
| for (i = a1.begin (); i < a1.end (); i++) |
| { |
| f1 (0); |
| for (j = a2.begin (); j < a2.end (); j++) |
| { |
| f1 (1); |
| for (k = a3.begin (); k < a3.end (); k++) |
| { |
| f1 (2); |
| f2 (2); |
| } |
| f2 (1); |
| } |
| f2 (0); |
| } |
| } |
| |
| |
| int |
| main (void) |
| { |
| |
| int index[] = {0, 1, 2, 3, 4, 5}; |
| |
| J<int> x (&index[0], &index[3]); |
| J<int> y (&index[0], &index[4]); |
| J<int> z (&index[0], &index[5]); |
| |
| f1count[0] = 0; |
| f1count[1] = 0; |
| f1count[2] = 0; |
| f2count[0] = 0; |
| f2count[1] = 0; |
| f2count[2] = 0; |
| |
| s1<int> (x, y, z); |
| |
| /* All intervening code at the same depth must be executed the same |
| number of times. */ |
| if (f1count[0] != f2count[0]) abort (); |
| if (f1count[1] != f2count[1]) abort (); |
| if (f1count[2] != f2count[2]) abort (); |
| |
| /* Intervening code must be executed at least as many times as the loop |
| that encloses it. */ |
| if (f1count[0] < 3) abort (); |
| if (f1count[1] < 3 * 4) abort (); |
| |
| /* Intervening code must not be executed more times than the number |
| of logical iterations. */ |
| if (f1count[0] > 3 * 4 * 5) abort (); |
| if (f1count[1] > 3 * 4 * 5) abort (); |
| |
| /* Check that the innermost loop body is executed exactly the number |
| of logical iterations expected. */ |
| if (f1count[2] != 3 * 4 * 5) abort (); |
| } |