author | huffman |
Fri, 06 Apr 2012 14:40:00 +0200 | |
changeset 47387 | a0f257197741 |
parent 47377 | 360d7ed4cc0f |
child 47521 | 69f95ac85c3d |
permissions | -rw-r--r-- |
29628 | 1 |
(* Title: HOL/Word/Word.thy |
46124 | 2 |
Author: Jeremy Dawson and Gerwin Klein, NICTA |
24333 | 3 |
*) |
4 |
||
37660 | 5 |
header {* A type of finite bit strings *} |
24350 | 6 |
|
29628 | 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 |
Misc_Typedef |
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
wenzelm
parents:
41060
diff
changeset
|
11 |
"~~/src/HOL/Library/Boolean_Algebra" |
64cd30d6b0b8
explicit file specifications -- avoid secondary load path;
wenzelm
parents:
41060
diff
changeset
|
12 |
Bool_List_Representation |
41060
4199fdcfa3c0
moved smt_word.ML into the directory of the Word library
boehmes
parents:
40827
diff
changeset
|
13 |
uses ("~~/src/HOL/Word/Tools/smt_word.ML") |
37660 | 14 |
begin |
15 |
||
16 |
text {* see @{text "Examples/WordExamples.thy"} for examples *} |
|
17 |
||
18 |
subsection {* Type definition *} |
|
19 |
||
45694
4a8743618257
prefer typedef without extra definition and alternative name;
wenzelm
parents:
45620
diff
changeset
|
20 |
typedef (open) 'a word = "{(0::int) ..< 2^len_of TYPE('a::len0)}" |
37660 | 21 |
morphisms uint Abs_word by auto |
22 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
23 |
lemma uint_nonnegative: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
24 |
"0 \<le> uint w" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
25 |
using word.uint [of w] by simp |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
26 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
27 |
lemma uint_bounded: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
28 |
fixes w :: "'a::len0 word" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
29 |
shows "uint w < 2 ^ len_of TYPE('a)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
30 |
using word.uint [of w] by simp |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
31 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
32 |
lemma uint_idem: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
33 |
fixes w :: "'a::len0 word" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
34 |
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
|
35 |
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
|
36 |
|
37660 | 37 |
definition word_of_int :: "int \<Rightarrow> 'a\<Colon>len0 word" where |
38 |
-- {* representation of words using unsigned or signed bins, |
|
39 |
only difference in these is the type class *} |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
40 |
"word_of_int k = Abs_word (k mod 2 ^ len_of TYPE('a))" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
41 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
42 |
lemma uint_word_of_int: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
43 |
"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
|
44 |
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
|
45 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
46 |
lemma word_of_int_uint: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
47 |
"word_of_int (uint w) = w" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
48 |
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
|
49 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
50 |
lemma word_uint_eq_iff: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
51 |
"a = b \<longleftrightarrow> uint a = uint b" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
52 |
by (simp add: uint_inject) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
53 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
54 |
lemma word_uint_eqI: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
55 |
"uint a = uint b \<Longrightarrow> a = b" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
56 |
by (simp add: word_uint_eq_iff) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
57 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
58 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
59 |
subsection {* Basic code generation setup *} |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
60 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
61 |
definition Word :: "int \<Rightarrow> 'a::len0 word" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
62 |
where |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
63 |
[code_post]: "Word = word_of_int" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
64 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
65 |
lemma [code abstype]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
66 |
"Word (uint w) = w" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
67 |
by (simp add: Word_def word_of_int_uint) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
68 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
69 |
declare uint_word_of_int [code abstract] |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
70 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
71 |
instantiation word :: (len0) equal |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
72 |
begin |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
73 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
74 |
definition equal_word :: "'a word \<Rightarrow> 'a word \<Rightarrow> bool" where |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
75 |
"equal_word k l \<longleftrightarrow> HOL.equal (uint k) (uint l)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
76 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
77 |
instance proof |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
78 |
qed (simp add: equal equal_word_def word_uint_eq_iff) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
79 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
80 |
end |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
81 |
|
37751 | 82 |
notation fcomp (infixl "\<circ>>" 60) |
83 |
notation scomp (infixl "\<circ>\<rightarrow>" 60) |
|
37660 | 84 |
|
85 |
instantiation word :: ("{len0, typerep}") random |
|
86 |
begin |
|
87 |
||
88 |
definition |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
89 |
"random_word i = Random.range i \<circ>\<rightarrow> (\<lambda>k. Pair ( |
37660 | 90 |
let j = word_of_int (Code_Numeral.int_of k) :: 'a word |
91 |
in (j, \<lambda>_::unit. Code_Evaluation.term_of j)))" |
|
92 |
||
93 |
instance .. |
|
94 |
||
95 |
end |
|
96 |
||
37751 | 97 |
no_notation fcomp (infixl "\<circ>>" 60) |
98 |
no_notation scomp (infixl "\<circ>\<rightarrow>" 60) |
|
37660 | 99 |
|
100 |
||
101 |
subsection {* Type conversions and casting *} |
|
102 |
||
103 |
definition sint :: "'a :: len word => int" where |
|
104 |
-- {* treats the most-significant-bit as a sign bit *} |
|
105 |
sint_uint: "sint w = sbintrunc (len_of TYPE ('a) - 1) (uint w)" |
|
106 |
||
107 |
definition unat :: "'a :: len0 word => nat" where |
|
108 |
"unat w = nat (uint w)" |
|
109 |
||
110 |
definition uints :: "nat => int set" where |
|
111 |
-- "the sets of integers representing the words" |
|
112 |
"uints n = range (bintrunc n)" |
|
113 |
||
114 |
definition sints :: "nat => int set" where |
|
115 |
"sints n = range (sbintrunc (n - 1))" |
|
116 |
||
117 |
definition unats :: "nat => nat set" where |
|
118 |
"unats n = {i. i < 2 ^ n}" |
|
119 |
||
120 |
definition norm_sint :: "nat => int => int" where |
|
121 |
"norm_sint n w = (w + 2 ^ (n - 1)) mod 2 ^ n - 2 ^ (n - 1)" |
|
122 |
||
123 |
definition scast :: "'a :: len word => 'b :: len word" where |
|
124 |
-- "cast a word to a different length" |
|
125 |
"scast w = word_of_int (sint w)" |
|
126 |
||
127 |
definition ucast :: "'a :: len0 word => 'b :: len0 word" where |
|
128 |
"ucast w = word_of_int (uint w)" |
|
129 |
||
130 |
instantiation word :: (len0) size |
|
131 |
begin |
|
132 |
||
133 |
definition |
|
134 |
word_size: "size (w :: 'a word) = len_of TYPE('a)" |
|
135 |
||
136 |
instance .. |
|
137 |
||
138 |
end |
|
139 |
||
140 |
definition source_size :: "('a :: len0 word => 'b) => nat" where |
|
141 |
-- "whether a cast (or other) function is to a longer or shorter length" |
|
142 |
"source_size c = (let arb = undefined ; x = c arb in size arb)" |
|
143 |
||
144 |
definition target_size :: "('a => 'b :: len0 word) => nat" where |
|
145 |
"target_size c = size (c undefined)" |
|
146 |
||
147 |
definition is_up :: "('a :: len0 word => 'b :: len0 word) => bool" where |
|
148 |
"is_up c \<longleftrightarrow> source_size c <= target_size c" |
|
149 |
||
150 |
definition is_down :: "('a :: len0 word => 'b :: len0 word) => bool" where |
|
151 |
"is_down c \<longleftrightarrow> target_size c <= source_size c" |
|
152 |
||
153 |
definition of_bl :: "bool list => 'a :: len0 word" where |
|
154 |
"of_bl bl = word_of_int (bl_to_bin bl)" |
|
155 |
||
156 |
definition to_bl :: "'a :: len0 word => bool list" where |
|
157 |
"to_bl w = bin_to_bl (len_of TYPE ('a)) (uint w)" |
|
158 |
||
159 |
definition word_reverse :: "'a :: len0 word => 'a word" where |
|
160 |
"word_reverse w = of_bl (rev (to_bl w))" |
|
161 |
||
162 |
definition word_int_case :: "(int => 'b) => ('a :: len0 word) => 'b" where |
|
163 |
"word_int_case f w = f (uint w)" |
|
164 |
||
165 |
translations |
|
46136
a3d4cf5203f5
recovered case syntax for of_int, also with source positions (appears to be unused nonetheless);
wenzelm
parents:
46124
diff
changeset
|
166 |
"case x of XCONST of_int y => b" == "CONST word_int_case (%y. b) x" |
a3d4cf5203f5
recovered case syntax for of_int, also with source positions (appears to be unused nonetheless);
wenzelm
parents:
46124
diff
changeset
|
167 |
"case x of (XCONST of_int :: 'a) y => b" => "CONST word_int_case (%y. b) x" |
37660 | 168 |
|
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
169 |
subsection {* Type-definition locale instantiations *} |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
170 |
|
45805 | 171 |
lemma word_size_gt_0 [iff]: "0 < size (w::'a::len word)" |
172 |
by (fact xtr1 [OF word_size len_gt_0]) |
|
173 |
||
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
174 |
lemmas lens_gt_0 = word_size_gt_0 len_gt_0 |
45604 | 175 |
lemmas lens_not_0 [iff] = lens_gt_0 [THEN gr_implies_not0] |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
176 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
177 |
lemma uints_num: "uints n = {i. 0 \<le> i \<and> i < 2 ^ n}" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
178 |
by (simp add: uints_def range_bintrunc) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
179 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
180 |
lemma sints_num: "sints n = {i. - (2 ^ (n - 1)) \<le> i \<and> i < 2 ^ (n - 1)}" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
181 |
by (simp add: sints_def range_sbintrunc) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
182 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
183 |
lemma |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
184 |
uint_0:"0 <= uint x" and |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
185 |
uint_lt: "uint (x::'a::len0 word) < 2 ^ len_of TYPE('a)" |
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
186 |
by (auto simp: uint [unfolded atLeastLessThan_iff]) |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
187 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
188 |
lemma uint_mod_same: |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
189 |
"uint x mod 2 ^ len_of TYPE('a) = uint (x::'a::len0 word)" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
190 |
by (simp add: int_mod_eq uint_lt uint_0) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
191 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
192 |
lemma td_ext_uint: |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
193 |
"td_ext (uint :: 'a word => int) word_of_int (uints (len_of TYPE('a::len0))) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
194 |
(%w::int. w mod 2 ^ len_of TYPE('a))" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
195 |
apply (unfold td_ext_def') |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
196 |
apply (simp add: uints_num word_of_int_def bintrunc_mod2p) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
197 |
apply (simp add: uint_mod_same uint_0 uint_lt |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
198 |
word.uint_inverse word.Abs_word_inverse int_mod_lem) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
199 |
done |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
200 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
201 |
interpretation word_uint: |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
202 |
td_ext "uint::'a::len0 word \<Rightarrow> int" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
203 |
word_of_int |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
204 |
"uints (len_of TYPE('a::len0))" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
205 |
"\<lambda>w. w mod 2 ^ len_of TYPE('a::len0)" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
206 |
by (rule td_ext_uint) |
46013 | 207 |
|
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
208 |
lemmas td_uint = word_uint.td_thm |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
209 |
|
46013 | 210 |
lemmas int_word_uint = word_uint.eq_norm |
211 |
||
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
212 |
lemmas td_ext_ubin = td_ext_uint |
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
213 |
[unfolded len_gt_0 no_bintr_alt1 [symmetric]] |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
214 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
215 |
interpretation word_ubin: |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
216 |
td_ext "uint::'a::len0 word \<Rightarrow> int" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
217 |
word_of_int |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
218 |
"uints (len_of TYPE('a::len0))" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
219 |
"bintrunc (len_of TYPE('a::len0))" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
220 |
by (rule td_ext_ubin) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
221 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
222 |
lemma split_word_all: |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
223 |
"(\<And>x::'a::len0 word. PROP P x) \<equiv> (\<And>x. PROP P (word_of_int x))" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
224 |
proof |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
225 |
fix x :: "'a word" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
226 |
assume "\<And>x. PROP P (word_of_int x)" |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
227 |
hence "PROP P (word_of_int (uint x))" . |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
228 |
thus "PROP P x" by simp |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
229 |
qed |
37660 | 230 |
|
47372 | 231 |
subsection {* Correspondence relation for theorem transfer *} |
232 |
||
233 |
definition cr_word :: "int \<Rightarrow> 'a::len0 word \<Rightarrow> bool" |
|
234 |
where "cr_word \<equiv> (\<lambda>x y. word_of_int x = y)" |
|
235 |
||
47374
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
236 |
lemma Quotient_word: |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
237 |
"Quotient (\<lambda>x y. bintrunc (len_of TYPE('a)) x = bintrunc (len_of TYPE('a)) y) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
238 |
word_of_int uint (cr_word :: _ \<Rightarrow> 'a::len0 word \<Rightarrow> bool)" |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
239 |
unfolding Quotient_alt_def cr_word_def |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
240 |
by (simp add: word_ubin.norm_eq_iff) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
241 |
|
47377
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
242 |
lemma reflp_word: |
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
243 |
"reflp (\<lambda>x y. bintrunc (len_of TYPE('a::len0)) x = bintrunc (len_of TYPE('a)) y)" |
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
244 |
by (simp add: reflp_def) |
47374
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
245 |
|
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
246 |
local_setup {* |
47377
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
247 |
Lifting_Setup.setup_lifting_infr @{thm Quotient_word} @{thm reflp_word} |
47374
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
248 |
*} |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
249 |
|
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
250 |
text {* TODO: The next several lemmas could be generated automatically. *} |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
251 |
|
47372 | 252 |
lemma bi_total_cr_word [transfer_rule]: "bi_total cr_word" |
47377
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
253 |
using Quotient_word reflp_word by (rule Quotient_bi_total) |
47372 | 254 |
|
255 |
lemma right_unique_cr_word [transfer_rule]: "right_unique cr_word" |
|
47377
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
256 |
using Quotient_word by (rule Quotient_right_unique) |
47372 | 257 |
|
258 |
lemma word_eq_transfer [transfer_rule]: |
|
259 |
"(fun_rel cr_word (fun_rel cr_word op =)) |
|
260 |
(\<lambda>x y. bintrunc (len_of TYPE('a)) x = bintrunc (len_of TYPE('a)) y) |
|
261 |
(op = :: 'a::len0 word \<Rightarrow> 'a word \<Rightarrow> bool)" |
|
47377
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
262 |
using Quotient_word by (rule Quotient_rel_eq_transfer) |
47372 | 263 |
|
264 |
lemma word_of_int_transfer [transfer_rule]: |
|
265 |
"(fun_rel op = cr_word) (\<lambda>x. x) word_of_int" |
|
47377
360d7ed4cc0f
use standard quotient lemmas to generate transfer rules
huffman
parents:
47374
diff
changeset
|
266 |
using Quotient_word reflp_word by (rule Quotient_id_abs_transfer) |
47372 | 267 |
|
268 |
lemma uint_transfer [transfer_rule]: |
|
269 |
"(fun_rel cr_word op =) (bintrunc (len_of TYPE('a))) |
|
270 |
(uint :: 'a::len0 word \<Rightarrow> int)" |
|
271 |
unfolding fun_rel_def cr_word_def by (simp add: word_ubin.eq_norm) |
|
272 |
||
37660 | 273 |
subsection "Arithmetic operations" |
274 |
||
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
275 |
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
|
276 |
by (metis bintr_ariths(6)) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
277 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
278 |
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
|
279 |
by (metis bintr_ariths(7)) |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
280 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
281 |
instantiation word :: (len0) "{neg_numeral, Divides.div, comm_monoid_mult, comm_ring}" |
37660 | 282 |
begin |
283 |
||
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
284 |
lift_definition zero_word :: "'a word" is "0" . |
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
285 |
|
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
286 |
lift_definition one_word :: "'a word" is "1" . |
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
287 |
|
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
288 |
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
|
289 |
by (metis bintr_ariths(2)) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
290 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
291 |
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
|
292 |
by (metis bintr_ariths(3)) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
293 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
294 |
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
|
295 |
by (metis bintr_ariths(5)) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
296 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
297 |
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
|
298 |
by (metis bintr_ariths(4)) |
37660 | 299 |
|
300 |
definition |
|
301 |
word_div_def: "a div b = word_of_int (uint a div uint b)" |
|
302 |
||
303 |
definition |
|
304 |
word_mod_def: "a mod b = word_of_int (uint a mod uint b)" |
|
305 |
||
47374
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
306 |
instance |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
307 |
by default (transfer, simp add: algebra_simps)+ |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
308 |
|
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
309 |
end |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
310 |
|
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
311 |
text {* Legacy theorems: *} |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
312 |
|
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
313 |
lemma word_arith_wis: shows |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
314 |
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
|
315 |
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
|
316 |
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
|
317 |
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
|
318 |
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
|
319 |
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
|
320 |
word_0_wi: "0 = word_of_int 0" and |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
321 |
word_1_wi: "1 = word_of_int 1" |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
322 |
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
|
323 |
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
|
324 |
by simp_all |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
325 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
326 |
lemmas arths = |
45604 | 327 |
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
|
328 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
329 |
lemma wi_homs: |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
330 |
shows |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
331 |
wi_hom_add: "word_of_int a + word_of_int b = word_of_int (a + b)" and |
46013 | 332 |
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
|
333 |
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
|
334 |
wi_hom_neg: "- word_of_int a = word_of_int (- a)" and |
46000 | 335 |
wi_hom_succ: "word_succ (word_of_int a) = word_of_int (a + 1)" and |
336 |
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
|
337 |
by (transfer, simp)+ |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
338 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
339 |
lemmas wi_hom_syms = wi_homs [symmetric] |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
340 |
|
46013 | 341 |
lemmas word_of_int_homs = wi_homs word_0_wi word_1_wi |
46009 | 342 |
|
343 |
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
|
344 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
345 |
instance word :: (len) comm_ring_1 |
45810 | 346 |
proof |
347 |
have "0 < len_of TYPE('a)" by (rule len_gt_0) |
|
348 |
then show "(0::'a word) \<noteq> 1" |
|
47372 | 349 |
by - (transfer, auto simp add: gr0_conv_Suc) |
45810 | 350 |
qed |
45545
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
351 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
352 |
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
|
353 |
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
|
354 |
|
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
355 |
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
|
356 |
apply (rule ext) |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
357 |
apply (case_tac x rule: int_diff_cases) |
46013 | 358 |
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
|
359 |
done |
26aebb8ac9c1
Word.thy: rearrange to instantiate arithmetic classes together with arithmetic operations
huffman
parents:
45544
diff
changeset
|
360 |
|
37660 | 361 |
definition udvd :: "'a::len word => 'a::len word => bool" (infixl "udvd" 50) where |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
362 |
"a udvd b = (EX n>=0. uint b = n * uint a)" |
37660 | 363 |
|
45547 | 364 |
|
365 |
subsection "Ordering" |
|
366 |
||
367 |
instantiation word :: (len0) linorder |
|
368 |
begin |
|
369 |
||
37660 | 370 |
definition |
371 |
word_le_def: "a \<le> b \<longleftrightarrow> uint a \<le> uint b" |
|
372 |
||
373 |
definition |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
374 |
word_less_def: "a < b \<longleftrightarrow> uint a < uint b" |
37660 | 375 |
|
45547 | 376 |
instance |
377 |
by default (auto simp: word_less_def word_le_def) |
|
378 |
||
379 |
end |
|
380 |
||
37660 | 381 |
definition word_sle :: "'a :: len word => 'a word => bool" ("(_/ <=s _)" [50, 51] 50) where |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
382 |
"a <=s b = (sint a <= sint b)" |
37660 | 383 |
|
384 |
definition word_sless :: "'a :: len word => 'a word => bool" ("(_/ <s _)" [50, 51] 50) where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
385 |
"(x <s y) = (x <=s y & x ~= y)" |
37660 | 386 |
|
387 |
||
388 |
subsection "Bit-wise operations" |
|
389 |
||
390 |
instantiation word :: (len0) bits |
|
391 |
begin |
|
392 |
||
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
393 |
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
|
394 |
by (metis bin_trunc_not) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
395 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
396 |
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
|
397 |
by (metis bin_trunc_and) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
398 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
399 |
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
|
400 |
by (metis bin_trunc_or) |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
401 |
|
47387
a0f257197741
remove now-unnecessary type annotations from lift_definition commands
huffman
parents:
47377
diff
changeset
|
402 |
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
|
403 |
by (metis bin_trunc_xor) |
37660 | 404 |
|
405 |
definition |
|
406 |
word_test_bit_def: "test_bit a = bin_nth (uint a)" |
|
407 |
||
408 |
definition |
|
409 |
word_set_bit_def: "set_bit a n x = |
|
410 |
word_of_int (bin_sc n (If x 1 0) (uint a))" |
|
411 |
||
412 |
definition |
|
413 |
word_set_bits_def: "(BITS n. f n) = of_bl (bl_of_nth (len_of TYPE ('a)) f)" |
|
414 |
||
415 |
definition |
|
416 |
word_lsb_def: "lsb a \<longleftrightarrow> bin_last (uint a) = 1" |
|
417 |
||
418 |
definition shiftl1 :: "'a word \<Rightarrow> 'a word" where |
|
419 |
"shiftl1 w = word_of_int (uint w BIT 0)" |
|
420 |
||
421 |
definition shiftr1 :: "'a word \<Rightarrow> 'a word" where |
|
422 |
-- "shift right as unsigned or as signed, ie logical or arithmetic" |
|
423 |
"shiftr1 w = word_of_int (bin_rest (uint w))" |
|
424 |
||
425 |
definition |
|
426 |
shiftl_def: "w << n = (shiftl1 ^^ n) w" |
|
427 |
||
428 |
definition |
|
429 |
shiftr_def: "w >> n = (shiftr1 ^^ n) w" |
|
430 |
||
431 |
instance .. |
|
432 |
||
433 |
end |
|
434 |
||
47374
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
435 |
lemma shows |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
436 |
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
|
437 |
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
|
438 |
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
|
439 |
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
|
440 |
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
|
441 |
by simp_all |
9475d524bafb
set up and use lift_definition for word operations
huffman
parents:
47372
diff
changeset
|
442 |
|
37660 | 443 |
instantiation word :: (len) bitss |
444 |
begin |
|
445 |
||
446 |
definition |
|
447 |
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
|
448 |
"msb a \<longleftrightarrow> bin_sign (sint a) = -1" |
37660 | 449 |
|
450 |
instance .. |
|
451 |
||
452 |
end |
|
453 |
||
454 |
definition setBit :: "'a :: len0 word => nat => 'a word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
455 |
"setBit w n = set_bit w n True" |
37660 | 456 |
|
457 |
definition clearBit :: "'a :: len0 word => nat => 'a word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
458 |
"clearBit w n = set_bit w n False" |
37660 | 459 |
|
460 |
||
461 |
subsection "Shift operations" |
|
462 |
||
463 |
definition sshiftr1 :: "'a :: len word => 'a word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
464 |
"sshiftr1 w = word_of_int (bin_rest (sint w))" |
37660 | 465 |
|
466 |
definition bshiftr1 :: "bool => 'a :: len word => 'a word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
467 |
"bshiftr1 b w = of_bl (b # butlast (to_bl w))" |
37660 | 468 |
|
469 |
definition sshiftr :: "'a :: len word => nat => 'a word" (infixl ">>>" 55) where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
470 |
"w >>> n = (sshiftr1 ^^ n) w" |
37660 | 471 |
|
472 |
definition mask :: "nat => 'a::len word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
473 |
"mask n = (1 << n) - 1" |
37660 | 474 |
|
475 |
definition revcast :: "'a :: len0 word => 'b :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
476 |
"revcast w = of_bl (takefill False (len_of TYPE('b)) (to_bl w))" |
37660 | 477 |
|
478 |
definition slice1 :: "nat => 'a :: len0 word => 'b :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
479 |
"slice1 n w = of_bl (takefill False n (to_bl w))" |
37660 | 480 |
|
481 |
definition slice :: "nat => 'a :: len0 word => 'b :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
482 |
"slice n w = slice1 (size w - n) w" |
37660 | 483 |
|
484 |
||
485 |
subsection "Rotation" |
|
486 |
||
487 |
definition rotater1 :: "'a list => 'a list" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
488 |
"rotater1 ys = |
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
489 |
(case ys of [] => [] | x # xs => last ys # butlast ys)" |
37660 | 490 |
|
491 |
definition rotater :: "nat => 'a list => 'a list" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
492 |
"rotater n = rotater1 ^^ n" |
37660 | 493 |
|
494 |
definition word_rotr :: "nat => 'a :: len0 word => 'a :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
495 |
"word_rotr n w = of_bl (rotater n (to_bl w))" |
37660 | 496 |
|
497 |
definition word_rotl :: "nat => 'a :: len0 word => 'a :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
498 |
"word_rotl n w = of_bl (rotate n (to_bl w))" |
37660 | 499 |
|
500 |
definition word_roti :: "int => 'a :: len0 word => 'a :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
501 |
"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
|
502 |
else word_rotl (nat (- i)) w)" |
37660 | 503 |
|
504 |
||
505 |
subsection "Split and cat operations" |
|
506 |
||
507 |
definition word_cat :: "'a :: len0 word => 'b :: len0 word => 'c :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
508 |
"word_cat a b = word_of_int (bin_cat (uint a) (len_of TYPE ('b)) (uint b))" |
37660 | 509 |
|
510 |
definition word_split :: "'a :: len0 word => ('b :: len0 word) * ('c :: len0 word)" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
511 |
"word_split a = |
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
512 |
(case bin_split (len_of TYPE ('c)) (uint a) of |
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
513 |
(u, v) => (word_of_int u, word_of_int v))" |
37660 | 514 |
|
515 |
definition word_rcat :: "'a :: len0 word list => 'b :: len0 word" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
516 |
"word_rcat ws = |
37660 | 517 |
word_of_int (bin_rcat (len_of TYPE ('a)) (map uint ws))" |
518 |
||
519 |
definition word_rsplit :: "'a :: len0 word => 'b :: len word list" where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
520 |
"word_rsplit w = |
37660 | 521 |
map word_of_int (bin_rsplit (len_of TYPE ('b)) (len_of TYPE ('a), uint w))" |
522 |
||
523 |
definition max_word :: "'a::len word" -- "Largest representable machine integer." where |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
524 |
"max_word = word_of_int (2 ^ len_of TYPE('a) - 1)" |
37660 | 525 |
|
526 |
primrec of_bool :: "bool \<Rightarrow> 'a::len word" where |
|
527 |
"of_bool False = 0" |
|
528 |
| "of_bool True = 1" |
|
529 |
||
45805 | 530 |
(* FIXME: only provide one theorem name *) |
37660 | 531 |
lemmas of_nth_def = word_set_bits_def |
532 |
||
46010 | 533 |
subsection {* Theorems about typedefs *} |
534 |
||
37660 | 535 |
lemma sint_sbintrunc': |
536 |
"sint (word_of_int bin :: 'a word) = |
|
537 |
(sbintrunc (len_of TYPE ('a :: len) - 1) bin)" |
|
538 |
unfolding sint_uint |
|
539 |
by (auto simp: word_ubin.eq_norm sbintrunc_bintrunc_lt) |
|
540 |
||
541 |
lemma uint_sint: |
|
542 |
"uint w = bintrunc (len_of TYPE('a)) (sint (w :: 'a :: len word))" |
|
543 |
unfolding sint_uint by (auto simp: bintrunc_sbintrunc_le) |
|
544 |
||
46057 | 545 |
lemma bintr_uint: |
546 |
fixes w :: "'a::len0 word" |
|
547 |
shows "len_of TYPE('a) \<le> n \<Longrightarrow> bintrunc n (uint w) = uint w" |
|
37660 | 548 |
apply (subst word_ubin.norm_Rep [symmetric]) |
549 |
apply (simp only: bintrunc_bintrunc_min word_size) |
|
550 |
apply (simp add: min_max.inf_absorb2) |
|
551 |
done |
|
552 |
||
46057 | 553 |
lemma wi_bintr: |
554 |
"len_of TYPE('a::len0) \<le> n \<Longrightarrow> |
|
555 |
word_of_int (bintrunc n w) = (word_of_int w :: 'a word)" |
|
37660 | 556 |
by (clarsimp simp add: word_ubin.norm_eq_iff [symmetric] min_max.inf_absorb1) |
557 |
||
558 |
lemma td_ext_sbin: |
|
559 |
"td_ext (sint :: 'a word => int) word_of_int (sints (len_of TYPE('a::len))) |
|
560 |
(sbintrunc (len_of TYPE('a) - 1))" |
|
561 |
apply (unfold td_ext_def' sint_uint) |
|
562 |
apply (simp add : word_ubin.eq_norm) |
|
563 |
apply (cases "len_of TYPE('a)") |
|
564 |
apply (auto simp add : sints_def) |
|
565 |
apply (rule sym [THEN trans]) |
|
566 |
apply (rule word_ubin.Abs_norm) |
|
567 |
apply (simp only: bintrunc_sbintrunc) |
|
568 |
apply (drule sym) |
|
569 |
apply simp |
|
570 |
done |
|
571 |
||
572 |
lemmas td_ext_sint = td_ext_sbin |
|
573 |
[simplified len_gt_0 no_sbintr_alt2 Suc_pred' [symmetric]] |
|
574 |
||
575 |
(* We do sint before sbin, before sint is the user version |
|
576 |
and interpretations do not produce thm duplicates. I.e. |
|
577 |
we get the name word_sint.Rep_eqD, but not word_sbin.Req_eqD, |
|
578 |
because the latter is the same thm as the former *) |
|
579 |
interpretation word_sint: |
|
580 |
td_ext "sint ::'a::len word => int" |
|
581 |
word_of_int |
|
582 |
"sints (len_of TYPE('a::len))" |
|
583 |
"%w. (w + 2^(len_of TYPE('a::len) - 1)) mod 2^len_of TYPE('a::len) - |
|
584 |
2 ^ (len_of TYPE('a::len) - 1)" |
|
585 |
by (rule td_ext_sint) |
|
586 |
||
587 |
interpretation word_sbin: |
|
588 |
td_ext "sint ::'a::len word => int" |
|
589 |
word_of_int |
|
590 |
"sints (len_of TYPE('a::len))" |
|
591 |
"sbintrunc (len_of TYPE('a::len) - 1)" |
|
592 |
by (rule td_ext_sbin) |
|
593 |
||
45604 | 594 |
lemmas int_word_sint = td_ext_sint [THEN td_ext.eq_norm] |
37660 | 595 |
|
596 |
lemmas td_sint = word_sint.td |
|
597 |
||
598 |
lemma to_bl_def': |
|
599 |
"(to_bl :: 'a :: len0 word => bool list) = |
|
600 |
bin_to_bl (len_of TYPE('a)) o uint" |
|
44762 | 601 |
by (auto simp: to_bl_def) |
37660 | 602 |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
603 |
lemmas word_reverse_no_def [simp] = word_reverse_def [of "numeral w"] for w |
37660 | 604 |
|
45805 | 605 |
lemma uints_mod: "uints n = range (\<lambda>w. w mod 2 ^ n)" |
606 |
by (fact uints_def [unfolded no_bintr_alt1]) |
|
607 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
608 |
lemma word_numeral_alt: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
609 |
"numeral b = word_of_int (numeral b)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
610 |
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
|
611 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
612 |
declare word_numeral_alt [symmetric, code_abbrev] |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
613 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
614 |
lemma word_neg_numeral_alt: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
615 |
"neg_numeral b = word_of_int (neg_numeral b)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
616 |
by (simp only: neg_numeral_def word_numeral_alt wi_hom_neg) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
617 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
618 |
declare word_neg_numeral_alt [symmetric, code_abbrev] |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
619 |
|
47372 | 620 |
lemma word_numeral_transfer [transfer_rule]: |
621 |
"(fun_rel op = cr_word) numeral numeral" |
|
622 |
"(fun_rel op = cr_word) neg_numeral neg_numeral" |
|
623 |
unfolding fun_rel_def cr_word_def word_numeral_alt word_neg_numeral_alt |
|
624 |
by simp_all |
|
625 |
||
45805 | 626 |
lemma uint_bintrunc [simp]: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
627 |
"uint (numeral bin :: 'a word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
628 |
bintrunc (len_of TYPE ('a :: len0)) (numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
629 |
unfolding word_numeral_alt by (rule word_ubin.eq_norm) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
630 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
631 |
lemma uint_bintrunc_neg [simp]: "uint (neg_numeral bin :: 'a word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
632 |
bintrunc (len_of TYPE ('a :: len0)) (neg_numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
633 |
by (simp only: word_neg_numeral_alt word_ubin.eq_norm) |
37660 | 634 |
|
45805 | 635 |
lemma sint_sbintrunc [simp]: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
636 |
"sint (numeral bin :: 'a word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
637 |
sbintrunc (len_of TYPE ('a :: len) - 1) (numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
638 |
by (simp only: word_numeral_alt word_sbin.eq_norm) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
639 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
640 |
lemma sint_sbintrunc_neg [simp]: "sint (neg_numeral bin :: 'a word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
641 |
sbintrunc (len_of TYPE ('a :: len) - 1) (neg_numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
642 |
by (simp only: word_neg_numeral_alt word_sbin.eq_norm) |
37660 | 643 |
|
45805 | 644 |
lemma unat_bintrunc [simp]: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
645 |
"unat (numeral bin :: 'a :: len0 word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
646 |
nat (bintrunc (len_of TYPE('a)) (numeral bin))" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
647 |
by (simp only: unat_def uint_bintrunc) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
648 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
649 |
lemma unat_bintrunc_neg [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
650 |
"unat (neg_numeral bin :: 'a :: len0 word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
651 |
nat (bintrunc (len_of TYPE('a)) (neg_numeral bin))" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
652 |
by (simp only: unat_def uint_bintrunc_neg) |
37660 | 653 |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
654 |
lemma size_0_eq: "size (w :: 'a :: len0 word) = 0 \<Longrightarrow> v = w" |
37660 | 655 |
apply (unfold word_size) |
656 |
apply (rule word_uint.Rep_eqD) |
|
657 |
apply (rule box_equals) |
|
658 |
defer |
|
659 |
apply (rule word_ubin.norm_Rep)+ |
|
660 |
apply simp |
|
661 |
done |
|
662 |
||
45805 | 663 |
lemma uint_ge_0 [iff]: "0 \<le> uint (x::'a::len0 word)" |
664 |
using word_uint.Rep [of x] by (simp add: uints_num) |
|
665 |
||
666 |
lemma uint_lt2p [iff]: "uint (x::'a::len0 word) < 2 ^ len_of TYPE('a)" |
|
667 |
using word_uint.Rep [of x] by (simp add: uints_num) |
|
668 |
||
669 |
lemma sint_ge: "- (2 ^ (len_of TYPE('a) - 1)) \<le> sint (x::'a::len word)" |
|
670 |
using word_sint.Rep [of x] by (simp add: sints_num) |
|
671 |
||
672 |
lemma sint_lt: "sint (x::'a::len word) < 2 ^ (len_of TYPE('a) - 1)" |
|
673 |
using word_sint.Rep [of x] by (simp add: sints_num) |
|
37660 | 674 |
|
675 |
lemma sign_uint_Pls [simp]: |
|
46604
9f9e85264e4d
make uses of bin_sign respect int/bin distinction
huffman
parents:
46603
diff
changeset
|
676 |
"bin_sign (uint x) = 0" |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
677 |
by (simp add: sign_Pls_ge_0) |
37660 | 678 |
|
45805 | 679 |
lemma uint_m2p_neg: "uint (x::'a::len0 word) - 2 ^ len_of TYPE('a) < 0" |
680 |
by (simp only: diff_less_0_iff_less uint_lt2p) |
|
681 |
||
682 |
lemma uint_m2p_not_non_neg: |
|
683 |
"\<not> 0 \<le> uint (x::'a::len0 word) - 2 ^ len_of TYPE('a)" |
|
684 |
by (simp only: not_le uint_m2p_neg) |
|
37660 | 685 |
|
686 |
lemma lt2p_lem: |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
687 |
"len_of TYPE('a) <= n \<Longrightarrow> uint (w :: 'a :: len0 word) < 2 ^ n" |
37660 | 688 |
by (rule xtr8 [OF _ uint_lt2p]) simp |
689 |
||
45805 | 690 |
lemma uint_le_0_iff [simp]: "uint x \<le> 0 \<longleftrightarrow> uint x = 0" |
691 |
by (fact uint_ge_0 [THEN leD, THEN linorder_antisym_conv1]) |
|
37660 | 692 |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
693 |
lemma uint_nat: "uint w = int (unat w)" |
37660 | 694 |
unfolding unat_def by auto |
695 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
696 |
lemma uint_numeral: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
697 |
"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
|
698 |
unfolding word_numeral_alt |
37660 | 699 |
by (simp only: int_word_uint) |
700 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
701 |
lemma uint_neg_numeral: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
702 |
"uint (neg_numeral b :: 'a :: len0 word) = neg_numeral b mod 2 ^ len_of TYPE('a)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
703 |
unfolding word_neg_numeral_alt |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
704 |
by (simp only: int_word_uint) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
705 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
706 |
lemma unat_numeral: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
707 |
"unat (numeral b::'a::len0 word) = numeral b mod 2 ^ len_of TYPE ('a)" |
37660 | 708 |
apply (unfold unat_def) |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
709 |
apply (clarsimp simp only: uint_numeral) |
37660 | 710 |
apply (rule nat_mod_distrib [THEN trans]) |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
711 |
apply (rule zero_le_numeral) |
37660 | 712 |
apply (simp_all add: nat_power_eq) |
713 |
done |
|
714 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
715 |
lemma sint_numeral: "sint (numeral b :: 'a :: len word) = (numeral b + |
37660 | 716 |
2 ^ (len_of TYPE('a) - 1)) mod 2 ^ len_of TYPE('a) - |
717 |
2 ^ (len_of TYPE('a) - 1)" |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
718 |
unfolding word_numeral_alt by (rule int_word_sint) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
719 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
720 |
lemma word_of_int_0 [simp, code_post]: "word_of_int 0 = 0" |
45958 | 721 |
unfolding word_0_wi .. |
722 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
723 |
lemma word_of_int_1 [simp, code_post]: "word_of_int 1 = 1" |
45958 | 724 |
unfolding word_1_wi .. |
725 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
726 |
lemma word_of_int_numeral [simp] : |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
727 |
"(word_of_int (numeral bin) :: 'a :: len0 word) = (numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
728 |
unfolding word_numeral_alt .. |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
729 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
730 |
lemma word_of_int_neg_numeral [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
731 |
"(word_of_int (neg_numeral bin) :: 'a :: len0 word) = (neg_numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
732 |
unfolding neg_numeral_def word_numeral_alt wi_hom_syms .. |
37660 | 733 |
|
734 |
lemma word_int_case_wi: |
|
735 |
"word_int_case f (word_of_int i :: 'b word) = |
|
736 |
f (i mod 2 ^ len_of TYPE('b::len0))" |
|
737 |
unfolding word_int_case_def by (simp add: word_uint.eq_norm) |
|
738 |
||
739 |
lemma word_int_split: |
|
740 |
"P (word_int_case f x) = |
|
741 |
(ALL i. x = (word_of_int i :: 'b :: len0 word) & |
|
742 |
0 <= i & i < 2 ^ len_of TYPE('b) --> P (f i))" |
|
743 |
unfolding word_int_case_def |
|
744 |
by (auto simp: word_uint.eq_norm int_mod_eq') |
|
745 |
||
746 |
lemma word_int_split_asm: |
|
747 |
"P (word_int_case f x) = |
|
748 |
(~ (EX n. x = (word_of_int n :: 'b::len0 word) & |
|
749 |
0 <= n & n < 2 ^ len_of TYPE('b::len0) & ~ P (f n)))" |
|
750 |
unfolding word_int_case_def |
|
751 |
by (auto simp: word_uint.eq_norm int_mod_eq') |
|
45805 | 752 |
|
45604 | 753 |
lemmas uint_range' = word_uint.Rep [unfolded uints_num mem_Collect_eq] |
754 |
lemmas sint_range' = word_sint.Rep [unfolded One_nat_def sints_num mem_Collect_eq] |
|
37660 | 755 |
|
756 |
lemma uint_range_size: "0 <= uint w & uint w < 2 ^ size w" |
|
757 |
unfolding word_size by (rule uint_range') |
|
758 |
||
759 |
lemma sint_range_size: |
|
760 |
"- (2 ^ (size w - Suc 0)) <= sint w & sint w < 2 ^ (size w - Suc 0)" |
|
761 |
unfolding word_size by (rule sint_range') |
|
762 |
||
45805 | 763 |
lemma sint_above_size: "2 ^ (size (w::'a::len word) - 1) \<le> x \<Longrightarrow> sint w < x" |
764 |
unfolding word_size by (rule less_le_trans [OF sint_lt]) |
|
765 |
||
766 |
lemma sint_below_size: |
|
767 |
"x \<le> - (2 ^ (size (w::'a::len word) - 1)) \<Longrightarrow> x \<le> sint w" |
|
768 |
unfolding word_size by (rule order_trans [OF _ sint_ge]) |
|
37660 | 769 |
|
46010 | 770 |
subsection {* Testing bits *} |
771 |
||
37660 | 772 |
lemma test_bit_eq_iff: "(test_bit (u::'a::len0 word) = test_bit v) = (u = v)" |
773 |
unfolding word_test_bit_def by (simp add: bin_nth_eq_iff) |
|
774 |
||
775 |
lemma test_bit_size [rule_format] : "(w::'a::len0 word) !! n --> n < size w" |
|
776 |
apply (unfold word_test_bit_def) |
|
777 |
apply (subst word_ubin.norm_Rep [symmetric]) |
|
778 |
apply (simp only: nth_bintr word_size) |
|
779 |
apply fast |
|
780 |
done |
|
781 |
||
46021 | 782 |
lemma word_eq_iff: |
783 |
fixes x y :: "'a::len0 word" |
|
784 |
shows "x = y \<longleftrightarrow> (\<forall>n<len_of TYPE('a). x !! n = y !! n)" |
|
785 |
unfolding uint_inject [symmetric] bin_eq_iff word_test_bit_def [symmetric] |
|
786 |
by (metis test_bit_size [unfolded word_size]) |
|
787 |
||
46023
fad87bb608fc
restate some lemmas to respect int/bin distinction
huffman
parents:
46022
diff
changeset
|
788 |
lemma word_eqI [rule_format]: |
37660 | 789 |
fixes u :: "'a::len0 word" |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
790 |
shows "(ALL n. n < size u --> u !! n = v !! n) \<Longrightarrow> u = v" |
46021 | 791 |
by (simp add: word_size word_eq_iff) |
37660 | 792 |
|
45805 | 793 |
lemma word_eqD: "(u::'a::len0 word) = v \<Longrightarrow> u !! x = v !! x" |
794 |
by simp |
|
37660 | 795 |
|
796 |
lemma test_bit_bin': "w !! n = (n < size w & bin_nth (uint w) n)" |
|
797 |
unfolding word_test_bit_def word_size |
|
798 |
by (simp add: nth_bintr [symmetric]) |
|
799 |
||
800 |
lemmas test_bit_bin = test_bit_bin' [unfolded word_size] |
|
801 |
||
46057 | 802 |
lemma bin_nth_uint_imp: |
803 |
"bin_nth (uint (w::'a::len0 word)) n \<Longrightarrow> n < len_of TYPE('a)" |
|
37660 | 804 |
apply (rule nth_bintr [THEN iffD1, THEN conjunct1]) |
805 |
apply (subst word_ubin.norm_Rep) |
|
806 |
apply assumption |
|
807 |
done |
|
808 |
||
46057 | 809 |
lemma bin_nth_sint: |
810 |
fixes w :: "'a::len word" |
|
811 |
shows "len_of TYPE('a) \<le> n \<Longrightarrow> |
|
812 |
bin_nth (sint w) n = bin_nth (sint w) (len_of TYPE('a) - 1)" |
|
37660 | 813 |
apply (subst word_sbin.norm_Rep [symmetric]) |
46057 | 814 |
apply (auto simp add: nth_sbintr) |
37660 | 815 |
done |
816 |
||
817 |
(* type definitions theorem for in terms of equivalent bool list *) |
|
818 |
lemma td_bl: |
|
819 |
"type_definition (to_bl :: 'a::len0 word => bool list) |
|
820 |
of_bl |
|
821 |
{bl. length bl = len_of TYPE('a)}" |
|
822 |
apply (unfold type_definition_def of_bl_def to_bl_def) |
|
823 |
apply (simp add: word_ubin.eq_norm) |
|
824 |
apply safe |
|
825 |
apply (drule sym) |
|
826 |
apply simp |
|
827 |
done |
|
828 |
||
829 |
interpretation word_bl: |
|
830 |
type_definition "to_bl :: 'a::len0 word => bool list" |
|
831 |
of_bl |
|
832 |
"{bl. length bl = len_of TYPE('a::len0)}" |
|
833 |
by (rule td_bl) |
|
834 |
||
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
835 |
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
|
836 |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
837 |
lemma word_size_bl: "size w = size (to_bl w)" |
37660 | 838 |
unfolding word_size by auto |
839 |
||
840 |
lemma to_bl_use_of_bl: |
|
841 |
"(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
|
842 |
by (fastforce elim!: word_bl.Abs_inverse [unfolded mem_Collect_eq]) |
37660 | 843 |
|
844 |
lemma to_bl_word_rev: "to_bl (word_reverse w) = rev (to_bl w)" |
|
845 |
unfolding word_reverse_def by (simp add: word_bl.Abs_inverse) |
|
846 |
||
847 |
lemma word_rev_rev [simp] : "word_reverse (word_reverse w) = w" |
|
848 |
unfolding word_reverse_def by (simp add : word_bl.Abs_inverse) |
|
849 |
||
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
850 |
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
|
851 |
by (metis word_rev_rev) |
37660 | 852 |
|
45805 | 853 |
lemma word_rev_gal': "u = word_reverse w \<Longrightarrow> w = word_reverse u" |
854 |
by simp |
|
855 |
||
856 |
lemma length_bl_gt_0 [iff]: "0 < length (to_bl (x::'a::len word))" |
|
857 |
unfolding word_bl_Rep' by (rule len_gt_0) |
|
858 |
||
859 |
lemma bl_not_Nil [iff]: "to_bl (x::'a::len word) \<noteq> []" |
|
860 |
by (fact length_bl_gt_0 [unfolded length_greater_0_conv]) |
|
861 |
||
862 |
lemma length_bl_neq_0 [iff]: "length (to_bl (x::'a::len word)) \<noteq> 0" |
|
863 |
by (fact length_bl_gt_0 [THEN gr_implies_not0]) |
|
37660 | 864 |
|
46001
0b562d564d5f
redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents:
46000
diff
changeset
|
865 |
lemma hd_bl_sign_sint: "hd (to_bl w) = (bin_sign (sint w) = -1)" |
37660 | 866 |
apply (unfold to_bl_def sint_uint) |
867 |
apply (rule trans [OF _ bl_sbin_sign]) |
|
868 |
apply simp |
|
869 |
done |
|
870 |
||
871 |
lemma of_bl_drop': |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
872 |
"lend = length bl - len_of TYPE ('a :: len0) \<Longrightarrow> |
37660 | 873 |
of_bl (drop lend bl) = (of_bl bl :: 'a word)" |
874 |
apply (unfold of_bl_def) |
|
875 |
apply (clarsimp simp add : trunc_bl2bin [symmetric]) |
|
876 |
done |
|
877 |
||
878 |
lemma test_bit_of_bl: |
|
879 |
"(of_bl bl::'a::len0 word) !! n = (rev bl ! n \<and> n < len_of TYPE('a) \<and> n < length bl)" |
|
880 |
apply (unfold of_bl_def word_test_bit_def) |
|
881 |
apply (auto simp add: word_size word_ubin.eq_norm nth_bintr bin_nth_of_bl) |
|
882 |
done |
|
883 |
||
884 |
lemma no_of_bl: |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
885 |
"(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
|
886 |
unfolding of_bl_def by simp |
37660 | 887 |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
888 |
lemma uint_bl: "to_bl w = bin_to_bl (size w) (uint w)" |
37660 | 889 |
unfolding word_size to_bl_def by auto |
890 |
||
891 |
lemma to_bl_bin: "bl_to_bin (to_bl w) = uint w" |
|
892 |
unfolding uint_bl by (simp add : word_size) |
|
893 |
||
894 |
lemma to_bl_of_bin: |
|
895 |
"to_bl (word_of_int bin::'a::len0 word) = bin_to_bl (len_of TYPE('a)) bin" |
|
896 |
unfolding uint_bl by (clarsimp simp add: word_ubin.eq_norm word_size) |
|
897 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
898 |
lemma to_bl_numeral [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
899 |
"to_bl (numeral bin::'a::len0 word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
900 |
bin_to_bl (len_of TYPE('a)) (numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
901 |
unfolding word_numeral_alt by (rule to_bl_of_bin) |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
902 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
903 |
lemma to_bl_neg_numeral [simp]: |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
904 |
"to_bl (neg_numeral bin::'a::len0 word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
905 |
bin_to_bl (len_of TYPE('a)) (neg_numeral bin)" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
906 |
unfolding word_neg_numeral_alt by (rule to_bl_of_bin) |
37660 | 907 |
|
908 |
lemma to_bl_to_bin [simp] : "bl_to_bin (to_bl w) = uint w" |
|
909 |
unfolding uint_bl by (simp add : word_size) |
|
46011 | 910 |
|
911 |
lemma uint_bl_bin: |
|
912 |
fixes x :: "'a::len0 word" |
|
913 |
shows "bl_to_bin (bin_to_bl (len_of TYPE('a)) (uint x)) = uint x" |
|
914 |
by (rule trans [OF bin_bl_bin word_ubin.norm_Rep]) |
|
45604 | 915 |
|
37660 | 916 |
(* naturals *) |
917 |
lemma uints_unats: "uints n = int ` unats n" |
|
918 |
apply (unfold unats_def uints_num) |
|
919 |
apply safe |
|
920 |
apply (rule_tac image_eqI) |
|
921 |
apply (erule_tac nat_0_le [symmetric]) |
|
922 |
apply auto |
|
923 |
apply (erule_tac nat_less_iff [THEN iffD2]) |
|
924 |
apply (rule_tac [2] zless_nat_eq_int_zless [THEN iffD1]) |
|
925 |
apply (auto simp add : nat_power_eq int_power) |
|
926 |
done |
|
927 |
||
928 |
lemma unats_uints: "unats n = nat ` uints n" |
|
929 |
by (auto simp add : uints_unats image_iff) |
|
930 |
||
46962
5bdcdb28be83
make more word theorems respect int/bin distinction
huffman
parents:
46656
diff
changeset
|
931 |
lemmas bintr_num = word_ubin.norm_eq_iff |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
932 |
[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
|
933 |
lemmas sbintr_num = word_sbin.norm_eq_iff |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
934 |
[of "numeral a" "numeral b", symmetric, folded word_numeral_alt] for a b |
37660 | 935 |
|
936 |
lemma num_of_bintr': |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
937 |
"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
|
938 |
numeral a = (numeral b :: 'a word)" |
46962
5bdcdb28be83
make more word theorems respect int/bin distinction
huffman
parents:
46656
diff
changeset
|
939 |
unfolding bintr_num by (erule subst, simp) |
37660 | 940 |
|
941 |
lemma num_of_sbintr': |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
942 |
"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
|
943 |
numeral a = (numeral b :: 'a word)" |
46962
5bdcdb28be83
make more word theorems respect int/bin distinction
huffman
parents:
46656
diff
changeset
|
944 |
unfolding sbintr_num by (erule subst, simp) |
5bdcdb28be83
make more word theorems respect int/bin distinction
huffman
parents:
46656
diff
changeset
|
945 |
|
5bdcdb28be83
make more word theorems respect int/bin distinction
huffman
parents:
46656
diff
changeset
|
946 |
lemma num_abs_bintr: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
947 |
"(numeral x :: 'a word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
948 |
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
|
949 |
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
|
950 |
|
5bdcdb28be83
make more word theorems respect int/bin distinction
huffman
parents:
46656
diff
changeset
|
951 |
lemma num_abs_sbintr: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
952 |
"(numeral x :: 'a word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
953 |
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
|
954 |
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
|
955 |
|
37660 | 956 |
(** cast - note, no arg for new length, as it's determined by type of result, |
957 |
thus in "cast w = w, the type means cast to length of w! **) |
|
958 |
||
959 |
lemma ucast_id: "ucast w = w" |
|
960 |
unfolding ucast_def by auto |
|
961 |
||
962 |
lemma scast_id: "scast w = w" |
|
963 |
unfolding scast_def by auto |
|
964 |
||
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
965 |
lemma ucast_bl: "ucast w = of_bl (to_bl w)" |
37660 | 966 |
unfolding ucast_def of_bl_def uint_bl |
967 |
by (auto simp add : word_size) |
|
968 |
||
969 |
lemma nth_ucast: |
|
970 |
"(ucast w::'a::len0 word) !! n = (w !! n & n < len_of TYPE('a))" |
|
971 |
apply (unfold ucast_def test_bit_bin) |
|
972 |
apply (simp add: word_ubin.eq_norm nth_bintr word_size) |
|
973 |
apply (fast elim!: bin_nth_uint_imp) |
|
974 |
done |
|
975 |
||
976 |
(* for literal u(s)cast *) |
|
977 |
||
46001
0b562d564d5f
redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents:
46000
diff
changeset
|
978 |
lemma ucast_bintr [simp]: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
979 |
"ucast (numeral w ::'a::len0 word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
980 |
word_of_int (bintrunc (len_of TYPE('a)) (numeral w))" |
37660 | 981 |
unfolding ucast_def by simp |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
982 |
(* TODO: neg_numeral *) |
37660 | 983 |
|
46001
0b562d564d5f
redefine some binary operations on integers work on abstract numerals instead of Int.Pls and Int.Min
huffman
parents:
46000
diff
changeset
|
984 |
lemma scast_sbintr [simp]: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
985 |
"scast (numeral w ::'a::len word) = |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
986 |
word_of_int (sbintrunc (len_of TYPE('a) - Suc 0) (numeral w))" |
37660 | 987 |
unfolding scast_def by simp |
988 |
||
46011 | 989 |
lemma source_size: "source_size (c::'a::len0 word \<Rightarrow> _) = len_of TYPE('a)" |
990 |
unfolding source_size_def word_size Let_def .. |
|
991 |
||
992 |
lemma target_size: "target_size (c::_ \<Rightarrow> 'b::len0 word) = len_of TYPE('b)" |
|
993 |
unfolding target_size_def word_size Let_def .. |
|
994 |
||
995 |
lemma is_down: |
|
996 |
fixes c :: "'a::len0 word \<Rightarrow> 'b::len0 word" |
|
997 |
shows "is_down c \<longleftrightarrow> len_of TYPE('b) \<le> len_of TYPE('a)" |
|
998 |
unfolding is_down_def source_size target_size .. |
|
999 |
||
1000 |
lemma is_up: |
|
1001 |
fixes c :: "'a::len0 word \<Rightarrow> 'b::len0 word" |
|
1002 |
shows "is_up c \<longleftrightarrow> len_of TYPE('a) \<le> len_of TYPE('b)" |
|
1003 |
unfolding is_up_def source_size target_size .. |
|
37660 | 1004 |
|
45604 | 1005 |
lemmas is_up_down = trans [OF is_up is_down [symmetric]] |
37660 | 1006 |
|
45811 | 1007 |
lemma down_cast_same [OF refl]: "uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc = scast" |
37660 | 1008 |
apply (unfold is_down) |
1009 |
apply safe |
|
1010 |
apply (rule ext) |
|
1011 |
apply (unfold ucast_def scast_def uint_sint) |
|
1012 |
apply (rule word_ubin.norm_eq_iff [THEN iffD1]) |
|
1013 |
apply simp |
|
1014 |
done |
|
1015 |
||
45811 | 1016 |
lemma word_rev_tf: |
1017 |
"to_bl (of_bl bl::'a::len0 word) = |
|
1018 |
rev (takefill False (len_of TYPE('a)) (rev bl))" |
|
37660 | 1019 |
unfolding of_bl_def uint_bl |
1020 |
by (clarsimp simp add: bl_bin_bl_rtf word_ubin.eq_norm word_size) |
|
1021 |
||
45811 | 1022 |
lemma word_rep_drop: |
1023 |
"to_bl (of_bl bl::'a::len0 word) = |
|
1024 |
replicate (len_of TYPE('a) - length bl) False @ |
|
1025 |
drop (length bl - len_of TYPE('a)) bl" |
|
1026 |
by (simp add: word_rev_tf takefill_alt rev_take) |
|
37660 | 1027 |
|
1028 |
lemma to_bl_ucast: |
|
1029 |
"to_bl (ucast (w::'b::len0 word) ::'a::len0 word) = |
|
1030 |
replicate (len_of TYPE('a) - len_of TYPE('b)) False @ |
|
1031 |
drop (len_of TYPE('b) - len_of TYPE('a)) (to_bl w)" |
|
1032 |
apply (unfold ucast_bl) |
|
1033 |
apply (rule trans) |
|
1034 |
apply (rule word_rep_drop) |
|
1035 |
apply simp |
|
1036 |
done |
|
1037 |
||
45811 | 1038 |
lemma ucast_up_app [OF refl]: |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1039 |
"uc = ucast \<Longrightarrow> source_size uc + n = target_size uc \<Longrightarrow> |
37660 | 1040 |
to_bl (uc w) = replicate n False @ (to_bl w)" |
1041 |
by (auto simp add : source_size target_size to_bl_ucast) |
|
1042 |
||
45811 | 1043 |
lemma ucast_down_drop [OF refl]: |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1044 |
"uc = ucast \<Longrightarrow> source_size uc = target_size uc + n \<Longrightarrow> |
37660 | 1045 |
to_bl (uc w) = drop n (to_bl w)" |
1046 |
by (auto simp add : source_size target_size to_bl_ucast) |
|
1047 |
||
45811 | 1048 |
lemma scast_down_drop [OF refl]: |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1049 |
"sc = scast \<Longrightarrow> source_size sc = target_size sc + n \<Longrightarrow> |
37660 | 1050 |
to_bl (sc w) = drop n (to_bl w)" |
1051 |
apply (subgoal_tac "sc = ucast") |
|
1052 |
apply safe |
|
1053 |
apply simp |
|
45811 | 1054 |
apply (erule ucast_down_drop) |
1055 |
apply (rule down_cast_same [symmetric]) |
|
37660 | 1056 |
apply (simp add : source_size target_size is_down) |
1057 |
done |
|
1058 |
||
45811 | 1059 |
lemma sint_up_scast [OF refl]: |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1060 |
"sc = scast \<Longrightarrow> is_up sc \<Longrightarrow> sint (sc w) = sint w" |
37660 | 1061 |
apply (unfold is_up) |
1062 |
apply safe |
|
1063 |
apply (simp add: scast_def word_sbin.eq_norm) |
|
1064 |
apply (rule box_equals) |
|
1065 |
prefer 3 |
|
1066 |
apply (rule word_sbin.norm_Rep) |
|
1067 |
apply (rule sbintrunc_sbintrunc_l) |
|
1068 |
defer |
|
1069 |
apply (subst word_sbin.norm_Rep) |
|
1070 |
apply (rule refl) |
|
1071 |
apply simp |
|
1072 |
done |
|
1073 |
||
45811 | 1074 |
lemma uint_up_ucast [OF refl]: |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1075 |
"uc = ucast \<Longrightarrow> is_up uc \<Longrightarrow> uint (uc w) = uint w" |
37660 | 1076 |
apply (unfold is_up) |
1077 |
apply safe |
|
1078 |
apply (rule bin_eqI) |
|
1079 |
apply (fold word_test_bit_def) |
|
1080 |
apply (auto simp add: nth_ucast) |
|
1081 |
apply (auto simp add: test_bit_bin) |
|
1082 |
done |
|
45811 | 1083 |
|
1084 |
lemma ucast_up_ucast [OF refl]: |
|
1085 |
"uc = ucast \<Longrightarrow> is_up uc \<Longrightarrow> ucast (uc w) = ucast w" |
|
37660 | 1086 |
apply (simp (no_asm) add: ucast_def) |
1087 |
apply (clarsimp simp add: uint_up_ucast) |
|
1088 |
done |
|
1089 |
||
45811 | 1090 |
lemma scast_up_scast [OF refl]: |
1091 |
"sc = scast \<Longrightarrow> is_up sc \<Longrightarrow> scast (sc w) = scast w" |
|
37660 | 1092 |
apply (simp (no_asm) add: scast_def) |
1093 |
apply (clarsimp simp add: sint_up_scast) |
|
1094 |
done |
|
1095 |
||
45811 | 1096 |
lemma ucast_of_bl_up [OF refl]: |
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1097 |
"w = of_bl bl \<Longrightarrow> size bl <= size w \<Longrightarrow> ucast w = of_bl bl" |
37660 | 1098 |
by (auto simp add : nth_ucast word_size test_bit_of_bl intro!: word_eqI) |
1099 |
||
1100 |
lemmas ucast_up_ucast_id = trans [OF ucast_up_ucast ucast_id] |
|
1101 |
lemmas scast_up_scast_id = trans [OF scast_up_scast scast_id] |
|
1102 |
||
1103 |
lemmas isduu = is_up_down [where c = "ucast", THEN iffD2] |
|
1104 |
lemmas isdus = is_up_down [where c = "scast", THEN iffD2] |
|
1105 |
lemmas ucast_down_ucast_id = isduu [THEN ucast_up_ucast_id] |
|
1106 |
lemmas scast_down_scast_id = isdus [THEN ucast_up_ucast_id] |
|
1107 |
||
1108 |
lemma up_ucast_surj: |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1109 |
"is_up (ucast :: 'b::len0 word => 'a::len0 word) \<Longrightarrow> |
37660 | 1110 |
surj (ucast :: 'a word => 'b word)" |
1111 |
by (rule surjI, erule ucast_up_ucast_id) |
|
1112 |
||
1113 |
lemma up_scast_surj: |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1114 |
"is_up (scast :: 'b::len word => 'a::len word) \<Longrightarrow> |
37660 | 1115 |
surj (scast :: 'a word => 'b word)" |
1116 |
by (rule surjI, erule scast_up_scast_id) |
|
1117 |
||
1118 |
lemma down_scast_inj: |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1119 |
"is_down (scast :: 'b::len word => 'a::len word) \<Longrightarrow> |
37660 | 1120 |
inj_on (ucast :: 'a word => 'b word) A" |
1121 |
by (rule inj_on_inverseI, erule scast_down_scast_id) |
|
1122 |
||
1123 |
lemma down_ucast_inj: |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1124 |
"is_down (ucast :: 'b::len0 word => 'a::len0 word) \<Longrightarrow> |
37660 | 1125 |
inj_on (ucast :: 'a word => 'b word) A" |
1126 |
by (rule inj_on_inverseI, erule ucast_down_ucast_id) |
|
1127 |
||
1128 |
lemma of_bl_append_same: "of_bl (X @ to_bl w) = w" |
|
1129 |
by (rule word_bl.Rep_eqD) (simp add: word_rep_drop) |
|
45811 | 1130 |
|
46646 | 1131 |
lemma ucast_down_wi [OF refl]: |
1132 |
"uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc (word_of_int x) = word_of_int x" |
|
1133 |
apply (unfold is_down) |
|
37660 | 1134 |
apply (clarsimp simp add: ucast_def word_ubin.eq_norm) |
1135 |
apply (rule word_ubin.norm_eq_iff [THEN iffD1]) |
|
1136 |
apply (erule bintrunc_bintrunc_ge) |
|
1137 |
done |
|
45811 | 1138 |
|
46646 | 1139 |
lemma ucast_down_no [OF refl]: |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1140 |
"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
|
1141 |
unfolding word_numeral_alt by clarify (rule ucast_down_wi) |
46646 | 1142 |
|
45811 | 1143 |
lemma ucast_down_bl [OF refl]: |
1144 |
"uc = ucast \<Longrightarrow> is_down uc \<Longrightarrow> uc (of_bl bl) = of_bl bl" |
|
46646 | 1145 |
unfolding of_bl_def by clarify (erule ucast_down_wi) |
37660 | 1146 |
|
1147 |
lemmas slice_def' = slice_def [unfolded word_size] |
|
1148 |
lemmas test_bit_def' = word_test_bit_def [THEN fun_cong] |
|
1149 |
||
1150 |
lemmas word_log_defs = word_and_def word_or_def word_xor_def word_not_def |
|
1151 |
||
1152 |
||
1153 |
subsection {* Word Arithmetic *} |
|
1154 |
||
1155 |
lemma word_less_alt: "(a < b) = (uint a < uint b)" |
|
46012 | 1156 |
unfolding word_less_def word_le_def by (simp add: less_le) |
37660 | 1157 |
|
1158 |
lemma signed_linorder: "class.linorder word_sle word_sless" |
|
46124 | 1159 |
by default (unfold word_sle_def word_sless_def, auto) |
37660 | 1160 |
|
1161 |
interpretation signed: linorder "word_sle" "word_sless" |
|
1162 |
by (rule signed_linorder) |
|
1163 |
||
1164 |
lemma udvdI: |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1165 |
"0 \<le> n \<Longrightarrow> uint b = n * uint a \<Longrightarrow> a udvd b" |
37660 | 1166 |
by (auto simp: udvd_def) |
1167 |
||
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1168 |
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
|
1169 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1170 |
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
|
1171 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1172 |
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
|
1173 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1174 |
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
|
1175 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1176 |
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
|
1177 |
|
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1178 |
lemmas word_sle_no [simp] = word_sle_def [of "numeral a" "numeral b"] for a b |
37660 | 1179 |
|
46020 | 1180 |
lemma word_1_no: "(1::'a::len0 word) = Numeral1" |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1181 |
by (simp add: word_numeral_alt) |
37660 | 1182 |
|
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1183 |
lemma word_m1_wi: "-1 = word_of_int -1" |
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1184 |
by (rule word_neg_numeral_alt) |
37660 | 1185 |
|
46648 | 1186 |
lemma word_0_bl [simp]: "of_bl [] = 0" |
1187 |
unfolding of_bl_def by simp |
|
37660 | 1188 |
|
1189 |
lemma word_1_bl: "of_bl [True] = 1" |
|
46648 | 1190 |
unfolding of_bl_def by (simp add: bl_to_bin_def) |
1191 |
||
1192 |
lemma uint_eq_0 [simp]: "uint 0 = 0" |
|
1193 |
unfolding word_0_wi word_ubin.eq_norm by simp |
|
37660 | 1194 |
|
45995
b16070689726
declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents:
45958
diff
changeset
|
1195 |
lemma of_bl_0 [simp]: "of_bl (replicate n False) = 0" |
46648 | 1196 |
by (simp add: of_bl_def bl_to_bin_rep_False) |
37660 | 1197 |
|
45805 | 1198 |
lemma to_bl_0 [simp]: |
37660 | 1199 |
"to_bl (0::'a::len0 word) = replicate (len_of TYPE('a)) False" |
1200 |
unfolding uint_bl |
|
46617
8c5d10d41391
make bool list functions respect int/bin distinction
huffman
parents:
46604
diff
changeset
|
1201 |
by (simp add: word_size bin_to_bl_zero) |
37660 | 1202 |
|
1203 |
lemma uint_0_iff: "(uint x = 0) = (x = 0)" |
|
1204 |
by (auto intro!: word_uint.Rep_eqD) |
|
1205 |
||
1206 |
lemma unat_0_iff: "(unat x = 0) = (x = 0)" |
|
1207 |
unfolding unat_def by (auto simp add : nat_eq_iff uint_0_iff) |
|
1208 |
||
1209 |
lemma unat_0 [simp]: "unat 0 = 0" |
|
1210 |
unfolding unat_def by auto |
|
1211 |
||
40827
abbc05c20e24
code preprocessor setup for numerals on word type;
haftmann
parents:
39910
diff
changeset
|
1212 |
lemma size_0_same': "size w = 0 \<Longrightarrow> w = (v :: 'a :: len0 word)" |
37660 | 1213 |
apply (unfold word_size) |
1214 |
apply (rule box_equals) |
|
1215 |
defer |
|
1216 |
apply (rule word_uint.Rep_inverse)+ |
|
1217 |
apply (rule word_ubin.norm_eq_iff [THEN iffD1]) |
|
1218 |
apply simp |
|
1219 |
done |
|
1220 |
||
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
1221 |
lemmas size_0_same = size_0_same' [unfolded word_size] |
37660 | 1222 |
|
1223 |
lemmas unat_eq_0 = unat_0_iff |
|
1224 |
lemmas unat_eq_zero = unat_0_iff |
|
1225 |
||
1226 |
lemma unat_gt_0: "(0 < unat x) = (x ~= 0)" |
|
1227 |
by (auto simp: unat_0_iff [symmetric]) |
|
1228 |
||
45958 | 1229 |
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
|
1230 |
unfolding ucast_def by simp |
45958 | 1231 |
|
1232 |
lemma sint_0 [simp]: "sint 0 = 0" |
|
1233 |
unfolding sint_uint by simp |
|
1234 |
||
1235 |
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
|
1236 |
unfolding scast_def by simp |
37660 | 1237 |
|
1238 |
lemma sint_n1 [simp] : "sint -1 = -1" |
|
45958 | 1239 |
unfolding word_m1_wi by (simp add: word_sbin.eq_norm) |
1240 |
||
1241 |
lemma scast_n1 [simp]: "scast -1 = -1" |
|
1242 |
unfolding scast_def by simp |
|
1243 |
||
1244 |
lemma uint_1 [simp]: "uint (1::'a::len word) = 1" |
|
37660 | 1245 |
unfolding word_1_wi |
45995
b16070689726
declare word_of_int_{0,1} [simp], for consistency with word_of_int_bin
huffman
parents:
45958
diff
changeset
|
1246 |
by (simp add: word_ubin.eq_norm bintrunc_minus_simps del: word_of_int_1) |
45958 | 1247 |
|
1248 |
lemma unat_1 [simp]: "unat (1::'a::len word) = 1" |
|
1249 |
unfolding unat_def by simp |
|
1250 |
||
1251 |
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
|
1252 |
unfolding ucast_def by simp |
37660 | 1253 |
|
1254 |
(* now, to get the weaker results analogous to word_div/mod_def *) |
|
1255 |
||
1256 |
lemmas word_arith_alts = |
|
46000 | 1257 |
word_sub_wi |
1258 |
word_arith_wis (* FIXME: duplicate *) |
|
1259 |
||
37660 | 1260 |
subsection "Transferring goals from words to ints" |
1261 |
||
1262 |
lemma word_ths: |
|
1263 |
shows |
|
1264 |
word_succ_p1: "word_succ a = a + 1" and |
|
1265 |
word_pred_m1: "word_pred a = a - 1" and |
|
1266 |
word_pred_succ: "word_pred (word_succ a) = a" and |
|
1267 |
word_succ_pred: "word_succ (word_pred a) = a" and |
|
1268 |
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
|
1269 |
by (transfer, simp add: algebra_simps)+ |
37660 | 1270 |
|
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
1271 |
lemma uint_cong: "x = y \<Longrightarrow> uint x = uint y" |
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
1272 |
by simp |
37660 | 1273 |
|
1274 |
lemmas uint_word_ariths = |
|
45604 | 1275 |
word_arith_alts [THEN trans [OF uint_cong int_word_uint]] |
37660 | 1276 |
|
1277 |
lemmas uint_word_arith_bintrs = uint_word_ariths [folded bintrunc_mod2p] |
|
1278 |
||
1279 |
(* similar expressions for sint (arith operations) *) |
|
1280 |
lemmas sint_word_ariths = uint_word_arith_bintrs |
|
1281 |
[THEN uint_sint [symmetric, THEN trans], |
|
1282 |
unfolded uint_sint bintr_arith1s bintr_ariths |
|
45604 | 1283 |
len_gt_0 [THEN bin_sbin_eq_iff'] word_sbin.norm_Rep] |
1284 |
||
1285 |
lemmas uint_div_alt = word_div_def [THEN trans [OF uint_cong int_word_uint]] |
|
1286 |
lemmas uint_mod_alt = word_mod_def [THEN trans [OF uint_cong int_word_uint]] |
|
37660 | 1287 |
|
1288 |
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
|
1289 |
unfolding word_pred_m1 by simp |
37660 | 1290 |
|
1291 |
lemma succ_pred_no [simp]: |
|
47108
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1292 |
"word_succ (numeral w) = numeral w + 1" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1293 |
"word_pred (numeral w) = numeral w - 1" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1294 |
"word_succ (neg_numeral w) = neg_numeral w + 1" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1295 |
"word_pred (neg_numeral w) = neg_numeral w - 1" |
2a1953f0d20d
merged fork with new numeral representation (see NEWS)
huffman
parents:
46962
diff
changeset
|
1296 |
unfolding word_succ_p1 word_pred_m1 by simp_all |
37660 | 1297 |
|
1298 |
lemma word_sp_01 [simp] : |
|
1299 |
"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
|
1300 |
unfolding word_succ_p1 word_pred_m1 by simp_all |
37660 | 1301 |
|
1302 |
(* alternative approach to lifting arithmetic equalities *) |
|
1303 |
lemma word_of_int_Ex: |
|
1304 |
"\<exists>y. x = word_of_int y" |
|
1305 |
by (rule_tac x="uint x" in exI) simp |
|
1306 |
||
1307 |
||
1308 |
subsection "Order on fixed-length words" |
|
1309 |
||
1310 |
lemma word_zero_le [simp] : |
|
1311 |
"0 <= (y :: 'a :: len0 word)" |
|
1312 |
unfolding word_le_def by auto |
|
1313 |
||
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
1314 |
lemma word_m1_ge [simp] : "word_pred 0 >= y" (* FIXME: delete *) |
37660 | 1315 |
unfolding word_le_def |
1316 |
by (simp only : word_pred_0_n1 word_uint.eq_norm m1mod2k) auto |
|
1317 |
||
45816
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
1318 |
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
|
1319 |
unfolding word_le_def |
6a04efd99f25
replace more uses of 'lemmas' with explicit 'lemma';
huffman
parents:
45811
diff
changeset
|
1320 |
by (simp only: word_m1_wi word_uint.eq_norm m1mod2k) auto |
37660 |