theory StarForth_Q48_16 imports "HOL-Library.Word" begin (* ========================================================================= StarForth_Q48_16 — Q48.16 Fixed-Point Arithmetic (HOL-Word model) Mirrors: include/q48_16.h This theory uses HOL-Library.Word to model q48_16_t as exactly a 64-bit unsigned word — the same wrapping arithmetic as C uint64_t. This closes the "no overflow" domain restriction that the earlier nat model required. Format: 64 word with fixed binary point after bit 15. Bits 0-15 : fractional part (resolution 1/65536) Bits 16-63 : integer part (0 to 2^48 − 1) ○ CODE-MUST-MATCH: every operation here matches the corresponding C macro or inline function in include/q48_16.h exactly (same shift counts, same wrapping behaviour on overflow). ======================================================================== *) type_synonym q48 = "64 word" (* ========================================================================= Section 1: Scale constants ======================================================================== *) definition Q48_SCALE :: q48 where "Q48_SCALE = 65536" \ \2^16 as 64 word\ definition Q48_ONE :: q48 where "Q48_ONE = 65536" definition Q48_HALF :: q48 where "Q48_HALF = 32768" lemma Q48_ONE_eq [simp]: "Q48_ONE = Q48_SCALE" by (simp add: Q48_ONE_def Q48_SCALE_def) lemma Q48_SCALE_nonzero [simp]: "Q48_SCALE \ 0" by (simp add: Q48_SCALE_def) (* ========================================================================= Section 2: Conversion operations ======================================================================== *) (* q48_from_u64: integer n → Q48.16 representation (n << 16) C: static inline q48_16_t q48_from_u64(uint64_t u) { return u << 16; } ○ CODE-MUST-MATCH: shift count = 16, no saturation, wraps on overflow. Overflow-free range: n < 2^48. *) definition q48_from_u64 :: "64 word \ q48" where "q48_from_u64 n = push_bit 16 n" (* q48_to_u64: Q48.16 value → truncated integer (q >> 16) C: static inline uint64_t q48_to_u64(q48_16_t q) { return q >> 16; } ○ CODE-MUST-MATCH: logical right shift by 16, fractional bits discarded. *) definition q48_to_u64 :: "q48 \ 64 word" where "q48_to_u64 q = drop_bit 16 q" (* Round-trip: exact when n fits in the 48-bit integer part. Proof: drop_bit 16 (push_bit 16 n) = n AND mask 48 = n (when n < 2^48). *) lemma q48_round_trip: assumes "unat n < 2 ^ 48" shows "q48_to_u64 (q48_from_u64 n) = n" unfolding q48_to_u64_def q48_from_u64_def using assms by (simp add: drop_bit_push_bit word_size) lemma q48_from_u64_zero [simp]: "q48_from_u64 0 = 0" by (simp add: q48_from_u64_def) lemma q48_to_u64_zero [simp]: "q48_to_u64 0 = 0" by (simp add: q48_to_u64_def) lemma q48_from_u64_mono: assumes "unat a \ unat b" shows "unat (q48_from_u64 a) \ unat (q48_from_u64 b)" unfolding q48_from_u64_def using assms by (simp add: unat_push_bit) (* ========================================================================= Section 3: Arithmetic operations ======================================================================== *) (* q48_add: pointwise addition, wrapping on overflow (matches C + on uint64_t) C: static inline q48_16_t q48_add(q48_16_t a, q48_16_t b) { return a+b; } *) definition q48_add :: "q48 \ q48 \ q48" where "q48_add a b = a + b" lemma q48_add_comm: "q48_add a b = q48_add b a" by (simp add: q48_add_def add.commute) lemma q48_add_assoc: "q48_add (q48_add a b) c = q48_add a (q48_add b c)" by (simp add: q48_add_def add.assoc) lemma q48_add_zero_right [simp]: "q48_add a 0 = a" by (simp add: q48_add_def) lemma q48_add_zero_left [simp]: "q48_add 0 a = a" by (simp add: q48_add_def) (* q48_mul: (a * b) >> 16, wrapping. C: q48_16_t q48_mul(q48_16_t a, q48_16_t b) { return ((__uint128_t)a*b) >> 16; } ⚠ HUMAN-REVIEW: The C implementation uses __uint128_t for the intermediate product to avoid overflow before shifting. The HOL model uses 64-word multiplication (wrapping), which matches C only when a*b < 2^64 before the shift. Verify that the physics loops stay within this range. *) definition q48_mul :: "q48 \ q48 \ q48" where "q48_mul a b = drop_bit 16 (a * b)" lemma q48_mul_comm: "q48_mul a b = q48_mul b a" by (simp add: q48_mul_def mult.commute) lemma q48_mul_zero_right [simp]: "q48_mul a 0 = 0" by (simp add: q48_mul_def) lemma q48_mul_zero_left [simp]: "q48_mul 0 a = 0" by (simp add: q48_mul_def) (* q48_mul(a, Q48_ONE) = a when a < 2^48 (overflow-free range) *) lemma q48_mul_one_right: assumes "unat a < 2 ^ 48" shows "q48_mul a Q48_ONE = a" unfolding q48_mul_def Q48_ONE_def Q48_SCALE_def using assms by (simp add: drop_bit_push_bit word_size) (* q48_div: (a << 16) / b C: return ((__uint128_t)a << 16) / b; Same intermediate-precision note as q48_mul applies. *) definition q48_div :: "q48 \ q48 \ q48" where "q48_div a b = (if b = 0 then 0 else push_bit 16 a div b)" lemma q48_div_zero_denom [simp]: "q48_div a 0 = 0" by (simp add: q48_div_def) lemma q48_div_one: "q48_div a Q48_ONE = a" unfolding q48_div_def Q48_ONE_def Q48_SCALE_def by simp (* ========================================================================= Section 4: Accuracy ratio in Q48.16 (used by Loop #4 / Loop #5) ======================================================================== *) (* Prefetch accuracy: hits / total, represented in Q48.16. Arguments are natural numbers (counters); result is a 64 word. *) definition q48_accuracy :: "nat \ nat \ q48" where "q48_accuracy hits total = (if total = 0 then 0 else word_of_nat ((hits * 65536) div total))" lemma q48_accuracy_zero_total [simp]: "q48_accuracy hits 0 = 0" by (simp add: q48_accuracy_def) lemma q48_accuracy_upper_bound: assumes "hits \ total" shows "unat (q48_accuracy hits total) \ 65536" proof (cases "total = 0") case True thus ?thesis by simp next case False have "(hits * 65536) div total \ 65536" using assms False by (simp add: div_le_iff_le_mult) thus ?thesis by (simp add: q48_accuracy_def False unat_word_of_nat) qed (* ========================================================================= Section 5: Bit-level properties (using HOL-Word bit operations) ======================================================================== *) (* The integer part of a Q48.16 value is its upper 48 bits. *) definition q48_int_part :: "q48 \ 64 word" where "q48_int_part q = drop_bit 16 q" (* The fractional part is the lower 16 bits. *) definition q48_frac_part :: "q48 \ 64 word" where "q48_frac_part q = q AND mask 16" lemma q48_decompose: "push_bit 16 (q48_int_part q) + q48_frac_part q = q" unfolding q48_int_part_def q48_frac_part_def by (simp add: push_bit_drop_bit_and_not_mask_eq and_mask_eq_iff_shiftr_0 bit_push_bit drop_bit_eq_div push_bit_eq_mult) end