PIPDefs.thy
author zhangx
Fri, 12 Feb 2016 17:50:24 +0800
changeset 116 a7441db6f4e1
parent 115 74fc1eae4605
child 118 a4bb5525b7b6
permissions -rw-r--r--
PIPBasics.thy is tidied up now.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     1
(*<*)
64
b4bcd1edbb6d renamed files
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 53
diff changeset
     2
theory PIPDefs
65
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
     3
imports Precedence_ord Moment RTree Max
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     4
begin
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     5
(*>*)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     6
94
44df6ac30bd2 some small changes
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 67
diff changeset
     7
chapter {* Definitions *}
44df6ac30bd2 some small changes
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 67
diff changeset
     8
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
     9
text {*
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    10
  In this section, the formal model of  Priority Inheritance Protocol (PIP) is presented. 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    11
  The model is based on Paulson's inductive protocol verification method, where 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    12
  the state of the system is modelled as a list of events happened so far with the latest 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    13
  event put at the head. 
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    14
*}
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    15
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    16
text {*
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    17
  To define events, the identifiers of {\em threads},
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    18
  {\em priority} and {\em critical resources } (abbreviated as @{text "cs"}) 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    19
  need to be represented. All three are represetned using standard 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    20
  Isabelle/HOL type @{typ "nat"}:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    21
*}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    22
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    23
type_synonym thread = nat -- {* Type for thread identifiers. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    24
type_synonym priority = nat  -- {* Type for priorities. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    25
type_synonym cs = nat -- {* Type for critical sections (or critical resources). *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    26
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    27
text {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    28
  \noindent
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    29
  The abstraction of Priority Inheritance Protocol (PIP) is set at the system call level.
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    30
  Every system call is represented as an event. The format of events is defined 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    31
  defined as follows:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    32
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    33
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    34
datatype event = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    35
  Create thread priority | -- {* Thread @{text "thread"} is created with priority @{text "priority"}. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    36
  Exit thread | -- {* Thread @{text "thread"} finishing its execution. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    37
  P thread cs | -- {* Thread @{text "thread"} requesting critical resource @{text "cs"}. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    38
  V thread cs | -- {* Thread @{text "thread"}  releasing critical resource @{text "cs"}. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    39
  Set thread priority -- {* Thread @{text "thread"} resets its priority to @{text "priority"}. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    40
67
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    41
fun actor :: "event \<Rightarrow> thread" where
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    42
  "actor (Create th pty) = th" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    43
  "actor (Exit th) = th" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    44
  "actor (P th cs) = th" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    45
  "actor (V th cs) = th" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    46
  "actor (Set th pty) = th"
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    47
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    48
fun isCreate :: "event \<Rightarrow> bool" where
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    49
  "isCreate (Create th pty) = True" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    50
  "isCreate _ = False"
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    51
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    52
fun isP :: "event \<Rightarrow> bool" where
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    53
  "isP (P th cs) = True" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    54
  "isP _ = False"
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    55
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    56
fun isV :: "event \<Rightarrow> bool" where
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    57
  "isV (V th cs) = True" |
25fd656667a7 Correctness simplified a great deal.
zhangx
parents: 65
diff changeset
    58
  "isV _ = False"
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    59
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    60
text {* 
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    61
  As mentioned earlier, in Paulson's inductive method, the states of system are represented as lists of events,
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    62
  which is defined by the following type @{text "state"}:
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    63
  *}
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    64
type_synonym state = "event list"
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    65
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    66
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    67
text {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    68
\noindent
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    69
  Resource Allocation Graph (RAG for short) is used extensively in our formal analysis. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    70
  The following type @{text "node"} is used to represent nodes in RAG.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    71
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    72
datatype node = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    73
   Th "thread" | -- {* Node for thread. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    74
   Cs "cs" -- {* Node for critical resource. *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    75
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    76
text {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    77
  \noindent
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    78
  The following function
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    79
  @{text "threads"} is used to calculate the set of live threads (@{text "threads s"})
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    80
  in state @{text "s"}.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    81
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    82
fun threads :: "state \<Rightarrow> thread set"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    83
  where 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    84
  -- {* At the start of the system, the set of threads is empty: *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    85
  "threads [] = {}" | 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    86
  -- {* New thread is added to the @{text "threads"}: *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    87
  "threads (Create thread prio#s) = {thread} \<union> threads s" | 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    88
  -- {* Finished thread is removed: *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    89
  "threads (Exit thread # s) = (threads s) - {thread}" | 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    90
  -- {* Other kind of events does not affect the value of @{text "threads"}: *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
    91
  "threads (e#s) = threads s" 
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
    92
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    93
text {* 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    94
  \noindent
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    95
  The function @{text "threads"} defined above is one of 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    96
  the so called {\em observation function}s which forms 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    97
  the very basis of Paulson's inductive protocol verification method.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    98
  Each observation function {\em observes} one particular aspect (or attribute)
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
    99
  of the system. For example, the attribute observed by  @{text "threads s"}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   100
  is the set of threads living in state @{text "s"}. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   101
  The protocol being modelled 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   102
  The decision made the protocol being modelled is based on the {\em observation}s
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   103
  returned by {\em observation function}s. Since {\observation function}s forms 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   104
  the very basis on which Paulson's inductive method is based, there will be 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   105
  a lot of such observation functions introduced in the following. In fact, any function 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   106
  which takes event list as argument is a {\em observation function}.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   107
  *}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   108
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   109
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   110
  Observation @{text "priority th s"} is
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   111
  the {\em original priority} of thread @{text "th"} in state @{text "s"}. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   112
  The {\em original priority} is the priority 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   113
  assigned to a thread when it is created or when it is reset by system call 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   114
  (represented by event @{text "Set thread priority"}).
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   115
*}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   116
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   117
fun priority :: "thread \<Rightarrow> state \<Rightarrow> priority"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   118
  where
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   119
  -- {* @{text "0"} is assigned to threads which have never been created: *}
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   120
  "priority thread [] = 0" |
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   121
  "priority thread (Create thread' prio#s) = 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   122
     (if thread' = thread then prio else priority thread s)" |
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   123
  "priority thread (Set thread' prio#s) = 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   124
     (if thread' = thread then prio else priority thread s)" |
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   125
  "priority thread (e#s) = priority thread s"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   126
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   127
text {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   128
  \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   129
  Observation @{text "last_set th s"} is the last time when the priority of thread @{text "th"} is set, 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   130
  observed from state @{text "s"}.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   131
  The time in the system is measured by the number of events happened so far since the very beginning.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   132
*}
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   133
fun last_set :: "thread \<Rightarrow> state \<Rightarrow> nat"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   134
  where
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   135
  "last_set thread [] = 0" |
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   136
  "last_set thread ((Create thread' prio)#s) = 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   137
       (if (thread = thread') then length s else last_set thread s)" |
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   138
  "last_set thread ((Set thread' prio)#s) = 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   139
       (if (thread = thread') then length s else last_set thread s)" |
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   140
  "last_set thread (_#s) = last_set thread s"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   141
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   142
text {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   143
  \noindent 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   144
  The {\em precedence} is a notion derived from {\em priority}, where the {\em precedence} of 
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   145
  a thread is the combination of its {\em original priority} and {\em time} the priority is set. 
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   146
  The intention is to discriminate threads with the same priority by giving threads whose priority
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   147
  is assigned earlier higher precedences, becasue such threads are more urgent to finish. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   148
  This explains the following definition:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   149
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   150
definition preced :: "thread \<Rightarrow> state \<Rightarrow> precedence"
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   151
  where "preced thread s \<equiv> Prc (priority thread s) (last_set thread s)"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   152
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   153
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   154
text {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   155
  \noindent
49
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   156
  A number of important notions in PIP are represented as the following functions, 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   157
  defined in terms of the waiting queues of the system, where the waiting queues 
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   158
  , as a whole, is represented by the @{text "wq"} argument of every notion function.
49
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   159
  The @{text "wq"} argument is itself a functions which maps every critical resource 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   160
  @{text "cs"} to the list of threads which are holding or waiting for it. 
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   161
  The thread at the head of this list is designated as the thread which is current 
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   162
  holding the resrouce, which is slightly different from tradition where
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   163
  all threads in the waiting queue are considered as waiting for the resource.
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   164
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   165
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   166
consts 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   167
  holding :: "'b \<Rightarrow> thread \<Rightarrow> cs \<Rightarrow> bool" 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   168
  waiting :: "'b \<Rightarrow> thread \<Rightarrow> cs \<Rightarrow> bool"
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
   169
  RAG :: "'b \<Rightarrow> (node \<times> node) set"
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   170
  dependants :: "'b \<Rightarrow> thread \<Rightarrow> thread set"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   171
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   172
defs (overloaded) 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   173
  -- {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   174
  \begin{minipage}{0.9\textwidth}
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   175
  This meaning of @{text "wq"} is reflected in the following definition of @{text "holding wq th cs"},
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   176
  where @{text "holding wq th cs"} means thread @{text "th"} is holding the critical 
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   177
  resource @{text "cs"}. This decision is based on @{text "wq"}.
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   178
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   179
  *}
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   180
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   181
  cs_holding_def: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   182
  "holding wq thread cs \<equiv> (thread \<in> set (wq cs) \<and> thread = hd (wq cs))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   183
  -- {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   184
  \begin{minipage}{0.9\textwidth}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   185
  In accordance with the definition of @{text "holding wq th cs"}, 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   186
  a thread @{text "th"} is considered waiting for @{text "cs"} if 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   187
  it is in the {\em waiting queue} of critical resource @{text "cs"}, but not at the head.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   188
  This is reflected in the definition of @{text "waiting wq th cs"} as follows:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   189
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   190
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   191
  cs_waiting_def: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   192
  "waiting wq thread cs \<equiv> (thread \<in> set (wq cs) \<and> thread \<noteq> hd (wq cs))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   193
  -- {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   194
  \begin{minipage}{0.9\textwidth}
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   195
  @{text "RAG wq"} generates RAG (a binary relations on @{text "node"})
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   196
  out of waiting queues of the system (represented by the @{text "wq"} argument):
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   197
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   198
  *}
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
   199
  cs_RAG_def: 
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
   200
  "RAG (wq::cs \<Rightarrow> thread list) \<equiv>
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   201
      {(Th th, Cs cs) | th cs. waiting wq th cs} \<union> {(Cs cs, Th th) | cs th. holding wq th cs}"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   202
  -- {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   203
  \begin{minipage}{0.9\textwidth}
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
   204
  The following @{text "dependants wq th"} represents the set of threads which are RAGing on
48
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   205
  thread @{text "th"} in Resource Allocation Graph @{text "RAG wq"}. 
c0f14399c12f Some changes in the PrioGDef.thy.
xingyuan zhang <xingyuanzhang@126.com>
parents: 35
diff changeset
   206
  Here, "RAGing" means waiting directly or indirectly on the critical resource. 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   207
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   208
  *}
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   209
  cs_dependants_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
   210
  "dependants (wq::cs \<Rightarrow> thread list) th \<equiv> {th' . (Th th', Th th) \<in> (RAG wq)^+}"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   211
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   212
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   213
text {* \noindent 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   214
  The following
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   215
  @{text "cpreced s th"} gives the {\em current precedence} of thread @{text "th"} under
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   216
  state @{text "s"}. The definition of @{text "cpreced"} reflects the basic idea of 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   217
  Priority Inheritance that the {\em current precedence} of a thread is the precedence 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   218
  inherited from the maximum of all its dependants, i.e. the threads which are waiting 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   219
  directly or indirectly waiting for some resources from it. If no such thread exits, 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   220
  @{text "th"}'s {\em current precedence} equals its original precedence, i.e. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   221
  @{text "preced th s"}.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   222
  *}
33
9b9f2117561f simplified the cp_rec proof
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 32
diff changeset
   223
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   224
definition cpreced :: "(cs \<Rightarrow> thread list) \<Rightarrow> state \<Rightarrow> thread \<Rightarrow> precedence"
33
9b9f2117561f simplified the cp_rec proof
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 32
diff changeset
   225
  where "cpreced wq s = (\<lambda>th. Max ((\<lambda>th'. preced th' s) ` ({th} \<union> dependants wq th)))"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   226
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   227
text {*
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   228
  Notice that the current precedence (@{text "cpreced"}) of one thread @{text "th"} can be boosted 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   229
  (becoming larger than its own precedence) by those threads in 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   230
  the @{text "dependants wq th"}-set. If one thread get boosted, we say 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   231
  it inherits the priority (or, more precisely, the precedence) of 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   232
  its dependants. This is how the word "Inheritance" in 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   233
  Priority Inheritance Protocol comes.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   234
*}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   235
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   236
(*<*)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   237
lemma 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   238
  cpreced_def2:
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   239
  "cpreced wq s th \<equiv> Max ({preced th s} \<union> {preced th' s | th'. th' \<in> dependants wq th})"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   240
  unfolding cpreced_def image_def
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   241
  apply(rule eq_reflection)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   242
  apply(rule_tac f="Max" in arg_cong)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   243
  by (auto)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   244
(*>*)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   245
49
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   246
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   247
text {* \noindent
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   248
  Assuming @{text "qs"} be the waiting queue of a critical resource, 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   249
  the following abbreviation "release qs" is the waiting queue after the thread 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   250
  holding the resource (which is thread at the head of @{text "qs"}) released
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   251
  the resource:
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   252
*}
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   253
abbreviation
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   254
  "release qs \<equiv> case qs of
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   255
             [] => [] 
49
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   256
          |  (_#qs') => (SOME q. distinct q \<and> set q = set qs')"
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   257
text {* \noindent
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   258
  It can be seen from the definition that the thread at the head of @{text "qs"} is removed
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   259
  from the return value, and the value @{term "q"} is an reordering of @{text "qs'"}, the 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   260
  tail of @{text "qs"}. Through this reordering, one of the waiting threads (those in @{text "qs'"} }
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   261
  is chosen nondeterministically to be the head of the new queue @{text "q"}. 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   262
  Therefore, this thread is the one who takes over the resource. This is a little better different 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   263
  from common sense that the thread who comes the earliest should take over.  
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   264
  The intention of this definition is to show that the choice of which thread to take over the 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   265
  release resource does not affect the correctness of the PIP protocol. 
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   266
*}
8679d75b1d76 A little more change.
xingyuan zhang <xingyuanzhang@126.com>
parents: 48
diff changeset
   267
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   268
text {*
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   269
  The data structure used by the operating system for scheduling is referred to as 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   270
  {\em schedule state}. It is represented as a record consisting of 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   271
  a function assigning waiting queue to resources 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   272
  (to be used as the @{text "wq"} argument in @{text "holding"}, @{text "waiting"} 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   273
  and  @{text "RAG"}, etc) and a function assigning precedence to threads:
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   274
  *}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   275
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   276
record schedule_state = 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   277
    wq_fun :: "cs \<Rightarrow> thread list" -- {* The function assigning waiting queue. *}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   278
    cprec_fun :: "thread \<Rightarrow> precedence" -- {* The function assigning precedence. *}
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   279
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   280
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   281
  The following two abbreviations (@{text "all_unlocked"} and @{text "initial_cprec"}) 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   282
  are used to set the initial values of the @{text "wq_fun"} @{text "cprec_fun"} fields 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   283
  respectively of the @{text "schedule_state"} record by the following function @{text "sch"},
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   284
  which is used to calculate the system's {\em schedule state}.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   285
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   286
  Since there is no thread at the very beginning to make request, all critical resources 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   287
  are free (or unlocked). This status is represented by the abbreviation
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   288
  @{text "all_unlocked"}. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   289
  *}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   290
abbreviation
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   291
  "all_unlocked \<equiv> \<lambda>_::cs. ([]::thread list)"
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   292
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   293
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   294
text {* \noindent
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   295
  The initial current precedence for a thread can be anything, because there is no thread then. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   296
  We simply assume every thread has precedence @{text "Prc 0 0"}.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   297
  *}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   298
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   299
abbreviation 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   300
  "initial_cprec \<equiv> \<lambda>_::thread. Prc 0 0"
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   301
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   302
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   303
text {* \noindent
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   304
  The following function @{text "schs"} is used to calculate the system's schedule state @{text "schs s"}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   305
  out of the current system state @{text "s"}. It is the central function to model Priority Inheritance:
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   306
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   307
fun schs :: "state \<Rightarrow> schedule_state"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   308
  where 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   309
  -- {*
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   310
  \begin{minipage}{0.9\textwidth}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   311
    Setting the initial value of the @{text "schedule_state"} record (see the explanations above).
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   312
  \end{minipage}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   313
  *}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   314
  "schs [] = (| wq_fun = all_unlocked,  cprec_fun = initial_cprec |)" |
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   315
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   316
  -- {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   317
  \begin{minipage}{0.9\textwidth}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   318
  \begin{enumerate}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   319
  \item @{text "ps"} is the schedule state of last moment.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   320
  \item @{text "pwq"} is the waiting queue function of last moment.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   321
  \item @{text "pcp"} is the precedence function of last moment (NOT USED). 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   322
  \item @{text "nwq"} is the new waiting queue function. It is calculated using a @{text "case"} statement:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   323
  \begin{enumerate}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   324
      \item If the happening event is @{text "P thread cs"}, @{text "thread"} is added to 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   325
            the end of @{text "cs"}'s waiting queue.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   326
      \item If the happening event is @{text "V thread cs"} and @{text "s"} is a legal state,
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   327
            @{text "th'"} must equal to @{text "thread"}, 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   328
            because @{text "thread"} is the one currently holding @{text "cs"}. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   329
            The case @{text "[] \<Longrightarrow> []"} may never be executed in a legal state.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   330
            the @{text "(SOME q. distinct q \<and> set q = set qs)"} is used to choose arbitrarily one 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   331
            thread in waiting to take over the released resource @{text "cs"}. In our representation,
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   332
            this amounts to rearrange elements in waiting queue, so that one of them is put at the head.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   333
      \item For other happening event, the schedule state just does not change.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   334
  \end{enumerate}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   335
  \item @{text "ncp"} is new precedence function, it is calculated from the newly updated waiting queue 
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
   336
        function. The RAGency of precedence function on waiting queue function is the reason to 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   337
        put them in the same record so that they can evolve together.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   338
  \end{enumerate}
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   339
  
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   340
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   341
  The calculation of @{text "cprec_fun"} depends on the value of @{text "wq_fun"}. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   342
  Therefore, in the following cases, @{text "wq_fun"} is always calculated first, in 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   343
  the name of @{text "wq"} (if  @{text "wq_fun"} is not changed
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   344
  by the happening event) or @{text "new_wq"} (if the value of @{text "wq_fun"} is changed).
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   345
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   346
     *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   347
   "schs (Create th prio # s) = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   348
       (let wq = wq_fun (schs s) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   349
          (|wq_fun = wq, cprec_fun = cpreced wq (Create th prio # s)|))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   350
|  "schs (Exit th # s) = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   351
       (let wq = wq_fun (schs s) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   352
          (|wq_fun = wq, cprec_fun = cpreced wq (Exit th # s)|))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   353
|  "schs (Set th prio # s) = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   354
       (let wq = wq_fun (schs s) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   355
          (|wq_fun = wq, cprec_fun = cpreced wq (Set th prio # s)|))"
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   356
   -- {*
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   357
   \begin{minipage}{0.9\textwidth}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   358
      Different from the forth coming cases, the @{text "wq_fun"} field of the schedule state 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   359
      is changed. So, the new value is calculated first, in the name of @{text "new_wq"}.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   360
   \end{minipage}   
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   361
   *}
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   362
|  "schs (P th cs # s) = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   363
       (let wq = wq_fun (schs s) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   364
        let new_wq = wq(cs := (wq cs @ [th])) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   365
          (|wq_fun = new_wq, cprec_fun = cpreced new_wq (P th cs # s)|))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   366
|  "schs (V th cs # s) = 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   367
       (let wq = wq_fun (schs s) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   368
        let new_wq = wq(cs := release (wq cs)) in
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   369
          (|wq_fun = new_wq, cprec_fun = cpreced new_wq (V th cs # s)|))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   370
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   371
lemma cpreced_initial: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   372
  "cpreced (\<lambda> cs. []) [] = (\<lambda>_. (Prc 0 0))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   373
apply(simp add: cpreced_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
   374
apply(simp add: cs_dependants_def cs_RAG_def cs_waiting_def cs_holding_def)
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   375
apply(simp add: preced_def)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   376
done
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   377
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   378
lemma sch_old_def:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   379
  "schs (e#s) = (let ps = schs s in 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   380
                  let pwq = wq_fun ps in 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   381
                  let nwq = case e of
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   382
                             P th cs \<Rightarrow>  pwq(cs:=(pwq cs @ [th])) |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   383
                             V th cs \<Rightarrow> let nq = case (pwq cs) of
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   384
                                                      [] \<Rightarrow> [] | 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   385
                                                      (_#qs) \<Rightarrow> (SOME q. distinct q \<and> set q = set qs)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   386
                                            in pwq(cs:=nq)                 |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   387
                              _ \<Rightarrow> pwq
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   388
                  in let ncp = cpreced nwq (e#s) in 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   389
                     \<lparr>wq_fun = nwq, cprec_fun = ncp\<rparr>
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   390
                 )"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   391
apply(cases e)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   392
apply(simp_all)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   393
done
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   394
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   395
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   396
text {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   397
  \noindent
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   398
  The following @{text "wq"} is a shorthand for @{text "wq_fun"}. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   399
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   400
definition wq :: "state \<Rightarrow> cs \<Rightarrow> thread list" 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   401
  where "wq s = wq_fun (schs s)"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   402
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   403
text {* \noindent 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   404
  The following @{text "cp"} is a shorthand for @{text "cprec_fun"}. 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   405
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   406
definition cp :: "state \<Rightarrow> thread \<Rightarrow> precedence"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   407
  where "cp s \<equiv> cprec_fun (schs s)"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   408
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   409
text {* \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
   410
  Functions @{text "holding"}, @{text "waiting"}, @{text "RAG"} and 
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   411
  @{text "dependants"} still have the 
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
   412
  same meaning, but redefined so that they no longer RAG on the 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   413
  fictitious {\em waiting queue function}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   414
  @{text "wq"}, but on system state @{text "s"}.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   415
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   416
defs (overloaded) 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   417
  s_holding_abv: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   418
  "holding (s::state) \<equiv> holding (wq_fun (schs s))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   419
  s_waiting_abv: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   420
  "waiting (s::state) \<equiv> waiting (wq_fun (schs 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
   421
  s_RAG_abv: 
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
   422
  "RAG (s::state) \<equiv> RAG (wq_fun (schs s))"
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   423
  s_dependants_abv: 
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   424
  "dependants (s::state) \<equiv> dependants (wq_fun (schs s))"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   425
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   426
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   427
text {* 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   428
  The following lemma can be proved easily, and the meaning is obvious.
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   429
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   430
lemma
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   431
  s_holding_def: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   432
  "holding (s::state) th cs \<equiv> (th \<in> set (wq_fun (schs s) cs) \<and> th = hd (wq_fun (schs s) cs))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   433
  by (auto simp:s_holding_abv wq_def cs_holding_def)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   434
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   435
lemma s_waiting_def: 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   436
  "waiting (s::state) th cs \<equiv> (th \<in> set (wq_fun (schs s) cs) \<and> th \<noteq> hd (wq_fun (schs s) cs))"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   437
  by (auto simp:s_waiting_abv wq_def cs_waiting_def)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   438
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
   439
lemma s_RAG_def: 
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
  "RAG (s::state) =
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   441
    {(Th th, Cs cs) | th cs. waiting (wq s) th cs} \<union> {(Cs cs, Th th) | cs th. holding (wq s) th cs}"
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
  by (auto simp:s_RAG_abv wq_def cs_RAG_def)
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   443
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   444
lemma
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   445
  s_dependants_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
   446
  "dependants (s::state) th \<equiv> {th' . (Th th', Th th) \<in> (RAG (wq s))^+}"
32
e861aff29655 made some modifications.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents: 17
diff changeset
   447
  by (auto simp:s_dependants_abv wq_def cs_dependants_def)
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   448
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   449
text {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   450
  The following function @{text "readys"} calculates the set of ready threads. A thread is {\em ready} 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   451
  for running if it is a live thread and it is not waiting for any critical resource.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   452
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   453
definition readys :: "state \<Rightarrow> thread set"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   454
  where "readys s \<equiv> {th . th \<in> threads s \<and> (\<forall> cs. \<not> waiting s th cs)}"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   455
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   456
text {* \noindent
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   457
  The following function @{text "runing"} calculates the set of running thread, which is the ready 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   458
  thread with the highest precedence.  
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   459
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   460
definition runing :: "state \<Rightarrow> thread set"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   461
  where "runing s \<equiv> {th . th \<in> readys s \<and> cp s th = Max ((cp s) ` (readys s))}"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   462
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   463
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   464
  Notice that the definition of @{text "running"} reflects the preemptive scheduling strategy,  
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   465
  because, if the @{text "running"}-thread (the one in @{text "runing"} set) 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   466
  lowered its precedence by resetting its own priority to a lower
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   467
  one, it will lose its status of being the max in @{text "ready"}-set and be superseded.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   468
*}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   469
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   470
text {* \noindent
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   471
  The following function @{text "holdents s th"} returns the set of resources held by thread 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   472
  @{text "th"} in state @{text "s"}.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   473
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   474
definition holdents :: "state \<Rightarrow> thread \<Rightarrow> cs set"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   475
  where "holdents s th \<equiv> {cs . holding s th cs}"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   476
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   477
lemma holdents_test: 
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
   478
  "holdents s th = {cs . (Cs cs, Th th) \<in> RAG s}"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   479
unfolding holdents_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
   480
unfolding s_RAG_def
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   481
unfolding s_holding_abv
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   482
unfolding wq_def
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   483
by (simp)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   484
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   485
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   486
  According to the convention of Paulson's inductive method,
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   487
  the decision made by a protocol that event @{text "e"} is eligible to happen next under state @{text "s"} 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   488
  is expressed as @{text "step s e"}. The predicate @{text "step"} is inductively defined as 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   489
  follows (notice how the decision is based on the {\em observation function}s 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   490
  defined above, and also notice how a complicated protocol is modeled by a few simple 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   491
  observations, and how such a kind of simplicity gives rise to improved trust on
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   492
  faithfulness):
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   493
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   494
inductive step :: "state \<Rightarrow> event \<Rightarrow> bool"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   495
  where
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   496
  -- {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   497
  A thread can be created if it is not a live thread:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   498
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   499
  thread_create: "\<lbrakk>thread \<notin> threads s\<rbrakk> \<Longrightarrow> step s (Create thread prio)" |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   500
  -- {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   501
  A thread can exit if it no longer hold any resource:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   502
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   503
  thread_exit: "\<lbrakk>thread \<in> runing s; holdents s thread = {}\<rbrakk> \<Longrightarrow> step s (Exit thread)" |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   504
  -- {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   505
  \begin{minipage}{0.9\textwidth}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   506
  A thread can request for an critical resource @{text "cs"}, if it is running and 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   507
  the request does not form a loop in the current RAG. The latter condition 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   508
  is set up to avoid deadlock. The condition also reflects our assumption all threads are 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   509
  carefully programmed so that deadlock can not happen:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   510
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   511
  *}
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
   512
  thread_P: "\<lbrakk>thread \<in> runing s;  (Cs cs, Th thread)  \<notin> (RAG s)^+\<rbrakk> \<Longrightarrow> 
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   513
                                                                step s (P thread cs)" |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   514
  -- {*
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   515
  \begin{minipage}{0.9\textwidth}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   516
  A thread can release a critical resource @{text "cs"} 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   517
  if it is running and holding that resource:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   518
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   519
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   520
  thread_V: "\<lbrakk>thread \<in> runing s;  holding s thread cs\<rbrakk> \<Longrightarrow> step s (V thread cs)" |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   521
  -- {*
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   522
  \begin{minipage}{0.9\textwidth}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   523
  A thread can adjust its own priority as long as it is current running. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   524
  With the resetting of one thread's priority, its precedence may change. 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   525
  If this change lowered the precedence, according to the definition of @{text "running"}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   526
  function, 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   527
  \end{minipage}
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   528
  *}  
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   529
  thread_set: "\<lbrakk>thread \<in> runing s\<rbrakk> \<Longrightarrow> step s (Set thread prio)"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   530
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   531
text {*
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   532
  In Paulson's inductive method, every protocol is defined by such a @{text "step"}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   533
  predicate. For instance, the predicate @{text "step"} given above 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   534
  defines the PIP protocol. So, it can also be called "PIP".
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   535
*}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   536
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   537
abbreviation
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   538
  "PIP \<equiv> step"
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   539
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   540
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   541
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   542
  For any protocol defined by a @{text "step"} predicate, 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   543
  the fact that @{text "s"} is a legal state in 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   544
  the protocol is expressed as: @{text "vt step s"}, where
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   545
  the predicate @{text "vt"} can be defined as the following:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   546
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   547
inductive vt :: "state \<Rightarrow> bool"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   548
  where
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   549
  -- {* Empty list @{text "[]"} is a legal state in any protocol:*}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   550
  vt_nil[intro]: "vt []" |
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   551
  -- {* 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   552
  \begin{minipage}{0.9\textwidth}
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   553
  If @{text "s"} a legal state of the protocol defined by predicate @{text "step"}, 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   554
  and event @{text "e"} is allowed to happen under state @{text "s"} by the protocol 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   555
  predicate @{text "step"}, then @{text "e#s"} is a new legal state rendered by the 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   556
  happening of @{text "e"}:
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   557
  \end{minipage}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   558
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   559
  vt_cons[intro]: "\<lbrakk>vt s; step s e\<rbrakk> \<Longrightarrow> vt (e#s)"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   560
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   561
text {*  \noindent
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   562
  It is easy to see that the definition of @{text "vt"} is generic. It can be applied to 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   563
  any specific protocol specified by a @{text "step"}-predicate to get the set of
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   564
  legal states of that particular protocol.
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   565
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   566
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   567
text {* 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   568
  The following are two very basic properties of @{text "vt"}.
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   569
*}
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   570
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   571
lemma step_back_vt: "vt (e#s) \<Longrightarrow> vt s"
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   572
  by(ind_cases "vt (e#s)", simp)
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   573
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   574
lemma step_back_step: "vt (e#s) \<Longrightarrow> step s e"
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   575
  by(ind_cases "vt (e#s)", simp)
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   576
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   577
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   578
  The following two auxiliary functions @{text "the_cs"} and @{text "the_th"} are used to extract
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   579
  critical resource and thread respectively out of RAG nodes.
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   580
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   581
fun the_cs :: "node \<Rightarrow> cs"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   582
  where "the_cs (Cs cs) = cs"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   583
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   584
fun the_th :: "node \<Rightarrow> thread"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   585
  where "the_th (Th th) = th"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   586
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   587
text {* \noindent
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   588
  The following predicate @{text "next_th"} describe the next thread to 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   589
  take over when a critical resource is released. In @{text "next_th s th cs t"}, 
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   590
  @{text "th"} is the thread to release, @{text "t"} is the one to take over.
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   591
  Notice how this definition is backed up by the @{text "release"} function and its use 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   592
  in the @{text "V"}-branch of @{text "schs"} function. This @{text "next_th"} function
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   593
  is not needed for the execution of PIP. It is introduced as an auxiliary function 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   594
  to state lemmas. The correctness of this definition will be confirmed by 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   595
  lemmas @{text "step_v_hold_inv"}, @{text " step_v_wait_inv"}, 
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   596
  @{text "step_v_get_hold"} and @{text "step_v_not_wait"}.
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   597
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   598
definition next_th:: "state \<Rightarrow> thread \<Rightarrow> cs \<Rightarrow> thread \<Rightarrow> bool"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   599
  where "next_th s th cs t = (\<exists> rest. wq s cs = th#rest \<and> rest \<noteq> [] \<and> 
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   600
                                     t = hd (SOME q. distinct q \<and> set q = set rest))"
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   601
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   602
text {* \noindent
53
8142e80f5d58 Finished comments on PrioGDef.thy
xingyuan zhang <xingyuanzhang@126.com>
parents: 49
diff changeset
   603
  The aux function @{text "count Q l"} is used to count the occurrence of situation @{text "Q"}
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   604
  in list @{text "l"}:
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   605
  *}
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   606
definition count :: "('a \<Rightarrow> bool) \<Rightarrow> 'a list \<Rightarrow> nat"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   607
  where "count Q l = length (filter Q l)"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   608
115
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   609
text {*
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   610
  The operation @{term P} is used by a thread to request for resources, while
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   611
  @{term V} is used to release. Therefore, the number of resources
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   612
  held by a thread roughly equals to the number of @{term P} it made minus 
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   613
  the number of @{term V}. The equality is rough because the @{term P}-operation
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   614
  might be blocked and fail to give back the holding of the requested resource.
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   615
  In the following, @{text "cntP"} and @{text "cntV"} are the number of @{term P}
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   616
  and @{term "V"} respectively, while @{term cntCS} is the number 
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   617
  resources held by a thread and @{text "pvD"} is introduced to account for 
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   618
  the above mentioned situation when @{term P} is blocked, so that 
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   619
  a equation between @{text cntP}, @{text "cntV"}, @{text "cntCS"} can be established
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   620
  (in the lemma named @{text "valid_trace.cnp_cnv_cncs"}).
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   621
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   622
  Such a equation, once established, is very handy, because the number of resources 
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   623
  held by a thread can be calculated by counting the number of @{term P} and @{text V},
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   624
  which is relatively easy.
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   625
*}
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   626
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   627
definition cntP :: "state \<Rightarrow> thread \<Rightarrow> nat"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   628
  where "cntP s th = count (\<lambda> e. \<exists> cs. e = P th cs) s"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   629
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   630
definition cntV :: "state \<Rightarrow> thread \<Rightarrow> nat"
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   631
  where "cntV s th = count (\<lambda> e. \<exists> cs. e = V th cs) s"
65
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   632
115
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   633
definition cntCS :: "state \<Rightarrow> thread \<Rightarrow> nat"
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   634
  where "cntCS s th = card (holdents s th)"
74fc1eae4605 Commenting of PIPBasics.thy almost completed. The last section needs to be distributed to Correctness.thy and Implementation.thy
zhangx
parents: 104
diff changeset
   635
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 67
diff changeset
   636
definition "pvD s th = (if (th \<in> readys s \<or> th \<notin> threads s) then 0 else (1::nat))"
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 67
diff changeset
   637
65
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   638
text {* @{text "the_preced"} is also the same as @{text "preced"}, the only
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   639
       difference is the order of arguemts. *}
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   640
definition "the_preced s th = preced th s"
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   641
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   642
text {* @{term "the_thread"} extracts thread out of RAG node. *}
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   643
fun the_thread :: "node \<Rightarrow> thread" where
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   644
   "the_thread (Th th) = th"
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   645
80
17305a85493d CpsG.thy retrofiting almost completed. An important mile stone.
zhangx
parents: 67
diff changeset
   646
65
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   647
text {* The following @{text "wRAG"} is the waiting sub-graph of @{text "RAG"}. *}
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   648
definition "wRAG (s::state) = {(Th th, Cs cs) | th cs. waiting s th cs}"
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   649
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   650
text {* The following @{text "hRAG"} is the holding sub-graph of @{text "RAG"}. *}
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   651
definition "hRAG (s::state) =  {(Cs cs, Th th) | th cs. holding s th cs}"
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   652
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   653
text {* 
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   654
  The following @{text "tRAG"} is the thread-graph derived from @{term "RAG"}.
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   655
  It characterizes the dependency between threads when calculating current
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   656
  precedences. It is defined as the composition of the above two sub-graphs, 
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   657
  names @{term "wRAG"} and @{term "hRAG"}.
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   658
 *}
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   659
definition "tRAG s = wRAG s O hRAG s"
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   660
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   661
text {* The following lemma splits @{term "RAG"} graph into the above two sub-graphs. *}
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   662
lemma RAG_split: "RAG s = (wRAG s \<union> hRAG s)"
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   663
  by (unfold s_RAG_abv wRAG_def hRAG_def s_waiting_abv 
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   664
             s_holding_abv cs_RAG_def, auto)
633b1fc8631b Reorganization completed, added "scripts_structure.pdf" and "scirpts_structure.pptx".
zhangx
parents: 64
diff changeset
   665
100
3d2b59f15f26 Reorganizing PIPBasics.thy
zhangx
parents: 80
diff changeset
   666
lemma tRAG_alt_def: 
3d2b59f15f26 Reorganizing PIPBasics.thy
zhangx
parents: 80
diff changeset
   667
  "tRAG s = {(Th th1, Th th2) | th1 th2. 
3d2b59f15f26 Reorganizing PIPBasics.thy
zhangx
parents: 80
diff changeset
   668
                  \<exists> cs. (Th th1, Cs cs) \<in> RAG s \<and> (Cs cs, Th th2) \<in> RAG s}"
3d2b59f15f26 Reorganizing PIPBasics.thy
zhangx
parents: 80
diff changeset
   669
 by (auto simp:tRAG_def RAG_split wRAG_def hRAG_def)
3d2b59f15f26 Reorganizing PIPBasics.thy
zhangx
parents: 80
diff changeset
   670
0
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   671
(*<*)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   672
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   673
end
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   674
(*>*)
Christian Urban <christian dot urban at kcl dot ac dot uk>
parents:
diff changeset
   675