aboutsummaryrefslogtreecommitdiffstats
path: root/cfrontend/SimplLocalsproof.v
diff options
context:
space:
mode:
authorXavier Leroy <xavierleroy@users.noreply.github.com>2014-11-25 10:16:46 +0100
committerXavier Leroy <xavierleroy@users.noreply.github.com>2014-11-25 10:16:46 +0100
commit52f9c87dca61ca00fc9cd9944e530ea63ab3a477 (patch)
tree90de417d51da73e4baea848841851c1e962d7c11 /cfrontend/SimplLocalsproof.v
parent794ae6fb64e89175b40288369011f4fc51e0ac53 (diff)
parenta0310edb3ba0c086926ed33a67b9a019640a57eb (diff)
downloadcompcert-52f9c87dca61ca00fc9cd9944e530ea63ab3a477.tar.gz
compcert-52f9c87dca61ca00fc9cd9944e530ea63ab3a477.zip
Merge pull request #2 from AbsInt/public-globals
Public globals
Diffstat (limited to 'cfrontend/SimplLocalsproof.v')
-rw-r--r--cfrontend/SimplLocalsproof.v12
1 files changed, 9 insertions, 3 deletions
diff --git a/cfrontend/SimplLocalsproof.v b/cfrontend/SimplLocalsproof.v
index 67a7e626..15d0af06 100644
--- a/cfrontend/SimplLocalsproof.v
+++ b/cfrontend/SimplLocalsproof.v
@@ -48,6 +48,12 @@ Proof.
exact (Genv.find_symbol_transf_partial _ _ TRANSF).
Qed.
+Lemma public_preserved:
+ forall (s: ident), Genv.public_symbol tge s = Genv.public_symbol ge s.
+Proof.
+ exact (Genv.public_symbol_transf_partial _ _ TRANSF).
+Qed.
+
Lemma varinfo_preserved:
forall b, Genv.find_var_info tge b = Genv.find_var_info ge b.
Proof.
@@ -2031,7 +2037,7 @@ Proof.
intros [j' [tvres [tm' [P [Q [R [S [T [U V]]]]]]]]].
econstructor; split.
apply plus_one. econstructor; eauto. eapply external_call_symbols_preserved; eauto.
- exact symbols_preserved. exact varinfo_preserved.
+ exact symbols_preserved. exact public_preserved. exact varinfo_preserved.
econstructor; eauto with compat.
eapply match_envs_set_opttemp; eauto.
eapply match_envs_extcall; eauto.
@@ -2187,7 +2193,7 @@ Proof.
intros [j' [tvres [tm' [P [Q [R [S [T [U V]]]]]]]]].
econstructor; split.
apply plus_one. econstructor; eauto. eapply external_call_symbols_preserved; eauto.
- exact symbols_preserved. exact varinfo_preserved.
+ exact symbols_preserved. exact public_preserved. exact varinfo_preserved.
econstructor; eauto.
intros. apply match_cont_incr_bounds with (Mem.nextblock m) (Mem.nextblock tm).
eapply match_cont_extcall; eauto. xomega. xomega.
@@ -2242,7 +2248,7 @@ Theorem transf_program_correct:
forward_simulation (semantics1 prog) (semantics2 tprog).
Proof.
eapply forward_simulation_plus.
- eexact symbols_preserved.
+ eexact public_preserved.
eexact initial_states_simulation.
eexact final_states_simulation.
eexact step_simulation.