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
|
(*
Title: Standard Basis Library: Pack Real structures and signatures
Author: David Matthews
Copyright David Matthews 2000
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either
version 2.1 of the License, or (at your option) any later version.
This library 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
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library; if not, write to the Free Software
Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*)
(* G&R 2004 status: checked: unchanged. *)
signature PACK_REAL =
sig
type real
val bytesPerElem : int
val isBigEndian : bool
val toBytes : real -> Word8Vector.vector
val fromBytes : Word8Vector.vector -> real
val subVec : Word8Vector.vector * int -> real
val subArr : Word8Array.array * int -> real
val update : Word8Array.array * int * real -> unit
end;
local
open LibrarySupport
open RuntimeCalls
open LibrarySupport.Word8Array
val realSize: word = RunCall.run_call2 POLY_SYS_Real_Dispatch (28, ())
val System_lock: address -> unit = RunCall.run_call1 POLY_SYS_lockseg;
local
val System_loadb: address * word -> Word8.word =
RunCall.run_call2 POLY_SYS_load_byte;
val System_setb: address * word * Word8.word -> unit =
RunCall.run_call3 POLY_SYS_assign_byte;
val System_move_bytes: address*word*address*word*word->unit =
RunCall.run_call5 POLY_SYS_move_bytes
val wordSize : word = LibrarySupport.wordSize;
(* Move bytes, reversing the order. *)
fun swapOrder(src: address, srcOff: word,
dest: address, destOff: word,
length: word) =
if length = 0w0 then ()
else
(
System_setb(dest, destOff+length-0w1, System_loadb(src, srcOff));
swapOrder(src, srcOff+0w1, dest, destOff, length-0w1)
)
in
fun doMove(src: address, srcOff: word,
dest: address, destOff: word, wantBigEndian: bool) =
if wantBigEndian = bigEndian (* Host byte order = required byte order *)
then System_move_bytes(src, srcOff, dest, destOff, realSize)
else (* Host byte order is reverse of required byte order. *)
swapOrder(src, srcOff, dest, destOff, realSize)
end
in
structure PackRealBig: PACK_REAL =
struct
type real = real
val bytesPerElem: int = Word.toInt realSize
val isBigEndian = true (* Note: this seems unnecessary. *)
fun toBytes r =
let
val v = fromString(allocString realSize)
(* r is actually represented by a pointer to a vector. *)
val addr: address = RunCall.unsafeCast r
in
doMove(addr, 0w0, v, wordSize, isBigEndian);
System_lock v;
Vector v
end
fun fromBytes (v as Vector vec) =
(* Raises an exception if the vector is too small and takes the first
few elements if it's larger. *)
if Word8Vector.length v < bytesPerElem
then raise Subscript
else
let
val r = allocBytes realSize
in
doMove(vec, wordSize, r, 0w0, isBigEndian);
System_lock r;
(RunCall.unsafeCast r): real
end
fun subVec(v as Vector vec, i) =
let
val iW = unsignedShortOrRaiseSubscript i * realSize
in
if iW >= Word.fromInt(Word8Vector.length v)
then raise Subscript (* This IS defined. *)
else
let
val r = allocBytes realSize
in
doMove(vec, wordSize + iW, r, 0w0, isBigEndian);
System_lock r;
(RunCall.unsafeCast r): real
end
end
fun subArr(Array(l, v), i) =
let
val iW = unsignedShortOrRaiseSubscript i * realSize
in
if iW >= l
then raise Subscript (* This IS defined. *)
else
let
val r = allocBytes realSize
in
doMove(v, iW, r, 0w0, isBigEndian);
System_lock r;
(RunCall.unsafeCast r): real
end
end
fun update(Array(l, v), i, r) =
let
val iW = unsignedShortOrRaiseSubscript i * realSize
in
if iW >= l
then raise Subscript (* This IS defined. *)
else
let
(* r is actually represented by a pointer to a vector. *)
val addr: address = RunCall.unsafeCast r
in
doMove(addr, 0w0, v, iW, isBigEndian)
end
end
end;
structure PackRealLittle: PACK_REAL =
struct
type real = real
val bytesPerElem: int = Word.toInt realSize
val isBigEndian = false
fun toBytes r =
let
val v = fromString(allocString realSize)
(* r is actually represented by a pointer to a vector. *)
val addr: address = RunCall.unsafeCast r
in
doMove(addr, 0w0, v, wordSize, isBigEndian);
System_lock v;
Vector v
end
fun fromBytes(v as Vector vec) =
(* Raises an exception if the vector is too small and takes the first
few elements if it's larger. *)
if Word8Vector.length v < bytesPerElem
then raise Subscript
else
let
val r = allocBytes realSize
in
doMove(vec, wordSize, r, 0w0, isBigEndian);
System_lock r;
(RunCall.unsafeCast r): real
end
fun subVec(v as Vector vec, i) =
let
val iW = unsignedShortOrRaiseSubscript i * realSize
in
if iW >= Word.fromInt(Word8Vector.length v)
then raise Subscript (* This IS defined. *)
else
let
val r = allocBytes realSize
in
doMove(vec, wordSize+iW, r, 0w0, isBigEndian);
System_lock r;
(RunCall.unsafeCast r): real
end
end
fun subArr(Array(l, v), i) =
let
val iW = unsignedShortOrRaiseSubscript i * realSize
in
if iW >= l
then raise Subscript (* This IS defined. *)
else
let
val r = allocBytes realSize
in
doMove(v, iW, r, 0w0, isBigEndian);
System_lock r;
(RunCall.unsafeCast r): real
end
end
fun update(Array(l, v), i, r) =
let
val iW = unsignedShortOrRaiseSubscript i * realSize
in
if iW >= l
then raise Subscript (* This IS defined. *)
else
let
(* r is actually represented by a pointer to a vector. *)
val addr: address = RunCall.unsafeCast r
in
doMove(addr, 0w0, v, iW, isBigEndian)
end
end
end;
end;
|