Theory JMM_Type

(*  Title:      JinjaThreads/MM/JMM_Type.thy
    Author:     Andreas Lochbihler
*)

section ‹JMM heap implementation 1›

theory JMM_Type
imports 
  "../Common/ExternalCallWF"
  "../Common/ConformThreaded"
  JMM_Heap
begin

subsection ‹Definitions›

text ‹
  The JMM heap only stores type information.
›

type_synonym 'addr JMM_heap = "'addr  htype"

translations (type) "'addr JMM_heap" <= (type) "'addr  htype option"

abbreviation jmm_empty :: "'addr JMM_heap" where "jmm_empty == Map.empty"

definition jmm_allocate :: "'addr JMM_heap  htype  ('addr JMM_heap × 'addr) set"
where "jmm_allocate h hT = (λa. (h(a  hT), a)) ` {a. h a = None}"

definition jmm_typeof_addr :: "'addr JMM_heap  'addr  htype"
where "jmm_typeof_addr h = h"

definition jmm_heap_read :: "'addr JMM_heap  'addr  addr_loc  'addr val  bool"
where "jmm_heap_read h a ad v = True"

context
  notes [[inductive_internals]]
begin

inductive jmm_heap_write :: "'addr JMM_heap  'addr  addr_loc  'addr val  'addr JMM_heap  bool"
where "jmm_heap_write h a ad v h"

end

definition jmm_hconf :: "'m prog  'addr JMM_heap  bool" ("_ ⊢jmm _ " [51,51] 50)
where "P ⊢jmm h   ty_of_htype ` ran h  {T. is_type P T}"

definition jmm_allocated :: "'addr JMM_heap  'addr set"
where "jmm_allocated h = dom (jmm_typeof_addr h)"

definition jmm_spurious_wakeups :: bool
where "jmm_spurious_wakeups = True"

lemmas jmm_heap_ops_defs =
  jmm_allocate_def jmm_typeof_addr_def 
  jmm_heap_read_def jmm_heap_write_def
  jmm_allocated_def jmm_spurious_wakeups_def

type_synonym 'addr thread_id = "'addr"

abbreviation (input) addr2thread_id :: "'addr  'addr thread_id"
where "addr2thread_id  λx. x"

abbreviation (input) thread_id2addr :: "'addr thread_id  'addr"
where "thread_id2addr  λx. x"

interpretation jmm: heap_base
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write 
.

notation jmm.hext  ("_ ⊴jmm _" [51,51] 50)
notation jmm.conf ("_,_ ⊢jmm _ :≤ _"  [51,51,51,51] 50)
notation jmm.addr_loc_type ("_,_ ⊢jmm _@_ : _" [50, 50, 50, 50, 50] 51)
notation jmm.confs ("_,_ ⊢jmm _ [:≤] _"  [51,51,51,51] 50)
notation jmm.tconf ("_,_ ⊢jmm _ √t" [51,51,51] 50)

text ‹Now a variation of the JMM with a different read operation that permits to read only type-conformant values›

interpretation jmm': heap_base
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write
  for P .

notation jmm'.hext ("_ ⊴jmm'' _" [51,51] 50)
notation jmm'.conf ("_,_ ⊢jmm'' _ :≤ _"  [51,51,51,51] 50)
notation jmm'.addr_loc_type ("_,_ ⊢jmm'' _@_ : _" [50, 50, 50, 50, 50] 51)
notation jmm'.confs ("_,_ ⊢jmm'' _ [:≤] _"  [51,51,51,51] 50)
notation jmm'.tconf ("_,_ ⊢jmm'' _ √t" [51,51,51] 50)

subsection ‹Heap locale interpretations›

subsection ‹Locale heap›

lemma jmm_heap: "heap addr2thread_id thread_id2addr jmm_allocate jmm_typeof_addr jmm_heap_write P"
proof
  fix h' a h hT
  assume "(h', a)  jmm_allocate h hT"
  thus "jmm_typeof_addr h' a = hT"
    by(auto simp add: jmm_heap_ops_defs)
next
  fix h' :: "('addr :: addr) JMM_heap" and h hT a
  assume "(h', a)  jmm_allocate h hT"
  thus "h ⊴jmm h'"
    by(fastforce simp add: jmm_heap_ops_defs intro: jmm.hextI)
next
  fix h a al v and h' :: "('addr :: addr) JMM_heap"
  assume "jmm_heap_write h a al v h'"
  thus "h ⊴jmm h'" by cases auto
qed simp

interpretation jmm: heap
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write
  P
  for P
by(rule jmm_heap)

