From a82c9c0e4a0b8e37c9c3ea5ae99714982563606f Mon Sep 17 00:00:00 2001 From: xleroy Date: Sat, 14 Jan 2012 14:23:26 +0000 Subject: 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 --- driver/Compiler.v | 6 ------ 1 file changed, 6 deletions(-) (limited to 'driver') diff --git a/driver/Compiler.v b/driver/Compiler.v index abd38678..ce9db20c 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. -- cgit