(* *********************************************************************)
(*                                                                     *)
(*              The Compcert verified compiler                         *)
(*                                                                     *)
(*          Xavier Leroy, INRIA Paris-Rocquencourt                     *)
(*                                                                     *)
(*  Copyright Institut National de Recherche en Informatique et en     *)
(*  Automatique.  All rights reserved.  This file is distributed       *)
(*  under the terms of the GNU General Public License as published by  *)
(*  the Free Software Foundation, either version 2 of the License, or  *)
(*  (at your option) any later version.  This file is also distributed *)
(*  under the terms of the INRIA Non-Commercial License Agreement.     *)
(*                                                                     *)
(* *********************************************************************)

(** Global environments are a component of the dynamic semantics of
  all languages involved in the compiler.  A global environment
  maps symbol names (names of functions and of global variables)
  to the corresponding memory addresses.  It also maps memory addresses
  of functions to the corresponding function descriptions.

  Global environments, along with the initial memory state at the beginning
  of program execution, are built from the program of interest, as follows:
- A distinct memory address is assigned to each function of the program.
  These function addresses use negative numbers to distinguish them from
  addresses of memory blocks.  The associations of function name to function
  address and function address to function description are recorded in
  the global environment.
- For each global variable, a memory block is allocated and associated to
  the name of the variable.

  These operations reflect (at a high level of abstraction) what takes
  place during program linking and program loading in a real operating
  system. *)

