/usr/lib/ats2-postiats-0.1.3/libats/SATS/gfarray.sats is in ats2-lang 0.1.3-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | (***********************************************************************)
(* *)
(* Applied Type System *)
(* *)
(***********************************************************************)
(*
** ATS/Postiats - Unleashing the Potential of Types!
** Copyright (C) 2011-2013 Hongwei Xi, ATS Trustful Software, Inc.
** All rights reserved
**
** ATS is free software; you can redistribute it and/or modify it under
** the terms of the GNU GENERAL PUBLIC LICENSE (GPL) as published by the
** Free Software Foundation; either version 3, or (at your option) any
** later version.
**
** ATS is distributed in the hope that it will be useful, but WITHOUT ANY
** WARRANTY; without even the implied warranty of MERCHANTABILITY or
** FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
** for more details.
**
** You should have received a copy of the GNU General Public License
** along with ATS; see the file COPYING. If not, please write to the
** Free Software Foundation, 51 Franklin Street, Fifth Floor, Boston, MA
** 02110-1301, USA.
*)
(* ****** ****** *)
//
// Author: Hongwei Xi (hwxi AT cs DOT bu DOT edu)
// Time: December, 2012
//
(* ****** ****** *)
//
// HX: generic arrays (fully indexed)
//
(* ****** ****** *)
//
// HX-2012-11-30: ported to ATS/Postiats from ATS/Anairiats
//
(* ****** ****** *)
#define ATS_PACKNAME "ATSLIB.libats.gfarray"
(* ****** ****** *)
staload "libats/SATS/ilist_prf.sats" // for handling integer sequences
(* ****** ****** *)
(*
// HX: [stamped_vt] is introduced in prelude/basics_pre.sats
*)
(* ****** ****** *)
dataview
gfarray_v
(
a:vt@ype+, addr, ilist
) =
| {l:addr}
gfarray_v_nil (a, l, ilist_nil) of ()
| {x:int}{xs:ilist}{l:addr}
gfarray_v_cons (a, l, ilist_cons (x, xs)) of
(stamped_vt (a, x) @ l, gfarray_v (a, l+sizeof(a), xs))
// end of [gfarray_v_cons]
// end of [gfarray_v]
(* ****** ****** *)
prfun
gfarray2array_v
{a:vt@ype}{xs:ilist}{l:addr}
(pf: gfarray_v (a, l, xs)): [n:nat] (LENGTH (xs, n), array_v (a, l, n))
// end of [gfarray2array_v]
(* ****** ****** *)
prfun
gfarray_v_sing
{a:vt@ype}{l:addr}{x:int}
(pf: stamped_vt (a, x) @ l): gfarray_v (a, l, ilist_sing(x))
// end of [gfarray_v_sing]
prfun
gfarray_v_unsing
{a:vt@ype}{l:addr}{x:int}
(pf: gfarray_v (a, l, ilist_sing(x))): stamped_vt (a, x) @ l
// end of [gfarray_v_unsing]
(* ****** ****** *)
prfun
gfarray_v_split
{a:vt0p}
{l:addr}
{xs:ilist}
{n:int}
{i:nat | i <= n}
(
pflen: LENGTH (xs, n)
, pfarr: gfarray_v (a, l, xs)
) : [xs1,xs2:ilist]
(
LENGTH (xs1, i)
, LENGTH (xs2, n-i)
, APPEND (xs1, xs2, xs)
, gfarray_v (a, l, xs1)
, gfarray_v (a, l+i*sizeof(a), xs2)
) // end of [gfarray_v_split]
(* ****** ****** *)
prfun
gfarray_v_unsplit
{a:vt0p}
{l:addr}
{xs1,xs2:ilist}
{n1:int} (
pflen: LENGTH (xs1, n1)
, pfarr1: gfarray_v (a, l, xs1)
, pfarr2: gfarray_v (a, l+n1*sizeof(a), xs2)
) : [xs:ilist]
(
APPEND (xs1, xs2, xs), gfarray_v (a, l, xs)
) // end of [gfarray_v_unsplit]
(* ****** ****** *)
prfun
gfarray_v_extend
{a:vt0p}
{l:addr}
{xs:ilist}{x:int}{xsx:ilist}
{n:nat}
(
pflen: LENGTH (xs, n)
, pfsnoc: SNOC (xs, x, xsx)
, pfat: stamped_vt (a, x) @ l+n*sizeof(a)
, pfarr: gfarray_v (a, l, xs)
) : gfarray_v (a, l, xsx) // endfun
(* ****** ****** *)
prfun
gfarray_v_unextend
{a:vt0p}
{l:addr}
{xs:ilist}
{n:int | n > 0}
(
pflen: LENGTH (xs, n)
, pfarr: gfarray_v (a, l, xs)
) : [xsf:ilist;x:int] // xsf: the front
(
SNOC (xsf, x, xs), stamped_vt (a, x) @ l+(n-1)*sizeof(a), gfarray_v (a, l, xsf)
) // end of [gfarray_v_unextend]
(* ****** ****** *)
fun{a:t@ype}
gfarray_get_at
{l:addr}
{x:int}{xs:ilist}
{i:int}
(
pf1: NTH (x, xs, i)
, pf2: gfarray_v (a, l, xs)
| p: ptr l, i: size_t i
) :<> stamped_t (a, x)
// end of [gfarray_get_at]
(* ****** ****** *)
fun{a:t@ype}
gfarray_set_at
{l:addr}
{x:int}{xs1:ilist}{xs2:ilist}
{i:int}
(
pf1: UPDATE (x, xs1, i, xs2)
, pf2: !gfarray_v (a, l, xs1) >> gfarray_v (a, l, xs2)
| p: ptr l, i: size_t i, x: stamped_t (a, x)
) :<!wrt> void // end of [gfarray_set_at]
(* ****** ****** *)
fun{a:vt@ype}
gfarray_exch_at
{l:addr}
{x0:int}{x1:int}
{xs1:ilist}{xs2:ilist}
{i:int}
(
pf1: NTH (x1, xs1, i), pf2: UPDATE (x0, xs1, i, xs2)
, pf3: !gfarray_v (a, l, xs1) >> gfarray_v (a, l, xs2)
| p: ptr l, i: size_t i, x0: &stamped_vt (a, x0) >> stamped_vt (a, x1)
) :<!wrt> void // end of [gfarray_exch_at]
(* ****** ****** *)
(* end of [gfarray.sats] *)
|