diff options
author | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2012-01-14 14:23:26 +0000 |
---|---|---|
committer | xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e> | 2012-01-14 14:23:26 +0000 |
commit | a82c9c0e4a0b8e37c9c3ea5ae99714982563606f (patch) | |
tree | 93b9999698a4cd47ec4cb5fcdcdfd215d62f8e9e /driver | |
parent | bb8f49c419eb8205ef541edcbe17f4d14aa99564 (diff) |
Merge of the nonstrict-ops branch:
- Most RTL operators now evaluate to Some Vundef instead of None
when undefined behavior occurs.
- More aggressive instruction selection.
- "Bertotization" of pattern-matchings now implemented by a proper preprocessor.
- Cast optimization moved to cfrontend/Cminorgen; removed backend/CastOptim.
git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@1790 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e
Diffstat (limited to 'driver')
-rw-r--r-- | driver/Compiler.v | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/driver/Compiler.v b/driver/Compiler.v index abd3867..ce9db20 100644 --- a/driver/Compiler.v +++ b/driver/Compiler.v @@ -44,7 +44,6 @@ Require Cminorgen. Require Selection. Require RTLgen. Require Tailcall. -Require CastOptim. Require Constprop. Require CSE. Require Allocation. @@ -68,7 +67,6 @@ Require Cminorgenproof. Require Selectionproof. Require RTLgenproof. Require Tailcallproof. -Require CastOptimproof. Require Constpropproof. Require CSEproof. Require Allocproof. @@ -92,7 +90,6 @@ Parameter print_Clight: Clight.program -> unit. Parameter print_Cminor: Cminor.program -> unit. Parameter print_RTL: RTL.fundef -> unit. Parameter print_RTL_tailcall: RTL.fundef -> unit. -Parameter print_RTL_castopt: RTL.fundef -> unit. Parameter print_RTL_constprop: RTL.fundef -> unit. Parameter print_RTL_cse: RTL.fundef -> unit. Parameter print_LTLin: LTLin.fundef -> unit. @@ -141,8 +138,6 @@ Definition transf_rtl_fundef (f: RTL.fundef) : res Asm.fundef := @@ print print_RTL @@ Tailcall.transf_fundef @@ print print_RTL_tailcall - @@ CastOptim.transf_fundef - @@ print print_RTL_castopt @@ Constprop.transf_fundef @@ print print_RTL_constprop @@ CSE.transf_fundef @@ -342,7 +337,6 @@ Proof. Stackingtyping.program_typing_preserved; intros. eapply compose_forward_simulation. apply Tailcallproof.transf_program_correct. - eapply compose_forward_simulation. apply CastOptimproof.transf_program_correct. eapply compose_forward_simulation. apply Constpropproof.transf_program_correct. eapply compose_forward_simulation. apply CSEproof.transf_program_correct. eapply compose_forward_simulation. apply Allocproof.transf_program_correct. eassumption. |