src/HOL/Word/Word.thy
author haftmann
Wed, 17 Feb 2016 21:51:57 +0100
changeset 62348 9a5f43dac883
parent 61941 31f2105521ee
child 62390 842917225d56
permissions -rw-r--r--
dropped various legacy fact bindings
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
29628
d9294387ab0e entry point for Word library now named Word
haftmann
parents: 27137
diff changeset
     1
(*  Title:      HOL/Word/Word.thy
46124
3ee75fe01986 misc tuning;
wenzelm
parents: 46064
diff changeset
     2
    Author:     Jeremy Dawson and Gerwin Klein, NICTA
24333
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     3
*)
e77ea0ea7f2c * HOL-Word:
kleing
parents:
diff changeset
     4
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
     5
section \<open>A type of finite bit strings\<close>
24350
4d74f37c6367 headers for document generation
huffman
parents: 24333
diff changeset
     6
29628
d9294387ab0e entry point for Word library now named Word
haftmann
parents: 27137
diff changeset
     7
theory Word
41413
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41060
diff changeset
     8
imports
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41060
diff changeset
     9
  Type_Length
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41060
diff changeset
    10
  "~~/src/HOL/Library/Boolean_Algebra"
54854
3324a0078636 prefer "Bits" as theory name for abstract bit operations, similar to "Orderings", "Lattices", "Groups" etc.
haftmann
parents: 54849
diff changeset
    11
  Bits_Bit
41413
64cd30d6b0b8 explicit file specifications -- avoid secondary load path;
wenzelm
parents: 41060
diff changeset
    12
  Bool_List_Representation
53062
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 51717
diff changeset
    13
  Misc_Typedef
3af1a6020014 some vague grouping of related theorems, with slight tuning of headings and sorting out of dubious lemmas into separate theory
haftmann
parents: 51717
diff changeset
    14
  Word_Miscellaneous
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
    15
begin
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
    16
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    17
text \<open>See @{file "Examples/WordExamples.thy"} for examples.\<close>
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    18
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    19
subsection \<open>Type definition\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
    20
61260
e6f03fae14d5 explicit indication of overloaded typedefs;
wenzelm
parents: 61169
diff changeset
    21
typedef (overloaded) 'a word = "{(0::int) ..< 2 ^ len_of TYPE('a::len0)}"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
    22
  morphisms uint Abs_word by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
    23
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    24
lemma uint_nonnegative:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    25
  "0 \<le> uint w"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    26
  using word.uint [of w] by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    27
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    28
lemma uint_bounded:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    29
  fixes w :: "'a::len0 word"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    30
  shows "uint w < 2 ^ len_of TYPE('a)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    31
  using word.uint [of w] by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    32
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    33
lemma uint_idem:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    34
  fixes w :: "'a::len0 word"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    35
  shows "uint w mod 2 ^ len_of TYPE('a) = uint w"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    36
  using uint_nonnegative uint_bounded by (rule mod_pos_pos_trivial)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    37
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    38
lemma word_uint_eq_iff:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    39
  "a = b \<longleftrightarrow> uint a = uint b"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    40
  by (simp add: uint_inject)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    41
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    42
lemma word_uint_eqI:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    43
  "uint a = uint b \<Longrightarrow> a = b"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    44
  by (simp add: word_uint_eq_iff)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    45
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 60754
diff changeset
    46
definition word_of_int :: "int \<Rightarrow> 'a::len0 word"
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
    47
where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    48
  \<comment> \<open>representation of words using unsigned or signed bins,
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    49
    only difference in these is the type class\<close>
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    50
  "word_of_int k = Abs_word (k mod 2 ^ len_of TYPE('a))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    51
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    52
lemma uint_word_of_int:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    53
  "uint (word_of_int k :: 'a::len0 word) = k mod 2 ^ len_of TYPE('a)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    54
  by (auto simp add: word_of_int_def intro: Abs_word_inverse)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    55
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    56
lemma word_of_int_uint:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    57
  "word_of_int (uint w) = w"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    58
  by (simp add: word_of_int_def uint_idem uint_inverse)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
    59
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    60
lemma split_word_all:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    61
  "(\<And>x::'a::len0 word. PROP P x) \<equiv> (\<And>x. PROP P (word_of_int x))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    62
proof
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    63
  fix x :: "'a word"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    64
  assume "\<And>x. PROP P (word_of_int x)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    65
  then have "PROP P (word_of_int (uint x))" .
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    66
  then show "PROP P x" by (simp add: word_of_int_uint)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    67
qed
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    68
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    69
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    70
subsection \<open>Type conversions and casting\<close>
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    71
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    72
definition sint :: "'a::len word \<Rightarrow> int"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    73
where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    74
  \<comment> \<open>treats the most-significant-bit as a sign bit\<close>
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    75
  sint_uint: "sint w = sbintrunc (len_of TYPE ('a) - 1) (uint w)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    76
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    77
definition unat :: "'a::len0 word \<Rightarrow> nat"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    78
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    79
  "unat w = nat (uint w)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    80
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    81
definition uints :: "nat \<Rightarrow> int set"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    82
where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
    83
  \<comment> "the sets of integers representing the words"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    84
  "uints n = range (bintrunc n)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    85
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    86
definition sints :: "nat \<Rightarrow> int set"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    87
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    88
  "sints n = range (sbintrunc (n - 1))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    89
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    90
lemma uints_num:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    91
  "uints n = {i. 0 \<le> i \<and> i < 2 ^ n}"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    92
  by (simp add: uints_def range_bintrunc)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    93
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    94
lemma sints_num:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    95
  "sints n = {i. - (2 ^ (n - 1)) \<le> i \<and> i < 2 ^ (n - 1)}"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    96
  by (simp add: sints_def range_sbintrunc)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    97
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    98
definition unats :: "nat \<Rightarrow> nat set"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
    99
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   100
  "unats n = {i. i < 2 ^ n}"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   101
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   102
definition norm_sint :: "nat \<Rightarrow> int \<Rightarrow> int"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   103
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   104
  "norm_sint n w = (w + 2 ^ (n - 1)) mod 2 ^ n - 2 ^ (n - 1)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   105
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   106
definition scast :: "'a::len word \<Rightarrow> 'b::len word"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   107
where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   108
  \<comment> "cast a word to a different length"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   109
  "scast w = word_of_int (sint w)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   110
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   111
definition ucast :: "'a::len0 word \<Rightarrow> 'b::len0 word"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   112
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   113
  "ucast w = word_of_int (uint w)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   114
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   115
instantiation word :: (len0) size
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   116
begin
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   117
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   118
definition
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   119
  word_size: "size (w :: 'a word) = len_of TYPE('a)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   120
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   121
instance ..
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   122
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   123
end
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   124
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   125
lemma word_size_gt_0 [iff]:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   126
  "0 < size (w::'a::len word)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   127
  by (simp add: word_size)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   128
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   129
lemmas lens_gt_0 = word_size_gt_0 len_gt_0
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   130
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   131
lemma lens_not_0 [iff]:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   132
  shows "size (w::'a::len word) \<noteq> 0"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   133
  and "len_of TYPE('a::len) \<noteq> 0"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   134
  by auto
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   135
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   136
definition source_size :: "('a::len0 word \<Rightarrow> 'b) \<Rightarrow> nat"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   137
where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   138
  \<comment> "whether a cast (or other) function is to a longer or shorter length"
