-
Notifications
You must be signed in to change notification settings - Fork 42
/
skiplist-lock.h
93 lines (81 loc) · 2.4 KB
/
skiplist-lock.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
/*
* File: skiplist-lock.h
* Author: Vincent Gramoli <[email protected]>,
* Vasileios Trigonakis <[email protected]>
* Description:
* skiplist-lock.h is part of ASCYLIB
*
* Copyright (c) 2014 Vasileios Trigonakis <[email protected]>,
* Tudor David <[email protected]>
* Distributed Programming Lab (LPD), EPFL
*
* ASCYLIB is free software: you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* as published by the Free Software Foundation, version 2
* of the License.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
*/
#include <assert.h>
#include <getopt.h>
#include <limits.h>
#include <pthread.h>
#include <signal.h>
#include <stdlib.h>
#include <stdio.h>
#include <sys/time.h>
#include <time.h>
#include <stdint.h>
#include "common.h"
#include <atomic_ops.h>
#include "lock_if.h"
#include "ssmem.h"
#define DEFAULT_ELASTICITY 4
#define DEFAULT_ALTERNATE 0
#define DEFAULT_EFFECTIVE 1
#define ALGO_HERLIHY 1
#define ALGO_PUGH 2
extern unsigned int global_seed;
extern __thread ssmem_allocator_t* alloc;
extern unsigned int levelmax, size_pad_32;
typedef volatile struct sl_node
{
skey_t key;
sval_t val;
uint32_t toplevel;
volatile uint32_t marked;
volatile uint32_t fullylinked;
#if !defined(LL_GLOBAL_LOCK) && PTLOCK_SIZE < 64 /* fixing crash */
volatile uint32_t padding;
#endif
#if !defined(LL_GLOBAL_LOCK)
ptlock_t lock;
#endif
volatile struct sl_node* next[1];
} sl_node_t;
typedef ALIGNED(CACHE_LINE_SIZE) struct sl_intset
{
sl_node_t *head;
#if defined(LL_GLOBAL_LOCK)
volatile ptlock_t* lock;
#endif
} sl_intset_t;
int get_rand_level();
int floor_log_2(unsigned int n);
/*
* Create a new node without setting its next fields.
*/
sl_node_t* sl_new_simple_node(skey_t key, sval_t val, int toplevel, int transactional);
/*
* Create a new node with its next field.
* If next=NULL, then this create a tail node.
*/
sl_node_t *sl_new_node(skey_t key, sval_t val, sl_node_t *next, int toplevel, int transactional);
void sl_delete_node(sl_node_t* n);
sl_intset_t* sl_set_new();
void sl_set_delete(sl_intset_t* set);
int sl_set_size(sl_intset_t* cset);