Skip to content

Commit 89355a4

Browse files
camlspottermshinwell
authored andcommitted
added -threads and -vmthreads option information to the ppx context (ocaml#1336)
1 parent e8d0abb commit 89355a4

File tree

6 files changed

+51
-0
lines changed

6 files changed

+51
-0
lines changed

Changes

+4
Original file line numberDiff line numberDiff line change
@@ -253,6 +253,10 @@ Working version
253253
- GPR#1333: turn off warning 40 by default
254254
(Leo White)
255255

256+
- GPR#1336: -thread and -vmthread option information is propagated to
257+
PPX rewriters.
258+
(Jun Furuse, review by Alain Frisch)
259+
256260
### Other libraries:
257261

258262
- GPR#1178: remove the Num library for arbitrary-precision arithmetic.

parsing/ast_mapper.ml

+6
Original file line numberDiff line numberDiff line change
@@ -725,6 +725,8 @@ module PpxContext = struct
725725
lid "open_modules", make_list make_string !Clflags.open_modules;
726726
lid "for_package", make_option make_string !Clflags.for_package;
727727
lid "debug", make_bool !Clflags.debug;
728+
lid "use_threads", make_bool !Clflags.use_threads;
729+
lid "use_vmthreads", make_bool !Clflags.use_vmthreads;
728730
get_cookies ()
729731
]
730732
in
@@ -791,6 +793,10 @@ module PpxContext = struct
791793
Clflags.for_package := get_option get_string payload
792794
| "debug" ->
793795
Clflags.debug := get_bool payload
796+
| "use_threads" ->
797+
Clflags.use_threads := get_bool payload
798+
| "use_vmthreads" ->
799+
Clflags.use_vmthreads := get_bool payload
794800
| "cookies" ->
795801
let l = get_list (get_pair get_string (fun x -> x)) payload in
796802
cookies :=

testsuite/tests/ppx-contexts/Makefile

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
BASEDIR=../..
2+
3+
INCLUDES=\
4+
-I $(OTOPDIR)/parsing \
5+
-I $(OTOPDIR)/utils \
6+
-I $(OTOPDIR)compilerlibs
7+
8+
.PHONY: run
9+
run: program$(EXE) test.reference
10+
@echo " ... testing -thread and -vmthread are propagated to PPX:"
11+
$(OCAMLC) -c -thread -ppx '$(OCAMLRUN) ./program$(EXE)' test.ml 2> test.result
12+
$(OCAMLC) -c -vmthread -ppx '$(OCAMLRUN) ./program$(EXE)' test.ml 2>> test.result
13+
@$(DIFF) test.reference test.result >/dev/null \
14+
&& echo " => passed" || echo " => failed"
15+
16+
program$(EXE): program.ml Makefile
17+
$(OCAMLC) -o $@ $(INCLUDES) -I ../../../compilerlibs ocamlcommon.cma ./program.ml
18+
19+
.PHONY: promote
20+
promote: defaultpromote
21+
22+
.PHONY: clean
23+
clean: defaultclean
24+
@rm -f program$(EXE) test.result *.cm*
25+
26+
include $(BASEDIR)/makefiles/Makefile.common
+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
(* A simple PPX *)
2+
3+
open Ast_mapper
4+
5+
let () =
6+
register "test" (fun _ ->
7+
Printf.eprintf "use_threads=%b\n" !Clflags.use_threads;
8+
Printf.eprintf "use_vmthreads=%b\n" !Clflags.use_vmthreads;
9+
default_mapper);
10+

testsuite/tests/ppx-contexts/test.ml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
(* empty *)
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
use_threads=true
2+
use_vmthreads=false
3+
use_threads=false
4+
use_vmthreads=true

0 commit comments

Comments
 (0)