forked from CakeML/cakeml
-
Notifications
You must be signed in to change notification settings - Fork 0
/
panLangScript.sml
201 lines (165 loc) · 4.63 KB
/
panLangScript.sml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
(*
Abstract syntax for Pancake language.
Pancake is an imperative language with
instructions for conditionals, While loop,
memory load and store, functions,
and foreign function calls.
*)
open preamble
mlstringTheory
asmTheory (* for binop and cmp *)
backend_commonTheory; (* for overloading the shift operation *)
val _ = new_theory "panLang";
Type shift = ``:ast$shift``
Type sname = ``:mlstring``
Type varname = ``:mlstring``
Type funname = ``:mlstring``
Type eid = ``:mlstring``
Type decname = ``:mlstring``
Type index = ``:num``
Datatype:
shape = One
| Comb (shape list)
End
Datatype:
panop = (* Div | *)Mul (* | Mod*)
End
Datatype:
exp = Const ('a word)
| Var varname
| Label funname
(* | GetAddr decname *)
| Struct (exp list)
| Field index exp
| Load shape exp (* exp: start addr of value with given shape *)
| LoadByte exp
| Op binop (exp list)
| Panop panop (exp list)
| Cmp cmp exp exp
| Shift shift exp num
| BaseAddr
End
Datatype:
prog = Skip
| Dec varname ('a exp) prog
| Assign varname ('a exp) (* dest, source *)
| Store ('a exp) ('a exp) (* dest, source *)
| StoreByte ('a exp) ('a exp) (* dest, source *)
| Seq prog prog
| If ('a exp) prog prog
| While ('a exp) prog
| Break
| Continue
| Call ((varname # ((eid # varname # prog) option)) option) ('a exp) (('a exp) list)
| ExtCall funname ('a exp) ('a exp) ('a exp) ('a exp)
(* FFI name, conf_ptr, conf_len, array_ptr, array_len *)
| Raise eid ('a exp)
| Return ('a exp)
| Tick;
End
(*
Datatype:
handler = Handle eid varname ('a prog)
End
Datatype:
ret = Tail | Ret varname ('a handler option)
End
*)
Overload TailCall = “Call NONE”
Overload RetCall = “\s h. Call (SOME (s , h))”
(*
Datatype:
decl = Decl decname string
| Func funname (shape option) shape ('a prog)
End
*)
Theorem MEM_IMP_shape_size:
!shapes a. MEM a shapes ==> (shape_size a < 1 + shape1_size shapes)
Proof
Induct >> fs [] >>
rpt strip_tac >> rw [fetch "-" "shape_size_def"] >>
res_tac >> decide_tac
QED
Definition size_of_shape_def:
size_of_shape One = 1 /\
size_of_shape (Comb shapes) = SUM (MAP size_of_shape shapes)
Termination
wf_rel_tac `measure shape_size` >>
fs [MEM_IMP_shape_size]
End
Theorem MEM_IMP_exp_size:
!xs a. MEM a xs ==> (exp_size l a < exp1_size l xs)
Proof
Induct \\ FULL_SIMP_TAC (srw_ss()) []
\\ REPEAT STRIP_TAC \\ SRW_TAC [] [definition"exp_size_def"]
\\ RES_TAC \\ DECIDE_TAC
QED
Definition nested_seq_def:
(nested_seq [] = Skip) /\
(nested_seq (e::es) = Seq e (nested_seq es))
End
Definition with_shape_def:
(with_shape [] _ = []) ∧
(with_shape (sh::shs) e =
TAKE (size_of_shape sh) e :: with_shape shs (DROP (size_of_shape sh) e))
End
Definition exp_ids_def:
(exp_ids Skip = ([]:mlstring list)) ∧
(exp_ids (Raise e _) = [e]) ∧
(exp_ids (Dec _ _ p) = exp_ids p) ∧
(exp_ids (Seq p q) = exp_ids p ++ exp_ids q) ∧
(exp_ids (If _ p q) = exp_ids p ++ exp_ids q) ∧
(exp_ids (While _ p) = exp_ids p) ∧
(exp_ids (Call (SOME (_ , (SOME (e , _ , ep)))) _ _) = e::exp_ids ep) ∧
(exp_ids _ = [])
End
(* defining here for insead of in pan_to_crep for pan_simpProof*)
Definition remove_dup:
(remove_dup [] = []) ∧
(remove_dup (x::xs) =
if MEM x xs then remove_dup xs
else x::remove_dup xs)
End
Definition size_of_eids_def:
size_of_eids prog =
let eids = FLAT (MAP (exp_ids o SND o SND) prog) in
LENGTH (remove_dup eids)
End
(*
for time_to_pancake compiler:
*)
(* optimise this function *)
Definition assigns_def:
(assigns [] n = Skip) ∧
(assigns (v::vs) n =
Seq (Assign v n) (assigns vs n))
End
Definition decs_def:
(decs [] p = p) /\
(decs ((v,e)::es) p =
Dec v e (decs es p))
End
Definition var_exp_def:
(var_exp (Const w) = ([]:mlstring list)) ∧
(var_exp (Var v) = [v]) ∧
(var_exp (Label f) = []) ∧
(var_exp (Struct es) = FLAT (MAP var_exp es)) ∧
(var_exp (Field i e) = var_exp e) ∧
(var_exp (Load sh e) = var_exp e) ∧
(var_exp (LoadByte e) = var_exp e) ∧
(var_exp (Op bop es) = FLAT (MAP var_exp es)) ∧
(var_exp (Panop op es) = FLAT (MAP var_exp es)) ∧
(var_exp (Cmp c e1 e2) = var_exp e1 ++ var_exp e2) ∧
(var_exp (Shift sh e num) = var_exp e)
Termination
wf_rel_tac `measure (\e. exp_size ARB e)` >>
rpt strip_tac >>
imp_res_tac MEM_IMP_exp_size >>
TRY (first_x_assum (assume_tac o Q.SPEC `ARB`)) >>
decide_tac
End
Definition destruct_def:
(destruct (Struct es) = es) /\
(destruct _ = [])
End
val _ = export_theory();