~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to drizzled/atomic/gcc_traits.h

  • Committer: Monty Taylor
  • Date: 2008-12-06 22:41:03 UTC
  • mto: (656.1.7 devel)
  • mto: This revision was merged to the branch mainline in revision 665.
  • Revision ID: monty@inaugust.com-20081206224103-jdouqwt9hb0f01y1
Moved non-working tests into broken suite for easier running of working tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
/* -*- mode: c++; c-basic-offset: 2; indent-tabs-mode: nil; -*-
2
 
 *  vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3
 
 *
4
 
 *  Copyright (C) 2009 Sun Microsystems, Inc.
5
 
 *
6
 
 *  This program is free software; you can redistribute it and/or modify
7
 
 *  it under the terms of the GNU General Public License as published by
8
 
 *  the Free Software Foundation; version 2 of the License.
9
 
 *
10
 
 *  This program is distributed in the hope that it will be useful,
11
 
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
12
 
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13
 
 *  GNU General Public License for more details.
14
 
 *
15
 
 *  You should have received a copy of the GNU General Public License
16
 
 *  along with this program; if not, write to the Free Software
17
 
 *  Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
18
 
 */
19
 
 
20
 
#ifndef DRIZZLED_ATOMIC_GCC_TRAITS_H
21
 
#define DRIZZLED_ATOMIC_GCC_TRAITS_H
22
 
 
23
 
namespace drizzled {
24
 
namespace internal {
25
 
 
26
 
template<typename T, typename D>
27
 
class gcc_traits
28
 
{
29
 
 
30
 
public:
31
 
  typedef T value_type;
32
 
 
33
 
  gcc_traits() {}
34
 
 
35
 
  inline value_type add_and_fetch(volatile value_type *value, D addend )
36
 
  {
37
 
    return __sync_add_and_fetch(value, addend);
38
 
  }
39
 
 
40
 
  inline value_type fetch_and_add(volatile value_type *value, D addend )
41
 
  {
42
 
    return __sync_fetch_and_add(value, addend);
43
 
  }
44
 
 
45
 
  inline value_type fetch_and_increment(volatile value_type *value)
46
 
  {
47
 
    return __sync_fetch_and_add(value, 1);
48
 
  }
49
 
 
50
 
  inline value_type fetch_and_decrement(volatile value_type *value)
51
 
  {
52
 
    return __sync_fetch_and_sub(value, 1);
53
 
  }
54
 
 
55
 
  inline value_type fetch_and_store(volatile value_type *value,
56
 
                                    value_type new_value)
57
 
  {
58
 
    return __sync_lock_test_and_set(value, new_value);
59
 
  }
60
 
 
61
 
  inline bool compare_and_swap(volatile value_type *value,
62
 
                                     value_type new_value,
63
 
                                     value_type comparand )
64
 
  {
65
 
    return __sync_bool_compare_and_swap(value, comparand, new_value);
66
 
  }
67
 
 
68
 
  inline value_type fetch(const volatile value_type *value) const volatile
69
 
  {
70
 
    /* 
71
 
     * This is necessary to ensure memory barriers are respected when
72
 
     * simply returning the value pointed at.  However, this does not
73
 
     * compile on ICC.
74
 
     *
75
 
     * @todo
76
 
     *
77
 
     * Look at how to rewrite the below to something that ICC feels is
78
 
     * OK and yet respects memory barriers.
79
 
     */
80
 
    return __sync_fetch_and_add(const_cast<value_type *>(value), 0);
81
 
  }
82
 
 
83
 
  inline value_type store_with_release(volatile value_type *value,
84
 
                                       value_type new_value)
85
 
  {
86
 
    *value= new_value;
87
 
    return *value;
88
 
  }
89
 
 
90
 
}; /* gcc_traits */
91
 
 
92
 
 
93
 
} /* namespace internal */
94
 
} /* namespace drizzled */
95
 
 
96
 
#endif /* DRIZZLED_ATOMIC_GCC_TRAITS_H */