summaryrefslogtreecommitdiff
path: root/tests/fstar/array/Array.Funs.fst
blob: 985633bc6c4b612f9961b406fd245a1c78c13d10 (plain)
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
(** THIS FILE WAS AUTOMATICALLY GENERATED BY AENEAS *)
(** [array]: function definitions *)
module Array.Funs
open Primitives
include Array.Types
include Array.Clauses

#set-options "--z3rlimit 50 --fuel 1 --ifuel 1"

(** [array::array_to_shared_slice_]: forward function *)
let array_to_shared_slice__fwd
  (t : Type0) (s : array t 32) : result (slice t) =
  array_to_slice_shared t 32 s

(** [array::array_to_mut_slice_]: forward function *)
let array_to_mut_slice__fwd (t : Type0) (s : array t 32) : result (slice t) =
  array_to_slice_mut_fwd t 32 s

(** [array::array_to_mut_slice_]: backward function 0 *)
let array_to_mut_slice__back
  (t : Type0) (s : array t 32) (ret : slice t) : result (array t 32) =
  array_to_slice_mut_back t 32 s ret

(** [array::array_len]: forward function *)
let array_len_fwd (t : Type0) (s : array t 32) : result usize =
  let* s0 = array_to_slice_shared t 32 s in let i = slice_len t s0 in Return i

(** [array::shared_array_len]: forward function *)
let shared_array_len_fwd (t : Type0) (s : array t 32) : result usize =
  let* s0 = array_to_slice_shared t 32 s in let i = slice_len t s0 in Return i

(** [array::shared_slice_len]: forward function *)
let shared_slice_len_fwd (t : Type0) (s : slice t) : result usize =
  let i = slice_len t s in Return i

(** [array::index_array_shared]: forward function *)
let index_array_shared_fwd
  (t : Type0) (s : array t 32) (i : usize) : result t =
  array_index_shared t 32 s i

(** [array::index_array_u32]: forward function *)
let index_array_u32_fwd (s : array u32 32) (i : usize) : result u32 =
  array_index_shared u32 32 s i

(** [array::index_array_generic]: forward function *)
let index_array_generic_fwd
  (n : usize) (s : array u32 n) (i : usize) : result u32 =
  array_index_shared u32 n s i

(** [array::index_array_generic_call]: forward function *)
let index_array_generic_call_fwd
  (n : usize) (s : array u32 n) (i : usize) : result u32 =
  index_array_generic_fwd n s i

(** [array::index_array_copy]: forward function *)
let index_array_copy_fwd (x : array u32 32) : result u32 =
  array_index_shared u32 32 x 0

(** [array::index_mut_array]: forward function *)
let index_mut_array_fwd (t : Type0) (s : array t 32) (i : usize) : result t =
  array_index_mut_fwd t 32 s i

(** [array::index_mut_array]: backward function 0 *)
let index_mut_array_back
  (t : Type0) (s : array t 32) (i : usize) (ret : t) : result (array t 32) =
  array_index_mut_back t 32 s i ret

(** [array::index_slice]: forward function *)
let index_slice_fwd (t : Type0) (s : slice t) (i : usize) : result t =
  slice_index_shared t s i

(** [array::index_mut_slice]: forward function *)
let index_mut_slice_fwd (t : Type0) (s : slice t) (i : usize) : result t =
  slice_index_mut_fwd t s i

(** [array::index_mut_slice]: backward function 0 *)
let index_mut_slice_back
  (t : Type0) (s : slice t) (i : usize) (ret : t) : result (slice t) =
  slice_index_mut_back t s i ret

(** [array::slice_subslice_shared_]: forward function *)
let slice_subslice_shared__fwd
  (x : slice u32) (y : usize) (z : usize) : result (slice u32) =
  slice_subslice_shared u32 x (Mkrange y z)

(** [array::slice_subslice_mut_]: forward function *)
let slice_subslice_mut__fwd
  (x : slice u32) (y : usize) (z : usize) : result (slice u32) =
  slice_subslice_mut_fwd u32 x (Mkrange y z)

(** [array::slice_subslice_mut_]: backward function 0 *)
let slice_subslice_mut__back
  (x : slice u32) (y : usize) (z : usize) (ret : slice u32) :
  result (slice u32)
  =
  slice_subslice_mut_back u32 x (Mkrange y z) ret

(** [array::array_to_slice_shared_]: forward function *)
let array_to_slice_shared__fwd (x : array u32 32) : result (slice u32) =
  array_to_slice_shared u32 32 x

(** [array::array_to_slice_mut_]: forward function *)
let array_to_slice_mut__fwd (x : array u32 32) : result (slice u32) =
  array_to_slice_mut_fwd u32 32 x

(** [array::array_to_slice_mut_]: backward function 0 *)
let array_to_slice_mut__back
  (x : array u32 32) (ret : slice u32) : result (array u32 32) =
  array_to_slice_mut_back u32 32 x ret

