lh-l4v/lib/Word_Lib_l4v/Guide.thy

433 lines
17 KiB
Plaintext

(*
* Copyright Florian Haftmann
*
* SPDX-License-Identifier: BSD-2-Clause
*)
(*<*)
theory Guide
imports Word_Lib_Sumo Machine_Word_32 Machine_Word_64
begin
context semiring_bit_operations
begin
lemma bit_eq_iff:
\<open>a = b \<longleftrightarrow> (\<forall>n. 2 ^ n \<noteq> 0 \<longrightarrow> bit a n \<longleftrightarrow> bit b n)\<close>
using bit_eq_iff [of a b] by (simp add: possible_bit_def)
end
notation (output) Generic_set_bit.set_bit (\<open>Generic'_set'_bit.set'_bit\<close>)
hide_const (open) Generic_set_bit.set_bit
no_notation bit (infixl \<open>!!\<close> 100)
(*>*)
section \<open>A short overview over bit operations and word types\<close>
subsection \<open>Key principles\<close>
text \<open>
When formalizing bit operations, it is tempting to represent
bit values as explicit lists over a binary type. This however
is a bad idea, mainly due to the inherent ambiguities in
representation concerning repeating leading bits.
Hence this approach avoids such explicit lists altogether
following an algebraic path:
\<^item> Bit values are represented by numeric types: idealized
unbounded bit values can be represented by type \<^typ>\<open>int\<close>,
bounded bit values by quotient types over \<^typ>\<open>int\<close>, aka \<^typ>\<open>'a word\<close>.
\<^item> (A special case are idealized unbounded bit values ending
in @{term [source] 0} which can be represented by type \<^typ>\<open>nat\<close> but
only support a restricted set of operations).
The fundamental principles are developed in theory \<^theory>\<open>HOL.Bit_Operations\<close>
(which is part of \<^theory>\<open>Main\<close>):
\<^item> Multiplication by \<^term>\<open>2 :: int\<close> is a bit shift to the left and
\<^item> Division by \<^term>\<open>2 :: int\<close> is a bit shift to the right.
\<^item> Concerning bounded bit values, iterated shifts to the left
may result in eliminating all bits by shifting them all
beyond the boundary. The property \<^prop>\<open>(2 :: int) ^ n \<noteq> 0\<close>
represents that \<^term>\<open>n\<close> is \<^emph>\<open>not\<close> beyond that boundary.
\<^item> The projection on a single bit is then @{thm [mode=iff] bit_iff_odd [where ?'a = int, no_vars]}.
\<^item> This leads to the most fundamental properties of bit values:
\<^item> Equality rule: @{thm [display, mode=iff] bit_eq_iff [where ?'a = int, no_vars]}
\<^item> Induction rule: @{thm [display, mode=iff] bits_induct [where ?'a = int, no_vars]}
\<^item> Characteristic properties @{prop [source] \<open>bit (f x) n \<longleftrightarrow> P x n\<close>}
are available in fact collection \<^text>\<open>bit_simps\<close>.
On top of this, the following generic operations are provided:
\<^item> Singleton \<^term>\<open>n\<close>th bit: \<^term>\<open>(2 :: int) ^ n\<close>
\<^item> Bit mask upto bit \<^term>\<open>n\<close>: @{thm mask_eq_exp_minus_1 [where ?'a = int, no_vars]}
\<^item> Left shift: @{thm push_bit_eq_mult [where ?'a = int, no_vars]}
\<^item> Right shift: @{thm drop_bit_eq_div [where ?'a = int, no_vars]}
\<^item> Truncation: @{thm take_bit_eq_mod [where ?'a = int, no_vars]}
\<^item> Bitwise negation: @{thm [mode=iff] bit_not_iff_eq [where ?'a = int, no_vars]}
\<^item> Bitwise conjunction: @{thm [mode=iff] bit_and_iff [where ?'a = int, no_vars]}
\<^item> Bitwise disjunction: @{thm [mode=iff] bit_or_iff [where ?'a = int, no_vars]}
\<^item> Bitwise exclusive disjunction: @{thm [mode=iff] bit_xor_iff [where ?'a = int, no_vars]}
\<^item> Setting a single bit: @{thm set_bit_def [where ?'a = int, no_vars]}
\<^item> Unsetting a single bit: @{thm unset_bit_def [where ?'a = int, no_vars]}
\<^item> Flipping a single bit: @{thm flip_bit_def [where ?'a = int, no_vars]}
\<^item> Signed truncation, or modulus centered around \<^term>\<open>0::int\<close>:
@{thm [display] signed_take_bit_def [where ?'a = int, no_vars]}
\<^item> (Bounded) conversion from and to a list of bits:
@{thm [display] horner_sum_bit_eq_take_bit [where ?'a = int, no_vars]}
Bit concatenation on \<^typ>\<open>int\<close> as given by
@{thm [display] concat_bit_def [no_vars]}
appears quite
technical but is the logical foundation for the quite natural bit concatenation
on \<^typ>\<open>'a word\<close> (see below).
\<close>
subsection \<open>Core word theory\<close>
text \<open>
Proper word types are introduced in theory \<^theory>\<open>HOL-Library.Word\<close>, with
the following specific operations:
\<^item> Standard arithmetic:
@{term \<open>(+) :: 'a::len word \<Rightarrow> 'a word \<Rightarrow> 'a word\<close>},
@{term \<open>uminus :: 'a::len word \<Rightarrow> 'a word\<close>},
@{term \<open>(-) :: 'a::len word \<Rightarrow> 'a word \<Rightarrow> 'a word\<close>},
@{term \<open>(*) :: 'a::len word \<Rightarrow> 'a word \<Rightarrow> 'a word\<close>},
@{term \<open>0 :: 'a::len word\<close>}, @{term \<open>1 :: 'a::len word\<close>}, numerals etc.
\<^item> Standard bit operations: see above.
\<^item> Conversion with unsigned interpretation of words:
\<^item> @{term [source] \<open>unsigned :: 'a::len word \<Rightarrow> 'b::semiring_1\<close>}
\<^item> Important special cases as abbreviations:
\<^item> @{term [source] \<open>unat :: 'a::len word \<Rightarrow> nat\<close>}
\<^item> @{term [source] \<open>uint :: 'a::len word \<Rightarrow> int\<close>}
\<^item> @{term [source] \<open>ucast :: 'a::len word \<Rightarrow> 'b::len word\<close>}
\<^item> Conversion with signed interpretation of words:
\<^item> @{term [source] \<open>signed :: 'a::len word \<Rightarrow> 'b::ring_1\<close>}
\<^item> Important special cases as abbreviations:
\<^item> @{term [source] \<open>sint :: 'a::len word \<Rightarrow> int\<close>}
\<^item> @{term [source] \<open>scast :: 'a::len word \<Rightarrow> 'b::len word\<close>}
\<^item> Operations with unsigned interpretation of words:
\<^item> @{thm [mode=iff] word_le_nat_alt [no_vars]}
\<^item> @{thm [mode=iff] word_less_nat_alt [no_vars]}
\<^item> @{thm unat_div_distrib [no_vars]}
\<^item> @{thm unat_drop_bit_eq [no_vars]}
\<^item> @{thm unat_mod_distrib [no_vars]}
\<^item> @{thm [mode=iff] udvd_iff_dvd [no_vars]}
\<^item> Operations with signed interpretation of words:
\<^item> @{thm [mode=iff] word_sle_eq [no_vars]}
\<^item> @{thm [mode=iff] word_sless_alt [no_vars]}
\<^item> @{thm sint_signed_drop_bit_eq [no_vars]}
\<^item> Rotation and reversal:
\<^item> @{term [source] \<open>word_rotl :: nat \<Rightarrow> 'a::len word \<Rightarrow> 'a word\<close>}
\<^item> @{term [source] \<open>word_rotr :: nat \<Rightarrow> 'a::len word \<Rightarrow> 'a word\<close>}
\<^item> @{term [source] \<open>word_roti :: int \<Rightarrow> 'a::len word \<Rightarrow> 'a word\<close>}
\<^item> @{term [source] \<open>word_reverse :: 'a::len word \<Rightarrow> 'a word\<close>}
\<^item> Concatenation: @{term [source, display] \<open>word_cat :: 'a::len word \<Rightarrow> 'b::len word \<Rightarrow> 'c::len word\<close>}
For proofs about words the following default strategies are applicable:
\<^item> Using bit extensionality (facts \<^text>\<open>bit_eq_iff\<close>, \<^text>\<open>bit_word_eqI\<close>; fact
collection \<^text>\<open>bit_simps\<close>).
\<^item> Using the @{method transfer} method.
\<close>
subsection \<open>More library theories\<close>
text \<open>
Note: currently, most theories listed here are hardly separate
entities since they import each other in various ways.
Always inspect them to understand what you pull in if you
want to import one.
\<^descr>[Syntax]
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Syntax_Bundles\<close>]
Bundles to provide alternative syntax for various bit operations.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Hex_Words\<close>]
Printing word numerals as hexadecimal numerals.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Type_Syntax\<close>]
Pretty type-sensitive syntax for cast operations.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_Syntax\<close>]
Specific ASCII syntax for prominent bit operations on word.
\<^descr>[Proof tools]
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Norm_Words\<close>]
Rewriting word numerals to normal forms.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Bitwise\<close>]
Method @{method word_bitwise} decomposes word equalities and inequalities into bit propositions.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Bitwise_Signed\<close>]
Method @{method word_bitwise_signed} decomposes word equalities and inequalities into bit propositions.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_EqI\<close>]
Method @{method word_eqI_solve} decomposes word equalities and inequalities into bit propositions.
\<^descr>[Operations]
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Signed_Division_Word\<close>]
Signed division on word:
\<^item> @{term [source] \<open>(sdiv) :: 'a::len word \<Rightarrow> 'a word \<Rightarrow> 'a word\<close>}
\<^item> @{term [source] \<open>(smod) :: 'a::len word \<Rightarrow> 'a word \<Rightarrow> 'a word\<close>}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Aligned\<close>] \
\<^item> @{thm [mode=iff] is_aligned_iff_udvd [no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Least_significant_bit\<close>]
The least significant bit as an alias:
@{thm [mode=iff] lsb_odd [where ?'a = int, no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Most_significant_bit\<close>]
The most significant bit:
\<^item> @{thm [mode=iff] msb_int_def [of k]}
\<^item> @{thm [mode=iff] word_msb_sint [no_vars]}
\<^item> @{thm [mode=iff] msb_word_iff_sless_0 [no_vars]}
\<^item> @{thm [mode=iff] msb_word_iff_bit [no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Bit_Shifts_Infix_Syntax\<close>]
Bit shifts decorated with infix syntax:
\<^item> @{thm Bit_Shifts_Infix_Syntax.shiftl_def [no_vars]}
\<^item> @{thm Bit_Shifts_Infix_Syntax.shiftr_def [no_vars]}
\<^item> @{thm Bit_Shifts_Infix_Syntax.sshiftr_def [no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Next_and_Prev\<close>] \
\<^item> @{thm word_next_unfold [no_vars]}
\<^item> @{thm word_prev_unfold [no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Enumeration_Word\<close>]
More on explicit enumeration of word types.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.More_Word_Operations\<close>]
Even more operations on word.
\<^descr>[Types]
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Signed_Words\<close>]
Formal tagging of word types with a \<^text>\<open>signed\<close> marker.
\<^descr>[Lemmas]
\<^descr>[\<^theory>\<open>Word_Lib_l4v.More_Word\<close>]
More lemmas on words.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_Lemmas\<close>]
More lemmas on words, covering many other theories mentioned here.
\<^descr>[Words of popular lengths].
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_8\<close>]
for 8-bit words.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_16\<close>]
for 16-bit words.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_32\<close>]
for 32-bit words.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_64\<close>]
for 64-bit words. This theory is not part of \<^text>\<open>Word_Lib_Sumo\<close>, because it shadows
names from \<^theory>\<open>Word_Lib_l4v.Word_32\<close>. They can be used together, but then will have
to use qualified names in applications.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Machine_Word_32\<close> and \<^theory>\<open>Word_Lib_l4v.Machine_Word_64\<close>]
provide lemmas for 32-bit words and 64-bit words under the same name,
which can help to organize applications relying on some form
of genericity.
\<close>
subsection \<open>More library sessions\<close>
text \<open>
\<^descr>[\<^text>\<open>Native_Word\<close>] Makes machine words and machine arithmetic available for code generation.
It provides a common abstraction that hides the differences between the different target languages.
The code generator maps these operations to the APIs of the target languages.
\<close>
subsection \<open>Legacy theories\<close>
text \<open>
The following theories contain material which has been
factored out since it is not recommended to use it in
new applications, mostly because matters can be expressed
succinctly using already existing operations.
This section gives some indication how to migrate away
from those theories. However theorem coverage may still
be terse in some cases.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Word_Lib_Sumo\<close>]
An entry point importing any relevant theory in that session. Intended
for backward compatibility: start importing this theory when
migrating applications to Isabelle2021, and later sort out
what you really need. You may need to include
\<^theory>\<open>Word_Lib_l4v.Word_64\<close> separately.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Generic_set_bit\<close>]
Kind of an alias: @{thm set_bit_eq [no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Typedef_Morphisms\<close>]
A low-level extension to HOL typedef providing
conversions along type morphisms. The @{method transfer} method
seems to be sufficient for most applications though.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Bit_Comprehension\<close>]
Comprehension syntax for bit values over predicates
\<^typ>\<open>nat \<Rightarrow> bool\<close>, for \<^typ>\<open>'a::len word\<close>; straightforward
alternatives exist.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Bit_Comprehension_Int\<close>]
Comprehension syntax for bit values over predicates
\<^typ>\<open>nat \<Rightarrow> bool\<close>, for \<^typ>\<open>int\<close>; inherently non-computational.
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Reversed_Bit_Lists\<close>]
Representation of bit values as explicit list in
\<^emph>\<open>reversed\<close> order.
This should rarely be necessary: the \<^const>\<open>bit\<close> projection
should be sufficient in most cases. In case explicit lists
are needed, existing operations can be used:
@{thm [display] horner_sum_bit_eq_take_bit [where ?'a = int, no_vars]}
\<^descr>[\<^theory>\<open>Word_Lib_l4v.Many_More\<close>]
Collection of operations and theorems which are kept for backward
compatibility and not used in other theories in session \<^text>\<open>Word_Lib_l4v\<close>.
They are used in applications of \<^text>\<open>Word_Lib_l4v\<close>, but should be migrated to there.
\<close>
section \<open>Changelog\<close>
text \<open>
\<^descr>[Changes since AFP 2022] ~
\<^item> Theory \<^text>\<open>Word_Lib_l4v.Ancient_Numeral\<close> has been removed from session.
\<^item> Bit comprehension syntax for \<^typ>\<open>int\<close> moved to separate theory
\<^theory>\<open>Word_Lib_l4v.Bit_Comprehension_Int\<close>.
\<^descr>[Changes since AFP 2021] ~
\<^item> Theory \<^text>\<open>Word_Lib_l4v.Ancient_Numeral\<close> is not part of \<^theory>\<open>Word_Lib_l4v.Word_Lib_Sumo\<close>
any longer.
\<^item> Infix syntax for \<^term>\<open>(AND)\<close>, \<^term>\<open>(OR)\<close>, \<^term>\<open>(XOR)\<close> organized in
syntax bundle \<^bundle>\<open>bit_operations_syntax\<close>.
\<^item> Abbreviation \<^abbrev>\<open>max_word\<close> moved from distribution into theory
\<^theory>\<open>Word_Lib_l4v.Legacy_Aliases\<close>.
\<^item> Operation \<^const>\<open>test_bit\<close> replaced by input abbreviation \<^abbrev>\<open>test_bit\<close>.
\<^item> Abbreviations \<^abbrev>\<open>bin_nth\<close>, \<^abbrev>\<open>bin_last\<close>, \<^abbrev>\<open>bin_rest\<close>,
\<^abbrev>\<open>bintrunc\<close>, \<^abbrev>\<open>sbintrunc\<close>, \<^abbrev>\<open>norm_sint\<close>,
\<^abbrev>\<open>bin_cat\<close> moved into theory \<^theory>\<open>Word_Lib_l4v.Legacy_Aliases\<close>.
\<^item> Operations \<^abbrev>\<open>bshiftr1\<close>,
\<^abbrev>\<open>setBit\<close>, \<^abbrev>\<open>clearBit\<close> moved from distribution into theory
\<^theory>\<open>Word_Lib_l4v.Legacy_Aliases\<close> and replaced by input abbreviations.
\<^item> Operations \<^const>\<open>shiftl1\<close>, \<^const>\<open>shiftr1\<close>, \<^const>\<open>sshiftr1\<close>
moved here from distribution.
\<^item> Operation \<^const>\<open>complement\<close> replaced by input abbreviation \<^abbrev>\<open>complement\<close>.
\<close>
(*<*)
end
(*>*)