-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTestingSemantics.v
More file actions
341 lines (322 loc) · 11.6 KB
/
TestingSemantics.v
File metadata and controls
341 lines (322 loc) · 11.6 KB
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
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
From Stdlib Require Import List
Strings.String String
Bool.Bool
Arith.EqNat
Arith.PeanoNat
Lia.
Import Nat ListNotations.
Set Default Goal Selector "!".
From SECF Require Import
MapsFunctor
MiniCET
Utils
ListMaps.
Require Import Stdlib.Classes.EquivDec.
Require Export ExtLib.Structures.Monads.
Require Import ExtLib.Structures.Traversable.
Require Import ExtLib.Data.List.
Require Export ExtLib.Data.Monads.OptionMonad.
Import MonadNotation. Open Scope monad_scope.
Module Type Semantics(M : TMap).
Parameter pc : Type.
Definition reg := M.t val.
Definition cfg : Type := ((pc * reg) * mem) * list pc.
Definition spec_cfg : Type := (cfg * bool) * bool.
Definition ideal_cfg : Type := cfg * bool.
Definition dir := direction.
Definition dirs := list dir.
Parameter ipc : pc.
Parameter istk : list pc.
Parameter icfg : pc -> reg -> mem -> list pc -> cfg.
Parameter eval : reg -> exp -> val.
Parameter fetch : prog -> pc -> option inst.
Parameter step : prog -> state cfg -> state cfg * obs.
Parameter steps : nat -> prog -> state cfg -> state cfg * obs.
Parameter spec_step : prog -> state spec_cfg -> dirs -> state spec_cfg * dirs * obs.
Parameter spec_steps : nat -> prog -> state spec_cfg -> dirs -> state spec_cfg * dirs * obs.
End Semantics.
Module MiniCETSemantics (M : TMap) <: Semantics M.
Module Import Common := MiniCETCommon(M).
Definition reg := M.t val.
Definition cfg : Type := ((cptr*reg)*mem)*list cptr.
Definition spec_cfg : Type := ((cfg * bool) * bool).
Definition ideal_cfg : Type := cfg * bool.
Definition pc := cptr.
Definition ipc : cptr := (0, 0).
Definition istk : list cptr := [].
Definition icfg (ipc : pc) (ireg : reg) (mem : mem) (istk : list pc): cfg :=
(ipc, ireg, mem, istk).
Definition dir := direction.
Definition dirs := dirs.
Definition fetch := MiniCET.fetch.
Fixpoint eval (st : reg) (e: exp) : val :=
match e with
| ANum n => N n
| AId x => M.t_apply st x
| ABin b e1 e2 => eval_binop b (eval st e1) (eval st e2)
| <{b ? e1 : e2}> =>
match to_nat (eval st b) with
| Some n1 => if not_zero n1 then eval st e1 else eval st e2
| None => UV
end
| <{&l}> => FP l
end.
Definition step (p:prog) (sc:state cfg) : (state cfg * obs) :=
match sc with
| S_Running c =>
let '(pc, r, m, sk) := c in
match p[[pc]] with
| Some i =>
match i with
| <{{skip}}> | <{{ctarget}}> =>
(S_Running (pc+1, r, m, sk), [])
| <{{x:=e}}> =>
(S_Running (pc+1, (x !-> eval r e; r), m, sk), [])
| <{{branch e to l}}> =>
match
n <- to_nat (eval r e);;
let b := not_zero n in
ret ((if b then (l,0) else pc+1, r, m, sk), [OBranch b])
with
| Some (c, o) => (S_Running c, o)
| None => (S_Undef, [])
end
| <{{jump l}}> =>
(S_Running ((l,0), r, m, sk), [])
| <{{x<-load[e]}}> =>
match
n <- to_nat (eval r e);;
v' <- nth_error m n;;
ret ((pc+1, (x !-> v'; r), m, sk), [OLoad n])
with
| Some (c, o) => (S_Running c, o)
| None => (S_Undef, [])
end
| <{{store[e]<-e'}}> =>
match
n <- to_nat (eval r e);;
ret ((pc+1, r, upd n m (eval r e'), sk), [OStore n])
with
| Some (c, o) => (S_Running c, o)
| None => (S_Undef, [])
end
| <{{call e}}> =>
match
l <- to_fp (eval r e);;
ret (((l,0), r, m, (pc+1)::sk), [OCall l])
with
| Some (c, o) => (S_Running c, o)
| None => (S_Undef, [])
end
| <{{ret}}> =>
match sk with
| [] => (S_Term, [])
| pc'::stk' => (S_Running (pc', r, m, stk'), [])
end
end
| None => (S_Fault, [])
end
| s => (s, [])
end.
Definition spec_step (p:prog) (ssc: state spec_cfg) (ds: dirs) : (state spec_cfg * dirs * obs) :=
match ssc with
| S_Running sc =>
let '(c, ct, ms) := sc in
let '(pc, r, m, sk) := c in
match p[[pc]] with
| None => untrace "lookup fail" (S_Undef, ds, [])
| Some i =>
match i with
| <{{branch e to l}}> =>
if ct then (S_Fault, ds, []) else
match
if seq.nilp ds then
untrace "Branch: Directions are empty!" None
else
d <- hd_error ds;;
b' <- is_dbranch d;;
n <- to_nat (eval r e);;
let b := not_zero n in
let ms' := ms || negb (Bool.eqb b b') in
let pc' := if b' then (l, 0) else (pc+1) in
ret ((S_Running ((pc', r, m, sk), ct, ms'), tl ds), [OBranch b])
with
| None => untrace "branch fail" (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| <{{call e}}> =>
if ct then (S_Fault, ds, []) else
match
if seq.nilp ds then
untrace "Call: Directions are empty!" None
else
d <- hd_error ds;;
pc' <- is_dcall d;;
l <- to_fp (eval r e);;
let ms' := ms || negb ((fst pc' =? l) && (0 =? (snd pc')%nat)) in
(*! *)
ret ((S_Running ((pc', r, m, (pc+1)::sk), true, ms'), tl ds), [OCall l])
(*!! spec-call-no-set-ct *)
(*! ret ((S_Running ((pc', r, m, (pc+1)::sk), ct, ms'), tl ds), [OCall l]) *)
with
| None => untrace "call fail" (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| <{{ctarget}}> =>
match
is_true ct;;
(*! *)
(ret (S_Running ((pc+1, r, m, sk), false, ms), ds, []))
(*!! spec_ctarget_no_clear *)
(*! (ret (S_Running ((pc+1, r, m, sk), ct, ms), ds, [])) *)
with
| None => untrace "ctarget fail!" (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| _ =>
if ct then (S_Fault, ds, [])
else
match step p (S_Running c) with
| (S_Running c', o) => (S_Running (c', false, ms), ds, o)
| (S_Undef, o) => (S_Undef, ds, o)
| (S_Fault, o) => (S_Fault, ds, o)
| (S_Term, o) => (S_Term, ds, o)
end
end
end
| s => (s, ds, [])
end.
Fixpoint spec_steps (f:nat) (p:prog) (sc: state spec_cfg) (ds: dirs)
: (state spec_cfg * dirs * obs) :=
match f with
| S f' =>
match sc with
| S_Running c =>
let '(c1,ds1,o1) := spec_step p sc ds in
let '(c2,ds2,o2) := spec_steps f' p c1 ds1 in
(c2,ds2,o1++o2)
| s => (s, ds, [])
end
| 0 =>
(sc, ds, [])
end.
Fixpoint steps (f:nat) (p:prog) (sc: state cfg) : (state cfg * obs) :=
match f with
| S f' =>
match sc with
| S_Running c =>
let '(c1, o1) := step p sc in
let '(c2, o2) := steps f' p c1 in
(c2, o1++o2)
| s => (s, [])
end
| 0 =>
(sc, [])
end.
End MiniCETSemantics.
Module IdealStepSemantics (Import ST : Semantics ListTotalMap with Definition pc := cptr).
Definition ideal_step (p: prog) (sic: state ideal_cfg) (ds: dirs) : (state ideal_cfg * dirs * obs) :=
match sic with
| S_Running ic =>
let '(c, ms) := ic in
let '(pc, r, m, sk) := c in
match fetch p pc with
None => untrace "lookup fail" (S_Undef, ds, [])
| Some i =>
match i with
| <{{branch e to l}}> =>
if seq.nilp ds then
untrace "idealBranch: directions are empty!" (S_Undef, ds, [])
else
match
d <- hd_error ds;;
b' <- is_dbranch d;;
n <- to_nat (eval r e);;
let b := (negb ms) && not_zero n in
(*! *)
let ms' := ms || negb (Bool.eqb b b') in
(*!! ideal_branch_bad_update_ms *)
(*! let ms' := negb (Bool.eqb b b') in *)
let _ := I in
(*! *)
let pc' := if b' then (l, 0) else (pc+1) in
(*!! ideal_branch_ignore_directive *)
(*! let pc' := if b then (l, 0) else (pc+1) in *)
ret ((S_Running ((pc', r, m, sk), ms'), tl ds), [OBranch b])
with
| None => (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| <{{call e}}> =>
if seq.nilp ds then
untrace "idealCall: directions are empty!" (S_Undef, ds, [])
else
match
d <- hd_error ds;;
pc' <- is_dcall d;;
l <- (if ms then Some 0 else to_fp (eval r e));;
blk <- nth_error p (fst pc');;
(*! *)
if (snd blk && (snd pc' ==b 0)) then
(*!! ideal_call_no_check_target *)
(*! if true then *)
let ms' := ms || negb ((fst pc' =? l) && (snd pc' =? 0)) in
ret ((S_Running ((pc', r, m, (pc+1)::sk), ms'), tl ds), [OCall l])
else Some (S_Fault, ds, [OCall l])
with
| None => (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| <{{x<-load[e]}}> =>
match
(*! *)
let i := if ms then (ANum 0) else e in
(*!! ideal-load-no-mask *)
(*! let i := e in *)
n <- to_nat (eval r i);;
v' <- nth_error m n;;
let c := (pc+1, (x !-> v'; r), m, sk) in
ret (S_Running (c, ms), ds, [OLoad n])
with
| None => (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| <{{store[e]<-e'}}> =>
match
(*! *)
let i := if ms then (ANum 0) else e in
(*!! ideal-store-no-mask *)
(*! let i := e in *)
n <- to_nat (eval r i);;
let c:= (pc+1, r, upd n m (eval r e'), sk) in
ret (S_Running (c, ms), ds, [OStore n])
with
| None => (S_Undef, ds, [])
| Some (c, ds, os) => (c, ds, os)
end
| _ =>
match step p (S_Running c) with
| (S_Running c', o) => (S_Running (c', ms), ds, o)
| (S_Undef, o) => (S_Undef, ds, o)
| (S_Fault, o) => (S_Fault, ds, o)
| (S_Term, o) => (S_Term, ds, o)
end
end
end
| s => (s, ds, [])
end.
Fixpoint ideal_steps (f: nat) (p: prog) (sic: state ideal_cfg) (ds: dirs)
: (state ideal_cfg * dirs * obs) :=
match f with
| S f' =>
match sic with
| S_Running ic =>
let '(c1, ds1, o1) := ideal_step p sic ds in
let '(c2, ds2, o2) := ideal_steps f' p c1 ds1 in
(c2, ds2, o1++o2)
| s => (s, ds, [])
end
| 0 =>
(sic, ds, [])
end.
End IdealStepSemantics.