aboutsummaryrefslogtreecommitdiffstats
path: root/cparser/Parse.mli
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@college-de-france.fr>2022-09-27 12:31:07 +0200
committerXavier Leroy <xavier.leroy@college-de-france.fr>2022-10-29 10:03:30 +0200
commita1dabb4792446538cce24eb87bcd3ccb3c09f18b (patch)
treeb74523469addfab9db6afc5ced3564ce267da4d7 /cparser/Parse.mli
parentdfc6b66ec21e148d29b2a6e8b5d77873a0a47511 (diff)
downloadcompcert-a1dabb4792446538cce24eb87bcd3ccb3c09f18b.tar.gz
compcert-a1dabb4792446538cce24eb87bcd3ccb3c09f18b.zip
Handle unstructured 'switch' statements such as Duff's device
- New elaboration pass: SwitchNorm - recognizes structured 'switch' statements and puts them in a normalized form; - if selected, transforms unstructured 'switch' statements into a structured switch with goto actions + the original switch body with appropriate labels and gotos. - C2C treatment of 'switch' statements is simplified accordingly. - New language support option `-funstructured-switch`. - Some tests were added (test/regression/switch3.c).
Diffstat (limited to 'cparser/Parse.mli')
-rw-r--r--cparser/Parse.mli5
1 files changed, 3 insertions, 2 deletions
diff --git a/cparser/Parse.mli b/cparser/Parse.mli
index 7b33cc5b..a37bd0e0 100644
--- a/cparser/Parse.mli
+++ b/cparser/Parse.mli
@@ -18,6 +18,7 @@
val preprocessed_file:
?unblock: bool ->
+ ?switch_norm: [`Off | `Partial | `Full] ->
?struct_passing: bool ->
?packed_structs: bool ->
string -> string -> C.program
@@ -26,5 +27,5 @@ val preprocessed_file:
[filename] is the name of the source file, for error messages.
[sourcetext] is the text of the source file after preprocessing.
The optional arguments indicate which source-to-source
- transformations to perform. They default to [false] (don't perform).
- *)
+ transformations to perform. They default to [false] or [`Off]
+ (do not perform). *)