prio/Paper/Paper.thy
author urbanc
Mon, 06 Feb 2012 12:08:35 +0000
changeset 283 7d2bab099b89
parent 280 c91c2dd08599
child 284 d296cb127fcb
permissions -rwxr-xr-x
paper updatated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     1
(*<*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     2
theory Paper
272
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
     3
imports CpsG ExtGG (* "~~/src/HOL/Library/LaTeXsugar" *) LaTeXsugar
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     4
begin
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
     5
ML {*
273
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
     6
  open Printer;
272
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
     7
  show_question_marks_default := false;
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
     8
  *}
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
     9
(*>*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    10
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    11
section {* Introduction *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    12
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    13
text {*
273
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
    14
  Many real-time systems need to support processes with priorities and
267
83fb18cadd2b added two paragraphs to the introduction
urbanc
parents: 266
diff changeset
    15
  locking of resources. Locking of resources ensures mutual exclusion
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    16
  when accessing shared data or devices that cannot be
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    17
  preempted. Priorities allow scheduling of processes that need to
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    18
  finish their work within deadlines.  Unfortunately, both features
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    19
  can interact in subtle ways leading to a problem, called
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    20
  \emph{Priority Inversion}. Suppose three processes having priorities
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    21
  $H$(igh), $M$(edium) and $L$(ow). We would expect that the process
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    22
  $H$ blocks any other process with lower priority and itself cannot
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    23
  be blocked by any process with lower priority. Alas, in a naive
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    24
  implementation of resource looking and priorities this property can
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    25
  be violated. Even worse, $H$ can be delayed indefinitely by
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    26
  processes with lower priorities. For this let $L$ be in the
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    27
  possession of a lock for a resource that also $H$ needs. $H$ must
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    28
  therefore wait for $L$ to exit the critical section and release this
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    29
  lock. The problem is that $L$ might in turn be blocked by any
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    30
  process with priority $M$, and so $H$ sits there potentially waiting
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    31
  indefinitely. Since $H$ is blocked by processes with lower
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    32
  priorities, the problem is called Priority Inversion. It was first
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    33
  described in \cite{Lampson80} in the context of the
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    34
  Mesa programming language designed for concurrent programming.
265
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
    35
273
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
    36
  If the problem of Priority Inversion is ignored, real-time systems
267
83fb18cadd2b added two paragraphs to the introduction
urbanc
parents: 266
diff changeset
    37
  can become unpredictable and resulting bugs can be hard to diagnose.
83fb18cadd2b added two paragraphs to the introduction
urbanc
parents: 266
diff changeset
    38
  The classic example where this happened is the software that
268
1baf8d0c7093 more text
urbanc
parents: 267
diff changeset
    39
  controlled the Mars Pathfinder mission in 1997
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    40
  \cite{Reeves98}.  Once the spacecraft landed, the software
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    41
  shut down at irregular intervals leading to loss of project time as
268
1baf8d0c7093 more text
urbanc
parents: 267
diff changeset
    42
  normal operation of the craft could only resume the next day (the
270
d98435b93063 slight polishing
urbanc
parents: 268
diff changeset
    43
  mission and data already collected were fortunately not lost, because
268
1baf8d0c7093 more text
urbanc
parents: 267
diff changeset
    44
  of a clever system design).  The reason for the shutdowns was that
271
78523b3ae2ad spell check
urbanc
parents: 270
diff changeset
    45
  the scheduling software fell victim of Priority Inversion: a low
268
1baf8d0c7093 more text
urbanc
parents: 267
diff changeset
    46
  priority task locking a resource prevented a high priority process
270
d98435b93063 slight polishing
urbanc
parents: 268
diff changeset
    47
  from running in time leading to a system reset. Once the problem was found,
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    48
  it was rectified by enabling the \emph{Priority Inheritance Protocol} 
280
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
    49
  (PIP) \cite{Sha90}\footnote{Sha et al.~call it the
283
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
    50
  \emph{Basic Priority Inheritance Protocol} \cite{Sha90}.} in the scheduling software.
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
    51
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    52
  The idea behind PIP is to let the process $L$ temporarily
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    53
  inherit the high priority from $H$ until $L$ leaves the critical
278
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    54
  section by unlocking the resource. This solves the problem of $H$
280
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
    55
  having to wait indefinitely, because $L$ cannot be
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    56
  blocked by processes having priority $M$. While a few other
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    57
  solutions exist for the Priority Inversion problem, PIP is one that is widely deployed
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    58
  and implemented. This includes VxWorks (a proprietary real-time OS
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    59
  used in the Mars Pathfinder mission, in Boeing's 787 Dreamliner,
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    60
  Honda's ASIMO robot, etc.), but also the POSIX 1003.1c Standard
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    61
  realised for example in libraries for FreeBSD, Solaris and Linux.
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    62
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    63
  One advantage of PIP is that increasing the priority of a process
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    64
  can be dynamically calculated by the scheduler. This is in contrast
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    65
  to, for example, \emph{Priority Ceiling} \cite{Sha90}, another
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    66
  solution to the Priority Inversion problem, which requires static
279
7911439863b0 slight polishing
urbanc
parents: 278
diff changeset
    67
  analysis of the program in order to prevent Priority Inversion. However, there has
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    68
  also been strong criticism against PIP. For instance, PIP cannot
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    69
  prevent deadlocks when lock dependencies are circular, and also
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    70
  blocking times can be substantial (more than just the duration of a
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    71
  critical section).  Though, most criticism against PIP centres
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    72
  around unreliable implementations and PIP being too complicated and
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    73
  too inefficient.  For example, Yodaiken writes in \cite{Yodaiken02}:
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    74
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    75
  \begin{quote}
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    76
  \it{}``Priority inheritance is neither efficient nor reliable. Implementations
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    77
  are either incomplete (and unreliable) or surprisingly complex and intrusive.''
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    78
  \end{quote}
273
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
    79
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    80
  \noindent
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    81
  He suggests to avoid PIP altogether by not allowing critical
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    82
  sections to be preempted. While this might have been a reasonable
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
    83
  solution in 2002, in our modern multiprocessor world, this seems out
278
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    84
  of date. The reason is that this precludes other high-priority 
279
7911439863b0 slight polishing
urbanc
parents: 278
diff changeset
    85
  processes from running even when they do not make any use of the locked
278
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    86
  resource.
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    87
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    88
  However, there is clearly a need for investigating correct
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    89
  algorithms for PIP. A few specifications for PIP exist (in English)
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    90
  and also a few high-level descriptions of implementations (e.g.~in
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    91
  the textbook \cite[Section 5.6.5]{Vahalia96}), but they help little
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    92
  with actual implementations. That this is a problem in practise is
283
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
    93
  proved by an email from Baker, who wrote on 13 July 2009 on the Linux
278
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
    94
  Kernel mailing list:
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    95
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
    96
  \begin{quote}
275
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    97
  \it{}``I observed in the kernel code (to my disgust), the Linux PIP
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    98
  implementation is a nightmare: extremely heavy weight, involving
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
    99
  maintenance of a full wait-for graph, and requiring updates for a
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
   100
  range of events, including priority changes and interruptions of
22b6bd498419 more on intro
urbanc
parents: 274
diff changeset
   101
  wait operations.''
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
   102
  \end{quote}
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
   103
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
   104
  \noindent
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
   105
  The criticism by Yodaiken, Baker and others suggests to us to look
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
   106
  again at PIP from a more abstract level (but still concrete enough
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
   107
  to inform an implementation) and makes PIP an ideal candidate for a
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
   108
  formal verification. One reason, of course, is that the original
278
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
   109
  presentation of PIP \cite{Sha90}, despite being informally
283
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   110
  ``proved'' correct, is actually \emph{flawed}. 
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   111
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   112
  Yodaiken \cite{Yodaiken02} points to a subtlety that had been
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   113
  overlooked in the informal proof by Sha et al. They specify in
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   114
  \cite{Sha90} that after the process (whose priority has been raised)
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   115
  completes its critical section and releases the lock, it ``returns
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   116
  to its original priority level.'' This leads them to believe that an
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   117
  implementation of PIP is ``rather straightforward'' \cite{Sha90}.
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   118
  Unfortunately, as Yodaiken pointed out, this behaviour is too
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   119
  simplistic.  Consider the case where the low priority process $L$
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   120
  locks \emph{two} resources, and two high-priority processes $H$ and
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   121
  $H'$ each wait for one of them.  If $L$ then releases one resource
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   122
  so that $H$, say, can proceed, then we still have Priority Inversion
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   123
  with $H'$ (which waits for the other resource). The correct
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   124
  behaviour for $L$ is to revert to the highest remaining priority of
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   125
  processes that it blocks. The advantage of a formalisation in a
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   126
  theorem prover for the correctness of a high-level specification of
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   127
  PIP is that such issues clearly show up and cannot be overlooked as
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   128
  in informal reasoning (since we have to analyse all possible program
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   129
  behaviours, i.e.~\emph{traces}, that could possibly happen).
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
   130
279
7911439863b0 slight polishing
urbanc
parents: 278
diff changeset
   131
  There have been earlier formal investigations into PIP, but ...\cite{Faria08}
280
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   132
*}
278
3e2c006e7d6c a bit more on the introduction
urbanc
parents: 277
diff changeset
   133
283
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   134
section {* Formal Model of the Priority Inheritance Protocol *}
267
83fb18cadd2b added two paragraphs to the introduction
urbanc
parents: 266
diff changeset
   135
280
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   136
text {*
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   137
  Our formal model of PIP is based on Paulson's inductive approach to protocol 
283
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   138
  verification \cite{Paulson98}, where the state of the system is modelled as a list of events 
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   139
  that happened so far. \emph{Events} fall into four categories defined as the datatype
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   140
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   141
  \begin{isabelle}\ \ \ \ \ %%%
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   142
  \begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l@ {\hspace{7mm}}l}
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   143
  \isacommand{datatype} event & @{text "="} & @{term "Create thread priority"}\\
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   144
  & @{text "|"} & @{term "Exit thread"}\\
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   145
  & @{text "|"} & @{term "P thread cs"} & {\rm Request of a resource} @{text "cs"} {\rm by} @{text "thread"}\\
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   146
  & @{text "|"} & @{term "V thread cs"} & {\rm Release of a resource} @{text "cs"} {\rm by} @{text "thread"}
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   147
  \end{tabular}
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   148
  \end{isabelle}
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   149
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   150
  \noindent
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   151
  whereby threads, priorities and resources are represented as natural numbers.
7d2bab099b89 paper updatated
urbanc
parents: 280
diff changeset
   152
  A \emph{state} is a list of events.
274
83b0317370c2 more on intro
urbanc
parents: 273
diff changeset
   153
280
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   154
  To define events, the identifiers of {\em threads},
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   155
  {\em priority} and {\em critical resources } (abbreviated as @{text "cs"}) 
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   156
  need to be represented. All three are represetned using standard 
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   157
  Isabelle/HOL type @{typ "nat"}:
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   158
*}
273
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   159
280
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   160
text {*
c91c2dd08599 updated
urbanc
parents: 279
diff changeset
   161
  \bigskip
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
   162
  The priority inversion phenomenon was first published in \cite{Lampson80}. 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   163
  The two protocols widely used to eliminate priority inversion, namely 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   164
  PI (Priority Inheritance) and PCE (Priority Ceiling Emulation), were proposed 
277
541bfdf1fa36 slight tuning
urbanc
parents: 276
diff changeset
   165
  in \cite{Sha90}. PCE is less convenient to use because it requires 
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   166
  static analysis of programs. Therefore, PI is more commonly used in 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   167
  practice\cite{locke-july02}. However, as pointed out in the literature, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   168
  the analysis of priority inheritance protocol is quite subtle\cite{yodaiken-july02}. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   169
  A formal analysis will certainly be helpful for us to understand and correctly 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   170
  implement PI. All existing formal analysis of PI
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   171
  \cite{conf/fase/JahierHR09,WellingsBSB07,Faria08} are based on the model checking 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   172
  technology. Because of the state explosion problem, model check 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   173
  is much like an exhaustive testing of finite models with limited size. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   174
  The results obtained can not be safely generalized to models with arbitrarily 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   175
  large size. Worse still, since model checking is fully automatic, it give little 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   176
  insight on why the formal model is correct. It is therefore 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   177
  definitely desirable to analyze PI using theorem proving, which gives 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   178
  more general results as well as deeper insight. And this is the purpose 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   179
  of this paper which gives a formal analysis of PI in the interactive 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   180
  theorem prover Isabelle using Higher Order Logic (HOL). The formalization 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   181
  focuses on on two issues:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   182
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   183
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   184
  \item The correctness of the protocol model itself. A series of desirable properties is 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   185
    derived until we are fully convinced that the formal model of PI does 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   186
    eliminate priority inversion. And a better understanding of PI is so obtained 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   187
    in due course. For example, we find through formalization that the choice of 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   188
    next thread to take hold when a 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   189
    resource is released is irrelevant for the very basic property of PI to hold. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   190
    A point never mentioned in literature. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   191
  \item The correctness of the implementation. A series of properties is derived the meaning 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   192
    of which can be used as guidelines on how PI can be implemented efficiently and correctly. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   193
  \end{enumerate} 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   194
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   195
  The rest of the paper is organized as follows: Section \ref{overview} gives an overview 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   196
  of PI. Section \ref{model} introduces the formal model of PI. Section \ref{general} 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   197
  discusses a series of basic properties of PI. Section \ref{extension} shows formally 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   198
  how priority inversion is controlled by PI. Section \ref{implement} gives properties 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   199
  which can be used for guidelines of implementation. Section \ref{related} discusses 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   200
  related works. Section \ref{conclusion} concludes the whole paper.
265
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   201
273
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   202
  The basic priority inheritance protocol has two problems:
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   203
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   204
  It does not prevent a deadlock from happening in a program with circular lock dependencies.
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   205
  
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   206
  A chain of blocking may be formed; blocking duration can be substantial, though bounded.
039711ba6cf9 slightly more on text
urbanc
parents: 272
diff changeset
   207
265
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   208
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   209
  Contributions
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   210
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   211
  Despite the wide use of Priority Inheritance Protocol in real time operating
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   212
  system, it's correctness has never been formally proved and mechanically checked. 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   213
  All existing verification are based on model checking technology. Full automatic
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   214
  verification gives little help to understand why the protocol is correct. 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   215
  And results such obtained only apply to models of limited size. 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   216
  This paper presents a formal verification based on theorem proving. 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   217
  Machine checked formal proof does help to get deeper understanding. We found 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   218
  the fact which is not mentioned in the literature, that the choice of next 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   219
  thread to take over when an critical resource is release does not affect the correctness
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   220
  of the protocol. The paper also shows how formal proof can help to construct 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   221
  correct and efficient implementation.\bigskip 
993068ce745f changed abstract, intro and IsaMakefile
urbanc
parents: 264
diff changeset
   222
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   223
*}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   224
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   225
section {* An overview of priority inversion and priority inheritance \label{overview} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   226
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   227
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   228
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   229
  Priority inversion refers to the phenomenon when a thread with high priority is blocked 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   230
  by a thread with low priority. Priority happens when the high priority thread requests 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   231
  for some critical resource already taken by the low priority thread. Since the high 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   232
  priority thread has to wait for the low priority thread to complete, it is said to be 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   233
  blocked by the low priority thread. Priority inversion might prevent high priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   234
  thread from fulfill its task in time if the duration of priority inversion is indefinite 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   235
  and unpredictable. Indefinite priority inversion happens when indefinite number 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   236
  of threads with medium priorities is activated during the period when the high 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   237
  priority thread is blocked by the low priority thread. Although these medium 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   238
  priority threads can not preempt the high priority thread directly, they are able 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   239
  to preempt the low priority threads and cause it to stay in critical section for 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   240
  an indefinite long duration. In this way, the high priority thread may be blocked indefinitely. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   241
  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   242
  Priority inheritance is one protocol proposed to avoid indefinite priority inversion. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   243
  The basic idea is to let the high priority thread donate its priority to the low priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   244
  thread holding the critical resource, so that it will not be preempted by medium priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   245
  threads. The thread with highest priority will not be blocked unless it is requesting 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   246
  some critical resource already taken by other threads. Viewed from a different angle, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   247
  any thread which is able to block the highest priority threads must already hold some 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   248
  critical resource. Further more, it must have hold some critical resource at the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   249
  moment the highest priority is created, otherwise, it may never get change to run and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   250
  get hold. Since the number of such resource holding lower priority threads is finite, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   251
  if every one of them finishes with its own critical section in a definite duration, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   252
  the duration the highest priority thread is blocked is definite as well. The key to 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   253
  guarantee lower priority threads to finish in definite is to donate them the highest 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   254
  priority. In such cases, the lower priority threads is said to have inherited the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   255
  highest priority. And this explains the name of the protocol: 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   256
  {\em Priority Inheritance} and how Priority Inheritance prevents indefinite delay.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   257
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   258
  The objectives of this paper are:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   259
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   260
  \item Build the above mentioned idea into formal model and prove a series of properties 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   261
    until we are convinced that the formal model does fulfill the original idea. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   262
  \item Show how formally derived properties can be used as guidelines for correct 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   263
    and efficient implementation.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   264
  \end{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   265
  The proof is totally formal in the sense that every detail is reduced to the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   266
  very first principles of Higher Order Logic. The nature of interactive theorem 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   267
  proving is for the human user to persuade computer program to accept its arguments. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   268
  A clear and simple understanding of the problem at hand is both a prerequisite and a 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   269
  byproduct of such an effort, because everything has finally be reduced to the very 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   270
  first principle to be checked mechanically. The former intuitive explanation of 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   271
  Priority Inheritance is just such a byproduct. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   272
  *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   273
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   274
section {* Formal model of Priority Inheritance \label{model} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   275
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   276
  \input{../../generated/PrioGDef}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   277
*}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   278
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   279
section {* General properties of Priority Inheritance \label{general} *}
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   280
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   281
text {*
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   282
  The following are several very basic prioprites:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   283
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   284
  \item All runing threads must be ready (@{text "runing_ready"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   285
          @{thm[display] "runing_ready"}  
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   286
  \item All ready threads must be living (@{text "readys_threads"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   287
          @{thm[display] "readys_threads"} 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   288
  \item There are finite many living threads at any moment (@{text "finite_threads"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   289
          @{thm[display] "finite_threads"} 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   290
  \item Every waiting queue does not contain duplcated elements (@{text "wq_distinct"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   291
          @{thm[display] "wq_distinct"} 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   292
  \item All threads in waiting queues are living threads (@{text "wq_threads"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   293
          @{thm[display] "wq_threads"} 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   294
  \item The event which can get a thread into waiting queue must be @{term "P"}-events
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   295
         (@{text "block_pre"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   296
          @{thm[display] "block_pre"}   
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   297
  \item A thread may never wait for two different critical resources
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   298
         (@{text "waiting_unique"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   299
          @{thm[display] waiting_unique[of _ _ "cs\<^isub>1" "cs\<^isub>2"]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   300
  \item Every resource can only be held by one thread
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   301
         (@{text "held_unique"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   302
          @{thm[display] held_unique[of _ "th\<^isub>1" _ "th\<^isub>2"]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   303
  \item Every living thread has an unique precedence
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   304
         (@{text "preced_unique"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   305
          @{thm[display] preced_unique[of "th\<^isub>1" _ "th\<^isub>2"]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   306
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   307
*}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   308
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   309
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   310
  The following lemmas show how RAG is changed with the execution of events:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   311
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   312
  \item Execution of @{term "Set"} does not change RAG (@{text "depend_set_unchanged"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   313
    @{thm[display] depend_set_unchanged}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   314
  \item Execution of @{term "Create"} does not change RAG (@{text "depend_create_unchanged"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   315
    @{thm[display] depend_create_unchanged}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   316
  \item Execution of @{term "Exit"} does not change RAG (@{text "depend_exit_unchanged"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   317
    @{thm[display] depend_exit_unchanged}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   318
  \item Execution of @{term "P"} (@{text "step_depend_p"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   319
    @{thm[display] step_depend_p}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   320
  \item Execution of @{term "V"} (@{text "step_depend_v"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   321
    @{thm[display] step_depend_v}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   322
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   323
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   324
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   325
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   326
  These properties are used to derive the following important results about RAG:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   327
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   328
  \item RAG is loop free (@{text "acyclic_depend"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   329
  @{thm [display] acyclic_depend}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   330
  \item RAGs are finite (@{text "finite_depend"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   331
  @{thm [display] finite_depend}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   332
  \item Reverse paths in RAG are well founded (@{text "wf_dep_converse"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   333
  @{thm [display] wf_dep_converse}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   334
  \item The dependence relation represented by RAG has a tree structure (@{text "unique_depend"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   335
  @{thm [display] unique_depend[of _ _ "n\<^isub>1" "n\<^isub>2"]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   336
  \item All threads in RAG are living threads 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   337
    (@{text "dm_depend_threads"} and @{text "range_in"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   338
    @{thm [display] dm_depend_threads range_in}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   339
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   340
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   341
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   342
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   343
  The following lemmas show how every node in RAG can be chased to ready threads:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   344
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   345
  \item Every node in RAG can be chased to a ready thread (@{text "chain_building"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   346
    @{thm [display] chain_building[rule_format]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   347
  \item The ready thread chased to is unique (@{text "dchain_unique"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   348
    @{thm [display] dchain_unique[of _ _ "th\<^isub>1" "th\<^isub>2"]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   349
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   350
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   351
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   352
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   353
  Properties about @{term "next_th"}:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   354
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   355
  \item The thread taking over is different from the thread which is releasing
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   356
  (@{text "next_th_neq"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   357
  @{thm [display] next_th_neq}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   358
  \item The thread taking over is unique
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   359
  (@{text "next_th_unique"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   360
  @{thm [display] next_th_unique[of _ _ _ "th\<^isub>1" "th\<^isub>2"]}  
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   361
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   362
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   363
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   364
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   365
  Some deeper results about the system:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   366
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   367
  \item There can only be one running thread (@{text "runing_unique"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   368
  @{thm [display] runing_unique[of _ "th\<^isub>1" "th\<^isub>2"]}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   369
  \item The maximum of @{term "cp"} and @{term "preced"} are equal (@{text "max_cp_eq"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   370
  @{thm [display] max_cp_eq}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   371
  \item There must be one ready thread having the max @{term "cp"}-value 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   372
  (@{text "max_cp_readys_threads"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   373
  @{thm [display] max_cp_readys_threads}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   374
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   375
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   376
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   377
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   378
  The relationship between the count of @{text "P"} and @{text "V"} and the number of 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   379
  critical resources held by a thread is given as follows:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   380
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   381
  \item The @{term "V"}-operation decreases the number of critical resources 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   382
    one thread holds (@{text "cntCS_v_dec"})
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   383
     @{thm [display]  cntCS_v_dec}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   384
  \item The number of @{text "V"} never exceeds the number of @{text "P"} 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   385
    (@{text "cnp_cnv_cncs"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   386
    @{thm [display]  cnp_cnv_cncs}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   387
  \item The number of @{text "V"} equals the number of @{text "P"} when 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   388
    the relevant thread is not living:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   389
    (@{text "cnp_cnv_eq"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   390
    @{thm [display]  cnp_cnv_eq}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   391
  \item When a thread is not living, it does not hold any critical resource 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   392
    (@{text "not_thread_holdents"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   393
    @{thm [display] not_thread_holdents}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   394
  \item When the number of @{text "P"} equals the number of @{text "V"}, the relevant 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   395
    thread does not hold any critical resource, therefore no thread can depend on it
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   396
    (@{text "count_eq_dependents"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   397
    @{thm [display] count_eq_dependents}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   398
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   399
  *}
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   400
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   401
section {* Key properties \label{extension} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   402
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   403
(*<*)
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   404
context extend_highest_gen
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   405
begin
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   406
(*>*)
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   407
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   408
text {*
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   409
  The essential of {\em Priority Inheritance} is to avoid indefinite priority inversion. For this 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   410
  purpose, we need to investigate what happens after one thread takes the highest precedence. 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   411
  A locale is used to describe such a situation, which assumes:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   412
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   413
  \item @{term "s"} is a valid state (@{text "vt_s"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   414
    @{thm  vt_s}.
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   415
  \item @{term "th"} is a living thread in @{term "s"} (@{text "threads_s"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   416
    @{thm threads_s}.
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   417
  \item @{term "th"} has the highest precedence in @{term "s"} (@{text "highest"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   418
    @{thm highest}.
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   419
  \item The precedence of @{term "th"} is @{term "Prc prio tm"} (@{text "preced_th"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   420
    @{thm preced_th}.
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   421
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   422
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   423
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   424
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   425
  Under these assumptions, some basic priority can be derived for @{term "th"}:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   426
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   427
  \item The current precedence of @{term "th"} equals its own precedence (@{text "eq_cp_s_th"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   428
    @{thm [display] eq_cp_s_th}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   429
  \item The current precedence of @{term "th"} is the highest precedence in 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   430
    the system (@{text "highest_cp_preced"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   431
    @{thm [display] highest_cp_preced}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   432
  \item The precedence of @{term "th"} is the highest precedence 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   433
    in the system (@{text "highest_preced_thread"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   434
    @{thm [display] highest_preced_thread}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   435
  \item The current precedence of @{term "th"} is the highest current precedence 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   436
    in the system (@{text "highest'"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   437
    @{thm [display] highest'}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   438
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   439
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   440
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   441
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   442
  To analysis what happens after state @{term "s"} a sub-locale is defined, which 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   443
  assumes:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   444
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   445
  \item @{term "t"} is a valid extension of @{term "s"} (@{text "vt_t"}): @{thm vt_t}.
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   446
  \item Any thread created in @{term "t"} has priority no higher than @{term "prio"}, therefore
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   447
    its precedence can not be higher than @{term "th"},  therefore
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   448
    @{term "th"} remain to be the one with the highest precedence
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   449
    (@{text "create_low"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   450
    @{thm [display] create_low}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   451
  \item Any adjustment of priority in 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   452
    @{term "t"} does not happen to @{term "th"} and 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   453
    the priority set is no higher than @{term "prio"}, therefore
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   454
    @{term "th"} remain to be the one with the highest precedence (@{text "set_diff_low"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   455
    @{thm [display] set_diff_low}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   456
  \item Since we are investigating what happens to @{term "th"}, it is assumed 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   457
    @{term "th"} does not exit during @{term "t"} (@{text "exit_diff"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   458
    @{thm [display] exit_diff}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   459
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   460
*}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   461
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   462
text {* \noindent
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   463
  All these assumptions are put into a predicate @{term "extend_highest_gen"}. 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   464
  It can be proved that @{term "extend_highest_gen"} holds 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   465
  for any moment @{text "i"} in it @{term "t"} (@{text "red_moment"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   466
  @{thm [display] red_moment}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   467
  
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   468
  From this, an induction principle can be derived for @{text "t"}, so that 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   469
  properties already derived for @{term "t"} can be applied to any prefix 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   470
  of @{text "t"} in the proof of new properties 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   471
  about @{term "t"} (@{text "ind"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   472
  \begin{center}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   473
  @{thm[display] ind}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   474
  \end{center}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   475
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   476
  The following properties can be proved about @{term "th"} in @{term "t"}:
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   477
  \begin{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   478
  \item In @{term "t"}, thread @{term "th"} is kept live and its 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   479
    precedence is preserved as well
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   480
    (@{text "th_kept"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   481
    @{thm [display] th_kept}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   482
  \item In @{term "t"}, thread @{term "th"}'s precedence is always the maximum among 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   483
    all living threads
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   484
    (@{text "max_preced"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   485
    @{thm [display] max_preced}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   486
  \item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum precedence
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   487
    among all living threads
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   488
    (@{text "th_cp_max_preced"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   489
    @{thm [display] th_cp_max_preced}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   490
  \item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum current 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   491
    precedence among all living threads
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   492
    (@{text "th_cp_max"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   493
    @{thm [display] th_cp_max}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   494
  \item In @{term "t"}, thread @{term "th"}'s current precedence equals its precedence at moment 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   495
    @{term "s"}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   496
    (@{text "th_cp_preced"}): 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   497
    @{thm [display] th_cp_preced}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   498
  \end{enumerate}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   499
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   500
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   501
text {* \noindent
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   502
  The main theorem of this part is to characterizing the running thread during @{term "t"} 
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   503
  (@{text "runing_inversion_2"}):
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   504
  @{thm [display] runing_inversion_2}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   505
  According to this, if a thread is running, it is either @{term "th"} or was
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   506
  already live and held some resource 
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   507
  at moment @{text "s"} (expressed by: @{text "cntV s th' < cntP s th'"}).
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   508
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   509
  Since there are only finite many threads live and holding some resource at any moment,
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   510
  if every such thread can release all its resources in finite duration, then after finite
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   511
  duration, none of them may block @{term "th"} anymore. So, no priority inversion may happen
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   512
  then.
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   513
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   514
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   515
(*<*)
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   516
end
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   517
(*>*)
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   518
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   519
section {* Properties to guide implementation \label{implement} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   520
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   521
text {*
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   522
  The properties (especially @{text "runing_inversion_2"}) convinced us that the model defined 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   523
  in Section \ref{model} does prevent indefinite priority inversion and therefore fulfills 
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   524
  the fundamental requirement of Priority Inheritance protocol. Another purpose of this paper 
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   525
  is to show how this model can be used to guide a concrete implementation. As discussed in
276
a821434474c9 more on intro
urbanc
parents: 275
diff changeset
   526
  Section 5.6.5 of \cite{Vahalia96}, the implementation of Priority Inheritance in Solaris 
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   527
  uses sophisticated linking data structure. Except discussing two scenarios to show how
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   528
  the data structure should be manipulated, a lot of details of the implementation are missing. 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   529
  In \cite{Faria08,conf/fase/JahierHR09,WellingsBSB07} the protocol is described formally 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   530
  using different notations, but little information is given on how this protocol can be 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   531
  implemented efficiently, especially there is no information on how these data structure 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   532
  should be manipulated. 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   533
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   534
  Because the scheduling of threads is based on current precedence, 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   535
  the central issue in implementation of Priority Inheritance is how to compute the precedence
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   536
  correctly and efficiently. As long as the precedence is correct, it is very easy to 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   537
  modify the scheduling algorithm to select the correct thread to execute. 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   538
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   539
  First, it can be proved that the computation of current precedence @{term "cp"} of a threads
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   540
  only involves its children (@{text "cp_rec"}):
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   541
  @{thm [display] cp_rec} 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   542
  where @{term "children s th"} represents the set of children of @{term "th"} in the current
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   543
  RAG: 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   544
  \[
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   545
  @{thm (lhs) children_def} @{text "\<equiv>"} @{thm (rhs) children_def}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   546
  \]
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   547
  where the definition of @{term "child"} is: 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   548
  \[ @{thm (lhs) child_def} @{text "\<equiv>"}  @{thm (rhs) child_def}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   549
  \]
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   550
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   551
  The aim of this section is to fill the missing details of how current precedence should
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   552
  be changed with the happening of events, with each event type treated by one subsection,
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   553
  where the computation of @{term "cp"} uses lemma @{text "cp_rec"}.
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   554
  *}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   555
 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   556
subsection {* Event @{text "Set th prio"} *}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   557
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   558
(*<*)
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   559
context step_set_cps
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   560
begin
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   561
(*>*)
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   562
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   563
text {*
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   564
  The context under which event @{text "Set th prio"} happens is formalized as follows:
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   565
  \begin{enumerate}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   566
    \item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}.
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   567
    \item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   568
      event @{text "Set th prio"} is eligible to happen under state @{term "s'"} and
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   569
      state @{term "s'"} is a valid state.
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   570
  \end{enumerate}
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   571
  *}
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   572
266
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   573
text {* \noindent
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   574
  Under such a context, we investigated how the current precedence @{term "cp"} of 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   575
  threads change from state @{term "s'"} to @{term "s"} and obtained the following
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   576
  conclusions:
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   577
  \begin{enumerate}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   578
  %% \item The RAG does not change (@{text "eq_dep"}): @{thm "eq_dep"}.
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   579
  \item All threads with no dependence relation with thread @{term "th"} have their
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   580
    @{term "cp"}-value unchanged (@{text "eq_cp"}):
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   581
    @{thm [display] eq_cp}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   582
    This lemma implies the @{term "cp"}-value of @{term "th"}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   583
    and those threads which have a dependence relation with @{term "th"} might need
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   584
    to be recomputed. The way to do this is to start from @{term "th"} 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   585
    and follow the @{term "depend"}-chain to recompute the @{term "cp"}-value of every 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   586
    encountered thread using lemma @{text "cp_rec"}. 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   587
    Since the @{term "depend"}-relation is loop free, this procedure 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   588
    can always stop. The the following lemma shows this procedure actually could stop earlier.
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   589
  \item The following two lemma shows, if a thread the re-computation of which
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   590
    gives an unchanged @{term "cp"}-value, the procedure described above can stop. 
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   591
    \begin{enumerate}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   592
      \item Lemma @{text "eq_up_self"} shows if the re-computation of
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   593
        @{term "th"}'s @{term "cp"} gives the same result, the procedure can stop:
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   594
        @{thm [display] eq_up_self}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   595
      \item Lemma @{text "eq_up"}) shows if the re-computation at intermediate threads
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   596
        gives unchanged result, the procedure can stop:
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   597
        @{thm [display] eq_up}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   598
  \end{enumerate}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   599
  \end{enumerate}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   600
  *}
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   601
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   602
(*<*)
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   603
end
800b0e3b4204 More explanations added by XY.
zhang
parents: 265
diff changeset
   604
(*>*)
264
24199eb2c423 Newer version.
zhang
parents: 262
diff changeset
   605
272
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   606
subsection {* Event @{text "V th cs"} *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   607
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   608
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   609
context step_v_cps_nt
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   610
begin
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   611
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   612
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   613
text {*
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   614
  The context under which event @{text "V th cs"} happens is formalized as follows:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   615
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   616
    \item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   617
    \item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   618
      event @{text "V th cs"} is eligible to happen under state @{term "s'"} and
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   619
      state @{term "s'"} is a valid state.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   620
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   621
  *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   622
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   623
text {* \noindent
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   624
  Under such a context, we investigated how the current precedence @{term "cp"} of 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   625
  threads change from state @{term "s'"} to @{term "s"}. 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   626
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   627
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   628
  Two subcases are considerted, 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   629
  where the first is that there exits @{term "th'"} 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   630
  such that 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   631
  @{thm [display] nt} 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   632
  holds, which means there exists a thread @{term "th'"} to take over
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   633
  the resource release by thread @{term "th"}. 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   634
  In this sub-case, the following results are obtained:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   635
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   636
  \item The change of RAG is given by lemma @{text "depend_s"}: 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   637
  @{thm [display] "depend_s"}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   638
  which shows two edges are removed while one is added. These changes imply how
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   639
  the current precedences should be re-computed.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   640
  \item First all threads different from @{term "th"} and @{term "th'"} have their
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   641
  @{term "cp"}-value kept, therefore do not need a re-computation
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   642
  (@{text "cp_kept"}): @{thm [display] cp_kept}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   643
  This lemma also implies, only the @{term "cp"}-values of @{term "th"} and @{term "th'"}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   644
  need to be recomputed.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   645
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   646
  *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   647
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   648
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   649
end
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   650
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   651
context step_v_cps_nnt
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   652
begin
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   653
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   654
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   655
text {*
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   656
  The other sub-case is when for all @{text "th'"}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   657
  @{thm [display] nnt}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   658
  holds, no such thread exists. The following results can be obtained for this 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   659
  sub-case:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   660
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   661
  \item The change of RAG is given by lemma @{text "depend_s"}:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   662
  @{thm [display] depend_s}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   663
  which means only one edge is removed.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   664
  \item In this case, no re-computation is needed (@{text "eq_cp"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   665
  @{thm [display] eq_cp}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   666
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   667
  *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   668
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   669
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   670
end
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   671
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   672
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   673
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   674
subsection {* Event @{text "P th cs"} *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   675
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   676
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   677
context step_P_cps_e
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   678
begin
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   679
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   680
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   681
text {*
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   682
  The context under which event @{text "P th cs"} happens is formalized as follows:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   683
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   684
    \item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   685
    \item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   686
      event @{text "P th cs"} is eligible to happen under state @{term "s'"} and
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   687
      state @{term "s'"} is a valid state.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   688
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   689
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   690
  This case is further divided into two sub-cases. The first is when @{thm ee} holds.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   691
  The following results can be obtained:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   692
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   693
  \item One edge is added to the RAG (@{text "depend_s"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   694
    @{thm [display] depend_s}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   695
  \item No re-computation is needed (@{text "eq_cp"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   696
    @{thm [display] eq_cp}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   697
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   698
*}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   699
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   700
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   701
end
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   702
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   703
context step_P_cps_ne
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   704
begin
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   705
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   706
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   707
text {*
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   708
  The second is when @{thm ne} holds.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   709
  The following results can be obtained:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   710
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   711
  \item One edge is added to the RAG (@{text "depend_s"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   712
    @{thm [display] depend_s}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   713
  \item Threads with no dependence relation with @{term "th"} do not need a re-computation
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   714
    of their @{term "cp"}-values (@{text "eq_cp"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   715
    @{thm [display] eq_cp}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   716
    This lemma implies all threads with a dependence relation with @{term "th"} may need 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   717
    re-computation.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   718
  \item Similar to the case of @{term "Set"}, the computation procedure could stop earlier
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   719
    (@{text "eq_up"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   720
    @{thm [display] eq_up}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   721
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   722
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   723
  *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   724
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   725
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   726
end
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   727
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   728
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   729
subsection {* Event @{text "Create th prio"} *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   730
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   731
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   732
context step_create_cps
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   733
begin
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   734
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   735
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   736
text {*
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   737
  The context under which event @{text "Create th prio"} happens is formalized as follows:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   738
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   739
    \item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   740
    \item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   741
      event @{text "Create th prio"} is eligible to happen under state @{term "s'"} and
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   742
      state @{term "s'"} is a valid state.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   743
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   744
  The following results can be obtained under this context:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   745
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   746
  \item The RAG does not change (@{text "eq_dep"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   747
    @{thm [display] eq_dep}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   748
  \item All threads other than @{term "th"} do not need re-computation (@{text "eq_cp"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   749
    @{thm [display] eq_cp}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   750
  \item The @{term "cp"}-value of @{term "th"} equals its precedence 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   751
    (@{text "eq_cp_th"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   752
    @{thm [display] eq_cp_th}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   753
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   754
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   755
*}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   756
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   757
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   758
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   759
end
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   760
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   761
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   762
subsection {* Event @{text "Exit th"} *}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   763
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   764
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   765
context step_exit_cps
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   766
begin
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   767
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   768
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   769
text {*
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   770
  The context under which event @{text "Exit th"} happens is formalized as follows:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   771
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   772
    \item The formation of @{term "s"} (@{text "s_def"}): @{thm s_def}.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   773
    \item State @{term "s"} is a valid state (@{text "vt_s"}): @{thm vt_s}. This implies 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   774
      event @{text "Exit th"} is eligible to happen under state @{term "s'"} and
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   775
      state @{term "s'"} is a valid state.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   776
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   777
  The following results can be obtained under this context:
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   778
  \begin{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   779
  \item The RAG does not change (@{text "eq_dep"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   780
    @{thm [display] eq_dep}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   781
  \item All threads other than @{term "th"} do not need re-computation (@{text "eq_cp"}):
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   782
    @{thm [display] eq_cp}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   783
  \end{enumerate}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   784
  Since @{term th} does not live in state @{term "s"}, there is no need to compute 
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   785
  its @{term cp}-value.
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   786
*}
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   787
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   788
(*<*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   789
end
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   790
(*>*)
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   791
ee4611c1e13c All comments added.
zhang
parents: 271
diff changeset
   792
262
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   793
section {* Related works \label{related} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   794
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   795
text {*
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   796
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   797
  \item {\em Integrating Priority Inheritance Algorithms in the Real-Time Specification for Java}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   798
    \cite{WellingsBSB07} models and verifies the combination of Priority Inheritance (PI) and 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   799
    Priority Ceiling Emulation (PCE) protocols in the setting of Java virtual machine 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   800
    using extended Timed Automata(TA) formalism of the UPPAAL tool. Although a detailed 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   801
    formal model of combined PI and PCE is given, the number of properties is quite 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   802
    small and the focus is put on the harmonious working of PI and PCE. Most key features of PI 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   803
    (as well as PCE) are not shown. Because of the limitation of the model checking technique
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   804
    used there, properties are shown only for a small number of scenarios. Therefore, 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   805
    the verification does not show the correctness of the formal model itself in a 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   806
    convincing way.  
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   807
  \item {\em Formal Development of Solutions for Real-Time Operating Systems with TLA+/TLC}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   808
    \cite{Faria08}. A formal model of PI is given in TLA+. Only 3 properties are shown 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   809
    for PI using model checking. The limitation of model checking is intrinsic to the work.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   810
  \item {\em Synchronous modeling and validation of priority inheritance schedulers}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   811
    \cite{conf/fase/JahierHR09}. Gives a formal model
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   812
    of PI and PCE in AADL (Architecture Analysis \& Design Language) and checked 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   813
    several properties using model checking. The number of properties shown there is 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   814
    less than here and the scale is also limited by the model checking technique. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   815
  \item {\em The Priority Ceiling Protocol: Formalization and Analysis Using PVS}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   816
    \cite{dutertre99b}. Formalized another protocol for Priority Inversion in the 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   817
    interactive theorem proving system PVS.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   818
\end{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   819
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   820
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   821
  There are several works on inversion avoidance:
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   822
  \begin{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   823
  \item {\em Solving the group priority inversion problem in a timed asynchronous system}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   824
    \cite{Wang:2002:SGP}. The notion of Group Priority Inversion is introduced. The main 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   825
    strategy is still inversion avoidance. The method is by reordering requests 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   826
    in the setting of Client-Server.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   827
  \item {\em A Formalization of Priority Inversion} \cite{journals/rts/BabaogluMS93}. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   828
    Formalized the notion of Priority 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   829
    Inversion and proposes methods to avoid it. 
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   830
  \end{enumerate}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   831
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   832
  {\em Examples of inaccurate specification of the protocol ???}.
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   833
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   834
*}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   835
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   836
section {* Conclusions \label{conclusion} *}
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   837
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   838
(*<*)
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   839
end
4190df6f4488 initial version of the PIP formalisation
urbanc
parents:
diff changeset
   840
(*>*)