aboutsummaryrefslogtreecommitdiffstats
path: root/scheduling/BTL_Scheduler.v
diff options
context:
space:
mode:
authorLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2021-06-14 19:02:39 +0200
committerLéo Gourdin <leo.gourdin@univ-grenoble-alpes.fr>2021-06-14 19:02:39 +0200
commit26d9fbb36b2e9c8f1262250035cd804bf87f7228 (patch)
tree86ed9c9614b30de04e679745329d575fd912d1d7 /scheduling/BTL_Scheduler.v
parent8252a8b7678ca4b82191ce0159b93b976f8c58d9 (diff)
downloadcompcert-kvx-26d9fbb36b2e9c8f1262250035cd804bf87f7228.tar.gz
compcert-kvx-26d9fbb36b2e9c8f1262250035cd804bf87f7228.zip
Preparation for scheduling proof, main lemmas ok
Diffstat (limited to 'scheduling/BTL_Scheduler.v')
-rw-r--r--scheduling/BTL_Scheduler.v1
1 files changed, 0 insertions, 1 deletions
diff --git a/scheduling/BTL_Scheduler.v b/scheduling/BTL_Scheduler.v
index 8240c861..ec83b3c1 100644
--- a/scheduling/BTL_Scheduler.v
+++ b/scheduling/BTL_Scheduler.v
@@ -37,7 +37,6 @@ Record match_function (f1 f2: BTL.function): Prop := {
preserv_fnparams: fn_params f1 = fn_params f2;
preserv_fnstacksize: fn_stacksize f1 = fn_stacksize f2;
preserv_entrypoint: fn_entrypoint f1 = fn_entrypoint f2;
- (*exists_entrypoint: exists ibf, (fn_code f1)!(fn_entrypoint f1) = Some ibf;*)
(* preserv_inputs: equiv_input_regs f1 f2; TODO: a-t-on besoin de ça ? *)
symbolic_simu_ok: forall pc ib1, (fn_code f1)!pc = Some ib1 ->
exists ib2, (fn_code f2)!pc = Some ib2 /\ symbolic_simu f1 f2 (entry ib1) (entry ib2);