-
Notifications
You must be signed in to change notification settings - Fork 9
/
Makefile
672 lines (561 loc) · 25.1 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
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
#=========================================================================================================#
# #
# rmem executable model #
# ===================== #
# #
# This file is: #
# #
# Copyright Peter Sewell, University of Cambridge 2011-2017 #
# Copyright Shaked Flur, University of Cambridge 2015-2018 #
# Copyright Jon French, University of Cambridge 2015, 2017-2018 #
# Copyright Pankaj Pawan, IIT Kanpur and INRIA (when this work was done) 2011 #
# Copyright Christopher Pulte, University of Cambridge 2015-2018 #
# Copyright Susmit Sarkar, University of St Andrews 2011-2012, 2014-2015 #
# Copyright Ohad Kammar, University of Cambridge (when this work was done) 2013-2014 #
# Copyright Kathy Gray, University of Cambridge (when this work was done) 2015, 2017 #
# Copyright Francesco Zappa Nardelli, INRIA, Paris, France 2011 #
# Copyright Robert Norton-Wright, University of Cambridge 2016-2017 #
# Copyright Luc Maranget, INRIA, Paris, France 2011-2012, 2015 #
# Copyright Sela Mador-Haim, University of Pennsylvania (when this work was done) 2012 #
# Copyright Jean Pichon-Pharabod, University of Cambridge 2013-2014 #
# Copyright Gabriel Kerneis, University of Cambridge (when this work was done) 2014 #
# Copyright Kayvan Memarian, University of Cambridge 2012 #
# #
# All rights reserved. #
# #
# It is part of the rmem tool, distributed under the 2-clause BSD licence in #
# LICENCE.txt. #
# #
#=========================================================================================================#
OPAM := $(shell which opam 2> /dev/null)
OCAMLBUILD := $(shell which ocamlbuild 2> /dev/null)
ifeq ($(OCAMLBUILD),)
$(warning *** cannot find ocamlbuild, please install it or set OCAMLBUILD to point to it)
OCAMLBUILD := echo "*** cannot find ocamlbuild" >&2 && false
endif
# _OCAMLFIND must match the one ocamlbuild will use, hence the 'override'
override _OCAMLFIND := $(shell $(OCAMLBUILD) -which ocamlfind 2> /dev/null)
# for ocamlc or ocamlopt use '$(_OCAMLFIND) ocamlc' or '$(_OCAMLFIND) ocamlopt'
default:
$(MAKE) rmem
.PHONY: default
.DEFAULT_GOAL: default
# https://gist.github.com/rsperl/d2dfe88a520968fbc1f49db0a29345b9
BLUE := $(shell tput -Txterm setaf 6)
RESET := $(shell tput -Txterm sgr0)
## help: #############################################################
define HELP_MESSAGE
In addition to the dependencies described below, rmem requires OCaml\
4.02.3 or greater and ocamlbuild. The variable OCAMLBUILD can be used\
to set a specific ocamlbuild executable.
make - same as 'make rmem'
make clean - remove all the files that were generated by the build process
make rmem [UI={text|web|isabelle|headless}] [MODE={debug|opt|profile|byte}] [ISA=...]
UI text - (default) build the text interface; web - build the web interface;
isabelle - build Isabelle theory files; headless - build the text interface
without interactive mode (does not require lambda-term).
MODE compile to bytecode (debug - default), native (opt) or p.native (profile)
ISA comma separated list of ISA models to include ($(ALLISAS)).
make clean_ocaml - 'ocamlbuild -clean'
make clean_install_dir [INSTALLDIR=<path>] - removes $(INSTALLDIR)
make install_web_interface [INSTALLDIR=<path>] - build the web-interface and install it in $(INSTALLDIR)
make serve [INSTALLDIR=<path>] [PORT=<port>] - serve the web-interface in $(INSTALLDIR)
make isabelle [ISA=...] - generate theory files for Isabelle (in ./generated_isabelle/)
make sloc_concurrency_model - use sloccount on the .lem files that were used in the last build
endef
help:
$(info $(HELP_MESSAGE))
@:
.PHONY: help
## utils: ############################################################
FORCE:
.PHONY: FORCE
# $(call equal,<x>,<y>) expands to 1 if the strings <x> and <y> are
# equivalent, otherwise it expands to the empty string. For example:
# $(if $(call equal,<x>,<y>),echo "equal",echo "not equal")
define _equal
ifeq "$(1)" "$(2)"
_equal_res := 1
else
_equal_res :=
endif
endef
equal=$(eval $(call _equal,$(1),$(2)))$(_equal_res)
notequal=$(if $(call equal,$(1),$(2)),,1)
add_ocaml_exts = $(foreach s,.d.byte .byte .native .p.native,$(addsuffix $(s),$(1)))
comma=,
split_on_comma = $(subst $(comma), ,$(1))
# in the recipe of a rule $(call git_version,<the-git-dir>)
# will print OCaml code matching the signature Git from src_top/versions.ml
git_version =\
{ printf -- '(* auto generated by make *)\n\n' &&\
printf -- '(* git -C $(1) describe --dirty --always --abbrev=0 *)\n' &&\
printf -- 'let describe : string = {|%s|}\n\n' "$$(git -C $(1) describe --dirty --always --abbrev=0)" &&\
printf -- '(* git -C $(1) log -1 --format=%%ci *)\n' &&\
printf -- 'let last_changed : string = {|%s|}\n\n' "$$(git -C $(1) log -1 --format=%ci)" &&\
printf -- '(* git -C $(1) status -suno *)\n' &&\
printf -- 'let status : string = {|\n%s|}\n' "$$(git -C $(1) status -suno)";\
}
######################################################################
MODE=$(if $(call equal,$(UI),web),opt,debug)
.PHONY: MODE
ifeq ($(MODE),debug)
EXT = d.byte
JSOCFLAGS=--pretty --no-inline --debug-info --source-map
else ifeq ($(MODE),byte)
EXT = byte
else ifeq ($(MODE),opt)
EXT = native
JSOCFLAGS=--opt 3
else ifeq ($(MODE),profile)
EXT = p.native
else
$(error '$(MODE)' is not a valid MODE value, must be one of: opt, profile, debug, byte)
endif
UI=text
.PHONY: UI
ifeq ($(UI),isabelle)
CONCSENTINEL = generated_isabelle/make_sentinel
else
CONCSENTINEL = generated_ocaml/make_sentinel
ifeq ($(UI),web)
ifeq ($(MODE),opt)
EXT = byte
else ifeq ($(MODE),profile)
$(error 'profile' is not a valid MODE value when UI=web, must be one of: opt, debug, byte)
endif
else ifeq ($(UI),text)
else ifeq ($(UI),headless)
else
$(error '$(UI)' is not a valid UI value, must be one of: text, web, headless, isabelle)
endif
endif
# the following has an effect only if ISA is not provided on the CLI;
ifneq ($(wildcard $(CONCSENTINEL)),)
ISA := $(shell cat $(CONCSENTINEL))
else
ISA := PPCGEN,AArch64,RISCV,X86
endif
.PHONY: ISA
ISA_LIST := $(call split_on_comma,$(ISA))
# make sure the ISAs are valid options, and not empty
ALLISAS = PPCGEN AArch64 MIPS RISCV X86
$(if $(strip $(ISA_LIST)),,$(error ISA cannot be empty, try $(ALLISAS)))
$(foreach i,$(ISA_LIST),$(if $(filter $(i),$(ALLISAS)),,$(error $(i) is not a valid ISA, try $(ALLISAS))))
# if the Lem model was built with a different set of ISAs we force a rebuild
ifneq ($(wildcard $(CONCSENTINEL)),)
# make_sentinel exists
ifneq ($(ISA),$(shell cat $(CONCSENTINEL)))
FORCECONCSENTINEL = FORCE
endif
endif
show_sentinel_isa:
@$(if $(wildcard generated_ocaml/make_sentinel),\
printf -- 'OCaml: ISA=%s\n' "$$(cat generated_ocaml/make_sentinel)",\
echo "OCaml: no sentinel")
@$(if $(wildcard generated_isabelle/make_sentinel),\
printf -- 'Isabelle: ISA=%s\n' "$$(cat generated_isabelle/make_sentinel)",\
echo "Isabelle: no sentinel")
.PHONY: show_sentinel_isa
## the main executable: ##############################################
OCAMLBUILD_FLAGS += -use-ocamlfind
OCAMLBUILD_FLAGS += -plugin-tag "package(str)"
OCAMLBUILD_FLAGS += -I src_top/$(UI)
# if flambda is supported, perform more optimisation than usual
ifeq ($(MODE),opt)
ifeq ($(shell $(_OCAMLFIND) ocamlopt -config | grep -q '^flambda:[[:space:]]*true' && echo true),true)
OCAMLBUILD_FLAGS += -tag 'optimize(3)'
endif
endif
# this is needed when building on bim and bom:
ifeq ($(shell $(_OCAMLFIND) ocamlopt -flarge-toc > /dev/null 2>&1 && echo true),true)
OCAMLBUILD_FLAGS += -ocamlopt 'ocamlopt -flarge-toc'
endif
rmem: $(UI)
.PHONY: rmem
ppcmem:
$(error did you mean rmem? see 'make help')
.PHONY: ppcmem
text: override UI = text
headless: override UI = headless
text headless:
@echo "${BLUE}organising dependencies ...${RESET}"
$(MAKE) UI=$(UI) get_all_deps
$(MAKE) UI=$(UI) main
ln -f -s main.$(EXT) rmem
@echo "*** DONE: $@ UI=$(UI) MODE=$(MODE) ISA=$(ISA)"
.PHONY: text headless
CLEANFILES += rmem
web: override UI=web
web:
@echo "${BLUE}organising dependencies ...${RESET}"
$(MAKE) UI=$(UI) get_all_deps
$(MAKE) UI=$(UI) webppc
$(MAKE) UI=$(UI) system.js
@echo "*** DONE: web UI=$(UI) MODE=$(MODE) ISA=$(ISA)"
.PHONY: web
isabelle: override UI=isabelle
isabelle:
$(MAKE) UI=$(UI) get_all_deps
$(MAKE) UI=$(UI) generated_isabelle/make_sentinel
.PHONY: isabelle
.PHONY: get_all_deps
HIGHLIGHT := $(if $(MAKE_TERMOUT),| scripts/highlight.sh -s)
main webppc: src_top/share_dir.ml version.ml generated_ocaml/make_sentinel
@echo "${BLUE}building executable ...${RESET}"
rm -f $@.$(EXT)
ulimit -s 33000; $(OCAMLBUILD) $(OCAMLBUILD_FLAGS) src_top/$@.$(EXT) $(HIGHLIGHT)
# when piping through the highlight script we lose the exit status
# of ocamlbuild; check for the target existence instead:
@[ -f $@.$(EXT) ]
.PHONY: main webppc
CLEANFILES += $(call add_ocaml_exts,main)
CLEANFILES += $(call add_ocaml_exts,webppc)
clean_ocaml:
$(OCAMLBUILD) -clean
.PHONY: clean_ocaml
version.ml: FORCE
{ $(call git_version,./) &&\
printf -- '\n' &&\
printf -- 'let ocaml : string = {|%s|}\n\n' "$$($(_OCAMLFIND) ocamlc -vnum)" &&\
printf -- 'let lem : string = {|%s|}\n\n' "$$($(LEM) -v)" &&\
printf -- 'let sail_legacy : string = {|%s|}\n\n' "$$(sail-legacy -v)" &&\
printf -- 'let sail : string = {|%s|}\n\n' "$$(sail -v)" &&\
printf -- 'let libraries : (string * string) list = [\n' &&\
$(_OCAMLFIND) query -format ' ({|%p|}, {|%v|});' $(PKGS) &&\
printf -- ']\n';\
} > $@
CLEANFILES += version.ml
# the prerequisite webppc.$(EXT) does not trigger a rebuild of webppc,
# that has to be done manually before updating system.js
system.js: webppc.$(EXT)
rm -f system.map
js_of_ocaml $(JSOCFLAGS) +nat.js src_web_interface/web_assets/BigInteger.js src_web_interface/web_assets/zarith.js $< -o $@
CLEANFILES += system.js system.map
clean: clean_ocaml
rm -f $(CLEANFILES)
rm -rf $(CLEANDIRS)
.PHONY: clean
## install for opam ##################################################
INSTALL_DIR ?= .
SHARE_DIR ?= share
src_top/share_dir.ml:
echo "let share_dir = \"$(SHARE_DIR)\"" > src_top/share_dir.ml
CLEANFILES += src_top/share_dir.ml
install:
mkdir -p $(INSTALL_DIR)/bin
mkdir -p $(SHARE_DIR)
cp rmem $(INSTALL_DIR)/bin
## install the web-interface #########################################
INSTALLDIR = ~/public_html/rmem
# install tests (defines install_<isa>_tests and litmus_library.json)
include web_interface_tests.mk
$(INSTALLDIR):
mkdir -p $@
# because all the prerequisites are after the | the recipe will execute
# only if the target does not already exist (i.e. if you manually installed
# .htaccess it will not be overwritten)
$(INSTALLDIR)/.htaccess: | $(INSTALLDIR)
cp src_web_interface/example.htaccess $@
console_help_printer:
rm -f console_help_printer.native
$(OCAMLBUILD) $(OCAMLBUILD_FLAGS) src_top/console_help_printer.native
.PHONY: console_help_printer
CLEANFILES += console_help_printer.native
$(INSTALLDIR)/help.html: src_web_interface/help.md console_help_printer.native | $(INSTALLDIR)
{ echo '<!-- WARNING: AUTOGENERATED FILE; DO NOT EDIT (edit $< instead) -->';\
gpp -U "" "" "(" "," ")" "(" ")" "#" "" -M "#" "\n" " " " " "\n" "(" ")" $(if $(or $(call equal,$(origin ANON),undefined),$(call notequal,$(ANON),false)),$(if $(ANON),-D ANON,)) $< | pandoc -f markdown -t html -s --toc --css rmem.css;\
echo "<pre><code>";\
./console_help_printer.native;\
echo "</code></pre>";\
} > $@
install_web_interface: web $(INSTALLDIR)
# TODO: rm -rf $(INSTALLDIR)/*
cp -r src_web_interface/* $(INSTALLDIR)/
cp system.js $(INSTALLDIR)
[ ! -e system.map ] || cp system.map $(INSTALLDIR)
$(MAKE) console_help_printer
$(MAKE) $(INSTALLDIR)/help.html
$(MAKE) $(INSTALLDIR)/.htaccess
$(MAKE) $(foreach isa,$(ISA_LIST),install_$(isa)_tests)
$(MAKE) $(INSTALLDIR)/litmus_library.json
.PHONY: install_web_interface
clean_install_dir:
rm -rf $(INSTALLDIR)
.PHONY: clean_install_dir
serve: PYTHON := $(or $(shell which python3 2> /dev/null),$(shell which python2 2> /dev/null))
serve: PORT=8000
serve:
@xdg-open "http://127.0.0.1:$(PORT)/index.html" || echo '*** open "http://127.0.0.1:$(PORT)/index.html" in your web-browser'
$(if $(PYTHON),\
cd $(INSTALLDIR) && $(PYTHON) $(realpath scripts/serve.py) $(PORT),\
$(error Could not find either python3 or python2 to run simple web server.))
.PHONY: serve
ifeq ($(UI),text)
OCAMLBUILD_FLAGS += -tag-line '"src_top/main.$(EXT)" : package(lambda-term)'
else ifeq ($(UI),headless)
else ifeq ($(UI),web)
endif
# temporarily
saildir ?= src_sail_legacy
ifeq ($(saildir),)
saildir = $(error cannot find (the share directory of) the opam package sail-legacy)
endif
sail2dir ?= $(shell opam var sail:share)
ifeq ($(sail2dir),)
sail2dir = $(error cannot find (the share directory of) the opam package sail)
endif
riscvdir ?= $(shell opam var sail-riscv:share)
ifeq ($(riscvdir),)
riscvdir = $(error cannot find (the share directory of) the opam package sail-riscv)
endif
lemdir ?= $(shell opam var lem:share)
ifeq ($(lemdir),)
lemdir = $(error cannot find (the share directory of) the opam package lem)
endif
linksemdir ?= $(shell opam var linksem:share)
ifeq ($(linksemdir),)
linksemdir = $(error cannot find (the share directory of) the opam package linksem)
endif
## ISA model stubs ###################################################
get_all_deps: isa_model_stubs
isa_model_stubs:
ifeq ($(filter PPCGEN,$(ISA_LIST)),)
RMEMSTUBS += src_top/PPCGenTransSail.ml
endif
ifeq ($(filter AArch64,$(ISA_LIST)),)
RMEMSTUBS += src_top/AArch64HGenTransSail.ml
endif
RMEMSTUBS += src_top/AArch64GenTransSail.ml
ifeq ($(filter MIPS,$(ISA_LIST)),)
RMEMSTUBS += src_top/MIPSHGenTransSail.ml
endif
ifeq ($(filter RISCV,$(ISA_LIST)),)
RMEMSTUBS += src_top/RISCVHGenTransSail.ml
endif
ifeq ($(filter X86,$(ISA_LIST)),)
RMEMSTUBS += src_top/X86HGenTransSail.ml
endif
.PHONY: isa_model_stubs
######################################################################
pp2ml:
rm -f pp2ml.native
$(OCAMLBUILD) -no-plugin -use-ocamlfind src_top/herd_based/pp2ml.native
.PHONY: pp2ml
get_all_deps: pp2ml
CLEANFILES += $(call add_ocaml_exts,pp2ml)
litmus2xml: get_all_deps
rm -f litmus2xml.native
$(OCAMLBUILD) $(OCAMLBUILD_FLAGS) src_top/litmus2xml.native $(HIGHLIGHT)
@[ -f litmus2xml.native ]
.PHONY: litmus2xml
CLEANFILES += $(call add_ocaml_exts,litmus2xml)
######################################################################
LEM=lem
LEMFLAGS += -only_changed_output
LEMFLAGS += -wl_unused_vars ign
LEMFLAGS += -wl_pat_comp ign
LEMFLAGS += -wl_pat_exh ign
# LEMFLAGS += -wl_pat_fail ign
LEMFLAGS += -wl_comp_message ign
LEMFLAGS += -wl_rename ign
ifeq ($(filter PPCGEN,$(ISA_LIST)),)
POWER_FILES += src_isa_stubs/power/power_embed_types.lem
POWER_FILES += src_isa_stubs/power/power_embed.lem
POWER_FILES += src_isa_stubs/power/powerIsa.lem
else
POWER_FILES += $(saildir)/arch/power/power_extras_embed.lem
POWER_FILES += $(saildir)/arch/power/power_embed_types.lem
POWER_FILES += $(saildir)/arch/power/power_embed.lem
POWER_FILES += src_isa_defs/powerIsa.lem
endif
ifeq ($(filter AArch64,$(ISA_LIST)),)
AARCH64_FILES += src_isa_stubs/aarch64/armV8_embed_types.lem
AARCH64_FILES += src_isa_stubs/aarch64/armV8_embed.lem
AARCH64_FILES += src_isa_stubs/aarch64/aarch64Isa.lem
else
AARCH64_FILES += $(saildir)/arch/arm/armV8_extras_embed.lem
AARCH64_FILES += $(saildir)/arch/arm/armV8_embed_types.lem
AARCH64_FILES += $(saildir)/arch/arm/armV8_embed.lem
AARCH64_FILES += src_isa_defs/aarch64Isa.lem
endif
ifeq ($(filter MIPS,$(ISA_LIST)),)
MIPS_FILES += src_isa_stubs/mips/mips_embed_types.lem
MIPS_FILES += src_isa_stubs/mips/mips_embed.lem
MIPS_FILES += src_isa_stubs/mips/mipsIsa.lem
else
MIPS_FILES += $(saildir)/arch/mips/mips_extras_embed.lem
MIPS_FILES += $(saildir)/arch/mips/mips_embed_types.lem
MIPS_FILES += $(saildir)/arch/mips/mips_embed.lem
MIPS_FILES += src_isa_defs/mipsIsa.lem
endif
ifeq ($(filter RISCV,$(ISA_LIST)),)
RISCV_FILES += src_isa_stubs/riscv/riscv_types.lem
RISCV_FILES += src_isa_stubs/riscv/riscv.lem
RISCV_FILES += src_isa_stubs/riscv/riscvIsa.lem
else
RISCV_FILES += $(riscvdir)/handwritten_support/0.11/riscv_extras.lem
RISCV_FILES += $(riscvdir)/handwritten_support/0.11/riscv_extras_fdext.lem
RISCV_FILES += $(riscvdir)/handwritten_support/0.11/mem_metadata.lem
RISCV_FILES += $(riscvdir)/generated_definitions/for-rmem/riscv_types.lem
RISCV_FILES += $(riscvdir)/generated_definitions/for-rmem/riscv.lem
# FIXME: using '-wl_pat_red ign' is very bad but because riscv.lem is
# generated by shallow embedding there is not much we can do
LEMFLAGS += -wl_pat_red ign
RISCV_FILES += src_isa_defs/riscvIsa.lem
endif
ifeq ($(filter X86,$(ISA_LIST)),)
X86_FILES += src_isa_stubs/x86/x86_embed_types.lem
X86_FILES += src_isa_stubs/x86/x86_embed.lem
X86_FILES += src_isa_stubs/x86/x86Isa.lem
else
X86_FILES += $(saildir)/arch/x86/x86_extras_embed.lem
X86_FILES += $(saildir)/arch/x86/x86_embed_types.lem
X86_FILES += $(saildir)/arch/x86/x86_embed.lem
X86_FILES += src_isa_defs/x86Isa.lem
endif
MACHINEFILES=\
$(saildir)/src/lem_interp/sail_impl_base.lem\
$(saildir)/src/gen_lib/sail_values.lem\
$(saildir)/src/gen_lib/prompt.lem\
$(sail2dir)/src/gen_lib/sail2_instr_kinds.lem\
$(sail2dir)/src/gen_lib/sail2_values.lem\
$(sail2dir)/src/gen_lib/sail2_operators.lem\
$(sail2dir)/src/gen_lib/sail2_operators_mwords.lem\
$(sail2dir)/src/gen_lib/sail2_prompt_monad.lem\
$(sail2dir)/src/gen_lib/sail2_prompt.lem\
$(sail2dir)/src/gen_lib/sail2_string.lem\
src_concurrency_model/utils.lem\
src_concurrency_model/freshIds.lem\
src_concurrency_model/instructionSemantics.lem\
src_concurrency_model/exceptionTypes.lem\
src_concurrency_model/events.lem\
src_concurrency_model/fragments.lem\
src_concurrency_model/elfProgMemory.lem\
src_concurrency_model/isa.lem\
src_concurrency_model/regUtils.lem\
src_concurrency_model/uiTypes.lem\
src_concurrency_model/params.lem\
src_concurrency_model/dwarfTypes.lem\
src_concurrency_model/instructionKindPredicates.lem\
src_concurrency_model/candidateExecution.lem\
src_concurrency_model/machineDefTypes.lem\
src_concurrency_model/machineDefUI.lem\
src_concurrency_model/machineDefPLDI11StorageSubsystem.lem\
src_concurrency_model/machineDefFlowingStorageSubsystem.lem\
src_concurrency_model/machineDefFlatStorageSubsystem.lem\
src_concurrency_model/machineDefPOPStorageSubsystem.lem\
src_concurrency_model/machineDefTSOStorageSubsystem.lem\
src_concurrency_model/machineDefThreadSubsystemUtils.lem\
src_concurrency_model/machineDefThreadSubsystem.lem\
src_concurrency_model/machineDefSystem.lem\
src_concurrency_model/machineDefTransitionUtils.lem\
src_concurrency_model/promisingViews.lem\
src_concurrency_model/promisingTransitions.lem\
src_concurrency_model/promisingThread.lem\
src_concurrency_model/promisingStorageTSS.lem\
src_concurrency_model/promisingStorage.lem\
src_concurrency_model/promising.lem\
src_concurrency_model/promisingDwarf.lem\
src_concurrency_model/promisingUI.lem
SAIL1_LEM_INPUT_FILES=\
-i $(saildir)/src/gen_lib/sail_values.lem\
-i $(saildir)/src/gen_lib/prompt.lem\
-i $(saildir)/src/lem_interp/sail_impl_base.lem\
-i src_concurrency_model/regUtils.lem\
-i src_concurrency_model/isa.lem
SAIL2_LEM_INPUT_FILES=\
$(SAIL1_LEM_INPUT_FILES)\
-i $(sail2dir)/src/gen_lib/sail2_instr_kinds.lem\
-i $(sail2dir)/src/gen_lib/sail2_values.lem\
-i $(sail2dir)/src/gen_lib/sail2_operators.lem\
-i $(sail2dir)/src/gen_lib/sail2_operators_mwords.lem\
-i $(sail2dir)/src/gen_lib/sail2_prompt_monad.lem\
-i $(sail2dir)/src/gen_lib/sail2_prompt.lem\
-i $(sail2dir)/src/gen_lib/sail2_string.lem
generated_ocaml/make_sentinel: $(FORCECONCSENTINEL) $(MACHINEFILES)
rm -rf $(dir $@)
mkdir -p $(dir $@)
@echo "${BLUE}generating concurrency model OCaml definition ...${RESET}"
$(LEM) $(LEMFLAGS) -outdir $(dir $@) -ocaml $(MACHINEFILES)
@echo "${BLUE}generating RISCV ISA (or stub) OCaml definition ...${RESET}"
$(LEM) $(LEMFLAGS) $(SAIL2_LEM_INPUT_FILES) -outdir $(dir $@) -ocaml $(RISCV_FILES) src_isa_defs/sail_1_2_convert.lem
@echo "${BLUE}generating POWER ISA (or stub) OCaml definition ...${RESET}"
$(LEM) $(LEMFLAGS) $(SAIL1_LEM_INPUT_FILES) -outdir $(dir $@) -ocaml $(POWER_FILES)
@echo "${BLUE}generating ARMv8 ISA (or stub) OCaml definition ...${RESET}"
$(LEM) $(LEMFLAGS) $(SAIL1_LEM_INPUT_FILES) -outdir $(dir $@) -ocaml $(AARCH64_FILES)
@echo "${BLUE}generating MIPS ISA (or stub) OCaml definition ...${RESET}"
$(LEM) $(LEMFLAGS) $(SAIL1_LEM_INPUT_FILES) -outdir $(dir $@) -ocaml $(MIPS_FILES)
@echo "${BLUE}generating x86 ISA (or stub) OCaml definition ...${RESET}"
$(LEM) $(LEMFLAGS) $(SAIL1_LEM_INPUT_FILES) -outdir $(dir $@) -ocaml $(X86_FILES)
echo '$(ISA)' > $@
CLEANDIRS += generated_ocaml
######################################################################
generated_isabelle/make_sentinel: $(FORCECONCSENTINEL) $(MACHINEFILES)
rm -rf $(dir $@)
mkdir -p $(dir $@)
$(LEM) $(LEMFLAGS) -outdir $(dir $@) -isa $(MACHINEFILES-ISABELLE)
echo '$(ISA)' > $@
# echo 'session MODEL = "LEM" + theories MachineDefTSOStorageSubsystem MachineDefSystem' > generated_isabelle/ROOT
CLEANDIRS += generated_isabelle
######################################################################
headers_src_concurrency_model:
@$(foreach FILE, $(shell find src_concurrency_model/ -type f), \
echo "Processing $(FILE)"; scripts/headache-svn-log.ml $(FILE); \
)
headers_src_top:
@$(foreach FILE, $(shell find src_top/ -type f -not -path "src_top/herd_based/*"), \
echo "Processing $(FILE)"; scripts/headache-svn-log.ml $(FILE); \
)
headers_src_marshal_defs:
@$(foreach FILE, $(shell find src_marshal_defs/ -type f), \
echo "Processing $(FILE)"; scripts/headache-svn-log.ml $(FILE); \
)
headers_src_web_interface:
@$(foreach FILE, src_web_interface/index.html \
$(shell find src_web_interface/web_assets -maxdepth 1 -type f \
-not -path "src_web_interface/web_assets/lib/*" -and \
-name "*.js" -or -name "*.css" -or -name "*.html"), \
echo "Processing $(FILE)"; scripts/headache-svn-log.ml $(FILE); \
)
headers_makefiles:
@$(foreach FILE, Makefile myocamlbuild.ml web_interface_tests.mk, \
echo "Processing $(FILE)"; scripts/headache-svn-log.ml $(FILE); \
)
# headers_scripts:
# @$(foreach FILE, $(shell find scripts), \
# echo "Processing $(FILE)"; scripts/headache-svn-log.ml $(FILE); \
# )
headers: \
headers_src_concurrency_model \
headers_src_top \
headers_src_marshal_defs \
headers_src_web_interface \
headers_makefiles
#headers_scripts \
.PHONY: \
headers_src_concurrency_model \
headers_src_top \
headers_src_marshal_defs \
headers_src_web_interface \
headers_makefiles
# headers_scripts \
######################################################################
jenkins-sanity: sanity.xml
.PHONY: jenkins-sanity
sanity.xml: REGRESSIONDIR = $(REMSDIR)/litmus-tests-regression-machinery
sanity.xml: FORCE
$(MAKE) -s -C $(REGRESSIONDIR) suite-sanity RMEMDIR=$(CURDIR) ISADRIVERS="shallow" TARGETS=clean-model
$(MAKE) -s -C $(REGRESSIONDIR) suite-sanity RMEMDIR=$(CURDIR) ISADRIVERS="shallow"
$(MAKE) -s -C $(REGRESSIONDIR) suite-sanity RMEMDIR=$(CURDIR) ISADRIVERS="shallow" TARGETS=report-junit-testcase > '[email protected]'
{ printf '<testsuites>\n' &&\
printf ' <testsuite name="sanity" tests="%d" failures="%d" timestamp="%s">\n' "$$(grep -c -F '<testcase name=' '[email protected]')" "$$(grep -c -F '<error message="fail">' '[email protected]')" "$$(date)" &&\
sed 's/^/ /' '[email protected]' &&\
printf ' </testsuite>\n' &&\
printf '</testsuites>\n';\
} > '$@'
rm -rf '[email protected]'
######################################################################
# When %.ml does not exist, myocamlbuild.ml will choose %.ml.notstub or
# %.ml.stub based on the presence of %.ml in $RMEMSTUBS
export RMEMSTUBS