Git fork

git-compat-util: introduce more size_t helpers

We will use them in the next commit.

Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
Signed-off-by: Junio C Hamano <gitster@pobox.com>

authored by

Johannes Schindelin and committed by
Junio C Hamano
e2ffeae3 e9aa762c

+25
+25
git-compat-util.h
··· 113 113 #define unsigned_mult_overflows(a, b) \ 114 114 ((a) && (b) > maximum_unsigned_value_of_type(a) / (a)) 115 115 116 + /* 117 + * Returns true if the left shift of "a" by "shift" bits will 118 + * overflow. The type of "a" must be unsigned. 119 + */ 120 + #define unsigned_left_shift_overflows(a, shift) \ 121 + ((shift) < bitsizeof(a) && \ 122 + (a) > maximum_unsigned_value_of_type(a) >> (shift)) 123 + 116 124 #ifdef __GNUC__ 117 125 #define TYPEOF(x) (__typeof__(x)) 118 126 #else ··· 857 865 die("size_t underflow: %"PRIuMAX" - %"PRIuMAX, 858 866 (uintmax_t)a, (uintmax_t)b); 859 867 return a - b; 868 + } 869 + 870 + static inline size_t st_left_shift(size_t a, unsigned shift) 871 + { 872 + if (unsigned_left_shift_overflows(a, shift)) 873 + die("size_t overflow: %"PRIuMAX" << %u", 874 + (uintmax_t)a, shift); 875 + return a << shift; 876 + } 877 + 878 + static inline unsigned long cast_size_t_to_ulong(size_t a) 879 + { 880 + if (a != (unsigned long)a) 881 + die("object too large to read on this platform: %" 882 + PRIuMAX" is cut off to %lu", 883 + (uintmax_t)a, (unsigned long)a); 884 + return (unsigned long)a; 860 885 } 861 886 862 887 #ifdef HAVE_ALLOCA_H