declare jmm.typeof_addr_thread_id2_addr_addr2thread_id [simp del]

lemmas jmm'_heap = jmm_heap

interpretation jmm': heap
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write
  P
  for P
by(rule jmm'_heap)

declare jmm'.typeof_addr_thread_id2_addr_addr2thread_id [simp del]

subsection ‹Locale heap_conf›

interpretation jmm: heap_conf_base
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write "jmm_hconf P"
  P
  for P .

abbreviation (input) jmm'_hconf :: "'m prog  'addr JMM_heap  bool" ("_ ⊢jmm'' _ " [51,51] 50)
where "jmm'_hconf == jmm_hconf"

interpretation jmm': heap_conf_base
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write "jmm'_hconf P"
  P
  for P .

abbreviation jmm_heap_read_typeable :: "('addr :: addr) itself  'm prog  bool"
where "jmm_heap_read_typeable tytok P  jmm.heap_read_typeable (jmm_hconf P :: 'addr JMM_heap  bool) P"

abbreviation jmm'_heap_read_typeable :: "('addr :: addr) itself  'm prog  bool"
where "jmm'_heap_read_typeable tytok P  jmm'.heap_read_typeable TYPE('m) P (jmm_hconf P :: 'addr JMM_heap  bool) P"

lemma jmm_heap_read_typeable: "jmm_heap_read_typeable tytok P"
by(rule jmm.heap_read_typeableI)(simp add: jmm_heap_read_def)

lemma jmm'_heap_read_typeable: "jmm'_heap_read_typeable tytok P"
by(rule jmm'.heap_read_typeableI)(auto simp add: jmm.heap_read_typed_def jmm_heap_read_def dest: jmm'.addr_loc_type_fun)

lemma jmm_heap_conf:
  "heap_conf addr2thread_id thread_id2addr jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_write (jmm_hconf P) P"
proof
  show "P ⊢jmm jmm_empty "
    by(simp add: jmm_hconf_def)
next
  fix h a hT
  assume "jmm_typeof_addr h a = hT" "P ⊢jmm h "
  thus "is_htype P hT" by(auto simp add: jmm_hconf_def jmm_heap_ops_defs intro: ranI)
next
  fix h' h hT a
  assume "(h', a)  jmm_allocate h hT" "P ⊢jmm h " "is_htype P hT"
  thus "P ⊢jmm h' "
    by(fastforce simp add: jmm_hconf_def jmm_heap_ops_defs ran_def split: if_split_asm)
next
  fix h a al v h' T
  assume "jmm_heap_write h a al v h'" "P ⊢jmm h "
    and "jmm.addr_loc_type P h a al T" and "P,h ⊢jmm v :≤ T"
  thus "P ⊢jmm h' " by(cases) simp
qed

interpretation jmm: heap_conf
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write "jmm_hconf P"
  P
  for P
by(rule jmm_heap_conf)

lemmas jmm'_heap_conf = jmm_heap_conf

interpretation jmm': heap_conf
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write "jmm'_hconf P"
  P
  for P
