-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmymemory.cc
200 lines (174 loc) · 5.27 KB
/
mymemory.cc
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
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
#include <stdlib.h>
#include <stdio.h>
#include <dlfcn.h>
#include <unistd.h>
#include <string.h>
#include <new>
#include "mymemory.h"
#include "snapshot.h"
#include "common.h"
#include "threads-model.h"
#include "model.h"
#include "datarace.h"
#define REQUESTS_BEFORE_ALLOC 1024
size_t allocatedReqs[REQUESTS_BEFORE_ALLOC] = { 0 };
int nextRequest = 0;
int howManyFreed = 0;
mspace sStaticSpace = NULL;
/** Non-snapshotting calloc for our use. */
void *model_calloc(size_t count, size_t size)
{
return mspace_calloc(sStaticSpace, count, size);
}
/** Non-snapshotting malloc for our use. */
void *model_malloc(size_t size)
{
return mspace_malloc(sStaticSpace, size);
}
/** Non-snapshotting malloc for our use. */
void *model_realloc(void *ptr, size_t size)
{
return mspace_realloc(sStaticSpace, ptr, size);
}
/** @brief Snapshotting malloc, for use by model-checker (not user progs) */
void * snapshot_malloc(size_t size)
{
void *tmp = mspace_malloc(model_snapshot_space, size);
ASSERT(tmp);
return tmp;
}
/** @brief Snapshotting calloc, for use by model-checker (not user progs) */
void * snapshot_calloc(size_t count, size_t size)
{
void *tmp = mspace_calloc(model_snapshot_space, count, size);
ASSERT(tmp);
return tmp;
}
/** @brief Snapshotting realloc, for use by model-checker (not user progs) */
void *snapshot_realloc(void *ptr, size_t size)
{
void *tmp = mspace_realloc(model_snapshot_space, ptr, size);
ASSERT(tmp);
return tmp;
}
/** @brief Snapshotting free, for use by model-checker (not user progs) */
void snapshot_free(void *ptr)
{
mspace_free(model_snapshot_space, ptr);
}
/** Non-snapshotting free for our use. */
void model_free(void *ptr)
{
mspace_free(sStaticSpace, ptr);
}
/** Bootstrap allocation. Problem is that the dynamic linker calls require
* calloc to work and calloc requires the dynamic linker to work. */
#define BOOTSTRAPBYTES 131072
char bootstrapmemory[BOOTSTRAPBYTES];
size_t offset = 0;
void * HandleEarlyAllocationRequest(size_t sz)
{
/* Align to 8 byte boundary */
sz = (sz + 7) & ~7;
if (sz > (BOOTSTRAPBYTES-offset)) {
model_print("OUT OF BOOTSTRAP MEMORY. Increase the size of BOOTSTRAPBYTES in mymemory.cc\n");
exit(EXIT_FAILURE);
}
void *pointer = (void *)&bootstrapmemory[offset];
offset += sz;
return pointer;
}
/** @brief Global mspace reference for the model-checker's snapshotting heap */
mspace model_snapshot_space = NULL;
/** @brief Snapshotting allocation function for use by the Thread class only */
void * Thread_malloc(size_t size)
{
return snapshot_malloc(size);
}
/** @brief Snapshotting free function for use by the Thread class only */
void Thread_free(void *ptr)
{
snapshot_free(ptr);
}
void * (*volatile real_memcpy)(void * dst, const void *src, size_t n) = NULL;
void * (*volatile real_memmove)(void * dst, const void *src, size_t len) = NULL;
void (*volatile real_bzero)(void * dst, size_t len) = NULL;
void * (*volatile real_memset)(void * dst, int c, size_t len) = NULL;
void init_memory_ops()
{
if (!real_memcpy) {
real_memcpy = (void * (*)(void * dst, const void *src, size_t n)) 1;
real_memcpy = (void * (*)(void * dst, const void *src, size_t n))dlsym(RTLD_NEXT, "memcpy");
}
if (!real_memmove) {
real_memmove = (void * (*)(void * dst, const void *src, size_t n)) 1;
real_memmove = (void * (*)(void * dst, const void *src, size_t n))dlsym(RTLD_NEXT, "memmove");
}
if (!real_memset) {
real_memset = (void * (*)(void * dst, int c, size_t n)) 1;
real_memset = (void * (*)(void * dst, int c, size_t n))dlsym(RTLD_NEXT, "memset");
}
if (!real_bzero) {
real_bzero = (void (*)(void * dst, size_t len)) 1;
real_bzero = (void (*)(void * dst, size_t len))dlsym(RTLD_NEXT, "bzero");
}
}
void * memcpy(void * dst, const void * src, size_t n) {
if (model && !inside_model) {
//model_print("memcpy size: %d\n", n);
thread_id_t tid = thread_current_id();
raceCheckReadMemop(tid, (void *)src, n);
raceCheckWriteMemop(tid, (void *)dst, n);
} else if (((uintptr_t)real_memcpy) < 2) {
for(uint i=0;i<n;i++) {
((volatile char *)dst)[i] = ((char *)src)[i];
}
return dst;
}
return real_memcpy(dst, src, n);
}
void * memmove(void * dst, const void * src, size_t n) {
if (model && !inside_model) {
thread_id_t tid = thread_current_id();
raceCheckReadMemop(tid, (void *)src, n);
raceCheckWriteMemop(tid, (void *)dst, n);
} else if (((uintptr_t)real_memmove) < 2) {
if (((uintptr_t)dst) < ((uintptr_t)src))
for(uint i=0;i<n;i++) {
((volatile char *)dst)[i] = ((char *)src)[i];
}
else
for(uint i=n;i!=0; ) {
i--;
((volatile char *)dst)[i] = ((char *)src)[i];
}
return dst;
}
return real_memmove(dst, src, n);
}
void * memset(void *dst, int c, size_t n) {
if (model && !inside_model) {
//model_print("memset size: %d\n", n);
thread_id_t tid = thread_current_id();
raceCheckWriteMemop(tid, (void *)dst, n);
} else if (((uintptr_t)real_memset) < 2) {
//stuck in dynamic linker alloc cycle...
for(size_t s=0;s<n;s++) {
((volatile char *)dst)[s] = (char) c;
}
return dst;
}
return real_memset(dst, c, n);
}
void bzero(void *dst, size_t n) {
if (model && !inside_model) {
thread_id_t tid = thread_current_id();
raceCheckWriteMemop(tid, (void *)dst, n);
} else if (((uintptr_t)real_bzero) < 2) {
for(size_t s=0;s<n;s++) {
((volatile char *)dst)[s] = 0;
}
return;
}
real_bzero(dst, n);
}