~ubuntu-branches/ubuntu/quantal/libgc/quantal

« back to all changes in this revision

Viewing changes to libatomic_ops-1.2/src/atomic_ops/sysdeps/read_ordered.h

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Egger
  • Date: 2011-02-19 12:19:56 UTC
  • mfrom: (1.3.2 upstream) (0.1.5 experimental)
  • mto: This revision was merged to the branch mainline in revision 14.
  • Revision ID: james.westby@ubuntu.com-20110219121956-67rb69xlt5nud3v2
Tags: 1:7.1-5
Upload to unstable

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (c) 2003 by Hewlett-Packard Company.  All rights reserved.
 
3
 * 
 
4
 * Permission is hereby granted, free of charge, to any person obtaining a copy
 
5
 * of this software and associated documentation files (the "Software"), to deal
 
6
 * in the Software without restriction, including without limitation the rights
 
7
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
 
8
 * copies of the Software, and to permit persons to whom the Software is
 
9
 * furnished to do so, subject to the following conditions:
 
10
 * 
 
11
 * The above copyright notice and this permission notice shall be included in
 
12
 * all copies or substantial portions of the Software.
 
13
 * 
 
14
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
15
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
16
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
 
17
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
18
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
 
19
 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
 
20
 * SOFTWARE. 
 
21
 */ 
 
22
 
 
23
/*
 
24
 * These are common definitions for architectures that provide processor
 
25
 * ordered memory operations except that a later read may pass an
 
26
 * earlier write.  Real x86 implementations seem to be in this category,
 
27
 * except apparently for some IDT WinChips, which we ignore.
 
28
 */
 
29
 
 
30
AO_INLINE void
 
31
AO_nop_read()
 
32
{
 
33
  AO_compiler_barrier();
 
34
}
 
35
 
 
36
#define AO_HAVE_NOP_READ
 
37
 
 
38
#ifdef AO_HAVE_load
 
39
 
 
40
AO_INLINE AO_t
 
41
AO_load_read(volatile AO_t *addr)
 
42
{
 
43
  AO_t result = AO_load(addr);
 
44
  AO_compiler_barrier();
 
45
  return result;
 
46
}
 
47
#define AO_HAVE_load_read
 
48
 
 
49
#define AO_load_acquire(addr) AO_load_read(addr)
 
50
#define AO_HAVE_load_acquire
 
51
 
 
52
#endif /* AO_HAVE_load */
 
53
 
 
54
#ifdef AO_HAVE_char_load
 
55
 
 
56
AO_INLINE AO_t
 
57
AO_char_load_read(volatile unsigned char *addr)
 
58
{
 
59
  AO_t result = AO_char_load(addr);
 
60
  AO_compiler_barrier();
 
61
  return result;
 
62
}
 
63
#define AO_HAVE_char_load_read
 
64
 
 
65
#define AO_char_load_acquire(addr) AO_char_load_read(addr)
 
66
#define AO_HAVE_char_load_acquire
 
67
 
 
68
#endif /* AO_HAVE_char_load */
 
69
 
 
70
#ifdef AO_HAVE_short_load
 
71
 
 
72
AO_INLINE AO_t
 
73
AO_short_load_read(volatile unsigned short *addr)
 
74
{
 
75
  AO_t result = AO_short_load(addr);
 
76
  AO_compiler_barrier();
 
77
  return result;
 
78
}
 
79
#define AO_HAVE_short_load_read
 
80
 
 
81
#define AO_short_load_acquire(addr) AO_short_load_read(addr)
 
82
#define AO_HAVE_short_load_acquire
 
83
 
 
84
#endif /* AO_HAVE_short_load */
 
85
 
 
86
#ifdef AO_HAVE_int_load
 
87
 
 
88
AO_INLINE AO_t
 
89
AO_int_load_read(volatile unsigned int *addr)
 
90
{
 
91
  AO_t result = AO_int_load(addr);
 
92
  AO_compiler_barrier();
 
93
  return result;
 
94
}
 
95
#define AO_HAVE_int_load_read
 
96
 
 
97
#define AO_int_load_acquire(addr) AO_int_load_read(addr)
 
98
#define AO_HAVE_int_load_acquire
 
99
 
 
100
#endif /* AO_HAVE_int_load */
 
101
 
 
102