by(rule jmm'_heap_conf)

subsection ‹Locale heap_progress›

lemma jmm_heap_progress:
  "heap_progress addr2thread_id thread_id2addr jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write (jmm_hconf P) P"
proof
  fix h a al T
  assume "P ⊢jmm h "
    and al: "jmm.addr_loc_type P h a al T"
  show "v. jmm_heap_read h a al v  P,h ⊢jmm v :≤ T"
    using jmm.defval_conf[of P h T] unfolding jmm_heap_ops_defs by blast
next
  fix h a al T v
  assume "jmm.addr_loc_type P h a al T"
  show "h'. jmm_heap_write h a al v h'"
    by(auto intro: jmm_heap_write.intros)
qed

interpretation jmm: heap_progress
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write "jmm_hconf P"
  P
  for P
by(rule jmm_heap_progress)

lemma jmm'_heap_progress:
  "heap_progress addr2thread_id thread_id2addr jmm_empty jmm_allocate jmm_typeof_addr (jmm.heap_read_typed P) jmm_heap_write (jmm'_hconf P) P"
proof
  fix h a al T
  assume "P ⊢jmm' h "
    and al: "jmm'.addr_loc_type P h a al T"
  thus "v. jmm.heap_read_typed P h a al v  P,h ⊢jmm' v :≤ T"
    unfolding jmm.heap_read_typed_def jmm_heap_read_def
    by(auto dest: jmm'.addr_loc_type_fun intro: jmm'.defval_conf)
next
  fix h a al T v
  assume "jmm'.addr_loc_type P h a al T"
    and "P,h ⊢jmm' v :≤ T"
  thus "h'. jmm_heap_write h a al v h'"
    by(auto intro: jmm_heap_write.intros)
qed

interpretation jmm': heap_progress
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write "jmm'_hconf P"
  P
  for P
by(rule jmm'_heap_progress)

subsection ‹Locale heap_conf_read›

lemma jmm'_heap_conf_read:
  "heap_conf_read addr2thread_id thread_id2addr jmm_empty jmm_allocate jmm_typeof_addr (jmm.heap_read_typed P) jmm_heap_write (jmm'_hconf P) P"
by(rule jmm.heap_conf_read_heap_read_typed)

interpretation jmm': heap_conf_read
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write "jmm'_hconf P"
  P
  for P
by(rule jmm'_heap_conf_read)

interpretation jmm': heap_typesafe
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write "jmm'_hconf P"
  P
  for P
..

subsection ‹Locale allocated_heap›

lemma jmm_allocated_heap: 
  "allocated_heap addr2thread_id thread_id2addr jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_write jmm_allocated P"
proof
  show "jmm_allocated jmm_empty = {}" by(auto simp add: jmm_heap_ops_defs)
next
  fix h' a h hT
  assume "(h', a)  jmm_allocate h hT"
  thus "jmm_allocated h' = insert a (jmm_allocated h)  a  jmm_allocated h"
    by(auto simp add: jmm_heap_ops_defs split: if_split_asm)
next
  fix h a al v h'
  assume "jmm_heap_write h a al v h'"
  thus "jmm_allocated h' = jmm_allocated h" by cases simp
qed

interpretation jmm: allocated_heap
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr jmm_heap_read jmm_heap_write
  jmm_allocated
  P
  for P
by(rule jmm_allocated_heap)

lemmas jmm'_allocated_heap = jmm_allocated_heap

interpretation jmm': allocated_heap
  addr2thread_id thread_id2addr
  jmm_spurious_wakeups
  jmm_empty jmm_allocate jmm_typeof_addr "jmm.heap_read_typed P" jmm_heap_write
  jmm_allocated
  P
  for P
by(rule jmm'_allocated_heap)

subsection ‹Syntax translations›

notation jmm'.external_WT' ("_,_ ⊢jmm'' (__'(_')) : _" [50,0,0,0,50] 60)

abbreviation jmm'_red_external :: 
  "'m prog  'addr thread_id  'addr JMM_heap  'addr  mname  'addr val list
   ('addr :: addr, 'addr thread_id, 'addr JMM_heap) external_thread_action 
   'addr extCallRet  'addr JMM_heap  bool"
where "jmm'_red_external P  jmm'.red_external (TYPE('m)) P P"

abbreviation jmm'_red_external_syntax :: 
  "'m prog  'addr thread_id  'addr  mname  'addr val list  'addr JMM_heap
   ('addr :: addr, 'addr thread_id, 'addr JMM_heap) external_thread_action 
   'addr extCallRet  'addr JMM_heap  bool"
  ("_,_ ⊢jmm'' ((__'(_')),/_) -_→ext ((_),/(_))" [50, 0, 0, 0, 0, 0, 0, 0, 0] 51)
where
  "P,t ⊢jmm' aM(vs), h -ta→ext va, h'  jmm'_red_external P t h a M vs ta va h'"

abbreviation jmm'_red_external_aggr :: 
  "'m prog  'addr thread_id  'addr  mname  'addr val list  'addr JMM_heap 
     (('addr :: addr, 'addr thread_id, 'addr JMM_heap) external_thread_action × 'addr extCallRet × 'addr JMM_heap) set"
where "jmm'_red_external_aggr P  jmm'.red_external_aggr TYPE('m) P P"

abbreviation jmm'_heap_copy_loc :: 
  "'m prog  'addr  'addr  addr_loc  'addr JMM_heap
   ('addr :: addr, 'addr thread_id) obs_event list  'addr JMM_heap  bool"
where "jmm'_heap_copy_loc  jmm'.heap_copy_loc TYPE('m)"

abbreviation jmm'_heap_copies :: 
  "'m prog  'addr  'addr  addr_loc list  'addr JMM_heap
   ('addr :: addr, 'addr thread_id) obs_event list  'addr JMM_heap  bool"
where "jmm'_heap_copies  jmm'.heap_copies TYPE('m)"

abbreviation jmm'_heap_clone ::
  "'m prog  'addr JMM_heap  'addr  'addr JMM_heap
   (('addr :: addr, 'addr thread_id) obs_event list × 'addr) option  bool"
where "jmm'_heap_clone P  jmm'.heap_clone TYPE('m) P P"

end