ticketlock model: state-space simplication
[urcu.git] / ticketlock / mem-progress.spin
CommitLineData
656c7dc1
MD
1/*
2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 2 of the License, or
5 * (at your option) any later version.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
15 *
16 * Copyright (c) 2009 Mathieu Desnoyers
17 */
18
19/* 16 CPUs max (byte has 8 bits, divided in two) */
20
21#ifndef CONFIG_BITS_PER_BYTE
22#define BITS_PER_BYTE 8
23#else
24// test progress failure with shorter byte size. Will fail with 5 proc.
25#define BITS_PER_BYTE CONFIG_BITS_PER_BYTE
26#endif
27
28#define HBPB (BITS_PER_BYTE / 2) /* 4 */
29#define HMASK ((1 << HBPB) - 1) /* 0x0F */
30
31/* for byte type */
32#define LOW_HALF(val) ((val) & HMASK)
33#define LOW_HALF_INC 1
34
35#define HIGH_HALF(val) ((val) & (HMASK << HBPB))
36#define HIGH_HALF_INC (1 << HBPB)
37
38byte lock = 0;
39byte refcount = 0;
40
41inline spin_lock(lock, ticket)
42{
43 atomic {
44 ticket = HIGH_HALF(lock) >> HBPB;
45 lock = lock + HIGH_HALF_INC; /* overflow expected */
46 }
47
d149fa02
MD
48 /* busy-wait */
49 LOW_HALF(lock) == ticket -> 1;
656c7dc1
MD
50}
51
52inline spin_unlock(lock)
53{
54 lock = HIGH_HALF(lock) | LOW_HALF(lock + LOW_HALF_INC);
55}
56
57proctype proc_A()
58{
59 byte ticket;
60
61 do
d149fa02 62 ::
656c7dc1 63 spin_lock(lock, ticket);
d149fa02 64progress_A:
656c7dc1
MD
65 refcount = refcount + 1;
66 refcount = refcount - 1;
67 spin_unlock(lock);
68 od;
69}
70
71proctype proc_B()
72{
73 byte ticket;
74
75 do
d149fa02 76 :: spin_lock(lock, ticket);
656c7dc1
MD
77 refcount = refcount + 1;
78 refcount = refcount - 1;
79 spin_unlock(lock);
80 od;
81}
82
83init
84{
85 run proc_A();
86 run proc_B();
87 run proc_B();
88 run proc_B();
89 run proc_B();
90}
This page took 0.025409 seconds and 4 git commands to generate.