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
4a13410a
Commit
4a13410a
authored
1 year ago
by
Sergey Bozhko
Browse files
Options
Downloads
Patches
Plain Diff
add notion of speculative execution
parent
0c475289
No related branches found
Branches containing commit
No related tags found
1 merge request
!347
Prove existence of abstract busy interval
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
analysis/abstract/definitions.v
+16
-0
16 additions, 0 deletions
analysis/abstract/definitions.v
with
16 additions
and
0 deletions
analysis/abstract/definitions.v
+
16
−
0
View file @
4a13410a
...
...
@@ -102,6 +102,22 @@ Section AbstractRTADefinitions.
Definition
cumulative_interfering_workload
j
t1
t2
:=
\
sum_
(
t1
<=
t
<
t2
)
interfering_workload
j
t
.
(** Next, we introduce a notion of absence of speculative
execution. This notion is _not_ directly related to Abstract
RTA, but it is useful when proving the existence of bounded busy
intervals.
We say that the functions [Interference] and
[InterferingWorkload] do not allow speculative execution if the
cumulative interference never exceeds the cumulative interfering
workload. Intuitively, one can interpret this definition as
stating that it is not allowed to perform work before it is
known whether it is actually needed (i.e., before the work
appears as actual workload). *)
Definition
no_speculative_execution
:=
forall
j
t
,
cumulative_interference
j
0
t
<=
cumulative_interfering_workload
j
0
t
.
(** Definition of Busy Interval *)
(** Further analysis will be based on the notion of a busy
interval. The overall idea of the busy interval is to take into
...
...
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