ticketlock model: state-space simplication
[urcu.git] / ticketlock / mem-progress.spin
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
38 byte lock = 0;
39 byte refcount = 0;
40
41 inline spin_lock(lock, ticket)
42 {
43 atomic {
44 ticket = HIGH_HALF(lock) >> HBPB;
45 lock = lock + HIGH_HALF_INC; /* overflow expected */
46 }
47
48 /* busy-wait */
49 LOW_HALF(lock) == ticket -> 1;
50 }
51
52 inline spin_unlock(lock)
53 {
54 lock = HIGH_HALF(lock) | LOW_HALF(lock + LOW_HALF_INC);
55 }
56
57 proctype proc_A()
58 {
59 byte ticket;
60
61 do
62 ::
63 spin_lock(lock, ticket);
64 progress_A:
65 refcount = refcount + 1;
66 refcount = refcount - 1;
67 spin_unlock(lock);
68 od;
69 }
70
71 proctype proc_B()
72 {
73 byte ticket;
74
75 do
76 :: spin_lock(lock, ticket);
77 refcount = refcount + 1;
78 refcount = refcount - 1;
79 spin_unlock(lock);
80 od;
81 }
82
83 init
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.03139 seconds and 4 git commands to generate.