add uatomic_generic.h, use it for common definitions
[urcu.git] / urcu / arch_s390.h
... / ...
CommitLineData
1#ifndef _URCU_ARCH_S390_H
2#define _URCU_ARCH_S390_H
3
4/*
5 * Trivial definitions for the S390 architecture based on information from the
6 * Principles of Operation "CPU Serialization" (5-91), "BRANCH ON CONDITION"
7 * (7-25) and "STORE CLOCK" (7-169).
8 *
9 * Copyright (c) 2009 Novell, Inc.
10 * Author: Jan Blunck <jblunck@suse.de>
11 *
12 * Permission is hereby granted, free of charge, to any person obtaining a copy
13 * of this software and associated documentation files (the "Software"), to
14 * deal in the Software without restriction, including without limitation the
15 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
16 * sell copies of the Software, and to permit persons to whom the Software is
17 * furnished to do so, subject to the following conditions:
18 *
19 * The above copyright notice and this permission notice shall be included in
20 * all copies or substantial portions of the Software.
21 *
22 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
23 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
26 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
27 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
28 * IN THE SOFTWARE.
29 */
30
31#include <urcu/compiler.h>
32#include <urcu/config.h>
33
34#ifdef __cplusplus
35extern "C" {
36#endif
37
38#define CACHE_LINE_SIZE 128
39
40#ifndef __SIZEOF_LONG__
41#ifdef __s390x__
42#define __SIZEOF_LONG__ 8
43#else
44#define __SIZEOF_LONG__ 4
45#endif
46#endif
47
48#ifndef BITS_PER_LONG
49#define BITS_PER_LONG (__SIZEOF_LONG__ * 8)
50#endif
51
52#define mb() __asm__ __volatile__("bcr 15,0" : : : "memory")
53
54typedef unsigned long long cycles_t;
55
56static inline cycles_t get_cycles (void)
57{
58 cycles_t cycles;
59
60 __asm__ __volatile__("stck %0" : "=m" (cycles) : : "cc", "memory" );
61
62 return cycles;
63}
64
65#ifdef __cplusplus
66}
67#endif
68
69#include <urcu/arch_generic.h>
70
71#endif /* _URCU_ARCH_S390_H */
This page took 0.022864 seconds and 4 git commands to generate.