-
Notifications
You must be signed in to change notification settings - Fork 1
/
data_destroy1.v
36 lines (32 loc) · 1016 Bytes
/
data_destroy1.v
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
Require Import CodeDeps.
Require Import Ident.
Local Open Scope Z_scope.
Definition _addr := 1%positive.
Definition _data := 2%positive.
Definition _g := 3%positive.
Definition _g_rd := 4%positive.
Definition _granule := 5%positive.
Definition _map_addr := 6%positive.
Definition _pa := 7%positive.
Definition _rd := 8%positive.
Definition _ret := 9%positive.
Definition _t'1 := 10%positive.
Definition data_destroy1_body :=
(Ssequence
(Scall (Some _t'1)
(Evar _data_destroy (Tfunction
(Tcons (tptr Tvoid)
(Tcons tulong Tnil)) tulong cc_default))
((Etempvar _g_rd (tptr Tvoid)) ::
(Etempvar _map_addr tulong) :: nil))
(Sreturn (Some (Etempvar _t'1 tulong))))
.
Definition f_data_destroy1 := {|
fn_return := tulong;
fn_callconv := cc_default;
fn_params := ((_g_rd, (tptr Tvoid)) ::
(_map_addr, tulong) :: nil);
fn_vars := nil;
fn_temps := ((_t'1, tulong) :: nil);
fn_body := data_destroy1_body
|}.