~ubuntu-branches/ubuntu/maverick/libdrm/maverick-proposed

« back to all changes in this revision

Viewing changes to intel/intel_atomic.h

  • Committer: Bazaar Package Importer
  • Author(s): Timo Aaltonen
  • Date: 2010-01-09 00:00:29 UTC
  • mfrom: (1.3.3 upstream)
  • mto: (2.2.9 experimental)
  • mto: This revision was merged to the branch mainline in revision 39.
  • Revision ID: james.westby@ubuntu.com-20100109000029-yhmol07llcxuzk0c
Tags: upstream-2.4.17
Import upstream version 2.4.17

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright © 2009 Intel Corporation
 
3
 *
 
4
 * Permission is hereby granted, free of charge, to any person obtaining a
 
5
 * copy of this software and associated documentation files (the "Software"),
 
6
 * to deal in the Software without restriction, including without limitation
 
7
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 
8
 * and/or sell copies of the Software, and to permit persons to whom the
 
9
 * Software is furnished to do so, subject to the following conditions:
 
10
 *
 
11
 * The above copyright notice and this permission notice (including the next
 
12
 * paragraph) shall be included in all copies or substantial portions of the
 
13
 * Software.
 
14
 *
 
15
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 
16
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 
17
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 
18
 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
 
19
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
 
20
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
 
21
 * IN THE SOFTWARE.
 
22
 *
 
23
 * Authors:
 
24
 *    Chris Wilson <chris@chris-wilson.co.uk>
 
25
 *
 
26
 */
 
27
 
 
28
/**
 
29
 * @file intel_atomics.h
 
30
 *
 
31
 * Private definitions for atomic operations
 
32
 */
 
33
 
 
34
#ifndef INTEL_ATOMICS_H
 
35
#define INTEL_ATOMICS_H
 
36
 
 
37
#ifdef HAVE_CONFIG_H
 
38
#include "config.h"
 
39
#endif
 
40
 
 
41
#if HAVE_INTEL_ATOMIC_PRIMITIVES
 
42
 
 
43
#define HAS_ATOMIC_OPS 1
 
44
 
 
45
typedef struct {
 
46
        int atomic;
 
47
} atomic_t;
 
48
 
 
49
# define atomic_read(x) ((x)->atomic)
 
50
# define atomic_set(x, val) ((x)->atomic = (val))
 
51
# define atomic_inc(x) ((void) __sync_fetch_and_add (&(x)->atomic, 1))
 
52
# define atomic_dec_and_test(x) (__sync_fetch_and_add (&(x)->atomic, -1) == 1)
 
53
# define atomic_cmpxchg(x, oldv, newv) __sync_val_compare_and_swap (&(x)->atomic, oldv, newv)
 
54
 
 
55
#endif
 
56
 
 
57
#if HAVE_LIB_ATOMIC_OPS
 
58
#include <atomic_ops.h>
 
59
 
 
60
#define HAS_ATOMIC_OPS 1
 
61
 
 
62
typedef struct {
 
63
        AO_t atomic;
 
64
} atomic_t;
 
65
 
 
66
# define atomic_read(x) AO_load_full(&(x)->atomic)
 
67
# define atomic_set(x, val) AO_store_full(&(x)->atomic, (val))
 
68
# define atomic_inc(x) ((void) AO_fetch_and_add1_full(&(x)->atomic))
 
69
# define atomic_dec_and_test(x) (AO_fetch_and_sub1_full(&(x)->atomic) == 1)
 
70
# define atomic_cmpxchg(x, oldv, newv) AO_compare_and_swap_full(&(x)->atomic, oldv, newv)
 
71
 
 
72
#endif
 
73
 
 
74
#if ! HAS_ATOMIC_OPS
 
75
#error libdrm-intel requires atomic operations, please define them for your CPU/compiler.
 
76
#endif
 
77
 
 
78
#endif