Require Import Recdef.
Require Import Zwf.
Require Import Axioms Coqlib Errors Maps AST Linking.
Require Import Integers Floats Values Memory.
Notation "s #1" := (fst s) (at level 9, format "s '#1'") : pair_scope.
Notation "s #2" := (snd s) (at level 9, format "s '#2'") : pair_scope.
Local Open Scope pair_scope.
Local Open Scope error_monad_scope.
Set Implicit Arguments.
Proof.
Admitted.
Proof.
{
intros.
red.
omega.
}
{
apply Zwf_well_founded.
}
Qed.
(* To avoid useless definitions of inductors in extracted code. *) Local Unset Elimination Schemes.
Local Unset Case Analysis Schemes.
(** * Symbol environments *) (** Symbol environments are a restricted view of global environments, focusing on symbol names and their associated blocks. They do not contain mappings from blocks to function or variable definitions. *) Module Senv.
Record t: Type := mksenv { (** Operations *) find_symbol: ident -> option block; public_symbol: ident -> bool; invert_symbol: block -> option ident; block_is_volatile: block -> bool; nextblock: block; (** Properties *) find_symbol_injective: forall id1 id2 b, find_symbol id1 = Some b -> find_symbol id2 = Some b -> id1 = id2; invert_find_symbol: forall id b, invert_symbol b = Some id -> find_symbol id = Some b; find_invert_symbol: forall id b, find_symbol id = Some b -> invert_symbol b = Some id; public_symbol_exists: forall id, public_symbol id = true -> exists b, find_symbol id = Some b; find_symbol_below: forall id b, find_symbol id = Some b -> Plt b nextblock; block_is_volatile_below: forall b, block_is_volatile b = true -> Plt b nextblock }.
Definition symbol_address (ge: t) (id: ident) (ofs: ptrofs) : val := match find_symbol ge id with | Some b => Vptr b ofs | None => Vundef end.
Proof.
intros.
unfold symbol_address.
destruct find_symbol.
eauto.
eauto.
Qed.
Proof.
intros.
unfold symbol_address.
unfold Val.offset_ptr.
destruct (find_symbol ge id).
{
auto.
}
{
auto.
}
Qed.
Proof.
intros.
try discriminate.
Qed.
Proof.
intros.
unfold symbol_address.
destruct (find_symbol ge id).
{
unfold Val.add.
rewrite H.
auto.
}
{
auto.
}
Qed.
Proof.
intros.
unfold symbol_address.
destruct find_symbol.
eauto.
eauto.
Qed.
Proof.
intros.
unfold symbol_address.
destruct (find_symbol ge id).
{
unfold Val.addl.
rewrite H.
auto.
}
{
auto.
}
Qed.
Definition equiv (se1 se2: t) : Prop := (forall id, find_symbol se2 id = find_symbol se1 id) /\ (forall id, public_symbol se2 id = public_symbol se1 id) /\ (forall b, block_is_volatile se2 b = block_is_volatile se1 b).
End Senv.
Module Genv.
(** * Global environments *) Section GENV.
Variable F: Type.
(**r The type of function descriptions *) Variable V: Type.
(**r The type of information attached to variables *) (** The type of global environments. *) Record t: Type := mkgenv { genv_public: list ident; (**r which symbol names are public *) genv_symb: PTree.t block; (**r mapping symbol -> block *) genv_defs: PTree.t (globdef F V); (**r mapping block -> definition *) genv_next: block; (**r next symbol pointer *) genv_symb_range: forall id b, PTree.get id genv_symb = Some b -> Plt b genv_next; genv_defs_range: forall b g, PTree.get b genv_defs = Some g -> Plt b genv_next; genv_vars_inj: forall id1 id2 b, PTree.get id1 genv_symb = Some b -> PTree.get id2 genv_symb = Some b -> id1 = id2 }.
(** ** Lookup functions *) (** [find_symbol ge id] returns the block associated with the given name, if any *) Definition find_symbol (ge: t) (id: ident) : option block := PTree.get id ge.(genv_symb).
(** [symbol_address ge id ofs] returns a pointer into the block associated with [id], at byte offset [ofs]. [Vundef] is returned if no block is associated to [id]. *) Definition symbol_address (ge: t) (id: ident) (ofs: ptrofs) : val := match find_symbol ge id with | Some b => Vptr b ofs | None => Vundef end.
(** [public_symbol ge id] says whether the name [id] is public and defined. *) Definition public_symbol (ge: t) (id: ident) : bool := match find_symbol ge id with | None => false | Some _ => In_dec ident_eq id ge.(genv_public) end.
(** [find_def ge b] returns the global definition associated with the given address. *) Definition find_def (ge: t) (b: block) : option (globdef F V) := PTree.get b ge.(genv_defs).
(** [find_funct_ptr ge b] returns the function description associated with the given address. *) Definition find_funct_ptr (ge: t) (b: block) : option F := match find_def ge b with Some (Gfun f) => Some f | _ => None end.
(** [find_funct] is similar to [find_funct_ptr], but the function address is given as a value, which must be a pointer with offset 0. *) Definition find_funct (ge: t) (v: val) : option F := match v with | Vptr b ofs => if Ptrofs.eq_dec ofs Ptrofs.zero then find_funct_ptr ge b else None | _ => None end.
(** [invert_symbol ge b] returns the name associated with the given block, if any *) Definition invert_symbol (ge: t) (b: block) : option ident := PTree.fold (fun res id b' => if eq_block b b' then Some id else res) ge.(genv_symb) None.
(** [find_var_info ge b] returns the information attached to the variable at address [b]. *) Definition find_var_info (ge: t) (b: block) : option (globvar V) := match find_def ge b with Some (Gvar v) => Some v | _ => None end.
(** [block_is_volatile ge b] returns [true] if [b] points to a global variable of volatile type, [false] otherwise. *) Definition block_is_volatile (ge: t) (b: block) : bool := match find_var_info ge b with | None => false | Some gv => gv.(gvar_volatile) end.
(** ** Constructing the global environment *) Program Definition add_global (ge: t) (idg: ident * globdef F V) : t := @mkgenv ge.(genv_public) (PTree.set idg#1 ge.(genv_next) ge.(genv_symb)) (PTree.set ge.(genv_next) idg#2 ge.(genv_defs)) (Pos.succ ge.(genv_next)) _ _ _.
Proof.
Admitted.
destruct ge.
simpl in *.
rewrite PTree.gsspec in H.
destruct (peq id i).
{
inv H.
apply Plt_succ.
}
{
apply Plt_trans_succ.
eauto.
}
Qed.
Proof.
Admitted.
destruct ge.
simpl in *.
rewrite PTree.gsspec in H.
destruct (peq b genv_next0).
{
inv H.
apply Plt_succ.
}
{
apply Plt_trans_succ.
eauto.
}
Qed.
Proof.
Admitted.
destruct ge.
simpl in *.
rewrite PTree.gsspec in H.
rewrite PTree.gsspec in H0.
destruct (peq id1 i).
{
destruct (peq id2 i).
{
congruence.
}
{
inv H.
eelim Plt_strict.
eapply genv_symb_range0.
eauto.
}
}
{
destruct (peq id2 i).
{
inv H0.
eelim Plt_strict.
eapply genv_symb_range0.
eauto.
}
{
eauto.
}
}
Qed.
Definition add_globals (ge: t) (gl: list (ident * globdef F V)) : t := List.fold_left add_global gl ge.
Proof.
Admitted.
Proof.
intros.
apply fold_left_app.
Qed.
Program Definition empty_genv (pub: list ident): t := @mkgenv pub (PTree.empty _) (PTree.empty _) 1%positive _ _ _.
Proof.
Admitted.
rewrite PTree.gempty in H.
discriminate.
Qed.
Proof.
Admitted.
rewrite PTree.gempty in H.
discriminate.
Qed.
Proof.
destruct id1.
simpl in H.
try discriminate.
simpl in H.
try discriminate.
try discriminate.
Qed.
rewrite PTree.gempty in H.
discriminate.
Qed.
Definition globalenv (p: program F V) := add_globals (empty_genv p.(prog_public)) p.(prog_defs).
(** Proof principles *) Section GLOBALENV_PRINCIPLES.
Variable P: t -> Prop.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
destruct a.
apply IHgl.
{
auto.
}
{
auto.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
contradiction.
}
{
simpl.
intros.
destruct H1.
{
subst a.
apply add_globals_preserves.
{
auto.
}
{
auto.
}
}
{
apply IHgl.
{
auto.
}
{
auto.
}
{
auto.
}
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
destruct a.
apply IHgl.
{
auto.
}
{
auto.
}
{
auto.
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite add_globals_app.
simpl.
apply add_globals_unique_preserves with id.
{
auto.
}
{
auto.
}
{
auto.
}
Qed.
Proof.
Admitted.
Proof.
induction gl as [|[id1 g1] gl].
{
simpl.
intros.
contradiction.
}
{
simpl.
intros.
inv H0.
destruct H.
{
inv H.
exists nil, gl.
auto.
}
{
exploit IHgl.
{
eauto.
}
{
eauto.
}
{
eauto.
intros (gl1 & gl2 & X & Y).
exists ((id1, g1) :: gl1), gl2.
split.
{
auto.
rewrite X.
auto.
}
{
auto.
}
}
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
exploit in_norepet_unique.
{
eauto.
}
{
eauto.
}
{
eauto.
intros (gl1 & gl2 & X & Y).
subst gl.
apply add_globals_unique_ensures.
{
auto.
intros.
eapply H.
{
eauto.
}
{
eauto.
apply in_or_app.
simpl.
auto.
}
{
eauto.
}
}
{
auto.
}
{
auto.
}
}
Qed.
End GLOBALENV_PRINCIPLES.
Proof.
induction ge.
intros id.
unfold public_symbol.
destruct find_symbol.
simpl.
eauto.
try discriminate.
Qed.
Proof.
unfold public_symbol.
intros.
destruct (find_symbol ge id) as [b|].
{
exists b.
auto.
}
{
discriminate.
}
Qed.
Proof.
intros.
unfold symbol_address.
destruct find_symbol.
eauto.
eauto.
Qed.
Proof.
intros.
unfold symbol_address.
unfold Val.offset_ptr.
destruct (find_symbol ge id).
{
auto.
}
{
auto.
}
Qed.
Proof.
intros.
try discriminate.
Qed.
Proof.
intros.
unfold symbol_address.
destruct (find_symbol ge id).
{
unfold Val.add.
rewrite H.
auto.
}
{
auto.
}
Qed.
Proof.
induction ge.
intros.
unfold symbol_address.
destruct find_symbol.
eauto.
eauto.
Qed.
Proof.
intros.
unfold symbol_address.
destruct (find_symbol ge id).
{
unfold Val.addl.
rewrite H.
auto.
}
{
auto.
}
Qed.
Proof.
Admitted.
Proof.
intros until f.
unfold find_funct.
destruct v.
{
try congruence.
}
{
try congruence.
}
{
try congruence.
}
{
try congruence.
}
{
try congruence.
}
{
try congruence.
destruct (Ptrofs.eq_dec i Ptrofs.zero).
{
try congruence.
intros.
exists b.
congruence.
}
{
try congruence.
}
}
Qed.
Proof.
intros.
eauto.
Qed.
Proof.
intros.
simpl.
apply dec_eq_true.
Qed.
Proof.
unfold find_funct_ptr.
intros.
destruct find_def.
destruct g.
intuition.
try congruence.
try congruence.
intuition.
try congruence.
try discriminate.
intuition.
discriminate.
try discriminate.
Qed.
Proof.
intros.
unfold find_funct_ptr.
destruct (find_def ge b) as [[f1|v1]|].
{
intuition congruence.
}
{
intuition congruence.
}
{
intuition congruence.
}
Qed.
Proof.
induction ge.
econstructor.
unfold find_var_info.
destruct find_def.
destruct g.
try discriminate.
try congruence.
intros.
easy.
intros.
unfold find_var_info.
rewrite H.
eauto.
Qed.
Proof.
intros.
unfold find_var_info.
destruct (find_def ge b) as [[f1|v1]|].
{
intuition congruence.
}
{
intuition congruence.
}
{
intuition congruence.
}
Qed.
Proof.
Admitted.
Proof.
intros.
set (P := fun m ge => m!id = Some g <-> exists b, find_symbol ge id = Some b /\ find_def ge b = Some g).
assert (REC: forall l m ge, P m ge -> P (fold_left (fun m idg => PTree.set idg#1 idg#2 m) l m) (add_globals ge l)).
{
induction l as [ | [id1 g1] l].
{
intros.
simpl.
auto.
}
{
intros.
simpl.
apply IHl.
unfold P.
unfold add_global.
unfold find_symbol.
unfold find_def.
simpl.
rewrite ! PTree.gsspec.
destruct (peq id id1).
{
subst id1.
split.
{
intros.
inv H0.
exists (genv_next ge).
split.
{
auto.
}
{
auto.
apply PTree.gss.
}
}
{
intros.
destruct H0 as (b & A & B).
inv A.
rewrite PTree.gss in B.
auto.
}
}
{
red in H.
rewrite H.
split.
{
intros (b & A & B).
exists b.
split.
{
auto.
}
{
auto.
rewrite PTree.gso.
{
auto.
}
{
auto.
apply Plt_ne.
eapply genv_symb_range.
eauto.
}
}
}
{
intros (b & A & B).
rewrite PTree.gso in B.
{
exists b.
auto.
}
{
apply Plt_ne.
eapply genv_symb_range.
eauto.
}
}
}
}
}
{
apply REC.
unfold P.
unfold find_symbol.
unfold find_def.
simpl.
rewrite ! PTree.gempty.
split.
{
congruence.
}
{
intros (b & A & B).
congruence.
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
unfold globalenv.
eapply add_globals_ensures.
{
eauto.
(* preserves *) intros.
unfold find_symbol.
simpl.
rewrite PTree.gsspec.
destruct (peq id id0).
{
econstructor.
eauto.
}
{
auto.
}
}
{
eauto.
(* ensures *) intros.
unfold find_symbol.
simpl.
rewrite PTree.gss.
econstructor.
eauto.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros until b.
unfold globalenv.
eapply add_globals_preserves.
{
(* preserves *) unfold find_symbol.
simpl.
intros.
rewrite PTree.gsspec in H1.
destruct (peq x id).
{
subst x.
change id with (fst (id, g)).
apply List.in_map.
auto.
}
{
auto.
}
}
{
(* base *) unfold find_symbol.
simpl.
intros.
rewrite PTree.gempty in H.
discriminate.
}
Qed.
Proof.
Admitted.
Proof.
intros until g.
unfold globalenv.
apply add_globals_preserves.
{
(* preserves *) unfold find_def.
simpl.
intros.
rewrite PTree.gsspec in H1.
destruct (peq b (genv_next ge)).
{
inv H1.
exists id.
auto.
}
{
auto.
}
}
{
(* base *) unfold find_def.
simpl.
intros.
rewrite PTree.gempty in H.
discriminate.
}
Qed.
Proof.
Admitted.
Proof.
intros.
apply find_def_inversion with b.
apply find_funct_ptr_iff.
auto.
Qed.
Proof.
Admitted.
Proof.
intros.
exploit find_funct_inv.
{
eauto.
}
{
eauto.
intros [b EQ].
subst v.
rewrite find_funct_find_funct_ptr in H.
eapply find_funct_ptr_inversion.
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
exploit find_funct_ptr_inversion.
{
eauto.
}
{
eauto.
intros [id IN].
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
exploit find_funct_inversion.
{
eauto.
}
{
eauto.
intros [id IN].
eauto.
}
Qed.
Proof.
induction ge.
intros.
red.
intros.
subst.
eauto.
Qed.
Proof.
intros.
red.
intros.
subst.
elim H.
destruct ge.
eauto.
Qed.
Proof.
Admitted.
Proof.
intros until b.
unfold find_symbol.
unfold invert_symbol.
apply PTree_Properties.fold_rec.
{
intros.
rewrite H in H0.
auto.
}
{
congruence.
}
{
intros.
destruct (eq_block b v).
{
inv H2.
apply PTree.gss.
}
{
rewrite PTree.gsspec.
destruct (peq id k).
{
subst.
assert (m!k = Some b).
{
auto.
}
{
idtac.
congruence.
}
}
{
auto.
}
}
}
Qed.
Proof.
Admitted.
Proof.
intros until b.
assert (find_symbol ge id = Some b -> exists id', invert_symbol ge b = Some id').
{
unfold find_symbol.
unfold invert_symbol.
apply PTree_Properties.fold_rec.
{
intros.
rewrite H in H0.
auto.
}
{
rewrite PTree.gempty.
congruence.
}
{
intros.
destruct (eq_block b v).
{
exists k.
auto.
}
{
rewrite PTree.gsspec in H2.
destruct (peq id k).
{
inv H2.
congruence.
}
{
auto.
}
}
}
}
{
intros.
exploit H.
{
eauto.
}
{
eauto.
intros [id' A].
assert (id = id').
{
eapply genv_vars_inj.
{
eauto.
}
{
eauto.
apply invert_find_symbol.
auto.
}
}
{
congruence.
}
}
}
Qed.
Definition advance_next (gl: list (ident * globdef F V)) (x: positive) := List.fold_left (fun n g => Pos.succ n) gl x.
Proof.
unfold genv_next.
induction gl.
simpl.
intros.
eauto.
simpl.
intros.
apply IHgl.
Qed.
Proof.
induction gl.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
rewrite IHgl.
auto.
}
Qed.
Proof.
unfold genv_public.
induction gl.
simpl.
intros.
eauto.
simpl.
intros.
rewrite IHgl.
eauto.
Qed.
Proof.
induction gl.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
rewrite IHgl.
auto.
}
Qed.
Proof.
Admitted.
Proof.
unfold globalenv.
intros.
rewrite genv_public_add_globals.
auto.
Qed.
Proof.
Admitted.
Proof.
unfold block_is_volatile.
intros.
destruct (find_var_info ge b) as [gv|] eqn:FV.
{
rewrite find_var_info_iff in FV.
eapply genv_defs_range.
eauto.
}
{
discriminate.
}
Qed.
(** ** Coercing a global environment into a symbol environment *) Definition to_senv (ge: t) : Senv.t := @Senv.mksenv (find_symbol ge) (public_symbol ge) (invert_symbol ge) (block_is_volatile ge) ge.(genv_next) ge.(genv_vars_inj) (invert_find_symbol ge) (find_invert_symbol ge) (public_symbol_exists ge) ge.(genv_symb_range) (block_is_volatile_below ge).
(** * Construction of the initial memory state *) Section INITMEM.
Variable ge: t.
Definition store_init_data (m: mem) (b: block) (p: Z) (id: init_data) : option mem := match id with | Init_int8 n => Mem.store Mint8unsigned m b p (Vint n) | Init_int16 n => Mem.store Mint16unsigned m b p (Vint n) | Init_int32 n => Mem.store Mint32 m b p (Vint n) | Init_int64 n => Mem.store Mint64 m b p (Vlong n) | Init_float32 n => Mem.store Mfloat32 m b p (Vsingle n) | Init_float64 n => Mem.store Mfloat64 m b p (Vfloat n) | Init_addrof symb ofs => match find_symbol ge symb with | None => None | Some b' => Mem.store Mptr m b p (Vptr b' ofs) end | Init_space n => Some m end.
Fixpoint store_init_data_list (m: mem) (b: block) (p: Z) (idl: list init_data) {struct idl}: option mem := match idl with | nil => Some m | id :: idl' => match store_init_data m b p id with | None => None | Some m' => store_init_data_list m' b (p + init_data_size id) idl' end end.
Definition perm_globvar (gv: globvar V) : permission := if gv.(gvar_volatile) then Nonempty else if gv.(gvar_readonly) then Readable else Writable.
Definition alloc_global (m: mem) (idg: ident * globdef F V): option mem := match idg with | (id, Gfun f) => let (m1, b) := Mem.alloc m 0 1 in Mem.drop_perm m1 b 0 1 Nonempty | (id, Gvar v) => let init := v.(gvar_init) in let sz := init_data_list_size init in let (m1, b) := Mem.alloc m 0 sz in match store_zeros m1 b 0 sz with | None => None | Some m2 => match store_init_data_list m2 b 0 init with | None => None | Some m3 => Mem.drop_perm m3 b 0 sz (perm_globvar v) end end end.
Fixpoint alloc_globals (m: mem) (gl: list (ident * globdef F V)) {struct gl} : option mem := match gl with | nil => Some m | g :: gl' => match alloc_global m g with | None => None | Some m' => alloc_globals m' gl' end end.
Proof.
induction gl1.
simpl.
intros.
congruence.
simpl.
intros.
destruct alloc_global.
eauto.
congruence.
Qed.
Proof.
induction gl1.
{
simpl.
intros.
inversion H.
subst.
auto.
}
{
simpl.
intros.
destruct (alloc_global m a).
{
eauto.
}
{
eauto.
inversion H.
}
}
Qed.
Proof.
Admitted.
Proof.
intros until n.
functional induction (store_zeros m b p n).
{
intros.
inv H.
auto.
}
{
intros.
rewrite IHo.
{
eauto with mem.
}
{
eauto with mem.
}
}
{
intros.
congruence.
}
Qed.
Proof.
Admitted.
Proof.
induction idl.
{
simpl.
intros until m'.
intros.
congruence.
}
{
simpl.
intros until m'.
caseEq (store_init_data m b p a).
{
try congruence.
intros.
transitivity (Mem.nextblock m0).
{
eauto.
}
{
destruct a.
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
congruence.
}
{
simpl in H.
try (eapply Mem.nextblock_store; eauto; fail).
destruct (find_symbol ge i).
{
try congruence.
eapply Mem.nextblock_store.
eauto.
}
{
try congruence.
}
}
}
}
{
try congruence.
}
}
Qed.
Proof.
Admitted.
Proof.
unfold alloc_global.
intros.
destruct g as [id [f|v]].
{
(* function *) destruct (Mem.alloc m 0 1) as [m1 b] eqn:?.
erewrite Mem.nextblock_drop.
{
eauto.
erewrite Mem.nextblock_alloc.
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
{
(* variable *) set (init := gvar_init v) in *.
set (sz := init_data_list_size init) in *.
destruct (Mem.alloc m 0 sz) as [m1 b] eqn:?.
destruct (store_zeros m1 b 0 sz) as [m2|] eqn:?.
{
try discriminate.
destruct (store_init_data_list m2 b 0 init) as [m3|] eqn:?.
{
try discriminate.
erewrite Mem.nextblock_drop.
{
eauto.
erewrite store_init_data_list_nextblock.
{
eauto.
erewrite store_zeros_nextblock.
{
eauto.
erewrite Mem.nextblock_alloc.
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
{
eauto.
}
}
{
eauto.
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
congruence.
}
{
simpl.
intros.
destruct (alloc_global m a) as [m1|] eqn:?.
{
try discriminate.
erewrite IHgl.
{
eauto.
erewrite alloc_global_nextblock.
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
intros until n.
functional induction (store_zeros m b p n).
{
intros.
inv H.
tauto.
}
{
intros.
destruct (IHo _ H).
intros.
split.
{
eauto with mem.
}
{
eauto with mem.
}
}
{
intros.
congruence.
}
Qed.
Proof.
Admitted.
Proof.
intros.
assert (forall chunk v, Mem.store chunk m b p v = Some m' -> (Mem.perm m b' q k prm <-> Mem.perm m' b' q k prm)).
{
intros.
split.
{
eauto with mem.
}
{
eauto with mem.
}
}
{
destruct i.
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
inv H.
tauto.
}
{
simpl in H.
eauto.
destruct (find_symbol ge i).
{
try discriminate.
eauto.
}
{
try discriminate.
}
}
}
Qed.
Proof.
Admitted.
Proof.
induction idl as [ | i1 idl].
{
simpl.
intros.
inv H.
tauto.
}
{
simpl.
intros.
destruct (store_init_data m b p i1) as [m1|] eqn:S1.
{
try discriminate.
transitivity (Mem.perm m1 b' q k prm).
{
eapply store_init_data_perm.
eauto.
}
{
eapply IHidl.
eauto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct idg as [id [f|v]].
{
simpl in H.
(* function *) destruct (Mem.alloc m 0 1) as [m1 b] eqn:?.
assert (b' <> b).
{
apply Mem.valid_not_valid_diff with m.
{
eauto with mem.
}
{
eauto with mem.
}
}
{
split.
{
intros.
eapply Mem.perm_drop_3.
{
eauto.
}
{
eauto.
}
{
eauto.
eapply Mem.perm_alloc_1.
{
eauto.
}
{
eauto.
}
}
}
{
intros.
eapply Mem.perm_alloc_4.
{
eauto.
}
{
eauto.
eapply Mem.perm_drop_4.
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
}
}
{
simpl in H.
(* variable *) set (init := gvar_init v) in *.
set (sz := init_data_list_size init) in *.
destruct (Mem.alloc m 0 sz) as [m1 b] eqn:?.
destruct (store_zeros m1 b 0 sz) as [m2|] eqn:?.
{
try discriminate.
destruct (store_init_data_list m2 b 0 init) as [m3|] eqn:?.
{
try discriminate.
assert (b' <> b).
{
apply Mem.valid_not_valid_diff with m.
{
eauto with mem.
}
{
eauto with mem.
}
}
{
split.
{
intros.
eapply Mem.perm_drop_3.
{
eauto.
}
{
eauto.
}
{
eauto.
erewrite <- store_init_data_list_perm.
{
idtac.
erewrite <- store_zeros_perm.
{
idtac.
eapply Mem.perm_alloc_1.
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
{
eauto.
}
}
}
{
intros.
eapply Mem.perm_alloc_4.
{
eauto.
}
{
eauto.
erewrite store_zeros_perm.
{
idtac.
erewrite store_init_data_list_perm.
{
idtac.
eapply Mem.perm_drop_4.
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
{
eauto.
}
}
{
eauto.
}
}
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
simpl; intros.
inv H.
tauto.
simpl; intros.
destruct (alloc_global m a) as [m1|] eqn:?; try discriminate.
erewrite alloc_global_perm; eauto.
eapply IHgl; eauto.
unfold Mem.valid_block in *.
erewrite alloc_global_nextblock; eauto.
apply Plt_trans_succ; auto.
Qed.
Proof.
Admitted.
Proof.
intros until n.
functional induction (store_zeros m b p n).
{
intros.
inv H.
apply Mem.unchanged_on_refl.
}
{
intros.
apply Mem.unchanged_on_trans with m'.
{
eapply Mem.store_unchanged_on.
{
eauto.
}
{
eauto.
simpl.
intros.
apply H0.
omega.
}
}
{
apply IHo.
{
auto.
}
{
auto.
intros.
apply H0.
omega.
}
}
}
{
intros.
discriminate.
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct i.
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
inv H.
apply Mem.unchanged_on_refl.
}
{
simpl in *.
try (eapply Mem.store_unchanged_on; eauto; fail).
destruct (find_symbol ge i).
{
try congruence.
eapply Mem.store_unchanged_on.
{
eauto.
}
{
eauto.
}
}
{
try congruence.
}
}
Qed.
Proof.
Admitted.
Proof.
induction il.
{
simpl.
intros.
inv H.
apply Mem.unchanged_on_refl.
}
{
simpl.
intros.
destruct (store_init_data m b p a) as [m1|] eqn:?.
{
try congruence.
apply Mem.unchanged_on_trans with m1.
{
eapply store_init_data_unchanged.
{
eauto.
}
{
eauto.
intros.
apply H0.
tauto.
}
}
{
eapply IHil.
{
eauto.
}
{
eauto.
intros.
apply H0.
generalize (init_data_size_pos a).
omega.
}
}
}
{
try congruence.
}
}
Qed.
(** Properties related to [loadbytes] *) Definition readbytes_as_zero (m: mem) (b: block) (ofs len: Z) : Prop := forall p n, ofs <= p -> p + Z.of_nat n <= ofs + len -> Mem.loadbytes m b p (Z.of_nat n) = Some (list_repeat n (Byte Byte.zero)).
Proof.
Admitted.
Proof.
intros until n.
functional induction (store_zeros m b p n).
{
red.
intros.
destruct n0.
{
simpl.
apply Mem.loadbytes_empty.
omega.
}
{
rewrite Nat2Z.inj_succ in H1.
omegaContradiction.
}
}
{
red.
intros.
destruct (zeq p0 p).
{
subst p0.
destruct n0.
{
simpl.
apply Mem.loadbytes_empty.
omega.
}
{
rewrite Nat2Z.inj_succ in H1.
rewrite Nat2Z.inj_succ.
replace (Z.succ (Z.of_nat n0)) with (1 + Z.of_nat n0) by omega.
change (list_repeat (S n0) (Byte Byte.zero)) with ((Byte Byte.zero :: nil) ++ list_repeat n0 (Byte Byte.zero)).
apply Mem.loadbytes_concat.
{
eapply Mem.loadbytes_unchanged_on with (P := fun b1 ofs1 => ofs1 = p).
{
eapply store_zeros_unchanged.
{
eauto.
}
{
eauto.
intros.
omega.
}
}
{
intros.
omega.
}
{
replace (Byte Byte.zero :: nil) with (encode_val Mint8unsigned Vzero).
{
change 1 with (size_chunk Mint8unsigned).
eapply Mem.loadbytes_store_same.
eauto.
}
{
unfold encode_val.
unfold encode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
}
}
{
eapply IHo.
{
eauto.
}
{
eauto.
omega.
}
{
eauto.
omega.
}
}
{
omega.
}
{
omega.
}
}
}
{
eapply IHo.
{
eauto.
}
{
eauto.
omega.
}
{
eauto.
omega.
}
}
}
{
red.
intros.
discriminate.
}
Qed.
Definition bytes_of_init_data (i: init_data): list memval := match i with | Init_int8 n => inj_bytes (encode_int 1%nat (Int.unsigned n)) | Init_int16 n => inj_bytes (encode_int 2%nat (Int.unsigned n)) | Init_int32 n => inj_bytes (encode_int 4%nat (Int.unsigned n)) | Init_int64 n => inj_bytes (encode_int 8%nat (Int64.unsigned n)) | Init_float32 n => inj_bytes (encode_int 4%nat (Int.unsigned (Float32.to_bits n))) | Init_float64 n => inj_bytes (encode_int 8%nat (Int64.unsigned (Float.to_bits n))) | Init_space n => list_repeat (Z.to_nat n) (Byte Byte.zero) | Init_addrof id ofs => match find_symbol ge id with | Some b => inj_value (if Archi.ptr64 then Q64 else Q32) (Vptr b ofs) | None => list_repeat (if Archi.ptr64 then 8%nat else 4%nat) Undef end end.
Proof.
intros.
eauto.
Qed.
Proof.
intros.
unfold Mptr.
simpl.
destruct Archi.ptr64.
{
auto.
}
{
auto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct i.
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
inv H.
simpl.
assert (EQ: Z.of_nat (Z.to_nat z) = Z.max z 0).
{
destruct (zle 0 z).
{
rewrite Z2Nat.id.
{
xomega.
}
{
xomega.
}
}
{
destruct z.
{
try discriminate.
}
{
try discriminate.
}
{
try discriminate.
simpl.
xomega.
}
}
}
{
rewrite <- EQ.
apply H0.
{
omega.
}
{
simpl.
omega.
}
}
}
{
simpl in H.
try apply (Mem.loadbytes_store_same _ _ _ _ _ _ H).
rewrite init_data_size_addrof.
simpl.
destruct (find_symbol ge i) as [b'|].
{
try discriminate.
rewrite (Mem.loadbytes_store_same _ _ _ _ _ _ H).
unfold encode_val.
unfold Mptr.
destruct Archi.ptr64.
{
reflexivity.
}
{
reflexivity.
}
}
{
try discriminate.
}
}
Qed.
Fixpoint bytes_of_init_data_list (il: list init_data): list memval := match il with | nil => nil | i :: il => bytes_of_init_data i ++ bytes_of_init_data_list il end.
Proof.
Admitted.
Proof.
induction il as [ | i1 il].
{
simpl.
intros.
apply Mem.loadbytes_empty.
omega.
}
{
simpl.
intros.
generalize (init_data_size_pos i1) (init_data_list_size_pos il).
intros P1 PL.
destruct (store_init_data m b p i1) as [m1|] eqn:S.
{
try discriminate.
apply Mem.loadbytes_concat.
{
eapply Mem.loadbytes_unchanged_on with (P := fun b1 ofs1 => ofs1 < p + init_data_size i1).
{
eapply store_init_data_list_unchanged.
{
eauto.
}
{
eauto.
intros.
omega.
}
}
{
intros.
omega.
}
{
eapply store_init_data_loadbytes.
{
eauto.
}
{
eauto.
red.
intros.
apply H0.
{
omega.
}
{
omega.
}
}
}
}
{
apply IHil with m1.
{
auto.
}
{
auto.
red.
intros.
eapply Mem.loadbytes_unchanged_on with (P := fun b1 ofs1 => p + init_data_size i1 <= ofs1).
{
eapply store_init_data_unchanged.
{
eauto.
}
{
eauto.
intros.
omega.
}
}
{
intros.
omega.
}
{
apply H0.
{
omega.
}
{
omega.
}
}
}
}
{
auto.
}
{
auto.
}
}
{
try discriminate.
}
}
Qed.
(** Properties related to [load] *) Definition read_as_zero (m: mem) (b: block) (ofs len: Z) : Prop := forall chunk p, ofs <= p -> p + size_chunk chunk <= ofs + len -> (align_chunk chunk | p) -> Mem.load chunk m b p = Some (match chunk with | Mint8unsigned | Mint8signed | Mint16unsigned | Mint16signed | Mint32 => Vint Int.zero | Mint64 => Vlong Int64.zero | Mfloat32 => Vsingle Float32.zero | Mfloat64 => Vfloat Float.zero | Many32 | Many64 => Vundef end).
Proof.
Admitted.
Proof.
intros.
red.
intros.
eapply Mem.load_unchanged_on.
{
eauto.
}
{
eauto.
intros.
apply H1.
omega.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
red.
intros.
transitivity (Some(decode_val chunk (list_repeat (size_chunk_nat chunk) (Byte Byte.zero)))).
{
apply Mem.loadbytes_load.
{
auto.
rewrite size_chunk_conv.
eapply store_zeros_loadbytes.
{
eauto.
}
{
eauto.
}
{
eauto.
rewrite <- size_chunk_conv.
auto.
}
}
{
auto.
}
}
{
f_equal.
destruct chunk.
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
{
unfold decode_val.
unfold decode_int.
unfold rev_if_be.
destruct Archi.big_endian.
{
reflexivity.
}
{
reflexivity.
}
}
}
Qed.
Fixpoint load_store_init_data (m: mem) (b: block) (p: Z) (il: list init_data) {struct il} : Prop := match il with | nil => True | Init_int8 n :: il' => Mem.load Mint8unsigned m b p = Some(Vint(Int.zero_ext 8 n)) /\ load_store_init_data m b (p + 1) il' | Init_int16 n :: il' => Mem.load Mint16unsigned m b p = Some(Vint(Int.zero_ext 16 n)) /\ load_store_init_data m b (p + 2) il' | Init_int32 n :: il' => Mem.load Mint32 m b p = Some(Vint n) /\ load_store_init_data m b (p + 4) il' | Init_int64 n :: il' => Mem.load Mint64 m b p = Some(Vlong n) /\ load_store_init_data m b (p + 8) il' | Init_float32 n :: il' => Mem.load Mfloat32 m b p = Some(Vsingle n) /\ load_store_init_data m b (p + 4) il' | Init_float64 n :: il' => Mem.load Mfloat64 m b p = Some(Vfloat n) /\ load_store_init_data m b (p + 8) il' | Init_addrof symb ofs :: il' => (exists b', find_symbol ge symb = Some b' /\ Mem.load Mptr m b p = Some(Vptr b' ofs)) /\ load_store_init_data m b (p + size_chunk Mptr) il' | Init_space n :: il' => read_as_zero m b p n /\ load_store_init_data m b (p + Z.max n 0) il' end.
Proof.
Admitted.
Proof.
assert (A: forall chunk v m b p m1 il m', Mem.store chunk m b p v = Some m1 -> store_init_data_list m1 b (p + size_chunk chunk) il = Some m' -> Mem.load chunk m' b p = Some(Val.load_result chunk v)).
{
intros.
eapply Mem.load_unchanged_on with (P := fun b' ofs' => ofs' < p + size_chunk chunk).
{
eapply store_init_data_list_unchanged.
{
eauto.
}
{
eauto.
intros.
omega.
}
}
{
intros.
tauto.
}
{
eapply Mem.load_store_same.
eauto.
}
}
{
induction il.
{
simpl.
auto.
}
{
simpl.
intros.
destruct (store_init_data m b p a) as [m1|] eqn:?.
{
try congruence.
exploit IHil.
{
eauto.
}
{
eauto.
set (P := fun (b': block) ofs' => p + init_data_size a <= ofs').
apply read_as_zero_unchanged with (m := m) (P := P).
{
red.
intros.
apply H0.
{
auto.
generalize (init_data_size_pos a).
omega.
}
{
auto.
omega.
}
{
auto.
}
}
{
eapply store_init_data_unchanged with (P := P).
{
eauto.
}
{
eauto.
intros.
unfold P.
omega.
}
}
{
intros.
unfold P.
omega.
}
}
{
eauto.
intro D.
destruct a.
{
simpl in Heqo.
split.
{
auto.
eapply (A Mint8unsigned (Vint i)).
{
eauto.
}
{
eauto.
}
}
{
auto.
}
}
{
simpl in Heqo.
split.
{
auto.
eapply (A Mint16unsigned (Vint i)).
{
eauto.
}
{
eauto.
}
}
{
auto.
}
}
{
simpl in Heqo.
split.
{
auto.
eapply (A Mint32 (Vint i)).
{
eauto.
}
{
eauto.
}
}
{
auto.
}
}
{
simpl in Heqo.
split.
{
auto.
eapply (A Mint64 (Vlong i)).
{
eauto.
}
{
eauto.
}
}
{
auto.
}
}
{
simpl in Heqo.
split.
{
auto.
eapply (A Mfloat32 (Vsingle f)).
{
eauto.
}
{
eauto.
}
}
{
auto.
}
}
{
simpl in Heqo.
split.
{
auto.
eapply (A Mfloat64 (Vfloat f)).
{
eauto.
}
{
eauto.
}
}
{
auto.
}
}
{
simpl in Heqo.
split.
{
auto.
set (P := fun (b': block) ofs' => ofs' < p + init_data_size (Init_space z)).
inv Heqo.
apply read_as_zero_unchanged with (m := m1) (P := P).
{
red.
intros.
apply H0.
{
auto.
}
{
auto.
simpl.
generalize (init_data_list_size_pos il).
xomega.
}
{
auto.
}
}
{
eapply store_init_data_list_unchanged.
{
eauto.
}
{
eauto.
intros.
unfold P.
omega.
}
}
{
intros.
unfold P.
simpl.
xomega.
}
}
{
auto.
}
}
{
simpl in Heqo.
rewrite init_data_size_addrof in *.
split.
{
auto.
destruct (find_symbol ge i).
{
try congruence.
exists b0.
split.
{
auto.
}
{
auto.
transitivity (Some (Val.load_result Mptr (Vptr b0 i0))).
{
eapply (A Mptr (Vptr b0 i0)).
{
eauto.
}
{
eauto.
}
}
{
unfold Val.load_result.
unfold Mptr.
destruct Archi.ptr64.
{
auto.
}
{
auto.
}
}
}
}
{
try congruence.
}
}
{
auto.
}
}
}
}
{
try congruence.
}
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct g as [f|v].
{
simpl in H.
(* function *) destruct (Mem.alloc m 0 1) as [m1 b] eqn:?.
set (Q := fun b' (ofs: Z) => b' <> b).
apply Mem.unchanged_on_implies with Q.
{
apply Mem.unchanged_on_trans with m1.
{
eapply Mem.alloc_unchanged_on.
eauto.
}
{
eapply Mem.drop_perm_unchanged_on.
{
eauto.
}
{
eauto.
}
}
}
{
intros.
red.
apply Mem.valid_not_valid_diff with m.
{
eauto with mem.
}
{
eauto with mem.
}
}
}
{
simpl in H.
(* variable *) set (init := gvar_init v) in *.
set (sz := init_data_list_size init) in *.
destruct (Mem.alloc m 0 sz) as [m1 b] eqn:?.
destruct (store_zeros m1 b 0 sz) as [m2|] eqn:?.
{
try discriminate.
destruct (store_init_data_list m2 b 0 init) as [m3|] eqn:?.
{
try discriminate.
set (Q := fun b' (ofs: Z) => b' <> b).
apply Mem.unchanged_on_implies with Q.
{
apply Mem.unchanged_on_trans with m1.
{
eapply Mem.alloc_unchanged_on.
eauto.
}
{
apply Mem.unchanged_on_trans with m2.
{
eapply store_zeros_unchanged.
{
eauto.
}
{
eauto.
}
}
{
apply Mem.unchanged_on_trans with m3.
{
eapply store_init_data_list_unchanged.
{
eauto.
}
{
eauto.
}
}
{
eapply Mem.drop_perm_unchanged_on.
{
eauto.
}
{
eauto.
}
}
}
}
}
{
intros.
red.
apply Mem.valid_not_valid_diff with m.
{
eauto with mem.
}
{
eauto with mem.
}
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
inv H.
apply Mem.unchanged_on_refl.
}
{
simpl.
intros.
destruct (alloc_global m a) as [m''|] eqn:?.
{
try discriminate.
destruct a as [id g].
apply Mem.unchanged_on_trans with m''.
{
eapply alloc_global_unchanged.
eauto.
}
{
apply IHgl.
auto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction il.
{
intro p.
simpl.
auto.
}
{
intro p.
simpl.
rewrite ! H.
destruct a.
{
intuition.
}
{
intuition.
}
{
intuition.
}
{
intuition.
}
{
intuition.
}
{
intuition.
}
{
intuition.
red.
intros.
rewrite H.
auto.
}
{
intuition.
}
}
Qed.
Definition globals_initialized (g: t) (m: mem) := forall b gd, find_def g b = Some gd -> match gd with | Gfun f => Mem.perm m b 0 Cur Nonempty /\ (forall ofs k p, Mem.perm m b ofs k p -> ofs = 0 /\ p = Nonempty) | Gvar v => Mem.range_perm m b 0 (init_data_list_size v.(gvar_init)) Cur (perm_globvar v) /\ (forall ofs k p, Mem.perm m b ofs k p -> 0 <= ofs < init_data_list_size v.(gvar_init) /\ perm_order (perm_globvar v) p) /\ (v.(gvar_volatile) = false -> load_store_init_data m b 0 v.(gvar_init)) /\ (v.(gvar_volatile) = false -> Mem.loadbytes m b 0 (init_data_list_size v.(gvar_init)) = Some (bytes_of_init_data_list v.(gvar_init))) end.
Proof.
Admitted.
Proof.
intros.
exploit alloc_global_nextblock.
{
eauto.
}
{
eauto.
intros NB.
split.
{
(* globals-initialized *) red.
intros.
unfold find_def in H2.
simpl in H2.
rewrite PTree.gsspec in H2.
destruct (peq b (genv_next g)).
{
inv H2.
destruct gd0 as [f|v].
{
simpl in H0.
destruct (Mem.alloc m 0 1) as [m1 b] eqn:ALLOC.
exploit Mem.alloc_result.
{
eauto.
}
{
eauto.
intros RES.
rewrite H.
rewrite <- RES.
split.
{
eapply Mem.perm_drop_1.
{
eauto.
}
{
eauto.
omega.
}
}
{
intros.
assert (0 <= ofs < 1).
{
eapply Mem.perm_alloc_3.
{
eauto.
}
{
eauto.
eapply Mem.perm_drop_4.
{
eauto.
}
{
eauto.
}
}
}
{
exploit Mem.perm_drop_2.
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
intros ORD.
split.
{
omega.
}
{
inv ORD.
{
auto.
}
{
auto.
}
}
}
}
}
}
}
{
simpl in H0.
set (init := gvar_init v) in *.
set (sz := init_data_list_size init) in *.
destruct (Mem.alloc m 0 sz) as [m1 b] eqn:?.
destruct (store_zeros m1 b 0 sz) as [m2|] eqn:?.
{
try discriminate.
destruct (store_init_data_list m2 b 0 init) as [m3|] eqn:?.
{
try discriminate.
exploit Mem.alloc_result.
{
eauto.
}
{
eauto.
intro RES.
replace (genv_next g) with b by congruence.
split.
{
red.
intros.
eapply Mem.perm_drop_1.
{
eauto.
}
{
eauto.
}
}
{
split.
{
intros.
assert (0 <= ofs < sz).
{
eapply Mem.perm_alloc_3.
{
eauto.
}
{
eauto.
erewrite store_zeros_perm by eauto.
erewrite store_init_data_list_perm by eauto.
eapply Mem.perm_drop_4.
{
eauto.
}
{
eauto.
}
}
}
{
split.
{
auto.
}
{
auto.
eapply Mem.perm_drop_2.
{
eauto.
}
{
eauto.
}
{
eauto.
}
}
}
}
{
split.
{
intros NOTVOL.
apply load_store_init_data_invariant with m3.
{
intros.
eapply Mem.load_drop.
{
eauto.
}
{
eauto.
right.
right.
right.
unfold perm_globvar.
rewrite NOTVOL.
destruct (gvar_readonly v).
{
auto with mem.
}
{
auto with mem.
}
}
}
{
eapply store_init_data_list_charact.
{
eauto.
}
{
eauto.
eapply store_zeros_read_as_zero.
eauto.
}
}
}
{
intros NOTVOL.
transitivity (Mem.loadbytes m3 b 0 sz).
{
eapply Mem.loadbytes_drop.
{
eauto.
}
{
eauto.
right.
right.
right.
unfold perm_globvar.
rewrite NOTVOL.
destruct (gvar_readonly v).
{
auto with mem.
}
{
auto with mem.
}
}
}
{
eapply store_init_data_list_loadbytes.
{
eauto.
}
{
eauto.
eapply store_zeros_loadbytes.
eauto.
}
}
}
}
}
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
}
{
assert (U: Mem.unchanged_on (fun _ _ => True) m m').
{
eapply alloc_global_unchanged.
eauto.
}
{
idtac.
assert (VALID: Mem.valid_block m b).
{
red.
rewrite <- H.
eapply genv_defs_range.
eauto.
}
{
exploit H1.
{
eauto.
}
{
eauto.
destruct gd0 as [f|v].
{
intros [A B].
split.
{
intros.
eapply Mem.perm_unchanged_on.
{
eauto.
}
{
eauto.
exact I.
}
{
eauto.
}
}
{
intros.
eapply B.
eapply Mem.perm_unchanged_on_2.
{
eauto.
}
{
eauto.
exact I.
}
{
eauto.
}
{
eauto.
}
}
}
{
intros (A & B & C & D).
split.
{
idtac.
red.
intros.
eapply Mem.perm_unchanged_on.
{
eauto.
}
{
eauto.
exact I.
}
{
eauto.
}
}
{
split.
{
idtac.
intros.
eapply B.
eapply Mem.perm_unchanged_on_2.
{
eauto.
}
{
eauto.
exact I.
}
{
eauto.
}
{
eauto.
}
}
{
split.
{
intros.
apply load_store_init_data_invariant with m.
{
auto.
intros.
eapply Mem.load_unchanged_on_1.
{
eauto.
}
{
eauto.
}
{
eauto.
intros.
exact I.
}
}
{
auto.
}
}
{
intros.
eapply Mem.loadbytes_unchanged_on.
{
eauto.
}
{
eauto.
intros.
exact I.
}
{
eauto.
}
}
}
}
}
}
}
}
}
}
{
simpl.
congruence.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
inv H.
auto.
}
{
simpl.
intros.
destruct a as [id g].
destruct (alloc_global m (id, g)) as [m1|] eqn:?.
{
try discriminate.
exploit alloc_global_initialized.
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
intros [P Q].
eapply IHgl.
{
eauto.
}
{
eauto.
}
{
eauto.
}
}
}
{
try discriminate.
}
}
Qed.
End INITMEM.
Definition init_mem (p: program F V) := alloc_globals (globalenv p) Mem.empty p.(prog_defs).
Proof.
Admitted.
Proof.
unfold init_mem.
intros.
exploit alloc_globals_nextblock.
{
eauto.
}
{
eauto.
rewrite Mem.nextblock_empty.
intro.
generalize (genv_next_add_globals (prog_defs p) (empty_genv (prog_public p))).
fold (globalenv p).
simpl genv_next.
intros.
congruence.
}
Qed.
Proof.
Admitted.
Proof.
intros.
red.
erewrite <- init_mem_genv_next.
{
eauto.
eapply genv_symb_range.
eauto.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
red.
erewrite <- init_mem_genv_next.
{
eauto.
eapply genv_defs_range.
eauto.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite find_funct_ptr_iff in H0.
eapply find_def_not_fresh.
{
eauto.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite find_var_info_iff in H0.
eapply find_def_not_fresh.
{
eauto.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
apply alloc_globals_initialized with Mem.empty.
{
auto.
}
{
rewrite Mem.nextblock_empty.
auto.
}
{
red.
intros.
unfold find_def in H0.
simpl in H0.
rewrite PTree.gempty in H0.
discriminate.
}
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite find_var_info_iff in H.
exploit init_mem_characterization_gen.
{
eauto.
}
{
eauto.
}
{
eauto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite find_funct_ptr_iff in H.
exploit init_mem_characterization_gen.
{
eauto.
}
{
eauto.
}
{
eauto.
}
Qed.
(** ** Compatibility with memory injections *) Section INITMEM_INJ.
Variable ge: t.
Variable thr: block.
Hypothesis symb_inject: forall id b, find_symbol ge id = Some b -> Plt b thr.
Proof.
Admitted.
Proof.
intros until n.
functional induction (store_zeros m b p n).
{
intros.
inv H1.
auto.
}
{
intros.
apply IHo.
{
auto.
eapply Mem.store_inject_neutral.
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
constructor.
}
}
{
auto.
}
{
auto.
}
}
{
intros.
inv H1.
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct id.
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
congruence.
}
{
simpl in H1.
try (eapply Mem.store_inject_neutral; eauto; fail).
destruct (find_symbol ge i) as [b'|] eqn:E.
{
try discriminate.
eapply Mem.store_inject_neutral.
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
econstructor.
{
unfold Mem.flat_inj.
apply pred_dec_true.
auto.
eauto.
}
{
rewrite Ptrofs.add_zero.
auto.
}
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction idl.
{
simpl.
intros.
congruence.
}
{
simpl.
intros.
destruct (store_init_data ge m b p a) as [m1|] eqn:E.
{
try discriminate.
eapply IHidl.
{
eapply store_init_data_neutral.
{
eauto.
}
{
eauto.
}
{
eauto.
}
}
{
auto.
}
{
eauto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct idg as [id [f|v]].
{
simpl in H.
(* function *) destruct (Mem.alloc m 0 1) as [m1 b] eqn:?.
assert (Plt b thr).
{
rewrite (Mem.alloc_result _ _ _ _ _ Heqp).
auto.
}
{
eapply Mem.drop_inject_neutral.
{
eauto.
}
{
eauto.
eapply Mem.alloc_inject_neutral.
{
eauto.
}
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
}
{
simpl in H.
(* variable *) set (init := gvar_init v) in *.
set (sz := init_data_list_size init) in *.
destruct (Mem.alloc m 0 sz) as [m1 b] eqn:?.
destruct (store_zeros m1 b 0 sz) as [m2|] eqn:?.
{
try discriminate.
destruct (store_init_data_list ge m2 b 0 init) as [m3|] eqn:?.
{
try discriminate.
assert (Plt b thr).
{
rewrite (Mem.alloc_result _ _ _ _ _ Heqp).
auto.
}
{
eapply Mem.drop_inject_neutral.
{
eauto.
}
{
eauto.
eapply store_init_data_list_neutral with (m := m2) (b := b).
{
eauto.
eapply store_zeros_neutral with (m := m1).
{
eauto.
eapply Mem.alloc_inject_neutral.
{
eauto.
}
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
simpl.
intros.
apply Ple_refl.
}
{
simpl.
intros.
apply Ple_trans with (Pos.succ x).
{
apply Ple_succ.
}
{
eauto.
}
}
Qed.
Proof.
Admitted.
Proof.
induction gl.
{
intros.
simpl in *.
congruence.
}
{
intros.
exploit alloc_globals_nextblock.
{
eauto.
}
{
eauto.
intros EQ.
simpl in *.
destruct (alloc_global ge m a) as [m1|] eqn:E.
{
try discriminate.
exploit alloc_global_neutral.
{
eauto.
}
{
eauto.
}
{
eauto.
assert (Ple (Pos.succ (Mem.nextblock m)) (Mem.nextblock m')).
{
rewrite EQ.
apply advance_next_le.
}
{
unfold Plt in *.
unfold Ple in *.
zify.
omega.
}
}
{
eauto.
}
}
{
try discriminate.
}
}
}
Qed.
End INITMEM_INJ.
Proof.
Admitted.
Proof.
unfold init_mem.
intros.
apply Mem.neutral_inject.
eapply alloc_globals_neutral.
{
eauto.
intros.
exploit find_symbol_not_fresh.
{
eauto.
}
{
eauto.
}
{
eauto.
}
}
{
eauto.
}
{
eauto.
apply Mem.empty_inject_neutral.
}
{
eauto.
apply Ple_refl.
}
Qed.
(** ** Sufficient and necessary conditions for the initial memory to exist. *) (** Alignment properties *) Definition init_data_alignment (i: init_data) : Z := match i with | Init_int8 n => 1 | Init_int16 n => 2 | Init_int32 n => 4 | Init_int64 n => 8 | Init_float32 n => 4 | Init_float64 n => 4 | Init_addrof symb ofs => if Archi.ptr64 then 8 else 4 | Init_space n => 1 end.
Fixpoint init_data_list_aligned (p: Z) (il: list init_data) {struct il} : Prop := match il with | nil => True | i1 :: il => (init_data_alignment i1 | p) /\ init_data_list_aligned (p + init_data_size i1) il end.
Section INITMEM_INVERSION.
Variable ge: t.
Proof.
Admitted.
Proof.
intros.
assert (DFL: forall chunk v, Mem.store chunk m b p v = Some m' -> align_chunk chunk = init_data_alignment i -> (init_data_alignment i | p)).
{
intros.
apply Mem.store_valid_access_3 in H0.
destruct H0.
congruence.
}
{
destruct i.
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
}
{
simpl in H.
eauto.
simpl.
apply Z.divide_1_l.
}
{
simpl in H.
eauto.
destruct (find_symbol ge i).
{
try discriminate.
eapply DFL.
{
eassumption.
}
{
unfold Mptr.
unfold init_data_alignment.
destruct Archi.ptr64.
{
auto.
}
{
auto.
}
}
}
{
try discriminate.
}
}
}
Qed.
Proof.
Admitted.
Proof.
induction il as [ | i1 il].
{
simpl.
intros.
auto.
}
{
simpl.
intros.
destruct (store_init_data ge m b p i1) as [m1|] eqn:S1.
{
try discriminate.
split.
{
eauto.
eapply store_init_data_aligned.
eauto.
}
{
eauto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction il as [ | i1 il].
{
simpl.
intros.
contradiction.
}
{
simpl.
intros.
destruct (store_init_data ge m b p i1) as [m1|] eqn:S1.
{
try discriminate.
destruct H0.
{
subst i1.
simpl in S1.
destruct (find_symbol ge i) as [b'|].
{
exists b'.
auto.
}
{
discriminate.
}
}
{
eapply IHil.
{
eauto.
}
{
eauto.
}
}
}
{
try discriminate.
}
}
Qed.
End INITMEM_INVERSION.
Proof.
Admitted.
Proof.
intros until v.
unfold init_mem.
set (ge := globalenv p).
revert m.
generalize Mem.empty.
generalize (prog_defs p).
induction l as [ | idg1 defs ].
{
simpl.
intros m m'.
intros.
contradiction.
}
{
simpl.
intros m m'.
intros.
destruct (alloc_global ge m idg1) as [m''|] eqn:A.
{
try discriminate.
destruct H0.
{
subst idg1.
simpl in A.
set (il := gvar_init v) in *.
set (sz := init_data_list_size il) in *.
destruct (Mem.alloc m 0 sz) as [m1 b].
destruct (store_zeros m1 b 0 sz) as [m2|].
{
try discriminate.
destruct (store_init_data_list ge m2 b 0 il) as [m3|] eqn:B.
{
try discriminate.
split.
{
eapply store_init_data_list_aligned.
eauto.
}
{
intros.
eapply store_init_data_list_free_idents.
{
eauto.
}
{
eauto.
}
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
{
eapply IHdefs.
{
eauto.
}
{
eauto.
}
}
}
{
try discriminate.
}
}
Qed.
Section INITMEM_EXISTS.
Variable ge: t.
Proof.
Admitted.
Proof.
intros until n.
functional induction (store_zeros m b p n).
{
intros PERM.
exists m.
auto.
}
{
intros PERM.
apply IHo.
red.
intros.
eapply Mem.perm_store_1.
{
eauto.
}
{
eauto.
apply PERM.
omega.
}
}
{
intros PERM.
destruct (Mem.valid_access_store m Mint8unsigned b p Vzero) as (m' & STORE).
{
split.
{
red.
intros.
apply Mem.perm_cur.
apply PERM.
simpl in H.
omega.
}
{
simpl.
apply Z.divide_1_l.
}
}
{
congruence.
}
}
Qed.
Proof.
Admitted.
Proof.
intros.
assert (DFL: forall chunk v, init_data_size i = size_chunk chunk -> init_data_alignment i = align_chunk chunk -> exists m', Mem.store chunk m b p v = Some m').
{
intros.
destruct (Mem.valid_access_store m chunk b p v) as (m' & STORE).
{
split.
{
rewrite <- H2.
auto.
}
{
rewrite <- H3.
auto.
}
}
{
exists m'.
auto.
}
}
{
destruct i.
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
}
{
eauto.
simpl.
exists m.
auto.
}
{
eauto.
simpl.
exploit H1.
{
eauto.
}
{
eauto.
intros (b1 & FS).
rewrite FS.
eapply DFL.
{
unfold init_data_size.
unfold Mptr.
destruct Archi.ptr64.
{
auto.
}
{
auto.
}
}
{
unfold init_data_alignment.
unfold Mptr.
destruct Archi.ptr64.
{
auto.
}
{
auto.
}
}
}
}
}
Qed.
Proof.
Admitted.
Proof.
induction il as [ | i1 il ].
{
simpl.
intros.
exists m.
auto.
}
{
simpl.
intros.
destruct H0.
destruct (@store_init_data_exists m b p i1) as (m1 & S1).
{
eauto.
red.
intros.
apply H.
generalize (init_data_list_size_pos il).
omega.
}
{
eauto.
}
{
eauto.
}
{
eauto.
rewrite S1.
apply IHil.
{
eauto.
red.
intros.
erewrite <- store_init_data_perm by eauto.
apply H.
generalize (init_data_size_pos i1).
omega.
}
{
eauto.
}
{
eauto.
}
}
}
Qed.
Proof.
Admitted.
Proof.
intros m [id [f|v]].
{
intros.
simpl.
destruct (Mem.alloc m 0 1) as [m1 b] eqn:ALLOC.
destruct (Mem.range_perm_drop_2 m1 b 0 1 Nonempty) as [m2 DROP].
{
red.
intros.
eapply Mem.perm_alloc_2.
{
eauto.
}
{
eauto.
}
}
{
exists m2.
auto.
}
}
{
intros.
simpl.
destruct H as [P Q].
set (sz := init_data_list_size (gvar_init v)).
destruct (Mem.alloc m 0 sz) as [m1 b] eqn:ALLOC.
assert (P1: Mem.range_perm m1 b 0 sz Cur Freeable).
{
red.
intros.
eapply Mem.perm_alloc_2.
{
eauto.
}
{
eauto.
}
}
{
idtac.
destruct (@store_zeros_exists m1 b 0 sz) as [m2 ZEROS].
{
red.
intros.
apply Mem.perm_implies with Freeable.
{
auto with mem.
}
{
auto with mem.
}
}
{
rewrite ZEROS.
assert (P2: Mem.range_perm m2 b 0 sz Cur Freeable).
{
red.
intros.
erewrite <- store_zeros_perm by eauto.
eauto.
}
{
destruct (@store_init_data_list_exists b (gvar_init v) m2 0) as [m3 STORE].
{
auto.
red.
intros.
apply Mem.perm_implies with Freeable.
{
auto with mem.
}
{
auto with mem.
}
}
{
auto.
}
{
auto.
}
{
auto.
rewrite STORE.
assert (P3: Mem.range_perm m3 b 0 sz Cur Freeable).
{
red.
intros.
erewrite <- store_init_data_list_perm by eauto.
eauto.
}
{
destruct (Mem.range_perm_drop_2 m3 b 0 sz (perm_globvar v)) as [m4 DROP].
{
auto.
}
{
auto.
exists m4.
auto.
}
}
}
}
}
}
}
Qed.
End INITMEM_EXISTS.
Proof.
Admitted.
Proof.
intros.
set (ge := globalenv p) in *.
unfold init_mem.
revert H.
generalize (prog_defs p) Mem.empty.
induction l as [ | idg l].
{
simpl.
intros.
exists m.
auto.
}
{
simpl.
intros.
destruct (@alloc_global_exists ge m idg) as [m1 A1].
{
destruct idg as [id [f|v]].
{
eauto.
}
{
eauto.
}
}
{
fold ge.
rewrite A1.
eapply IHl.
eauto.
}
}
Qed.
End GENV.
(** * Commutation with program transformations *) Section MATCH_GENVS.
Context {A B V W: Type} (R: globdef A V -> globdef B W -> Prop).
Record match_genvs (ge1: t A V) (ge2: t B W): Prop := { mge_next: genv_next ge2 = genv_next ge1; mge_symb: forall id, PTree.get id (genv_symb ge2) = PTree.get id (genv_symb ge1); mge_defs: forall b, option_rel R (PTree.get b (genv_defs ge1)) (PTree.get b (genv_defs ge2)) }.
Proof.
Admitted.
Proof.
intros.
destruct H.
constructor.
{
simpl.
intros.
congruence.
}
{
simpl.
intros.
rewrite mge_next0.
rewrite ! PTree.gsspec.
destruct (peq id0 id).
{
auto.
}
{
auto.
}
}
{
simpl.
intros.
rewrite mge_next0.
rewrite ! PTree.gsspec.
destruct (peq b (genv_next ge1)).
{
constructor.
auto.
}
{
auto.
}
}
Qed.
Proof.
Admitted.
Proof.
induction 1.
{
intros.
simpl.
auto.
}
{
intros.
simpl.
destruct a1 as [id1 g1].
destruct b1 as [id2 g2].
simpl in *.
destruct H.
subst id2.
apply IHlist_forall2.
apply add_global_match.
{
auto.
}
{
auto.
}
}
Qed.
End MATCH_GENVS.
Section MATCH_PROGRAMS.
Context {C F1 V1 F2 V2: Type} {LC: Linker C} {LF: Linker F1} {LV: Linker V1}.
Variable match_fundef: C -> F1 -> F2 -> Prop.
Variable match_varinfo: V1 -> V2 -> Prop.
Variable ctx: C.
Variable p: program F1 V1.
Variable tp: program F2 V2.
Hypothesis progmatch: match_program_gen match_fundef match_varinfo ctx p tp.
Proof.
Admitted.
Proof.
intros.
apply add_globals_match.
{
apply progmatch.
}
{
constructor.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
auto.
}
{
simpl.
intros.
auto.
rewrite ! PTree.gempty.
constructor.
}
}
Qed.
Proof.
Admitted.
Proof (mge_defs globalenvs_match).
Proof.
Admitted.
Proof.
intros.
generalize (find_def_match_2 b).
rewrite H.
intros R.
inv R.
exists y.
auto.
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite find_funct_ptr_iff in *.
apply find_def_match in H.
destruct H as (tg & P & Q).
inv Q.
exists ctx', f2.
intuition auto.
apply find_funct_ptr_iff.
auto.
Qed.
Proof.
Admitted.
Proof.
intros.
exploit find_funct_inv.
{
eauto.
}
{
eauto.
intros [b EQ].
subst v.
rewrite find_funct_find_funct_ptr in H.
rewrite find_funct_find_funct_ptr.
apply find_funct_ptr_match.
auto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
rewrite find_var_info_iff in *.
apply find_def_match in H.
destruct H as (tg & P & Q).
inv Q.
exists v2.
split.
{
auto.
apply find_var_info_iff.
auto.
}
{
auto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
destruct globalenvs_match.
apply mge_symb0.
Qed.
Proof.
Admitted.
Proof.
red.
simpl.
repeat split.
{
apply find_symbol_match.
}
{
intros.
unfold public_symbol.
rewrite find_symbol_match.
rewrite ! globalenv_public.
destruct progmatch as (P & Q & R).
rewrite R.
auto.
}
{
intros.
unfold block_is_volatile.
destruct globalenvs_match as [P Q R].
specialize (R b).
unfold find_var_info.
unfold find_def.
inv R.
{
auto.
}
{
auto.
inv H1.
{
auto.
}
{
auto.
inv H2.
auto.
}
}
}
Qed.
Proof.
Admitted.
Proof.
induction idl.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
destruct (store_init_data (globalenv p) m b ofs a) as [m1|] eqn:S.
{
try discriminate.
assert (X: store_init_data (globalenv tp) m b ofs a = Some m1).
{
destruct a.
{
auto.
}
{
auto.
}
{
auto.
}
{
auto.
}
{
auto.
}
{
auto.
}
{
auto.
}
{
auto.
simpl.
rewrite find_symbol_match.
auto.
}
}
{
rewrite X.
auto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
induction 1.
{
simpl.
intros.
auto.
}
{
simpl.
intros.
destruct (alloc_global (globalenv p) m a1) as [m1|] eqn:?.
{
try discriminate.
assert (X: alloc_global (globalenv tp) m b1 = Some m1).
{
destruct a1 as [id1 g1].
destruct b1 as [id2 g2].
destruct H.
simpl in *.
subst id2.
inv H2.
{
auto.
}
{
inv H.
simpl in *.
set (sz := init_data_list_size init) in *.
destruct (Mem.alloc m 0 sz) as [m2 b] eqn:?.
destruct (store_zeros m2 b 0 sz) as [m3|] eqn:?.
{
try discriminate.
destruct (store_init_data_list (globalenv p) m3 b 0 init) as [m4|] eqn:?.
{
try discriminate.
erewrite store_init_data_list_match.
{
eauto.
}
{
eauto.
}
}
{
try discriminate.
}
}
{
try discriminate.
}
}
}
{
rewrite X.
eauto.
}
}
{
try discriminate.
}
}
Qed.
Proof.
Admitted.
Proof.
unfold init_mem.
intros.
eapply alloc_globals_match.
{
eauto.
apply progmatch.
}
{
eauto.
}
Qed.
End MATCH_PROGRAMS.
(** Special case for partial transformations that do not depend on the compilation unit *) Section TRANSFORM_PARTIAL.
Context {A B V: Type} {LA: Linker A} {LV: Linker V}.
Context {transf: A -> res B} {p: program A V} {tp: program B V}.
Hypothesis progmatch: match_program (fun cu f tf => transf f = OK tf) eq p tp.
Proof.
Admitted.
Proof.
intros.
exploit (find_funct_ptr_match progmatch).
{
eauto.
}
{
eauto.
intros (cu & tf & P & Q & R).
exists tf.
auto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
exploit (find_funct_match progmatch).
{
eauto.
}
{
eauto.
intros (cu & tf & P & Q & R).
exists tf.
auto.
}
Qed.
Proof.
Admitted.
Proof.
intros.
eapply (find_symbol_match progmatch).
Qed.
Proof.
Admitted.
Proof.
intros.
eapply (senv_match progmatch).
Qed.
Proof.
Admitted.
Proof.
eapply (init_mem_match progmatch).
Qed.
End TRANSFORM_PARTIAL.
(** Special case for total transformations that do not depend on the compilation unit *) Section TRANSFORM_TOTAL.
Context {A B V: Type} {LA: Linker A} {LV: Linker V}.
Context {transf: A -> B} {p: program A V} {tp: program B V}.
Hypothesis progmatch: match_program (fun cu f tf => tf = transf f) eq p tp.
Proof.
Admitted.
Proof.
intros.
exploit (find_funct_ptr_match progmatch).
{
eauto.
}
{
eauto.
intros (cu & tf & P & Q & R).
congruence.
}
Qed.
Proof.
Admitted.
Proof.
intros.
exploit (find_funct_match progmatch).
{
eauto.
}
{
eauto.
intros (cu & tf & P & Q & R).
congruence.
}
Qed.
Proof.
Admitted.
Proof.
intros.
eapply (find_symbol_match progmatch).
Qed.
Proof.
Admitted.
Proof.
intros.
eapply (senv_match progmatch).
Qed.
Proof.
Admitted.
Proof.
eapply (init_mem_match progmatch).
Qed.
End TRANSFORM_TOTAL.
End Genv.
Coercion Genv.to_senv: Genv.t >-> Senv.t.