Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
PROSA - Formally Proven Schedulability Analysis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
RT-PROOFS
PROSA - Formally Proven Schedulability Analysis
Commits
f3039ae5
Commit
f3039ae5
authored
4 years ago
by
Björn Brandenburg
Browse files
Options
Downloads
Patches
Plain Diff
polish prosa.implementation.facts.ideal_uni.preemption_aware
parent
a76ae969
No related branches found
No related tags found
1 merge request
!114
Preemption model compliance
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
implementation/facts/ideal_uni/preemption_aware.v
+19
-21
19 additions, 21 deletions
implementation/facts/ideal_uni/preemption_aware.v
with
19 additions
and
21 deletions
implementation/facts/ideal_uni/preemption_aware.v
+
19
−
21
View file @
f3039ae5
...
...
@@ -210,39 +210,37 @@ Section NPUniprocessorScheduler.
End
PreemptionTimes
.
(**
In this section
, we establish th
at the preemption-aware
schedule
r indeed
respects
the preemption
model semantics. *)
(**
Finally
, we establish th
e main feature: the generated
schedule respects
the preemption
-
model semantics. *)
Section
PreemptionCompliance
.
(** Assuming that every job in [arr_seq] adheres by the rule that jobs must
start execution to become nonpreemptive,... *)
Hypothesis
H_valid_preemption_function
:
forall
j
,
arrives_in
arr_seq
j
->
job_cannot_become_nonpreemptive_before_execution
j
.
(** As a minimal validity requirement (which is a part of
[valid_preemption_model]), we require that any job in [arr_seq] must
start execution to become nonpreemptive. *)
Hypothesis
H_valid_preemption_function
:
forall
j
,
arrives_in
arr_seq
j
->
job_cannot_become_nonpreemptive_before_execution
j
.
(** ...we show that the generated schedule respects the preemption model semantics. *)
(** Given such a valid preemption model, we establish that the generated
schedule indeed respects the preemption model semantics. *)
Lemma
np_respects_preemption_model
:
schedule_respects_preemption_model
arr_seq
schedule
.
Proof
.
rewrite
/
schedule_respects_preemption_model
=>
j
.
elim
=>
[|
t'
IH
];
first
by
rewrite
service0
=>
ARR
/
negP
NP
;
move
:
(
H_valid_preemption_function
j
ARR
)
=>
P
;
exfalso
.
move
=>
ARR
NP
.
have
SCHED
:
scheduled_at
schedule
j
t'
.
move
=>
j
;
elim
=>
[|
t'
IH
];
first
by
rewrite
service0
=>
ARR
/
negP
NP
;
move
:
(
H_valid_preemption_function
j
ARR
)
=>
P
;
exfalso
.
move
=>
ARR
NP
.
have
:
scheduled_at
schedule
j
t'
.
{
apply
contraT
=>
NOT_SCHED
.
move
:
(
not_scheduled_implies_no_service
_
_
_
NOT_SCHED
)
=>
NO_SERVICE
.
rewrite
-
(
service_last_plus_before
)
NO_SERVICE
addn0
in
NP
;
apply
IH
in
NP
=>
//.
now
move
/
negP
in
NOT_SCHED
.
}
rewrite
/
schedule
/
np_uni_schedule
scheduled_at_def
/
generic_schedule
schedule_up_to_def
/
allocation_at
/
prev_job_nonpreemptive
.
rewrite
/
schedule
/
np_uni_schedule
scheduled_at_def
/
generic_schedule
/
allocation_at
in
SCHED
.
move
/
eqP
in
SCHED
;
rewrite
SCHED
.
rewrite
(
identical_prefix_service
_
schedule
)
.
rewrite
ifT
=>
//.
rewrite
/
identical_prefix
/
schedule
/
np_uni_schedule
/
generic_schedule
.
move
=>
h
LT
;
rewrite
ltnS
in
LT
.
now
rewrite
(
schedule_up_to_prefix_inclusion
_
_
_
_
LT
h
)
.
rewrite
!
scheduled_at_def
/
schedule
/
np_uni_schedule
/
generic_schedule
=>
/
eqP
SCHED
.
rewrite
-
SCHED
(
schedule_up_to_prefix_inclusion
_
_
t'
t'
.
+
1
)
//
np_job_remains_scheduled
//.
rewrite
/
prev_job_nonpreemptive
SCHED
(
identical_prefix_service
_
schedule
)
//.
by
apply
schedule_up_to_identical_prefix
.
Qed
.
End
PreemptionCompliance
.
End
NPUniprocessorScheduler
.
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment