From 5020a5a07da3fd690f5d171a48d0c73ef48f9430 Mon Sep 17 00:00:00 2001 From: xleroy Date: Fri, 1 Mar 2013 15:32:13 +0000 Subject: Revised Stacking and Asmgen passes and Mach semantics: - no more prediction of return addresses (Asmgenretaddr is gone) - instead, punch a hole for the retaddr in Mach stack frame and fill this hole with the return address in the Asmgen proof. git-svn-id: https://yquem.inria.fr/compcert/svn/compcert/trunk@2129 fca1b0fc-160b-0410-b1d3-a4f43f01ea2e --- driver/Compiler.v | 5 ----- 1 file changed, 5 deletions(-) (limited to 'driver') diff --git a/driver/Compiler.v b/driver/Compiler.v index 9db7f420..c8fb8c5c 100644 --- a/driver/Compiler.v +++ b/driver/Compiler.v @@ -31,7 +31,6 @@ Require LTL. Require LTLin. Require Linear. Require Mach. -Require Machsem. Require Asm. (** Translation passes. *) Require Initializers. @@ -59,7 +58,6 @@ Require RTLtyping. Require LTLtyping. Require LTLintyping. Require Lineartyping. -Require Machtyping. (** Proofs of semantic preservation and typing preservation. *) Require SimplExprproof. Require SimplLocalsproof. @@ -85,7 +83,6 @@ Require Reloadtyping. Require RREproof. Require RREtyping. Require Stackingproof. -Require Stackingtyping. Require Asmgenproof. (** Pretty-printers (defined in Caml). *) @@ -239,8 +236,6 @@ Proof. assert(TY3: Lineartyping.wt_program p9). eapply RREtyping.program_typing_preserved. eapply Reloadtyping.program_typing_preserved; eauto. - assert(TY4: Machtyping.wt_program p10). - eapply Stackingtyping.program_typing_preserved; eauto. eapply compose_forward_simulation. apply Tailcallproof.transf_program_correct. eapply compose_forward_simulation. apply Inliningproof.transf_program_correct. eassumption. -- cgit