Merge tag 'linux-kselftest-4.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel...
[linux-2.6/btrfs-unstable.git] / lib / gcd.c
blob227dea9244257b014c36c54fb0768a961a5f5dcb
1 #include <linux/kernel.h>
2 #include <linux/gcd.h>
3 #include <linux/export.h>
5 /*
6 * This implements the binary GCD algorithm. (Often attributed to Stein,
7 * but as Knuth has noted, appears in a first-century Chinese math text.)
9 * This is faster than the division-based algorithm even on x86, which
10 * has decent hardware division.
13 #if !defined(CONFIG_CPU_NO_EFFICIENT_FFS) && !defined(CPU_NO_EFFICIENT_FFS)
15 /* If __ffs is available, the even/odd algorithm benchmarks slower. */
17 /**
18 * gcd - calculate and return the greatest common divisor of 2 unsigned longs
19 * @a: first value
20 * @b: second value
22 unsigned long gcd(unsigned long a, unsigned long b)
24 unsigned long r = a | b;
26 if (!a || !b)
27 return r;
29 b >>= __ffs(b);
30 if (b == 1)
31 return r & -r;
33 for (;;) {
34 a >>= __ffs(a);
35 if (a == 1)
36 return r & -r;
37 if (a == b)
38 return a << __ffs(r);
40 if (a < b)
41 swap(a, b);
42 a -= b;
46 #else
48 /* If normalization is done by loops, the even/odd algorithm is a win. */
49 unsigned long gcd(unsigned long a, unsigned long b)
51 unsigned long r = a | b;
53 if (!a || !b)
54 return r;
56 /* Isolate lsbit of r */
57 r &= -r;
59 while (!(b & r))
60 b >>= 1;
61 if (b == r)
62 return r;
64 for (;;) {
65 while (!(a & r))
66 a >>= 1;
67 if (a == r)
68 return r;
69 if (a == b)
70 return a;
72 if (a < b)
73 swap(a, b);
74 a -= b;
75 a >>= 1;
76 if (a & r)
77 a += b;
78 a >>= 1;
82 #endif
84 EXPORT_SYMBOL_GPL(gcd);