-
Notifications
You must be signed in to change notification settings - Fork 42
/
skiplist.h
107 lines (88 loc) · 2.56 KB
/
skiplist.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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
/*
* File: skiplist.h
* Author: Vasileios Trigonakis <vasileios.trigonakis@epfl.ch>
* Description:
* skiplist.h is part of ASCYLIB
*
* Copyright (c) 2014 Vasileios Trigonakis <vasileios.trigonakis@epfl.ch>,
* Tudor David <tudor.david@epfl.ch>
* 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.
*
*/
#ifndef _SKIPLIST_H_
#define _SKIPLIST_H_
#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 <atomic_ops.h>
#include "atomic_ops_if.h"
#include "common.h"
#include "utils.h"
#include "ssalloc.h"
#include "ssmem.h"
#define DEFAULT_ELASTICITY 4
#define DEFAULT_ALTERNATE 0
#define DEFAULT_EFFECTIVE 1
extern unsigned int levelmax, size_pad_32;
extern __thread ssmem_allocator_t* alloc;
#define TRANSACTIONAL DEFAULT_ELASTICITY
typedef intptr_t level_t;
typedef volatile struct sl_node
{
skey_t key;
sval_t val;
uint32_t toplevel;
volatile struct sl_node* next[1];
#if defined(DO_PAD)
uint8_t padding[64 - 32];
#endif
} sl_node_t;
typedef ALIGNED(CACHE_LINE_SIZE) struct sl_intset
{
sl_node_t* head;
} sl_intset_t;
int get_rand_level();
int floor_log_2(unsigned int n);
sl_node_t* sl_new_simple_node(skey_t key, sval_t val, int toplevel, int transactional);
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 *set);
inline long rand_range(long r); /* declared in test.c */
static inline int
is_marked(uintptr_t i)
{
return (int)(i & (uintptr_t)0x01);
}
static inline uintptr_t
unset_mark(uintptr_t i)
{
return (i & ~(uintptr_t)0x01);
}
static inline uintptr_t
set_mark(uintptr_t i)
{
return (i | (uintptr_t)0x01);
}
#define GET_UNMARKED(p) (sl_node_t*) unset_mark((uintptr_t) (p))
#define GET_MARKED(p) set_mark((uintptr_t) (p))
#define IS_MARKED(p) is_marked((uintptr_t) (p))
#endif /* _SKIPLIST_H_ */