Journal/Paper.thy
author Christian Urban <urbanc@in.tum.de>
Fri, 23 Feb 2018 21:08:37 +0000
changeset 205 12a8dfcb55a7
parent 204 5191a09d9928
child 206 3be0c4c034af
permissions -rw-r--r--
updated
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     1
(*<*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     2
theory Paper
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
     3
imports "../Implementation" 
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
     4
        "../Correctness" 
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
     5
        "~~/src/HOL/Library/LaTeXsugar"
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     6
begin
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     7
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
     8
ML {* Scan.succeed *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
     9
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    10
ML {*
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    11
 fun strip_quants ctxt trm =
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    12
   case trm of 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    13
      Const("HOL.Trueprop", _) $ t => strip_quants ctxt t 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    14
    | Const("Pure.imp", _) $ _ $ t => strip_quants ctxt t
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    15
    | Const("Pure.all", _) $ Abs(n, T, t) =>
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    16
         strip_quants ctxt (subst_bound (Free (n, T), t)) 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    17
    | Const("HOL.All", _) $ Abs(n, T, t) =>
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    18
         strip_quants ctxt (subst_bound (Free (n, T), t)) 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    19
    | Const("HOL.Ex", _) $ Abs(n, T, t) =>
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    20
         strip_quants ctxt (subst_bound (Free (n, T), t)) 
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    21
    | _ => trm
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    22
*}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    23
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    24
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    25
setup {* Term_Style.setup @{binding "no_quants"} (Scan.succeed strip_quants) *}
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    26
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    27
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
    28
declare [[show_question_marks = false]]
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
    29
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    30
notation (latex output)
197
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    31
  Cons ("_::_" [78,77] 73)
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    32
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    33
notation (latex output)
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    34
  vt ("valid'_state") and
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    35
  Prc ("'(_, _')") and
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
    36
  holding_raw ("holds") and
130
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
    37
  holding ("holds") and
197
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    38
  waiting_raw ("waits")
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    39
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    40
notation (latex output)
130
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
    41
  waiting ("waits") and
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
    42
  tG_raw ("TDG") and
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
    43
  tG ("TDG") and
197
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    44
  RAG_raw ("RAG") and 
130
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
    45
  RAG ("RAG") and
197
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    46
  Th ("T") 
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    47
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    48
notation (latex output)
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    49
  Cs ("C") and
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    50
  readys ("ready") and
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    51
  preced ("prec") and
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
    52
  preceds ("precs") and
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    53
  cpreced ("cprec") and
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
    54
  cpreceds ("cprecs") and
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
    55
  cp ("cprec") and
197
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    56
  holdents ("resources") and  
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
    57
  cntP ("c\<^bsub>P\<^esub>") and
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
    58
  cntV ("c\<^bsub>V\<^esub>")
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
    59
197
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    60
notation (latex output)
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    61
  DUMMY  ("\<^latex>\<open>\\mbox{$\\_\\!\\_$}\<close>")
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    62
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    63
notation (latex output)
ca4ddf26a7c7 updated to Isabelle 2016-1
Christian Urban <urbanc@in.tum.de>
parents: 193
diff changeset
    64
  If  ("(\<^latex>\<open>\\textrm{\<close>if\<^latex>\<open>}\<close> (_)/ \<^latex>\<open>\\textrm{\<close>then\<^latex>\<open>}\<close> (_)/ \<^latex>\<open>\\textrm{\<close>else\<^latex>\<open>}\<close> (_))" 10)
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    65
(*>*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    66
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    67
section {* Introduction *}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    68
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    69
text {*
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    70
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    71
  Many real-time systems need to support threads involving priorities
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    72
  and locking of resources. Locking of resources ensures mutual
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    73
  exclusion when accessing shared data or devices that cannot be
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    74
  preempted. Priorities allow scheduling of threads that need to
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    75
  finish their work within deadlines.  Unfortunately, both features
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    76
  can interact in subtle ways leading to a problem, called
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    77
  \emph{Priority Inversion}. Suppose three threads having priorities
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    78
  $H$(igh), $M$(edium) and $L$(ow). We would expect that the thread
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    79
  $H$ blocks any other thread with lower priority and the thread
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    80
  itself cannot be blocked indefinitely by threads with lower
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    81
  priority. Alas, in a naive implementation of resource locking and
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
    82
  priorities, this property can be violated. For this let $L$ be in the
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    83
  possession of a lock for a resource that $H$ also needs. $H$ must
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    84
  therefore wait for $L$ to exit the critical section and release this
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    85
  lock. The problem is that $L$ might in turn be blocked by any thread
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    86
  with priority $M$, and so $H$ sits there potentially waiting
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    87
  indefinitely (consider the case where threads with propority $M$
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    88
  continously need to be processed). Since $H$ is blocked by threads
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    89
  with lower priorities, the problem is called Priority Inversion. It
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    90
  was first described in \cite{Lampson80} in the context of the Mesa
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
    91
  programming language designed for concurrent programming.
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
    92
 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    93
  If the problem of Priority Inversion is ignored, real-time systems
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    94
  can become unpredictable and resulting bugs can be hard to diagnose.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    95
  The classic example where this happened is the software that
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    96
  controlled the Mars Pathfinder mission in 1997 \cite{Reeves98}.  On
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    97
  Earth the software run mostly without any problem, but once the
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
    98
  spacecraft landed on Mars, it shut down at irregular, but frequent,
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    99
  intervals leading to loss of project time as normal operation of the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   100
  craft could only resume the next day (the mission and data already
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   101
  collected were fortunately not lost, because of a clever system
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   102
  design).  The reason for the shutdowns was that the scheduling
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   103
  software fell victim to Priority Inversion: a low priority thread
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   104
  locking a resource prevented a high priority thread from running in
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   105
  time, leading to a system reset. Once the problem was found, it was
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   106
  rectified by enabling the \emph{Priority Inheritance Protocol} (PIP)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   107
  \cite{Sha90}\footnote{Sha et al.~call it the \emph{Basic Priority
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   108
  Inheritance Protocol} \cite{Sha90} and others sometimes also call it
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   109
  \emph{Priority Boosting}, \emph{Priority Donation} or \emph{Priority
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   110
  Lending}.}  in the scheduling software.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   111
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   112
  The idea behind PIP is to let the thread $L$ temporarily inherit the
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   113
  high priority from $H$ until $L$ leaves the critical section
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   114
  unlocking the resource. This solves the problem of $H$ having to
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   115
  wait indefinitely, because $L$ cannot be blocked by threads having
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   116
  priority $M$. While a few other solutions exist for the Priority
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   117
  Inversion problem, PIP is one that is widely deployed and
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   118
  implemented. This includes VxWorks (a proprietary real-time OS used
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   119
  in the Mars Pathfinder mission, in Boeing's 787 Dreamliner, Honda's
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
   120
  ASIMO robot, etc.) and ThreadX (another proprietary real-time OS
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   121
  used in nearly all HP inkjet printers \cite{ThreadX}), but also the
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   122
  POSIX 1003.1c Standard realised for example in libraries for
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   123
  FreeBSD, Solaris and Linux.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   124
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   125
  Two advantages of PIP are that it is deterministic and that
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   126
  increasing the priority of a thread can be performed dynamically by
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   127
  the scheduler.  This is in contrast to \emph{Priority Ceiling}
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   128
  \cite{Sha90}, another solution to the Priority Inversion problem,
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   129
  which requires static analysis of the program in order to prevent
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   130
  Priority Inversion, and also in contrast to the approach taken in
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   131
  the Windows NT scheduler, which avoids this problem by randomly
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   132
  boosting the priority of ready low-priority threads (see for
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   133
  instance~\cite{WINDOWSNT}).  However, there has also been strong
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   134
  criticism against PIP. For instance, PIP cannot prevent deadlocks
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   135
  when lock dependencies are circular, and also blocking times can be
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   136
  substantial (more than just the duration of a critical section).
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   137
  Though, most criticism against PIP centres around unreliable
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   138
  implementations and PIP being too complicated and too inefficient.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   139
  For example, Yodaiken writes in \cite{Yodaiken02}:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   140
201
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
   141
  \begin{quote} \it{}``Priority inheritance is neither efficient nor
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
   142
  reliable. Implementations are either incomplete (and unreliable) or
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
   143
  surprisingly complex and intrusive.''  \end{quote}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   144
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   145
  \noindent He suggests avoiding PIP altogether by designing the
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   146
  system so that no priority inversion may happen in the first
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   147
  place. However, such ideal designs may not always be achievable in
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   148
  practice.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   149
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   150
  In our opinion, there is clearly a need for investigating correct
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   151
  algorithms for PIP. A few specifications for PIP exist (in informal
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   152
  English) and also a few high-level descriptions of implementations
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   153
  (e.g.~in the textbooks \cite[Section 12.3.1]{Liu00} and
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   154
  \cite[Section 5.6.5]{Vahalia96}), but they help little with actual
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   155
  implementations. That this is a problem in practice is proved by an
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   156
  email by Baker, who wrote on 13 July 2009 on the Linux Kernel
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   157
  mailing list:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   158
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   159
  \begin{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   160
  \it{}``I observed in the kernel code (to my disgust), the Linux PIP
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   161
  implementation is a nightmare: extremely heavy weight, involving
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   162
  maintenance of a full wait-for graph, and requiring updates for a
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   163
  range of events, including priority changes and interruptions of
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   164
  wait operations.''
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   165
  \end{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   166
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   167
  \noindent The criticism by Yodaiken, Baker and others suggests
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   168
  another look at PIP from a more abstract level (but still concrete
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   169
  enough to inform an implementation), and makes PIP a good candidate
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   170
  for a formal verification. An additional reason is that the original
43
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   171
  specification of PIP~\cite{Sha90}, despite being informally
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   172
  ``proved'' correct, is actually \emph{flawed}.
43
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   173
  
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   174
  Yodaiken \cite{Yodaiken02} and also Moylan et
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   175
  al.~\cite{deinheritance} point to a subtlety that had been
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   176
  overlooked in the informal proof by Sha et al. They specify PIP in
164
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   177
  \cite[Section III]{Sha90} so that after the thread (whose priority has been
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   178
  raised) completes its critical section and releases the lock, it
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   179
  ``{\it returns to its original priority level}''. This leads them to
43
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   180
  believe that an implementation of PIP is ``{\it rather
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   181
  straightforward}''~\cite{Sha90}.  Unfortunately, as Yodaiken and
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   182
  Moylan et al.~point out, this behaviour is too simplistic. Moylan et
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   183
  al.~write that there are ``{\it some hidden
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   184
  traps}''~\cite{deinheritance}.  Consider the case where the low
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   185
  priority thread $L$ locks \emph{two} resources, and two
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   186
  high-priority threads $H$ and $H'$ each wait for one of them.  If
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   187
  $L$ releases one resource so that $H$, say, can proceed, then we
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   188
  still have Priority Inversion with $H'$ (which waits for the other
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   189
  resource). The correct behaviour for $L$ is to switch to the highest
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   190
  remaining priority of the threads that it blocks.  A similar error
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   191
  is made in the textbook \cite[Section 2.3.1]{book} which specifies
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   192
  for a process that inherited a higher priority and exits a critical
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   193
  section ``{\it it resumes the priority it had at the point of entry
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   194
  into the critical section}''.  This error can also be found in the
134
8a13b37b4d95 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 130
diff changeset
   195
  textbook \cite[Section 16.4.1]{LiYao03} where the authors write
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   196
  about this process: ``{\it its priority is immediately lowered to the level originally assigned}'';
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   197
  and also in the 
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   198
  more recent textbook \cite[Page 119]{Laplante11} where the authors
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   199
  state: ``{\it when [the task] exits the critical section that caused
43
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   200
  the block, it reverts to the priority it had when it entered that
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   201
  section}''. The textbook \cite[Page 286]{Liu00} contains a simlar
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   202
  flawed specification and even goes on to develop pseudo-code based
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   203
  on this flawed specification. Accordingly, the operating system
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   204
  primitives for inheritance and restoration of priorities in
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   205
  \cite{Liu00} depend on maintaining a data structure called
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   206
  \emph{inheritance log}. This log is maintained for every thread and
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   207
  broadly specified as containing ``{\it [h]istorical information on
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   208
  how the thread inherited its current priority}'' \cite[Page
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   209
  527]{Liu00}. Unfortunately, the important information about actually
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   210
  computing the priority to be restored solely from this log is not
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   211
  explained in \cite{Liu00} but left as an ``{\it excercise}'' to the
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   212
  reader.  As we shall see, a correct version of PIP does not need to
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   213
  maintain this (potentially expensive) log data structure at
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   214
  all. Surprisingly also the widely read and frequently updated
182
1e7d55d8b3da updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   215
  textbook \cite{Silberschatz13} gives the wrong specification. On Page 254 the authors write: ``{\it Upon releasing the
75
2aa37de77f31 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 70
diff changeset
   216
  lock, the [low-priority] thread will revert to its original
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   217
  priority.}'' The same error is also repeated later in this popular textbook.
43
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   218
45e1d324c493 a few additions
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 41
diff changeset
   219
  
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   220
  While \cite{Laplante11,LiYao03,Liu00,book,Sha90,Silberschatz13} are
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   221
  the only formal publications we have found that specify the
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   222
  incorrect behaviour, it seems also many informal descriptions of the
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   223
  PIP protocol overlook the possibility that another high-priority
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   224
  process might wait for a low-priority process to finish.  A notable
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   225
  exception is the texbook \cite{buttazzo}, which gives the correct
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   226
  behaviour of resetting the priority of a thread to the highest
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   227
  remaining priority of the threads it blocks. This textbook also
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   228
  gives an informal proof for the correctness of PIP in the style of
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   229
  Sha et al. Unfortunately, this informal proof is too vague to be
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   230
  useful for formalising the correctness of PIP and the specification
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   231
  leaves out nearly all details in order to implement PIP
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   232
  efficiently.\medskip\smallskip
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   233
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   234
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   235
  \noindent {\bf Contributions:} There have been earlier formal
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   236
  investigations into PIP \cite{Faria08,Jahier09,Wellings07}, but they
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   237
  employ model checking techniques. This paper presents a formalised
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   238
  and mechanically checked proof for the correctness of PIP. For this
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   239
  we needed to design a new correctness criterion for PIP. In contrast
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   240
  to model checking, our formalisation provides insight into why PIP
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   241
  is correct and allows us to prove stronger properties that, as we
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   242
  will show, can help with an efficient implementation of PIP. We
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   243
  illustrate this with an implementation of PIP in the educational
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   244
  operating system PINTOS \cite{PINTOS}.  For example, we found by
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   245
  ``playing'' with the formalisation that the choice of the next
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   246
  thread to take over a lock when a resource is released is irrelevant
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   247
  for PIP being correct---a fact that has not been mentioned in the
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   248
  literature and not been used in the reference implementation of PIP
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   249
  in PINTOS.  This fact, however, is important for an efficient
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   250
  implementation of PIP, because we can give the lock to the thread
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   251
  with the highest priority so that it terminates more quickly.  We
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   252
  are also being able to generalise the scheduler of Sha et
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   253
  al.~\cite{Sha90} to the practically relevant case where critical
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   254
  sections can overlap; see Figure~\ref{overlap} \emph{a)} below for
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   255
  an example of this restriction. In the existing literature there is
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   256
  no proof and also no proving method that cover this generalised
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   257
  case.
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   258
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   259
  \begin{figure}
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   260
  \begin{center}
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   261
  \begin{tikzpicture}[scale=1]
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   262
  %%\draw[step=2mm] (0,0) grid (10,2);
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   263
  \draw [->,line width=0.6mm] (0,0) -- (10,0);
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   264
  \draw [->,line width=0.6mm] (0,1.5) -- (10,1.5);
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   265
  \draw [line width=0.6mm, pattern=horizontal lines] (0.8,0) rectangle (4,0.5);
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   266
  \draw [line width=0.6mm, pattern=north east lines] (3.0,0) rectangle (6,0.5);
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   267
  \draw [line width=0.6mm, pattern=vertical lines] (5.0,0) rectangle (9,0.5);
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   268
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   269
  \draw [line width=0.6mm, pattern=horizontal lines] (0.6,1.5) rectangle (4.0,2); 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   270
  \draw [line width=0.6mm, pattern=north east lines] (1.0,1.5) rectangle (3.4,2); 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   271
  \draw [line width=0.6mm, pattern=vertical lines] (5.0,1.5) rectangle (8.8,2); 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   272
 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   273
  \node at (0.8,-0.3) {@{term "P\<^sub>1"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   274
  \node at (3.0,-0.3) {@{term "P\<^sub>2"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   275
  \node at (4.0,-0.3) {@{term "V\<^sub>1"}}; 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   276
  \node at (5.0,-0.3) {@{term "P\<^sub>3"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   277
  \node at (6.0,-0.3) {@{term "V\<^sub>2"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   278
  \node at (9.0,-0.3) {@{term "V\<^sub>3"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   279
  
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   280
  \node at (0.6,1.2) {@{term "P\<^sub>1"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   281
  \node at (1.0,1.2) {@{term "P\<^sub>2"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   282
  \node at (3.4,1.2) {@{term "V\<^sub>2"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   283
  \node at (4.0,1.2) {@{term "V\<^sub>1"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   284
  \node at (5.0,1.2) {@{term "P\<^sub>3"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   285
  \node at (8.8,1.2) {@{term "V\<^sub>3"}};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   286
  \node at (10.3,0) {$t$};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   287
  \node at (10.3,1.5) {$t$};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   288
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   289
  \node at (-0.3,0.2) {$b)$};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   290
  \node at (-0.3,1.7) {$a)$};
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   291
  \end{tikzpicture}\mbox{}\\[-10mm]\mbox{}
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   292
  \end{center}
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   293
  \caption{Assume a process is over time locking and unlocking, say, three resources.
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   294
  The locking requests are labelled @{term "P\<^sub>1"}, @{term "P\<^sub>2"}, and @{term "P\<^sub>3"} 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   295
  respectively, and the corresponding unlocking operations are labelled
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   296
  @{term "V\<^sub>1"}, @{term "V\<^sub>2"}, and @{term "V\<^sub>3"}. 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   297
  Then graph $a)$ shows \emph{properly nested} critical sections as required 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   298
  by Sha et al.~\cite{Sha90} in their proof---the sections must either be contained within 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   299
  each other
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   300
  (the section @{term "P\<^sub>2"}--@{term "V\<^sub>2"} is contained in @{term "P\<^sub>1"}--@{term "V\<^sub>1"}) or
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   301
  be independent (@{term "P\<^sub>3"}--@{term "V\<^sub>3"} is independent from the other 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   302
  two). Graph $b)$ shows the general case where 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   303
  the locking and unlocking of different critical sections can 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   304
  overlap.\label{overlap}}
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   305
  \end{figure}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   306
*}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   307
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
   308
section {* Formal Model of the Priority Inheritance Protocol\label{model} *}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   309
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   310
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   311
  The Priority Inheritance Protocol, short PIP, is a scheduling
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   312
  algorithm for a single-processor system.\footnote{We shall come back
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   313
  later to the case of PIP on multi-processor systems.} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   314
  Following good experience in earlier work \cite{Wang09},  
143
c5a65d98191a updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 142
diff changeset
   315
  our model of PIP is based on Paulson's inductive approach for protocol
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   316
  verification \cite{Paulson98}. In this approach a \emph{state} of a system is
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   317
  given by a list of events that happened so far (with new events prepended to the list). 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   318
  \emph{Events} of PIP fall
182
1e7d55d8b3da updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   319
  into five categories defined as the Isabelle datatype:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   320
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   321
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   322
  \mbox{\begin{tabular}{r@ {\hspace{2mm}}c@ {\hspace{2mm}}l@ {\hspace{7mm}}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   323
  \isacommand{datatype} event 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   324
  & @{text "="} & @{term "Create thread priority\<iota>"}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   325
  & @{text "|"} & @{term "Exit thread"} \\
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   326
  & @{text "|"} & @{term "Set thread priority\<iota>"} & 
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   327
  @{text thread} {\rm resets its own priority} \\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   328
  & @{text "|"} & @{term "P thread cs"} & {\rm request of resource} @{text "cs"} {\rm by} @{text "thread"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   329
  & @{text "|"} & @{term "V thread cs"} & {\rm release of resource} @{text "cs"} {\rm by} @{text "thread"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   330
  \end{tabular}}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   331
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   332
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   333
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   334
  whereby threads, priorities and (critical) resources are represented
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   335
  as natural numbers. The event @{term Set} models the situation that
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   336
  a thread obtains a new priority given by the programmer or
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   337
  user (for example via the {\tt nice} utility under UNIX).  For states
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   338
  we define the following type-synonym:
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   339
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   340
  \begin{isabelle}\ \ \ \ \ %%%
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   341
  \isacommand{type\_synonym} @{text "state = event list"}
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   342
  \end{isabelle}    
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   343
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   344
  \noindent As in Paulson's work, we need to define functions that
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   345
  allow us to make some observations about states.  One function,
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   346
  called @{term threads}, calculates the set of ``live'' threads that
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   347
  we have seen so far in a state:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   348
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   349
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   350
  \mbox{\begin{tabular}{lcl}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   351
  @{thm (lhs) threads.simps(1)} & @{text "\<equiv>"} & 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   352
    @{thm (rhs) threads.simps(1)}\\
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   353
  @{thm (lhs) threads.simps(2)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   354
    @{thm (rhs) threads.simps(2)}\\
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   355
  @{thm (lhs) threads.simps(3)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   356
    @{thm (rhs) threads.simps(3)}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   357
  @{term "threads (DUMMY#s)"} & @{text "\<equiv>"} & @{term "threads s"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   358
  \end{tabular}}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   359
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   360
203
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
   361
  \noindent In this definition @{term "DUMMY # DUMMY"} stands for
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
   362
  list-cons and @{term "[]"} for the empty list. We use @{term "DUMMY"}
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
   363
  to match any pattern, like in functional programming.
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
   364
  Another function
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
   365
  calculates the priority for a thread @{text "th"}, which is defined
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
   366
  as
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   367
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   368
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   369
  \mbox{\begin{tabular}{lcl}
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   370
  @{thm (lhs) priority.simps(1)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   371
    @{thm (rhs) priority.simps(1)}\\
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   372
  @{thm (lhs) priority.simps(2)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   373
    @{thm (rhs) priority.simps(2)}\\
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   374
  @{thm (lhs) priority.simps(3)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   375
    @{thm (rhs) priority.simps(3)}\\
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   376
  @{term "priority th (DUMMY#s)"} & @{text "\<equiv>"} & @{term "priority th s"}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   377
  \end{tabular}}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   378
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   379
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   380
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   381
  In this definition we set @{text 0} as the default priority for
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   382
  threads that have not (yet) been created. The last function we need 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   383
  calculates the ``time'', or index, at which time a thread had its 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   384
  priority last set.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   385
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   386
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   387
  \mbox{\begin{tabular}{lcl}
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   388
  @{thm (lhs) last_set.simps(1)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   389
    @{thm (rhs) last_set.simps(1)}\\
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   390
  @{thm (lhs) last_set.simps(2)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   391
    @{thm (rhs) last_set.simps(2)}\\
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   392
  @{thm (lhs) last_set.simps(3)} & @{text "\<equiv>"} & 
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   393
    @{thm (rhs) last_set.simps(3)}\\
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   394
  @{term "last_set th (DUMMY#s)"} & @{text "\<equiv>"} & @{term "last_set th s"}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   395
  \end{tabular}}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   396
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   397
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   398
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   399
  In this definition @{term "length s"} stands for the length of the list
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   400
  of events @{text s}. Again the default value in this function is @{text 0}
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   401
  for threads that have not been created yet. An \emph{actor} of an event is
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   402
  defined as
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   403
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   404
  \begin{isabelle}\ \ \ \ \ %%%
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   405
  \mbox{\begin{tabular}{lcl}
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   406
  @{thm (lhs) actor.simps(5)} & @{text "\<equiv>"} & 
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   407
    @{thm (rhs) actor.simps(5)}\\
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   408
  @{thm (lhs) actor.simps(1)} & @{text "\<equiv>"} & 
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   409
    @{thm (rhs) actor.simps(1)}\\
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   410
  @{thm (lhs) actor.simps(4)} & @{text "\<equiv>"} & 
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   411
    @{thm (rhs) actor.simps(4)}\\
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   412
  @{thm (lhs) actor.simps(2)} & @{text "\<equiv>"} & 
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   413
    @{thm (rhs) actor.simps(2)}\\
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   414
  @{thm (lhs) actor.simps(3)} & @{text "\<equiv>"} & 
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   415
    @{thm (rhs) actor.simps(3)}\\
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   416
  \end{tabular}}
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   417
  \end{isabelle}
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
   418
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   419
  \noindent
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   420
  This allows us to filter out the actions a set of threads @{text ths} 
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   421
  perform in a list of events @{text s}, namely
163
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
   422
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
   423
  \begin{isabelle}\ \ \ \ \ %%%
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
   424
  @{thm actions_of_def[where ?s="s" and ?ths="ths", THEN eq_reflection]}.
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
   425
  \end{isabelle}
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
   426
182
1e7d55d8b3da updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   427
  \noindent
163
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
   428
  where we use Isabelle's notation for list-comprehensions. This
182
1e7d55d8b3da updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   429
  notation is very similar to notation used in Haskell for list-comprehensions.  
1e7d55d8b3da updated
Christian Urban <urbanc@in.tum.de>
parents: 181
diff changeset
   430
  A \emph{precedence} of a thread @{text th} in a
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   431
  state @{text s} is the pair of natural numbers defined as
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   432
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   433
  \begin{isabelle}\ \ \ \ \ %%%
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   434
  @{thm preced_def}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   435
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   436
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   437
  \noindent
35
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   438
  We also use the abbreviation 
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   439
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   440
  \begin{isabelle}\ \ \ \ \ %%%
140
389ef8b1959c updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 139
diff changeset
   441
  @{abbrev "preceds ths s"}
35
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   442
  \end{isabelle}
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   443
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   444
  \noindent
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   445
  for the precedences of a set of threads @{text ths} in state @{text s}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   446
  The point of precedences is to schedule threads not according to priorities (because what should
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   447
  we do in case two threads have the same priority), but according to precedences. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   448
  Precedences allow us to always discriminate between two threads with equal priority by 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   449
  taking into account the time when the priority was last set. We order precedences so 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   450
  that threads with the same priority get a higher precedence if their priority has been 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   451
  set earlier, since for such threads it is more urgent to finish their work. In an implementation
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   452
  this choice would translate to a quite straightforward FIFO-scheduling of threads with 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   453
  the same priority. 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   454
  
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   455
  Moylan et al.~\cite{deinheritance} considered the alternative of 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   456
  ``time-slicing'' threads with equal priority, but found that it does not lead to 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   457
  advantages in practice. On the contrary, according to their work having a policy 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   458
  like our FIFO-scheduling of threads with equal priority reduces the number of
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   459
  tasks involved in the inheritance process and thus minimises the number
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   460
  of potentially expensive thread-switches. 
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   461
  
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   462
  %\endnote{{\bf NEEDED?} We will also need counters for @{term P} and @{term V} events of a thread @{term th}
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   463
  %in a state @{term s}. This can be straightforwardly defined in Isabelle as
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   464
  %
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   465
  %\begin{isabelle}\ \ \ \ \ %%%
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   466
  %\mbox{\begin{tabular}{@ {}l}
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   467
  %@ {thm cntP_def}\\
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   468
  %@ {thm cntV_def}
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   469
  %\end{tabular}}
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   470
  %\end{isabelle}
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   471
  % 
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   472
  %\noindent using the predefined function @{const count} for lists.}
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
   473
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   474
  Next, we introduce the concept of \emph{waiting queues}. They are
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   475
  lists of threads associated with every resource. The first thread in
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   476
  this list (i.e.~the head, or short @{term hd}) is chosen to be the one 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   477
  that is in possession of the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   478
  ``lock'' of the corresponding resource. We model waiting queues as
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   479
  functions, below abbreviated as @{text wq}. They take a resource as
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   480
  argument and return a list of threads.  This allows us to define
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   481
  when a thread \emph{holds}, respectively \emph{waits} for, a
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   482
  resource @{text cs} given a waiting queue function @{text wq}.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   483
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   484
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   485
  \begin{tabular}{@ {}l}
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   486
  @{thm holding_raw_def[where thread="th"]}\\
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   487
  @{thm waiting_raw_def[where thread="th"]}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   488
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   489
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   490
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   491
  \noindent In this definition we assume that @{text "set"} converts a
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   492
  list into a set.  Note that in the first definition the condition
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   493
  about @{text "th \<in> set (wq cs)"} does not follow from @{text "th
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   494
  = hd (set (wq cs))"}, since the head of an empty list is undefined
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   495
  in Isabelle/HOL.  At the beginning, that is in the state where no
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   496
  thread is created yet, the waiting queue function will be the
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   497
  function that returns the empty list for every resource.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   498
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   499
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   500
  @{abbrev all_unlocked}\hfill\numbered{allunlocked}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   501
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   502
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   503
  \noindent
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   504
  Using @{term "holding_raw"} and @{term waiting_raw}, we can introduce \emph{Resource Allocation Graphs} 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   505
  (RAG), which represent the dependencies between threads and resources.
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   506
  We choose to represent @{text "RAG"}s as relations using pairs of the form
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   507
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   508
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   509
  @{term "(Th th, Cs cs)"} \hspace{5mm}{\rm and}\hspace{5mm}
136
fb3f52fe99d1 updated tG definition
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 135
diff changeset
   510
  @{term "(Cs cs, Th th)"}\hfill\numbered{pairs}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   511
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   512
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   513
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   514
  where the first stands for a \emph{waiting edge} and the second for a 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   515
  \emph{holding edge} (@{term Cs} and @{term Th} are constructors of a 
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   516
  datatype for vertices). Given a waiting queue function, a @{text RAG} is defined 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   517
  as the union of the sets of waiting and holding edges, namely
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   518
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   519
  \begin{isabelle}\ \ \ \ \ %%%
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   520
  @{thm RAG_raw_def}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   521
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   522
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   523
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
   524
  \begin{figure}[t]
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   525
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   526
  \newcommand{\fnt}{\fontsize{7}{8}\selectfont}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   527
  \begin{tikzpicture}[scale=1]
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   528
  %%\draw[step=2mm] (-3,2) grid (1,-1);
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   529
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   530
  \node (A) at (0,0) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>0"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   531
  \node (B) at (2,0) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^sub>1"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   532
  \node (C) at (4,0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>1"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   533
  \node (D) at (4,-0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>2"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   534
  \node (E) at (6,-0.7) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^sub>2"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   535
  \node (E1) at (6, 0.2) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^sub>3"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   536
  \node (F) at (8,-0.7) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>3"}};
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   537
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   538
  \node (X) at (0,-2) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>4"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   539
  \node (Y) at (2,-2) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^sub>4"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   540
  \node (Z) at (2,-2.9) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^sub>5"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   541
  \node (U1) at (4,-2) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>5"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   542
  \node (U2) at (4,-2.9) [draw, rounded corners=1mm, rectangle, very thick] {@{text "th\<^sub>6"}};
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   543
   \node (R) at (6,-2.9) [draw, circle, very thick, inner sep=0.4mm] {@{text "cs\<^sub>6"}};
12
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   544
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   545
  \draw [<-,line width=0.6mm] (A) to node [pos=0.54,sloped,above=-0.5mm] {\fnt{}holding}  (B);
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   546
  \draw [->,line width=0.6mm] (C) to node [pos=0.4,sloped,above=-0.5mm] {\fnt{}waiting}  (B);
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   547
  \draw [->,line width=0.6mm] (D) to node [pos=0.4,sloped,below=-0.5mm] {\fnt{}waiting}  (B);
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   548
  \draw [<-,line width=0.6mm] (D) to node [pos=0.54,sloped,below=-0.5mm] {\fnt{}holding}  (E);
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   549
  \draw [<-,line width=0.6mm] (D) to node [pos=0.54,sloped,above=-0.5mm] {\fnt{}holding}  (E1);
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   550
  \draw [->,line width=0.6mm] (F) to node [pos=0.45,sloped,below=-0.5mm] {\fnt{}waiting}  (E);
12
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   551
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   552
  \draw [->,line width=0.6mm] (U1) to node [pos=0.45,sloped,below=-0.5mm] {\fnt{}waiting}  (Y);
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   553
  \draw [->,line width=0.6mm] (U2) to node [pos=0.45,sloped,below=-0.5mm] {\fnt{}waiting}  (Z);
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   554
  \draw [<-,line width=0.6mm] (X) to node [pos=0.54,sloped,below=-0.5mm] {\fnt{}holding}  (Z);
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   555
  \draw [<-,line width=0.6mm] (X) to node [pos=0.54,sloped,above=-0.5mm] {\fnt{}holding}  (Y);
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   556
  \draw [<-,line width=0.6mm] (U2) to node [pos=0.54,sloped,above=-0.5mm] {\fnt{}holding}  (R);
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   557
  \end{tikzpicture}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   558
  \end{center}
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
   559
  \caption{An instance of a Resource Allocation Graph (RAG).\label{RAGgraph}}
12
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
   560
  \end{figure}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   561
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   562
  \noindent
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   563
  If there is no cycle, then every @{text RAG} can be pictured as a forest of trees, as
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
   564
  for example in Figure~\ref{RAGgraph}.
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
   565
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   566
  Because of the @{text RAG}s, we will need to formalise some results
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   567
  about graphs.
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   568
  It
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   569
  seems for our purposes the most convenient representation of
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   570
  graphs are binary relations given by sets of pairs shown in
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   571
  \eqref{pairs}. The pairs stand for the edges in graphs. This
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   572
  relation-based representation has the advantage that the notions
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   573
  @{text "waiting"} and @{text "holding"} are already defined in
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   574
  terms of relations amongst threads and resources. Also, we can easily
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   575
  re-use the standard notions for transitive closure operations @{term
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   576
  "trancl DUMMY"} and @{term "rtrancl DUMMY"}, as well as relation
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   577
  composition for our graphs.
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   578
  While there are a few formalisations for graphs already
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   579
  implemented in Isabelle, we choose to introduce our own library of
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   580
  graphs for PIP. The justification for this is that we wanted to have
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   581
  a more general theory of graphs which is capable of representing
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   582
  potentially infinite graphs (in the sense of infinitely branching
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   583
  and infinite size): the property that our @{text RAG}s are actually
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   584
  forests of finitely branching trees having only a finite depth
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   585
  should be something we can \emph{prove} for our model of PIP---it
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   586
  should not be an assumption we build already into our model.
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   587
  A \emph{forest} is defined in our
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   588
  representation as the relation @{text rel} that is \emph{single
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   589
  valued} and \emph{acyclic}:
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   590
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   591
  \begin{isabelle}\ \ \ \ \ %%%
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   592
  \begin{tabular}{@ {}l}
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   593
  @{thm single_valued_def[where ?r="rel", THEN eq_reflection]}\\
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   594
  @{thm acyclic_def[where ?r="rel", THEN eq_reflection]}
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   595
  \end{tabular}
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   596
  \end{isabelle} 
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   597
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   598
  \noindent
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   599
  The \emph{children}, \emph{subtree} and \emph{ancestors} of a node in a graph
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   600
  can be easily defined relationally as 
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   601
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   602
  \begin{isabelle}\ \ \ \ \ %%%
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   603
  \begin{tabular}{@ {}l}
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   604
  @{thm children_def[where ?r="rel" and ?x="node", THEN eq_reflection]}\\
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   605
  @{thm subtree_def[where ?r="rel" and ?x="node", THEN eq_reflection]}\\
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   606
  @{thm ancestors_def[where ?r="rel" and ?x="node", THEN eq_reflection]}\\
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   607
  \end{tabular}\\
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
   608
  \mbox{}\hfill\numbered{children}
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   609
  \end{isabelle}
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   610
  
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   611
  \noindent Note that forests can have trees with infinte depth and
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   612
  containing nodes with infinitely many children.  A \emph{finite
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   613
  forest} is a forest whose underlying relation is
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   614
  well-founded\footnote{For \emph{well-founded} we use the quite natural
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   615
  definition from Isabelle/HOL.}
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   616
  and every node has finitely many children (is only finitely
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
   617
  branching).
135
9b5da0327d43 updated paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 134
diff changeset
   618
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   619
  %\endnote{
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   620
  %\begin{isabelle}\ \ \ \ \ %%%
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   621
  %@ {thm rtrancl_path.intros}
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   622
  %\end{isabelle} 
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   623
  %
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   624
  %\begin{isabelle}\ \ \ \ \ %%%
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   625
  %@ {thm rpath_def}
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   626
  %\end{isabelle}
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
   627
  %}
136
fb3f52fe99d1 updated tG definition
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 135
diff changeset
   628
fb3f52fe99d1 updated tG definition
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 135
diff changeset
   629
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   630
  %\endnote{{\bf Lemma about overlapping paths}}
136
fb3f52fe99d1 updated tG definition
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 135
diff changeset
   631
  
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   632
  The locking mechanism ensures that for each thread node,
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   633
  there can be many incoming holding edges in the @{text RAG}, but at most one
143
c5a65d98191a updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 142
diff changeset
   634
  out going waiting edge.  The reason is that when a thread asks for
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   635
  a resource that is locked already, then the thread is blocked and
143
c5a65d98191a updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 142
diff changeset
   636
  cannot ask for another resource.  Clearly, also every resource can
c5a65d98191a updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 142
diff changeset
   637
  only have at most one outgoing holding edge---indicating that the
c5a65d98191a updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 142
diff changeset
   638
  resource is locked. So if the @{text "RAG"} is well-founded and
c5a65d98191a updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 142
diff changeset
   639
  finite, we can always start at a thread waiting for a resource and
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   640
  ``chase'' outgoing arrows leading to a single root of a tree,
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   641
  which must be a ready thread.
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
   642
  
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   643
  The use of relations for representing @{text RAG}s allows us to
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   644
  conveniently define the \emph{Thread Dependants Graph} (TDG):
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   645
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   646
  \begin{isabelle}\ \ \ \ \ %%%
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   647
  @{thm tG_raw_def}\\
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   648
  \mbox{}\hfill\numbered{dependants}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   649
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   650
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   651
  \noindent This definition is the relation that one thread is waiting for
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   652
  another to release a resource, but the corresponding 
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   653
  resource is ``hidden''. 
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   654
  In Figure~\ref{RAGgraph} this means the @{text TDG} connects 
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   655
  @{text "th\<^sub>1"} and @{text "th\<^sub>2"} to @{text "th\<^sub>0"}, which both wait for
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   656
  resource @{text "cs\<^sub>1"} to be released; and @{text "th\<^sub>3"} to @{text "th\<^sub>2"}, which
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   657
  cannot make any progress unless @{text "th\<^sub>2"} makes progress. 
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   658
  Similarly for the other threads.
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   659
  If
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   660
  there is a circle of dependencies in a @{text RAG} (and thus @{text TDG}), then clearly we have a
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   661
  deadlock. Therefore when a thread requests a resource, we must
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   662
  ensure that the resulting @{text RAG} and @{text TDG} are not circular. In practice, the
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   663
  programmer has to ensure this. Our model will enforce that critical 
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   664
  resources can only be requested provided no circularity can arise (but 
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   665
  critical sections can overlap, see Fig~\ref{overlap}).
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   666
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   667
  Next we introduce the notion of the \emph{current precedence} of a thread @{text th} in a 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   668
  state @{text s}. It is defined as
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   669
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   670
  \begin{isabelle}\ \ \ \ \ %%%
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   671
  @{thm cpreced_def}
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   672
  \hfill\numbered{cpreced}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   673
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   674
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   675
   \noindent 
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   676
  While the precedence @{term prec} of any
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   677
  thread is determined statically (for example when the thread is
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   678
  created), the point of the current precedence is to dynamically
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   679
  boost this precedence, if needed according to PIP. Therefore the
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   680
  current precedence of @{text th} is given as the maximum of the
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   681
  precedences of all threads in its subtree (which includes by definition 
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   682
  @{text th} itself). Since the notion of current precedence is defined as the 
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   683
  transitive closure of the dependent
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   684
  threads in the @{text TDG}, we deal correctly with the problem in the informal
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   685
  algorithm by Sha et al.~\cite{Sha90} where a priority of a thread is
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   686
  lowered prematurely (see Introduction). We again introduce an abbreviation for current
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   687
  precedences of a set of threads, written @{text "cprecs wq s ths"}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   688
  
130
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
   689
  \begin{isabelle}\ \ \ \ \ %%%
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
   690
  @{thm cpreceds_def}
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
   691
  \end{isabelle}
0f124691c191 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 127
diff changeset
   692
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   693
  The next function, called @{term schs}, defines the behaviour of the scheduler. It will be defined
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   694
  by recursion on the state (a list of events); this function returns a \emph{schedule state}, which 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   695
  we represent as a record consisting of two
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   696
  functions:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   697
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   698
  \begin{isabelle}\ \ \ \ \ %%%
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   699
  @{text "\<lparr>wq_fun, cprec_fun\<rparr>"}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   700
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   701
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   702
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   703
  The first function is a waiting queue function (that is, it takes a
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   704
  resource @{text "cs"} and returns the corresponding list of threads
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   705
  that lock or wait for it); the second is a function that
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   706
  takes a thread and returns its current precedence (see
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   707
  the @{text wq} in \eqref{cpreced}). We assume the usual getter and setter methods for
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   708
  such records.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   709
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   710
  In the initial state, the scheduler starts with all resources unlocked (the corresponding 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   711
  function is defined in \eqref{allunlocked}) and the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   712
  current precedence of every thread is initialised with @{term "Prc 0 0"}; that means 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   713
  \mbox{@{abbrev initial_cprec}}. Therefore
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   714
  we have for the initial shedule state
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   715
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   716
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   717
  \begin{tabular}{@ {}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   718
  @{thm (lhs) schs.simps(1)} @{text "\<equiv>"}\\ 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   719
  \hspace{5mm}@{term "(|wq_fun = all_unlocked, cprec_fun = (\<lambda>_::thread. Prc 0 0)|)"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   720
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   721
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   722
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   723
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   724
  The cases for @{term Create}, @{term Exit} and @{term Set} are also straightforward:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   725
  we calculate the waiting queue function of the (previous) state @{text s}; 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   726
  this waiting queue function @{text wq} is unchanged in the next schedule state---because
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   727
  none of these events lock or release any resource; 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   728
  for calculating the next @{term "cprec_fun"}, we use @{text wq} and 
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
   729
  @{term cpreced} defined above. This gives the following three clauses for @{term schs}:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   730
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   731
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   732
  \begin{tabular}{@ {}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   733
  @{thm (lhs) schs.simps(2)} @{text "\<equiv>"}\\ 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   734
  \hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   735
  \hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Create th prio # s)|)"}\smallskip\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   736
  @{thm (lhs) schs.simps(3)} @{text "\<equiv>"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   737
  \hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   738
  \hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Exit th # s)|)"}\smallskip\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   739
  @{thm (lhs) schs.simps(4)} @{text "\<equiv>"}\\ 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   740
  \hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   741
  \hspace{8mm}@{term "(|wq_fun = wq\<iota>, cprec_fun = cpreced wq\<iota> (Set th prio # s)|)"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   742
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   743
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   744
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   745
  \noindent 
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   746
  More interesting are the cases where a resource, say @{text cs}, is requested or released. In these cases
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   747
  we need to calculate a new waiting queue function. For the event @{term "P th cs"}, we have to update
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   748
  the function so that the new thread list for @{text cs} is the old thread list plus the thread @{text th} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   749
  appended to the end of that list (remember the head of this list is assigned to be in the possession of this
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   750
  resource). This gives the clause
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   751
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   752
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   753
  \begin{tabular}{@ {}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   754
  @{thm (lhs) schs.simps(5)} @{text "\<equiv>"}\\ 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   755
  \hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   756
  \hspace{5mm}@{text "let"} @{text "new_wq = wq(cs := (wq cs @ [th]))"} @{text "in"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   757
  \hspace{8mm}@{term "(|wq_fun = new_wq, cprec_fun = cpreced new_wq (P th cs # s)|)"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   758
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   759
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   760
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   761
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   762
  The clause for event @{term "V th cs"} is similar, except that we need to update the waiting queue function
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   763
  so that the thread that possessed the lock is deleted from the corresponding thread list. For this 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   764
  list transformation, we use
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   765
  the auxiliary function @{term release}. A simple version of @{term release} would
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   766
  just delete this thread and return the remaining threads, namely
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   767
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   768
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   769
  \begin{tabular}{@ {}lcl}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   770
  @{term "release []"} & @{text "\<equiv>"} & @{term "[]"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   771
  @{term "release (DUMMY # qs)"} & @{text "\<equiv>"} & @{term "qs"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   772
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   773
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   774
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   775
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   776
  In practice, however, often the thread with the highest precedence in the list will get the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   777
  lock next. We have implemented this choice, but later found out that the choice 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   778
  of which thread is chosen next is actually irrelevant for the correctness of PIP.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   779
  Therefore we prove the stronger result where @{term release} is defined as
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   780
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   781
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   782
  \begin{tabular}{@ {}lcl}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   783
  @{term "release []"} & @{text "\<equiv>"} & @{term "[]"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   784
  @{term "release (DUMMY # qs)"} & @{text "\<equiv>"} & @{term "SOME qs'. distinct qs' \<and> set qs' = set qs"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   785
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   786
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   787
144
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   788
  \noindent where @{text "SOME"} stands for Hilbert's epsilon and
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   789
  implements an arbitrary choice for the next waiting list. It just
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   790
  has to be a list of distinctive threads and contains the same
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   791
  elements as @{text "qs"} (essentially @{text "qs'"} can be any
e4d151d761c4 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 143
diff changeset
   792
  reordering of the list @{text "qs"}). This gives for @{term V} the clause:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   793
 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   794
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   795
  \begin{tabular}{@ {}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   796
  @{thm (lhs) schs.simps(6)} @{text "\<equiv>"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   797
  \hspace{5mm}@{text "let"} @{text "wq = wq_fun (schs s)"} @{text "in"}\\
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
   798
  \hspace{5mm}@{text "let"} @{text "new_wq = wq(cs := release (wq cs))"} @{text "in"}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   799
  \hspace{8mm}@{term "(|wq_fun = new_wq, cprec_fun = cpreced new_wq (V th cs # s)|)"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   800
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   801
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   802
35
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   803
  Having the scheduler function @{term schs} at our disposal, we can
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   804
  ``lift'', or overload, the notions @{term waiting}, @{term holding},
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   805
  @{term RAG}, %%@ {term dependants} 
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   806
  and @{term cp} to operate on states only.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   807
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   808
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   809
  \begin{tabular}{@ {}rcl}
178
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   810
  @{thm (lhs) s_holding_abv}  & @{text "\<equiv>"} & @{thm (rhs) s_holding_abv[simplified wq_def]}\\
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   811
  @{thm (lhs) s_waiting_abv}  & @{text "\<equiv>"} & @{thm (rhs) s_waiting_abv[simplified wq_def]}\\
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   812
  @{thm (lhs) s_RAG_abv}      & @{text "\<equiv>"} & @{thm (rhs) s_RAG_abv[simplified wq_def]}\\
179
f9e6c4166476 updated
Christian Urban <urbanc@in.tum.de>
parents: 178
diff changeset
   813
  @{thm (lhs) s_tG_abv}& @{text "\<equiv>"} & @{thm (rhs) s_tG_abv[simplified wq_def]}\\
35
92f61f6a0fe7 added a bit more text to the paper and separated a theory about Max
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 33
diff changeset
   814
  @{thm (lhs) cp_def}         & @{text "\<equiv>"} & @{thm (rhs) cp_def}\\  
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   815
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   816
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   817
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   818
  \noindent
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   819
  With these abbreviations in place we can derive the following two facts 
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   820
  about @{text TDG}s and @{term cprec}, which are more convenient to use in 
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   821
  subsequent proofs. 
178
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   822
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   823
  \begin{isabelle}\ \ \ \ \ %%%
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   824
  \begin{tabular}{@ {}rcl}
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   825
  @{thm (lhs) tG_alt_def}  & @{text "="} & @{thm (rhs) tG_alt_def}\\
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   826
  @{thm (lhs) cp_s_def}  & @{text "="} & @{thm (rhs) cp_s_def}\\
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   827
  \end{tabular}\\
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   828
  \mbox{}\hfill\numbered{overloaded}
178
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   829
  \end{isabelle}
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
   830
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   831
  \noindent Next we can introduce 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   832
  the notion of a thread being @{term ready} in a state (i.e.~threads
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
   833
  that do not wait for any resource, which are the roots of the trees 
180
cfd17cb339d1 updated
Christian Urban <urbanc@in.tum.de>
parents: 179
diff changeset
   834
  in the @{text RAG}, see Figure~\ref{RAGgraph}). The @{term running} thread
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
   835
  is then the thread with the highest current precedence of all ready threads.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   836
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   837
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   838
  \begin{tabular}{@ {}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   839
  @{thm readys_def}\\
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
   840
  @{thm running_def}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   841
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   842
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   843
164
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   844
  \noindent In the second definition @{term "DUMMY ` DUMMY"} stands
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   845
  for the image of a set under a function.  Note that in the initial
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   846
  state, that is where the list of events is empty, the set @{term
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   847
  threads} is empty and therefore there is neither a thread ready nor
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   848
  running.  If there is one or more threads ready, then there can only
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   849
  be \emph{one} thread running, namely the one whose current
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   850
  precedence is equal to the maximum of all ready threads. We use sets
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   851
  to capture both possibilities.  We can now also conveniently define
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   852
  the set of resources that are locked by a thread in a given state
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   853
  and also when a thread is detached in a state (meaning the thread
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   854
  neither holds nor waits for a resource---in the RAG this would
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   855
  correspond to an isolated node without any incoming and outgoing
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
   856
  edges, see Figure~\ref{RAGgraph}):
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   857
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   858
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   859
  \begin{tabular}{@ {}l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   860
  @{thm holdents_def}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   861
  @{thm detached_def}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   862
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   863
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   864
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   865
  %\noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   866
  %The second definition states that @{text th}  in @{text s}.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   867
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   868
  Finally we can define what a \emph{valid state} is in our model of PIP. For
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   869
  example we cannot expect to be able to exit a thread, if it was not
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   870
  created yet. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   871
  These validity constraints on states are characterised by the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   872
  inductive predicate @{term "step"} and @{term vt}. We first give five inference rules
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   873
  for @{term step} relating a state and an event that can happen next.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   874
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   875
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   876
  \begin{tabular}{c}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   877
  @{thm[mode=Rule] thread_create[where thread=th]}\hspace{1cm}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   878
  @{thm[mode=Rule] thread_exit[where thread=th]}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   879
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   880
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   881
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   882
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   883
  The first rule states that a thread can only be created, if it is not alive yet.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   884
  Similarly, the second rule states that a thread can only be terminated if it was
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   885
  running and does not lock any resources anymore (this simplifies slightly our model;
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   886
  in practice we would expect the operating system releases all locks held by a
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   887
  thread that is about to exit). The event @{text Set} can happen
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   888
  if the corresponding thread is running. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   889
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   890
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   891
  @{thm[mode=Rule] thread_set[where thread=th]}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   892
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   893
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   894
  \noindent This is because the @{text Set} event is for a thread to change
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   895
  its \emph{own} priority---therefore it must be running.
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   896
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   897
  If a thread wants to lock a resource, then the thread
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   898
  needs to be running and also we have to make sure that the resource
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
   899
  lock does not lead to a cycle in the RAG (the purpose of the second
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   900
  premise in the rule below). In practice, ensuring the latter is the
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   901
  responsibility of the programmer.  In our formal model we brush
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   902
  aside these problematic cases in order to be able to make some
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   903
  meaningful statements about PIP.\footnote{This situation is similar
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   904
  to the infamous \emph{occurs check} in Prolog: In order to say
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   905
  anything meaningful about unification, one needs to perform an
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   906
  occurs check. But in practice the occurs check is omitted and the
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   907
  responsibility for avoiding problems rests with the programmer.}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   908
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   909
 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   910
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   911
  @{thm[mode=Rule] thread_P[where thread=th]}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   912
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   913
 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   914
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   915
  Similarly, if a thread wants to release a lock on a resource, then
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   916
  it must be running and in the possession of that lock. This is
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   917
  formally given by the last inference rule of @{term step}.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   918
 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   919
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   920
  @{thm[mode=Rule] thread_V[where thread=th]}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   921
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   922
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   923
  \noindent
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
   924
  Note, however, that apart from the circularity condition, we do not make any 
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   925
  assumption on how different resources can be locked and released relative to each 
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
   926
  other. In our model it is possible that critical sections overlap. This is in 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
   927
  contrast to Sha et al \cite{Sha90} who require that critical sections are 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
   928
  properly nested (recall Fig.~\ref{overlap}).
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
   929
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   930
  A valid state of PIP can then be conveniently be defined as follows:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   931
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   932
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   933
  \begin{tabular}{c}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   934
  @{thm[mode=Axiom] vt_nil}\hspace{1cm}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   935
  @{thm[mode=Rule] vt_cons}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   936
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   937
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   938
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   939
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   940
  This completes our formal model of PIP. In the next section we present
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
   941
  a series of desirable properties derived from this model of PIP. This can
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   942
  be regarded as a validation of the correctness of our model.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   943
*}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   944
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   945
(*
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   946
section {* Preliminaries *}
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
   947
*)
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   948
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   949
(*<*)
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   950
context valid_trace
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   951
begin
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
   952
  (*>*)
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
   953
(*<*)
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   954
text {*
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   955
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
   956
  \endnote{In this section we prove facts that immediately follow from
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   957
  our definitions of valid traces.
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   958
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   959
  \begin{lemma}??\label{precedunique}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   960
  @{thm [mode=IfThen] preced_unique[where ?th1.0=th\<^sub>1 and ?th2.0=th\<^sub>2]} 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   961
  \end{lemma}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   962
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   963
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   964
  We can verify that in any valid state, there can only be at most
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   965
  one running thread---if there are more than one running thread,
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   966
  say @{text "th\<^sub>1"} and @{text "th\<^sub>2"}, they must be 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   967
  equal.
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   968
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   969
  \begin{lemma}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   970
  @{thm [mode=IfThen] running_unique[where ?th1.0=th\<^sub>1 and ?th2.0=th\<^sub>2]} 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   971
  \end{lemma}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   972
  
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   973
  \begin{proof}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   974
  Since @{text "th\<^sub>1"} and @{text "th\<^sub>2"} are running, they must be
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   975
  roots in the RAG.
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   976
  According to XXX, there exists a chain in the RAG-subtree of @{text "th\<^sub>1"}, 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   977
  say starting from @{text "th'\<^sub>1"}, such that @{text "th'\<^sub>1"} has the 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   978
  highest precedence in this subtree (@{text "th\<^sub>1"} inherited
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   979
  the precedence of @{text "th'\<^sub>1"}). We have a similar chain starting from, say 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   980
  @{text "th'\<^sub>2"}, in the RAG-subtree of @{text "th\<^sub>2"}. Since @{text "th\<^sub>1"}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   981
  and @{text "th\<^sub>2"} are running we know their cp-value must be the same, that is
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   982
  \begin{center}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   983
  @{term "cp s th\<^sub>1 = cp s th\<^sub>2"} 
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   984
  \end{center}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   985
  
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   986
  \noindent
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   987
  That means the precedences of @{text "th'\<^sub>1"} and @{text "th'\<^sub>2"}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   988
  must be the same (they are the maxima in the respective RAG-subtrees). From this we can
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   989
  infer by Lemma~\ref{precedunique} that @{text "th'\<^sub>1"}
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   990
  and @{text "th'\<^sub>2"} are the same threads. However, this also means the
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   991
  roots @{text "th\<^sub>1"} and @{text "th\<^sub>2"} must be the same.\qed
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
   992
  \end{proof}}
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   993
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   994
  *}
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
   995
(*>*)
137
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   996
(*<*)end(*>*)
785c0f6b8184 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 136
diff changeset
   997
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   998
section {* The Correctness Proof *}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   999
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1000
(*<*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1001
context extend_highest_gen
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1002
begin
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1003
(*>*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1004
text {* 
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1005
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1006
  Sha et al.~state their first correctness criterion for PIP in terms
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1007
  of the number of low-priority threads \cite[Theorem 3]{Sha90}: if
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1008
  there are @{text n} low-priority threads, then a blocked job with
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1009
  high priority can only be blocked a maximum of @{text n} times.
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1010
  Their second correctness criterion is given in terms of the number
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1011
  of critical resources \cite[Theorem 6]{Sha90}: if there are @{text
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1012
  m} critical resources, then a blocked job with high priority can
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1013
  only be blocked a maximum of @{text m} times. Both results on their
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1014
  own, strictly speaking, do \emph{not} prevent indefinite, or
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1015
  unbounded, Priority Inversion, because if a low-priority thread does
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1016
  not give up its critical resource (the one the high-priority thread
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1017
  is waiting for), then the high-priority thread can never run.  The
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1018
  argument of Sha et al.~is that \emph{if} threads release locked
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1019
  resources in a finite amount of time, then indefinite Priority
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1020
  Inversion cannot occur---the high-priority thread is guaranteed to
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1021
  run eventually. The assumption is that programmers must ensure that
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1022
  threads are programmed in this way.  However, even taking this
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1023
  assumption into account, the correctness properties of Sha et
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1024
  al.~are \emph{not} true for their version of PIP---despite being
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1025
  ``proved''. As Yodaiken \cite{Yodaiken02} and Moylan et
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1026
  al.~\cite{deinheritance} pointed out: If a low-priority thread
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1027
  possesses locks to two resources for which two high-priority threads
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1028
  are waiting for, then lowering the priority prematurely after giving
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1029
  up only one lock, can cause indefinite Priority Inversion for one of
164
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
  1030
  the high-priority threads, invalidating their two bounds (recall the 
613189244e72 updated
Christian Urban <urbanc@in.tum.de>
parents: 163
diff changeset
  1031
  counter example described in the Introduction).
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1032
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1033
  Even when fixed, their proof idea does not seem to go through for
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1034
  us, because of the way we have set up our formal model of PIP.  One
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1035
  reason is that we allow critical sections, which start with a @{text
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1036
  P}-event and finish with a corresponding @{text V}-event, to
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1037
  arbitrarily overlap (something Sha et al.~explicitly exclude).
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1038
  Therefore we have designed a different correctness criterion for
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1039
  PIP. The idea behind our criterion is as follows: for all states
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1040
  @{text s}, we know the corresponding thread @{text th} with the
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1041
  highest precedence; we show that in every future state (denoted by
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1042
  @{text "s' @ s"}) in which @{text th} is still alive, either @{text
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1043
  th} is running or it is blocked by a thread that was alive in the
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1044
  state @{text s} and was waiting for or in the possession of a lock
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1045
  in @{text s}. Since in @{text s}, as in every state, the set of
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1046
  alive threads is finite, @{text th} can only be blocked by a finite
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1047
  number of threads.
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1048
  
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1049
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1050
  However, the theorem we are going to prove hinges upon a number of
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1051
  natural assumptions about the states @{text s} and @{text "s' @ s"}, the
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1052
  thread @{text th} and the events happening in @{text s'}. We list
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1053
  them next:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1054
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1055
  \begin{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1056
  {\bf Assumptions on the states {\boldmath@{text s}} and 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1057
  {\boldmath@{text "s' @ s"}:}} We need to require that @{text "s"} and 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1058
  @{text "s' @ s"} are valid states:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1059
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1060
  \begin{tabular}{l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1061
  @{term "vt s"}, @{term "vt (s' @ s)"} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1062
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1063
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1064
  \end{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1065
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1066
  \begin{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1067
  {\bf Assumptions on the thread {\boldmath@{text "th"}:}} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1068
  The thread @{text th} must be alive in @{text s} and 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1069
  has the highest precedence of all alive threads in @{text s}. Furthermore the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1070
  priority of @{text th} is @{text prio} (we need this in the next assumptions).
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1071
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1072
  \begin{tabular}{l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1073
  @{term "th \<in> threads s"}\\
178
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
  1074
  @{term "prec th s = Max (precs s (threads s))"}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1075
  @{term "prec th s = (prio, DUMMY)"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1076
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1077
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1078
  \end{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1079
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1080
  \begin{quote}
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1081
  {\bf Assumptions on the events in {\boldmath@{text "s'"}:}} 
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1082
  %We want to prove that @{text th} cannot
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1083
  %be blocked indefinitely. Of course this can happen if threads with higher priority
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1084
  %than @{text th} are continuously created in @{text s'}. 
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1085
  To make sure @{text th} has the highest precedence we have to assume that  
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1086
  events in @{text s'} can only create (respectively set) threads with equal or lower 
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1087
  priority than @{text prio} of @{text th}. For the same reason, we also need to assume that the
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1088
  priority of @{text "th"} does not get reset and all other reset priorities are either
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1089
  less or equal. Moreover, we assume  that @{text th} does
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1090
  not get ``exited'' in @{text "s'"}. This can be ensured by assuming the following three implications. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1091
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1092
  \begin{tabular}{l}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1093
  {If}~~@{text "Create th' prio' \<in> set s'"}~~{then}~~@{text "prio' \<le> prio"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1094
  {If}~~@{text "Set th' prio' \<in> set s'"}~~{then}~~@{text "th' \<noteq> th"}~~{and}~~@{text "prio' \<le> prio"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1095
  {If}~~@{text "Exit th' \<in> set s'"}~~{then}~~@{text "th' \<noteq> th"}\\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1096
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1097
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1098
  \end{quote}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1099
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1100
  \noindent The locale mechanism of Isabelle helps us to manage
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1101
  conveniently such assumptions~\cite{Haftmann08}.  Under these
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1102
  assumptions we shall prove the following correctness property:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1103
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1104
  \begin{theorem}\label{mainthm}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1105
  Given the assumptions about states @{text "s"} and @{text "s' @ s"},
95
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1106
  the thread @{text th} and the events in @{text "s'"}, then either
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1107
  \begin{itemize}
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1108
  \item[$\bullet$] @{term "th \<in> running (s' @ s)"} or\medskip
95
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1109
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1110
  \item[$\bullet$] there exists a thread @{term "th'"} with @{term "th' \<noteq> th"}
95
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1111
  and @{term "th' \<in> running (s' @ s)"} such that @{text "th' \<in> threads
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1112
  s"}, @{text "\<not> detached s th'"} and @{term "cp (s' @ s) th' = prec
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1113
  th s"}.
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1114
  \end{itemize}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1115
  \end{theorem}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1116
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1117
  \noindent This theorem ensures that the thread @{text th}, which has
95
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1118
  the highest precedence in the state @{text s}, is either running in
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1119
  state @{term "s' @ s"}, or can only be blocked in the state @{text
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1120
  "s' @ s"} by a thread @{text th'} that already existed in @{text s}
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1121
  and is waiting for a resource or had a lock on at least one resource---that means
95
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1122
  the thread was not \emph{detached} in @{text s}.  As we shall see
8d2cc27f45f3 changes to my repository
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 82
diff changeset
  1123
  shortly, that means there are only finitely many threads that can
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1124
  block @{text th} in this way.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1125
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1126
  
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1127
  %% HERE
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1128
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1129
  %Given our assumptions (on @{text th}), the first property we can
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1130
  %show is that any running thread, say @{text "th'"}, has the same
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1131
  %precedence as @{text th}:
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1132
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1133
  %\begin{lemma}\label{runningpreced}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1134
  %@{thm [mode=IfThen] running_preced_inversion}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1135
  %\end{lemma}
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1136
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1137
  %\begin{proof}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1138
  %By definition, the running thread has as current precedence the maximum of
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1139
  %all ready threads, that is
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1140
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1141
  %\begin{center}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1142
  %@{term "cp (t @ s) th' = Max (cp (t @ s) ` readys (t @ s))"}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1143
  %\end{center}
140
389ef8b1959c updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 139
diff changeset
  1144
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1145
  %\noindent
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1146
  %We also know that this is equal to the maximum of current precedences of all threads,
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1147
  %that is
140
389ef8b1959c updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 139
diff changeset
  1148
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1149
  %\begin{center}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1150
  %@{term "cp (t @ s) th' = Max (cp (t @ s) ` threads (t @ s))"}
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1151
  %\end{center}
140
389ef8b1959c updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 139
diff changeset
  1152
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1153
  %\noindent
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1154
  %This is because each ready thread, say @{text "th\<^sub>r"}, has the maximum
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1155
  %current precedence of the subtree located at @{text "th\<^sub>r"}. All these
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1156
  %subtrees together form the set of threads.
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1157
  %But the maximum of all threads is the @{term "cp"} of @{text "th"},
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1158
  %which is equal to the @{term preced} of @{text th}.\qed
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1159
  %\end{proof}
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1160
163
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
  1161
  %\endnote{
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
  1162
  %@{thm "th_blockedE_pretty"} -- thm-blockedE??
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
  1163
  % 
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
  1164
  % @{text "th_kept"} shows that th is a thread in s'-s
2ec13cfbb81c updated
Christian Urban <urbanc@in.tum.de>
parents: 162
diff changeset
  1165
  % }
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1166
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1167
  The next lemma is part of the proof for Theorem~1:
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1168
  Given our assumptions (on~@{text th}), the first property we show
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1169
  that a running thread @{text "th'"} must either wait for or hold a
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1170
  resource in state @{text s}.
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1171
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1172
  \begin{lemma}\label{notdetached}
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1173
  If @{term "th' \<in> running (s' @ s)"} and @{term "th \<noteq> th'"} then @{term "\<not>detached s th'"}.
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1174
  \end{lemma}
138
20c1d3a14143 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 137
diff changeset
  1175
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1176
  \begin{proof} Let us assume otherwise, that is @{text "th'"} is detached in state
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1177
  @{text "s"}, then, according to the definition of detached, @{text
203
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
  1178
  "th'"} does not hold or wait for any resource. Hence the @{text
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1179
  cprec}-value of @{text "th'"} in @{text s} is not boosted, that is
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1180
  @{term "cp s th' = prec th' s"}, and is therefore lower than the
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1181
  precedence (as well as the @{text "cprec"}-value) of @{term "th"}. This
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1182
  means @{text "th'"} will not run as long as @{text "th"} is a live
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1183
  thread. In turn this means @{text "th'"} cannot take any action in
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1184
  state @{text "s' @ s"} to change its current status; therefore
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1185
  @{text "th'"} is still detached in state @{text "s' @ s"}.
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1186
  Consequently @{text "th'"} is also not boosted in state @{text "s' @
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1187
  s"} and would not run. This contradicts our assumption.\qed
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1188
  \end{proof}
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1189
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1190
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1191
  \begin{proof}[of Theorem 1] If @{term "th \<in> running (s' @ s)"},
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1192
  then there is nothing to show. So let us assume otherwise. Since the
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1193
  @{text "RAG"} is well-founded, we know there exists an ancestor of
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1194
  @{text "th"} that is the root of the corresponding subtree and
167
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1195
  therefore is ready (it does not request any resources). Let us call
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1196
  this thread @{text "th'"}.  Since in PIP the @{term "cpreced"}-value
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1197
  of any thread equals the maximum precedence of all threads in its
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1198
  @{term "RAG"}-subtree, and @{text "th"} is in the subtree of @{text
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1199
  "th'"}, the @{term "cpreced"}-value of @{text "th'"} cannot be lower
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1200
  than the precedence of @{text "th"}. But, it can also not be higher,
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1201
  because the precedence of @{text "th"} is the maximum among all
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1202
  threads.  Therefore we know that the @{term "cpreced"}-value of
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1203
  @{text "th'"} is the same as the precedence of @{text "th"}.  The
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1204
  result is that @{text "th'"} must be running. This is because @{term
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1205
  "cpreced"}-value of @{text "th'"} is the highest of all ready
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1206
  threads. This follows from the fact that the @{term "cpreced"}-value
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1207
  of any ready thread is the maximum of the precedences of all threads
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1208
  in its subtrees (with @{text "th"} having the highest of all threads
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1209
  and being in the subtree of @{text "th'"}).  We also have that @{term
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1210
  "th \<noteq> th'"} since we assumed @{text th} is not running.
045371bde100 updated
Christian Urban <urbanc@in.tum.de>
parents: 166
diff changeset
  1211
  By
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1212
  Lem.~\ref{notdetached} we have that @{term "\<not>detached s th'"}.
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1213
  If @{text "th'"} is not detached in @{text s}, that is either
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1214
  holding or waiting for a resource, it must be that @{term "th' \<in>
168
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1215
  threads s"}.\medskip
1a67f60a06af updated
Christian Urban <urbanc@in.tum.de>
parents: 167
diff changeset
  1216
  
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1217
  \noindent
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  1218
  This concludes the proof of Theorem 1.\qed
138
20c1d3a14143 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 137
diff changeset
  1219
  \end{proof}
20c1d3a14143 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 137
diff changeset
  1220
139
289e362f7a76 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 138
diff changeset
  1221
161
f1d82f6c05a3 updated
Christian Urban <urbanc@in.tum.de>
parents: 158
diff changeset
  1222
  %\endnote{
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1223
  
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1224
%In what follows we will describe properties of PIP that allow us to
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1225
%  prove Theorem~\ref{mainthm} and, when instructive, briefly describe
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1226
%  our argument. Recall we want to prove that in state @ {term "s' @ s"} 
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1227
%either @{term th} is either running or blocked by a thread @
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1228
%  {term "th'"} (@{term "th \<noteq> th'"}) which was alive in state
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1229
%  @{term s}. We can show that
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1230
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1231
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1232
%  \begin{lemma}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1233
%  If @{thm (prem 2) eq_pv_blocked}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1234
%  then @{thm (concl) eq_pv_blocked}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1235
%  \end{lemma}
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1236
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1237
%  \begin{lemma}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1238
%  If @{thm (prem 2) eq_pv_persist}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1239
%  then @{thm (concl) eq_pv_persist}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1240
%  \end{lemma}
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1241
  %%%}
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1242
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1243
%  \endnote{{\bf OUTLINE}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1244
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1245
%  Since @{term "th"} is the most urgent thread, if it is somehow
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1246
%  blocked, people want to know why and wether this blocking is
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1247
%  reasonable.
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1248
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1249
%  @{thm [source] th_blockedE} @{thm th_blockedE}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1250
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1251
%  if @{term "th"} is blocked, then there is a path leading from 
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1252
%  @{term "th"} to @{term "th'"}, which means:
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1253
%  there is a chain of demand leading from @{term th} to @{term th'}.
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1254
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1255
%   in other words
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1256
%   th -> cs1 -> th1 -> cs2 -> th2 -> ... -> csn -> thn -> cs -> th'. 
166
6cfafcb41a3d updated
Christian Urban <urbanc@in.tum.de>
parents: 165
diff changeset
  1257
   
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1258
%   We says that th is blocked by @{text "th'"}.
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1259
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1260
%  THEN
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1261
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1262
%  @{thm [source] vat_t.th_chain_to_ready} @{thm vat_t.th_chain_to_ready}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1263
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1264
%  It is basic propery with non-trival proof. 
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1265
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1266
%  THEN
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1267
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1268
%  @{thm [source] max_preced} @{thm max_preced}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1269
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1270
%  which says @{term "th"} holds the max precedence.
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1271
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1272
%  THEN
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1273
 
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1274
%  @ {thm [source] th_cp_max th_cp_preced th_kept}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1275
%  @ {thm th_cp_max th_cp_preced th_kept}
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1276
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1277
%  THEN
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1278
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1279
% ??? %%@ {thm [source] running_inversion_4} @  {thm running_inversion_4}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1280
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1281
% which explains what the @{term "th'"} looks like. Now, we have found the 
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1282
% @{term "th'"} which blocks @{term th}, we need to know more about it.
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1283
% To see what kind of thread can block @{term th}.
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1284
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1285
%  From these two lemmas we can see the correctness of PIP, which is
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1286
%  that: the blockage of th is reasonable and under control.
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1287
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1288
%  Lemmas we want to describe:
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1289
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1290
%  \begin{lemma}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1291
%  @{thm running_cntP_cntV_inv}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1292
%  \end{lemma}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1293
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1294
%  \noindent
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1295
%  Remember we do not have the well-nestedness restriction in our
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1296
%  proof, which means the difference between the counters @{const cntV}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1297
%  and @{const cntP} can be larger than @{term 1}.
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1298
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1299
%  \begin{lemma}\label{runninginversion}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1300
%  @ {thm running_inversion}
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1301
%  \end{lemma}
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1302
  
169
5697bb5b6b2b updated
Christian Urban <urbanc@in.tum.de>
parents: 168
diff changeset
  1303
%  explain tRAG
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1304
%}
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
  1305
82
c0a4e840aefe some small changes to Correctness and Paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 76
diff changeset
  1306
  
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1307
%  Suppose the thread @ {term th} is \emph{not} running in state @ {term
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1308
%  "t @ s"}, meaning that it should be blocked by some other thread.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1309
%  It is first shown that there is a path in the RAG leading from node
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1310
%  @ {term th} to another thread @ {text "th'"}, which is also in the
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1311
%  @ {term readys}-set.  Since @ {term readys}-set is non-empty, there
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1312
%  must be one in it which holds the highest @ {term cp}-value, which,
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1313
%  by definition, is currently the @ {term running}-thread.  However, we
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1314
%  are going to show in the next lemma slightly more: this running
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1315
%  thread is exactly @ {term "th'"}.
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
  1316
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1317
%  \begin{lemma}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1318
%  There exists a thread @{text "th'"}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1319
%  such that @{thm (no_quants) th_blockedE_pretty}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1320
%  \end{lemma}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1321
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1322
%  \begin{proof}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1323
%  We know that @{term th} cannot be in @{term readys}, because it has
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1324
%  the highest precedence and therefore must be running. This violates our
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1325
%  assumption. So by ?? we have that there must be a @{term "th'"} such that
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1326
%  @{term "th' \<in> readys (t @ s)"} and @{term "(Th th, Th th') \<in> (RAG (t @ s))\<^sup>+"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1327
%  We are going to first show that this @{term "th'"} must be running. For this we 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1328
%  need to show that @{term th'} holds the highest @{term cp}-value.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1329
%  By ?? we know that the @{term "cp"}-value of @{term "th'"} must
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1330
%  be the highest all precedences of all thread nodes in its @{term tRAG}-subtree.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1331
%  That is 
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
  1332
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1333
%  \begin{center}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1334
%  @ {term "cp (t @ s) th' = Max (the_preced (t @ s) ` 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1335
%    (the_thread ` subtree (tRAG (t @ s)) (Th th')))"}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1336
%  \end{center}
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
  1337
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1338
%  But since @{term th} is in this subtree the right-hand side is equal
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1339
%  to @{term "preced th (t @ s)"}.
126
a88af0e4731f minor update
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 125
diff changeset
  1340
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1341
  %Let me distinguish between cp (current precedence) and assigned precedence (the precedence the
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1342
  %thread ``normally'' has).
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1343
  %So we want to show what the cp of th' is in state t @ s.
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1344
  %We look at all the assingned precedences in the subgraph starting from th'
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1345
  %We are looking for the maximum of these assigned precedences.
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1346
  %This subgraph must contain the thread th, which actually has the highest precednence
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1347
  %so cp of th' in t @ s has this (assigned) precedence of th
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1348
  %We know that cp (t @ s) th' 
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1349
  %is the Maximum of the threads in the subgraph starting from th'
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1350
  %this happens to be the precedence of th
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1351
  %th has the highest precedence of all threads
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1352
%  \end{proof}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1353
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1354
%  \begin{corollary}  
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1355
%  Using the lemma \ref{runninginversion} we can say more about the thread th'
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1356
%  \end{corollary}
125
95e7933968f8 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 124
diff changeset
  1357
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1358
%  \endnote{\subsection*{END OUTLINE}}
76
b6ea51cd2e88 some small changes to the paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 75
diff changeset
  1359
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1360
%  In what follows we will describe properties of PIP that allow us to prove 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1361
%  Theorem~\ref{mainthm} and, when instructive, briefly describe our argument. 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1362
%  It is relatively easy to see that:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1363
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1364
%  \begin{isabelle}\ \ \ \ \ %%%
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1365
%  \begin{tabular}{@ {}l}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1366
%  @ {text "running s \<subseteq> ready s \<subseteq> threads s"}\\
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1367
%  @ {thm[mode=IfThen]  finite_threads}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1368
%  \end{tabular}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1369
%  \end{isabelle}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1370
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1371
%  \noindent
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1372
%  The second property is by induction on @{term vt}. The next three
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1373
%  properties are: 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1374
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1375
%  \begin{isabelle}\ \ \ \ \ %%%
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1376
%  \begin{tabular}{@ {}l}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1377
%  HERE??
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  1378
  %@ {thm[mode=IfThen] waiting_unique[of _ _ "cs1" "cs2"]}\\
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  1379
  %@ {thm[mode=IfThen] held_unique[of _ "th1" _ "th2"]}\\
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  1380
  %@ {thm[mode=IfThen] running_unique[of _ "th1" "th2"]}
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1381
%  \end{tabular}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1382
%  \end{isabelle}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1383
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1384
%  \noindent
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1385
%  The first property states that every waiting thread can only wait for a single
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1386
%  resource (because it gets suspended after requesting that resource); the second 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1387
%  that every resource can only be held by a single thread; 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1388
%  the third property establishes that in every given valid state, there is
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1389
%  at most one running thread. We can also show the following properties 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1390
%  about the @{term RAG} in @{text "s"}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1391
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1392
%  \begin{isabelle}\ \ \ \ \ %%%
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1393
%  \begin{tabular}{@ {}l}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1394
%  HERE?? %@{text If}~@ {thm (prem 1) acyclic_RAG}~@{text "then"}:\\
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1395
%  \hspace{5mm}@{thm (concl) acyclic_RAG},
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1396
%  @{thm (concl) finite_RAG} and
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1397
%  %@ {thm (concl) wf_dep_converse},\\
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1398
%  %\hspace{5mm}@{text "if"}~@ {thm (prem 2) dm_RAG_threads}~@{text "then"}~@{thm (concl) dm_RAG_threads}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1399
%  and\\
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1400
%  %\hspace{5mm}@{text "if"}~@ {thm (prem 2) range_in}~@{text "then"}~% @ {thm (concl) range_in}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1401
%  \end{tabular}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1402
%  \end{isabelle}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1403
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1404
%  \noindent
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1405
%  The acyclicity property follows from how we restricted the events in
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1406
%  @{text step}; similarly the finiteness and well-foundedness property.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1407
%  The last two properties establish that every thread in a @{text "RAG"}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1408
%  (either holding or waiting for a resource) is a live thread.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1409
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1410
%  The key lemma in our proof of Theorem~\ref{mainthm} is as follows:
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1411
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1412
%  \begin{lemma}\label{mainlem}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1413
%  Given the assumptions about states @{text "s"} and @{text "s' @ s"},
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1414
%  the thread @{text th} and the events in @{text "s'"},
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1415
%  if @{term "th' \<in> threads (s' @ s)"}, @{text "th' \<noteq> th"} and @{text "detached (s' @ s) th'"}\\
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1416
%  then @{text "th' \<notin> running (s' @ s)"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1417
%  \end{lemma}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1418
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1419
%  \noindent
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1420
%  The point of this lemma is that a thread different from @{text th} (which has the highest
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1421
%  precedence in @{text s}) and not holding any resource, cannot be running 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1422
%  in the state @{text "s' @ s"}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1423
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1424
%  \begin{proof}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1425
%  Since thread @{text "th'"} does not hold any resource, no thread can depend on it. 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1426
%  Therefore its current precedence @{term "cp (s' @ s) th'"} equals its own precedence
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1427
%  @{term "prec th' (s' @ s)"}. Since @{text "th"} has the highest precedence in the 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1428
%  state @{text "(s' @ s)"} and precedences are distinct among threads, we have
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1429
%  @{term "prec th' (s' @s ) < prec th (s' @ s)"}. From this 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1430
%  we have @{term "cp (s' @ s) th' < prec th (s' @ s)"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1431
%  Since @{text "prec th (s' @ s)"} is already the highest 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1432
%  @{term "cp (s' @ s) th"} can not be higher than this and can not be lower either (by 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1433
%  definition of @{term "cp"}). Consequently, we have @{term "prec th (s' @ s) = cp (s' @ s) th"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1434
%  Finally we have @{term "cp (s' @ s) th' < cp (s' @ s) th"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1435
%  By defintion of @{text "running"}, @{text "th'"} can not be running in state
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1436
%  @{text "s' @ s"}, as we had to show.\qed
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1437
%  \end{proof}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1438
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1439
%  \noindent
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1440
%  Since @{text "th'"} is not able to run in state @{text "s' @ s"}, it is not able to 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1441
%  issue a @{text "P"} or @{text "V"} event. Therefore if @{text "s' @ s"} is extended
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1442
%  one step further, @{text "th'"} still cannot hold any resource. The situation will 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1443
%  not change in further extensions as long as @{text "th"} holds the highest precedence.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1444
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1445
%  From this lemma we can deduce Theorem~\ref{mainthm}: that @{text th} can only be 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1446
%  blocked by a thread @{text th'} that
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1447
%  held some resource in state @{text s} (that is not @{text "detached"}). And furthermore
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1448
%  that the current precedence of @{text th'} in state @{text "(s' @ s)"} must be equal to the 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1449
%  precedence of @{text th} in @{text "s"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1450
%  We show this theorem by induction on @{text "s'"} using Lemma~\ref{mainlem}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1451
%  This theorem gives a stricter bound on the threads that can block @{text th} than the
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1452
%  one obtained by Sha et al.~\cite{Sha90}:
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1453
%  only threads that were alive in state @{text s} and moreover held a resource.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1454
%  This means our bound is in terms of both---alive threads in state @{text s}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1455
%  and number of critical resources. Finally, the theorem establishes that the blocking threads have the
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1456
%  current precedence raised to the precedence of @{text th}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1457
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1458
%  We can furthermore prove that under our assumptions no deadlock exists in the state @{text "s' @ s"}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1459
%  by showing that @{text "running (s' @ s)"} is not empty.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1460
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1461
%  \begin{lemma}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1462
%  Given the assumptions about states @{text "s"} and @{text "s' @ s"},
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1463
%  the thread @{text th} and the events in @{text "s'"},
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1464
%  @{term "running (s' @ s) \<noteq> {}"}.
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1465
%  \end{lemma}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1466
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1467
%  \begin{proof}
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1468
%  If @{text th} is blocked, then by following its dependants graph, we can always 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1469
%  reach a ready thread @{text th'}, and that thread must have inherited the 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1470
%  precedence of @{text th}.\qed
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1471
%  \end{proof}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1472
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1473
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1474
  %The following lemmas show how every node in RAG can be chased to ready threads:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1475
  %\begin{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1476
  %\item Every node in RAG can be chased to a ready thread (@{text "chain_building"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1477
  %  @   {thm [display] chain_building[rule_format]}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1478
  %\item The ready thread chased to is unique (@{text "dchain_unique"}):
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  1479
  %  @   {thm [display] dchain_unique[of _ _ "th1" "th2"]}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1480
  %\end{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1481
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1482
  %Some deeper results about the system:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1483
  %\begin{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1484
  %\item The maximum of @{term "cp"} and @{term "preced"} are equal (@{text "max_cp_eq"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1485
  %@  {thm [display] max_cp_eq}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1486
  %\item There must be one ready thread having the max @{term "cp"}-value 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1487
  %(@{text "max_cp_readys_threads"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1488
  %@  {thm [display] max_cp_readys_threads}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1489
  %\end{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1490
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1491
  %The relationship between the count of @{text "P"} and @{text "V"} and the number of 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1492
  %critical resources held by a thread is given as follows:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1493
  %\begin{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1494
  %\item The @{term "V"}-operation decreases the number of critical resources 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1495
  %  one thread holds (@{text "cntCS_v_dec"})
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1496
  %   @  {thm [display]  cntCS_v_dec}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1497
  %\item The number of @{text "V"} never exceeds the number of @{text "P"} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1498
  %  (@  {text "cnp_cnv_cncs"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1499
  %  @  {thm [display]  cnp_cnv_cncs}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1500
  %\item The number of @{text "V"} equals the number of @{text "P"} when 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1501
  %  the relevant thread is not living:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1502
  %  (@{text "cnp_cnv_eq"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1503
  %  @  {thm [display]  cnp_cnv_eq}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1504
  %\item When a thread is not living, it does not hold any critical resource 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1505
  %  (@{text "not_thread_holdents"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1506
  %  @  {thm [display] not_thread_holdents}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1507
  %\item When the number of @{text "P"} equals the number of @{text "V"}, the relevant 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1508
  %  thread does not hold any critical resource, therefore no thread can depend on it
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  1509
  %  (@{text "count_eq_dependants"}):
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  1510
  %  @  {thm [display] count_eq_dependants}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1511
  %\end{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1512
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1513
  %The reason that only threads which already held some resoures
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  1514
  %can be running and block @{text "th"} is that if , otherwise, one thread 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1515
  %does not hold any resource, it may never have its prioirty raised
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1516
  %and will not get a chance to run. This fact is supported by 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1517
  %lemma @{text "moment_blocked"}:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1518
  %@   {thm [display] moment_blocked}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1519
  %When instantiating  @{text "i"} to @{text "0"}, the lemma means threads which did not hold any
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1520
  %resource in state @{text "s"} will not have a change to run latter. Rephrased, it means 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1521
  %any thread which is running after @{text "th"} became the highest must have already held
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1522
  %some resource at state @{text "s"}.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1523
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1524
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1525
  %When instantiating @{text "i"} to a number larger than @{text "0"}, the lemma means 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1526
  %if a thread releases all its resources at some moment in @{text "t"}, after that, 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1527
  %it may never get a change to run. If every thread releases its resource in finite duration,
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1528
  %then after a while, only thread @{text "th"} is left running. This shows how indefinite 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1529
  %priority inversion can be avoided. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1530
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1531
  %All these assumptions are put into a predicate @{term "extend_highest_gen"}. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1532
  %It can be proved that @{term "extend_highest_gen"} holds 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1533
  %for any moment @{text "i"} in it @{term "t"} (@{text "red_moment"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1534
  %@   {thm [display] red_moment}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1535
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1536
  %From this, an induction principle can be derived for @{text "t"}, so that 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1537
  %properties already derived for @{term "t"} can be applied to any prefix 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1538
  %of @{text "t"} in the proof of new properties 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1539
  %about @{term "t"} (@{text "ind"}):
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1540
  %\begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1541
  %@   {thm[display] ind}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1542
  %\end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1543
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1544
  %The following properties can be proved about @{term "th"} in @{term "t"}:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1545
  %\begin{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1546
  %\item In @{term "t"}, thread @{term "th"} is kept live and its 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1547
  %  precedence is preserved as well
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1548
  %  (@{text "th_kept"}): 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1549
  %  @   {thm [display] th_kept}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1550
  %\item In @{term "t"}, thread @{term "th"}'s precedence is always the maximum among 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1551
  %  all living threads
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1552
  %  (@{text "max_preced"}): 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1553
  %  @   {thm [display] max_preced}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1554
  %\item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum precedence
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1555
  %  among all living threads
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1556
  %  (@{text "th_cp_max_preced"}): 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1557
  %  @   {thm [display] th_cp_max_preced}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1558
  %\item In @{term "t"}, thread @{term "th"}'s current precedence is always the maximum current 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1559
  %  precedence among all living threads
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1560
  %  (@{text "th_cp_max"}): 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1561
  %  @   {thm [display] th_cp_max}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1562
  %\item In @{term "t"}, thread @{term "th"}'s current precedence equals its precedence at moment 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1563
  %  @{term "s"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1564
  %  (@{text "th_cp_preced"}): 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1565
  %  @   {thm [display] th_cp_preced}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1566
  %\end{enumerate}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1567
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1568
  %The main theorem of this part is to characterizing the running thread during @{term "t"} 
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  1569
  %(@{text "running_inversion_2"}):
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  1570
  %@   {thm [display] running_inversion_2}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1571
  %According to this, if a thread is running, it is either @{term "th"} or was
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1572
  %already live and held some resource 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1573
  %at moment @{text "s"} (expressed by: @{text "cntV s th' < cntP s th'"}).
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1574
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1575
  %Since there are only finite many threads live and holding some resource at any moment,
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1576
  %if every such thread can release all its resources in finite duration, then after finite
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1577
  %duration, none of them may block @{term "th"} anymore. So, no priority inversion may happen
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1578
  %then.
70
92ca2410b3d9 further simplificaton of Moment.thy
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 64
diff changeset
  1579
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1580
 % NOTE: about bounds in sha et al and ours: they prove a bound on the length of individual
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1581
 % blocages. We prove a bound for the overall-blockage.
70
92ca2410b3d9 further simplificaton of Moment.thy
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 64
diff changeset
  1582
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1583
 % There are low priority threads, 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1584
 % which do not hold any resources, 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1585
 % such thread will not block th. 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1586
 % Their Theorem 3 does not exclude such threads.
70
92ca2410b3d9 further simplificaton of Moment.thy
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 64
diff changeset
  1587
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1588
 % There are resources, which are not held by any low prioirty threads,
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1589
 % such resources can not cause blockage of th neither. And similiary, 
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1590
 % theorem 6 does not exlude them.
70
92ca2410b3d9 further simplificaton of Moment.thy
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 64
diff changeset
  1591
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1592
 % Our one bound excudle them by using a different formaulation. "
70
92ca2410b3d9 further simplificaton of Moment.thy
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 64
diff changeset
  1593
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1594
  *}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1595
(*<*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1596
end
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1597
(*>*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1598
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1599
(*text {*
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1600
   explan why Thm1 roughly corresponds to Sha's Thm 3
162
a8ceb68bfeb0 updated
Christian Urban <urbanc@in.tum.de>
parents: 161
diff changeset
  1601
*}*)
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1602
152
15f4481bc0c9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 145
diff changeset
  1603
section {* A Finite Bound on Priority Inversion *}
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1604
154
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1605
(*<*)
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1606
context extend_highest_gen
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1607
begin
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1608
(*>*)
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1609
text {*
152
15f4481bc0c9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 145
diff changeset
  1610
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1611
  Like in the work by Sha et al.~our result in Thm 1 does not yet
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1612
  guarantee the absence of indefinite Priority Inversion. For this we
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1613
  further need the property that every thread gives up its resources
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1614
  after a finite amount of time. We found that this property is not so
154
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1615
  straightforward to formalise in our model. There are mainly two
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1616
  reasons for this: First, we do not specify what ``running the code''
152
15f4481bc0c9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 145
diff changeset
  1617
  of a thread means, for example by giving an operational semantics
15f4481bc0c9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 145
diff changeset
  1618
  for machine instructions. Therefore we cannot characterise what are
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1619
  ``good'' programs that contain for every locking request for a
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1620
  resource also a corresponding unlocking request.  Second, we need to
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1621
  distinguish between a thread that ``just'' locks a resource for a
154
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1622
  finite amount of time (even if it is very long) and one that locks
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1623
  it forever (there might be an unbounded loop in between the locking and
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1624
  unlocking requests).
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1625
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1626
  Because of these problems, we decided in our earlier paper
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1627
  \cite{ZhangUrbanWu12} to leave out this property and let the
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1628
  programmer take on the responsibility to program threads in such a
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1629
  benign manner (in addition to causing no circularity in the
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1630
  RAG). This leave-it-to-the-programmer was also the approach taken by
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1631
  Sha et al.~in their paper.  However, in this paper we can make an
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1632
  improvement by establishing a finite bound on the duration of
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1633
  Priority Inversion measured by the number of events.  The events can
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1634
  be seen as a \textit{rough(!)} abstraction of the ``runtime
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1635
  behaviour'' of threads and also as an abstract notion of
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1636
  ``time''---when a new event happens, some time must have passed.
171
daf75d6ebc89 updated
Christian Urban <urbanc@in.tum.de>
parents: 170
diff changeset
  1637
152
15f4481bc0c9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 145
diff changeset
  1638
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1639
  What we will establish in this section is that there can only be a
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1640
  finite number of states after state @{term s} in which the thread
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1641
  @{term th} is blocked (recall for this that a state is a list of
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1642
  events).  For this finiteness bound to exist, Sha et al.~informally
191
fdba35b422a0 updated
Christian Urban <urbanc@in.tum.de>
parents: 190
diff changeset
  1643
  make two assumptions: first, there is a finite pool of threads
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1644
  (active or hibernating) and second, each of these threads will give up its
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1645
  resources after a finite amount of time.  However, we do not have
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1646
  this concept of active or hibernating threads in our model.  In fact
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1647
  we can dispense with the first assumption altogether and allow that
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1648
  in our model we can create new threads or exit existing threads
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1649
  arbitrarily. Consequently, the absence of indefinite priority
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1650
  inversion we are trying to establish in our model is not true,
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1651
  unless we stipulate an upper bound on the number of threads that
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1652
  have been created during the time leading to any future state after
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1653
  @{term s}. Otherwise our PIP scheduler could be ``swamped'' with
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1654
  @{text "Create"}-requests of lower priority threads.  So our first
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1655
  assumption states:
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1656
172
39d4d1a2b1ac updated
Christian Urban <urbanc@in.tum.de>
parents: 171
diff changeset
  1657
  \begin{quote} {\bf Assumption on the number of threads created 
39d4d1a2b1ac updated
Christian Urban <urbanc@in.tum.de>
parents: 171
diff changeset
  1658
  after the state {\boldmath@{text s}}:} Given the
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1659
  state @{text s}, in every ``future'' valid state @{text "es @ s"}, we
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1660
  require that the number of created threads is less than
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1661
  a bound @{text "BC"}, that is 
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1662
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1663
  \[@{text "len (filter isCreate es) < BC"}\;\]  
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1664
  
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1665
  wherby @{text es} is a list of events.
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1666
  \end{quote}
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1667
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1668
  \noindent Note that it is not enough to just to state that there are
171
daf75d6ebc89 updated
Christian Urban <urbanc@in.tum.de>
parents: 170
diff changeset
  1669
  only finite number of threads created up until a single state @{text
daf75d6ebc89 updated
Christian Urban <urbanc@in.tum.de>
parents: 170
diff changeset
  1670
  "s' @ s"} after @{text s}.  Instead, we need to put this bound on
daf75d6ebc89 updated
Christian Urban <urbanc@in.tum.de>
parents: 170
diff changeset
  1671
  the @{text "Create"} events for all valid states after @{text s}.
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1672
  This ensures that no matter which ``future'' state is reached, the
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1673
  number of @{text "Create"}-events is finite. This bound @{text BC} is assumed 
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1674
 with respect to all future states @{text "es @ s"}
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1675
  of @{text s}, not just a single one.
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1676
156
550ab0f68960 updasted
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 155
diff changeset
  1677
  For our second assumption about giving up resources after a finite
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1678
  amount of ``time'', let us introduce the following definition about
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1679
  threads that can potentially block @{text th}:
152
15f4481bc0c9 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 145
diff changeset
  1680
154
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1681
  \begin{isabelle}\ \ \ \ \ %%%
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1682
  @{thm blockers_def[THEN eq_reflection]}
154
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1683
  \end{isabelle}
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1684
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1685
  \noindent This set contains all threads that are not detached in
172
39d4d1a2b1ac updated
Christian Urban <urbanc@in.tum.de>
parents: 171
diff changeset
  1686
  state @{text s}. According to our definiton of @{text "detached"},
39d4d1a2b1ac updated
Christian Urban <urbanc@in.tum.de>
parents: 171
diff changeset
  1687
  this means a thread in @{text "blockers"} either holds or waits for
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1688
  some resource in state @{text s} . Our Thm.~1 implies that any of
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1689
  such threads can all potentially block @{text th} after state
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1690
  @{text s}. We need to make the following assumption about the
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1691
  threads in the @{text "blockers"}-set:
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1692
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1693
  \begin{quote}
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1694
  {\bf Assumptions on the threads {\boldmath{@{term "th' \<in> blockers"}}}:} 
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1695
  For each such @{text "th'"} there exists a finite bound @{text "BND(th')"} 
156
550ab0f68960 updasted
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 155
diff changeset
  1696
  such that for all future 
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1697
  valid states @{text "es @ s"},
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1698
  we have that if \mbox{@{term "\<not>(detached (es @ s) th')"}}, then 
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1699
  \[@{text "len (actions_of {th'} es) < BND(th')"}\] 
156
550ab0f68960 updasted
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 155
diff changeset
  1700
  \end{quote} 
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1701
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1702
  \noindent By this assumption we enforce that any thread potentially
203
fe3dbfd9123b updated
Christian Urban <urbanc@in.tum.de>
parents: 201
diff changeset
  1703
  blocking @{term th} must become detached (that is it owns no resource
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1704
  anymore) after a finite number of events in @{text "es @ s"}. Again
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1705
  we have to state this bound to hold in all valid states after @{text
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1706
  s}. The bound reflects how each thread @{text "th'"} is programmed:
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1707
  Though we cannot express what instructions a thread is executing,
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1708
  the events in our model correspond to the system calls made by
199
4a75769a93b5 implemented some of the comments
Christian Urban <urbanc@in.tum.de>
parents: 197
diff changeset
  1709
  a thread. Our @{text "BND(th')"} bounds the number of these ``calls''.
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1710
  
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1711
  The main reason for these two assumptions is that we can prove the
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1712
  following: The number of states after @{text s} in which the thread
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1713
  @{text th} is not running (that is where Priority Inversion occurs)
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1714
  can be bounded by the number of actions the threads in @{text
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1715
  blockers} perform (i.e.~events) and how many threads are newly
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1716
  created.  To state our bound formally, we need to make a definition
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1717
  of what we mean by intermediate states between a state @{text s} and
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1718
  a future state after @{text s}; they will be the list of states
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1719
  starting from @{text s} upto the state \mbox{@{text "es @ s"}}. For
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1720
  example, suppose $\textit{es} = [\textit{e}_n, \textit{e}_{n-1},
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1721
  \ldots, \textit{e}_2, \textit{e}_1]$, then the intermediate states
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1722
  from @{text s} upto @{text "es @ s"} are
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1723
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1724
  \begin{center}
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1725
  \begin{tabular}{l}
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1726
  $\textit{s}$\\
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1727
  $\textit{e}_1 :: \textit{s}$\\
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1728
  $\textit{e}_2 :: \textit{e}_1 :: \textit{s}$\\
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1729
  \ldots\\
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1730
  $\textit{e}_{n - 1} :: \ldots :: \textit{e}_2 :: \textit{e}_1 :: \textit{s}$\\
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1731
  \end{tabular}
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1732
  \end{center}
157
029e1506477a updated
Christian Urban <urbanc@in.tum.de>
parents: 156
diff changeset
  1733
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1734
172
39d4d1a2b1ac updated
Christian Urban <urbanc@in.tum.de>
parents: 171
diff changeset
  1735
  \noindent This list of \emph{intermediate states} can be defined by
39d4d1a2b1ac updated
Christian Urban <urbanc@in.tum.de>
parents: 171
diff changeset
  1736
  the following recursive function
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1737
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1738
  \begin{center}
170
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1739
  \begin{tabular}{lcl}
def87c589516 updated
Christian Urban <urbanc@in.tum.de>
parents: 169
diff changeset
  1740
  @{text "s upto []"} & $\dn$ & $[]$\\
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1741
  @{text "s upto (_::es)"} & $\dn$ & @{text "(es @ s) :: s upto es"}
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1742
  \end{tabular}
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1743
  \end{center}
156
550ab0f68960 updasted
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 155
diff changeset
  1744
  
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1745
  \noindent
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1746
  Our theorem can then be stated as follows:
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1747
173
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1748
  \begin{theorem}
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1749
  Given our assumptions about bounds, we have that 
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1750
  \[
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1751
  @{text "len"}\,[@{text "s'"} 
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1752
  \leftarrow @{text "s upto es"}.\;\; @{text "th"} \not\in @{text "running s'"}] \;\;\leq\;\; 
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1753
  @{text "BC"} + \sum @{text "th'"} \in @{text "blockers"}.\;\; @{text "BND(th')"}\;. 
173
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1754
  \]
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1755
  \end{theorem}
173
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1756
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1757
  \noindent This theorem uses Isabelle's list-comprehension notation,
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1758
  which lists all intermediate states between @{text s} and @{text "es
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1759
  @ s"}, and then filters this list according to states in which
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1760
  @{text th} is not running. By calculating the number of elements in
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1761
  the filtered list using the function @{text len}, we have the number
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1762
  of intermediate states in which @{text th} is not running and which
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1763
  by the theorem is bounded by the term on the right-hand side.
173
c1028969401a updated
Christian Urban <urbanc@in.tum.de>
parents: 172
diff changeset
  1764
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1765
  \begin{proof} There are two characterisations for the number of
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1766
  events in @{text es}: First, in each state in
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1767
  @{text "s upto es"}, clearly either @{text th} is running or
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1768
  not running. Together with @{text "len es = len (s upto es)"}, that
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1769
  implies %
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1770
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1771
  \begin{equation}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1772
  \label{firsteq}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1773
  \begin{array}{lcl}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1774
  @{text "len es"} & \;=\; &
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1775
  @{text len}\, [@{text "s'"} \leftarrow @{text "s upto es"}.\;\; @{text "th"} \in @{text "running s'"}]\\ 
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1776
  & & +\;
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1777
  @{text len}\, [@{text "s'"} \leftarrow @{text "s upto es"}.\;\; @{text "th"} \not\in @{text "running s'"}]
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1778
  \end{array} 
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1779
  \end{equation}
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1780
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1781
  \noindent 
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1782
  The actions in @{text es} can be partitioned into the actions of @{text th} and the
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1783
  actions of threads other than @{text th}. The latter can further be divided
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1784
  into actions of existing threads and the actions to create new
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1785
  ones. Moreover, the actions of existing threads other than @{text th}
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1786
  are by Thm 1 the actions of blockers. This gives rise to 
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1787
  %
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1788
  \begin{equation}\label{secondeq}
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1789
  \begin{array}{lcl}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1790
  @{text "len es"} & \;=\; & @{text "len (actions_of {th} es)"}\\
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1791
  & & +\; @{text "len (filter isCreate es)"}\\ 
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1792
  & & +\; @{text "len (actions_of blockers es)"}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1793
  \end{array}
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1794
  \end{equation}
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1795
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1796
  \noindent Furthermore we know that an action of @{text th} in the
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1797
  intermediate states @{text "s upto es"} can only be taken when
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1798
  @{text th} is running. Therefore
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1799
  %
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1800
  \[
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1801
  @{text "len (actions_of {th} es)"} \;\leq\; 
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1802
  @{text len}\,[@{text "s'"} \leftarrow @{text "s upto es"}.\;\; @{text "th"} \in @{text "running s'"}]
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1803
  \]
158
2bb3b65fc99f updated
Christian Urban <urbanc@in.tum.de>
parents: 157
diff changeset
  1804
  
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1805
  \noindent holds. Substituting this into \eqref{firsteq} gives
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1806
  %
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1807
  \[
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1808
  @{text len}\,[@{text "s'"} \leftarrow @{text "s upto es"}.\;\; @{text "th"} \not\in @{text "running s'"}] 
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1809
  \;\leq\; @{text "len es"} - @{text "len (actions_of {th} es)"}
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1810
  \]
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1811
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1812
  \noindent
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1813
  into which we can substitute \eqref{secondeq} yielding
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1814
  %
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1815
  \[
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1816
  \begin{array}{rcl}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1817
  @{text len} [@{text "s'"} \leftarrow @{text "s upto es"}.\;\; @{text "th"} \not\in @{text "running s'"}] & \;\;\leq\;\; &
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1818
  @{text "len (filter isCreate es)"}\\
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1819
  & & \quad + @{text "len (actions_of blockers es)"}
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1820
  \end{array}
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1821
  \]
155
eae86cba8b89 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 154
diff changeset
  1822
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1823
  \noindent By our first assumption we know that the number of @{text
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1824
  "Create"}-events are bounded by the bound @{text BC}.  By our second
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1825
  assumption we can prove that the actions of all blockers is bounded
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1826
  by the sum of bounds of the individual blocking threads, that is
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1827
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1828
  \[
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1829
  @{text "len (actions_of blockers es)"} \;\;\leq\;\;
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1830
  \sum @{text "th'"} \in @{text "blockers"}.\;\; @{text "BND(th')"}
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1831
  \]
154
9756a51f2223 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 152
diff changeset
  1832
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1833
  \noindent With this in place we can conclude our theorem.\hfill\qed
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1834
  \end{proof}
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1835
174
1b72810a2d61 updated
Christian Urban <urbanc@in.tum.de>
parents: 173
diff changeset
  1836
  \noindent This theorem is the main conclusion we obtain for the
176
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1837
  Priority Inheritance Protocol. It is based on the fact that the set of
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1838
  @{text blockers} is fixed at state @{text s} when @{text th} becomes
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1839
  the thread with highest priority. Then no additional blocker of
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1840
  @{text th} can appear after the state @{text s}. And in this way we
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1841
  can bound the number of states where the thread @{text th} with the
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1842
  highest priority is prevented from running.
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1843
  Our bound does not depend on the restriction of well-nested critical 
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1844
  sections in the Priority Inheritance Protocol as imposed by Sha et al.  
675416b1defd updated
Christian Urban <urbanc@in.tum.de>
parents: 175
diff changeset
  1845
  *} (*<*) end (*>*)
145
188fe0c81ac7 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 144
diff changeset
  1846
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1847
section {* Properties for an Implementation\label{implement} *}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1848
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1849
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1850
  While our formalised proof gives us confidence about the correctness of our model of PIP, 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1851
  we found that the formalisation can even help us with efficiently implementing it.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1852
  For example Baker complained that calculating the current precedence
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1853
  in PIP is quite ``heavy weight'' in Linux (see the Introduction).
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1854
  In our model of PIP the current precedence of a thread in a state @{text s}
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1855
  depends on the precedences of all threads in its subtree---a ``global'' transitive notion,
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1856
  which is indeed heavy weight (see the equation for @{text cprec} shown in \eqref{overloaded}).
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1857
  We can however improve upon this. For this recall the notion
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1858
  of @{term children} of a thread @{text th} defined in \eqref{children}.
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1859
  There a child is a thread that is only one ``hop'' away from the thread
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1860
  @{text th} in the @{term TDG} (and waiting for @{text th} to release
187
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1861
  a resource). Using children, we can prove the following lemma for more efficiently calculating
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1862
  @{text cprec} of a thread @{text th}.
178
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
  1863
da27bece9575 updated
Christian Urban <urbanc@in.tum.de>
parents: 177
diff changeset
  1864
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1865
  \begin{lemma}\label{childrenlem}
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1866
  @{text "If"} @{thm (prem 1) valid_trace.cp_rec_tG} @{text "then"}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1867
  \begin{center}
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1868
  @{thm (concl) valid_trace.cp_rec_tG}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1869
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1870
  \end{lemma}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1871
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1872
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1873
  That means the current precedence of a thread @{text th} can be
187
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1874
  computed by considering the static precedence of @{text th}
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1875
  and 
187
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1876
  the current precedences of the children of @{text th}. Their 
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1877
  @{text "cprec"}s, in general, need to be computed by recursively decending into 
187
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1878
  deeper ``levels'' of the @{text TDG}. 
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1879
  However, the current precedence of a thread @{text th}, say, 
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1880
  only needs to be recomputed when @{text "(i)"} its static
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1881
  precedence is re-set or when @{text "(ii)"} one of
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1882
  its children changes its current precedence or when @{text "(iii)"} the children set changes
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1883
  (for example in a @{text "V"}-event).   
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1884
  If only the static precedence or the children-set changes, then we can 
187
32985f93e845 updated
Christian Urban <urbanc@in.tum.de>
parents: 186
diff changeset
  1885
  avoid the recursion and compute the @{text cprec} of @{text th} locally.
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1886
  In such cases
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  1887
  the recursion does not need to descend into the corresponding subtree.
181
d37e0d18eddd updated
Christian Urban <urbanc@in.tum.de>
parents: 180
diff changeset
  1888
  Once the current 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1889
  precedence is computed in this more efficient manner, the selection
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1890
  of the thread with highest precedence from a set of ready threads is
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1891
  a standard scheduling operation and implemented in most operating
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1892
  systems.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1893
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1894
  Below we
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1895
  outline how our formalisation guides the efficient calculation of @{text cprecs}
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  1896
  in response to each kind of events.\smallskip
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1897
*}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1898
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1899
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1900
  \noindent
183
5d4c398c8187 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
  1901
  \colorbox{mygrey}{@{term "Create th prio"}:} We assume that the current state @{text s} and 
184
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1902
  the next state @{term "e#s"}, whereby \mbox{@{term "e \<equiv> Create th prio"}}, are both valid (meaning the event
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1903
  @{text "Create"} is allowed to occur in @{text s}). In this situation we can show that
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1904
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1905
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1906
  \begin{tabular}{@ {}l}
183
5d4c398c8187 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
  1907
  @{thm (concl) valid_trace_create.RAG_es},\\
5d4c398c8187 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
  1908
  @{thm (concl) valid_trace_create.eq_cp_th}, and\\
5d4c398c8187 updated
Christian Urban <urbanc@in.tum.de>
parents: 182
diff changeset
  1909
  @{text "If"} @{thm (prem 2) valid_trace_create.eq_cp} @{text "then"} @{thm (concl) valid_trace_create.eq_cp}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1910
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1911
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1912
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1913
  \noindent
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
  1914
  This means in an implementation we do not have to recalculate the @{text RAG} and also none of the
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1915
  current precedences of the other threads. The current precedence of the created
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1916
  thread @{text th} is just its precedence, namely the pair @{term "(prio, length (s::event list))"}.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1917
  \smallskip
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1918
  *}
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  1919
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1920
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1921
  \noindent
184
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1922
  \colorbox{mygrey}{@{term "Exit th"}:} We again assume that the current state @{text s} and 
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1923
  the next state @{term "e#s"}, whereby this time  @{term "e \<equiv> Exit th"}, are both valid. We can show that
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1924
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1925
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1926
  \begin{tabular}{@ {}l}
184
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1927
  @{thm (concl) valid_trace_exit.RAG_es}, and\\
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1928
  @{text "If"} @{thm (prem 2) valid_trace_exit.eq_cp} @{text "then"} @{thm (concl) valid_trace_exit.eq_cp}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1929
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1930
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1931
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1932
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1933
  This means again we do not have to recalculate the @{text RAG} and
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1934
  also not the current precedences for the other threads. Since @{term th} is not
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1935
  alive anymore in state @{term "s"}, there is no need to calculate its
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1936
  current precedence.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1937
  \smallskip
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1938
*}
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  1939
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1940
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1941
  \noindent
184
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1942
  \colorbox{mygrey}{@{term "Set th prio"}:} We assume that @{text s} and 
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1943
  @{term "e#s"} with @{term "e \<equiv> Set th prio"} are both valid. We can show that
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1944
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1945
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1946
  \begin{tabular}{@ {}l}
184
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1947
  @{thm (concl) valid_trace_set.RAG_es}, and\\
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1948
  @{text "If"} @{thm (prem 2) valid_trace_set.eq_cp} @{text "then"} @{thm (concl) valid_trace_set.eq_cp}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1949
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1950
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1951
184
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1952
  \noindent The first property is again telling us we do not need to
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1953
  change the @{text RAG}.  The second shows that the @{term cp}-values
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1954
  of all threads other than @{text th} are unchanged. The reason for
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1955
  this is more subtle: Since @{text th} must be running, that is does
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1956
  not wait for any resource to be released, it cannot be in any
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1957
  subtree of any other thread. So all current precedences of other
5067a2ab5557 updated
Christian Urban <urbanc@in.tum.de>
parents: 183
diff changeset
  1958
  threads are unchanged.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1959
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1960
  %The second
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1961
  %however states that only threads that are \emph{not} dependants of @{text th} have their
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1962
  %current precedence unchanged. For the ancestors of @{text th}, we 
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  1963
  %have to recalculate the current
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1964
  %precedence. To do this we can start from @{term "th"} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1965
  %and follow the @{term "depend"}-edges to recompute  using Lemma~\ref{childrenlem} 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1966
  %the @{term "cp"} of every 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1967
  %thread encountered on the way. Since the @{term "depend"}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1968
  %is assumed to be loop free, this procedure will always stop. The following two lemmas show, however, 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1969
  %that this procedure can actually stop often earlier without having to consider all
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1970
  %dependants.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1971
  %
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1972
  %\begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1973
  %\begin{tabular}{@ {}l}
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1974
  %@ {thm[mode=IfThen] eq_up_self}\\
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1975
  %@{text "If"} @ {thm (prem 1) eq_up}, @ {thm (prem 2) eq_up} and @ {thm (prem 3) eq_up}\\
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 46
diff changeset
  1976
  %@{text "then"} @ {thm (concl) eq_up}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1977
  %\end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1978
  %\end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1979
  %
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1980
  %\noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1981
  %The first lemma states that if the current precedence of @{text th} is unchanged,
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1982
  %then the procedure can stop immediately (all dependent threads have their @{term cp}-value unchanged).
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1983
  %The second states that if an intermediate @{term cp}-value does not change, then
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1984
  %the procedure can also stop, because none of its dependent threads will
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1985
  %have their current precedence changed.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1986
  \smallskip
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1987
  *}
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  1988
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1989
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1990
  \noindent
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  1991
  \colorbox{mygrey}{@{term "V th cs"}:} We assume that @{text s} and 
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  1992
  @{term "e#s"} with @{text e} being @{term "V th cs"} are both valid. 
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  1993
  We have to consider two
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1994
  subcases: one where there is a thread to ``take over'' the released
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1995
  resource @{text cs}, and one where there is not. Let us consider them
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1996
  in turn. Suppose in state @{text s}, the thread @{text th'} takes over
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1997
  resource @{text cs} from thread @{text th}. We can prove
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1998
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  1999
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2000
  \begin{isabelle}\ \ \ \ \ %%%
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2001
  %@ { thm (concl) valid_trace_v_n.RAG_s}\\
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2002
  @{term "RAG (e#s) = RAG s - {(C cs,T th), (T th',C cs)} \<union> {(C cs, T th')}"}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2003
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2004
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2005
  \noindent
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2006
  which shows how the @{text RAG} needs to be changed. The next lemmas suggest
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2007
  how the current precedences need to be recalculated. For threads that are
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2008
  not @{text "th"} and @{text "th'"} nothing needs to be changed, since we
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2009
  can show
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2010
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2011
  \begin{isabelle}\ \ \ \ \ %%%
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2012
  @{text "If"} @{text "th'' \<noteq> th"} and 
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  2013
  @{text "th'' \<noteq> th'"} \;\;@{text then}\;\;
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2014
  @{thm (concl) valid_trace_v_n.cp_kept[where ?th1.0="th''"]}
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2015
  \hfill\numbered{fone}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2016
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2017
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2018
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2019
  For @{text th} and @{text th'} we need to use Lemma~\ref{childrenlem} to
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2020
  recalculate their current precedence since their children have changed. 
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2021
  However, neither @{text "th"} and @{text "th'"} is element of the 
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2022
  respective children, which is shown by the following two facts:
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2023
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2024
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2025
  \begin{isabelle}\ \ \ \ \ %%%
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2026
  \begin{tabular}{@ {}l}
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2027
  @{term "th' \<notin> children (TDG (e#s)) th"}\\
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2028
  @{term "th \<notin> children (TDG (e#s)) th'"}
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2029
  \end{tabular}\hfill{}\numbered{ftwo}
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2030
  \end{isabelle}
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2031
  
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2032
  \noindent
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2033
  This means the recalculation of the @{text cprec} of @{text "th"} and 
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2034
  @{text "th'"} can be done independently and also done locally by only 
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2035
  looking at the children: according to \eqref{fone} and \eqref{ftwo} 
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2036
  none of the @{text cprecs} of the children 
188
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2037
  changes, just the children-sets changes by a @{text V}-event. 
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2038
  
186
4e0bc10f7907 updated
Christian Urban <urbanc@in.tum.de>
parents: 185
diff changeset
  2039
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2040
*}
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2041
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2042
text {*
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2043
  \noindent
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2044
  In the other case where there is no thread that takes over @{text cs}, 
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  2045
  we can prove that the updated @{text RAG} merely deletes the relevant edge and
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  2046
  that no current precedence needs to be recalculated
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  2047
  for any thread @{text "th''"}.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2048
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2049
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2050
  \begin{tabular}{@ {}l}
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2051
  @{thm (concl) valid_trace_v_e.RAG_s}\\
188
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2052
  @{term "\<forall>th''. cprec (e#s) th'' = cprec s th''"}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2053
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2054
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2055
  *}
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2056
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2057
text {*
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2058
  \noindent
185
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2059
  \colorbox{mygrey}{@{term "P th cs"}:} We assume that @{text s} and 
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2060
  @{term "e#s"} with @{term "e \<equiv> P th cs"} are both valid. 
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2061
  We again have to analyse two subcases, namely
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2062
  the one where @{text cs} is not locked, and one where it is. We 
42767f6e0ae9 updated
Christian Urban <urbanc@in.tum.de>
parents: 184
diff changeset
  2063
  treat the former case
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2064
  first by showing that
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2065
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2066
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2067
  \begin{tabular}{@ {}l}
188
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2068
  @{thm (concl) valid_trace_p_h.RAG_es}\\
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2069
  @{term "\<forall>th''. cprec (e#s) th'' = cprec s th''"}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2070
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2071
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2072
188
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2073
  \noindent This means we need to add a holding edge to the @{text
189
914288aec495 updated
Christian Urban <urbanc@in.tum.de>
parents: 188
diff changeset
  2074
  RAG}. However, note that while the @{text RAG} changes the corresponding
188
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2075
  @{text TDG} does not change. Together with the fact that the
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2076
  precedences of all threads are unchanged, no @{text cprec} value is
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2077
  changed. Therefore, no recalucation of the @{text cprec} value 
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2078
  of any thread @{text "th''"} is needed.
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2079
2dd47ea013ac updated
Christian Urban <urbanc@in.tum.de>
parents: 187
diff changeset
  2080
*} 
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2081
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2082
text {*
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2083
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2084
  In the second case we know that resource @{text cs} is locked. We can show that
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2085
  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2086
  \begin{isabelle}\ \ \ \ \ %%%
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2087
  \begin{tabular}{@ {}l}
189
914288aec495 updated
Christian Urban <urbanc@in.tum.de>
parents: 188
diff changeset
  2088
  @{thm (concl) valid_trace_p_w.RAG_es}\\
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2089
  @{text "If"} @{thm (prem 2) valid_trace_p_w.cp_kept_tG} @{text "then"}
189
914288aec495 updated
Christian Urban <urbanc@in.tum.de>
parents: 188
diff changeset
  2090
  @{thm (concl) valid_trace_p_w.cp_kept_tG}
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2091
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2092
  \end{isabelle}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2093
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2094
  \noindent That means we have to add a waiting edge to the @{text
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2095
  RAG}. Furthermore the current precedence for all threads that are
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  2096
  not ancestors of @{text "th"} (in the new @{text RAG} or @{text TDG}) are unchanged. For the ancestors of 
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2097
  @{text th} we need
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2098
  to follow the edges in the @{text TDG} and recompute the @{term
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2099
  "cprecs"}. Whereas in all other event we might have to make
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2100
  modifications to the @{text "RAG"}, no recalculation of @{text
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2101
  cprec} depends on the @{text RAG}. This is the only case where
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2102
  the recalulation needs to take the connections in the @{text RAG} into
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2103
  account.
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2104
  To do this we can start from @{term "th"} and follow the
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2105
  @{term "children"}-edges to recompute the @{term "cp"} of every
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2106
  thread encountered on the way using Lemma~\ref{childrenlem}. 
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2107
  This means the recomputation can be done locally (level-by-level)
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2108
  in a bottom-up fashion.
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2109
  Since
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2110
  the @{text RAG}, and thus @{text "TDG"}, are loop free, this
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2111
  procedure will always stop. The following lemma shows, however, that
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2112
  this procedure can actually stop often earlier without having to
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2113
  consider all ancestors.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2114
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2115
  \begin{isabelle}\ \ \ \ \ %%%
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2116
  \begin{tabular}{@ {}ll}
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2117
  @{text If} & @{thm (prem 2) valid_trace_p_w.cp_up_tG}\\
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2118
             & @{thm (prem 4) valid_trace_p_w.cp_up_tG} and \\
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2119
             & @{thm (prem 3) valid_trace_p_w.cp_up_tG}\\
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2120
  & @{text then} @{thm (concl) valid_trace_p_w.cp_up_tG}\\
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2121
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2122
  \end{isabelle}
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2123
 
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2124
  \noindent This property states that if an intermediate @{term cp}-value
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2125
  does not change (in this case the @{text cprec}-value of @{text "th'"}), then the procedure can
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2126
  also stop, because none of @{text "th'"} ancestor-threads will have their
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2127
  current precedence changed.  
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2128
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2129
*}
124
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2130
71a3300d497b updated journal paper
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 95
diff changeset
  2131
text {*
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2132
  As can be seen, a pleasing byproduct of our formalisation is that the properties in
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2133
  this section closely inform an implementation of PIP, namely whether the
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2134
  @{text RAG} needs to be reconfigured or current precedences need to
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2135
  be recalculated for an event. This information is provided by the lemmas we proved.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2136
  We confirmed that our observations translate into practice by implementing
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2137
  our version of PIP on top of PINTOS, a small operating system written in C and used for teaching at 
201
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
  2138
  Stanford University \cite{PINTOS}.\footnote{An alternative would have been the small Xv6 operating 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2139
  system used for teaching at MIT \cite{Xv6link,Xv6}. However this operating system implements
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2140
  a simple round robin scheduler that lacks stubs for dealing with priorities. This
201
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
  2141
  is inconvenient for our purposes.} While there is no formal connection between our
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
  2142
  formalisation and the C-code shown below, the results of the formalisation clearly 
fcc6f4c3c32f updated
Christian Urban <urbanc@in.tum.de>
parents: 200
diff changeset
  2143
  shine through in the design of the code.
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2144
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2145
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2146
  To implement PIP in PINTOS, we only need to modify the kernel 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2147
  functions corresponding to the events in our formal model. The events translate to the following 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2148
  function interface in PINTOS:
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2149
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2150
  \begin{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2151
  \begin{tabular}{|l@ {\hspace{2mm}}|l@ {\hspace{2mm}}|}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2152
  \hline
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2153
  {\bf Event} & {\bf PINTOS function} \\
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2154
  \hline
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2155
  @{text Create} & @{ML_text "thread_create"}\\
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2156
  @{text Exit}   & @{ML_text "thread_exit"}\\
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2157
  @{text Set}    & @{ML_text "thread_set_priority"}\\
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2158
  @{text P}      & @{ML_text "lock_acquire"}\\
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2159
  @{text V}      & @{ML_text "lock_release"}\\ 
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2160
  \hline
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2161
  \end{tabular}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2162
  \end{center}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2163
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2164
  \noindent
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2165
  Our implicit assumption that every event is an atomic operation is ensured by the architecture of 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2166
  PINTOS (which allows disabling of interrupts when some operations are performed). The case where 
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2167
  an unlocked resource is given next to the waiting thread with the
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2168
  highest precedence is realised in our implementation by priority queues. We implemented
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2169
  them as \emph{Braun trees} \cite{Paulson96}, which provide efficient @{text "O(log n)"}-operations
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2170
  for accessing and updating. In the code we shall describe below, we use the function
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2171
  @{ML_text "queue_insert"}, for inserting a new element into a priority queue, and 
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
  2172
  the function @{ML_text "queue_update"}, for updating the position of an element that is already
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2173
  in a queue. Both functions take an extra argument that specifies the
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2174
  comparison function used for organising the priority queue.
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2175
  
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2176
  Apart from having to implement relatively complex data\-structures in C
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2177
  using pointers, our experience with the implementation has been very positive: our specification 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2178
  and formalisation of PIP translates smoothly to an efficent implementation in PINTOS. 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2179
  Let us illustrate this with the C-code for the function @{ML_text "lock_acquire"}, 
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2180
  shown in Figure~\ref{code}.  This function implements the operation of requesting and, if free, 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2181
  locking of a resource by the current running thread. The convention in the PINTOS
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2182
  code is to use the terminology \emph{locks} rather than resources. 
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2183
  A lock is represented as a pointer to the structure {\tt lock} (Line 1). 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2184
  Lines 2 to 4 are taken from the original 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2185
  code of @{ML_text "lock_acquire"} in PINTOS. They contain diagnostic code: first, 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2186
  there is a check that 
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2187
  the lock is a ``valid'' lock 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2188
  by testing whether it is not {\tt NULL}; second, a check that the code is not called
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2189
  as part of an interrupt---acquiring a lock should only be initiated by a 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2190
  request from a (user) thread, not from an interrupt; third, it is ensured that the 
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2191
  current thread does not ask twice for a lock. These assertions are supposed
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2192
  to be satisfied because of the assumptions in PINTOS about how this code is called.
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2193
  If not, then the assertions indicate a bug in PINTOS and the result will be
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2194
  a ``kernel panic''. 
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2195
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2196
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2197
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
  2198
  \begin{figure}[tph]
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2199
  \begin{lstlisting}
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2200
void lock_acquire (struct lock *lock)
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2201
{ ASSERT (lock != NULL);
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2202
  ASSERT (!intr_context());
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2203
  ASSERT (!lock_held_by_current_thread (lock));
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2204
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2205
  enum intr_level old_level;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2206
  old_level = intr_disable();
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2207
  if (lock->value == 0) {
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2208
    queue_insert(thread_cprec, &lock->wq, &thread_current()->helem); 
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2209
    thread_current()->waiting = lock;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2210
    struct thread *pt;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2211
    pt = lock->holder;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2212
    while (pt) {
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2213
      queue_update(lock_cprec, &pt->held, &lock->helem);
12
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
  2214
      if (!(update_cprec(pt)))
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2215
        break;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2216
      lock = pt->waiting;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2217
      if (!lock) {
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2218
        queue_update(higher_cprec, &ready_queue, &pt->helem);
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2219
        break;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2220
      };
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2221
      queue_update(thread_cprec, &lock->wq, &pt->helem);
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2222
      pt = lock->holder;
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2223
    };
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2224
    thread_block();
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2225
  } else {
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2226
    lock->value--;
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2227
    lock->holder = thread_current();
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2228
    queue_insert(lock_prec, &thread_current()->held, &lock->helem); 
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2229
  };
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2230
  intr_set_level(old_level);
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2231
}
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2232
  \end{lstlisting}
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2233
  \caption{Our version of the {\tt lock\_acquire} function for the small operating 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2234
  system PINTOS.  It implements the operation corresponding to a @{text P}-event.\label{code}}
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2235
  \end{figure}
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2236
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2237
 
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  2238
  Lines 6 and 7 of {\tt lock\_acquire} make the operation of acquiring a lock atomic by disabling all 
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2239
  interrupts, but saving them for resumption at the end of the function (Line 31).
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2240
  In Line 8, the interesting code with respect to scheduling starts: we 
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2241
  first check whether the lock is already taken (its value is then 0 indicating ``already 
12
85116bc854c0 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 11
diff changeset
  2242
  taken'', or 1 for being ``free''). In case the lock is taken, we enter the
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2243
  if-branch inserting the current thread into the waiting queue of this lock (Line 9).
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2244
  The waiting queue is referenced in the usual C-way as @{ML_text "&lock->wq"}. 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2245
  Next, we record that the current thread is waiting for the lock (Line 10).
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2246
  Thus we established two pointers: one in the waiting queue of the lock pointing to the 
204
5191a09d9928 updated
Christian Urban <urbanc@in.tum.de>
parents: 203
diff changeset
  2247
  current thread, and the other from the current thread pointing to the lock.
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2248
  According to our specification in Section~\ref{model} and the properties we were able 
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2249
  to prove for @{text P}, we need to ``chase'' all the ancestor threads
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2250
  in the @{text RAG} and update their
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2251
  current precedence; however we only have to do this as long as there is change in the 
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2252
  current precedence.
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2253
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2254
  The ``chase'' is implemented in the while-loop in Lines 13 to 24. 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2255
  To initialise the loop, we 
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2256
  assign in Lines 11 and 12 the variable @{ML_text pt} to the owner 
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2257
  of the lock.
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2258
  Inside the loop, we first update the precedence of the lock held by @{ML_text pt} (Line 14).
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2259
  Next, we check whether there is a change in the current precedence of @{ML_text pt}. If not,
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2260
  then we leave the loop, since nothing else needs to be updated (Lines 15 and 16).
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2261
  If there is a change, then we have to continue our ``chase''. We check what lock the 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2262
  thread @{ML_text pt} is waiting for (Lines 17 and 18). If there is none, then 
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2263
  the thread @{ML_text pt} is ready (the ``chase'' is finished with finding a root in the @{text RAG}). 
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2264
  In this 
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2265
  case we update the ready-queue accordingly (Lines 19 and 20). If there is a lock  @{ML_text pt} is 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2266
  waiting for, we update the waiting queue for this lock and we continue the loop with 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2267
  the holder of that lock 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2268
  (Lines 22 and 23). After all current precedences have been updated, we finally need 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2269
  to block the current thread, because the lock it asked for was taken (Line 25). 
7
0514be2ad83e started code explanation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 6
diff changeset
  2270
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2271
  If the lock the current thread asked for is \emph{not} taken, we proceed with the else-branch 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2272
  (Lines 26 to 30). We first decrease the value of the lock to 0, meaning 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2273
  it is taken now (Line 27). Second, we update the reference of the holder of 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2274
  the lock (Line 28), and finally update the queue of locks the current 
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2275
  thread already possesses (Line 29).
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2276
  The very last step is to enable interrupts again thus leaving the protected section.
14
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2277
  
1bf194825a4e more one the implementation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 13
diff changeset
  2278
13
735e36c64a71 added explanation of the code
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 12
diff changeset
  2279
  Similar operations need to be implementated for the @{ML_text lock_release} function, which
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2280
  we however do not show. The reader should note though that we did \emph{not} verify our C-code. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2281
  This is in contrast, for example, to the work on seL4, which actually verified in Isabelle/HOL
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  2282
  that their C-code satisfies its specification, though this specification does not contain 
17
105715a0a807 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 16
diff changeset
  2283
  anything about PIP \cite{sel4}.
200
ff826e28d85c updated
Christian Urban <urbanc@in.tum.de>
parents: 199
diff changeset
  2284
  Our verification of PIP however provided us with (formally proven) insights on how to design 
15
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2285
  the C-code. It gave us confidence that leaving the ``chase'' early, whenever
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2286
  there is no change in the calculated current precedence, does not break the
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 14
diff changeset
  2287
  correctness of the algorithm.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2288
*}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2289
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2290
section {* Conclusion *}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2291
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2292
text {* 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2293
  The Priority Inheritance Protocol (PIP) is a classic textbook
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2294
  algorithm used in many real-time operating systems in order to avoid the problem of
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2295
  Priority Inversion.  Although classic and widely used, PIP does have
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2296
  its faults: for example it does not prevent deadlocks in cases where threads
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2297
  have circular lock dependencies.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2298
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2299
  We had two goals in mind with our formalisation of PIP: One is to
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2300
  make the notions in the correctness proof by Sha et al.~\cite{Sha90}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2301
  precise so that they can be processed by a theorem prover. The reason is
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2302
  that a mechanically checked proof avoids the flaws that crept into their
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2303
  informal reasoning. We achieved this goal: The correctness of PIP now
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2304
  only hinges on the assumptions behind our formal model. The reasoning, which is
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2305
  sometimes quite intricate and tedious, has been checked by Isabelle/HOL. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2306
  We can also confirm that Paulson's
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2307
  inductive method for protocol verification~\cite{Paulson98} is quite
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2308
  suitable for our formal model and proof. The traditional application
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2309
  area of this method is security protocols. 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2310
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2311
  The second goal of our formalisation is to provide a specification for actually
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2312
  implementing PIP. Textbooks, for example \cite[Section 5.6.5]{Vahalia96},
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2313
  explain how to use various implementations of PIP and abstractly
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2314
  discuss their properties, but surprisingly lack most details important for a
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2315
  programmer who wants to implement PIP (similarly Sha et al.~\cite{Sha90}).  
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2316
  That this is an issue in practice is illustrated by the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2317
  email from Baker we cited in the Introduction. We achieved also this
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2318
  goal: The formalisation allowed us to efficently implement our version
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2319
  of PIP on top of PINTOS \cite{PINTOS}, a simple instructional operating system for the x86 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2320
  architecture. It also gives the first author enough data to enable
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2321
  his undergraduate students to implement PIP (as part of their OS course).
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2322
  A byproduct of our formalisation effort is that nearly all
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2323
  design choices for the implementation of PIP scheduler are backed up with a proved
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2324
  lemma. We were also able to establish the property that the choice of
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2325
  the next thread which takes over a lock is irrelevant for the correctness
11
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2326
  of PIP. Moreover, we eliminated a crucial restriction present in 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 8
diff changeset
  2327
  the proof of Sha et al.: they require that critical sections nest properly, 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2328
  whereas our scheduler allows critical sections to overlap. What we
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2329
  are not able to do is to mechanically ``synthesise'' an actual implementation 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2330
  from our formalisation. To do so for C-code seems quite hard and is beyond 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2331
  current technology available for Isabelle. Also our proof-method based
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2332
  on events is not ``computational'' in the sense of having a concrete
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2333
  algorithm behind it: our formalisation is really more about the 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2334
  specification of PIP and ensuring that it has the desired properties
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2335
  (the informal specification by Sha et al.~did not). 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 28
diff changeset
  2336
  
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2337
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2338
  PIP is a scheduling algorithm for single-processor systems. We are
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2339
  now living in a multi-processor world. Priority Inversion certainly
20
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
  2340
  occurs also there, see for example \cite{Brandenburg11,Davis11}.  
16
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 15
diff changeset
  2341
  However, there is very little ``foundational''
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2342
  work about PIP-algorithms on multi-processor systems.  We are not
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2343
  aware of any correctness proofs, not even informal ones. There is an
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2344
  implementation of a PIP-algorithm for multi-processors as part of the
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2345
  ``real-time'' effort in Linux, including an informal description of the implemented scheduling
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2346
  algorithm given in \cite{LINUX}.  We estimate that the formal
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2347
  verification of this algorithm, involving more fine-grained events,
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2348
  is a magnitude harder than the one we presented here, but still
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2349
  within reach of current theorem proving technology. We leave this
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2350
  for future work.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2351
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
  2352
  To us, it seems sound reasoning about scheduling algorithms is fiendishly difficult
27
6b1141c5e24c cleaned up
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 26
diff changeset
  2353
  if done informally by ``pencil-and-paper''. We infer this from the flawed proof
6b1141c5e24c cleaned up
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 26
diff changeset
  2354
  in the paper by Sha et al.~\cite{Sha90} and also from \cite{Regehr} where Regehr 
6b1141c5e24c cleaned up
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 26
diff changeset
  2355
  points out an error in a paper about Preemption 
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
  2356
  Threshold Scheduling \cite{ThreadX}. The use of a theorem prover was
23
24e6884d9258 made some small chages
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 22
diff changeset
  2357
  invaluable to us in order to be confident about the correctness of our reasoning 
41
66ed924aaa5c added another book that makes the error, some more proofs
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 38
diff changeset
  2358
  (for example no corner case can be overlooked).   
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2359
  The most closely related work to ours is the formal verification in
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2360
  PVS of the Priority Ceiling Protocol done by Dutertre
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2361
  \cite{dutertre99b}---another solution to the Priority Inversion
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2362
  problem, which however needs static analysis of programs in order to
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2363
  avoid it. There have been earlier formal investigations
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2364
  into PIP \cite{Faria08,Jahier09,Wellings07}, but they employ model
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2365
  checking techniques. The results obtained by them apply,
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2366
  however, only to systems with a fixed size, such as a fixed number of 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2367
  events and threads. In contrast, our result applies to systems of arbitrary
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2368
  size. Moreover, our result is a good 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2369
  witness for one of the major reasons to be interested in machine checked 
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2370
  reasoning: gaining deeper understanding of the subject matter.
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2371
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2372
  Our formalisation
193
c3a42076b164 polishing
Christian Urban <urbanc@in.tum.de>
parents: 192
diff changeset
  2373
  consists of around 600 lemmas and overall 9200 lines 
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2374
  of readable and commented Isabelle/Isar
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2375
  code with a few apply-scripts interspersed. The formal model of PIP
193
c3a42076b164 polishing
Christian Urban <urbanc@in.tum.de>
parents: 192
diff changeset
  2376
  is 310 lines long; our graph theory implementation using relations is 
c3a42076b164 polishing
Christian Urban <urbanc@in.tum.de>
parents: 192
diff changeset
  2377
  1615 lines; the basic properties of PIP take around 5000 lines of code; 
c3a42076b164 polishing
Christian Urban <urbanc@in.tum.de>
parents: 192
diff changeset
  2378
  and the formal correctness proof 1250 lines. 
192
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2379
  %Some auxiliary
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2380
  %definitions and proofs span over 770 lines of code. 
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2381
  The properties relevant
f933a8ad24e5 updated
Christian Urban <urbanc@in.tum.de>
parents: 191
diff changeset
  2382
  for an implementation require 1000 lines. 
22
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
  2383
  The code of our formalisation 
9f0b78fcc894 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 20
diff changeset
  2384
  can be downloaded from the Mercurial repository at
193
c3a42076b164 polishing
Christian Urban <urbanc@in.tum.de>
parents: 192
diff changeset
  2385
  \url{http://talisker.inf.kcl.ac.uk/cgi-bin/repos.cgi/pip}.
205
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2386
  \medskip
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2387
205
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2388
  \noindent {\bf Acknowledgements:} We are grateful for the comments
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2389
  we received from anonymous referees. We are also deeply saddened about the
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2390
  tragic death of our co-author, colleague and friend, Chunhan, who
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2391
  suddenly died on 22 December 2016. He drove very much forward this work
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2392
  and extended it in his PhD-thesis with a formal verification of an
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2393
  SELinux-style access control system. He was a stellar student
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2394
  and very promising young researcher in the field of interactive
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2395
  theorem proving. He was liked by many and indispensable for
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2396
  organising the ITP'15 conference in Nanjing. Chunhan left behind a
12a8dfcb55a7 updated
Christian Urban <urbanc@in.tum.de>
parents: 204
diff changeset
  2397
  grieving wife and eight-year-old son.
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2398
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2399
  \bibliographystyle{plain}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2400
  \bibliography{root}
142
10c16b85a839 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 141
diff changeset
  2401
190
312497c6d6b9 updated
Christian Urban <urbanc@in.tum.de>
parents: 189
diff changeset
  2402
  %%\theendnotes
6
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2403
*}
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2404
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2405
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2406
(*<*)
7f2493296c39 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
  2407
end
127
38c6acf03f68 updated
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 126
diff changeset
  2408
(*>*)