(** [array::array_subslice_shared_]: forward function *)
let array_subslice_shared__fwd
  (x : array u32 32) (y : usize) (z : usize) : result (slice u32) =
  array_subslice_shared u32 32 x (Mkrange y z)

(** [array::array_subslice_mut_]: forward function *)
let array_subslice_mut__fwd
  (x : array u32 32) (y : usize) (z : usize) : result (slice u32) =
  array_subslice_mut_fwd u32 32 x (Mkrange y z)

(** [array::array_subslice_mut_]: backward function 0 *)
let array_subslice_mut__back
  (x : array u32 32) (y : usize) (z : usize) (ret : slice u32) :
  result (array u32 32)
  =
  array_subslice_mut_back u32 32 x (Mkrange y z) ret

(** [array::index_slice_0]: forward function *)
let index_slice_0_fwd (t : Type0) (s : slice t) : result t =
  slice_index_shared t s 0

(** [array::index_array_0]: forward function *)
let index_array_0_fwd (t : Type0) (s : array t 32) : result t =
  array_index_shared t 32 s 0

(** [array::index_index_array]: forward function *)
let index_index_array_fwd
  (s : array (array u32 32) 32) (i : usize) (j : usize) : result u32 =
  let* a = array_index_shared (array u32 32) 32 s i in
  array_index_shared u32 32 a j

(** [array::update_update_array]: forward function *)
let update_update_array_fwd
  (s : array (array u32 32) 32) (i : usize) (j : usize) : result unit =
  let* a = array_index_mut_fwd (array u32 32) 32 s i in
  let* a0 = array_index_mut_back u32 32 a j 0 in
  let* _ = array_index_mut_back (array u32 32) 32 s i a0 in
  Return ()

(** [array::array_local_deep_copy]: forward function *)
let array_local_deep_copy_fwd (x : array u32 32) : result unit =
  Return ()

(** [array::f0]: forward function *)
let f0_fwd : result unit =
  let* s = array_to_slice_mut_fwd u32 2 (mk_array u32 2 [ 1; 2 ]) in
  let* s0 = slice_index_mut_back u32 s 0 1 in
  let* _ = array_to_slice_mut_back u32 2 (mk_array u32 2 [ 1; 2 ]) s0 in
  Return ()

(** [array::f1]: forward function *)
let f1_fwd : result unit =
  let* _ = array_index_mut_back u32 2 (mk_array u32 2 [ 1; 2 ]) 0 1 in
  Return ()

(** [array::sum]: loop 0: forward function *)
let rec sum_loop_fwd
  (s : slice u32) (sum : u32) (i : usize) :
  Tot (result u32) (decreases (sum_loop_decreases s sum i))
  =
  let i0 = slice_len u32 s in
  if i < i0
  then
    let* i1 = slice_index_shared u32 s i in
    let* sum0 = u32_add sum i1 in
    let* i2 = usize_add i 1 in
    sum_loop_fwd s sum0 i2
  else Return sum

(** [array::sum]: forward function *)
let sum_fwd (s : slice u32) : result u32 =
  sum_loop_fwd s 0 0

(** [array::sum2]: loop 0: forward function *)
let rec sum2_loop_fwd
  (s : slice u32) (s2 : slice u32) (sum : u32) (i : usize) :
  Tot (result u32) (decreases (sum2_loop_decreases s s2 sum i))
  =
  let i0 = slice_len u32 s in
  if i < i0
  then
    let* i1 = slice_index_shared u32 s i in
    let* i2 = slice_index_shared u32 s2 i in
    let* i3 = u32_add i1 i2 in
    let* sum0 = u32_add sum i3 in
    let* i4 = usize_add i 1 in
    sum2_loop_fwd s s2 sum0 i4
  else Return sum

(** [array::sum2]: forward function *)
let sum2_fwd (s : slice u32) (s2 : slice u32) : result u32 =
  let i = slice_len u32 s in
  let i0 = slice_len u32 s2 in
  if not (i = i0) then Fail Failure else sum2_loop_fwd s s2 0 0

(** [array::f2]: forward function *)
let f2_fwd (i : u32) : result unit =
  Return ()

(** [array::f4]: forward function *)
let f4_fwd (x : array u32 32) (y : usize) (z : usize) : result (slice u32) =
  array_subslice_shared u32 32 x (Mkrange y z)

(** [array::f3]: forward function *)
let f3_fwd : result u32 =
  let* i = array_index_shared u32 2 (mk_array u32 2 [ 1; 2 ]) 0 in
  let* _ = f2_fwd i in
  let* s = array_to_slice_shared u32 2 (mk_array u32 2 [ 1; 2 ]) in
  let* s0 =
    f4_fwd
      (mk_array u32 32 [
        0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0; 0;
        0; 0; 0; 0; 0; 0; 0; 0
        ]) 16 18 in
  sum2_fwd s s0