Anforderungen  |   Konzepte  |   Entwurf  |   Entwicklung  |   Qualitätssicherung  |   Lebenszyklus  |   Steuerung
 
 
 
 

Benutzer

Quelle  Uint.thy

  Sprache: Isabelle
 

(*  Title:      Uint.thy
    Author:     Peter Lammich, TU Munich
    Author:     Andreas Lochbihler, ETH Zurich
*)


chapter Unsigned words of default size

theory Uint
  imports
    Uint_Common
    Code_Target_Word
begin

text 
 This theory provides access to words in the target languages of the code generator
 whose bit width is the default of the target language. To that end, the type uint
 models words of width dflt_size, but dflt_size is known only to be positive.

 Usage restrictions:
 Default-size words (type uint) cannot be used for evaluation, because
 the results depend on the particular choice of word size in the target language
 and implementation. Symbolic evaluation has not yet been set up for uint.
 


text The default size type
typedecl dflt_size

instantiation dflt_size :: typerep begin
definition "typerep_class.typerep λ_ :: dflt_size itself. Typerep.Typerep (STR ''Uint.dflt_size'') []"
instance ..
end

consts dflt_size_aux :: "nat"
specification (dflt_size_aux) dflt_size_aux_g0: "dflt_size_aux > 0"
  by auto
hide_fact dflt_size_aux_def

instantiation dflt_size :: len begin
definition "len_of_dflt_size (_ :: dflt_size itself) dflt_size_aux"
instance by(intro_classes)(simp add: len_of_dflt_size_def dflt_size_aux_g0)
end

abbreviation "dflt_size len_of (TYPE (dflt_size))"

context includes integer.lifting begin
lift_definition dflt_size_integer :: integer is "int dflt_size" .
declare dflt_size_integer_def[code del]
   The code generator will substitute a machine-dependent value for this constant

lemma dflt_size_by_int[code]: "dflt_size = nat_of_integer dflt_size_integer"
by transfer simp

