summaryrefslogtreecommitdiff
path: root/driver
diff options
context:
space:
mode:
authorGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-03-01 15:32:13 +0000
committerGravatar xleroy <xleroy@fca1b0fc-160b-0410-b1d3-a4f43f01ea2e>2013-03-01 15:32:13 +0000
commit5020a5a07da3fd690f5d171a48d0c73ef48f9430 (patch)
tree3ddd75a3ef65543de814f2e0881f8467df73e089 /driver
parentf401437a97b09726d029e3a1b65143f34baaea70 (diff)
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
Diffstat (limited to 'driver')
-rw-r--r--driver/Compiler.v5
1 files changed, 0 insertions, 5 deletions
diff --git a/driver/Compiler.v b/driver/Compiler.v
index 9db7f42..c8fb8c5 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.