OpenCores
URL https://opencores.org/ocsvn/openrisc/openrisc/trunk

Subversion Repositories openrisc

[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [libstdc++-v3/] [testsuite/] [29_atomics/] [atomic/] [operators/] [pointer_partial_void.cc] - Blame information for rev 742

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 742 jeremybenn
// { dg-require-atomic-builtins "" }
2
// { dg-options "-std=gnu++0x" }
3
 
4
// Copyright (C) 2012 Free Software Foundation, Inc.
5
//
6
// This file is part of the GNU ISO C++ Library.  This library is free
7
// software; you can redistribute it and/or modify it under the
8
// terms of the GNU General Public License as published by the
9
// Free Software Foundation; either version 3, or (at your option)
10
// any later version.
11
 
12
// This library is distributed in the hope that it will be useful,
13
// but WITHOUT ANY WARRANTY; without even the implied warranty of
14
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15
// GNU General Public License for more details.
16
 
17
// You should have received a copy of the GNU General Public License along
18
// with this library; see the file COPYING3.  If not see
19
// <http://www.gnu.org/licenses/>.
20
 
21
#include <atomic>
22
#include <cstdlib> //std::abs
23
#include <testsuite_hooks.h>
24
 
25
// pointer arithimetic vs. atomic<void*>.
26
// atomic<void*> vs. explicitly specialized w/o operators, like atomic_bool?
27
int main(void)
28
{
29
  // bool test __attribute__((unused)) = true;
30
 
31
  using namespace std;
32
 
33
  typedef int   value_type;
34
  const size_t n = 2;
35
  value_type value = 42;
36
  value_type* p = &value;
37
  void* vp = p;
38
  ptrdiff_t dist(0);
39
 
40
  atomic<void*> a(vp);
41
 
42
  // operator++
43
  void* vp2(a);
44
  a++;
45
  void* vp3(a);
46
  dist = reinterpret_cast<char*>(vp2) - reinterpret_cast<char*>(vp3);
47
  // VERIFY ( std::abs(dist) == sizeof(void*));
48
 
49
  // operator--
50
  void* vp4(a);
51
  a--;
52
  void* vp5(a);
53
  dist = reinterpret_cast<char*>(vp4) - reinterpret_cast<char*>(vp5);
54
  // VERIFY ( std::abs(dist) == sizeof(void*));
55
 
56
  // operator+=
57
  void* vp6(a);
58
  a+=n;
59
  void* vp7(a);
60
  dist = reinterpret_cast<char*>(vp6) - reinterpret_cast<char*>(vp7);
61
  // VERIFY ( std::abs(dist) == sizeof(void*) * n);
62
 
63
  // operator-=
64
  void* vp8(a);
65
  a-=n;
66
  void* vp9(a);
67
  dist = reinterpret_cast<char*>(vp8) - reinterpret_cast<char*>(vp9);
68
  //VERIFY ( std::abs(dist) == sizeof(void*) * n);
69
 
70
  return 0;
71
}

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.