-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathMakefile
273 lines (196 loc) · 8.15 KB
/
Makefile
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
###############################################################################
# Makefile to build Binaries for the ASPLOS'20 Artifact Evaluation
#
# Paper: Mitosis - Mitosis: Transparently Self-Replicating Page-Tables
# for Large-Memory Machines
# Authors: Reto Achermann, Jayneel Gandhi, Timothy Roscoe,
# Abhishek Bhattacharjee, and Ashish Panwar
###############################################################################
all: mitosis-linux mitosis-linux.deb mitosis-numactl mitosis-perf \
btree canneal graph500 gups hashjoin liblinear pagerank redis \
xsbench memops memcached
linux: mitosis-linux mitosis-linux.deb mitosis-numactl mitosis-perf \
mitosis-page-table-dump
workloads: btree canneal graph500 gups hashjoin liblinear pagerank redis \
xsbench memops memcached
CC = gcc
NPROCS:=1
OS:=$(shell uname -s)
ifeq ($J,)
ifeq ($(OS),Linux)
NPROCS := $(shell nproc)
else ifeq ($(OS),Darwin)
NPROCS := $(shell system_profiler | awk '/Number of CPUs/ {print $$4}{next;}')
endif # $(OS)
else
NPROCS := $J
endif
###############################################################################
# Docker Image
###############################################################################
IMAGE=asplos20-mitosis-dockerimage
USER:=$(shell id -u)
docker-image : docker/Dockerfile
docker build -t $(IMAGE) docker
docker-shell: docker-image
docker run -u $(USER) -i -t \
--mount type=bind,source=$(CURDIR),target=/source \
$(IMAGE)
docker-compile: docker-image
docker run -u $(USER) -i -t \
--mount type=bind,source=$(CURDIR),target=/source \
$(IMAGE) "make -j $(NPROCS)"
###############################################################################
# mitosis-linux
###############################################################################
LDEPS=sources/mitosis-linux/README
sources/mitosis-linux/README:
echo "initialized git submodules"
git submodule init
git submodule update
sources/mitosis-linux/.config: $(LDEPS) sources/mitosis-linux.config
cp sources/mitosis-linux.config sources/mitosis-linux/.config
mitosis-linux: $(LDEPS) sources/mitosis-linux/.config
+$(MAKE) EXTRAVERSION=-mitosis ARCH=x86_64 CC=$(CC) \
-C sources/mitosis-linux
cp sources/mitosis-linux/arch/x86_64/boot/bzImage build
cp sources/mitosis-linux/vmlinux build
mitosis-linux.deb: $(LDEPS) sources/mitosis-linux/.config
(cd sources/mitosis-linux && \
MAKEFLAGS= MFLAGS= CC=$(CC) fakeroot make-kpkg -j $(NPROCS) \
--initrd --append-to-version=-mitosis kernel_image kernel_headers)
cp sources/*.deb build
mitosis-perf:
+$(MAKE) EXTRAVERSION=-mitosis ARCH=x86_64 CC=$(CC) \
-C sources/mitosis-linux/tools/perf
cp sources/mitosis-linux/tools/perf/perf build
###############################################################################
# mitosis-numactl
###############################################################################
NDEPS=sources/mitosis-workloads/README.md
sources/mitosis-numactl/README.md :
echo "initialized git submodules"
git submodule init
git submodule update
sources/mitosis-numactl/configure:
(cd sources/mitosis-numactl && ./autogen.sh)
sources/mitosis-numactl/Makefile: sources/mitosis-numactl/configure
(cd sources/mitosis-numactl && ./configure)
mitosis-numactl: $(NDEPS) sources/mitosis-numactl/Makefile
+$(MAKE) -C sources/mitosis-numactl
cp sources/mitosis-numactl/.libs/libnuma.la build
cp sources/mitosis-numactl/.libs/libnuma.so* build
cp sources/mitosis-numactl/.libs/numactl build
###############################################################################
# Page Table Dumping tool
###############################################################################
mitosis-page-table-dump :
+$(MAKE) -C sources/mitosis-page-table-dump
cp sources/mitosis-page-table-dump/bin/* build
install-lkml:
insmod bin/page-table-dump.ko
uninstall-lkml:
rmmod bin/page-table-dump.ko
update-lkml:
rmmod bin/page-table-dump.ko
insmod bin/page-table-dump.ko
###############################################################################
# Workloads
###############################################################################
WORKLOADS=sources/mitosis-workloads
WDEPS=sources/mitosis-workloads/README.md
sources/mitosis-workloads/README.md:
echo "initialized git submodules"
git submodule init
git submodule update
###############################################################################
# BTree
###############################################################################
btree : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) btree
cp $(WORKLOADS)/bin/bench_btree_st build
cp $(WORKLOADS)/bin/bench_btree_mt build
cp $(WORKLOADS)/bin/bench_btree_dump build
###############################################################################
# Canneal
###############################################################################
canneal : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) canneal
cp $(WORKLOADS)/bin/bench_canneal_st build
cp $(WORKLOADS)/bin/bench_canneal_mt build
###############################################################################
# Graph500
###############################################################################
graph500 : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) graph500
cp $(WORKLOADS)/bin/bench_graph500_mt build
cp $(WORKLOADS)/bin/bench_graph500_st build
###############################################################################
# Gups
###############################################################################
gups : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) gups
cp $(WORKLOADS)/bin/bench_gups_st build
cp $(WORKLOADS)/bin/bench_gups_toy build
###############################################################################
# HashJoin
###############################################################################
hashjoin : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) hashjoin
cp $(WORKLOADS)/bin/bench_hashjoin_st build
cp $(WORKLOADS)/bin/bench_hashjoin_mt build
cp $(WORKLOADS)/bin/bench_hashjoin_dump build
###############################################################################
# LibLinear
###############################################################################
liblinear : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) liblinear
cp $(WORKLOADS)/bin/bench_liblinear_mt build
###############################################################################
# PageRank
###############################################################################
pagerank : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) pagerank
cp $(WORKLOADS)/bin/bench_pagerank_mt build
###############################################################################
# Redis
###############################################################################
redis : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) redis
cp $(WORKLOADS)/bin/bench_redis_st build
###############################################################################
# XSBench
###############################################################################
xsbench : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) xsbench
cp $(WORKLOADS)/bin/bench_xsbench_mt build
cp $(WORKLOADS)/bin/bench_xsbench_dump build
###############################################################################
# Memcached
###############################################################################
memcached : $(WDEPS)
+$(MAKE) -C $(WORKLOADS) memcached
cp $(WORKLOADS)/bin/bench_memcached_mt build
###############################################################################
# Memops
###############################################################################
memops: $(WDEPS)
+$(MAKE) -C $(WORKLOADS) memops
cp $(WORKLOADS)/bin/bench_memops build
###############################################################################
# Stream
###############################################################################
stream: $(WDEPS)
+$(MAKE) -C $(WORKLOADS) stream
cp $(WORKLOADS)/bin/bench_stream build
cp $(WORKLOADS)/bin/bench_stream_numa build
###############################################################################
# Clean
###############################################################################
clean:
+$(MAKE) -C $(WORKLOADS) clean
+$(MAKE) -C evaluation clean
clean-workloads:
+$(MAKE) -C $(WORKLOADS) clean
clean-evaluation:
+$(MAKE) -C evaluation clean