lemma dflt_size[simp]: 
  "dflt_size > 0"
  "dflt_size Suc 0"
  "¬ dflt_size < Suc 0"
  using len_gt_0[where 'a=dflt_size]
  by (simp_all del: len_gt_0)
end

section Type definition and primitive operations

typedef uint = UNIV :: dflt_size word set ..

global_interpretation uint: word_type_copy Abs_uint Rep_uint
  using type_definition_uint by (rule word_type_copy.intro)

setup_lifting type_definition_uint

declare uint.of_word_of [code abstype]

declare Quotient_uint [transfer_rule]

instantiation uint :: {comm_ring_1, semiring_modulo, equal, linorder, order_bot, order_top}
begin

lift_definition zero_uint :: uint is 0 .
lift_definition one_uint :: uint is 1 .
lift_definition plus_uint :: uint ==> uint ==> uint is (+) .
lift_definition uminus_uint :: uint ==> uint is uminus .
lift_definition minus_uint :: uint ==> uint ==> uint is (-) .
lift_definition times_uint :: uint ==> uint ==> uint is (*)\ .
  divide_uint :: uint ==> uint ==> uint is (div) .
  modulo_uint :: uint ==> uint ==> uint is (mod) .
  equal_uint :: uint ==> uint ==> bool is HOL.equal .
  less_eq_uint :: uint ==> uint ==> bool is () .
  less_uint :: uint ==> uint ==> bool is (<)\ .
  bot_uint :: uint is bot .
  top_uint :: uint is top .

  uint: word_type_copy_ring Abs_uint Rep_uint
 by standard (fact zero_uint.rep_eq one_uint.rep_eq
 plus_uint.rep_eq uminus_uint.rep_eq minus_uint.rep_eq
 times_uint.rep_eq divide_uint.rep_eq modulo_uint.rep_eq
 equal_uint.rep_eq less_eq_uint.rep_eq less_uint.rep_eq
 bot_uint.rep_eq top_uint.rep_eq)+

  proof -
 show OFCLASS(uint, comm_ring_1_class)
 by (rule uint.of_class_comm_ring_1)
 show OFCLASS(uint, semiring_modulo_class)
 by (fact uint.of_class_semiring_modulo)
 show OFCLASS(uint, equal_class)
 by (fact uint.of_class_equal)
 show OFCLASS(uint, linorder_class)
 by (fact uint.of_class_linorder)
 show OFCLASS(uint, order_bot_class)
 by (fact uint.of_class_order_bot)
 show OFCLASS(uint, order_top_class)
 by (fact uint.of_class_order_top)
 

 

  uint :: {interval_bot, interval_top}
 by (fact uint.of_class_interval_bot uint.of_class_interval_top)+

  uint :: ring_bit_operations
 

  bit_uint :: uint ==> nat ==> bool is bit .
  not_uint :: uint ==> uint is Bit_Operations.not .
  and_uint :: uint ==> uint ==> uint is Bit_Operations.and .
  or_uint :: uint ==> uint ==> uint is Bit_Operations.or .
  xor_uint :: uint ==> uint ==> uint is Bit_Operations.xor .
  mask_uint :: nat ==> uint is mask .
  push_bit_uint :: nat ==> uint ==> uint is push_bit .
  drop_bit_uint :: nat ==> uint ==> uint is drop_bit .
  signed_drop_bit_uint :: nat ==> uint ==> uint is signed_drop_bit .
  take_bit_uint :: nat ==> uint ==> uint is take_bit .
  set_bit_uint :: nat ==> uint ==> uint is Bit_Operations.set_bit .
  unset_bit_uint :: nat ==> uint ==> uint is unset_bit .
  flip_bit_uint :: nat ==> uint ==> uint is flip_bit .

  uint: word_type_copy_bits Abs_uint Rep_uint signed_drop_bit_uint
 by standard (fact bit_uint.rep_eq not_uint.rep_eq and_uint.rep_eq or_uint.rep_eq xor_uint.rep_eq
 mask_uint.rep_eq push_bit_uint.rep_eq drop_bit_uint.rep_eq signed_drop_bit_uint.rep_eq take_bit_uint.rep_eq
 set_bit_uint.rep_eq unset_bit_uint.rep_eq flip_bit_uint.rep_eq)+

 
 by (fact uint.of_class_ring_bit_operations)

 

  uint_of_nat :: nat ==> uint
 is word_of_nat .

  nat_of_uint :: uint ==> nat
 is unat .

  uint_of_int :: int ==> uint
 is word_of_int .

  int_of_uint :: uint ==> int
 is uint .

 
 includes integer.lifting
 

  Uint :: integer ==> uint
 is word_of_int .

  integer_of_uint :: uint ==> integer
 is uint .

 

  uint: word_type_copy_more Abs_uint Rep_uint signed_drop_bit_uint
 uint_of_nat nat_of_uint uint_of_int int_of_uint Uint integer_of_uint
 apply standard
 apply (simp_all add: uint_of_nat.rep_eq nat_of_uint.rep_eq
 uint_of_int.rep_eq int_of_uint.rep_eq
 Uint.rep_eq integer_of_uint.rep_eq integer_eq_iff)
 done

  uint :: "{size, msb, bit_comprehension}"
 

  size_uint :: uint ==> nat is size .

  msb_uint :: uint ==> bool is msb .

  set_bits_uint :: (nat ==> bool) ==> uint is set_bits .
  set_bits_aux_uint :: (nat ==> bool) ==> nat ==> uint ==> uint is set_bits_aux .

  uint: word_type_copy_misc Abs_uint Rep_uint signed_drop_bit_uint
 uint_of_nat nat_of_uint uint_of_int int_of_uint Uint integer_of_uint dflt_size set_bits_aux_uint
 by (standard; transfer) simp_all

  using uint.of_class_bit_comprehension
 by simp_all standard

 

  Code setup

  code_module Uint (SML)
 
  Uint : sig
 val shiftl : Word.word -> IntInf.int -> Word.word
 val shiftr : Word.word -> IntInf.int -> Word.word
 val shiftr_signed : Word.word -> IntInf.int -> Word.word
 val test_bit : Word.word -> IntInf.int -> bool
  = struct

  shiftl x n =
 Word.<< (x, Word.fromLargeInt (IntInf.toLarge n))

  shiftr x n =
 Word.>> (x, Word.fromLargeInt (IntInf.toLarge n))

  shiftr_signed x n =
 Word.~>> (x, Word.fromLargeInt (IntInf.toLarge n))

  test_bit x n =
 Word.andb (x, Word.<< (0wx1, Word.fromLargeInt (IntInf.toLarge n))) <> Word.fromInt 0

end; (* struct Uint *)

code_reserved (SML) Uint

code_printing code_module Uint  (Haskell)
 module Uint(Int, Word, dflt_size) where

  import qualified Prelude
  import Data.Int(Int)
  import Data.Word(Word)
  import qualified Data.Bits

  dflt_size :: Prelude.Integer
  dflt_size = Prelude.toInteger (bitSize_aux (0::Word)) where
    bitSize_aux :: (Data.Bits.Bits a, Prelude.Bounded a) => a -> Int
    bitSize_aux = Data.Bits.bitSize\<close>
  and (Haskell_Quickcheck)
 \<open>module Uint(Int, Word, dflt_size) where

  import qualified Prelude
  import Data.Int(Int)
  import Data.Word(Word)
  import qualified Data.Bits

  dflt_size :: Prelude.Int
  dflt_size = bitSize_aux (0::Word) where
    bitSize_aux :: (Data.Bits.Bits a, Prelude.Bounded a) => a -> Int
    bitSize_aux = Data.Bits.bitSize
\<close>
code_reserved (Haskell) Uint dflt_size

text \<open>
  OCaml and Scala provide only signed bit numbers, so we use these and 
  implement sign-sensitive operations like comparisons manually.
\<close>

code_printing code_module "Uint" \<rightharpoonup> (OCaml)
\<open>module Uint : sig
  type t = int
  val dflt_size : Z.t
  val less : t -> t -> bool
  val less_eq : t -> t -> bool
  val shiftl : t -> Z.t -> t
  val shiftr : t -> Z.t -> t
  val shiftr_signed : t -> Z.t -> t
  val test_bit : t -> Z.t -> bool
  val int_mask : int
  val int32_mask : int32
  val int64_mask : int64
end = struct

type t = int

let dflt_size = Z.of_int Sys.int_size;;

(* negative numbers have their highest bit set, 
   so they are greater than positive ones *)

let less x y =
  if x<0 then
    y<0 && x<y
  else y < 0 || x < y;;

let less_eq x y =
  if x < 0 then
    y < 0 &&  x <= y
  else y < 0 || x <= y;;

let shiftl x n = x lsl (Z.to_int n);;

let shiftr x n = x lsr (Z.to_int n);;

let shiftr_signed x n = x asr (Z.to_int n);;

let test_bit x n = x land (1 lsl (Z.to_int n)) <> 0;;

let int_mask =
  if Sys.int_size < 32 then lnot 0 else 0xFFFFFFFF;;

let int32_mask = 
  if Sys.int_size < 32 then Int32.pred (Int32.shift_left Int32.one Sys.int_size)
  else Int32.of_string "0xFFFFFFFF";;

let int64_mask = 
  if Sys.int_size < 64 then Int64.pred (Int64.shift_left Int64.one Sys.int_size)
  else Int64.of_string "0xFFFFFFFFFFFFFFFF";;

end;; (*struct Uint*)\<close>
code_reserved (OCaml) Uint

code_printing code_module Uint  (Scala)
object Uint {
  dflt_size : BigInt = BigInt(32)

  less(x: Int, y: Int) : Boolean =
 x < 0 match {
 case true => y < 0 && x < y
 case false => y < 0 || x < y
 }

  less_eq(x: Int, y: Int) : Boolean =
 x < 0 match {
 case true => y < 0 && x <= y
 case false => y < 0 || x <= y
 }

  shiftl(x: Int, n: BigInt) : Int = x << n.intValue

  shiftr(x: Int, n: BigInt) : Int = x >>> n.intValue

  shiftr_signed(x: Int, n: BigInt) : Int = x >> n.intValue

  test_bit(x: Int, n: BigInt) : Boolean =
 (x & (1 << n.intValue)) != 0

  /* object Uint */

code_reserved (Scala) Uint


text 
 OCaml's conversion from Big\_int to int demands that the value fits into a signed integer.
 The following justifies the implementation.
 


context
  includes integer.lifting and bit_operations_syntax
begin

definition wivs_mask :: int where "wivs_mask = 2^ dflt_size - 1"
lift_definition wivs_mask_integer :: integer is wivs_mask .
lemma [code]: "wivs_mask_integer = 2 ^ dflt_size - 1"
  by transfer (simp add: wivs_mask_def)

definition wivs_shift :: int where "wivs_shift = 2 ^ dflt_size"
lift_definition wivs_shift_integer :: integer is wivs_shift .
lemma [code]: "wivs_shift_integer = 2 ^ dflt_size"
  by transfer (simp add: wivs_shift_def)

definition wivs_index :: nat where "wivs_index == dflt_size - 1"
lift_definition wivs_index_integer :: integer is "int wivs_index".
lemma wivs_index_integer_code[code]: "wivs_index_integer = dflt_size_integer - 1"
  by transfer (simp add: wivs_index_def of_nat_diff)

definition wivs_overflow :: int where "wivs_overflow == 2^ (dflt_size - 1)"
lift_definition wivs_overflow_integer :: integer is wivs_overflow .
lemma [code]: "wivs_overflow_integer = 2 ^ (dflt_size - 1)"
  by transfer (simp add: wivs_overflow_def)

definition wivs_least :: int where "wivs_least == - wivs_overflow"
lift_definition wivs_least_integer :: integer is wivs_least .
lemma [code]: "wivs_least_integer = - (2 ^ (dflt_size - 1))"
  by transfer (simp add: wivs_overflow_def wivs_least_def)

definition Uint_signed :: "integer ==> uint" where
  "Uint_signed i = (if i < wivs_least_integer wivs_overflow_integer i then undefined Uint i else Uint i)"

lemma Uint_code [code]:
  "Uint i =
  (let i' = i AND wivs_mask_integer in
   if bit i' wivs_index then Uint_signed (i' - wivs_shift_integer) else Uint_signed i')"
  including undefined_transfer 
  unfolding Uint_signed_def
  apply transfer
  apply (subst word_of_int_via_signed)
       apply (auto simp add: mask_eq_exp_minus_1 word_of_int_via_signed
         wivs_mask_def wivs_index_def wivs_overflow_def wivs_least_def wivs_shift_def Let_def)
  done

lemma Uint_signed_code [code]:
  "Rep_uint (Uint_signed i) =
  (if i < wivs_least_integer i wivs_overflow_integer then Rep_uint (undefined Uint i) else word_of_int (int_of_integer i))"
  unfolding Uint_signed_def Uint_def by (simp add: Abs_uint_inverse)
end

text 
 Avoid @{term Abs_uint} in generated code, use @{term Rep_uint'} instead.
 The symbolic implementations for code\_simp use @{term Rep_uint}.

 The new destructor @{term Rep_uint'} is executable.
 As the simplifier is given the [code abstract] equations literally,
 we cannot implement @{term Rep_uint} directly, because that makes code\_simp loop.

 If code generation raises Match, some equation probably contains @{term Rep_uint}
 ([code abstract] equations for @{typ uint} may use @{term Rep_uint} because
 these instances will be folded away.)
 


definition Rep_uint' where [simp]: "Rep_uint' = Rep_uint"

lemma Rep_uint'_code [code]: "Rep_uint' x = (BITS n. bit x n)"
  unfolding Rep_uint'_def by transfer (simp add: set_bits_bit_eq)

lift_definition Abs_uint' :: "dflt_size word ==> uint" is "λx :: dflt_size word. x" .

lemma Abs_uint'_code [code]:
  "Abs_uint' x = Uint (integer_of_int (uint x))"
including integer.lifting by transfer simp

declare [[code drop: "term_of_class.term_of :: uint ==> _"]]

lemma term_of_uint_code [code]:
  defines "TR typerep.Typerep" and "bit0 STR ''Numeral_Type.bit0''" 
  shows
  "term_of_class.term_of x =
   Code_Evaluation.App (Code_Evaluation.Const (STR ''Uint.uint.Abs_uint'') (TR (STR ''fun'') [TR (STR ''Word.word'') [TR (STR ''Uint.dflt_size'') []], TR (STR ''Uint.uint'') []]))
       (term_of_class.term_of (Rep_uint' x))"
  by(simp add: term_of_anything)

text Important:
 We must prevent the reflection oracle (eval-tac) to
 use our machine-dependent type.
 


code_printing
  type_constructor uint 
  (SML) "Word.word" and
  (Haskell) "Uint.Word" and
  (OCaml) "Uint.t" and
  (Scala) "Int" and
  (Eval) "*** \"Error: Machine dependent type\" ***" and
  (Quickcheck"Word.word" 
| constant dflt_size_integer 
  (SML) "(IntInf.fromLarge (Int.toLarge Word.wordSize))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.wordSize" and
  (Haskell) "Uint.dflt'_size" and
  (OCaml) "Uint.dflt'_size" and
  (Scala) "Uint.dflt'_size"
| constant Uint 
  (SML) "Word.fromLargeInt (IntInf.toLarge _)" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.fromInt" and
  (Haskell) "(Prelude.fromInteger _ :: Uint.Word)" and
  (Haskell_Quickcheck) "(Prelude.fromInteger (Prelude.toInteger _) :: Uint.Word)" and
  (Scala) "_.intValue"
| constant Uint_signed 
  (OCaml) "Z.to'_int"
| constant "0 :: uint" 
  (SML) "(Word.fromInt 0)" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"(Word.fromInt 0)" and
  (Haskell) "(0 :: Uint.Word)" and
  (OCaml) "0" and
  (Scala) "0"
| constant "1 :: uint" 
  (SML) "(Word.fromInt 1)" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"(Word.fromInt 1)" and
  (Haskell) "(1 :: Uint.Word)" and
  (OCaml) "1" and
  (Scala) "1"
| constant "plus :: uint ==> _ " 
  (SML) "Word.+ ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.+ ((_), (_))" and
  (Haskell) infixl 6 "+" and
  (OCaml) "Pervasives.(+)" and
  (Scala) infixl 7 "+"
| constant "uminus :: uint ==> _" 
  (SML) "Word.~" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.~" and
  (Haskell) "negate" and
  (OCaml) "Pervasives.(~-)" and
  (Scala) "!(- _)"
| constant "minus :: uint ==> _" 
  (SML) "Word.- ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.- ((_), (_))" and
  (Haskell) infixl 6 "-" and
  (OCaml) "Pervasives.(-)" and
  (Scala) infixl 7 "-"
| constant "times :: uint ==> _ ==> _" 
  (SML) "Word.* ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.* ((_), (_))" and
  (Haskell) infixl 7 "*" and
  (OCaml) "Pervasives.( * )" and
  (Scala) infixl 8 "*"
| constant "HOL.equal :: uint ==> _ ==> bool" 
  (SML) "!((_ : Word.word) = _)" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"!((_ : Word.word) = _)" and
  (Haskell) infix 4 "==" and
  (OCaml) "(Pervasives.(=):Uint.t -> Uint.t -> bool)" and
  (Scala) infixl 5 "=="
| class_instance uint :: equal 
  (Haskell) -
| constant "less_eq :: uint ==> _ ==> bool" 
  (SML) "Word.<= ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.<= ((_), (_))" and
  (Haskell) infix 4 "<=" and
  (OCaml) "Uint.less'_eq" and
  (Scala) "Uint.less'_eq"
| constant "less :: uint ==> _ ==> bool" 
  (SML) "Word.< ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.< ((_), (_))" and
  (Haskell) infix 4 "<" and
  (OCaml) "Uint.less" and
  (Scala) "Uint.less"
| constant "Bit_Operations.not :: uint ==> _" 
  (SML) "Word.notb" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.notb" and
  (Haskell) "Data'_Bits.complement" and
  (OCaml) "Pervasives.lnot" and
  (Scala) "_.unary'_~"
| constant "Bit_Operations.and :: uint ==> _" 
  (SML) "Word.andb ((_),/ (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.andb ((_),/ (_))" and
  (Haskell) infixl 7 "Data_Bits..&." and
  (OCaml) "Pervasives.(land)" and
  (Scala) infixl 3 "&"
| constant "Bit_Operations.or :: uint ==> _" 
  (SML) "Word.orb ((_),/ (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.orb ((_),/ (_))" and
  (Haskell) infixl 5 "Data_Bits..|." and
  (OCaml) "Pervasives.(lor)" and
  (Scala) infixl 1 "|"
| constant "Bit_Operations.xor :: uint ==> _" 
  (SML) "Word.xorb ((_),/ (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.xorb ((_),/ (_))" and
  (Haskell) "Data'_Bits.xor" and
  (OCaml) "Pervasives.(lxor)" and
  (Scala) infixl 2 "^"

definition uint_divmod :: "uint ==> uint ==> uint × uint" where
  "uint_divmod x y =
  (if y = 0 then (undefined ((div) :: uint ==> _) x (0 :: uint), undefined ((mod) :: uint ==> _) x (0 :: uint))
  else (x div y, x mod y))"

definition uint_div :: "uint ==> uint ==> uint" 
where "uint_div x y = fst (uint_divmod x y)"

definition uint_mod :: "uint ==> uint ==> uint" 
where "uint_mod x y = snd (uint_divmod x y)"

lemma div_uint_code [code]: "x div y = (if y = 0 then 0 else uint_div x y)"
including undefined_transfer unfolding uint_divmod_def uint_div_def
by transfer(simp add: word_div_def)

lemma mod_uint_code [code]: "x mod y = (if y = 0 then x else uint_mod x y)"
including undefined_transfer unfolding uint_mod_def uint_divmod_def
by transfer(simp add: word_mod_def)

definition uint_sdiv :: "uint ==> uint ==> uint"
where [code del]:
  "uint_sdiv x y =
   (if y = 0 then undefined ((div) :: uint ==> _) x (0 :: uint)
    else Abs_uint (Rep_uint x sdiv Rep_uint y))"

definition div0_uint :: "uint ==> uint"
where [code del]: "div0_uint x = undefined ((div) :: uint ==> _) x (0 :: uint)"
declare [[code abort: div0_uint]]

definition mod0_uint :: "uint ==> uint"
where [code del]: "mod0_uint x = undefined ((mod) :: uint ==> _) x (0 :: uint)"
declare [[code abort: mod0_uint]]

definition wivs_overflow_uint :: uint 
  where "wivs_overflow_uint push_bit (dflt_size - 1) 1"

lemma Rep_uint_wivs_overflow_uint_eq:
  Rep_uint wivs_overflow_uint = 2 ^ (dflt_size - Suc 0)
  by (simp add: wivs_overflow_uint_def one_uint.rep_eq push_bit_uint.rep_eq uint.word_of_power push_bit_eq_mult)

lemma wivs_overflow_uint_greater_eq_0:
  wivs_overflow_uint > 0
  apply (simp add: less_uint.rep_eq zero_uint.rep_eq Rep_uint_wivs_overflow_uint_eq)
  apply transfer
  apply (simp add: take_bit_push_bit push_bit_eq_mult)
  done

lemma uint_divmod_code [code]:
  "uint_divmod x y =
  (if wivs_overflow_uint y then if x < y then (0, x) else (1, x - y)
   else if y = 0 then (div0_uint x, mod0_uint x)
   else let q = push_bit 1 (uint_sdiv (drop_bit 1 x) y);
            r = x - q * y
        in if r y then (q + 1, r - y) else (q, r))"
proof (cases y = 0)
  case True
  moreover have x 0
    by transfer simp
  moreover note wivs_overflow_uint_greater_eq_0
  ultimately show ?thesis
    by (auto simp add: uint_divmod_def div0_uint_def mod0_uint_def not_less)
next
  case False
  then show ?thesis
    including undefined_transfer 
    unfolding uint_divmod_def uint_sdiv_def div0_uint_def mod0_uint_def
      wivs_overflow_uint_def
    apply transfer
    apply (simp add: divmod_via_sdivmod push_bit_of_1)
    done
qed

lemma uint_sdiv_code [code]:
  "Rep_uint (uint_sdiv x y) =
   (if y = 0 then Rep_uint (undefined ((div) :: uint ==> _) x (0 :: uint))
    else Rep_uint x sdiv Rep_uint y)"
unfolding uint_sdiv_def by(simp add: Abs_uint_inverse)

text 
 Note that we only need a translation for signed division, but not for the remainder
 because @{thm uint_divmod_code} computes both with division only.
 


code_printing
  constant uint_div 
  (SML) "Word.div ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.div ((_), (_))" and
  (Haskell) "Prelude.div"
| constant uint_mod 
  (SML) "Word.mod ((_), (_))" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Word.mod ((_), (_))" and
  (Haskell) "Prelude.mod"
| constant uint_divmod 
  (Haskell) "divmod"
| constant uint_sdiv 
  (OCaml) "Pervasives.('/)" and
  (Scala) "_ '/ _"


global_interpretation uint: word_type_copy_target_language Abs_uint Rep_uint signed_drop_bit_uint
  uint_of_nat nat_of_uint uint_of_int int_of_uint Uint integer_of_uint dflt_size set_bits_aux_uint of_nat dflt_size wivs_index
  defines uint_test_bit = uint.test_bit
    and uint_shiftl = uint.shiftl
    and uint_shiftr = uint.shiftr
    and uint_sshiftr = uint.sshiftr
  by standard (simp_all add: wivs_index_def)

code_printing constant uint_test_bit 
  (SML) "Uint.test'_bit" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Uint.test'_bit" and
  (Haskell) "Data'_Bits.testBitBounded" and
  (OCaml) "Uint.test'_bit" and
  (Scala) "Uint.test'_bit"

code_printing constant uint_shiftl 
  (SML) "Uint.shiftl" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Uint.shiftl" and
  (Haskell) "Data'_Bits.shiftlBounded" and
  (OCaml) "Uint.shiftl" and
  (Scala) "Uint.shiftl"

code_printing constant uint_shiftr 
  (SML) "Uint.shiftr" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Uint.shiftr" and
  (Haskell) "Data'_Bits.shiftrBounded" and
  (OCaml) "Uint.shiftr" and
  (Scala) "Uint.shiftr"

code_printing constant uint_sshiftr 
  (SML) "Uint.shiftr'_signed" and
  (Eval) "(raise (Fail \"Machine dependent code\"))" and
  (Quickcheck"Uint.shiftr'_signed" and
  (Haskell) 
    "(Prelude.fromInteger (Prelude.toInteger (Data'_Bits.shiftrBounded (Prelude.fromInteger (Prelude.toInteger _) :: Uint.Int) _)) :: Uint.Word)" and
  (OCaml) "Uint.shiftr'_signed" and
  (Scala) "Uint.shiftr'_signed"

lemma uint_msb_test_bit: "msb x bit (x :: uint) wivs_index"
  by transfer (simp add: msb_word_iff_bit wivs_index_def)

lemma msb_uint_code [code]: "msb x uint_test_bit x wivs_index_integer"
  by (simp add: uint_msb_test_bit uint.bit_code wivs_index_integer_def integer_of_nat_eq_of_nat wivs_index_def)

lemma uint_of_int_code [code]: "uint_of_int i = (BITS n. bit i n)"
  by transfer (simp add: word_of_int_conv_set_bits)


section Quickcheck setup

definition uint_of_natural :: "natural ==> uint"
where "uint_of_natural x Uint (integer_of_natural x)"

instantiation uint :: "{random, exhaustive, full_exhaustive}" begin
definition "random_uint qc_random_cnv uint_of_natural"
definition "exhaustive_uint qc_exhaustive_cnv uint_of_natural"
definition "full_exhaustive_uint qc_full_exhaustive_cnv uint_of_natural"
instance ..
end

instantiation uint :: narrowing begin

interpretation quickcheck_narrowing_samples
  "λi. (Uint i, Uint (- i))" "0"
  "Typerep.Typerep (STR ''Uint.uint'') []" .

definition "narrowing_uint d = qc_narrowing_drawn_from (narrowing_samples d) d"
lemmas partial_term_of_uint [code] = partial_term_of_code

instance ..
end

end

Messung V0.5 in Prozent
C=85 H=98 G=91

¤ Dauer der Verarbeitung: 0.11 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen



NIST Cobol Testsuite



Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.






                                                                                                                                                                                                                                                                                                                                                                                                     


Neuigkeiten

     Aktuelles
     Motto des Tages

Software

      Eigene Quellcodes
      Fremde Quellcodes
     Quellcodebibliothek
      Suchen

Aktivitäten

     Artikel über Sicherheit
     Anleitung zur Aktivierung von SSL

Muße

     Gedichte
     Musik
     Bilder

Jenseits des Üblichen ....
    

Besucherstatistik

Besucherstatistik

Monitoring

Montastic status badge