58053
decb3e2528e7 removed needless, and for (newer versions of?) Haskell problematic code equations
blanchet
parents: 57696
diff changeset
   139
  [code del]: "source_size c = (let arb = undefined; x = c arb in size arb)"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   140
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   141
definition target_size :: "('a \<Rightarrow> 'b::len0 word) \<Rightarrow> nat"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   142
where
58053
decb3e2528e7 removed needless, and for (newer versions of?) Haskell problematic code equations
blanchet
parents: 57696
diff changeset
   143
  [code del]: "target_size c = size (c undefined)"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   144
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   145
definition is_up :: "('a::len0 word \<Rightarrow> 'b::len0 word) \<Rightarrow> bool"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   146
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   147
  "is_up c \<longleftrightarrow> source_size c \<le> target_size c"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   148
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   149
definition is_down :: "('a :: len0 word \<Rightarrow> 'b :: len0 word) \<Rightarrow> bool"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   150
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   151
  "is_down c \<longleftrightarrow> target_size c \<le> source_size c"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   152
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   153
definition of_bl :: "bool list \<Rightarrow> 'a::len0 word"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   154
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   155
  "of_bl bl = word_of_int (bl_to_bin bl)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   156
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   157
definition to_bl :: "'a::len0 word \<Rightarrow> bool list"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   158
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   159
  "to_bl w = bin_to_bl (len_of TYPE ('a)) (uint w)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   160
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   161
definition word_reverse :: "'a::len0 word \<Rightarrow> 'a word"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   162
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   163
  "word_reverse w = of_bl (rev (to_bl w))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   164
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   165
definition word_int_case :: "(int \<Rightarrow> 'b) \<Rightarrow> 'a::len0 word \<Rightarrow> 'b" 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   166
where
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   167
  "word_int_case f w = f (uint w)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   168
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   169
translations
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   170
  "case x of XCONST of_int y => b" == "CONST word_int_case (%y. b) x"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   171
  "case x of (XCONST of_int :: 'a) y => b" => "CONST word_int_case (%y. b) x"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   172
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   173
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   174
subsection \<open>Correspondence relation for theorem transfer\<close>
55817
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   175
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   176
definition cr_word :: "int \<Rightarrow> 'a::len0 word \<Rightarrow> bool"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   177
where
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   178
  "cr_word = (\<lambda>x y. word_of_int x = y)"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   179
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   180
lemma Quotient_word:
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   181
  "Quotient (\<lambda>x y. bintrunc (len_of TYPE('a)) x = bintrunc (len_of TYPE('a)) y)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   182
    word_of_int uint (cr_word :: _ \<Rightarrow> 'a::len0 word \<Rightarrow> bool)"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   183
  unfolding Quotient_alt_def cr_word_def
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   184
  by (simp add: no_bintr_alt1 word_of_int_uint) (simp add: word_of_int_def Abs_word_inject)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   185
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   186
lemma reflp_word:
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   187
  "reflp (\<lambda>x y. bintrunc (len_of TYPE('a::len0)) x = bintrunc (len_of TYPE('a)) y)"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   188
  by (simp add: reflp_def)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   189
59487
adaa430fc0f7 default abstypes and default abstract equations make technical (no_code) annotation superfluous
haftmann
parents: 59094
diff changeset
   190
setup_lifting Quotient_word reflp_word
55817
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   191
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   192
text \<open>TODO: The next lemma could be generated automatically.\<close>
55817
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   193
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   194
lemma uint_transfer [transfer_rule]:
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
   195
  "(rel_fun pcr_word op =) (bintrunc (len_of TYPE('a)))
55817
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   196
    (uint :: 'a::len0 word \<Rightarrow> int)"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
   197
  unfolding rel_fun_def word.pcr_cr_eq cr_word_def
55817
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   198
  by (simp add: no_bintr_alt1 uint_word_of_int)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   199
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   200
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   201
subsection \<open>Basic code generation setup\<close>
55817
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   202
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   203
definition Word :: "int \<Rightarrow> 'a::len0 word"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   204
where
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   205
  [code_post]: "Word = word_of_int"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   206
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   207
lemma [code abstype]:
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   208
  "Word (uint w) = w"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   209
  by (simp add: Word_def word_of_int_uint)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   210
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   211
declare uint_word_of_int [code abstract]
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   212
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   213
instantiation word :: (len0) equal
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   214
begin
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   215
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   216
definition equal_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> bool"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   217
where
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   218
  "equal_word k l \<longleftrightarrow> HOL.equal (uint k) (uint l)"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   219
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   220
instance proof
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   221
qed (simp add: equal equal_word_def word_uint_eq_iff)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   222
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   223
end
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   224
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   225
notation fcomp (infixl "\<circ>>" 60)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   226
notation scomp (infixl "\<circ>\<rightarrow>" 60)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   227
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   228
instantiation word :: ("{len0, typerep}") random
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   229
begin
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   230
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   231
definition
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   232
  "random_word i = Random.range i \<circ>\<rightarrow> (\<lambda>k. Pair (
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   233
     let j = word_of_int (int_of_integer (integer_of_natural k)) :: 'a word
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   234
     in (j, \<lambda>_::unit. Code_Evaluation.term_of j)))"
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   235
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   236
instance ..
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   237
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   238
end
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   239
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   240
no_notation fcomp (infixl "\<circ>>" 60)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   241
no_notation scomp (infixl "\<circ>\<rightarrow>" 60)
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   242
0bc0217387a5 earlier setup of transfer, without dependency on psychodelic interpretations
haftmann
parents: 55816
diff changeset
   243
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   244
subsection \<open>Type-definition locale instantiations\<close>
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   245
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   246
lemmas uint_0 = uint_nonnegative (* FIXME duplicate *)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   247
lemmas uint_lt = uint_bounded (* FIXME duplicate *)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   248
lemmas uint_mod_same = uint_idem (* FIXME duplicate *)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   249
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   250
lemma td_ext_uint: 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   251
  "td_ext (uint :: 'a word \<Rightarrow> int) word_of_int (uints (len_of TYPE('a::len0))) 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   252
    (\<lambda>w::int. w mod 2 ^ len_of TYPE('a))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   253
  apply (unfold td_ext_def')
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   254
  apply (simp add: uints_num word_of_int_def bintrunc_mod2p)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   255
  apply (simp add: uint_mod_same uint_0 uint_lt
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   256
                   word.uint_inverse word.Abs_word_inverse int_mod_lem)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   257
  done
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   258
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   259
interpretation word_uint:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   260
  td_ext "uint::'a::len0 word \<Rightarrow> int" 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   261
         word_of_int 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   262
         "uints (len_of TYPE('a::len0))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   263
         "\<lambda>w. w mod 2 ^ len_of TYPE('a::len0)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   264
  by (fact td_ext_uint)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   265
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   266
lemmas td_uint = word_uint.td_thm
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   267
lemmas int_word_uint = word_uint.eq_norm
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   268
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   269
lemma td_ext_ubin:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   270
  "td_ext (uint :: 'a word \<Rightarrow> int) word_of_int (uints (len_of TYPE('a::len0)))
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   271
    (bintrunc (len_of TYPE('a)))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   272
  by (unfold no_bintr_alt1) (fact td_ext_uint)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   273
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   274
interpretation word_ubin:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   275
  td_ext "uint::'a::len0 word \<Rightarrow> int" 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   276
         word_of_int 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   277
         "uints (len_of TYPE('a::len0))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   278
         "bintrunc (len_of TYPE('a::len0))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   279
  by (fact td_ext_ubin)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   280
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   281
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   282
subsection \<open>Arithmetic operations\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   283
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   284
lift_definition word_succ :: "'a::len0 word \<Rightarrow> 'a word" is "\<lambda>x. x + 1"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   285
  by (metis bintr_ariths(6))
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   286
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   287
lift_definition word_pred :: "'a::len0 word \<Rightarrow> 'a word" is "\<lambda>x. x - 1"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   288
  by (metis bintr_ariths(7))
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   289
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   290
instantiation word :: (len0) "{neg_numeral, Divides.div, comm_monoid_mult, comm_ring}"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   291
begin
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   292
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   293
lift_definition zero_word :: "'a word" is "0" .
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   294
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   295
lift_definition one_word :: "'a word" is "1" .
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   296
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   297
lift_definition plus_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> 'a word" is "op +"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   298
  by (metis bintr_ariths(2))
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   299
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   300
lift_definition minus_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> 'a word" is "op -"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   301
  by (metis bintr_ariths(3))
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   302
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   303
lift_definition uminus_word :: "'a word \<Rightarrow> 'a word" is uminus
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   304
  by (metis bintr_ariths(5))
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   305
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   306
lift_definition times_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> 'a word" is "op *"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   307
  by (metis bintr_ariths(4))
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   308
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   309
definition
60429
d3d1e185cd63 uniform _ div _ as infix syntax for ring division
haftmann
parents: 60352
diff changeset
   310
  word_div_def: "a div b = word_of_int (uint a div uint b)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   311
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   312
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   313
  word_mod_def: "a mod b = word_of_int (uint a mod uint b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   314
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   315
instance
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61076
diff changeset
   316
  by standard (transfer, simp add: algebra_simps)+
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   317
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   318
end
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   319
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   320
text \<open>Legacy theorems:\<close>
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   321
47611
e3c699a1fae6 add code lemmas for word operations
huffman
parents: 47567
diff changeset
   322
lemma word_arith_wis [code]: shows
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   323
  word_add_def: "a + b = word_of_int (uint a + uint b)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   324
  word_sub_wi: "a - b = word_of_int (uint a - uint b)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   325
  word_mult_def: "a * b = word_of_int (uint a * uint b)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   326
  word_minus_def: "- a = word_of_int (- uint a)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   327
  word_succ_alt: "word_succ a = word_of_int (uint a + 1)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   328
  word_pred_alt: "word_pred a = word_of_int (uint a - 1)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   329
  word_0_wi: "0 = word_of_int 0" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   330
  word_1_wi: "1 = word_of_int 1"
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   331
  unfolding plus_word_def minus_word_def times_word_def uminus_word_def
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   332
  unfolding word_succ_def word_pred_def zero_word_def one_word_def
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   333
  by simp_all
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   334
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   335
lemmas arths = 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
   336
  bintr_ariths [THEN word_ubin.norm_eq_iff [THEN iffD1], folded word_ubin.eq_norm]
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   337
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   338
lemma wi_homs: 
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   339
  shows
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   340
  wi_hom_add: "word_of_int a + word_of_int b = word_of_int (a + b)" and
46013
d2f179d26133 remove some duplicate lemmas
huffman
parents: 46012
diff changeset
   341
  wi_hom_sub: "word_of_int a - word_of_int b = word_of_int (a - b)" and
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   342
  wi_hom_mult: "word_of_int a * word_of_int b = word_of_int (a * b)" and
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   343
  wi_hom_neg: "- word_of_int a = word_of_int (- a)" and
46000
871bdab23f5c remove some uses of Int.succ and Int.pred
huffman
parents: 45998
diff changeset
   344
  wi_hom_succ: "word_succ (word_of_int a) = word_of_int (a + 1)" and
871bdab23f5c remove some uses of Int.succ and Int.pred
huffman
parents: 45998
diff changeset
   345
  wi_hom_pred: "word_pred (word_of_int a) = word_of_int (a - 1)"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   346
  by (transfer, simp)+
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   347
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   348
lemmas wi_hom_syms = wi_homs [symmetric]
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   349
46013
d2f179d26133 remove some duplicate lemmas
huffman
parents: 46012
diff changeset
   350
lemmas word_of_int_homs = wi_homs word_0_wi word_1_wi
46009
5cb7ef5bfef2 remove duplicate lemma lists
huffman
parents: 46001
diff changeset
   351
5cb7ef5bfef2 remove duplicate lemma lists
huffman
parents: 46001
diff changeset
   352
lemmas word_of_int_hom_syms = word_of_int_homs [symmetric]
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   353
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   354
instance word :: (len) comm_ring_1
45810
024947a0e492 prove class instances without extra lemmas
huffman
parents: 45809
diff changeset
   355
proof
024947a0e492 prove class instances without extra lemmas
huffman
parents: 45809
diff changeset
   356
  have "0 < len_of TYPE('a)" by (rule len_gt_0)
024947a0e492 prove class instances without extra lemmas
huffman
parents: 45809
diff changeset
   357
  then show "(0::'a word) \<noteq> 1"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
   358
    by - (transfer, auto simp add: gr0_conv_Suc)
45810
024947a0e492 prove class instances without extra lemmas
huffman
parents: 45809
diff changeset
   359
qed
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   360
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   361
lemma word_of_nat: "of_nat n = word_of_int (int n)"
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   362
  by (induct n) (auto simp add : word_of_int_hom_syms)
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   363
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   364
lemma word_of_int: "of_int = word_of_int"
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   365
  apply (rule ext)
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   366
  apply (case_tac x rule: int_diff_cases)
46013
d2f179d26133 remove some duplicate lemmas
huffman
parents: 46012
diff changeset
   367
  apply (simp add: word_of_nat wi_hom_sub)
45545
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   368
  done
26aebb8ac9c1 Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents: 45544
diff changeset
   369
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   370
definition udvd :: "'a::len word => 'a::len word => bool" (infixl "udvd" 50)
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   371
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   372
  "a udvd b = (EX n>=0. uint b = n * uint a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   373
45547
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   374
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   375
subsection \<open>Ordering\<close>
45547
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   376
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   377
instantiation word :: (len0) linorder
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   378
begin
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   379
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   380
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   381
  word_le_def: "a \<le> b \<longleftrightarrow> uint a \<le> uint b"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   382
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   383
definition
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   384
  word_less_def: "a < b \<longleftrightarrow> uint a < uint b"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   385
45547
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   386
instance
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61076
diff changeset
   387
  by standard (auto simp: word_less_def word_le_def)
45547
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   388
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   389
end
94c37f3df10f HOL-Word: removed more duplicate theorems
huffman
parents: 45546
diff changeset
   390
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   391
definition word_sle :: "'a :: len word => 'a word => bool" ("(_/ <=s _)" [50, 51] 50)
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   392
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   393
  "a <=s b = (sint a <= sint b)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   394
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   395
definition word_sless :: "'a :: len word => 'a word => bool" ("(_/ <s _)" [50, 51] 50)
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   396
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   397
  "(x <s y) = (x <=s y & x ~= y)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   398
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   399
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   400
subsection \<open>Bit-wise operations\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   401
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   402
instantiation word :: (len0) bits
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   403
begin
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   404
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   405
lift_definition bitNOT_word :: "'a word \<Rightarrow> 'a word" is bitNOT
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   406
  by (metis bin_trunc_not)
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   407
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   408
lift_definition bitAND_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> 'a word" is bitAND
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   409
  by (metis bin_trunc_and)
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   410
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   411
lift_definition bitOR_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> 'a word" is bitOR
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   412
  by (metis bin_trunc_or)
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   413
47387
a0f257197741 remove now-unnecessary type annotations from lift_definition commands
huffman
parents: 47377
diff changeset
   414
lift_definition bitXOR_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> 'a word" is bitXOR
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   415
  by (metis bin_trunc_xor)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   416
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   417
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   418
  word_test_bit_def: "test_bit a = bin_nth (uint a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   419
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   420
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   421
  word_set_bit_def: "set_bit a n x =
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
   422
   word_of_int (bin_sc n x (uint a))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   423
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   424
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   425
  word_set_bits_def: "(BITS n. f n) = of_bl (bl_of_nth (len_of TYPE ('a)) f)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   426
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   427
definition
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
   428
  word_lsb_def: "lsb a \<longleftrightarrow> bin_last (uint a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   429
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   430
definition shiftl1 :: "'a word \<Rightarrow> 'a word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   431
where
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
   432
  "shiftl1 w = word_of_int (uint w BIT False)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   433
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   434
definition shiftr1 :: "'a word \<Rightarrow> 'a word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   435
where
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   436
  \<comment> "shift right as unsigned or as signed, ie logical or arithmetic"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   437
  "shiftr1 w = word_of_int (bin_rest (uint w))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   438
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   439
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   440
  shiftl_def: "w << n = (shiftl1 ^^ n) w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   441
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   442
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   443
  shiftr_def: "w >> n = (shiftr1 ^^ n) w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   444
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   445
instance ..
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   446
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   447
end
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   448
47611
e3c699a1fae6 add code lemmas for word operations
huffman
parents: 47567
diff changeset
   449
lemma [code]: shows
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   450
  word_not_def: "NOT (a::'a::len0 word) = word_of_int (NOT (uint a))" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   451
  word_and_def: "(a::'a word) AND b = word_of_int (uint a AND uint b)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   452
  word_or_def: "(a::'a word) OR b = word_of_int (uint a OR uint b)" and
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   453
  word_xor_def: "(a::'a word) XOR b = word_of_int (uint a XOR uint b)"
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   454
  unfolding bitNOT_word_def bitAND_word_def bitOR_word_def bitXOR_word_def
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   455
  by simp_all
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
   456
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   457
instantiation word :: (len) bitss
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   458
begin
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   459
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   460
definition
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   461
  word_msb_def: 
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
   462
  "msb a \<longleftrightarrow> bin_sign (sint a) = -1"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   463
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   464
instance ..
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   465
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   466
end
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   467
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   468
definition setBit :: "'a :: len0 word => nat => 'a word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   469
where 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   470
  "setBit w n = set_bit w n True"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   471
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   472
definition clearBit :: "'a :: len0 word => nat => 'a word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   473
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   474
  "clearBit w n = set_bit w n False"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   475
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   476
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   477
subsection \<open>Shift operations\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   478
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   479
definition sshiftr1 :: "'a :: len word => 'a word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   480
where 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   481
  "sshiftr1 w = word_of_int (bin_rest (sint w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   482
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   483
definition bshiftr1 :: "bool => 'a :: len word => 'a word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   484
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   485
  "bshiftr1 b w = of_bl (b # butlast (to_bl w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   486
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   487
definition sshiftr :: "'a :: len word => nat => 'a word" (infixl ">>>" 55)
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   488
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   489
  "w >>> n = (sshiftr1 ^^ n) w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   490
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   491
definition mask :: "nat => 'a::len word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   492
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   493
  "mask n = (1 << n) - 1"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   494
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   495
definition revcast :: "'a :: len0 word => 'b :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   496
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   497
  "revcast w =  of_bl (takefill False (len_of TYPE('b)) (to_bl w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   498
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   499
definition slice1 :: "nat => 'a :: len0 word => 'b :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   500
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   501
  "slice1 n w = of_bl (takefill False n (to_bl w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   502
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   503
definition slice :: "nat => 'a :: len0 word => 'b :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   504
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   505
  "slice n w = slice1 (size w - n) w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   506
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   507
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   508
subsection \<open>Rotation\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   509
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   510
definition rotater1 :: "'a list => 'a list"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   511
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   512
  "rotater1 ys = 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   513
    (case ys of [] => [] | x # xs => last ys # butlast ys)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   514
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   515
definition rotater :: "nat => 'a list => 'a list"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   516
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   517
  "rotater n = rotater1 ^^ n"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   518
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   519
definition word_rotr :: "nat => 'a :: len0 word => 'a :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   520
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   521
  "word_rotr n w = of_bl (rotater n (to_bl w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   522
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   523
definition word_rotl :: "nat => 'a :: len0 word => 'a :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   524
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   525
  "word_rotl n w = of_bl (rotate n (to_bl w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   526
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   527
definition word_roti :: "int => 'a :: len0 word => 'a :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   528
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   529
  "word_roti i w = (if i >= 0 then word_rotr (nat i) w
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   530
                    else word_rotl (nat (- i)) w)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   531
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   532
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   533
subsection \<open>Split and cat operations\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   534
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   535
definition word_cat :: "'a :: len0 word => 'b :: len0 word => 'c :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   536
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   537
  "word_cat a b = word_of_int (bin_cat (uint a) (len_of TYPE ('b)) (uint b))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   538
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   539
definition word_split :: "'a :: len0 word => ('b :: len0 word) * ('c :: len0 word)"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   540
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   541
  "word_split a = 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   542
   (case bin_split (len_of TYPE ('c)) (uint a) of 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   543
     (u, v) => (word_of_int u, word_of_int v))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   544
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   545
definition word_rcat :: "'a :: len0 word list => 'b :: len0 word"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   546
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   547
  "word_rcat ws = 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   548
  word_of_int (bin_rcat (len_of TYPE ('a)) (map uint ws))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   549
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   550
definition word_rsplit :: "'a :: len0 word => 'b :: len word list"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   551
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   552
  "word_rsplit w = 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   553
  map word_of_int (bin_rsplit (len_of TYPE ('b)) (len_of TYPE ('a), uint w))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   554
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   555
definition max_word :: "'a::len word" \<comment> "Largest representable machine integer."
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
   556
where
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   557
  "max_word = word_of_int (2 ^ len_of TYPE('a) - 1)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   558
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   559
lemmas of_nth_def = word_set_bits_def (* FIXME duplicate *)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   560
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   561
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   562
subsection \<open>Theorems about typedefs\<close>
46010
ebbc2d5cd720 add section headings
huffman
parents: 46009
diff changeset
   563
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   564
lemma sint_sbintrunc': 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   565
  "sint (word_of_int bin :: 'a word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   566
    (sbintrunc (len_of TYPE ('a :: len) - 1) bin)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   567
  unfolding sint_uint 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   568
  by (auto simp: word_ubin.eq_norm sbintrunc_bintrunc_lt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   569
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   570
lemma uint_sint: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   571
  "uint w = bintrunc (len_of TYPE('a)) (sint (w :: 'a :: len word))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   572
  unfolding sint_uint by (auto simp: bintrunc_sbintrunc_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   573
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   574
lemma bintr_uint:
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   575
  fixes w :: "'a::len0 word"
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   576
  shows "len_of TYPE('a) \<le> n \<Longrightarrow> bintrunc n (uint w) = uint w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   577
  apply (subst word_ubin.norm_Rep [symmetric]) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   578
  apply (simp only: bintrunc_bintrunc_min word_size)
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54854
diff changeset
   579
  apply (simp add: min.absorb2)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   580
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   581
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   582
lemma wi_bintr:
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   583
  "len_of TYPE('a::len0) \<le> n \<Longrightarrow>
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   584
    word_of_int (bintrunc n w) = (word_of_int w :: 'a word)"
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54854
diff changeset
   585
  by (clarsimp simp add: word_ubin.norm_eq_iff [symmetric] min.absorb1)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   586
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   587
lemma td_ext_sbin: 
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   588
  "td_ext (sint :: 'a word \<Rightarrow> int) word_of_int (sints (len_of TYPE('a::len))) 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   589
    (sbintrunc (len_of TYPE('a) - 1))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   590
  apply (unfold td_ext_def' sint_uint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   591
  apply (simp add : word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   592
  apply (cases "len_of TYPE('a)")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   593
   apply (auto simp add : sints_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   594
  apply (rule sym [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   595
  apply (rule word_ubin.Abs_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   596
  apply (simp only: bintrunc_sbintrunc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   597
  apply (drule sym)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   598
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   599
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   600
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   601
lemma td_ext_sint:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   602
  "td_ext (sint :: 'a word \<Rightarrow> int) word_of_int (sints (len_of TYPE('a::len)))
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   603
     (\<lambda>w. (w + 2 ^ (len_of TYPE('a) - 1)) mod 2 ^ len_of TYPE('a) -
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   604
         2 ^ (len_of TYPE('a) - 1))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   605
  using td_ext_sbin [where ?'a = 'a] by (simp add: no_sbintr_alt2)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   606
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   607
(* We do sint before sbin, before sint is the user version
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   608
   and interpretations do not produce thm duplicates. I.e. 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   609
   we get the name word_sint.Rep_eqD, but not word_sbin.Req_eqD,
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   610
   because the latter is the same thm as the former *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   611
interpretation word_sint:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   612
  td_ext "sint ::'a::len word => int" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   613
          word_of_int 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   614
          "sints (len_of TYPE('a::len))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   615
          "%w. (w + 2^(len_of TYPE('a::len) - 1)) mod 2^len_of TYPE('a::len) -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   616
               2 ^ (len_of TYPE('a::len) - 1)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   617
  by (rule td_ext_sint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   618
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   619
interpretation word_sbin:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   620
  td_ext "sint ::'a::len word => int" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   621
          word_of_int 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   622
          "sints (len_of TYPE('a::len))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   623
          "sbintrunc (len_of TYPE('a::len) - 1)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   624
  by (rule td_ext_sbin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   625
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
   626
lemmas int_word_sint = td_ext_sint [THEN td_ext.eq_norm]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   627
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   628
lemmas td_sint = word_sint.td
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   629
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   630
lemma to_bl_def': 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   631
  "(to_bl :: 'a :: len0 word => bool list) =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   632
    bin_to_bl (len_of TYPE('a)) o uint"
44762
8f9d09241a68 tuned proofs;
wenzelm
parents: 42793
diff changeset
   633
  by (auto simp: to_bl_def)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   634
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   635
lemmas word_reverse_no_def [simp] = word_reverse_def [of "numeral w"] for w
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   636
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   637
lemma uints_mod: "uints n = range (\<lambda>w. w mod 2 ^ n)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   638
  by (fact uints_def [unfolded no_bintr_alt1])
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   639
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   640
lemma word_numeral_alt:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   641
  "numeral b = word_of_int (numeral b)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   642
  by (induct b, simp_all only: numeral.simps word_of_int_homs)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   643
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   644
declare word_numeral_alt [symmetric, code_abbrev]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   645
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   646
lemma word_neg_numeral_alt:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   647
  "- numeral b = word_of_int (- numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   648
  by (simp only: word_numeral_alt wi_hom_neg)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   649
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   650
declare word_neg_numeral_alt [symmetric, code_abbrev]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   651
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
   652
lemma word_numeral_transfer [transfer_rule]:
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
   653
  "(rel_fun op = pcr_word) numeral numeral"
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
   654
  "(rel_fun op = pcr_word) (- numeral) (- numeral)"
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
   655
  apply (simp_all add: rel_fun_def word.pcr_cr_eq cr_word_def)
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   656
  using word_numeral_alt [symmetric] word_neg_numeral_alt [symmetric] by blast+
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
   657
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   658
lemma uint_bintrunc [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   659
  "uint (numeral bin :: 'a word) = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   660
    bintrunc (len_of TYPE ('a :: len0)) (numeral bin)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   661
  unfolding word_numeral_alt by (rule word_ubin.eq_norm)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   662
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   663
lemma uint_bintrunc_neg [simp]: "uint (- numeral bin :: 'a word) = 
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   664
    bintrunc (len_of TYPE ('a :: len0)) (- numeral bin)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   665
  by (simp only: word_neg_numeral_alt word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   666
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   667
lemma sint_sbintrunc [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   668
  "sint (numeral bin :: 'a word) = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   669
    sbintrunc (len_of TYPE ('a :: len) - 1) (numeral bin)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   670
  by (simp only: word_numeral_alt word_sbin.eq_norm)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   671
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   672
lemma sint_sbintrunc_neg [simp]: "sint (- numeral bin :: 'a word) = 
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   673
    sbintrunc (len_of TYPE ('a :: len) - 1) (- numeral bin)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   674
  by (simp only: word_neg_numeral_alt word_sbin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   675
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   676
lemma unat_bintrunc [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   677
  "unat (numeral bin :: 'a :: len0 word) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   678
    nat (bintrunc (len_of TYPE('a)) (numeral bin))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   679
  by (simp only: unat_def uint_bintrunc)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   680
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   681
lemma unat_bintrunc_neg [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   682
  "unat (- numeral bin :: 'a :: len0 word) =
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   683
    nat (bintrunc (len_of TYPE('a)) (- numeral bin))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   684
  by (simp only: unat_def uint_bintrunc_neg)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   685
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   686
lemma size_0_eq: "size (w :: 'a :: len0 word) = 0 \<Longrightarrow> v = w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   687
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   688
  apply (rule word_uint.Rep_eqD)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   689
  apply (rule box_equals)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   690
    defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   691
    apply (rule word_ubin.norm_Rep)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   692
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   693
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   694
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   695
lemma uint_ge_0 [iff]: "0 \<le> uint (x::'a::len0 word)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   696
  using word_uint.Rep [of x] by (simp add: uints_num)
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   697
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   698
lemma uint_lt2p [iff]: "uint (x::'a::len0 word) < 2 ^ len_of TYPE('a)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   699
  using word_uint.Rep [of x] by (simp add: uints_num)
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   700
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   701
lemma sint_ge: "- (2 ^ (len_of TYPE('a) - 1)) \<le> sint (x::'a::len word)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   702
  using word_sint.Rep [of x] by (simp add: sints_num)
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   703
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   704
lemma sint_lt: "sint (x::'a::len word) < 2 ^ (len_of TYPE('a) - 1)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   705
  using word_sint.Rep [of x] by (simp add: sints_num)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   706
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   707
lemma sign_uint_Pls [simp]: 
46604
9f9e85264e4d make uses of bin_sign respect int/bin distinction
huffman
parents: 46603
diff changeset
   708
  "bin_sign (uint x) = 0"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   709
  by (simp add: sign_Pls_ge_0)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   710
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   711
lemma uint_m2p_neg: "uint (x::'a::len0 word) - 2 ^ len_of TYPE('a) < 0"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   712
  by (simp only: diff_less_0_iff_less uint_lt2p)
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   713
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   714
lemma uint_m2p_not_non_neg:
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   715
  "\<not> 0 \<le> uint (x::'a::len0 word) - 2 ^ len_of TYPE('a)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   716
  by (simp only: not_le uint_m2p_neg)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   717
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   718
lemma lt2p_lem:
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   719
  "len_of TYPE('a) \<le> n \<Longrightarrow> uint (w :: 'a::len0 word) < 2 ^ n"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   720
  by (metis bintr_uint bintrunc_mod2p int_mod_lem zless2p)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   721
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   722
lemma uint_le_0_iff [simp]: "uint x \<le> 0 \<longleftrightarrow> uint x = 0"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   723
  by (fact uint_ge_0 [THEN leD, THEN linorder_antisym_conv1])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   724
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   725
lemma uint_nat: "uint w = int (unat w)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   726
  unfolding unat_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   727
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   728
lemma uint_numeral:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   729
  "uint (numeral b :: 'a :: len0 word) = numeral b mod 2 ^ len_of TYPE('a)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   730
  unfolding word_numeral_alt
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   731
  by (simp only: int_word_uint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   732
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   733
lemma uint_neg_numeral:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   734
  "uint (- numeral b :: 'a :: len0 word) = - numeral b mod 2 ^ len_of TYPE('a)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   735
  unfolding word_neg_numeral_alt
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   736
  by (simp only: int_word_uint)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   737
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   738
lemma unat_numeral: 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   739
  "unat (numeral b::'a::len0 word) = numeral b mod 2 ^ len_of TYPE ('a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   740
  apply (unfold unat_def)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   741
  apply (clarsimp simp only: uint_numeral)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   742
  apply (rule nat_mod_distrib [THEN trans])
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   743
    apply (rule zero_le_numeral)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   744
   apply (simp_all add: nat_power_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   745
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   746
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   747
lemma sint_numeral: "sint (numeral b :: 'a :: len word) = (numeral b + 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   748
    2 ^ (len_of TYPE('a) - 1)) mod 2 ^ len_of TYPE('a) -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   749
    2 ^ (len_of TYPE('a) - 1)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   750
  unfolding word_numeral_alt by (rule int_word_sint)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   751
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   752
lemma word_of_int_0 [simp, code_post]:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   753
  "word_of_int 0 = 0"
45958
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
   754
  unfolding word_0_wi ..
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
   755
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   756
lemma word_of_int_1 [simp, code_post]:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   757
  "word_of_int 1 = 1"
45958
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
   758
  unfolding word_1_wi ..
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
   759
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   760
lemma word_of_int_neg_1 [simp]: "word_of_int (- 1) = - 1"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   761
  by (simp add: wi_hom_syms)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   762
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   763
lemma word_of_int_numeral [simp] : 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   764
  "(word_of_int (numeral bin) :: 'a :: len0 word) = (numeral bin)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   765
  unfolding word_numeral_alt ..
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   766
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   767
lemma word_of_int_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   768
  "(word_of_int (- numeral bin) :: 'a :: len0 word) = (- numeral bin)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   769
  unfolding word_numeral_alt wi_hom_syms ..
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   770
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   771
lemma word_int_case_wi: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   772
  "word_int_case f (word_of_int i :: 'b word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   773
    f (i mod 2 ^ len_of TYPE('b::len0))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   774
  unfolding word_int_case_def by (simp add: word_uint.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   775
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   776
lemma word_int_split: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   777
  "P (word_int_case f x) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   778
    (ALL i. x = (word_of_int i :: 'b :: len0 word) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   779
      0 <= i & i < 2 ^ len_of TYPE('b) --> P (f i))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   780
  unfolding word_int_case_def
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   781
  by (auto simp: word_uint.eq_norm mod_pos_pos_trivial)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   782
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   783
lemma word_int_split_asm: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   784
  "P (word_int_case f x) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   785
    (~ (EX n. x = (word_of_int n :: 'b::len0 word) &
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   786
      0 <= n & n < 2 ^ len_of TYPE('b::len0) & ~ P (f n)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   787
  unfolding word_int_case_def
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   788
  by (auto simp: word_uint.eq_norm mod_pos_pos_trivial)
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   789
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
   790
lemmas uint_range' = word_uint.Rep [unfolded uints_num mem_Collect_eq]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
   791
lemmas sint_range' = word_sint.Rep [unfolded One_nat_def sints_num mem_Collect_eq]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   792
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   793
lemma uint_range_size: "0 <= uint w & uint w < 2 ^ size w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   794
  unfolding word_size by (rule uint_range')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   795
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   796
lemma sint_range_size:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   797
  "- (2 ^ (size w - Suc 0)) <= sint w & sint w < 2 ^ (size w - Suc 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   798
  unfolding word_size by (rule sint_range')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   799
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   800
lemma sint_above_size: "2 ^ (size (w::'a::len word) - 1) \<le> x \<Longrightarrow> sint w < x"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   801
  unfolding word_size by (rule less_le_trans [OF sint_lt])
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   802
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   803
lemma sint_below_size:
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   804
  "x \<le> - (2 ^ (size (w::'a::len word) - 1)) \<Longrightarrow> x \<le> sint w"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   805
  unfolding word_size by (rule order_trans [OF _ sint_ge])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   806
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   807
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
   808
subsection \<open>Testing bits\<close>
46010
ebbc2d5cd720 add section headings
huffman
parents: 46009
diff changeset
   809
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   810
lemma test_bit_eq_iff: "(test_bit (u::'a::len0 word) = test_bit v) = (u = v)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   811
  unfolding word_test_bit_def by (simp add: bin_nth_eq_iff)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   812
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   813
lemma test_bit_size [rule_format] : "(w::'a::len0 word) !! n --> n < size w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   814
  apply (unfold word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   815
  apply (subst word_ubin.norm_Rep [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   816
  apply (simp only: nth_bintr word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   817
  apply fast
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   818
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   819
46021
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   820
lemma word_eq_iff:
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   821
  fixes x y :: "'a::len0 word"
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   822
  shows "x = y \<longleftrightarrow> (\<forall>n<len_of TYPE('a). x !! n = y !! n)"
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   823
  unfolding uint_inject [symmetric] bin_eq_iff word_test_bit_def [symmetric]
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   824
  by (metis test_bit_size [unfolded word_size])
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   825
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
   826
lemma word_eqI [rule_format]:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   827
  fixes u :: "'a::len0 word"
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   828
  shows "(ALL n. n < size u --> u !! n = v !! n) \<Longrightarrow> u = v"
46021
272c63f83398 add lemma word_eq_iff
huffman
parents: 46020
diff changeset
   829
  by (simp add: word_size word_eq_iff)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   830
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   831
lemma word_eqD: "(u::'a::len0 word) = v \<Longrightarrow> u !! x = v !! x"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   832
  by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   833
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   834
lemma test_bit_bin': "w !! n = (n < size w & bin_nth (uint w) n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   835
  unfolding word_test_bit_def word_size
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   836
  by (simp add: nth_bintr [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   837
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   838
lemmas test_bit_bin = test_bit_bin' [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   839
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   840
lemma bin_nth_uint_imp:
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   841
  "bin_nth (uint (w::'a::len0 word)) n \<Longrightarrow> n < len_of TYPE('a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   842
  apply (rule nth_bintr [THEN iffD1, THEN conjunct1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   843
  apply (subst word_ubin.norm_Rep)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   844
  apply assumption
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   845
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   846
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   847
lemma bin_nth_sint:
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   848
  fixes w :: "'a::len word"
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   849
  shows "len_of TYPE('a) \<le> n \<Longrightarrow>
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   850
    bin_nth (sint w) n = bin_nth (sint w) (len_of TYPE('a) - 1)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   851
  apply (subst word_sbin.norm_Rep [symmetric])
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
   852
  apply (auto simp add: nth_sbintr)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   853
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   854
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   855
(* type definitions theorem for in terms of equivalent bool list *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   856
lemma td_bl: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   857
  "type_definition (to_bl :: 'a::len0 word => bool list) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   858
                   of_bl  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   859
                   {bl. length bl = len_of TYPE('a)}"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   860
  apply (unfold type_definition_def of_bl_def to_bl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   861
  apply (simp add: word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   862
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   863
  apply (drule sym)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   864
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   865
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   866
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   867
interpretation word_bl:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   868
  type_definition "to_bl :: 'a::len0 word => bool list"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   869
                  of_bl  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   870
                  "{bl. length bl = len_of TYPE('a::len0)}"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
   871
  by (fact td_bl)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   872
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
   873
lemmas word_bl_Rep' = word_bl.Rep [unfolded mem_Collect_eq, iff]
45538
1fffa81b9b83 eliminated slightly odd Rep' with dynamically-scoped [simplified];
wenzelm
parents: 45529
diff changeset
   874
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   875
lemma word_size_bl: "size w = size (to_bl w)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   876
  unfolding word_size by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   877
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   878
lemma to_bl_use_of_bl:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   879
  "(to_bl w = bl) = (w = of_bl bl \<and> length bl = length (to_bl w))"
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
   880
  by (fastforce elim!: word_bl.Abs_inverse [unfolded mem_Collect_eq])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   881
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   882
lemma to_bl_word_rev: "to_bl (word_reverse w) = rev (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   883
  unfolding word_reverse_def by (simp add: word_bl.Abs_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   884
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   885
lemma word_rev_rev [simp] : "word_reverse (word_reverse w) = w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   886
  unfolding word_reverse_def by (simp add : word_bl.Abs_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   887
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   888
lemma word_rev_gal: "word_reverse w = u \<Longrightarrow> word_reverse u = w"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   889
  by (metis word_rev_rev)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   890
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   891
lemma word_rev_gal': "u = word_reverse w \<Longrightarrow> w = word_reverse u"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   892
  by simp
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   893
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   894
lemma length_bl_gt_0 [iff]: "0 < length (to_bl (x::'a::len word))"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   895
  unfolding word_bl_Rep' by (rule len_gt_0)
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   896
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   897
lemma bl_not_Nil [iff]: "to_bl (x::'a::len word) \<noteq> []"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   898
  by (fact length_bl_gt_0 [unfolded length_greater_0_conv])
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   899
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   900
lemma length_bl_neq_0 [iff]: "length (to_bl (x::'a::len word)) \<noteq> 0"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
   901
  by (fact length_bl_gt_0 [THEN gr_implies_not0])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   902
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
   903
lemma hd_bl_sign_sint: "hd (to_bl w) = (bin_sign (sint w) = -1)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   904
  apply (unfold to_bl_def sint_uint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   905
  apply (rule trans [OF _ bl_sbin_sign])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   906
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   907
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   908
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   909
lemma of_bl_drop': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   910
  "lend = length bl - len_of TYPE ('a :: len0) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   911
    of_bl (drop lend bl) = (of_bl bl :: 'a word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   912
  apply (unfold of_bl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   913
  apply (clarsimp simp add : trunc_bl2bin [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   914
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   915
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   916
lemma test_bit_of_bl:  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   917
  "(of_bl bl::'a::len0 word) !! n = (rev bl ! n \<and> n < len_of TYPE('a) \<and> n < length bl)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   918
  apply (unfold of_bl_def word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   919
  apply (auto simp add: word_size word_ubin.eq_norm nth_bintr bin_nth_of_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   920
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   921
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   922
lemma no_of_bl: 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   923
  "(numeral bin ::'a::len0 word) = of_bl (bin_to_bl (len_of TYPE ('a)) (numeral bin))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   924
  unfolding of_bl_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   925
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
   926
lemma uint_bl: "to_bl w = bin_to_bl (size w) (uint w)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   927
  unfolding word_size to_bl_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   928
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   929
lemma to_bl_bin: "bl_to_bin (to_bl w) = uint w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   930
  unfolding uint_bl by (simp add : word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   931
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   932
lemma to_bl_of_bin: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   933
  "to_bl (word_of_int bin::'a::len0 word) = bin_to_bl (len_of TYPE('a)) bin"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   934
  unfolding uint_bl by (clarsimp simp add: word_ubin.eq_norm word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   935
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   936
lemma to_bl_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   937
  "to_bl (numeral bin::'a::len0 word) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   938
    bin_to_bl (len_of TYPE('a)) (numeral bin)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   939
  unfolding word_numeral_alt by (rule to_bl_of_bin)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   940
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   941
lemma to_bl_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   942
  "to_bl (- numeral bin::'a::len0 word) =
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
   943
    bin_to_bl (len_of TYPE('a)) (- numeral bin)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   944
  unfolding word_neg_numeral_alt by (rule to_bl_of_bin)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   945
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   946
lemma to_bl_to_bin [simp] : "bl_to_bin (to_bl w) = uint w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   947
  unfolding uint_bl by (simp add : word_size)
46011
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
   948
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
   949
lemma uint_bl_bin:
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
   950
  fixes x :: "'a::len0 word"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
   951
  shows "bl_to_bin (bin_to_bl (len_of TYPE('a)) (uint x)) = uint x"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
   952
  by (rule trans [OF bin_bl_bin word_ubin.norm_Rep])
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
   953
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   954
(* naturals *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   955
lemma uints_unats: "uints n = int ` unats n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   956
  apply (unfold unats_def uints_num)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   957
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   958
  apply (rule_tac image_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   959
  apply (erule_tac nat_0_le [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   960
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   961
  apply (erule_tac nat_less_iff [THEN iffD2])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   962
  apply (rule_tac [2] zless_nat_eq_int_zless [THEN iffD1])
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
   963
  apply (auto simp add : nat_power_eq of_nat_power)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   964
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   965
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   966
lemma unats_uints: "unats n = nat ` uints n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   967
  by (auto simp add : uints_unats image_iff)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   968
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   969
lemmas bintr_num = word_ubin.norm_eq_iff
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   970
  [of "numeral a" "numeral b", symmetric, folded word_numeral_alt] for a b
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   971
lemmas sbintr_num = word_sbin.norm_eq_iff
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   972
  [of "numeral a" "numeral b", symmetric, folded word_numeral_alt] for a b
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   973
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   974
lemma num_of_bintr':
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   975
  "bintrunc (len_of TYPE('a :: len0)) (numeral a) = (numeral b) \<Longrightarrow> 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   976
    numeral a = (numeral b :: 'a word)"
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   977
  unfolding bintr_num by (erule subst, simp)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   978
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   979
lemma num_of_sbintr':
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   980
  "sbintrunc (len_of TYPE('a :: len) - 1) (numeral a) = (numeral b) \<Longrightarrow> 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   981
    numeral a = (numeral b :: 'a word)"
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   982
  unfolding sbintr_num by (erule subst, simp)
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   983
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   984
lemma num_abs_bintr:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   985
  "(numeral x :: 'a word) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   986
    word_of_int (bintrunc (len_of TYPE('a::len0)) (numeral x))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   987
  by (simp only: word_ubin.Abs_norm word_numeral_alt)
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   988
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   989
lemma num_abs_sbintr:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   990
  "(numeral x :: 'a word) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   991
    word_of_int (sbintrunc (len_of TYPE('a::len) - 1) (numeral x))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
   992
  by (simp only: word_sbin.Abs_norm word_numeral_alt)
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
   993
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   994
(** cast - note, no arg for new length, as it's determined by type of result,
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   995
  thus in "cast w = w, the type means cast to length of w! **)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   996
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   997
lemma ucast_id: "ucast w = w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   998
  unfolding ucast_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
   999
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1000
lemma scast_id: "scast w = w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1001
  unfolding scast_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1002
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1003
lemma ucast_bl: "ucast w = of_bl (to_bl w)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1004
  unfolding ucast_def of_bl_def uint_bl
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1005
  by (auto simp add : word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1006
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1007
lemma nth_ucast: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1008
  "(ucast w::'a::len0 word) !! n = (w !! n & n < len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1009
  apply (unfold ucast_def test_bit_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1010
  apply (simp add: word_ubin.eq_norm nth_bintr word_size) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1011
  apply (fast elim!: bin_nth_uint_imp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1012
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1013
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1014
(* for literal u(s)cast *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1015
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  1016
lemma ucast_bintr [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1017
  "ucast (numeral w ::'a::len0 word) = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1018
   word_of_int (bintrunc (len_of TYPE('a)) (numeral w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1019
  unfolding ucast_def by simp
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1020
(* TODO: neg_numeral *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1021
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  1022
lemma scast_sbintr [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1023
  "scast (numeral w ::'a::len word) = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1024
   word_of_int (sbintrunc (len_of TYPE('a) - Suc 0) (numeral w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1025
  unfolding scast_def by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1026
46011
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1027
lemma source_size: "source_size (c::'a::len0 word \<Rightarrow> _) = len_of TYPE('a)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1028
  unfolding source_size_def word_size Let_def ..
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1029
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1030
lemma target_size: "target_size (c::_ \<Rightarrow> 'b::len0 word) = len_of TYPE('b)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1031
  unfolding target_size_def word_size Let_def ..
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1032
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1033
lemma is_down:
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1034
  fixes c :: "'a::len0 word \<Rightarrow> 'b::len0 word"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1035
  shows "is_down c \<longleftrightarrow> len_of TYPE('b) \<le> len_of TYPE('a)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1036
  unfolding is_down_def source_size target_size ..
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1037
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1038
lemma is_up:
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1039
  fixes c :: "'a::len0 word \<Rightarrow> 'b::len0 word"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1040
  shows "is_up c \<longleftrightarrow> len_of TYPE('a) \<le> len_of TYPE('b)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1041
  unfolding is_up_def source_size target_size ..
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1042
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1043
lemmas is_up_down = trans [OF is_up is_down [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1044
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1045
lemma down_cast_same [OF refl]: "uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc = scast"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1046
  apply (unfold is_down)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1047
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1048
  apply (rule ext)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1049
  apply (unfold ucast_def scast_def uint_sint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1050
  apply (rule word_ubin.norm_eq_iff [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1051
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1052
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1053
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1054
lemma word_rev_tf:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1055
  "to_bl (of_bl bl::'a::len0 word) =
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1056
    rev (takefill False (len_of TYPE('a)) (rev bl))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1057
  unfolding of_bl_def uint_bl
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1058
  by (clarsimp simp add: bl_bin_bl_rtf word_ubin.eq_norm word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1059
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1060
lemma word_rep_drop:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1061
  "to_bl (of_bl bl::'a::len0 word) =
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1062
    replicate (len_of TYPE('a) - length bl) False @
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1063
    drop (length bl - len_of TYPE('a)) bl"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1064
  by (simp add: word_rev_tf takefill_alt rev_take)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1065
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1066
lemma to_bl_ucast: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1067
  "to_bl (ucast (w::'b::len0 word) ::'a::len0 word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1068
   replicate (len_of TYPE('a) - len_of TYPE('b)) False @
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1069
   drop (len_of TYPE('b) - len_of TYPE('a)) (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1070
  apply (unfold ucast_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1071
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1072
   apply (rule word_rep_drop)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1073
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1074
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1075
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1076
lemma ucast_up_app [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1077
  "uc = ucast \<Longrightarrow> source_size uc + n = target_size uc \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1078
    to_bl (uc w) = replicate n False @ (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1079
  by (auto simp add : source_size target_size to_bl_ucast)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1080
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1081
lemma ucast_down_drop [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1082
  "uc = ucast \<Longrightarrow> source_size uc = target_size uc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1083
    to_bl (uc w) = drop n (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1084
  by (auto simp add : source_size target_size to_bl_ucast)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1085
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1086
lemma scast_down_drop [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1087
  "sc = scast \<Longrightarrow> source_size sc = target_size sc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1088
    to_bl (sc w) = drop n (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1089
  apply (subgoal_tac "sc = ucast")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1090
   apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1091
   apply simp
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1092
   apply (erule ucast_down_drop)
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1093
  apply (rule down_cast_same [symmetric])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1094
  apply (simp add : source_size target_size is_down)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1095
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1096
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1097
lemma sint_up_scast [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1098
  "sc = scast \<Longrightarrow> is_up sc \<Longrightarrow> sint (sc w) = sint w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1099
  apply (unfold is_up)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1100
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1101
  apply (simp add: scast_def word_sbin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1102
  apply (rule box_equals)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1103
    prefer 3
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1104
    apply (rule word_sbin.norm_Rep)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1105
   apply (rule sbintrunc_sbintrunc_l)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1106
   defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1107
   apply (subst word_sbin.norm_Rep)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1108
   apply (rule refl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1109
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1110
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1111
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1112
lemma uint_up_ucast [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1113
  "uc = ucast \<Longrightarrow> is_up uc \<Longrightarrow> uint (uc w) = uint w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1114
  apply (unfold is_up)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1115
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1116
  apply (rule bin_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1117
  apply (fold word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1118
  apply (auto simp add: nth_ucast)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1119
  apply (auto simp add: test_bit_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1120
  done
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1121
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1122
lemma ucast_up_ucast [OF refl]:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1123
  "uc = ucast \<Longrightarrow> is_up uc \<Longrightarrow> ucast (uc w) = ucast w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1124
  apply (simp (no_asm) add: ucast_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1125
  apply (clarsimp simp add: uint_up_ucast)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1126
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1127
    
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1128
lemma scast_up_scast [OF refl]:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1129
  "sc = scast \<Longrightarrow> is_up sc \<Longrightarrow> scast (sc w) = scast w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1130
  apply (simp (no_asm) add: scast_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1131
  apply (clarsimp simp add: sint_up_scast)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1132
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1133
    
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1134
lemma ucast_of_bl_up [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1135
  "w = of_bl bl \<Longrightarrow> size bl <= size w \<Longrightarrow> ucast w = of_bl bl"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1136
  by (auto simp add : nth_ucast word_size test_bit_of_bl intro!: word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1137
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1138
lemmas ucast_up_ucast_id = trans [OF ucast_up_ucast ucast_id]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1139
lemmas scast_up_scast_id = trans [OF scast_up_scast scast_id]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1140
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1141
lemmas isduu = is_up_down [where c = "ucast", THEN iffD2]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1142
lemmas isdus = is_up_down [where c = "scast", THEN iffD2]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1143
lemmas ucast_down_ucast_id = isduu [THEN ucast_up_ucast_id]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1144
lemmas scast_down_scast_id = isdus [THEN ucast_up_ucast_id]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1145
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1146
lemma up_ucast_surj:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1147
  "is_up (ucast :: 'b::len0 word => 'a::len0 word) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1148
   surj (ucast :: 'a word => 'b word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1149
  by (rule surjI, erule ucast_up_ucast_id)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1150
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1151
lemma up_scast_surj:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1152
  "is_up (scast :: 'b::len word => 'a::len word) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1153
   surj (scast :: 'a word => 'b word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1154
  by (rule surjI, erule scast_up_scast_id)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1155
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1156
lemma down_scast_inj:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1157
  "is_down (scast :: 'b::len word => 'a::len word) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1158
   inj_on (ucast :: 'a word => 'b word) A"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1159
  by (rule inj_on_inverseI, erule scast_down_scast_id)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1160
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1161
lemma down_ucast_inj:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1162
  "is_down (ucast :: 'b::len0 word => 'a::len0 word) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1163
   inj_on (ucast :: 'a word => 'b word) A"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1164
  by (rule inj_on_inverseI, erule ucast_down_ucast_id)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1165
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1166
lemma of_bl_append_same: "of_bl (X @ to_bl w) = w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1167
  by (rule word_bl.Rep_eqD) (simp add: word_rep_drop)
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1168
46646
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  1169
lemma ucast_down_wi [OF refl]:
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  1170
  "uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc (word_of_int x) = word_of_int x"
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  1171
  apply (unfold is_down)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1172
  apply (clarsimp simp add: ucast_def word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1173
  apply (rule word_ubin.norm_eq_iff [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1174
  apply (erule bintrunc_bintrunc_ge)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1175
  done
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1176
46646
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  1177
lemma ucast_down_no [OF refl]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1178
  "uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc (numeral bin) = numeral bin"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1179
  unfolding word_numeral_alt by clarify (rule ucast_down_wi)
46646
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  1180
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1181
lemma ucast_down_bl [OF refl]:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1182
  "uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc (of_bl bl) = of_bl bl"
46646
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  1183
  unfolding of_bl_def by clarify (erule ucast_down_wi)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1184
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1185
lemmas slice_def' = slice_def [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1186
lemmas test_bit_def' = word_test_bit_def [THEN fun_cong]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1187
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1188
lemmas word_log_defs = word_and_def word_or_def word_xor_def word_not_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1189
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1190
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1191
subsection \<open>Word Arithmetic\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1192
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1193
lemma word_less_alt: "(a < b) = (uint a < uint b)"
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1194
  by (fact word_less_def)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1195
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1196
lemma signed_linorder: "class.linorder word_sle word_sless"
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61076
diff changeset
  1197
  by standard (unfold word_sle_def word_sless_def, auto)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1198
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1199
interpretation signed: linorder "word_sle" "word_sless"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1200
  by (rule signed_linorder)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1201
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1202
lemma udvdI: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1203
  "0 \<le> n \<Longrightarrow> uint b = n * uint a \<Longrightarrow> a udvd b"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1204
  by (auto simp: udvd_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1205
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1206
lemmas word_div_no [simp] = word_div_def [of "numeral a" "numeral b"] for a b
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1207
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1208
lemmas word_mod_no [simp] = word_mod_def [of "numeral a" "numeral b"] for a b
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1209
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1210
lemmas word_less_no [simp] = word_less_def [of "numeral a" "numeral b"] for a b
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1211
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1212
lemmas word_le_no [simp] = word_le_def [of "numeral a" "numeral b"] for a b
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1213
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1214
lemmas word_sless_no [simp] = word_sless_def [of "numeral a" "numeral b"] for a b
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1215
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1216
lemmas word_sle_no [simp] = word_sle_def [of "numeral a" "numeral b"] for a b
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1217
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1218
lemma word_m1_wi: "- 1 = word_of_int (- 1)" 
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1219
  using word_neg_numeral_alt [of Num.One] by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1220
46648
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1221
lemma word_0_bl [simp]: "of_bl [] = 0"
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1222
  unfolding of_bl_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1223
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1224
lemma word_1_bl: "of_bl [True] = 1" 
46648
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1225
  unfolding of_bl_def by (simp add: bl_to_bin_def)
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1226
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1227
lemma uint_eq_0 [simp]: "uint 0 = 0"
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1228
  unfolding word_0_wi word_ubin.eq_norm by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1229
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1230
lemma of_bl_0 [simp]: "of_bl (replicate n False) = 0"
46648
689ebcbd6343 avoid using Int.Pls_def in proofs
huffman
parents: 46647
diff changeset
  1231
  by (simp add: of_bl_def bl_to_bin_rep_False)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1232
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  1233
lemma to_bl_0 [simp]:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1234
  "to_bl (0::'a::len0 word) = replicate (len_of TYPE('a)) False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1235
  unfolding uint_bl
46617
8c5d10d41391 make bool list functions respect int/bin distinction
huffman
parents: 46604
diff changeset
  1236
  by (simp add: word_size bin_to_bl_zero)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1237
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1238
lemma uint_0_iff:
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1239
  "uint x = 0 \<longleftrightarrow> x = 0"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1240
  by (simp add: word_uint_eq_iff)
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1241
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1242
lemma unat_0_iff:
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1243
  "unat x = 0 \<longleftrightarrow> x = 0"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1244
  unfolding unat_def by (auto simp add : nat_eq_iff uint_0_iff)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1245
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1246
lemma unat_0 [simp]:
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1247
  "unat 0 = 0"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1248
  unfolding unat_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1249
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1250
lemma size_0_same':
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1251
  "size w = 0 \<Longrightarrow> w = (v :: 'a :: len0 word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1252
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1253
  apply (rule box_equals)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1254
    defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1255
    apply (rule word_uint.Rep_inverse)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1256
  apply (rule word_ubin.norm_eq_iff [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1257
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1258
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1259
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1260
lemmas size_0_same = size_0_same' [unfolded word_size]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1261
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1262
lemmas unat_eq_0 = unat_0_iff
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1263
lemmas unat_eq_zero = unat_0_iff
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1264
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1265
lemma unat_gt_0: "(0 < unat x) = (x ~= 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1266
by (auto simp: unat_0_iff [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1267
45958
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1268
lemma ucast_0 [simp]: "ucast 0 = 0"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1269
  unfolding ucast_def by simp
45958
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1270
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1271
lemma sint_0 [simp]: "sint 0 = 0"
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1272
  unfolding sint_uint by simp
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1273
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1274
lemma scast_0 [simp]: "scast 0 = 0"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1275
  unfolding scast_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1276
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58061
diff changeset
  1277
lemma sint_n1 [simp] : "sint (- 1) = - 1"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1278
  unfolding word_m1_wi word_sbin.eq_norm by simp
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1279
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1280
lemma scast_n1 [simp]: "scast (- 1) = - 1"
45958
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1281
  unfolding scast_def by simp
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1282
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1283
lemma uint_1 [simp]: "uint (1::'a::len word) = 1"
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1284
  by (simp only: word_1_wi word_ubin.eq_norm) (simp add: bintrunc_minus_simps(4))
45958
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1285
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1286
lemma unat_1 [simp]: "unat (1::'a::len word) = 1"
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1287
  unfolding unat_def by simp
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1288
c28235388c43 simplify some proofs
huffman
parents: 45957
diff changeset
  1289
lemma ucast_1 [simp]: "ucast (1::'a::len word) = 1"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1290
  unfolding ucast_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1291
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1292
(* now, to get the weaker results analogous to word_div/mod_def *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1293
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1294
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1295
subsection \<open>Transferring goals from words to ints\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1296
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1297
lemma word_ths:  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1298
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1299
  word_succ_p1:   "word_succ a = a + 1" and
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1300
  word_pred_m1:   "word_pred a = a - 1" and
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1301
  word_pred_succ: "word_pred (word_succ a) = a" and
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1302
  word_succ_pred: "word_succ (word_pred a) = a" and
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1303
  word_mult_succ: "word_succ a * b = b + a * b"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
  1304
  by (transfer, simp add: algebra_simps)+
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1305
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1306
lemma uint_cong: "x = y \<Longrightarrow> uint x = uint y"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1307
  by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1308
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1309
lemma uint_word_ariths:
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1310
  fixes a b :: "'a::len0 word"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1311
  shows "uint (a + b) = (uint a + uint b) mod 2 ^ len_of TYPE('a::len0)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1312
    and "uint (a - b) = (uint a - uint b) mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1313
    and "uint (a * b) = uint a * uint b mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1314
    and "uint (- a) = - uint a mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1315
    and "uint (word_succ a) = (uint a + 1) mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1316
    and "uint (word_pred a) = (uint a - 1) mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1317
    and "uint (0 :: 'a word) = 0 mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1318
    and "uint (1 :: 'a word) = 1 mod 2 ^ len_of TYPE('a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1319
  by (simp_all add: word_arith_wis [THEN trans [OF uint_cong int_word_uint]])
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1320
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1321
lemma uint_word_arith_bintrs:
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1322
  fixes a b :: "'a::len0 word"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1323
  shows "uint (a + b) = bintrunc (len_of TYPE('a)) (uint a + uint b)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1324
    and "uint (a - b) = bintrunc (len_of TYPE('a)) (uint a - uint b)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1325
    and "uint (a * b) = bintrunc (len_of TYPE('a)) (uint a * uint b)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1326
    and "uint (- a) = bintrunc (len_of TYPE('a)) (- uint a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1327
    and "uint (word_succ a) = bintrunc (len_of TYPE('a)) (uint a + 1)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1328
    and "uint (word_pred a) = bintrunc (len_of TYPE('a)) (uint a - 1)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1329
    and "uint (0 :: 'a word) = bintrunc (len_of TYPE('a)) 0"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1330
    and "uint (1 :: 'a word) = bintrunc (len_of TYPE('a)) 1"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1331
  by (simp_all add: uint_word_ariths bintrunc_mod2p)
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1332
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1333
lemma sint_word_ariths:
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1334
  fixes a b :: "'a::len word"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1335
  shows "sint (a + b) = sbintrunc (len_of TYPE('a) - 1) (sint a + sint b)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1336
    and "sint (a - b) = sbintrunc (len_of TYPE('a) - 1) (sint a - sint b)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1337
    and "sint (a * b) = sbintrunc (len_of TYPE('a) - 1) (sint a * sint b)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1338
    and "sint (- a) = sbintrunc (len_of TYPE('a) - 1) (- sint a)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1339
    and "sint (word_succ a) = sbintrunc (len_of TYPE('a) - 1) (sint a + 1)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1340
    and "sint (word_pred a) = sbintrunc (len_of TYPE('a) - 1) (sint a - 1)"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1341
    and "sint (0 :: 'a word) = sbintrunc (len_of TYPE('a) - 1) 0"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1342
    and "sint (1 :: 'a word) = sbintrunc (len_of TYPE('a) - 1) 1"
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1343
  by (simp_all add: uint_word_arith_bintrs
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1344
    [THEN uint_sint [symmetric, THEN trans],
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1345
    unfolded uint_sint bintr_arith1s bintr_ariths 
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1346
      len_gt_0 [THEN bin_sbin_eq_iff'] word_sbin.norm_Rep])
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1347
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1348
lemmas uint_div_alt = word_div_def [THEN trans [OF uint_cong int_word_uint]]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1349
lemmas uint_mod_alt = word_mod_def [THEN trans [OF uint_cong int_word_uint]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1350
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58061
diff changeset
  1351
lemma word_pred_0_n1: "word_pred 0 = word_of_int (- 1)"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
  1352
  unfolding word_pred_m1 by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1353
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1354
lemma succ_pred_no [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1355
  "word_succ (numeral w) = numeral w + 1"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1356
  "word_pred (numeral w) = numeral w - 1"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1357
  "word_succ (- numeral w) = - numeral w + 1"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  1358
  "word_pred (- numeral w) = - numeral w - 1"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1359
  unfolding word_succ_p1 word_pred_m1 by simp_all
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1360
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1361
lemma word_sp_01 [simp] : 
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58061
diff changeset
  1362
  "word_succ (- 1) = 0 & word_succ 0 = 1 & word_pred 0 = - 1 & word_pred 1 = 0"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1363
  unfolding word_succ_p1 word_pred_m1 by simp_all
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1364
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1365
(* alternative approach to lifting arithmetic equalities *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1366
lemma word_of_int_Ex:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1367
  "\<exists>y. x = word_of_int y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1368
  by (rule_tac x="uint x" in exI) simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1369
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1370
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1371
subsection \<open>Order on fixed-length words\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1372
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1373
lemma word_zero_le [simp] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1374
  "0 <= (y :: 'a :: len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1375
  unfolding word_le_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1376
  
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1377
lemma word_m1_ge [simp] : "word_pred 0 >= y" (* FIXME: delete *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1378
  unfolding word_le_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1379
  by (simp only : word_pred_0_n1 word_uint.eq_norm m1mod2k) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1380
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1381
lemma word_n1_ge [simp]: "y \<le> (-1::'a::len0 word)"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1382
  unfolding word_le_def
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1383
  by (simp only: word_m1_wi word_uint.eq_norm m1mod2k) auto
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1384
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1385
lemmas word_not_simps [simp] = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1386
  word_zero_le [THEN leD] word_m1_ge [THEN leD] word_n1_ge [THEN leD]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1387
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1388
lemma word_gt_0: "0 < y \<longleftrightarrow> 0 \<noteq> (y :: 'a :: len0 word)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1389
  by (simp add: less_le)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1390
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1391
lemmas word_gt_0_no [simp] = word_gt_0 [of "numeral y"] for y
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1392
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1393
lemma word_sless_alt: "(a <s b) = (sint a < sint b)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1394
  unfolding word_sle_def word_sless_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1395
  by (auto simp add: less_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1396
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1397
lemma word_le_nat_alt: "(a <= b) = (unat a <= unat b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1398
  unfolding unat_def word_le_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1399
  by (rule nat_le_eq_zle [symmetric]) simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1400
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1401
lemma word_less_nat_alt: "(a < b) = (unat a < unat b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1402
  unfolding unat_def word_less_alt
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1403
  by (rule nat_less_eq_zless [symmetric]) simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1404
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1405
lemma wi_less: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1406
  "(word_of_int n < (word_of_int m :: 'a :: len0 word)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1407
    (n mod 2 ^ len_of TYPE('a) < m mod 2 ^ len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1408
  unfolding word_less_alt by (simp add: word_uint.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1409
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1410
lemma wi_le: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1411
  "(word_of_int n <= (word_of_int m :: 'a :: len0 word)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1412
    (n mod 2 ^ len_of TYPE('a) <= m mod 2 ^ len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1413
  unfolding word_le_def by (simp add: word_uint.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1414
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1415
lemma udvd_nat_alt: "a udvd b = (EX n>=0. unat b = n * unat a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1416
  apply (unfold udvd_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1417
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1418
   apply (simp add: unat_def nat_mult_distrib)
62348
9a5f43dac883 dropped various legacy fact bindings
haftmann
parents: 61941
diff changeset
  1419
  apply (simp add: uint_nat of_nat_mult)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1420
  apply (rule exI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1421
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1422
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1423
   apply (erule notE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1424
   apply (rule refl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1425
  apply force
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1426
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1427
61941
31f2105521ee discontinued ASCII replacement syntax <->;
wenzelm
parents: 61824
diff changeset
  1428
lemma udvd_iff_dvd: "x udvd y \<longleftrightarrow> unat x dvd unat y"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1429
  unfolding dvd_def udvd_nat_alt by force
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1430
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1431
lemmas unat_mono = word_less_nat_alt [THEN iffD1]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1432
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1433
lemma unat_minus_one:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1434
  assumes "w \<noteq> 0"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1435
  shows "unat (w - 1) = unat w - 1"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1436
proof -
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1437
  have "0 \<le> uint w" by (fact uint_nonnegative)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1438
  moreover from assms have "0 \<noteq> uint w" by (simp add: uint_0_iff)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1439
  ultimately have "1 \<le> uint w" by arith
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1440
  from uint_lt2p [of w] have "uint w - 1 < 2 ^ len_of TYPE('a)" by arith
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1441
  with \<open>1 \<le> uint w\<close> have "(uint w - 1) mod 2 ^ len_of TYPE('a) = uint w - 1"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1442
    by (auto intro: mod_pos_pos_trivial)
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1443
  with \<open>1 \<le> uint w\<close> have "nat ((uint w - 1) mod 2 ^ len_of TYPE('a)) = nat (uint w) - 1"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1444
    by auto
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1445
  then show ?thesis
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  1446
    by (simp only: unat_def int_word_uint word_arith_wis mod_diff_right_eq [symmetric])
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1447
qed
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1448
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1449
lemma measure_unat: "p ~= 0 \<Longrightarrow> unat (p - 1) < unat p"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1450
  by (simp add: unat_minus_one) (simp add: unat_0_iff [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1451
  
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1452
lemmas uint_add_ge0 [simp] = add_nonneg_nonneg [OF uint_ge_0 uint_ge_0]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1453
lemmas uint_mult_ge0 [simp] = mult_nonneg_nonneg [OF uint_ge_0 uint_ge_0]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1454
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1455
lemma uint_sub_lt2p [simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1456
  "uint (x :: 'a :: len0 word) - uint (y :: 'b :: len0 word) < 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1457
    2 ^ len_of TYPE('a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1458
  using uint_ge_0 [of y] uint_lt2p [of x] by arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1459
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1460
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1461
subsection \<open>Conditions for the addition (etc) of two words to overflow\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1462
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1463
lemma uint_add_lem: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1464
  "(uint x + uint y < 2 ^ len_of TYPE('a)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1465
    (uint (x + y :: 'a :: len0 word) = uint x + uint y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1466
  by (unfold uint_word_ariths) (auto intro!: trans [OF _ int_mod_lem])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1467
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1468
lemma uint_mult_lem: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1469
  "(uint x * uint y < 2 ^ len_of TYPE('a)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1470
    (uint (x * y :: 'a :: len0 word) = uint x * uint y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1471
  by (unfold uint_word_ariths) (auto intro!: trans [OF _ int_mod_lem])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1472
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1473
lemma uint_sub_lem: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1474
  "(uint x >= uint y) = (uint (x - y) = uint x - uint y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1475
  by (unfold uint_word_ariths) (auto intro!: trans [OF _ int_mod_lem])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1476
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1477
lemma uint_add_le: "uint (x + y) <= uint x + uint y"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1478
  unfolding uint_word_ariths by (metis uint_add_ge0 zmod_le_nonneg_dividend)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1479
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1480
lemma uint_sub_ge: "uint (x - y) >= uint x - uint y"
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1481
  unfolding uint_word_ariths by (metis int_mod_ge uint_sub_lt2p zless2p)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1482
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1483
lemma mod_add_if_z:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1484
  "(x :: int) < z ==> y < z ==> 0 <= y ==> 0 <= x ==> 0 <= z ==> 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1485
   (x + y) mod z = (if x + y < z then x + y else x + y - z)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1486
  by (auto intro: int_mod_eq)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1487
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1488
lemma uint_plus_if':
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1489
  "uint ((a::'a word) + b) =
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1490
  (if uint a + uint b < 2 ^ len_of TYPE('a::len0) then uint a + uint b
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1491
   else uint a + uint b - 2 ^ len_of TYPE('a))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1492
  using mod_add_if_z [of "uint a" _ "uint b"] by (simp add: uint_word_ariths)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1493
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1494
lemma mod_sub_if_z:
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1495
  "(x :: int) < z ==> y < z ==> 0 <= y ==> 0 <= x ==> 0 <= z ==> 
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1496
   (x - y) mod z = (if y <= x then x - y else x - y + z)"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1497
  by (auto intro: int_mod_eq)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1498
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1499
lemma uint_sub_if':
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1500
  "uint ((a::'a word) - b) =
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1501
  (if uint b \<le> uint a then uint a - uint b
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1502
   else uint a - uint b + 2 ^ len_of TYPE('a::len0))"
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1503
  using mod_sub_if_z [of "uint a" _ "uint b"] by (simp add: uint_word_ariths)
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1504
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1505
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1506
subsection \<open>Definition of \<open>uint_arith\<close>\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1507
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1508
lemma word_of_int_inverse:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1509
  "word_of_int r = a \<Longrightarrow> 0 <= r \<Longrightarrow> r < 2 ^ len_of TYPE('a) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1510
   uint (a::'a::len0 word) = r"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1511
  apply (erule word_uint.Abs_inverse' [rotated])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1512
  apply (simp add: uints_num)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1513
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1514
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1515
lemma uint_split:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1516
  fixes x::"'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1517
  shows "P (uint x) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1518
         (ALL i. word_of_int i = x & 0 <= i & i < 2^len_of TYPE('a) --> P i)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1519
  apply (fold word_int_case_def)
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1520
  apply (auto dest!: word_of_int_inverse simp: int_word_uint mod_pos_pos_trivial
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1521
              split: word_int_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1522
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1523
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1524
lemma uint_split_asm:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1525
  fixes x::"'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1526
  shows "P (uint x) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1527
         (~(EX i. word_of_int i = x & 0 <= i & i < 2^len_of TYPE('a) & ~ P i))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1528
  by (auto dest!: word_of_int_inverse 
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1529
           simp: int_word_uint mod_pos_pos_trivial
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1530
           split: uint_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1531
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1532
lemmas uint_splits = uint_split uint_split_asm
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1533
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1534
lemmas uint_arith_simps = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1535
  word_le_def word_less_alt
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1536
  word_uint.Rep_inject [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1537
  uint_sub_if' uint_plus_if'
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1538
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1539
(* use this to stop, eg, 2 ^ len_of TYPE (32) being simplified *)
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1540
lemma power_False_cong: "False \<Longrightarrow> a ^ b = c ^ d" 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1541
  by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1542
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1543
(* uint_arith_tac: reduce to arithmetic on int, try to solve by arith *)
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1544
ML \<open>
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1545
fun uint_arith_simpset ctxt = 
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1546
  ctxt addsimps @{thms uint_arith_simps}
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1547
     delsimps @{thms word_uint.Rep_inject}
45620
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45604
diff changeset
  1548
     |> fold Splitter.add_split @{thms split_if_asm}
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45604
diff changeset
  1549
     |> fold Simplifier.add_cong @{thms power_False_cong}
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1550
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1551
fun uint_arith_tacs ctxt = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1552
  let
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1553
    fun arith_tac' n t =
59657
2441a80fb6c1 eliminated unused arith "verbose" flag -- tools that need options can use the context;
wenzelm
parents: 59498
diff changeset
  1554
      Arith_Data.arith_tac ctxt n t
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1555
        handle Cooper.COOPER _ => Seq.empty;
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1556
  in 
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 41550
diff changeset
  1557
    [ clarify_tac ctxt 1,
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1558
      full_simp_tac (uint_arith_simpset ctxt) 1,
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1559
      ALLGOALS (full_simp_tac
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1560
        (put_simpset HOL_ss ctxt
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1561
          |> fold Splitter.add_split @{thms uint_splits}
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  1562
          |> fold Simplifier.add_cong @{thms power_False_cong})),
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 54489
diff changeset
  1563
      rewrite_goals_tac ctxt @{thms word_size}, 
59498
50b60f501b05 proper context for resolve_tac, eresolve_tac, dresolve_tac, forward_tac etc.;
wenzelm
parents: 59487
diff changeset
  1564
      ALLGOALS  (fn n => REPEAT (resolve_tac ctxt [allI, impI] n) THEN
60754
02924903a6fd prefer tactics with explicit context;
wenzelm
parents: 60429
diff changeset
  1565
                         REPEAT (eresolve_tac ctxt [conjE] n) THEN
02924903a6fd prefer tactics with explicit context;
wenzelm
parents: 60429
diff changeset
  1566
                         REPEAT (dresolve_tac ctxt @{thms word_of_int_inverse} n 
58963
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58874
diff changeset
  1567
                                 THEN assume_tac ctxt n 
26bf09b95dda proper context for assume_tac (atac remains as fall-back without context);
wenzelm
parents: 58874
diff changeset
  1568
                                 THEN assume_tac ctxt n)),
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1569
      TRYALL arith_tac' ]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1570
  end
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1571
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1572
fun uint_arith_tac ctxt = SELECT_GOAL (EVERY (uint_arith_tacs ctxt))
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1573
\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1574
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1575
method_setup uint_arith = 
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1576
  \<open>Scan.succeed (SIMPLE_METHOD' o uint_arith_tac)\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1577
  "solving word arithmetic via integers and arith"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1578
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1579
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1580
subsection \<open>More on overflows and monotonicity\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1581
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1582
lemma no_plus_overflow_uint_size: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1583
  "((x :: 'a :: len0 word) <= x + y) = (uint x + uint y < 2 ^ size x)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1584
  unfolding word_size by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1585
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1586
lemmas no_olen_add = no_plus_overflow_uint_size [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1587
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1588
lemma no_ulen_sub: "((x :: 'a :: len0 word) >= x - y) = (uint y <= uint x)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1589
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1590
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1591
lemma no_olen_add':
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1592
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1593
  shows "(x \<le> y + x) = (uint y + uint x < 2 ^ len_of TYPE('a))"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1594
  by (simp add: ac_simps no_olen_add)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1595
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1596
lemmas olen_add_eqv = trans [OF no_olen_add no_olen_add' [symmetric]]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1597
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1598
lemmas uint_plus_simple_iff = trans [OF no_olen_add uint_add_lem]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1599
lemmas uint_plus_simple = uint_plus_simple_iff [THEN iffD1]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1600
lemmas uint_minus_simple_iff = trans [OF no_ulen_sub uint_sub_lem]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1601
lemmas uint_minus_simple_alt = uint_sub_lem [folded word_le_def]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1602
lemmas word_sub_le_iff = no_ulen_sub [folded word_le_def]
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1603
lemmas word_sub_le = word_sub_le_iff [THEN iffD2]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1604
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1605
lemma word_less_sub1: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1606
  "(x :: 'a :: len word) ~= 0 \<Longrightarrow> (1 < x) = (0 < x - 1)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1607
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1608
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1609
lemma word_le_sub1: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1610
  "(x :: 'a :: len word) ~= 0 \<Longrightarrow> (1 <= x) = (0 <= x - 1)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1611
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1612
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1613
lemma sub_wrap_lt: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1614
  "((x :: 'a :: len0 word) < x - z) = (x < z)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1615
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1616
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1617
lemma sub_wrap: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1618
  "((x :: 'a :: len0 word) <= x - z) = (z = 0 | x < z)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1619
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1620
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1621
lemma plus_minus_not_NULL_ab: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1622
  "(x :: 'a :: len0 word) <= ab - c \<Longrightarrow> c <= ab \<Longrightarrow> c ~= 0 \<Longrightarrow> x + c ~= 0"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1623
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1624
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1625
lemma plus_minus_no_overflow_ab: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1626
  "(x :: 'a :: len0 word) <= ab - c \<Longrightarrow> c <= ab \<Longrightarrow> x <= x + c" 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1627
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1628
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1629
lemma le_minus': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1630
  "(a :: 'a :: len0 word) + c <= b \<Longrightarrow> a <= a + c \<Longrightarrow> c <= b - a"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1631
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1632
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1633
lemma le_plus': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1634
  "(a :: 'a :: len0 word) <= b \<Longrightarrow> c <= b - a \<Longrightarrow> a + c <= b"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1635
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1636
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1637
lemmas le_plus = le_plus' [rotated]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1638
46011
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  1639
lemmas le_minus = leD [THEN thin_rl, THEN le_minus'] (* FIXME *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1640
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1641
lemma word_plus_mono_right: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1642
  "(y :: 'a :: len0 word) <= z \<Longrightarrow> x <= x + z \<Longrightarrow> x + y <= x + z"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1643
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1644
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1645
lemma word_less_minus_cancel: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1646
  "y - x < z - x \<Longrightarrow> x <= z \<Longrightarrow> (y :: 'a :: len0 word) < z"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1647
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1648
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1649
lemma word_less_minus_mono_left: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1650
  "(y :: 'a :: len0 word) < z \<Longrightarrow> x <= y \<Longrightarrow> y - x < z - x"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1651
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1652
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1653
lemma word_less_minus_mono:  
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1654
  "a < c \<Longrightarrow> d < b \<Longrightarrow> a - b < a \<Longrightarrow> c - d < c 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1655
  \<Longrightarrow> a - b < c - (d::'a::len word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1656
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1657
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1658
lemma word_le_minus_cancel: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1659
  "y - x <= z - x \<Longrightarrow> x <= z \<Longrightarrow> (y :: 'a :: len0 word) <= z"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1660
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1661
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1662
lemma word_le_minus_mono_left: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1663
  "(y :: 'a :: len0 word) <= z \<Longrightarrow> x <= y \<Longrightarrow> y - x <= z - x"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1664
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1665
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1666
lemma word_le_minus_mono:  
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1667
  "a <= c \<Longrightarrow> d <= b \<Longrightarrow> a - b <= a \<Longrightarrow> c - d <= c 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1668
  \<Longrightarrow> a - b <= c - (d::'a::len word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1669
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1670
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1671
lemma plus_le_left_cancel_wrap: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1672
  "(x :: 'a :: len0 word) + y' < x \<Longrightarrow> x + y < x \<Longrightarrow> (x + y' < x + y) = (y' < y)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1673
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1674
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1675
lemma plus_le_left_cancel_nowrap: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1676
  "(x :: 'a :: len0 word) <= x + y' \<Longrightarrow> x <= x + y \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1677
    (x + y' < x + y) = (y' < y)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1678
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1679
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1680
lemma word_plus_mono_right2: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1681
  "(a :: 'a :: len0 word) <= a + b \<Longrightarrow> c <= b \<Longrightarrow> a <= a + c"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1682
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1683
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1684
lemma word_less_add_right: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1685
  "(x :: 'a :: len0 word) < y - z \<Longrightarrow> z <= y \<Longrightarrow> x + z < y"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1686
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1687
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1688
lemma word_less_sub_right: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1689
  "(x :: 'a :: len0 word) < y + z \<Longrightarrow> y <= x \<Longrightarrow> x - y < z"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1690
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1691
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1692
lemma word_le_plus_either: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1693
  "(x :: 'a :: len0 word) <= y | x <= z \<Longrightarrow> y <= y + z \<Longrightarrow> x <= y + z"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1694
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1695
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1696
lemma word_less_nowrapI: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1697
  "(x :: 'a :: len0 word) < z - k \<Longrightarrow> k <= z \<Longrightarrow> 0 < k \<Longrightarrow> x < x + k"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1698
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1699
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1700
lemma inc_le: "(i :: 'a :: len word) < m \<Longrightarrow> i + 1 <= m"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1701
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1702
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1703
lemma inc_i: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1704
  "(1 :: 'a :: len word) <= i \<Longrightarrow> i < m \<Longrightarrow> 1 <= (i + 1) & i + 1 <= m"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1705
  by uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1706
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1707
lemma udvd_incr_lem:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1708
  "up < uq \<Longrightarrow> up = ua + n * uint K \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1709
    uq = ua + n' * uint K \<Longrightarrow> up + uint K <= uq"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1710
  apply clarsimp
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  1711
  
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1712
  apply (drule less_le_mult)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1713
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1714
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1715
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1716
lemma udvd_incr': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1717
  "p < q \<Longrightarrow> uint p = ua + n * uint K \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1718
    uint q = ua + n' * uint K \<Longrightarrow> p + K <= q" 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1719
  apply (unfold word_less_alt word_le_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1720
  apply (drule (2) udvd_incr_lem)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1721
  apply (erule uint_add_le [THEN order_trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1722
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1723
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1724
lemma udvd_decr': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1725
  "p < q \<Longrightarrow> uint p = ua + n * uint K \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1726
    uint q = ua + n' * uint K \<Longrightarrow> p <= q - K"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1727
  apply (unfold word_less_alt word_le_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1728
  apply (drule (2) udvd_incr_lem)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1729
  apply (drule le_diff_eq [THEN iffD2])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1730
  apply (erule order_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1731
  apply (rule uint_sub_ge)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1732
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1733
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1734
lemmas udvd_incr_lem0 = udvd_incr_lem [where ua=0, unfolded add_0_left]
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1735
lemmas udvd_incr0 = udvd_incr' [where ua=0, unfolded add_0_left]
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1736
lemmas udvd_decr0 = udvd_decr' [where ua=0, unfolded add_0_left]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1737
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1738
lemma udvd_minus_le': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1739
  "xy < k \<Longrightarrow> z udvd xy \<Longrightarrow> z udvd k \<Longrightarrow> xy <= k - z"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1740
  apply (unfold udvd_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1741
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1742
  apply (erule (2) udvd_decr0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1743
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1744
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1745
lemma udvd_incr2_K: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1746
  "p < a + s \<Longrightarrow> a <= a + s \<Longrightarrow> K udvd s \<Longrightarrow> K udvd p - a \<Longrightarrow> a <= p \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1747
    0 < K \<Longrightarrow> p <= p + K & p + K <= a + s"
51286
wenzelm
parents: 51143
diff changeset
  1748
  using [[simproc del: linordered_ring_less_cancel_factor]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1749
  apply (unfold udvd_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1750
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1751
  apply (simp add: uint_arith_simps split: split_if_asm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1752
   prefer 2 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1753
   apply (insert uint_range' [of s])[1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1754
   apply arith
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  1755
  apply (drule add.commute [THEN xtr1])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1756
  apply (simp add: diff_less_eq [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1757
  apply (drule less_le_mult)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1758
   apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1759
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1760
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1761
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1762
(* links with rbl operations *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1763
lemma word_succ_rbl:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1764
  "to_bl w = bl \<Longrightarrow> to_bl (word_succ w) = (rev (rbl_succ (rev bl)))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1765
  apply (unfold word_succ_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1766
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1767
  apply (simp add: to_bl_of_bin)
46654
134b74908a8e avoid using Int.succ or Int.pred in proofs
huffman
parents: 46648
diff changeset
  1768
  apply (simp add: to_bl_def rbl_succ)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1769
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1770
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1771
lemma word_pred_rbl:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1772
  "to_bl w = bl \<Longrightarrow> to_bl (word_pred w) = (rev (rbl_pred (rev bl)))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1773
  apply (unfold word_pred_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1774
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1775
  apply (simp add: to_bl_of_bin)
46654
134b74908a8e avoid using Int.succ or Int.pred in proofs
huffman
parents: 46648
diff changeset
  1776
  apply (simp add: to_bl_def rbl_pred)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1777
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1778
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1779
lemma word_add_rbl:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1780
  "to_bl v = vbl \<Longrightarrow> to_bl w = wbl \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1781
    to_bl (v + w) = (rev (rbl_add (rev vbl) (rev wbl)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1782
  apply (unfold word_add_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1783
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1784
  apply (simp add: to_bl_of_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1785
  apply (simp add: to_bl_def rbl_add)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1786
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1787
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1788
lemma word_mult_rbl:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1789
  "to_bl v = vbl \<Longrightarrow> to_bl w = wbl \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1790
    to_bl (v * w) = (rev (rbl_mult (rev vbl) (rev wbl)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1791
  apply (unfold word_mult_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1792
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1793
  apply (simp add: to_bl_of_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1794
  apply (simp add: to_bl_def rbl_mult)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1795
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1796
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1797
lemma rtb_rbl_ariths:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1798
  "rev (to_bl w) = ys \<Longrightarrow> rev (to_bl (word_succ w)) = rbl_succ ys"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1799
  "rev (to_bl w) = ys \<Longrightarrow> rev (to_bl (word_pred w)) = rbl_pred ys"
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1800
  "rev (to_bl v) = ys \<Longrightarrow> rev (to_bl w) = xs \<Longrightarrow> rev (to_bl (v * w)) = rbl_mult ys xs"
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1801
  "rev (to_bl v) = ys \<Longrightarrow> rev (to_bl w) = xs \<Longrightarrow> rev (to_bl (v + w)) = rbl_add ys xs"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1802
  by (auto simp: rev_swap [symmetric] word_succ_rbl 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1803
                 word_pred_rbl word_mult_rbl word_add_rbl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1804
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1805
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1806
subsection \<open>Arithmetic type class instantiations\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1807
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1808
lemmas word_le_0_iff [simp] =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1809
  word_zero_le [THEN leD, THEN linorder_antisym_conv1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1810
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1811
lemma word_of_int_nat: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1812
  "0 <= x \<Longrightarrow> word_of_int x = of_nat (nat x)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1813
  by (simp add: of_nat_nat word_of_int)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1814
46603
83a5160e6b4d removed unnecessary lemma zero_bintrunc
huffman
parents: 46602
diff changeset
  1815
(* note that iszero_def is only for class comm_semiring_1_cancel,
83a5160e6b4d removed unnecessary lemma zero_bintrunc
huffman
parents: 46602
diff changeset
  1816
   which requires word length >= 1, ie 'a :: len word *) 
83a5160e6b4d removed unnecessary lemma zero_bintrunc
huffman
parents: 46602
diff changeset
  1817
lemma iszero_word_no [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1818
  "iszero (numeral bin :: 'a :: len word) = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1819
    iszero (bintrunc (len_of TYPE('a)) (numeral bin))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1820
  using word_ubin.norm_eq_iff [where 'a='a, of "numeral bin" 0]
46603
83a5160e6b4d removed unnecessary lemma zero_bintrunc
huffman
parents: 46602
diff changeset
  1821
  by (simp add: iszero_def [symmetric])
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1822
    
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1823
text \<open>Use \<open>iszero\<close> to simplify equalities between word numerals.\<close>
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1824
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1825
lemmas word_eq_numeral_iff_iszero [simp] =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  1826
  eq_numeral_iff_iszero [where 'a="'a::len word"]
46603
83a5160e6b4d removed unnecessary lemma zero_bintrunc
huffman
parents: 46602
diff changeset
  1827
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1828
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  1829
subsection \<open>Word and nat\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1830
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  1831
lemma td_ext_unat [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1832
  "n = len_of TYPE ('a :: len) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1833
    td_ext (unat :: 'a word => nat) of_nat 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1834
    (unats n) (%i. i mod 2 ^ n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1835
  apply (unfold td_ext_def' unat_def word_of_nat unats_uints)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1836
  apply (auto intro!: imageI simp add : word_of_int_hom_syms)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1837
  apply (erule word_uint.Abs_inverse [THEN arg_cong])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1838
  apply (simp add: int_word_uint nat_mod_distrib nat_power_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1839
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1840
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1841
lemmas unat_of_nat = td_ext_unat [THEN td_ext.eq_norm]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1842
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1843
interpretation word_unat:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1844
  td_ext "unat::'a::len word => nat" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1845
         of_nat 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1846
         "unats (len_of TYPE('a::len))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1847
         "%i. i mod 2 ^ len_of TYPE('a::len)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1848
  by (rule td_ext_unat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1849
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1850
lemmas td_unat = word_unat.td_thm
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1851
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1852
lemmas unat_lt2p [iff] = word_unat.Rep [unfolded unats_def mem_Collect_eq]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1853
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1854
lemma unat_le: "y <= unat (z :: 'a :: len word) \<Longrightarrow> y : unats (len_of TYPE ('a))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1855
  apply (unfold unats_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1856
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1857
  apply (rule xtrans, rule unat_lt2p, assumption) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1858
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1859
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1860
lemma word_nchotomy:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1861
  "ALL w. EX n. (w :: 'a :: len word) = of_nat n & n < 2 ^ len_of TYPE ('a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1862
  apply (rule allI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1863
  apply (rule word_unat.Abs_cases)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1864
  apply (unfold unats_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1865
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1866
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1867
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1868
lemma of_nat_eq:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1869
  fixes w :: "'a::len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1870
  shows "(of_nat n = w) = (\<exists>q. n = unat w + q * 2 ^ len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1871
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1872
   apply (rule word_unat.inverse_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1873
  apply (rule iffI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1874
   apply (rule mod_eqD)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1875
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1876
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1877
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1878
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1879
lemma of_nat_eq_size: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1880
  "(of_nat n = w) = (EX q. n = unat w + q * 2 ^ size w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1881
  unfolding word_size by (rule of_nat_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1882
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1883
lemma of_nat_0:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1884
  "(of_nat m = (0::'a::len word)) = (\<exists>q. m = q * 2 ^ len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1885
  by (simp add: of_nat_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1886
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  1887
lemma of_nat_2p [simp]:
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  1888
  "of_nat (2 ^ len_of TYPE('a)) = (0::'a::len word)"
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  1889
  by (fact mult_1 [symmetric, THEN iffD2 [OF of_nat_0 exI]])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1890
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1891
lemma of_nat_gt_0: "of_nat k ~= 0 \<Longrightarrow> 0 < k"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1892
  by (cases k) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1893
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1894
lemma of_nat_neq_0: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1895
  "0 < k \<Longrightarrow> k < 2 ^ len_of TYPE ('a :: len) \<Longrightarrow> of_nat k ~= (0 :: 'a word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1896
  by (clarsimp simp add : of_nat_0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1897
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1898
lemma Abs_fnat_hom_add:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1899
  "of_nat a + of_nat b = of_nat (a + b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1900
  by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1901
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1902
lemma Abs_fnat_hom_mult:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1903
  "of_nat a * of_nat b = (of_nat (a * b) :: 'a :: len word)"
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
  1904
  by (simp add: word_of_nat wi_hom_mult)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1905
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1906
lemma Abs_fnat_hom_Suc:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1907
  "word_succ (of_nat a) = of_nat (Suc a)"
57514
bdc2c6b40bf2 prefer ac_simps collections over separate name bindings for add and mult
haftmann
parents: 57512
diff changeset
  1908
  by (simp add: word_of_nat wi_hom_succ ac_simps)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1909
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1910
lemma Abs_fnat_hom_0: "(0::'a::len word) = of_nat 0"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1911
  by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1912
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1913
lemma Abs_fnat_hom_1: "(1::'a::len word) = of_nat (Suc 0)"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1914
  by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1915
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1916
lemmas Abs_fnat_homs = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1917
  Abs_fnat_hom_add Abs_fnat_hom_mult Abs_fnat_hom_Suc 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1918
  Abs_fnat_hom_0 Abs_fnat_hom_1
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1919
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1920
lemma word_arith_nat_add:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1921
  "a + b = of_nat (unat a + unat b)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1922
  by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1923
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1924
lemma word_arith_nat_mult:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1925
  "a * b = of_nat (unat a * unat b)"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  1926
  by (simp add: of_nat_mult)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1927
    
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1928
lemma word_arith_nat_Suc:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1929
  "word_succ a = of_nat (Suc (unat a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1930
  by (subst Abs_fnat_hom_Suc [symmetric]) simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1931
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1932
lemma word_arith_nat_div:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1933
  "a div b = of_nat (unat a div unat b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1934
  by (simp add: word_div_def word_of_nat zdiv_int uint_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1935
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1936
lemma word_arith_nat_mod:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1937
  "a mod b = of_nat (unat a mod unat b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1938
  by (simp add: word_mod_def word_of_nat zmod_int uint_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1939
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1940
lemmas word_arith_nat_defs =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1941
  word_arith_nat_add word_arith_nat_mult
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1942
  word_arith_nat_Suc Abs_fnat_hom_0
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1943
  Abs_fnat_hom_1 word_arith_nat_div
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1944
  word_arith_nat_mod 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1945
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1946
lemma unat_cong: "x = y \<Longrightarrow> unat x = unat y"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1947
  by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1948
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1949
lemmas unat_word_ariths = word_arith_nat_defs
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1950
  [THEN trans [OF unat_cong unat_of_nat]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1951
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1952
lemmas word_sub_less_iff = word_sub_le_iff
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  1953
  [unfolded linorder_not_less [symmetric] Not_eq_iff]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1954
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1955
lemma unat_add_lem: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1956
  "(unat x + unat y < 2 ^ len_of TYPE('a)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1957
    (unat (x + y :: 'a :: len word) = unat x + unat y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1958
  unfolding unat_word_ariths
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1959
  by (auto intro!: trans [OF _ nat_mod_lem])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1960
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1961
lemma unat_mult_lem: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1962
  "(unat x * unat y < 2 ^ len_of TYPE('a)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1963
    (unat (x * y :: 'a :: len word) = unat x * unat y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1964
  unfolding unat_word_ariths
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1965
  by (auto intro!: trans [OF _ nat_mod_lem])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1966
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1967
lemmas unat_plus_if' = trans [OF unat_word_ariths(1) mod_nat_add, simplified]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1968
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1969
lemma le_no_overflow: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  1970
  "x <= b \<Longrightarrow> a <= a + b \<Longrightarrow> x <= a + (b :: 'a :: len0 word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1971
  apply (erule order_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1972
  apply (erule olen_add_eqv [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1973
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1974
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  1975
lemmas un_ui_le = trans [OF word_le_nat_alt [symmetric] word_le_def]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1976
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1977
lemma unat_sub_if_size:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1978
  "unat (x - y) = (if unat y <= unat x 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1979
   then unat x - unat y 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1980
   else unat x + 2 ^ size x - unat y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1981
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1982
  apply (simp add: un_ui_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1983
  apply (auto simp add: unat_def uint_sub_if')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1984
   apply (rule nat_diff_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1985
    prefer 3
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1986
    apply (simp add: algebra_simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1987
    apply (rule nat_diff_distrib [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1988
      prefer 3
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1989
      apply (subst nat_add_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1990
        prefer 3
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1991
        apply (simp add: nat_power_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1992
       apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1993
  apply uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1994
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1995
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1996
lemmas unat_sub_if' = unat_sub_if_size [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1997
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1998
lemma unat_div: "unat ((x :: 'a :: len word) div y) = unat x div unat y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  1999
  apply (simp add : unat_word_ariths)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2000
  apply (rule unat_lt2p [THEN xtr7, THEN nat_mod_eq'])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2001
  apply (rule div_le_dividend)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2002
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2003
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2004
lemma unat_mod: "unat ((x :: 'a :: len word) mod y) = unat x mod unat y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2005
  apply (clarsimp simp add : unat_word_ariths)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2006
  apply (cases "unat y")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2007
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2008
   apply (rule unat_lt2p [THEN xtr7, THEN nat_mod_eq'])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2009
   apply (rule mod_le_divisor)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2010
   apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2011
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2012
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2013
lemma uint_div: "uint ((x :: 'a :: len word) div y) = uint x div uint y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2014
  unfolding uint_nat by (simp add : unat_div zdiv_int)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2015
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2016
lemma uint_mod: "uint ((x :: 'a :: len word) mod y) = uint x mod uint y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2017
  unfolding uint_nat by (simp add : unat_mod zmod_int)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2018
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2019
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2020
subsection \<open>Definition of \<open>unat_arith\<close> tactic\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2021
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2022
lemma unat_split:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2023
  fixes x::"'a::len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2024
  shows "P (unat x) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2025
         (ALL n. of_nat n = x & n < 2^len_of TYPE('a) --> P n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2026
  by (auto simp: unat_of_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2027
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2028
lemma unat_split_asm:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2029
  fixes x::"'a::len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2030
  shows "P (unat x) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2031
         (~(EX n. of_nat n = x & n < 2^len_of TYPE('a) & ~ P n))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2032
  by (auto simp: unat_of_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2033
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2034
lemmas of_nat_inverse = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2035
  word_unat.Abs_inverse' [rotated, unfolded unats_def, simplified]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2036
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2037
lemmas unat_splits = unat_split unat_split_asm
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2038
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2039
lemmas unat_arith_simps =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2040
  word_le_nat_alt word_less_nat_alt
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2041
  word_unat.Rep_inject [symmetric]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2042
  unat_sub_if' unat_plus_if' unat_div unat_mod
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2043
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2044
(* unat_arith_tac: tactic to reduce word arithmetic to nat, 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2045
   try to solve via arith *)
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2046
ML \<open>
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2047
fun unat_arith_simpset ctxt = 
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2048
  ctxt addsimps @{thms unat_arith_simps}
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2049
     delsimps @{thms word_unat.Rep_inject}
45620
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45604
diff changeset
  2050
     |> fold Splitter.add_split @{thms split_if_asm}
f2a587696afb modernized some old-style infix operations, which were left over from the time of ML proof scripts;
wenzelm
parents: 45604
diff changeset
  2051
     |> fold Simplifier.add_cong @{thms power_False_cong}
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2052
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2053
fun unat_arith_tacs ctxt =   
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2054
  let
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2055
    fun arith_tac' n t =
59657
2441a80fb6c1 eliminated unused arith "verbose" flag -- tools that need options can use the context;
wenzelm
parents: 59498
diff changeset
  2056
      Arith_Data.arith_tac ctxt n t
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2057
        handle Cooper.COOPER _ => Seq.empty;
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2058
  in 
42793
88bee9f6eec7 proper Proof.context for classical tactics;
wenzelm
parents: 41550
diff changeset
  2059
    [ clarify_tac ctxt 1,
51717
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2060
      full_simp_tac (unat_arith_simpset ctxt) 1,
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2061
      ALLGOALS (full_simp_tac
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2062
        (put_simpset HOL_ss ctxt
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2063
          |> fold Splitter.add_split @{thms unat_splits}
9e7d1c139569 simplifier uses proper Proof.context instead of historic type simpset;
wenzelm
parents: 51375
diff changeset
  2064
          |> fold Simplifier.add_cong @{thms power_False_cong})),
54742
7a86358a3c0b proper context for basic Simplifier operations: rewrite_rule, rewrite_goals_rule, rewrite_goals_tac etc.;
wenzelm
parents: 54489
diff changeset
  2065
      rewrite_goals_tac ctxt @{thms word_size}, 
60754
02924903a6fd prefer tactics with explicit context;
wenzelm
parents: 60429
diff changeset
  2066
      ALLGOALS (fn n => REPEAT (resolve_tac ctxt [allI, impI] n) THEN
02924903a6fd prefer tactics with explicit context;
wenzelm
parents: 60429
diff changeset
  2067
                         REPEAT (eresolve_tac ctxt [conjE] n) THEN
02924903a6fd prefer tactics with explicit context;
wenzelm
parents: 60429
diff changeset
  2068
                         REPEAT (dresolve_tac ctxt @{thms of_nat_inverse} n THEN assume_tac ctxt n)),
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2069
      TRYALL arith_tac' ] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2070
  end
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2071
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2072
fun unat_arith_tac ctxt = SELECT_GOAL (EVERY (unat_arith_tacs ctxt))
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2073
\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2074
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2075
method_setup unat_arith = 
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2076
  \<open>Scan.succeed (SIMPLE_METHOD' o unat_arith_tac)\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2077
  "solving word arithmetic via natural numbers and arith"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2078
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2079
lemma no_plus_overflow_unat_size: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2080
  "((x :: 'a :: len word) <= x + y) = (unat x + unat y < 2 ^ size x)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2081
  unfolding word_size by unat_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2082
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2083
lemmas no_olen_add_nat = no_plus_overflow_unat_size [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2084
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2085
lemmas unat_plus_simple = trans [OF no_olen_add_nat unat_add_lem]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2086
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2087
lemma word_div_mult: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2088
  "(0 :: 'a :: len word) < y \<Longrightarrow> unat x * unat y < 2 ^ len_of TYPE('a) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2089
    x * y div y = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2090
  apply unat_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2091
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2092
  apply (subst unat_mult_lem [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2093
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2094
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2095
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2096
lemma div_lt': "(i :: 'a :: len word) <= k div x \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2097
    unat i * unat x < 2 ^ len_of TYPE('a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2098
  apply unat_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2099
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2100
  apply (drule mult_le_mono1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2101
  apply (erule order_le_less_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2102
  apply (rule xtr7 [OF unat_lt2p div_mult_le])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2103
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2104
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2105
lemmas div_lt'' = order_less_imp_le [THEN div_lt']
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2106
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2107
lemma div_lt_mult: "(i :: 'a :: len word) < k div x \<Longrightarrow> 0 < x \<Longrightarrow> i * x < k"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2108
  apply (frule div_lt'' [THEN unat_mult_lem [THEN iffD1]])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2109
  apply (simp add: unat_arith_simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2110
  apply (drule (1) mult_less_mono1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2111
  apply (erule order_less_le_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2112
  apply (rule div_mult_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2113
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2114
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2115
lemma div_le_mult: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2116
  "(i :: 'a :: len word) <= k div x \<Longrightarrow> 0 < x \<Longrightarrow> i * x <= k"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2117
  apply (frule div_lt' [THEN unat_mult_lem [THEN iffD1]])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2118
  apply (simp add: unat_arith_simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2119
  apply (drule mult_le_mono1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2120
  apply (erule order_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2121
  apply (rule div_mult_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2122
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2123
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2124
lemma div_lt_uint': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2125
  "(i :: 'a :: len word) <= k div x \<Longrightarrow> uint i * uint x < 2 ^ len_of TYPE('a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2126
  apply (unfold uint_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2127
  apply (drule div_lt')
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
  2128
  by (metis of_nat_less_iff of_nat_mult of_nat_numeral of_nat_power)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2129
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2130
lemmas div_lt_uint'' = order_less_imp_le [THEN div_lt_uint']
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2131
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2132
lemma word_le_exists': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2133
  "(x :: 'a :: len0 word) <= y \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2134
    (EX z. y = x + z & uint x + uint z < 2 ^ len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2135
  apply (rule exI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2136
  apply (rule conjI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2137
  apply (rule zadd_diff_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2138
  apply uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2139
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2140
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2141
lemmas plus_minus_not_NULL = order_less_imp_le [THEN plus_minus_not_NULL_ab]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2142
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2143
lemmas plus_minus_no_overflow =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2144
  order_less_imp_le [THEN plus_minus_no_overflow_ab]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2145
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2146
lemmas mcs = word_less_minus_cancel word_less_minus_mono_left
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2147
  word_le_minus_cancel word_le_minus_mono_left
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2148
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2149
lemmas word_l_diffs = mcs [where y = "w + x", unfolded add_diff_cancel] for w x
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2150
lemmas word_diff_ls = mcs [where z = "w + x", unfolded add_diff_cancel] for w x
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2151
lemmas word_plus_mcs = word_diff_ls [where y = "v + x", unfolded add_diff_cancel] for v x
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2152
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2153
lemmas le_unat_uoi = unat_le [THEN word_unat.Abs_inverse]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2154
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2155
lemmas thd = refl [THEN [2] split_div_lemma [THEN iffD2], THEN conjunct1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2156
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
  2157
lemmas uno_simps [THEN le_unat_uoi] = mod_le_divisor div_le_dividend dtle 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2158
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2159
lemma word_mod_div_equality:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2160
  "(n div b) * b + (n mod b) = (n :: 'a :: len word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2161
  apply (unfold word_less_nat_alt word_arith_nat_defs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2162
  apply (cut_tac y="unat b" in gt_or_eq_0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2163
  apply (erule disjE)
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
  2164
   apply (simp only: mod_div_equality uno_simps Word.word_unat.Rep_inverse)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2165
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2166
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2167
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2168
lemma word_div_mult_le: "a div b * b <= (a::'a::len word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2169
  apply (unfold word_le_nat_alt word_arith_nat_defs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2170
  apply (cut_tac y="unat b" in gt_or_eq_0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2171
  apply (erule disjE)
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
  2172
   apply (simp only: div_mult_le uno_simps Word.word_unat.Rep_inverse)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2173
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2174
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2175
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2176
lemma word_mod_less_divisor: "0 < n \<Longrightarrow> m mod n < (n :: 'a :: len word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2177
  apply (simp only: word_less_nat_alt word_arith_nat_defs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2178
  apply (clarsimp simp add : uno_simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2179
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2180
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2181
lemma word_of_int_power_hom: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2182
  "word_of_int a ^ n = (word_of_int (a ^ n) :: 'a :: len word)"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  2183
  by (induct n) (simp_all add: wi_hom_mult [symmetric])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2184
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2185
lemma word_arith_power_alt: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2186
  "a ^ n = (word_of_int (uint a ^ n) :: 'a :: len word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2187
  by (simp add : word_of_int_power_hom [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2188
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2189
lemma of_bl_length_less: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2190
  "length x = k \<Longrightarrow> k < len_of TYPE('a) \<Longrightarrow> (of_bl x :: 'a :: len word) < 2 ^ k"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2191
  apply (unfold of_bl_def word_less_alt word_numeral_alt)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2192
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2193
  apply (simp (no_asm) add: word_of_int_power_hom word_uint.eq_norm 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2194
                       del: word_of_int_numeral)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2195
  apply (simp add: mod_pos_pos_trivial)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2196
  apply (subst mod_pos_pos_trivial)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2197
    apply (rule bl_to_bin_ge0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2198
   apply (rule order_less_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2199
    apply (rule bl_to_bin_lt2p)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2200
   apply simp
46646
0abbf6dd09ee remove ill-formed lemma of_bl_no; adapt proofs
huffman
parents: 46645
diff changeset
  2201
  apply (rule bl_to_bin_lt2p)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2202
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2203
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2204
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2205
subsection \<open>Cardinality, finiteness of set of words\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2206
45809
2bee94cbae72 finite class instance for word type; remove unused lemmas
huffman
parents: 45808
diff changeset
  2207
instance word :: (len0) finite
61169
4de9ff3ea29a tuned proofs -- less legacy;
wenzelm
parents: 61076
diff changeset
  2208
  by standard (simp add: type_definition.univ [OF type_definition_word])
45809
2bee94cbae72 finite class instance for word type; remove unused lemmas
huffman
parents: 45808
diff changeset
  2209
2bee94cbae72 finite class instance for word type; remove unused lemmas
huffman
parents: 45808
diff changeset
  2210
lemma card_word: "CARD('a::len0 word) = 2 ^ len_of TYPE('a)"
2bee94cbae72 finite class instance for word type; remove unused lemmas
huffman
parents: 45808
diff changeset
  2211
  by (simp add: type_definition.card [OF type_definition_word] nat_power_eq)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2212
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2213
lemma card_word_size: 
45809
2bee94cbae72 finite class instance for word type; remove unused lemmas
huffman
parents: 45808
diff changeset
  2214
  "card (UNIV :: 'a :: len0 word set) = (2 ^ size (x :: 'a word))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2215
unfolding word_size by (rule card_word)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2216
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2217
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2218
subsection \<open>Bitwise Operations on Words\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2219
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2220
lemmas bin_log_bintrs = bin_trunc_not bin_trunc_xor bin_trunc_and bin_trunc_or
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2221
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2222
(* following definitions require both arithmetic and bit-wise word operations *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2223
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2224
(* to get word_no_log_defs from word_log_defs, using bin_log_bintrs *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2225
lemmas wils1 = bin_log_bintrs [THEN word_ubin.norm_eq_iff [THEN iffD1],
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2226
  folded word_ubin.eq_norm, THEN eq_reflection]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2227
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2228
(* the binary operations only *)
46013
d2f179d26133 remove some duplicate lemmas
huffman
parents: 46012
diff changeset
  2229
(* BH: why is this needed? *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2230
lemmas word_log_binary_defs = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2231
  word_and_def word_or_def word_xor_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2232
46011
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  2233
lemma word_wi_log_defs:
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  2234
  "NOT word_of_int a = word_of_int (NOT a)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  2235
  "word_of_int a AND word_of_int b = word_of_int (a AND b)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  2236
  "word_of_int a OR word_of_int b = word_of_int (a OR b)"
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  2237
  "word_of_int a XOR word_of_int b = word_of_int (a XOR b)"
47374
9475d524bafb set up and use lift_definition for word operations
huffman
parents: 47372
diff changeset
  2238
  by (transfer, rule refl)+
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2239
46011
96a5f44c22da replace 'lemmas' with explicit 'lemma'
huffman
parents: 46010
diff changeset
  2240
lemma word_no_log_defs [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2241
  "NOT (numeral a) = word_of_int (NOT (numeral a))"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2242
  "NOT (- numeral a) = word_of_int (NOT (- numeral a))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2243
  "numeral a AND numeral b = word_of_int (numeral a AND numeral b)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2244
  "numeral a AND - numeral b = word_of_int (numeral a AND - numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2245
  "- numeral a AND numeral b = word_of_int (- numeral a AND numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2246
  "- numeral a AND - numeral b = word_of_int (- numeral a AND - numeral b)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2247
  "numeral a OR numeral b = word_of_int (numeral a OR numeral b)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2248
  "numeral a OR - numeral b = word_of_int (numeral a OR - numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2249
  "- numeral a OR numeral b = word_of_int (- numeral a OR numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2250
  "- numeral a OR - numeral b = word_of_int (- numeral a OR - numeral b)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2251
  "numeral a XOR numeral b = word_of_int (numeral a XOR numeral b)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2252
  "numeral a XOR - numeral b = word_of_int (numeral a XOR - numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2253
  "- numeral a XOR numeral b = word_of_int (- numeral a XOR numeral b)"
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2254
  "- numeral a XOR - numeral b = word_of_int (- numeral a XOR - numeral b)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2255
  by (transfer, rule refl)+
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2256
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2257
text \<open>Special cases for when one of the arguments equals 1.\<close>
46064
88ef116e0522 add simp rules for bitwise word operations with 1
huffman
parents: 46057
diff changeset
  2258
88ef116e0522 add simp rules for bitwise word operations with 1
huffman
parents: 46057
diff changeset
  2259
lemma word_bitwise_1_simps [simp]:
88ef116e0522 add simp rules for bitwise word operations with 1
huffman
parents: 46057
diff changeset
  2260
  "NOT (1::'a::len0 word) = -2"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2261
  "1 AND numeral b = word_of_int (1 AND numeral b)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2262
  "1 AND - numeral b = word_of_int (1 AND - numeral b)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2263
  "numeral a AND 1 = word_of_int (numeral a AND 1)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2264
  "- numeral a AND 1 = word_of_int (- numeral a AND 1)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2265
  "1 OR numeral b = word_of_int (1 OR numeral b)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2266
  "1 OR - numeral b = word_of_int (1 OR - numeral b)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2267
  "numeral a OR 1 = word_of_int (numeral a OR 1)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2268
  "- numeral a OR 1 = word_of_int (- numeral a OR 1)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2269
  "1 XOR numeral b = word_of_int (1 XOR numeral b)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2270
  "1 XOR - numeral b = word_of_int (1 XOR - numeral b)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2271
  "numeral a XOR 1 = word_of_int (numeral a XOR 1)"
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2272
  "- numeral a XOR 1 = word_of_int (- numeral a XOR 1)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2273
  by (transfer, simp)+
46064
88ef116e0522 add simp rules for bitwise word operations with 1
huffman
parents: 46057
diff changeset
  2274
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2275
text \<open>Special cases for when one of the arguments equals -1.\<close>
56979
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2276
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2277
lemma word_bitwise_m1_simps [simp]:
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2278
  "NOT (-1::'a::len0 word) = 0"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2279
  "(-1::'a::len0 word) AND x = x"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2280
  "x AND (-1::'a::len0 word) = x"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2281
  "(-1::'a::len0 word) OR x = -1"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2282
  "x OR (-1::'a::len0 word) = -1"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2283
  " (-1::'a::len0 word) XOR x = NOT x"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2284
  "x XOR (-1::'a::len0 word) = NOT x"
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2285
  by (transfer, simp)+
376604d56b54 added lemmas for -1
noschinl
parents: 56078
diff changeset
  2286
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2287
lemma uint_or: "uint (x OR y) = (uint x) OR (uint y)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2288
  by (transfer, simp add: bin_trunc_ao)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2289
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2290
lemma uint_and: "uint (x AND y) = (uint x) AND (uint y)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2291
  by (transfer, simp add: bin_trunc_ao)
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2292
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2293
lemma test_bit_wi [simp]:
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2294
  "(word_of_int x::'a::len0 word) !! n \<longleftrightarrow> n < len_of TYPE('a) \<and> bin_nth x n"
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2295
  unfolding word_test_bit_def
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2296
  by (simp add: word_ubin.eq_norm nth_bintr)
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2297
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2298
lemma word_test_bit_transfer [transfer_rule]:
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
  2299
  "(rel_fun pcr_word (rel_fun op = op =))
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2300
    (\<lambda>x n. n < len_of TYPE('a) \<and> bin_nth x n) (test_bit :: 'a::len0 word \<Rightarrow> _)"
55945
e96383acecf9 renamed 'fun_rel' to 'rel_fun'
blanchet
parents: 55833
diff changeset
  2301
  unfolding rel_fun_def word.pcr_cr_eq cr_word_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2302
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2303
lemma word_ops_nth_size:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2304
  "n < size (x::'a::len0 word) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2305
    (x OR y) !! n = (x !! n | y !! n) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2306
    (x AND y) !! n = (x !! n & y !! n) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2307
    (x XOR y) !! n = (x !! n ~= y !! n) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2308
    (NOT x) !! n = (~ x !! n)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2309
  unfolding word_size by transfer (simp add: bin_nth_ops)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2310
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2311
lemma word_ao_nth:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2312
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2313
  shows "(x OR y) !! n = (x !! n | y !! n) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2314
         (x AND y) !! n = (x !! n & y !! n)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2315
  by transfer (auto simp add: bin_nth_ops)
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2316
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2317
lemma test_bit_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2318
  "(numeral w :: 'a::len0 word) !! n \<longleftrightarrow>
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2319
    n < len_of TYPE('a) \<and> bin_nth (numeral w) n"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2320
  by transfer (rule refl)
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2321
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2322
lemma test_bit_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2323
  "(- numeral w :: 'a::len0 word) !! n \<longleftrightarrow>
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2324
    n < len_of TYPE('a) \<and> bin_nth (- numeral w) n"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2325
  by transfer (rule refl)
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2326
46172
c06e868dc339 add simp rule test_bit_1
huffman
parents: 46136
diff changeset
  2327
lemma test_bit_1 [simp]: "(1::'a::len word) !! n \<longleftrightarrow> n = 0"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2328
  by transfer auto
46172
c06e868dc339 add simp rule test_bit_1
huffman
parents: 46136
diff changeset
  2329
  
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2330
lemma nth_0 [simp]: "~ (0::'a::len0 word) !! n"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2331
  by transfer simp
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2332
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2333
lemma nth_minus1 [simp]: "(-1::'a::len0 word) !! n \<longleftrightarrow> n < len_of TYPE('a)"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2334
  by transfer simp
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2335
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2336
(* get from commutativity, associativity etc of int_and etc
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2337
  to same for word_and etc *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2338
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2339
lemmas bwsimps = 
46013
d2f179d26133 remove some duplicate lemmas
huffman
parents: 46012
diff changeset
  2340
  wi_hom_add
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2341
  word_wi_log_defs
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2342
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2343
lemma word_bw_assocs:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2344
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2345
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2346
  "(x AND y) AND z = x AND y AND z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2347
  "(x OR y) OR z = x OR y OR z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2348
  "(x XOR y) XOR z = x XOR y XOR z"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2349
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2350
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2351
lemma word_bw_comms:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2352
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2353
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2354
  "x AND y = y AND x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2355
  "x OR y = y OR x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2356
  "x XOR y = y XOR x"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2357
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2358
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2359
lemma word_bw_lcs:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2360
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2361
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2362
  "y AND x AND z = x AND y AND z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2363
  "y OR x OR z = x OR y OR z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2364
  "y XOR x XOR z = x XOR y XOR z"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2365
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2366
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2367
lemma word_log_esimps [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2368
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2369
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2370
  "x AND 0 = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2371
  "x AND -1 = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2372
  "x OR 0 = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2373
  "x OR -1 = -1"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2374
  "x XOR 0 = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2375
  "x XOR -1 = NOT x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2376
  "0 AND x = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2377
  "-1 AND x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2378
  "0 OR x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2379
  "-1 OR x = -1"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2380
  "0 XOR x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2381
  "-1 XOR x = NOT x"
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2382
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2383
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2384
lemma word_not_dist:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2385
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2386
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2387
  "NOT (x OR y) = NOT x AND NOT y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2388
  "NOT (x AND y) = NOT x OR NOT y"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2389
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2390
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2391
lemma word_bw_same:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2392
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2393
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2394
  "x AND x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2395
  "x OR x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2396
  "x XOR x = 0"
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2397
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2398
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2399
lemma word_ao_absorbs [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2400
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2401
  shows
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2402
  "x AND (y OR x) = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2403
  "x OR y AND x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2404
  "x AND (x OR y) = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2405
  "y AND x OR x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2406
  "(y OR x) AND x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2407
  "x OR x AND y = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2408
  "(x OR y) AND x = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2409
  "x AND y OR x = x"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2410
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2411
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2412
lemma word_not_not [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2413
  "NOT NOT (x::'a::len0 word) = x"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2414
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2415
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2416
lemma word_ao_dist:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2417
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2418
  shows "(x OR y) AND z = x AND z OR y AND z"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2419
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2420
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2421
lemma word_oa_dist:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2422
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2423
  shows "x AND y OR z = (x OR z) AND (y OR z)"
46022
657f87b10944 simplify some proofs
huffman
parents: 46021
diff changeset
  2424
  by (auto simp: word_eq_iff word_ops_nth_size [unfolded word_size])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2425
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2426
lemma word_add_not [simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2427
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2428
  shows "x + NOT x = -1"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2429
  by transfer (simp add: bin_add_not)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2430
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2431
lemma word_plus_and_or [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2432
  fixes x :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2433
  shows "(x AND y) + (x OR y) = x + y"
47372
9ab4e22dac7b configure transfer method for 'a word -> int
huffman
parents: 47168
diff changeset
  2434
  by transfer (simp add: plus_and_or)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2435
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2436
lemma leoa:   
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2437
  fixes x :: "'a::len0 word"
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2438
  shows "(w = (x OR y)) \<Longrightarrow> (y = (w AND y))" by auto
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2439
lemma leao: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2440
  fixes x' :: "'a::len0 word"
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2441
  shows "(w' = (x' AND y')) \<Longrightarrow> (x' = (x' OR w'))" by auto 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2442
48196
b7313810b6e6 explicit is better than implicit;
wenzelm
parents: 47941
diff changeset
  2443
lemma word_ao_equiv:
b7313810b6e6 explicit is better than implicit;
wenzelm
parents: 47941
diff changeset
  2444
  fixes w w' :: "'a::len0 word"
b7313810b6e6 explicit is better than implicit;
wenzelm
parents: 47941
diff changeset
  2445
  shows "(w = w OR w') = (w' = w AND w')"
b7313810b6e6 explicit is better than implicit;
wenzelm
parents: 47941
diff changeset
  2446
  by (auto intro: leoa leao)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2447
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2448
lemma le_word_or2: "x <= x OR (y::'a::len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2449
  unfolding word_le_def uint_or
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2450
  by (auto intro: le_int_or) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2451
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2452
lemmas le_word_or1 = xtr3 [OF word_bw_comms (2) le_word_or2]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2453
lemmas word_and_le1 = xtr3 [OF word_ao_absorbs (4) [symmetric] le_word_or2]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2454
lemmas word_and_le2 = xtr3 [OF word_ao_absorbs (8) [symmetric] le_word_or2]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2455
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2456
lemma bl_word_not: "to_bl (NOT w) = map Not (to_bl w)" 
45550
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2457
  unfolding to_bl_def word_log_defs bl_not_bin
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2458
  by (simp add: word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2459
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2460
lemma bl_word_xor: "to_bl (v XOR w) = map2 op ~= (to_bl v) (to_bl w)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2461
  unfolding to_bl_def word_log_defs bl_xor_bin
45550
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2462
  by (simp add: word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2463
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2464
lemma bl_word_or: "to_bl (v OR w) = map2 op | (to_bl v) (to_bl w)" 
45550
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2465
  unfolding to_bl_def word_log_defs bl_or_bin
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2466
  by (simp add: word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2467
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2468
lemma bl_word_and: "to_bl (v AND w) = map2 op & (to_bl v) (to_bl w)" 
45550
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2469
  unfolding to_bl_def word_log_defs bl_and_bin
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2470
  by (simp add: word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2471
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2472
lemma word_lsb_alt: "lsb (w::'a::len0 word) = test_bit w 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2473
  by (auto simp: word_test_bit_def word_lsb_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2474
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2475
lemma word_lsb_1_0 [simp]: "lsb (1::'a::len word) & ~ lsb (0::'b::len0 word)"
45550
73a4f31d41c4 Word.thy: reduce usage of numeral-representation-dependent thms like number_of_is_id in proofs
huffman
parents: 45549
diff changeset
  2476
  unfolding word_lsb_def uint_eq_0 uint_1 by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2477
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2478
lemma word_lsb_last: "lsb (w::'a::len word) = last (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2479
  apply (unfold word_lsb_def uint_bl bin_to_bl_def) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2480
  apply (rule_tac bin="uint w" in bin_exhaust)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2481
  apply (cases "size w")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2482
   apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2483
   apply (auto simp add: bin_to_bl_aux_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2484
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2485
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2486
lemma word_lsb_int: "lsb w = (uint w mod 2 = 1)"
45529
0e1037d4e049 remove redundant lemmas bin_last_mod and bin_rest_div, use bin_last_def and bin_rest_def instead
huffman
parents: 45528
diff changeset
  2487
  unfolding word_lsb_def bin_last_def by auto
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2488
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2489
lemma word_msb_sint: "msb w = (sint w < 0)" 
46604
9f9e85264e4d make uses of bin_sign respect int/bin distinction
huffman
parents: 46603
diff changeset
  2490
  unfolding word_msb_def sign_Min_lt_0 ..
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2491
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2492
lemma msb_word_of_int:
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2493
  "msb (word_of_int x::'a::len word) = bin_nth x (len_of TYPE('a) - 1)"
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2494
  unfolding word_msb_def by (simp add: word_sbin.eq_norm bin_sign_lem)
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2495
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2496
lemma word_msb_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2497
  "msb (numeral w::'a::len word) = bin_nth (numeral w) (len_of TYPE('a) - 1)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2498
  unfolding word_numeral_alt by (rule msb_word_of_int)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2499
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2500
lemma word_msb_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2501
  "msb (- numeral w::'a::len word) = bin_nth (- numeral w) (len_of TYPE('a) - 1)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2502
  unfolding word_neg_numeral_alt by (rule msb_word_of_int)
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2503
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2504
lemma word_msb_0 [simp]: "\<not> msb (0::'a::len word)"
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2505
  unfolding word_msb_def by simp
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2506
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2507
lemma word_msb_1 [simp]: "msb (1::'a::len word) \<longleftrightarrow> len_of TYPE('a) = 1"
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2508
  unfolding word_1_wi msb_word_of_int eq_iff [where 'a=nat]
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2509
  by (simp add: Suc_le_eq)
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2510
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2511
lemma word_msb_nth:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2512
  "msb (w::'a::len word) = bin_nth (uint w) (len_of TYPE('a) - 1)"
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  2513
  unfolding word_msb_def sint_uint by (simp add: bin_sign_lem)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2514
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2515
lemma word_msb_alt: "msb (w::'a::len word) = hd (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2516
  apply (unfold word_msb_nth uint_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2517
  apply (subst hd_conv_nth)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2518
  apply (rule length_greater_0_conv [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2519
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2520
  apply (simp add : nth_bin_to_bl word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2521
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2522
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2523
lemma word_set_nth [simp]:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2524
  "set_bit w n (test_bit w n) = (w::'a::len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2525
  unfolding word_test_bit_def word_set_bit_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2526
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2527
lemma bin_nth_uint':
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2528
  "bin_nth (uint w) n = (rev (bin_to_bl (size w) (uint w)) ! n & n < size w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2529
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2530
  apply (safe elim!: bin_nth_uint_imp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2531
   apply (frule bin_nth_uint_imp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2532
   apply (fast dest!: bin_nth_bl)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2533
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2534
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2535
lemmas bin_nth_uint = bin_nth_uint' [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2536
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2537
lemma test_bit_bl: "w !! n = (rev (to_bl w) ! n & n < size w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2538
  unfolding to_bl_def word_test_bit_def word_size
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2539
  by (rule bin_nth_uint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2540
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2541
lemma to_bl_nth: "n < size w \<Longrightarrow> to_bl w ! n = w !! (size w - Suc n)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2542
  apply (unfold test_bit_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2543
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2544
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2545
   apply (rule nth_rev_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2546
   apply (auto simp add: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2547
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2548
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2549
lemma test_bit_set: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2550
  fixes w :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2551
  shows "(set_bit w n x) !! n = (n < size w & x)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2552
  unfolding word_size word_test_bit_def word_set_bit_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2553
  by (clarsimp simp add : word_ubin.eq_norm nth_bintr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2554
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2555
lemma test_bit_set_gen: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2556
  fixes w :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2557
  shows "test_bit (set_bit w n x) m = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2558
         (if m = n then n < size w & x else test_bit w m)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2559
  apply (unfold word_size word_test_bit_def word_set_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2560
  apply (clarsimp simp add: word_ubin.eq_norm nth_bintr bin_nth_sc_gen)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2561
  apply (auto elim!: test_bit_size [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2562
              simp add: word_test_bit_def [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2563
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2564
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2565
lemma of_bl_rep_False: "of_bl (replicate n False @ bs) = of_bl bs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2566
  unfolding of_bl_def bl_to_bin_rep_F by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2567
  
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2568
lemma msb_nth:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2569
  fixes w :: "'a::len word"
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2570
  shows "msb w = w !! (len_of TYPE('a) - 1)"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2571
  unfolding word_msb_nth word_test_bit_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2572
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2573
lemmas msb0 = len_gt_0 [THEN diff_Suc_less, THEN word_ops_nth_size [unfolded word_size]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2574
lemmas msb1 = msb0 [where i = 0]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2575
lemmas word_ops_msb = msb1 [unfolded msb_nth [symmetric, unfolded One_nat_def]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2576
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  2577
lemmas lsb0 = len_gt_0 [THEN word_ops_nth_size [unfolded word_size]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2578
lemmas word_ops_lsb = lsb0 [unfolded word_lsb_alt]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2579
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2580
lemma td_ext_nth [OF refl refl refl, unfolded word_size]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2581
  "n = size (w::'a::len0 word) \<Longrightarrow> ofn = set_bits \<Longrightarrow> [w, ofn g] = l \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2582
    td_ext test_bit ofn {f. ALL i. f i --> i < n} (%h i. h i & i < n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2583
  apply (unfold word_size td_ext_def')
46008
c296c75f4cf4 reverted some changes for set->predicate transition, according to "hg log -u berghofe -r Isabelle2007:Isabelle2008";
wenzelm
parents: 46001
diff changeset
  2584
  apply safe
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2585
     apply (rule_tac [3] ext)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2586
     apply (rule_tac [4] ext)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2587
     apply (unfold word_size of_nth_def test_bit_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2588
     apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2589
       defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2590
       apply (clarsimp simp: word_bl.Abs_inverse)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2591
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2592
  apply (rule sym [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2593
  apply (rule bl_of_nth_nth)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2594
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2595
  apply (rule bl_of_nth_inj)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2596
  apply (clarsimp simp add : test_bit_bl word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2597
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2598
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2599
interpretation test_bit:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2600
  td_ext "op !! :: 'a::len0 word => nat => bool"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2601
         set_bits
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2602
         "{f. \<forall>i. f i \<longrightarrow> i < len_of TYPE('a::len0)}"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2603
         "(\<lambda>h i. h i \<and> i < len_of TYPE('a::len0))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2604
  by (rule td_ext_nth)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2605
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2606
lemmas td_nth = test_bit.td_thm
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2607
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2608
lemma word_set_set_same [simp]:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2609
  fixes w :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2610
  shows "set_bit (set_bit w n x) n y = set_bit w n y" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2611
  by (rule word_eqI) (simp add : test_bit_set_gen word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2612
    
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2613
lemma word_set_set_diff: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2614
  fixes w :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2615
  assumes "m ~= n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2616
  shows "set_bit (set_bit w m x) n y = set_bit (set_bit w n y) m x" 
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41413
diff changeset
  2617
  by (rule word_eqI) (clarsimp simp add: test_bit_set_gen word_size assms)
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2618
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2619
lemma nth_sint: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2620
  fixes w :: "'a::len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2621
  defines "l \<equiv> len_of TYPE ('a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2622
  shows "bin_nth (sint w) n = (if n < l - 1 then w !! n else w !! (l - 1))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2623
  unfolding sint_uint l_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2624
  by (clarsimp simp add: nth_sbintr word_test_bit_def [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2625
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2626
lemma word_lsb_numeral [simp]:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2627
  "lsb (numeral bin :: 'a :: len word) \<longleftrightarrow> bin_last (numeral bin)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2628
  unfolding word_lsb_alt test_bit_numeral by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2629
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2630
lemma word_lsb_neg_numeral [simp]:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2631
  "lsb (- numeral bin :: 'a :: len word) \<longleftrightarrow> bin_last (- numeral bin)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2632
  unfolding word_lsb_alt test_bit_neg_numeral by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2633
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2634
lemma set_bit_word_of_int:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2635
  "set_bit (word_of_int x) n b = word_of_int (bin_sc n b x)"
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2636
  unfolding word_set_bit_def
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2637
  apply (rule word_eqI)
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2638
  apply (simp add: word_size bin_nth_sc_gen word_ubin.eq_norm nth_bintr)
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2639
  done
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2640
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2641
lemma word_set_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2642
  "set_bit (numeral bin::'a::len0 word) n b = 
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2643
    word_of_int (bin_sc n b (numeral bin))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2644
  unfolding word_numeral_alt by (rule set_bit_word_of_int)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2645
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2646
lemma word_set_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2647
  "set_bit (- numeral bin::'a::len0 word) n b = 
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2648
    word_of_int (bin_sc n b (- numeral bin))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2649
  unfolding word_neg_numeral_alt by (rule set_bit_word_of_int)
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2650
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2651
lemma word_set_bit_0 [simp]:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2652
  "set_bit 0 n b = word_of_int (bin_sc n b 0)"
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2653
  unfolding word_0_wi by (rule set_bit_word_of_int)
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2654
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2655
lemma word_set_bit_1 [simp]:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2656
  "set_bit 1 n b = word_of_int (bin_sc n b 1)"
46173
5cc700033194 add simp rules for set_bit and msb applied to 0 and 1
huffman
parents: 46172
diff changeset
  2657
  unfolding word_1_wi by (rule set_bit_word_of_int)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2658
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2659
lemma setBit_no [simp]:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2660
  "setBit (numeral bin) n = word_of_int (bin_sc n True (numeral bin))"
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2661
  by (simp add: setBit_def)
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2662
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2663
lemma clearBit_no [simp]:
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2664
  "clearBit (numeral bin) n = word_of_int (bin_sc n False (numeral bin))"
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2665
  by (simp add: clearBit_def)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2666
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2667
lemma to_bl_n1: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2668
  "to_bl (-1::'a::len0 word) = replicate (len_of TYPE ('a)) True"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2669
  apply (rule word_bl.Abs_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2670
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2671
  apply (rule word_eqI)
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2672
  apply (clarsimp simp add: word_size)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2673
  apply (auto simp add: word_bl.Abs_inverse test_bit_bl word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2674
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2675
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  2676
lemma word_msb_n1 [simp]: "msb (-1::'a::len word)"
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41413
diff changeset
  2677
  unfolding word_msb_alt to_bl_n1 by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2678
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2679
lemma word_set_nth_iff: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2680
  "(set_bit w n b = w) = (w !! n = b | n >= size (w::'a::len0 word))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2681
  apply (rule iffI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2682
   apply (rule disjCI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2683
   apply (drule word_eqD)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2684
   apply (erule sym [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2685
   apply (simp add: test_bit_set)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2686
  apply (erule disjE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2687
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2688
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2689
  apply (clarsimp simp add : test_bit_set_gen)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2690
  apply (drule test_bit_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2691
  apply force
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2692
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2693
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2694
lemma test_bit_2p:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2695
  "(word_of_int (2 ^ n)::'a::len word) !! m \<longleftrightarrow> m = n \<and> m < len_of TYPE('a)"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  2696
  unfolding word_test_bit_def
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2697
  by (auto simp add: word_ubin.eq_norm nth_bintr nth_2p_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2698
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2699
lemma nth_w2p:
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 60754
diff changeset
  2700
  "((2::'a::len word) ^ n) !! m \<longleftrightarrow> m = n \<and> m < len_of TYPE('a::len)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2701
  unfolding test_bit_2p [symmetric] word_of_int [symmetric]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2702
  by (simp add:  of_int_power)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2703
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2704
lemma uint_2p: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2705
  "(0::'a::len word) < 2 ^ n \<Longrightarrow> uint (2 ^ n::'a::len word) = 2 ^ n"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2706
  apply (unfold word_arith_power_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2707
  apply (case_tac "len_of TYPE ('a)")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2708
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2709
  apply (case_tac "nat")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2710
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2711
   apply (case_tac "n")
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2712
    apply clarsimp
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2713
   apply clarsimp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2714
  apply (drule word_gt_0 [THEN iffD1])
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2715
  apply (safe intro!: word_eqI)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2716
  apply (auto simp add: nth_2p_bin)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2717
  apply (erule notE)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2718
  apply (simp (no_asm_use) add: uint_word_of_int word_size)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2719
  apply (subst mod_pos_pos_trivial)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2720
  apply simp
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2721
  apply (rule power_strict_increasing)
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2722
  apply simp_all
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2723
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2724
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2725
lemma word_of_int_2p: "(word_of_int (2 ^ n) :: 'a :: len word) = 2 ^ n" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2726
  apply (unfold word_arith_power_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2727
  apply (case_tac "len_of TYPE ('a)")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2728
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2729
  apply (case_tac "nat")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2730
   apply (rule word_ubin.norm_eq_iff [THEN iffD1]) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2731
   apply (rule box_equals) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2732
     apply (rule_tac [2] bintr_ariths (1))+ 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2733
   apply simp
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2734
  apply simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2735
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2736
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  2737
lemma bang_is_le: "x !! m \<Longrightarrow> 2 ^ m <= (x :: 'a :: len word)" 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2738
  apply (rule xtr3) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2739
  apply (rule_tac [2] y = "x" in le_word_or2)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2740
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2741
  apply (auto simp add: word_ao_nth nth_w2p word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2742
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2743
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2744
lemma word_clr_le: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2745
  fixes w :: "'a::len0 word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2746
  shows "w >= set_bit w n False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2747
  apply (unfold word_set_bit_def word_le_def word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2748
  apply (rule order_trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2749
   apply (rule bintr_bin_clr_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2750
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2751
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2752
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2753
lemma word_set_ge: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2754
  fixes w :: "'a::len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2755
  shows "w <= set_bit w n True"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2756
  apply (unfold word_set_bit_def word_le_def word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2757
  apply (rule order_trans [OF _ bintr_bin_set_ge])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2758
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2759
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2760
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2761
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2762
subsection \<open>Shifting, Rotating, and Splitting Words\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2763
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2764
lemma shiftl1_wi [simp]: "shiftl1 (word_of_int w) = word_of_int (w BIT False)"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2765
  unfolding shiftl1_def
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2766
  apply (simp add: word_ubin.norm_eq_iff [symmetric] word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2767
  apply (subst refl [THEN bintrunc_BIT_I, symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2768
  apply (subst bintrunc_bintrunc_min)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2769
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2770
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2771
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2772
lemma shiftl1_numeral [simp]:
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2773
  "shiftl1 (numeral w) = numeral (Num.Bit0 w)"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2774
  unfolding word_numeral_alt shiftl1_wi by simp
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2775
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2776
lemma shiftl1_neg_numeral [simp]:
54489
03ff4d1e6784 eliminiated neg_numeral in favour of - (numeral _)
haftmann
parents: 54225
diff changeset
  2777
  "shiftl1 (- numeral w) = - numeral (Num.Bit0 w)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2778
  unfolding word_neg_numeral_alt shiftl1_wi by simp
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2779
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2780
lemma shiftl1_0 [simp] : "shiftl1 0 = 0"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2781
  unfolding shiftl1_def by simp
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2782
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2783
lemma shiftl1_def_u: "shiftl1 w = word_of_int (uint w BIT False)"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2784
  by (simp only: shiftl1_def) (* FIXME: duplicate *)
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2785
54847
d6cf9a5b9be9 prefer plain bool over dedicated type for binary digits
haftmann
parents: 54743
diff changeset
  2786
lemma shiftl1_def_s: "shiftl1 w = word_of_int (sint w BIT False)"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2787
  unfolding shiftl1_def Bit_B0 wi_hom_syms by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2788
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  2789
lemma shiftr1_0 [simp]: "shiftr1 0 = 0"
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  2790
  unfolding shiftr1_def by simp
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  2791
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  2792
lemma sshiftr1_0 [simp]: "sshiftr1 0 = 0"
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  2793
  unfolding sshiftr1_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2794
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58061
diff changeset
  2795
lemma sshiftr1_n1 [simp] : "sshiftr1 (- 1) = - 1"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2796
  unfolding sshiftr1_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2797
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2798
lemma shiftl_0 [simp] : "(0::'a::len0 word) << n = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2799
  unfolding shiftl_def by (induct n) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2800
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2801
lemma shiftr_0 [simp] : "(0::'a::len0 word) >> n = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2802
  unfolding shiftr_def by (induct n) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2803
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2804
lemma sshiftr_0 [simp] : "0 >>> n = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2805
  unfolding sshiftr_def by (induct n) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2806
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2807
lemma sshiftr_n1 [simp] : "-1 >>> n = -1"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2808
  unfolding sshiftr_def by (induct n) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2809
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2810
lemma nth_shiftl1: "shiftl1 w !! n = (n < size w & n > 0 & w !! (n - 1))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2811
  apply (unfold shiftl1_def word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2812
  apply (simp add: nth_bintr word_ubin.eq_norm word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2813
  apply (cases n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2814
   apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2815
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2816
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2817
lemma nth_shiftl' [rule_format]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2818
  "ALL n. ((w::'a::len0 word) << m) !! n = (n < size w & n >= m & w !! (n - m))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2819
  apply (unfold shiftl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2820
  apply (induct "m")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2821
   apply (force elim!: test_bit_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2822
  apply (clarsimp simp add : nth_shiftl1 word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2823
  apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2824
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2825
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2826
lemmas nth_shiftl = nth_shiftl' [unfolded word_size] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2827
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2828
lemma nth_shiftr1: "shiftr1 w !! n = w !! Suc n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2829
  apply (unfold shiftr1_def word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2830
  apply (simp add: nth_bintr word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2831
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2832
  apply (drule bin_nth.Suc [THEN iffD2, THEN bin_nth_uint_imp])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2833
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2834
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2835
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2836
lemma nth_shiftr: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2837
  "\<And>n. ((w::'a::len0 word) >> m) !! n = w !! (n + m)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2838
  apply (unfold shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2839
  apply (induct "m")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2840
   apply (auto simp add : nth_shiftr1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2841
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2842
   
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2843
(* see paper page 10, (1), (2), shiftr1_def is of the form of (1),
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2844
  where f (ie bin_rest) takes normal arguments to normal results,
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2845
  thus we get (2) from (1) *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2846
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2847
lemma uint_shiftr1: "uint (shiftr1 w) = bin_rest (uint w)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2848
  apply (unfold shiftr1_def word_ubin.eq_norm bin_rest_trunc_i)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2849
  apply (subst bintr_uint [symmetric, OF order_refl])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2850
  apply (simp only : bintrunc_bintrunc_l)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2851
  apply simp 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2852
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2853
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2854
lemma nth_sshiftr1: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2855
  "sshiftr1 w !! n = (if n = size w - 1 then w !! n else w !! Suc n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2856
  apply (unfold sshiftr1_def word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2857
  apply (simp add: nth_bintr word_ubin.eq_norm
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2858
                   bin_nth.Suc [symmetric] word_size 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2859
             del: bin_nth.simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2860
  apply (simp add: nth_bintr uint_sint del : bin_nth.simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2861
  apply (auto simp add: bin_nth_sint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2862
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2863
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2864
lemma nth_sshiftr [rule_format] : 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2865
  "ALL n. sshiftr w m !! n = (n < size w & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2866
    (if n + m >= size w then w !! (size w - 1) else w !! (n + m)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2867
  apply (unfold sshiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2868
  apply (induct_tac "m")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2869
   apply (simp add: test_bit_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2870
  apply (clarsimp simp add: nth_sshiftr1 word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2871
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2872
       apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2873
      apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2874
     apply (erule thin_rl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2875
     apply (case_tac n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2876
      apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2877
      apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2878
     apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2879
    apply (erule thin_rl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2880
    apply (case_tac n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2881
     apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2882
     apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2883
    apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2884
   apply arith+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2885
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2886
    
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2887
lemma shiftr1_div_2: "uint (shiftr1 w) = uint w div 2"
45529
0e1037d4e049 remove redundant lemmas bin_last_mod and bin_rest_div, use bin_last_def and bin_rest_def instead
huffman
parents: 45528
diff changeset
  2888
  apply (unfold shiftr1_def bin_rest_def)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2889
  apply (rule word_uint.Abs_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2890
  apply (simp add: uints_num pos_imp_zdiv_nonneg_iff)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2891
  apply (rule xtr7)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2892
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2893
   apply (rule zdiv_le_dividend)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2894
    apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2895
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2896
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2897
lemma sshiftr1_div_2: "sint (sshiftr1 w) = sint w div 2"
45529
0e1037d4e049 remove redundant lemmas bin_last_mod and bin_rest_div, use bin_last_def and bin_rest_def instead
huffman
parents: 45528
diff changeset
  2898
  apply (unfold sshiftr1_def bin_rest_def [symmetric])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2899
  apply (simp add: word_sbin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2900
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2901
   defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2902
   apply (subst word_sbin.norm_Rep [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2903
   apply (rule refl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2904
  apply (subst word_sbin.norm_Rep [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2905
  apply (unfold One_nat_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2906
  apply (rule sbintrunc_rest)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2907
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2908
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2909
lemma shiftr_div_2n: "uint (shiftr w n) = uint w div 2 ^ n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2910
  apply (unfold shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2911
  apply (induct "n")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2912
   apply simp
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  2913
  apply (simp add: shiftr1_div_2 mult.commute
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2914
                   zdiv_zmult2_eq [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2915
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2916
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2917
lemma sshiftr_div_2n: "sint (sshiftr w n) = sint w div 2 ^ n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2918
  apply (unfold sshiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2919
  apply (induct "n")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2920
   apply simp
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  2921
  apply (simp add: sshiftr1_div_2 mult.commute
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2922
                   zdiv_zmult2_eq [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2923
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2924
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  2925
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  2926
subsubsection \<open>shift functions in terms of lists of bools\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2927
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2928
lemmas bshiftr1_numeral [simp] = 
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  2929
  bshiftr1_def [where w="numeral w", unfolded to_bl_numeral] for w
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2930
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2931
lemma bshiftr1_bl: "to_bl (bshiftr1 b w) = b # butlast (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2932
  unfolding bshiftr1_def by (rule word_bl.Abs_inverse) simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2933
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2934
lemma shiftl1_of_bl: "shiftl1 (of_bl bl) = of_bl (bl @ [False])"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  2935
  by (simp add: of_bl_def bl_to_bin_append)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2936
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2937
lemma shiftl1_bl: "shiftl1 (w::'a::len0 word) = of_bl (to_bl w @ [False])"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2938
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2939
  have "shiftl1 w = shiftl1 (of_bl (to_bl w))" by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2940
  also have "\<dots> = of_bl (to_bl w @ [False])" by (rule shiftl1_of_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2941
  finally show ?thesis .
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2942
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2943
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2944
lemma bl_shiftl1:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2945
  "to_bl (shiftl1 (w :: 'a :: len word)) = tl (to_bl w) @ [False]"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2946
  apply (simp add: shiftl1_bl word_rep_drop drop_Suc drop_Cons')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2947
  apply (fast intro!: Suc_leI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2948
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2949
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2950
(* Generalized version of bl_shiftl1. Maybe this one should replace it? *)
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2951
lemma bl_shiftl1':
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2952
  "to_bl (shiftl1 w) = tl (to_bl w @ [False])"
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2953
  unfolding shiftl1_bl
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2954
  by (simp add: word_rep_drop drop_Suc del: drop_append)
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2955
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2956
lemma shiftr1_bl: "shiftr1 w = of_bl (butlast (to_bl w))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2957
  apply (unfold shiftr1_def uint_bl of_bl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2958
  apply (simp add: butlast_rest_bin word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2959
  apply (simp add: bin_rest_trunc [symmetric, unfolded One_nat_def])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2960
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2961
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2962
lemma bl_shiftr1: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2963
  "to_bl (shiftr1 (w :: 'a :: len word)) = False # butlast (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2964
  unfolding shiftr1_bl
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2965
  by (simp add : word_rep_drop len_gt_0 [THEN Suc_leI])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2966
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2967
(* Generalized version of bl_shiftr1. Maybe this one should replace it? *)
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2968
lemma bl_shiftr1':
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2969
  "to_bl (shiftr1 w) = butlast (False # to_bl w)"
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2970
  apply (rule word_bl.Abs_inverse')
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2971
  apply (simp del: butlast.simps)
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2972
  apply (simp add: shiftr1_bl of_bl_def)
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2973
  done
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2974
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2975
lemma shiftl1_rev: 
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2976
  "shiftl1 w = word_reverse (shiftr1 (word_reverse w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2977
  apply (unfold word_reverse_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2978
  apply (rule word_bl.Rep_inverse' [symmetric])
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2979
  apply (simp add: bl_shiftl1' bl_shiftr1' word_bl.Abs_inverse)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2980
  apply (cases "to_bl w")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2981
   apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2982
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2983
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2984
lemma shiftl_rev: 
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  2985
  "shiftl w n = word_reverse (shiftr (word_reverse w) n)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2986
  apply (unfold shiftl_def shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2987
  apply (induct "n")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2988
   apply (auto simp add : shiftl1_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2989
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2990
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2991
lemma rev_shiftl: "word_reverse w << n = word_reverse (w >> n)"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2992
  by (simp add: shiftl_rev)
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2993
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2994
lemma shiftr_rev: "w >> n = word_reverse (word_reverse w << n)"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2995
  by (simp add: rev_shiftl)
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2996
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2997
lemma rev_shiftr: "word_reverse w >> n = word_reverse (w << n)"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  2998
  by (simp add: shiftr_rev)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  2999
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3000
lemma bl_sshiftr1:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3001
  "to_bl (sshiftr1 (w :: 'a :: len word)) = hd (to_bl w) # butlast (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3002
  apply (unfold sshiftr1_def uint_bl word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3003
  apply (simp add: butlast_rest_bin word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3004
  apply (simp add: sint_uint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3005
  apply (rule nth_equalityI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3006
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3007
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3008
  apply (case_tac i)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3009
   apply (simp_all add: hd_conv_nth length_0_conv [symmetric]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3010
                        nth_bin_to_bl bin_nth.Suc [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3011
                        nth_sbintr 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3012
                   del: bin_nth.Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3013
   apply force
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3014
  apply (rule impI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3015
  apply (rule_tac f = "bin_nth (uint w)" in arg_cong)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3016
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3017
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3018
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3019
lemma drop_shiftr: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3020
  "drop n (to_bl ((w :: 'a :: len word) >> n)) = take (size w - n) (to_bl w)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3021
  apply (unfold shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3022
  apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3023
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3024
   apply (simp add: drop_Suc bl_shiftr1 butlast_drop [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3025
   apply (rule butlast_take [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3026
  apply (auto simp: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3027
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3028
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3029
lemma drop_sshiftr: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3030
  "drop n (to_bl ((w :: 'a :: len word) >>> n)) = take (size w - n) (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3031
  apply (unfold sshiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3032
  apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3033
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3034
   apply (simp add: drop_Suc bl_sshiftr1 butlast_drop [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3035
   apply (rule butlast_take [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3036
  apply (auto simp: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3037
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3038
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  3039
lemma take_shiftr:
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  3040
  "n \<le> size w \<Longrightarrow> take n (to_bl (w >> n)) = replicate n False"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3041
  apply (unfold shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3042
  apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3043
   prefer 2
45807
ff10ec0d62ea generalize some lemmas
huffman
parents: 45805
diff changeset
  3044
   apply (simp add: bl_shiftr1' length_0_conv [symmetric] word_size)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3045
   apply (rule take_butlast [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3046
  apply (auto simp: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3047
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3048
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3049
lemma take_sshiftr' [rule_format] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3050
  "n <= size (w :: 'a :: len word) --> hd (to_bl (w >>> n)) = hd (to_bl w) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3051
    take n (to_bl (w >>> n)) = replicate n (hd (to_bl w))" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3052
  apply (unfold sshiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3053
  apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3054
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3055
   apply (simp add: bl_sshiftr1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3056
   apply (rule impI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3057
   apply (rule take_butlast [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3058
  apply (auto simp: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3059
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3060
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3061
lemmas hd_sshiftr = take_sshiftr' [THEN conjunct1]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3062
lemmas take_sshiftr = take_sshiftr' [THEN conjunct2]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3063
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3064
lemma atd_lem: "take n xs = t \<Longrightarrow> drop n xs = d \<Longrightarrow> xs = t @ d"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3065
  by (auto intro: append_take_drop_id [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3066
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3067
lemmas bl_shiftr = atd_lem [OF take_shiftr drop_shiftr]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3068
lemmas bl_sshiftr = atd_lem [OF take_sshiftr drop_sshiftr]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3069
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3070
lemma shiftl_of_bl: "of_bl bl << n = of_bl (bl @ replicate n False)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3071
  unfolding shiftl_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3072
  by (induct n) (auto simp: shiftl1_of_bl replicate_app_Cons_same)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3073
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3074
lemma shiftl_bl:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3075
  "(w::'a::len0 word) << (n::nat) = of_bl (to_bl w @ replicate n False)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3076
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3077
  have "w << n = of_bl (to_bl w) << n" by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3078
  also have "\<dots> = of_bl (to_bl w @ replicate n False)" by (rule shiftl_of_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3079
  finally show ?thesis .
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3080
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3081
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3082
lemmas shiftl_numeral [simp] = shiftl_def [where w="numeral w"] for w
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3083
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3084
lemma bl_shiftl:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3085
  "to_bl (w << n) = drop n (to_bl w) @ replicate (min (size w) n) False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3086
  by (simp add: shiftl_bl word_rep_drop word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3087
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3088
lemma shiftl_zero_size: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3089
  fixes x :: "'a::len0 word"
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3090
  shows "size x <= n \<Longrightarrow> x << n = 0"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3091
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3092
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3093
  apply (clarsimp simp add: shiftl_bl word_size test_bit_of_bl nth_append)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3094
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3095
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3096
(* note - the following results use 'a :: len word < number_ring *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3097
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3098
lemma shiftl1_2t: "shiftl1 (w :: 'a :: len word) = 2 * w"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3099
  by (simp add: shiftl1_def Bit_def wi_hom_mult [symmetric])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3100
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3101
lemma shiftl1_p: "shiftl1 (w :: 'a :: len word) = w + w"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3102
  by (simp add: shiftl1_2t)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3103
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3104
lemma shiftl_t2n: "shiftl (w :: 'a :: len word) n = 2 ^ n * w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3105
  unfolding shiftl_def 
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41413
diff changeset
  3106
  by (induct n) (auto simp: shiftl1_2t)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3107
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3108
lemma shiftr1_bintr [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3109
  "(shiftr1 (numeral w) :: 'a :: len0 word) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3110
    word_of_int (bin_rest (bintrunc (len_of TYPE ('a)) (numeral w)))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3111
  unfolding shiftr1_def word_numeral_alt
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
  3112
  by (simp add: word_ubin.eq_norm)
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
  3113
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
  3114
lemma sshiftr1_sbintr [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3115
  "(sshiftr1 (numeral w) :: 'a :: len word) =
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3116
    word_of_int (bin_rest (sbintrunc (len_of TYPE ('a) - 1) (numeral w)))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3117
  unfolding sshiftr1_def word_numeral_alt
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
  3118
  by (simp add: word_sbin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3119
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
  3120
lemma shiftr_no [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3121
  (* FIXME: neg_numeral *)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3122
  "(numeral w::'a::len0 word) >> n = word_of_int
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3123
    ((bin_rest ^^ n) (bintrunc (len_of TYPE('a)) (numeral w)))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3124
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3125
  apply (auto simp: nth_shiftr nth_rest_power_bin nth_bintr word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3126
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3127
46057
8664713db181 remove unnecessary intermediate lemmas
huffman
parents: 46026
diff changeset
  3128
lemma sshiftr_no [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3129
  (* FIXME: neg_numeral *)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3130
  "(numeral w::'a::len word) >>> n = word_of_int
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3131
    ((bin_rest ^^ n) (sbintrunc (len_of TYPE('a) - 1) (numeral w)))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3132
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3133
  apply (auto simp: nth_sshiftr nth_rest_power_bin nth_sbintr word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3134
   apply (subgoal_tac "na + n = len_of TYPE('a) - Suc 0", simp, simp)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3135
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3136
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3137
lemma shiftr1_bl_of:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3138
  "length bl \<le> len_of TYPE('a) \<Longrightarrow>
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3139
    shiftr1 (of_bl bl::'a::len0 word) = of_bl (butlast bl)"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3140
  by (clarsimp simp: shiftr1_def of_bl_def butlast_rest_bl2bin 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3141
                     word_ubin.eq_norm trunc_bl2bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3142
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3143
lemma shiftr_bl_of:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3144
  "length bl \<le> len_of TYPE('a) \<Longrightarrow>
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3145
    (of_bl bl::'a::len0 word) >> n = of_bl (take (length bl - n) bl)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3146
  apply (unfold shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3147
  apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3148
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3149
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3150
  apply (subst shiftr1_bl_of)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3151
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3152
  apply (simp add: butlast_take)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3153
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3154
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3155
lemma shiftr_bl:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3156
  "(x::'a::len0 word) >> n \<equiv> of_bl (take (len_of TYPE('a) - n) (to_bl x))"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3157
  using shiftr_bl_of [where 'a='a, of "to_bl x"] by simp
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3158
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3159
lemma msb_shift:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3160
  "msb (w::'a::len word) \<longleftrightarrow> (w >> (len_of TYPE('a) - 1)) \<noteq> 0"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3161
  apply (unfold shiftr_bl word_msb_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3162
  apply (simp add: word_size Suc_le_eq take_Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3163
  apply (cases "hd (to_bl w)")
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  3164
   apply (auto simp: word_1_bl
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3165
                     of_bl_rep_False [where n=1 and bs="[]", simplified])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3166
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3167
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3168
lemma zip_replicate:
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3169
  "n \<ge> length ys \<Longrightarrow> zip (replicate n x) ys = map (\<lambda>y. (x, y)) ys" 
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3170
  apply (induct ys arbitrary: n, simp_all)
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3171
  apply (case_tac n, simp_all)
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3172
  done
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3173
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3174
lemma align_lem_or [rule_format] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3175
  "ALL x m. length x = n + m --> length y = n + m --> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3176
    drop m x = replicate n False --> take m y = replicate m False --> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3177
    map2 op | x y = take m x @ drop m y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3178
  apply (induct_tac y)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3179
   apply force
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3180
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3181
  apply (case_tac x, force)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3182
  apply (case_tac m, auto)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59657
diff changeset
  3183
  apply (drule_tac t="length xs" for xs in sym)
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3184
  apply (clarsimp simp: map2_def zip_replicate o_def)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3185
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3186
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3187
lemma align_lem_and [rule_format] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3188
  "ALL x m. length x = n + m --> length y = n + m --> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3189
    drop m x = replicate n False --> take m y = replicate m False --> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3190
    map2 op & x y = replicate (n + m) False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3191
  apply (induct_tac y)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3192
   apply force
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3193
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3194
  apply (case_tac x, force)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3195
  apply (case_tac m, auto)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59657
diff changeset
  3196
  apply (drule_tac t="length xs" for xs in sym)
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3197
  apply (clarsimp simp: map2_def zip_replicate o_def map_replicate_const)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3198
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3199
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3200
lemma aligned_bl_add_size [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3201
  "size x - n = m \<Longrightarrow> n <= size x \<Longrightarrow> drop m (to_bl x) = replicate n False \<Longrightarrow>
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3202
    take m (to_bl y) = replicate m False \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3203
    to_bl (x + y) = take m (to_bl x) @ drop m (to_bl y)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3204
  apply (subgoal_tac "x AND y = 0")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3205
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3206
   apply (rule word_bl.Rep_eqD)
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  3207
   apply (simp add: bl_word_and)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3208
   apply (rule align_lem_and [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3209
       apply (simp_all add: word_size)[5]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3210
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3211
  apply (subst word_plus_and_or [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3212
  apply (simp add : bl_word_or)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3213
  apply (rule align_lem_or)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3214
     apply (simp_all add: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3215
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3216
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  3217
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3218
subsubsection \<open>Mask\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3219
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3220
lemma nth_mask [OF refl, simp]:
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3221
  "m = mask n \<Longrightarrow> test_bit m i = (i < n & i < size m)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3222
  apply (unfold mask_def test_bit_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3223
  apply (simp only: word_1_bl [symmetric] shiftl_of_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3224
  apply (clarsimp simp add: word_size)
46645
573aff6b9b0a adapt lemma mask_lem to respect int/bin distinction
huffman
parents: 46618
diff changeset
  3225
  apply (simp only: of_bl_def mask_lem word_of_int_hom_syms add_diff_cancel2)
573aff6b9b0a adapt lemma mask_lem to respect int/bin distinction
huffman
parents: 46618
diff changeset
  3226
  apply (fold of_bl_def)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3227
  apply (simp add: word_1_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3228
  apply (rule test_bit_of_bl [THEN trans, unfolded test_bit_bl word_size])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3229
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3230
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3231
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3232
lemma mask_bl: "mask n = of_bl (replicate n True)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3233
  by (auto simp add : test_bit_of_bl word_size intro: word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3234
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58061
diff changeset
  3235
lemma mask_bin: "mask n = word_of_int (bintrunc n (- 1))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3236
  by (auto simp add: nth_bintr word_size intro: word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3237
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3238
lemma and_mask_bintr: "w AND mask n = word_of_int (bintrunc n (uint w))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3239
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3240
  apply (simp add: nth_bintr word_size word_ops_nth_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3241
  apply (auto simp add: test_bit_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3242
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3243
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3244
lemma and_mask_wi: "word_of_int i AND mask n = word_of_int (bintrunc n i)"
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  3245
  by (auto simp add: nth_bintr word_size word_ops_nth_size word_eq_iff)
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  3246
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3247
lemma and_mask_no: "numeral i AND mask n = word_of_int (bintrunc n (numeral i))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3248
  unfolding word_numeral_alt by (rule and_mask_wi)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3249
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3250
lemma bl_and_mask':
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3251
  "to_bl (w AND mask n :: 'a :: len word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3252
    replicate (len_of TYPE('a) - n) False @ 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3253
    drop (len_of TYPE('a) - n) (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3254
  apply (rule nth_equalityI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3255
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3256
  apply (clarsimp simp add: to_bl_nth word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3257
  apply (simp add: word_size word_ops_nth_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3258
  apply (auto simp add: word_size test_bit_bl nth_append nth_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3259
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3260
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3261
lemma and_mask_mod_2p: "w AND mask n = word_of_int (uint w mod 2 ^ n)"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3262
  by (simp only: and_mask_bintr bintrunc_mod2p)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3263
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3264
lemma and_mask_lt_2p: "uint (w AND mask n) < 2 ^ n"
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3265
  apply (simp add: and_mask_bintr word_ubin.eq_norm)
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3266
  apply (simp add: bintrunc_mod2p)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3267
  apply (rule xtr8)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3268
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3269
   apply (rule pos_mod_bound)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3270
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3271
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3272
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3273
lemma eq_mod_iff: "0 < (n::int) \<Longrightarrow> b = b mod n \<longleftrightarrow> 0 \<le> b \<and> b < n"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3274
  by (simp add: int_mod_lem eq_sym_conv)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3275
61941
31f2105521ee discontinued ASCII replacement syntax <->;
wenzelm
parents: 61824
diff changeset
  3276
lemma mask_eq_iff: "(w AND mask n) = w \<longleftrightarrow> uint w < 2 ^ n"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3277
  apply (simp add: and_mask_bintr)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3278
  apply (simp add: word_ubin.inverse_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3279
  apply (simp add: eq_mod_iff bintrunc_mod2p min_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3280
  apply (fast intro!: lt2p_lem)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3281
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3282
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3283
lemma and_mask_dvd: "2 ^ n dvd uint w = (w AND mask n = 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3284
  apply (simp add: dvd_eq_mod_eq_0 and_mask_mod_2p)
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  3285
  apply (simp add: word_uint.norm_eq_iff [symmetric] word_of_int_homs
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  3286
    del: word_of_int_0)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3287
  apply (subst word_uint.norm_Rep [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3288
  apply (simp only: bintrunc_bintrunc_min bintrunc_mod2p [symmetric] min_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3289
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3290
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3291
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3292
lemma and_mask_dvd_nat: "2 ^ n dvd unat w = (w AND mask n = 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3293
  apply (unfold unat_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3294
  apply (rule trans [OF _ and_mask_dvd])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3295
  apply (unfold dvd_def) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3296
  apply auto 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3297
  apply (drule uint_ge_0 [THEN nat_int.Abs_inverse' [simplified], symmetric])
62348
9a5f43dac883 dropped various legacy fact bindings
haftmann
parents: 61941
diff changeset
  3298
  apply (simp add : of_nat_mult of_nat_power)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3299
  apply (simp add : nat_mult_distrib nat_power_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3300
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3301
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3302
lemma word_2p_lem: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3303
  "n < size w \<Longrightarrow> w < 2 ^ n = (uint (w :: 'a :: len word) < 2 ^ n)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3304
  apply (unfold word_size word_less_alt word_numeral_alt)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3305
  apply (clarsimp simp add: word_of_int_power_hom word_uint.eq_norm 
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  3306
                            mod_pos_pos_trivial
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3307
                  simp del: word_of_int_numeral)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3308
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3309
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3310
lemma less_mask_eq: "x < 2 ^ n \<Longrightarrow> x AND mask n = (x :: 'a :: len word)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3311
  apply (unfold word_less_alt word_numeral_alt)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3312
  apply (clarsimp simp add: and_mask_mod_2p word_of_int_power_hom 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3313
                            word_uint.eq_norm
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3314
                  simp del: word_of_int_numeral)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3315
  apply (drule xtr8 [rotated])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3316
  apply (rule int_mod_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3317
  apply (auto simp add : mod_pos_pos_trivial)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3318
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3319
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3320
lemmas mask_eq_iff_w2p = trans [OF mask_eq_iff word_2p_lem [symmetric]]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3321
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3322
lemmas and_mask_less' = iffD2 [OF word_2p_lem and_mask_lt_2p, simplified word_size]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3323
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3324
lemma and_mask_less_size: "n < size x \<Longrightarrow> x AND mask n < 2^n"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3325
  unfolding word_size by (erule and_mask_less')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3326
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3327
lemma word_mod_2p_is_mask [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3328
  "c = 2 ^ n \<Longrightarrow> c > 0 \<Longrightarrow> x mod c = (x :: 'a :: len word) AND mask n" 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3329
  by (clarsimp simp add: word_mod_def uint_2p and_mask_mod_2p) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3330
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3331
lemma mask_eqs:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3332
  "(a AND mask n) + b AND mask n = a + b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3333
  "a + (b AND mask n) AND mask n = a + b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3334
  "(a AND mask n) - b AND mask n = a - b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3335
  "a - (b AND mask n) AND mask n = a - b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3336
  "a * (b AND mask n) AND mask n = a * b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3337
  "(b AND mask n) * a AND mask n = b * a AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3338
  "(a AND mask n) + (b AND mask n) AND mask n = a + b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3339
  "(a AND mask n) - (b AND mask n) AND mask n = a - b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3340
  "(a AND mask n) * (b AND mask n) AND mask n = a * b AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3341
  "- (a AND mask n) AND mask n = - a AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3342
  "word_succ (a AND mask n) AND mask n = word_succ a AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3343
  "word_pred (a AND mask n) AND mask n = word_pred a AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3344
  using word_of_int_Ex [where x=a] word_of_int_Ex [where x=b]
46009
5cb7ef5bfef2 remove duplicate lemma lists
huffman
parents: 46001
diff changeset
  3345
  by (auto simp: and_mask_wi bintr_ariths bintr_arith1s word_of_int_homs)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3346
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3347
lemma mask_power_eq:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3348
  "(x AND mask n) ^ k AND mask n = x ^ k AND mask n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3349
  using word_of_int_Ex [where x=x]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3350
  by (clarsimp simp: and_mask_wi word_of_int_power_hom bintr_ariths)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3351
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3352
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3353
subsubsection \<open>Revcast\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3354
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3355
lemmas revcast_def' = revcast_def [simplified]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3356
lemmas revcast_def'' = revcast_def' [simplified word_size]
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3357
lemmas revcast_no_def [simp] = revcast_def' [where w="numeral w", unfolded word_size] for w
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3358
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3359
lemma to_bl_revcast: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3360
  "to_bl (revcast w :: 'a :: len0 word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3361
   takefill False (len_of TYPE ('a)) (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3362
  apply (unfold revcast_def' word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3363
  apply (rule word_bl.Abs_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3364
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3365
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3366
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3367
lemma revcast_rev_ucast [OF refl refl refl]: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3368
  "cs = [rc, uc] \<Longrightarrow> rc = revcast (word_reverse w) \<Longrightarrow> uc = ucast w \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3369
    rc = word_reverse uc"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3370
  apply (unfold ucast_def revcast_def' Let_def word_reverse_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3371
  apply (clarsimp simp add : to_bl_of_bin takefill_bintrunc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3372
  apply (simp add : word_bl.Abs_inverse word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3373
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3374
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3375
lemma revcast_ucast: "revcast w = word_reverse (ucast (word_reverse w))"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3376
  using revcast_rev_ucast [of "word_reverse w"] by simp
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3377
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3378
lemma ucast_revcast: "ucast w = word_reverse (revcast (word_reverse w))"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3379
  by (fact revcast_rev_ucast [THEN word_rev_gal'])
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3380
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3381
lemma ucast_rev_revcast: "ucast (word_reverse w) = word_reverse (revcast w)"
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3382
  by (fact revcast_ucast [THEN word_rev_gal'])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3383
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3384
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3385
\<comment> "linking revcast and cast via shift"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3386
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3387
lemmas wsst_TYs = source_size target_size word_size
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3388
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3389
lemma revcast_down_uu [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3390
  "rc = revcast \<Longrightarrow> source_size rc = target_size rc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3391
    rc (w :: 'a :: len word) = ucast (w >> n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3392
  apply (simp add: revcast_def')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3393
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3394
  apply (rule trans, rule ucast_down_drop)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3395
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3396
   apply (rule trans, rule drop_shiftr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3397
   apply (auto simp: takefill_alt wsst_TYs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3398
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3399
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3400
lemma revcast_down_us [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3401
  "rc = revcast \<Longrightarrow> source_size rc = target_size rc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3402
    rc (w :: 'a :: len word) = ucast (w >>> n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3403
  apply (simp add: revcast_def')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3404
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3405
  apply (rule trans, rule ucast_down_drop)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3406
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3407
   apply (rule trans, rule drop_sshiftr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3408
   apply (auto simp: takefill_alt wsst_TYs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3409
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3410
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3411
lemma revcast_down_su [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3412
  "rc = revcast \<Longrightarrow> source_size rc = target_size rc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3413
    rc (w :: 'a :: len word) = scast (w >> n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3414
  apply (simp add: revcast_def')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3415
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3416
  apply (rule trans, rule scast_down_drop)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3417
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3418
   apply (rule trans, rule drop_shiftr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3419
   apply (auto simp: takefill_alt wsst_TYs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3420
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3421
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3422
lemma revcast_down_ss [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3423
  "rc = revcast \<Longrightarrow> source_size rc = target_size rc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3424
    rc (w :: 'a :: len word) = scast (w >>> n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3425
  apply (simp add: revcast_def')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3426
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3427
  apply (rule trans, rule scast_down_drop)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3428
   prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3429
   apply (rule trans, rule drop_sshiftr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3430
   apply (auto simp: takefill_alt wsst_TYs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3431
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3432
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3433
(* FIXME: should this also be [OF refl] ? *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3434
lemma cast_down_rev: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3435
  "uc = ucast \<Longrightarrow> source_size uc = target_size uc + n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3436
    uc w = revcast ((w :: 'a :: len word) << n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3437
  apply (unfold shiftl_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3438
  apply clarify
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3439
  apply (simp add: revcast_rev_ucast)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3440
  apply (rule word_rev_gal')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3441
  apply (rule trans [OF _ revcast_rev_ucast])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3442
  apply (rule revcast_down_uu [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3443
  apply (auto simp add: wsst_TYs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3444
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3445
45811
f506015ca2dc replace many uses of 'lemmas' with 'lemma';
huffman
parents: 45810
diff changeset
  3446
lemma revcast_up [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3447
  "rc = revcast \<Longrightarrow> source_size rc + n = target_size rc \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3448
    rc w = (ucast w :: 'a :: len word) << n" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3449
  apply (simp add: revcast_def')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3450
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3451
  apply (simp add: takefill_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3452
  apply (rule bl_shiftl [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3453
  apply (subst ucast_up_app)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3454
  apply (auto simp add: wsst_TYs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3455
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3456
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3457
lemmas rc1 = revcast_up [THEN 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3458
  revcast_rev_ucast [symmetric, THEN trans, THEN word_rev_gal, symmetric]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3459
lemmas rc2 = revcast_down_uu [THEN 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3460
  revcast_rev_ucast [symmetric, THEN trans, THEN word_rev_gal, symmetric]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3461
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3462
lemmas ucast_up =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3463
 rc1 [simplified rev_shiftr [symmetric] revcast_ucast [symmetric]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3464
lemmas ucast_down = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3465
  rc2 [simplified rev_shiftr revcast_ucast [symmetric]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3466
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3467
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3468
subsubsection \<open>Slices\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3469
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3470
lemma slice1_no_bin [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3471
  "slice1 n (numeral w :: 'b word) = of_bl (takefill False n (bin_to_bl (len_of TYPE('b :: len0)) (numeral w)))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3472
  by (simp add: slice1_def) (* TODO: neg_numeral *)
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3473
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3474
lemma slice_no_bin [simp]:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3475
  "slice n (numeral w :: 'b word) = of_bl (takefill False (len_of TYPE('b :: len0) - n)
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3476
    (bin_to_bl (len_of TYPE('b :: len0)) (numeral w)))"
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3477
  by (simp add: slice_def word_size) (* TODO: neg_numeral *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3478
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3479
lemma slice1_0 [simp] : "slice1 n 0 = 0"
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  3480
  unfolding slice1_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3481
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3482
lemma slice_0 [simp] : "slice n 0 = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3483
  unfolding slice_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3484
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3485
lemma slice_take': "slice n w = of_bl (take (size w - n) (to_bl w))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3486
  unfolding slice_def' slice1_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3487
  by (simp add : takefill_alt word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3488
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3489
lemmas slice_take = slice_take' [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3490
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3491
\<comment> "shiftr to a word of the same size is just slice, 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3492
    slice is just shiftr then ucast"
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3493
lemmas shiftr_slice = trans [OF shiftr_bl [THEN meta_eq_to_obj_eq] slice_take [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3494
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3495
lemma slice_shiftr: "slice n w = ucast (w >> n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3496
  apply (unfold slice_take shiftr_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3497
  apply (rule ucast_of_bl_up [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3498
  apply (simp add: word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3499
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3500
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3501
lemma nth_slice: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3502
  "(slice n w :: 'a :: len0 word) !! m = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3503
   (w !! (m + n) & m < len_of TYPE ('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3504
  unfolding slice_shiftr 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3505
  by (simp add : nth_ucast nth_shiftr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3506
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3507
lemma slice1_down_alt': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3508
  "sl = slice1 n w \<Longrightarrow> fs = size sl \<Longrightarrow> fs + k = n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3509
    to_bl sl = takefill False fs (drop k (to_bl w))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3510
  unfolding slice1_def word_size of_bl_def uint_bl
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3511
  by (clarsimp simp: word_ubin.eq_norm bl_bin_bl_rep_drop drop_takefill)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3512
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3513
lemma slice1_up_alt': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3514
  "sl = slice1 n w \<Longrightarrow> fs = size sl \<Longrightarrow> fs = n + k \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3515
    to_bl sl = takefill False fs (replicate k False @ (to_bl w))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3516
  apply (unfold slice1_def word_size of_bl_def uint_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3517
  apply (clarsimp simp: word_ubin.eq_norm bl_bin_bl_rep_drop 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3518
                        takefill_append [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3519
  apply (rule_tac f = "%k. takefill False (len_of TYPE('a))
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3520
    (replicate k False @ bin_to_bl (len_of TYPE('b)) (uint w))" in arg_cong)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3521
  apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3522
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3523
    
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3524
lemmas sd1 = slice1_down_alt' [OF refl refl, unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3525
lemmas su1 = slice1_up_alt' [OF refl refl, unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3526
lemmas slice1_down_alt = le_add_diff_inverse [THEN sd1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3527
lemmas slice1_up_alts = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3528
  le_add_diff_inverse [symmetric, THEN su1] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3529
  le_add_diff_inverse2 [symmetric, THEN su1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3530
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3531
lemma ucast_slice1: "ucast w = slice1 (size w) w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3532
  unfolding slice1_def ucast_bl
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3533
  by (simp add : takefill_same' word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3534
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3535
lemma ucast_slice: "ucast w = slice 0 w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3536
  unfolding slice_def by (simp add : ucast_slice1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3537
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3538
lemma slice_id: "slice 0 t = t"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3539
  by (simp only: ucast_slice [symmetric] ucast_id)
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3540
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3541
lemma revcast_slice1 [OF refl]: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3542
  "rc = revcast w \<Longrightarrow> slice1 (size rc) w = rc"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3543
  unfolding slice1_def revcast_def' by (simp add : word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3544
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3545
lemma slice1_tf_tf': 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3546
  "to_bl (slice1 n w :: 'a :: len0 word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3547
   rev (takefill False (len_of TYPE('a)) (rev (takefill False n (to_bl w))))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3548
  unfolding slice1_def by (rule word_rev_tf)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3549
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3550
lemmas slice1_tf_tf = slice1_tf_tf' [THEN word_bl.Rep_inverse', symmetric]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3551
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3552
lemma rev_slice1:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3553
  "n + k = len_of TYPE('a) + len_of TYPE('b) \<Longrightarrow> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3554
  slice1 n (word_reverse w :: 'b :: len0 word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3555
  word_reverse (slice1 k w :: 'a :: len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3556
  apply (unfold word_reverse_def slice1_tf_tf)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3557
  apply (rule word_bl.Rep_inverse')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3558
  apply (rule rev_swap [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3559
  apply (rule trans [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3560
  apply (rule tf_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3561
   apply (simp add: word_bl.Abs_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3562
  apply (simp add: word_bl.Abs_inverse)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3563
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3564
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3565
lemma rev_slice:
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3566
  "n + k + len_of TYPE('a::len0) = len_of TYPE('b::len0) \<Longrightarrow>
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3567
    slice n (word_reverse (w::'b word)) = word_reverse (slice k w::'a word)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3568
  apply (unfold slice_def word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3569
  apply (rule rev_slice1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3570
  apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3571
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3572
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3573
lemmas sym_notr = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3574
  not_iff [THEN iffD2, THEN not_sym, THEN not_iff [THEN iffD1]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3575
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3576
\<comment> \<open>problem posed by TPHOLs referee:
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3577
      criterion for overflow of addition of signed integers\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3578
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3579
lemma sofl_test:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3580
  "(sint (x :: 'a :: len word) + sint y = sint (x + y)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3581
     ((((x+y) XOR x) AND ((x+y) XOR y)) >> (size x - 1) = 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3582
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3583
  apply (cases "len_of TYPE('a)", simp) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3584
  apply (subst msb_shift [THEN sym_notr])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3585
  apply (simp add: word_ops_msb)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3586
  apply (simp add: word_msb_sint)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3587
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3588
       apply simp_all
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3589
     apply (unfold sint_word_ariths)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3590
     apply (unfold word_sbin.set_iff_norm [symmetric] sints_num)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3591
     apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3592
        apply (insert sint_range' [where x=x])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3593
        apply (insert sint_range' [where x=y])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3594
        defer 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3595
        apply (simp (no_asm), arith)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3596
       apply (simp (no_asm), arith)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3597
      defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3598
      defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3599
      apply (simp (no_asm), arith)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3600
     apply (simp (no_asm), arith)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3601
    apply (rule notI [THEN notnotD],
61824
dcbe9f756ae0 not_leE -> not_le_imp_less and other tidying
paulson <lp15@cam.ac.uk>
parents: 61799
diff changeset
  3602
           drule leI not_le_imp_less,
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3603
           drule sbintrunc_inc sbintrunc_dec,      
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3604
           simp)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3605
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3606
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3607
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3608
subsection \<open>Split and cat\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3609
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3610
lemmas word_split_bin' = word_split_def
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3611
lemmas word_cat_bin' = word_cat_def
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3612
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3613
lemma word_rsplit_no:
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3614
  "(word_rsplit (numeral bin :: 'b :: len0 word) :: 'a word list) = 
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
  3615
    map word_of_int (bin_rsplit (len_of TYPE('a :: len)) 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3616
      (len_of TYPE('b), bintrunc (len_of TYPE('b)) (numeral bin)))"
46962
5bdcdb28be83 make more word theorems respect int/bin distinction
huffman
parents: 46656
diff changeset
  3617
  unfolding word_rsplit_def by (simp add: word_ubin.eq_norm)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3618
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3619
lemmas word_rsplit_no_cl [simp] = word_rsplit_no
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3620
  [unfolded bin_rsplitl_def bin_rsplit_l [symmetric]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3621
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3622
lemma test_bit_cat:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3623
  "wc = word_cat a b \<Longrightarrow> wc !! n = (n < size wc & 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3624
    (if n < size b then b !! n else a !! (n - size b)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3625
  apply (unfold word_cat_bin' test_bit_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3626
  apply (auto simp add : word_ubin.eq_norm nth_bintr bin_nth_cat word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3627
  apply (erule bin_nth_uint_imp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3628
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3629
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3630
lemma word_cat_bl: "word_cat a b = of_bl (to_bl a @ to_bl b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3631
  apply (unfold of_bl_def to_bl_def word_cat_bin')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3632
  apply (simp add: bl_to_bin_app_cat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3633
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3634
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3635
lemma of_bl_append:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3636
  "(of_bl (xs @ ys) :: 'a :: len word) = of_bl xs * 2^(length ys) + of_bl ys"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3637
  apply (unfold of_bl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3638
  apply (simp add: bl_to_bin_app_cat bin_cat_num)
46009
5cb7ef5bfef2 remove duplicate lemma lists
huffman
parents: 46001
diff changeset
  3639
  apply (simp add: word_of_int_power_hom [symmetric] word_of_int_hom_syms)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3640
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3641
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3642
lemma of_bl_False [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3643
  "of_bl (False#xs) = of_bl xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3644
  by (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3645
     (auto simp add: test_bit_of_bl nth_append)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3646
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  3647
lemma of_bl_True [simp]:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3648
  "(of_bl (True#xs)::'a::len word) = 2^length xs + of_bl xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3649
  by (subst of_bl_append [where xs="[True]", simplified])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3650
     (simp add: word_1_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3651
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3652
lemma of_bl_Cons:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3653
  "of_bl (x#xs) = of_bool x * 2^length xs + of_bl xs"
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  3654
  by (cases x) simp_all
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3655
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3656
lemma split_uint_lem: "bin_split n (uint (w :: 'a :: len0 word)) = (a, b) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3657
  a = bintrunc (len_of TYPE('a) - n) a & b = bintrunc (len_of TYPE('a)) b"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3658
  apply (frule word_ubin.norm_Rep [THEN ssubst])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3659
  apply (drule bin_split_trunc1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3660
  apply (drule sym [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3661
  apply assumption
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3662
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3663
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3664
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3665
lemma word_split_bl': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3666
  "std = size c - size b \<Longrightarrow> (word_split c = (a, b)) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3667
    (a = of_bl (take std (to_bl c)) & b = of_bl (drop std (to_bl c)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3668
  apply (unfold word_split_bin')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3669
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3670
   defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3671
   apply (clarsimp split: prod.splits)
57492
74bf65a1910a Hypsubst preserves equality hypotheses
Thomas Sewell <thomas.sewell@nicta.com.au>
parents: 56979
diff changeset
  3672
   apply hypsubst_thin
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3673
   apply (drule word_ubin.norm_Rep [THEN ssubst])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3674
   apply (drule split_bintrunc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3675
   apply (simp add : of_bl_def bl2bin_drop word_size
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3676
       word_ubin.norm_eq_iff [symmetric] min_def del : word_ubin.norm_Rep)    
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3677
  apply (clarsimp split: prod.splits)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3678
  apply (frule split_uint_lem [THEN conjunct1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3679
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3680
  apply (cases "len_of TYPE('a) >= len_of TYPE('b)")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3681
   defer
46001
0b562d564d5f redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents: 46000
diff changeset
  3682
   apply simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3683
  apply (simp add : of_bl_def to_bl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3684
  apply (subst bin_split_take1 [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3685
    prefer 2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3686
    apply assumption
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3687
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3688
  apply (erule thin_rl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3689
  apply (erule arg_cong [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3690
  apply (simp add : word_ubin.norm_eq_iff [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3691
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3692
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3693
lemma word_split_bl: "std = size c - size b \<Longrightarrow> 
61941
31f2105521ee discontinued ASCII replacement syntax <->;
wenzelm
parents: 61824
diff changeset
  3694
    (a = of_bl (take std (to_bl c)) & b = of_bl (drop std (to_bl c))) \<longleftrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3695
    word_split c = (a, b)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3696
  apply (rule iffI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3697
   defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3698
   apply (erule (1) word_split_bl')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3699
  apply (case_tac "word_split c")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3700
  apply (auto simp add : word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3701
  apply (frule word_split_bl' [rotated])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3702
  apply (auto simp add : word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3703
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3704
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3705
lemma word_split_bl_eq:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3706
   "(word_split (c::'a::len word) :: ('c :: len0 word * 'd :: len0 word)) =
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3707
      (of_bl (take (len_of TYPE('a::len) - len_of TYPE('d::len0)) (to_bl c)),
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3708
       of_bl (drop (len_of TYPE('a) - len_of TYPE('d)) (to_bl c)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3709
  apply (rule word_split_bl [THEN iffD1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3710
  apply (unfold word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3711
  apply (rule refl conjI)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3712
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3713
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3714
\<comment> "keep quantifiers for use in simplification"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3715
lemma test_bit_split':
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3716
  "word_split c = (a, b) --> (ALL n m. b !! n = (n < size b & c !! n) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3717
    a !! m = (m < size a & c !! (m + size b)))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3718
  apply (unfold word_split_bin' test_bit_bin)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3719
  apply (clarify)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3720
  apply (clarsimp simp: word_ubin.eq_norm nth_bintr word_size split: prod.splits)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3721
  apply (drule bin_nth_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3722
  apply safe
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  3723
       apply (simp_all add: add.commute)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3724
   apply (erule bin_nth_uint_imp)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3725
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3726
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3727
lemma test_bit_split:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3728
  "word_split c = (a, b) \<Longrightarrow>
61076
bdc1e2f0a86a eliminated \<Colon>;
wenzelm
parents: 60754
diff changeset
  3729
    (\<forall>n::nat. b !! n \<longleftrightarrow> n < size b \<and> c !! n) \<and> (\<forall>m::nat. a !! m \<longleftrightarrow> m < size a \<and> c !! (m + size b))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3730
  by (simp add: test_bit_split')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3731
61941
31f2105521ee discontinued ASCII replacement syntax <->;
wenzelm
parents: 61824
diff changeset
  3732
lemma test_bit_split_eq: "word_split c = (a, b) \<longleftrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3733
  ((ALL n::nat. b !! n = (n < size b & c !! n)) &
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3734
    (ALL m::nat. a !! m = (m < size a & c !! (m + size b))))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3735
  apply (rule_tac iffI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3736
   apply (rule_tac conjI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3737
    apply (erule test_bit_split [THEN conjunct1])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3738
   apply (erule test_bit_split [THEN conjunct2])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3739
  apply (case_tac "word_split c")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3740
  apply (frule test_bit_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3741
  apply (erule trans)
44890
22f665a2e91c new fastforce replacing fastsimp - less confusing name
nipkow
parents: 44821
diff changeset
  3742
  apply (fastforce intro ! : word_eqI simp add : word_size)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3743
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3744
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3745
\<comment> \<open>this odd result is analogous to \<open>ucast_id\<close>, 
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3746
      result to the length given by the result type\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3747
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3748
lemma word_cat_id: "word_cat a b = b"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3749
  unfolding word_cat_bin' by (simp add: word_ubin.inverse_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3750
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3751
\<comment> "limited hom result"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3752
lemma word_cat_hom:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3753
  "len_of TYPE('a::len0) <= len_of TYPE('b::len0) + len_of TYPE ('c::len0)
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3754
  \<Longrightarrow>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3755
  (word_cat (word_of_int w :: 'b word) (b :: 'c word) :: 'a word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3756
  word_of_int (bin_cat w (size b) (uint b))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3757
  apply (unfold word_cat_def word_size) 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3758
  apply (clarsimp simp add: word_ubin.norm_eq_iff [symmetric]
54863
82acc20ded73 prefer more canonical names for lemmas on min/max
haftmann
parents: 54854
diff changeset
  3759
      word_ubin.eq_norm bintr_cat min.absorb1)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3760
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3761
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3762
lemma word_cat_split_alt:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3763
  "size w <= size u + size v \<Longrightarrow> word_split w = (u, v) \<Longrightarrow> word_cat u v = w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3764
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3765
  apply (drule test_bit_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3766
  apply (clarsimp simp add : test_bit_cat word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3767
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3768
  apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3769
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3770
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3771
lemmas word_cat_split_size = sym [THEN [2] word_cat_split_alt [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3772
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3773
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3774
subsubsection \<open>Split and slice\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3775
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3776
lemma split_slices: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3777
  "word_split w = (u, v) \<Longrightarrow> u = slice (size v) w & v = slice 0 w"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3778
  apply (drule test_bit_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3779
  apply (rule conjI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3780
   apply (rule word_eqI, clarsimp simp: nth_slice word_size)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3781
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3782
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3783
lemma slice_cat1 [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3784
  "wc = word_cat a b \<Longrightarrow> size wc >= size a + size b \<Longrightarrow> slice (size b) wc = a"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3785
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3786
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3787
  apply (simp add: nth_slice test_bit_cat word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3788
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3789
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3790
lemmas slice_cat2 = trans [OF slice_id word_cat_id]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3791
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3792
lemma cat_slices:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3793
  "a = slice n c \<Longrightarrow> b = slice 0 c \<Longrightarrow> n = size b \<Longrightarrow>
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3794
    size a + size b >= size c \<Longrightarrow> word_cat a b = c"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3795
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3796
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3797
  apply (simp add: nth_slice test_bit_cat word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3798
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3799
  apply arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3800
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3801
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3802
lemma word_split_cat_alt:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3803
  "w = word_cat u v \<Longrightarrow> size u + size v <= size w \<Longrightarrow> word_split w = (u, v)"
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59657
diff changeset
  3804
  apply (case_tac "word_split w")
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3805
  apply (rule trans, assumption)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3806
  apply (drule test_bit_split)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3807
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3808
   apply (rule word_eqI, clarsimp simp: test_bit_cat word_size)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3809
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3810
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3811
lemmas word_cat_bl_no_bin [simp] =
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3812
  word_cat_bl [where a="numeral a" and b="numeral b",
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3813
    unfolded to_bl_numeral]
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3814
  for a b (* FIXME: negative numerals, 0 and 1 *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3815
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3816
lemmas word_split_bl_no_bin [simp] =
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3817
  word_split_bl_eq [where c="numeral c", unfolded to_bl_numeral] for c
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  3818
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3819
text \<open>this odd result arises from the fact that the statement of the
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3820
      result implies that the decoded words are of the same type, 
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3821
      and therefore of the same length, as the original word\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3822
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3823
lemma word_rsplit_same: "word_rsplit w = [w]"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3824
  unfolding word_rsplit_def by (simp add : bin_rsplit_all)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3825
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3826
lemma word_rsplit_empty_iff_size:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3827
  "(word_rsplit w = []) = (size w = 0)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3828
  unfolding word_rsplit_def bin_rsplit_def word_size
61424
c3658c18b7bc prod_case as canonical name for product type eliminator
haftmann
parents: 61260
diff changeset
  3829
  by (simp add: bin_rsplit_aux_simp_alt Let_def split: prod.split)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3830
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3831
lemma test_bit_rsplit:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3832
  "sw = word_rsplit w \<Longrightarrow> m < size (hd sw :: 'a :: len word) \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3833
    k < length sw \<Longrightarrow> (rev sw ! k) !! m = (w !! (k * size (hd sw) + m))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3834
  apply (unfold word_rsplit_def word_test_bit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3835
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3836
   apply (rule_tac f = "%x. bin_nth x m" in arg_cong)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3837
   apply (rule nth_map [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3838
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3839
  apply (rule bin_nth_rsplit)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3840
     apply simp_all
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3841
  apply (simp add : word_size rev_map)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3842
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3843
   defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3844
   apply (rule map_ident [THEN fun_cong])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3845
  apply (rule refl [THEN map_cong])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3846
  apply (simp add : word_ubin.eq_norm)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3847
  apply (erule bin_rsplit_size_sign [OF len_gt_0 refl])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3848
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3849
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3850
lemma word_rcat_bl: "word_rcat wl = of_bl (concat (map to_bl wl))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3851
  unfolding word_rcat_def to_bl_def' of_bl_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3852
  by (clarsimp simp add : bin_rcat_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3853
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3854
lemma size_rcat_lem':
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3855
  "size (concat (map to_bl wl)) = length wl * size (hd wl)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3856
  unfolding word_size by (induct wl) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3857
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3858
lemmas size_rcat_lem = size_rcat_lem' [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3859
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3860
lemmas td_gal_lt_len = len_gt_0 [THEN td_gal_lt]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3861
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3862
lemma nth_rcat_lem:
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3863
  "n < length (wl::'a word list) * len_of TYPE('a::len) \<Longrightarrow>
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3864
    rev (concat (map to_bl wl)) ! n =
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3865
    rev (to_bl (rev wl ! (n div len_of TYPE('a)))) ! (n mod len_of TYPE('a))"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3866
  apply (induct "wl")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3867
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3868
  apply (clarsimp simp add : nth_append size_rcat_lem)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3869
  apply (simp (no_asm_use) only:  mult_Suc [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3870
         td_gal_lt_len less_Suc_eq_le mod_div_equality')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3871
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3872
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3873
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3874
lemma test_bit_rcat:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3875
  "sw = size (hd wl :: 'a :: len word) \<Longrightarrow> rc = word_rcat wl \<Longrightarrow> rc !! n = 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3876
    (n < size rc & n div sw < size wl & (rev wl) ! (n div sw) !! (n mod sw))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3877
  apply (unfold word_rcat_bl word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3878
  apply (clarsimp simp add : 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3879
    test_bit_of_bl size_rcat_lem word_size td_gal_lt_len)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3880
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3881
   apply (auto simp add : 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3882
    test_bit_bl word_size td_gal_lt_len [THEN iffD2, THEN nth_rcat_lem])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3883
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3884
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3885
lemma foldl_eq_foldr:
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3886
  "foldl op + x xs = foldr op + (x # xs) (0 :: 'a :: comm_monoid_add)" 
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  3887
  by (induct xs arbitrary: x) (auto simp add : add.assoc)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3888
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3889
lemmas test_bit_cong = arg_cong [where f = "test_bit", THEN fun_cong]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3890
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3891
lemmas test_bit_rsplit_alt = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3892
  trans [OF nth_rev_alt [THEN test_bit_cong] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3893
  test_bit_rsplit [OF refl asm_rl diff_Suc_less]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3894
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3895
\<comment> "lazy way of expressing that u and v, and su and sv, have same types"
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3896
lemma word_rsplit_len_indep [OF refl refl refl refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3897
  "[u,v] = p \<Longrightarrow> [su,sv] = q \<Longrightarrow> word_rsplit u = su \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3898
    word_rsplit v = sv \<Longrightarrow> length su = length sv"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3899
  apply (unfold word_rsplit_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3900
  apply (auto simp add : bin_rsplit_len_indep)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3901
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3902
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3903
lemma length_word_rsplit_size: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3904
  "n = len_of TYPE ('a :: len) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3905
    (length (word_rsplit w :: 'a word list) <= m) = (size w <= m * n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3906
  apply (unfold word_rsplit_def word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3907
  apply (clarsimp simp add : bin_rsplit_len_le)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3908
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3909
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3910
lemmas length_word_rsplit_lt_size = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3911
  length_word_rsplit_size [unfolded Not_eq_iff linorder_not_less [symmetric]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3912
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3913
lemma length_word_rsplit_exp_size:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3914
  "n = len_of TYPE ('a :: len) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3915
    length (word_rsplit w :: 'a word list) = (size w + n - 1) div n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3916
  unfolding word_rsplit_def by (clarsimp simp add : word_size bin_rsplit_len)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3917
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3918
lemma length_word_rsplit_even_size: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3919
  "n = len_of TYPE ('a :: len) \<Longrightarrow> size w = m * n \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3920
    length (word_rsplit w :: 'a word list) = m"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3921
  by (clarsimp simp add : length_word_rsplit_exp_size given_quot_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3922
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3923
lemmas length_word_rsplit_exp_size' = refl [THEN length_word_rsplit_exp_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3924
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3925
(* alternative proof of word_rcat_rsplit *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3926
lemmas tdle = iffD2 [OF split_div_lemma refl, THEN conjunct1] 
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  3927
lemmas dtle = xtr4 [OF tdle mult.commute]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3928
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3929
lemma word_rcat_rsplit: "word_rcat (word_rsplit w) = w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3930
  apply (rule word_eqI)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3931
  apply (clarsimp simp add : test_bit_rcat word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3932
  apply (subst refl [THEN test_bit_rsplit])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3933
    apply (simp_all add: word_size 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3934
      refl [THEN length_word_rsplit_size [simplified not_less [symmetric], simplified]])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3935
   apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3936
   apply (erule xtr7, rule len_gt_0 [THEN dtle])+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3937
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3938
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3939
lemma size_word_rsplit_rcat_size:
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3940
  "\<lbrakk>word_rcat (ws::'a::len word list) = (frcw::'b::len0 word);
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3941
     size frcw = length ws * len_of TYPE('a)\<rbrakk>
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3942
    \<Longrightarrow> length (word_rsplit frcw::'a word list) = length ws"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3943
  apply (clarsimp simp add : word_size length_word_rsplit_exp_size')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3944
  apply (fast intro: given_quot_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3945
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3946
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3947
lemma msrevs:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3948
  fixes n::nat
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3949
  shows "0 < n \<Longrightarrow> (k * n + m) div n = m div n + k"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3950
  and   "(k * n + m) mod n = m mod n"
57512
cc97b347b301 reduced name variants for assoc and commute on plus and mult
haftmann
parents: 57492
diff changeset
  3951
  by (auto simp: add.commute)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3952
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  3953
lemma word_rsplit_rcat_size [OF refl]:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3954
  "word_rcat (ws :: 'a :: len word list) = frcw \<Longrightarrow> 
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3955
    size frcw = length ws * len_of TYPE ('a) \<Longrightarrow> word_rsplit frcw = ws" 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3956
  apply (frule size_word_rsplit_rcat_size, assumption)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3957
  apply (clarsimp simp add : word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3958
  apply (rule nth_equalityI, assumption)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3959
  apply clarsimp
46023
fad87bb608fc restate some lemmas to respect int/bin distinction
huffman
parents: 46022
diff changeset
  3960
  apply (rule word_eqI [rule_format])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3961
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3962
   apply (rule test_bit_rsplit_alt)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3963
     apply (clarsimp simp: word_size)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3964
  apply (rule trans)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3965
  apply (rule test_bit_rcat [OF refl refl])
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  3966
  apply (simp add: word_size)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3967
  apply (subst nth_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3968
   apply arith
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41413
diff changeset
  3969
  apply (simp add: le0 [THEN [2] xtr7, THEN diff_Suc_less])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3970
  apply safe
41550
efa734d9b221 eliminated global prems;
wenzelm
parents: 41413
diff changeset
  3971
  apply (simp add: diff_mult_distrib)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3972
  apply (rule mpl_lem)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3973
  apply (cases "size ws")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3974
   apply simp_all
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3975
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3976
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3977
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  3978
subsection \<open>Rotation\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3979
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3980
lemmas rotater_0' [simp] = rotater_def [where n = "0", simplified]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3981
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3982
lemmas word_rot_defs = word_roti_def word_rotr_def word_rotl_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3983
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3984
lemma rotate_eq_mod: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  3985
  "m mod length xs = n mod length xs \<Longrightarrow> rotate m xs = rotate n xs"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3986
  apply (rule box_equals)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3987
    defer
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3988
    apply (rule rotate_conv_mod [symmetric])+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3989
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3990
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3991
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3992
lemmas rotate_eqs = 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3993
  trans [OF rotate0 [THEN fun_cong] id_apply]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3994
  rotate_rotate [symmetric] 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  3995
  rotate_id
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3996
  rotate_conv_mod 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3997
  rotate_eq_mod
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3998
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  3999
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  4000
subsubsection \<open>Rotation of list to right\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4001
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4002
lemma rotate1_rl': "rotater1 (l @ [a]) = a # l"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4003
  unfolding rotater1_def by (cases l) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4004
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4005
lemma rotate1_rl [simp] : "rotater1 (rotate1 l) = l"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4006
  apply (unfold rotater1_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4007
  apply (cases "l")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4008
  apply (case_tac [2] "list")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4009
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4010
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4011
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4012
lemma rotate1_lr [simp] : "rotate1 (rotater1 l) = l"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4013
  unfolding rotater1_def by (cases l) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4014
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4015
lemma rotater1_rev': "rotater1 (rev xs) = rev (rotate1 xs)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4016
  apply (cases "xs")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4017
  apply (simp add : rotater1_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4018
  apply (simp add : rotate1_rl')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4019
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4020
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4021
lemma rotater_rev': "rotater n (rev xs) = rev (rotate n xs)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4022
  unfolding rotater_def by (induct n) (auto intro: rotater1_rev')
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4023
45816
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  4024
lemma rotater_rev: "rotater n ys = rev (rotate n (rev ys))"
6a04efd99f25 replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents: 45811
diff changeset
  4025
  using rotater_rev' [where xs = "rev ys"] by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4026
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4027
lemma rotater_drop_take: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4028
  "rotater n xs = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4029
   drop (length xs - n mod length xs) xs @
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4030
   take (length xs - n mod length xs) xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4031
  by (clarsimp simp add : rotater_rev rotate_drop_take rev_take rev_drop)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4032
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4033
lemma rotater_Suc [simp] : 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4034
  "rotater (Suc n) xs = rotater1 (rotater n xs)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4035
  unfolding rotater_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4036
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4037
lemma rotate_inv_plus [rule_format] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4038
  "ALL k. k = m + n --> rotater k (rotate n xs) = rotater m xs & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4039
    rotate k (rotater n xs) = rotate m xs & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4040
    rotater n (rotate k xs) = rotate m xs & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4041
    rotate n (rotater k xs) = rotater m xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4042
  unfolding rotater_def rotate_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4043
  by (induct n) (auto intro: funpow_swap1 [THEN trans])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4044
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4045
lemmas rotate_inv_rel = le_add_diff_inverse2 [symmetric, THEN rotate_inv_plus]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4046
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4047
lemmas rotate_inv_eq = order_refl [THEN rotate_inv_rel, simplified]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4048
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4049
lemmas rotate_lr [simp] = rotate_inv_eq [THEN conjunct1]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4050
lemmas rotate_rl [simp] = rotate_inv_eq [THEN conjunct2, THEN conjunct1]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4051
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4052
lemma rotate_gal: "(rotater n xs = ys) = (rotate n ys = xs)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4053
  by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4054
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4055
lemma rotate_gal': "(ys = rotater n xs) = (xs = rotate n ys)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4056
  by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4057
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4058
lemma length_rotater [simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4059
  "length (rotater n xs) = length xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4060
  by (simp add : rotater_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4061
38527
f2709bc1e41f moved spurious auxiliary lemma here
haftmann
parents: 37887
diff changeset
  4062
lemma restrict_to_left:
f2709bc1e41f moved spurious auxiliary lemma here
haftmann
parents: 37887
diff changeset
  4063
  assumes "x = y"
f2709bc1e41f moved spurious auxiliary lemma here
haftmann
parents: 37887
diff changeset
  4064
  shows "(x = z) = (y = z)"
f2709bc1e41f moved spurious auxiliary lemma here
haftmann
parents: 37887
diff changeset
  4065
  using assms by simp
f2709bc1e41f moved spurious auxiliary lemma here
haftmann
parents: 37887
diff changeset
  4066
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4067
lemmas rrs0 = rotate_eqs [THEN restrict_to_left, 
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4068
  simplified rotate_gal [symmetric] rotate_gal' [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4069
lemmas rrs1 = rrs0 [THEN refl [THEN rev_iffD1]]
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4070
lemmas rotater_eqs = rrs1 [simplified length_rotater]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4071
lemmas rotater_0 = rotater_eqs (1)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4072
lemmas rotater_add = rotater_eqs (2)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4073
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4074
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  4075
subsubsection \<open>map, map2, commuting with rotate(r)\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4076
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4077
lemma butlast_map:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4078
  "xs ~= [] \<Longrightarrow> butlast (map f xs) = map f (butlast xs)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4079
  by (induct xs) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4080
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4081
lemma rotater1_map: "rotater1 (map f xs) = map f (rotater1 xs)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4082
  unfolding rotater1_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4083
  by (cases xs) (auto simp add: last_map butlast_map)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4084
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4085
lemma rotater_map:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4086
  "rotater n (map f xs) = map f (rotater n xs)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4087
  unfolding rotater_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4088
  by (induct n) (auto simp add : rotater1_map)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4089
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4090
lemma but_last_zip [rule_format] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4091
  "ALL ys. length xs = length ys --> xs ~= [] --> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4092
    last (zip xs ys) = (last xs, last ys) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4093
    butlast (zip xs ys) = zip (butlast xs) (butlast ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4094
  apply (induct "xs")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4095
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4096
     apply ((case_tac ys, auto simp: neq_Nil_conv)[1])+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4097
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4098
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4099
lemma but_last_map2 [rule_format] :
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4100
  "ALL ys. length xs = length ys --> xs ~= [] --> 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4101
    last (map2 f xs ys) = f (last xs) (last ys) & 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4102
    butlast (map2 f xs ys) = map2 f (butlast xs) (butlast ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4103
  apply (induct "xs")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4104
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4105
     apply (unfold map2_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4106
     apply ((case_tac ys, auto simp: neq_Nil_conv)[1])+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4107
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4108
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4109
lemma rotater1_zip:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4110
  "length xs = length ys \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4111
    rotater1 (zip xs ys) = zip (rotater1 xs) (rotater1 ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4112
  apply (unfold rotater1_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4113
  apply (cases "xs")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4114
   apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4115
   apply ((case_tac ys, auto simp: neq_Nil_conv but_last_zip)[1])+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4116
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4117
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4118
lemma rotater1_map2:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4119
  "length xs = length ys \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4120
    rotater1 (map2 f xs ys) = map2 f (rotater1 xs) (rotater1 ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4121
  unfolding map2_def by (simp add: rotater1_map rotater1_zip)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4122
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4123
lemmas lrth = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4124
  box_equals [OF asm_rl length_rotater [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4125
                 length_rotater [symmetric], 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4126
              THEN rotater1_map2]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4127
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4128
lemma rotater_map2: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4129
  "length xs = length ys \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4130
    rotater n (map2 f xs ys) = map2 f (rotater n xs) (rotater n ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4131
  by (induct n) (auto intro!: lrth)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4132
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4133
lemma rotate1_map2:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4134
  "length xs = length ys \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4135
    rotate1 (map2 f xs ys) = map2 f (rotate1 xs) (rotate1 ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4136
  apply (unfold map2_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4137
  apply (cases xs)
46440
d4994e2e7364 use 'primrec' to define "rotate1", for uniformity (and to help first-order tools that rely on "Spec_Rules")
blanchet
parents: 46173
diff changeset
  4138
   apply (cases ys, auto)+
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4139
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4140
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4141
lemmas lth = box_equals [OF asm_rl length_rotate [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4142
  length_rotate [symmetric], THEN rotate1_map2]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4143
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4144
lemma rotate_map2: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4145
  "length xs = length ys \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4146
    rotate n (map2 f xs ys) = map2 f (rotate n xs) (rotate n ys)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4147
  by (induct n) (auto intro!: lth)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4148
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4149
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  4150
\<comment> "corresponding equalities for word rotation"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4151
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4152
lemma to_bl_rotl: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4153
  "to_bl (word_rotl n w) = rotate n (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4154
  by (simp add: word_bl.Abs_inverse' word_rotl_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4155
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4156
lemmas blrs0 = rotate_eqs [THEN to_bl_rotl [THEN trans]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4157
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4158
lemmas word_rotl_eqs =
45538
1fffa81b9b83 eliminated slightly odd Rep' with dynamically-scoped [simplified];
wenzelm
parents: 45529
diff changeset
  4159
  blrs0 [simplified word_bl_Rep' word_bl.Rep_inject to_bl_rotl [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4160
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4161
lemma to_bl_rotr: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4162
  "to_bl (word_rotr n w) = rotater n (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4163
  by (simp add: word_bl.Abs_inverse' word_rotr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4164
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4165
lemmas brrs0 = rotater_eqs [THEN to_bl_rotr [THEN trans]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4166
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4167
lemmas word_rotr_eqs =
45538
1fffa81b9b83 eliminated slightly odd Rep' with dynamically-scoped [simplified];
wenzelm
parents: 45529
diff changeset
  4168
  brrs0 [simplified word_bl_Rep' word_bl.Rep_inject to_bl_rotr [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4169
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4170
declare word_rotr_eqs (1) [simp]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4171
declare word_rotl_eqs (1) [simp]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4172
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4173
lemma
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4174
  word_rot_rl [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4175
  "word_rotl k (word_rotr k v) = v" and
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4176
  word_rot_lr [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4177
  "word_rotr k (word_rotl k v) = v"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4178
  by (auto simp add: to_bl_rotr to_bl_rotl word_bl.Rep_inject [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4179
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4180
lemma
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4181
  word_rot_gal:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4182
  "(word_rotr n v = w) = (word_rotl n w = v)" and
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4183
  word_rot_gal':
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4184
  "(w = word_rotr n v) = (v = word_rotl n w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4185
  by (auto simp: to_bl_rotr to_bl_rotl word_bl.Rep_inject [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4186
           dest: sym)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4187
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4188
lemma word_rotr_rev:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4189
  "word_rotr n w = word_reverse (word_rotl n (word_reverse w))"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4190
  by (simp only: word_bl.Rep_inject [symmetric] to_bl_word_rev
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4191
                to_bl_rotr to_bl_rotl rotater_rev)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4192
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4193
lemma word_roti_0 [simp]: "word_roti 0 w = w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4194
  by (unfold word_rot_defs) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4195
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4196
lemmas abl_cong = arg_cong [where f = "of_bl"]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4197
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4198
lemma word_roti_add: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4199
  "word_roti (m + n) w = word_roti m (word_roti n w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4200
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4201
  have rotater_eq_lem: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4202
    "\<And>m n xs. m = n \<Longrightarrow> rotater m xs = rotater n xs"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4203
    by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4204
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4205
  have rotate_eq_lem: 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4206
    "\<And>m n xs. m = n \<Longrightarrow> rotate m xs = rotate n xs"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4207
    by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4208
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4209
  note rpts [symmetric] = 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4210
    rotate_inv_plus [THEN conjunct1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4211
    rotate_inv_plus [THEN conjunct2, THEN conjunct1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4212
    rotate_inv_plus [THEN conjunct2, THEN conjunct2, THEN conjunct1]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4213
    rotate_inv_plus [THEN conjunct2, THEN conjunct2, THEN conjunct2]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4214
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4215
  note rrp = trans [symmetric, OF rotate_rotate rotate_eq_lem]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4216
  note rrrp = trans [symmetric, OF rotater_add [symmetric] rotater_eq_lem]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4217
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4218
  show ?thesis
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4219
  apply (unfold word_rot_defs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4220
  apply (simp only: split: split_if)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4221
  apply (safe intro!: abl_cong)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4222
  apply (simp_all only: to_bl_rotl [THEN word_bl.Rep_inverse'] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4223
                    to_bl_rotl
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4224
                    to_bl_rotr [THEN word_bl.Rep_inverse']
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4225
                    to_bl_rotr)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4226
  apply (rule rrp rrrp rpts,
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4227
         simp add: nat_add_distrib [symmetric] 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4228
                   nat_diff_distrib [symmetric])+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4229
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4230
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4231
    
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4232
lemma word_roti_conv_mod': "word_roti n w = word_roti (n mod int (size w)) w"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4233
  apply (unfold word_rot_defs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4234
  apply (cut_tac y="size w" in gt_or_eq_0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4235
  apply (erule disjE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4236
   apply simp_all
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4237
  apply (safe intro!: abl_cong)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4238
   apply (rule rotater_eqs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4239
   apply (simp add: word_size nat_mod_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4240
  apply (simp add: rotater_add [symmetric] rotate_gal [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4241
  apply (rule rotater_eqs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4242
  apply (simp add: word_size nat_mod_distrib)
62348
9a5f43dac883 dropped various legacy fact bindings
haftmann
parents: 61941
diff changeset
  4243
  apply (rule of_nat_eq_0_iff [THEN iffD1])
9a5f43dac883 dropped various legacy fact bindings
haftmann
parents: 61941
diff changeset
  4244
  apply (auto simp add: not_le mod_eq_0_iff_dvd zdvd_int nat_add_distrib [symmetric])
9a5f43dac883 dropped various legacy fact bindings
haftmann
parents: 61941
diff changeset
  4245
  using mod_mod_trivial zmod_eq_dvd_iff
9a5f43dac883 dropped various legacy fact bindings
haftmann
parents: 61941
diff changeset
  4246
  apply blast
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4247
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4248
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4249
lemmas word_roti_conv_mod = word_roti_conv_mod' [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4250
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4251
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  4252
subsubsection \<open>"Word rotation commutes with bit-wise operations\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4253
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4254
(* using locale to not pollute lemma namespace *)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4255
locale word_rotate 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4256
begin
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4257
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4258
lemmas word_rot_defs' = to_bl_rotl to_bl_rotr
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4259
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4260
lemmas blwl_syms [symmetric] = bl_word_not bl_word_and bl_word_or bl_word_xor
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4261
45538
1fffa81b9b83 eliminated slightly odd Rep' with dynamically-scoped [simplified];
wenzelm
parents: 45529
diff changeset
  4262
lemmas lbl_lbl = trans [OF word_bl_Rep' word_bl_Rep' [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4263
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4264
lemmas ths_map2 [OF lbl_lbl] = rotate_map2 rotater_map2
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4265
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4266
lemmas ths_map [where xs = "to_bl v"] = rotate_map rotater_map for v
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4267
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4268
lemmas th1s [simplified word_rot_defs' [symmetric]] = ths_map2 ths_map
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4269
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4270
lemma word_rot_logs:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4271
  "word_rotl n (NOT v) = NOT word_rotl n v"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4272
  "word_rotr n (NOT v) = NOT word_rotr n v"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4273
  "word_rotl n (x AND y) = word_rotl n x AND word_rotl n y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4274
  "word_rotr n (x AND y) = word_rotr n x AND word_rotr n y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4275
  "word_rotl n (x OR y) = word_rotl n x OR word_rotl n y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4276
  "word_rotr n (x OR y) = word_rotr n x OR word_rotr n y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4277
  "word_rotl n (x XOR y) = word_rotl n x XOR word_rotl n y"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4278
  "word_rotr n (x XOR y) = word_rotr n x XOR word_rotr n y"  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4279
  by (rule word_bl.Rep_eqD,
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4280
      rule word_rot_defs' [THEN trans],
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4281
      simp only: blwl_syms [symmetric],
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4282
      rule th1s [THEN trans], 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4283
      rule refl)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4284
end
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4285
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4286
lemmas word_rot_logs = word_rotate.word_rot_logs
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4287
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4288
lemmas bl_word_rotl_dt = trans [OF to_bl_rotl rotate_drop_take,
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4289
  simplified word_bl_Rep']
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4290
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4291
lemmas bl_word_rotr_dt = trans [OF to_bl_rotr rotater_drop_take,
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4292
  simplified word_bl_Rep']
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4293
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4294
lemma bl_word_roti_dt': 
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4295
  "n = nat ((- i) mod int (size (w :: 'a :: len word))) \<Longrightarrow> 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4296
    to_bl (word_roti i w) = drop n (to_bl w) @ take n (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4297
  apply (unfold word_roti_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4298
  apply (simp add: bl_word_rotl_dt bl_word_rotr_dt word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4299
  apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4300
   apply (simp add: zmod_zminus1_eq_if)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4301
   apply safe
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4302
    apply (simp add: nat_mult_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4303
   apply (simp add: nat_diff_distrib [OF pos_mod_sign pos_mod_conj 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4304
                                      [THEN conjunct2, THEN order_less_imp_le]]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4305
                    nat_mod_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4306
  apply (simp add: nat_mod_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4307
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4308
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4309
lemmas bl_word_roti_dt = bl_word_roti_dt' [unfolded word_size]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4310
45604
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4311
lemmas word_rotl_dt = bl_word_rotl_dt [THEN word_bl.Rep_inverse' [symmetric]] 
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4312
lemmas word_rotr_dt = bl_word_rotr_dt [THEN word_bl.Rep_inverse' [symmetric]]
29cf40fe8daf eliminated obsolete "standard";
wenzelm
parents: 45550
diff changeset
  4313
lemmas word_roti_dt = bl_word_roti_dt [THEN word_bl.Rep_inverse' [symmetric]]
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4314
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4315
lemma word_rotx_0 [simp] : "word_rotr i 0 = 0 & word_rotl i 0 = 0"
45805
3c609e8785f2 tidied Word.thy;
huffman
parents: 45804
diff changeset
  4316
  by (simp add : word_rotr_dt word_rotl_dt replicate_add [symmetric])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4317
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4318
lemma word_roti_0' [simp] : "word_roti n 0 = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4319
  unfolding word_roti_def by auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4320
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4321
lemmas word_rotr_dt_no_bin' [simp] = 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4322
  word_rotr_dt [where w="numeral w", unfolded to_bl_numeral] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4323
  (* FIXME: negative numerals, 0 and 1 *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4324
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4325
lemmas word_rotl_dt_no_bin' [simp] = 
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4326
  word_rotl_dt [where w="numeral w", unfolded to_bl_numeral] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4327
  (* FIXME: negative numerals, 0 and 1 *)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4328
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4329
declare word_roti_def [simp]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4330
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4331
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  4332
subsection \<open>Maximum machine word\<close>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4333
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4334
lemma word_int_cases:
46124
3ee75fe01986 misc tuning;
wenzelm
parents: 46064
diff changeset
  4335
  obtains n where "(x ::'a::len0 word) = word_of_int n" and "0 \<le> n" and "n < 2^len_of TYPE('a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4336
  by (cases x rule: word_uint.Abs_cases) (simp add: uints_num)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4337
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4338
lemma word_nat_cases [cases type: word]:
46124
3ee75fe01986 misc tuning;
wenzelm
parents: 46064
diff changeset
  4339
  obtains n where "(x ::'a::len word) = of_nat n" and "n < 2^len_of TYPE('a)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4340
  by (cases x rule: word_unat.Abs_cases) (simp add: unats_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4341
46124
3ee75fe01986 misc tuning;
wenzelm
parents: 46064
diff changeset
  4342
lemma max_word_eq: "(max_word::'a::len word) = 2^len_of TYPE('a) - 1"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4343
  by (simp add: max_word_def word_of_int_hom_syms word_of_int_2p)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4344
46124
3ee75fe01986 misc tuning;
wenzelm
parents: 46064
diff changeset
  4345
lemma max_word_max [simp,intro!]: "n \<le> max_word"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4346
  by (cases n rule: word_int_cases)
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  4347
    (simp add: max_word_def word_le_def int_word_uint mod_pos_pos_trivial del: minus_mod_self1)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4348
  
46124
3ee75fe01986 misc tuning;
wenzelm
parents: 46064
diff changeset
  4349
lemma word_of_int_2p_len: "word_of_int (2 ^ len_of TYPE('a)) = (0::'a::len0 word)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4350
  by (subst word_uint.Abs_norm [symmetric]) simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4351
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4352
lemma word_pow_0:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4353
  "(2::'a::len word) ^ len_of TYPE('a) = 0"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4354
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4355
  have "word_of_int (2 ^ len_of TYPE('a)) = (0::'a word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4356
    by (rule word_of_int_2p_len)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4357
  thus ?thesis by (simp add: word_of_int_2p)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4358
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4359
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4360
lemma max_word_wrap: "x + 1 = 0 \<Longrightarrow> x = max_word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4361
  apply (simp add: max_word_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4362
  apply uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4363
  apply auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4364
  apply (simp add: word_pow_0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4365
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4366
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4367
lemma max_word_minus: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4368
  "max_word = (-1::'a::len word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4369
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4370
  have "-1 + 1 = (0::'a word)" by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4371
  thus ?thesis by (rule max_word_wrap [symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4372
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4373
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4374
lemma max_word_bl [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4375
  "to_bl (max_word::'a::len word) = replicate (len_of TYPE('a)) True"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4376
  by (subst max_word_minus to_bl_n1)+ simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4377
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4378
lemma max_test_bit [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4379
  "(max_word::'a::len word) !! n = (n < len_of TYPE('a))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4380
  by (auto simp add: test_bit_bl word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4381
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4382
lemma word_and_max [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4383
  "x AND max_word = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4384
  by (rule word_eqI) (simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4385
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4386
lemma word_or_max [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4387
  "x OR max_word = max_word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4388
  by (rule word_eqI) (simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4389
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4390
lemma word_ao_dist2:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4391
  "x AND (y OR z) = x AND y OR x AND (z::'a::len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4392
  by (rule word_eqI) (auto simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4393
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4394
lemma word_oa_dist2:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4395
  "x OR y AND z = (x OR y) AND (x OR (z::'a::len0 word))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4396
  by (rule word_eqI) (auto simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4397
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4398
lemma word_and_not [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4399
  "x AND NOT x = (0::'a::len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4400
  by (rule word_eqI) (auto simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4401
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4402
lemma word_or_not [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4403
  "x OR NOT x = max_word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4404
  by (rule word_eqI) (auto simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4405
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4406
lemma word_boolean:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4407
  "boolean (op AND) (op OR) bitNOT 0 max_word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4408
  apply (rule boolean.intro)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4409
           apply (rule word_bw_assocs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4410
          apply (rule word_bw_assocs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4411
         apply (rule word_bw_comms)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4412
        apply (rule word_bw_comms)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4413
       apply (rule word_ao_dist2)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4414
      apply (rule word_oa_dist2)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4415
     apply (rule word_and_max)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4416
    apply (rule word_log_esimps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4417
   apply (rule word_and_not)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4418
  apply (rule word_or_not)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4419
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4420
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4421
interpretation word_bool_alg:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4422
  boolean "op AND" "op OR" bitNOT 0 max_word
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4423
  by (rule word_boolean)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4424
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4425
lemma word_xor_and_or:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4426
  "x XOR y = x AND NOT y OR NOT x AND (y::'a::len0 word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4427
  by (rule word_eqI) (auto simp add: word_ops_nth_size word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4428
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4429
interpretation word_bool_alg:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4430
  boolean_xor "op AND" "op OR" bitNOT 0 max_word "op XOR"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4431
  apply (rule boolean_xor.intro)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4432
   apply (rule word_boolean)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4433
  apply (rule boolean_xor_axioms.intro)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4434
  apply (rule word_xor_and_or)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4435
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4436
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4437
lemma shiftr_x_0 [iff]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4438
  "(x::'a::len0 word) >> 0 = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4439
  by (simp add: shiftr_bl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4440
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4441
lemma shiftl_x_0 [simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4442
  "(x :: 'a :: len word) << 0 = x"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4443
  by (simp add: shiftl_t2n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4444
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4445
lemma shiftl_1 [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4446
  "(1::'a::len word) << n = 2^n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4447
  by (simp add: shiftl_t2n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4448
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4449
lemma uint_lt_0 [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4450
  "uint x < 0 = False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4451
  by (simp add: linorder_not_less)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4452
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4453
lemma shiftr1_1 [simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4454
  "shiftr1 (1::'a::len word) = 0"
45995
b16070689726 declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents: 45958
diff changeset
  4455
  unfolding shiftr1_def by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4456
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4457
lemma shiftr_1[simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4458
  "(1::'a::len word) >> n = (if n = 0 then 1 else 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4459
  by (induct n) (auto simp: shiftr_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4460
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4461
lemma word_less_1 [simp]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4462
  "((x::'a::len word) < 1) = (x = 0)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4463
  by (simp add: word_less_nat_alt unat_0_iff)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4464
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4465
lemma to_bl_mask:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4466
  "to_bl (mask n :: 'a::len word) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4467
  replicate (len_of TYPE('a) - n) False @ 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4468
    replicate (min (len_of TYPE('a)) n) True"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4469
  by (simp add: mask_bl word_rep_drop min_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4470
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4471
lemma map_replicate_True:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4472
  "n = length xs \<Longrightarrow>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4473
    map (\<lambda>(x,y). x & y) (zip xs (replicate n True)) = xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4474
  by (induct xs arbitrary: n) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4475
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4476
lemma map_replicate_False:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4477
  "n = length xs \<Longrightarrow> map (\<lambda>(x,y). x & y)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4478
    (zip xs (replicate n False)) = replicate n False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4479
  by (induct xs arbitrary: n) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4480
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4481
lemma bl_and_mask:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4482
  fixes w :: "'a::len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4483
  fixes n
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4484
  defines "n' \<equiv> len_of TYPE('a) - n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4485
  shows "to_bl (w AND mask n) =  replicate n' False @ drop n' (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4486
proof - 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4487
  note [simp] = map_replicate_True map_replicate_False
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4488
  have "to_bl (w AND mask n) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4489
        map2 op & (to_bl w) (to_bl (mask n::'a::len word))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4490
    by (simp add: bl_word_and)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4491
  also
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4492
  have "to_bl w = take n' (to_bl w) @ drop n' (to_bl w)" by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4493
  also
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4494
  have "map2 op & \<dots> (to_bl (mask n::'a::len word)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4495
        replicate n' False @ drop n' (to_bl w)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4496
    unfolding to_bl_mask n'_def map2_def
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4497
    by (subst zip_append) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4498
  finally
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4499
  show ?thesis .
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4500
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4501
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4502
lemma drop_rev_takefill:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4503
  "length xs \<le> n \<Longrightarrow>
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4504
    drop (n - length xs) (rev (takefill False n (rev xs))) = xs"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4505
  by (simp add: takefill_alt rev_take)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4506
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4507
lemma map_nth_0 [simp]:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4508
  "map (op !! (0::'a::len0 word)) xs = replicate (length xs) False"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4509
  by (induct xs) auto
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4510
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4511
lemma uint_plus_if_size:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4512
  "uint (x + y) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4513
  (if uint x + uint y < 2^size x then 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4514
      uint x + uint y 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4515
   else 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4516
      uint x + uint y - 2^size x)" 
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  4517
  by (simp add: word_arith_wis int_word_uint mod_add_if_z 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4518
                word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4519
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4520
lemma unat_plus_if_size:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4521
  "unat (x + (y::'a::len word)) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4522
  (if unat x + unat y < 2^size x then 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4523
      unat x + unat y 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4524
   else 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4525
      unat x + unat y - 2^size x)" 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4526
  apply (subst word_arith_nat_defs)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4527
  apply (subst unat_of_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4528
  apply (simp add:  mod_nat_add word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4529
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4530
44938
98e05fc1ce7d removed word_neq_0_conv from simpset, it's almost never wanted.
kleing
parents: 44890
diff changeset
  4531
lemma word_neq_0_conv:
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4532
  fixes w :: "'a :: len word"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4533
  shows "(w \<noteq> 0) = (0 < w)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4534
  unfolding word_gt_0 by simp
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4535
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4536
lemma max_lt:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4537
  "unat (max a b div c) = unat (max a b) div unat (c:: 'a :: len word)"
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  4538
  by (fact unat_div)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4539
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4540
lemma uint_sub_if_size:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4541
  "uint (x - y) = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4542
  (if uint y \<le> uint x then 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4543
      uint x - uint y 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4544
   else 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4545
      uint x - uint y + 2^size x)"
55818
d8b2f50705d0 more precise imports;
haftmann
parents: 55817
diff changeset
  4546
  by (simp add: word_arith_wis int_word_uint mod_sub_if_z 
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4547
                word_size)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4548
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4549
lemma unat_sub:
40827
abbc05c20e24 code preprocessor setup for numerals on word type;
haftmann
parents: 39910
diff changeset
  4550
  "b <= a \<Longrightarrow> unat (a - b) = unat a - unat b"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4551
  by (simp add: unat_def uint_sub_if_size word_le_def nat_diff_distrib)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4552
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4553
lemmas word_less_sub1_numberof [simp] = word_less_sub1 [of "numeral w"] for w
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4554
lemmas word_le_sub1_numberof [simp] = word_le_sub1 [of "numeral w"] for w
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4555
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4556
lemma word_of_int_minus: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4557
  "word_of_int (2^len_of TYPE('a) - i) = (word_of_int (-i)::'a::len word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4558
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4559
  have x: "2^len_of TYPE('a) - i = -i + 2^len_of TYPE('a)" by simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4560
  show ?thesis
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4561
    apply (subst x)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4562
    apply (subst word_uint.Abs_norm [symmetric], subst mod_add_self2)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4563
    apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4564
    done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4565
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4566
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4567
lemmas word_of_int_inj = 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4568
  word_uint.Abs_inject [unfolded uints_num, simplified]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4569
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4570
lemma word_le_less_eq:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4571
  "(x ::'z::len word) \<le> y = (x = y \<or> x < y)"
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4572
  by (auto simp add: order_class.le_less)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4573
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4574
lemma mod_plus_cong:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4575
  assumes 1: "(b::int) = b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4576
      and 2: "x mod b' = x' mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4577
      and 3: "y mod b' = y' mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4578
      and 4: "x' + y' = z'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4579
  shows "(x + y) mod b = z' mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4580
proof -
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4581
  from 1 2[symmetric] 3[symmetric] have "(x + y) mod b = (x' mod b' + y' mod b') mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4582
    by (simp add: mod_add_eq[symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4583
  also have "\<dots> = (x' + y') mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4584
    by (simp add: mod_add_eq[symmetric])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4585
  finally show ?thesis by (simp add: 4)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4586
qed
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4587
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4588
lemma mod_minus_cong:
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4589
  assumes 1: "(b::int) = b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4590
      and 2: "x mod b' = x' mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4591
      and 3: "y mod b' = y' mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4592
      and 4: "x' - y' = z'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4593
  shows "(x - y) mod b = z' mod b'"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4594
  using assms
47168
8395d7d63fc8 mark some duplicate lemmas for deletion
huffman
parents: 47108
diff changeset
  4595
  apply (subst mod_diff_left_eq)
8395d7d63fc8 mark some duplicate lemmas for deletion
huffman
parents: 47108
diff changeset
  4596
  apply (subst mod_diff_right_eq)
8395d7d63fc8 mark some duplicate lemmas for deletion
huffman
parents: 47108
diff changeset
  4597
  apply (simp add: mod_diff_left_eq [symmetric] mod_diff_right_eq [symmetric])
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4598
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4599
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4600
lemma word_induct_less: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4601
  "\<lbrakk>P (0::'a::len word); \<And>n. \<lbrakk>n < m; P n\<rbrakk> \<Longrightarrow> P (1 + n)\<rbrakk> \<Longrightarrow> P m"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4602
  apply (cases m)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4603
  apply atomize
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4604
  apply (erule rev_mp)+
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4605
  apply (rule_tac x=m in spec)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4606
  apply (induct_tac n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4607
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4608
  apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4609
  apply (erule impE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4610
   apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4611
   apply (erule_tac x=n in allE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4612
   apply (erule impE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4613
    apply (simp add: unat_arith_simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4614
    apply (clarsimp simp: unat_of_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4615
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4616
  apply (erule_tac x="of_nat na" in allE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4617
  apply (erule impE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4618
   apply (simp add: unat_arith_simps)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4619
   apply (clarsimp simp: unat_of_nat)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4620
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4621
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4622
  
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4623
lemma word_induct: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4624
  "\<lbrakk>P (0::'a::len word); \<And>n. P n \<Longrightarrow> P (1 + n)\<rbrakk> \<Longrightarrow> P m"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4625
  by (erule word_induct_less, simp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4626
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4627
lemma word_induct2 [induct type]: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4628
  "\<lbrakk>P 0; \<And>n. \<lbrakk>1 + n \<noteq> 0; P n\<rbrakk> \<Longrightarrow> P (1 + n)\<rbrakk> \<Longrightarrow> P (n::'b::len word)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4629
  apply (rule word_induct, simp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4630
  apply (case_tac "1+n = 0", auto)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4631
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4632
55816
e8dd03241e86 cursory polishing: tuned proofs, tuned symbols, tuned headings
haftmann
parents: 55415
diff changeset
  4633
61799
4cf66f21b764 isabelle update_cartouches -c -t;
wenzelm
parents: 61649
diff changeset
  4634
subsection \<open>Recursion combinator for words\<close>
46010
ebbc2d5cd720 add section headings
huffman
parents: 46009
diff changeset
  4635
54848
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
  4636
definition word_rec :: "'a \<Rightarrow> ('b::len word \<Rightarrow> 'a \<Rightarrow> 'a) \<Rightarrow> 'b word \<Rightarrow> 'a"
a303daddebbf syntactically tuned
haftmann
parents: 54847
diff changeset
  4637
where
55415
05f5fdb8d093 renamed 'nat_{case,rec}' to '{case,rec}_nat'
blanchet
parents: 54863
diff changeset
  4638
  "word_rec forZero forSuc n = rec_nat forZero (forSuc \<circ> of_nat) (unat n)"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4639
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4640
lemma word_rec_0: "word_rec z s 0 = z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4641
  by (simp add: word_rec_def)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4642
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4643
lemma word_rec_Suc: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4644
  "1 + n \<noteq> (0::'a::len word) \<Longrightarrow> word_rec z s (1 + n) = s n (word_rec z s n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4645
  apply (simp add: word_rec_def unat_word_ariths)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4646
  apply (subst nat_mod_eq')
61649
268d88ec9087 Tweaks for "real": Removal of [iff] status for some lemmas, adding [simp] for others. Plus fixes.
paulson <lp15@cam.ac.uk>
parents: 61424
diff changeset
  4647
   apply (metis Suc_eq_plus1_left Suc_lessI of_nat_2p unat_1 unat_lt2p word_arith_nat_add)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4648
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4649
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4650
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4651
lemma word_rec_Pred: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4652
  "n \<noteq> 0 \<Longrightarrow> word_rec z s n = s (n - 1) (word_rec z s (n - 1))"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4653
  apply (rule subst[where t="n" and s="1 + (n - 1)"])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4654
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4655
  apply (subst word_rec_Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4656
   apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4657
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4658
  done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4659
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4660
lemma word_rec_in: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4661
  "f (word_rec z (\<lambda>_. f) n) = word_rec (f z) (\<lambda>_. f) n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4662
  by (induct n) (simp_all add: word_rec_0 word_rec_Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4663
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4664
lemma word_rec_in2: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4665
  "f n (word_rec z f n) = word_rec (f 0 z) (f \<circ> op + 1) n"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4666
  by (induct n) (simp_all add: word_rec_0 word_rec_Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4667
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4668
lemma word_rec_twice: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4669
  "m \<le> n \<Longrightarrow> word_rec z f n = word_rec (word_rec z f (n - m)) (f \<circ> op + (n - m)) m"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4670
apply (erule rev_mp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4671
apply (rule_tac x=z in spec)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4672
apply (rule_tac x=f in spec)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4673
apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4674
 apply (simp add: word_rec_0)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4675
apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4676
apply (rule_tac t="1 + n - m" and s="1 + (n - m)" in subst)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4677
 apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4678
apply (case_tac "1 + (n - m) = 0")
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4679
 apply (simp add: word_rec_0)
59807
22bc39064290 prefer local fixes;
wenzelm
parents: 59657
diff changeset
  4680
 apply (rule_tac f = "word_rec a b" for a b in arg_cong)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4681
 apply (rule_tac t="m" and s="m + (1 + (n - m))" in subst)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4682
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4683
 apply (simp (no_asm_use))
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4684
apply (simp add: word_rec_Suc word_rec_in2)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4685
apply (erule impE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4686
 apply uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4687
apply (drule_tac x="x \<circ> op + 1" in spec)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4688
apply (drule_tac x="x 0 xa" in spec)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4689
apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4690
apply (rule_tac t="\<lambda>a. x (1 + (n - m + a))" and s="\<lambda>a. x (1 + (n - m) + a)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4691
       in subst)
39302
d7728f65b353 renamed lemmas: ext_iff -> fun_eq_iff, set_ext_iff -> set_eq_iff, set_ext -> set_eqI
nipkow
parents: 39198
diff changeset
  4692
 apply (clarsimp simp add: fun_eq_iff)
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4693
 apply (rule_tac t="(1 + (n - m + xb))" and s="1 + (n - m) + xb" in subst)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4694
  apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4695
 apply (rule refl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4696
apply (rule refl)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4697
done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4698
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4699
lemma word_rec_id: "word_rec z (\<lambda>_. id) n = z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4700
  by (induct n) (auto simp add: word_rec_0 word_rec_Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4701
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4702
lemma word_rec_id_eq: "\<forall>m < n. f m = id \<Longrightarrow> word_rec z f n = z"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4703
apply (erule rev_mp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4704
apply (induct n)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4705
 apply (auto simp add: word_rec_0 word_rec_Suc)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4706
 apply (drule spec, erule mp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4707
 apply uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4708
apply (drule_tac x=n in spec, erule impE)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4709
 apply uint_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4710
apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4711
done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4712
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4713
lemma word_rec_max: 
58410
6d46ad54a2ab explicit separation of signed and unsigned numerals using existing lexical categories num and xnum
haftmann
parents: 58061
diff changeset
  4714
  "\<forall>m\<ge>n. m \<noteq> - 1 \<longrightarrow> f m = id \<Longrightarrow> word_rec z f (- 1) = word_rec z f n"
37660
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4715
apply (subst word_rec_twice[where n="-1" and m="-1 - n"])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4716
 apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4717
apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4718
apply (rule word_rec_id_eq)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4719
apply clarsimp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4720
apply (drule spec, rule mp, erule mp)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4721
 apply (rule word_plus_mono_right2[OF _ order_less_imp_le])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4722
  prefer 2 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4723
  apply assumption
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4724
 apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4725
apply (erule contrapos_pn)
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4726
apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4727
apply (drule arg_cong[where f="\<lambda>x. x - n"])
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4728
apply simp
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4729
done
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4730
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4731
lemma unatSuc: 
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4732
  "1 + n \<noteq> (0::'a::len word) \<Longrightarrow> unat (1 + n) = Suc (unat n)"
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4733
  by unat_arith
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4734
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4735
declare bin_to_bl_def [simp]
56e3520b68b2 one unified Word theory
haftmann
parents: 36899
diff changeset
  4736
53080
wenzelm
parents: 53062
diff changeset
  4737
ML_file "Tools/word_lib.ML"
58061
3d060f43accb renamed new SMT module from 'SMT2' to 'SMT'
blanchet
parents: 58056
diff changeset
  4738
ML_file "Tools/smt_word.ML"
36899
bcd6fce5bf06 layered SMT setup, adapted SMT clients, added further tests, made Z3 proof abstraction configurable
boehmes
parents: 35049
diff changeset
  4739
47108
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4740
hide_const (open) Word
2a1953f0d20d merged fork with new numeral representation (see NEWS)
huffman
parents: 46962
diff changeset
  4741
41060
4199fdcfa3c0 moved smt_word.ML into the directory of the Word library
boehmes
parents: 40827
diff changeset
  4742
end