divide.hpp 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647
  1. ///////////////////////////////////////////////////////////////
  2. // Copyright 2012 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_
  5. //
  6. // Comparison operators for cpp_int_backend:
  7. //
  8. #ifndef BOOST_MP_CPP_INT_DIV_HPP
  9. #define BOOST_MP_CPP_INT_DIV_HPP
  10. namespace boost{ namespace multiprecision{ namespace backends{
  11. template <class CppInt1, class CppInt2, class CppInt3>
  12. void divide_unsigned_helper(
  13. CppInt1* result,
  14. const CppInt2& x,
  15. const CppInt3& y,
  16. CppInt1& r)
  17. {
  18. if(((void*)result == (void*)&x) || ((void*)&r == (void*)&x))
  19. {
  20. CppInt2 t(x);
  21. divide_unsigned_helper(result, t, y, r);
  22. return;
  23. }
  24. if(((void*)result == (void*)&y) || ((void*)&r == (void*)&y))
  25. {
  26. CppInt3 t(y);
  27. divide_unsigned_helper(result, x, t, r);
  28. return;
  29. }
  30. /*
  31. Very simple, fairly braindead long division.
  32. Start by setting the remainder equal to x, and the
  33. result equal to 0. Then in each loop we calculate our
  34. "best guess" for how many times y divides into r,
  35. add our guess to the result, and subtract guess*y
  36. from the remainder r. One wrinkle is that the remainder
  37. may go negative, in which case we subtract the current guess
  38. from the result rather than adding. The value of the guess
  39. is determined by dividing the most-significant-limb of the
  40. current remainder by the most-significant-limb of y.
  41. Note that there are more efficient algorithms than this
  42. available, in particular see Knuth Vol 2. However for small
  43. numbers of limbs this generally outperforms the alternatives
  44. and avoids the normalisation step which would require extra storage.
  45. */
  46. using default_ops::eval_subtract;
  47. if(result == &r)
  48. {
  49. CppInt1 rem;
  50. divide_unsigned_helper(result, x, y, rem);
  51. r = rem;
  52. return;
  53. }
  54. //
  55. // Find the most significant words of numerator and denominator.
  56. //
  57. limb_type y_order = y.size() - 1;
  58. if(y_order == 0)
  59. {
  60. //
  61. // Only a single non-zero limb in the denominator, in this case
  62. // we can use a specialized divide-by-single-limb routine which is
  63. // much faster. This also handles division by zero:
  64. //
  65. divide_unsigned_helper(result, x, y.limbs()[y_order], r);
  66. return;
  67. }
  68. typename CppInt2::const_limb_pointer px = x.limbs();
  69. typename CppInt3::const_limb_pointer py = y.limbs();
  70. limb_type r_order = x.size() - 1;
  71. if((r_order == 0) && (*px == 0))
  72. {
  73. // x is zero, so is the result:
  74. r = x;
  75. if(result)
  76. *result = x;
  77. return;
  78. }
  79. r = x;
  80. r.sign(false);
  81. if(result)
  82. *result = static_cast<limb_type>(0u);
  83. //
  84. // Check if the remainder is already less than the divisor, if so
  85. // we already have the result. Note we try and avoid a full compare
  86. // if we can:
  87. //
  88. if(r_order <= y_order)
  89. {
  90. if((r_order < y_order) || (r.compare_unsigned(y) < 0))
  91. {
  92. return;
  93. }
  94. }
  95. CppInt1 t;
  96. bool r_neg = false;
  97. //
  98. // See if we can short-circuit long division, and use basic arithmetic instead:
  99. //
  100. if(r_order == 0)
  101. {
  102. if(result)
  103. {
  104. *result = px[0] / py[0];
  105. }
  106. r = px[0] % py[0];
  107. return;
  108. }
  109. else if(r_order == 1)
  110. {
  111. double_limb_type a, b;
  112. a = (static_cast<double_limb_type>(px[1]) << CppInt1::limb_bits) | px[0];
  113. b = y_order ?
  114. (static_cast<double_limb_type>(py[1]) << CppInt1::limb_bits) | py[0]
  115. : py[0];
  116. if(result)
  117. {
  118. *result = a / b;
  119. }
  120. r = a % b;
  121. return;
  122. }
  123. //
  124. // prepare result:
  125. //
  126. if(result)
  127. result->resize(1 + r_order - y_order, 1 + r_order - y_order);
  128. typename CppInt1::const_limb_pointer prem = r.limbs();
  129. // This is initialised just to keep the compiler from emitting useless warnings later on:
  130. typename CppInt1::limb_pointer pr
  131. = typename CppInt1::limb_pointer();
  132. if(result)
  133. {
  134. pr = result->limbs();
  135. for(unsigned i = 1; i < 1 + r_order - y_order; ++i)
  136. pr[i] = 0;
  137. }
  138. bool first_pass = true;
  139. do
  140. {
  141. //
  142. // Calculate our best guess for how many times y divides into r:
  143. //
  144. limb_type guess;
  145. if((prem[r_order] <= py[y_order]) && (r_order > 0))
  146. {
  147. double_limb_type a, b, v;
  148. a = (static_cast<double_limb_type>(prem[r_order]) << CppInt1::limb_bits) | prem[r_order - 1];
  149. b = py[y_order];
  150. v = a / b;
  151. if(v > CppInt1::max_limb_value)
  152. guess = 1;
  153. else
  154. {
  155. guess = static_cast<limb_type>(v);
  156. --r_order;
  157. }
  158. }
  159. else if(r_order == 0)
  160. {
  161. guess = prem[0] / py[y_order];
  162. }
  163. else
  164. {
  165. double_limb_type a, b, v;
  166. a = (static_cast<double_limb_type>(prem[r_order]) << CppInt1::limb_bits) | prem[r_order - 1];
  167. b = (y_order > 0) ? (static_cast<double_limb_type>(py[y_order]) << CppInt1::limb_bits) | py[y_order - 1] : (static_cast<double_limb_type>(py[y_order]) << CppInt1::limb_bits);
  168. v = a / b;
  169. guess = static_cast<limb_type>(v);
  170. }
  171. BOOST_ASSERT(guess); // If the guess ever gets to zero we go on forever....
  172. //
  173. // Update result:
  174. //
  175. limb_type shift = r_order - y_order;
  176. if(result)
  177. {
  178. if(r_neg)
  179. {
  180. if(pr[shift] > guess)
  181. pr[shift] -= guess;
  182. else
  183. {
  184. t.resize(shift + 1, shift + 1);
  185. t.limbs()[shift] = guess;
  186. for(unsigned i = 0; i < shift; ++i)
  187. t.limbs()[i] = 0;
  188. eval_subtract(*result, t);
  189. }
  190. }
  191. else if(CppInt1::max_limb_value - pr[shift] > guess)
  192. pr[shift] += guess;
  193. else
  194. {
  195. t.resize(shift + 1, shift + 1);
  196. t.limbs()[shift] = guess;
  197. for(unsigned i = 0; i < shift; ++i)
  198. t.limbs()[i] = 0;
  199. eval_add(*result, t);
  200. }
  201. }
  202. //
  203. // Calculate guess * y, we use a fused mutiply-shift O(N) for this
  204. // rather than a full O(N^2) multiply:
  205. //
  206. double_limb_type carry = 0;
  207. t.resize(y.size() + shift + 1, y.size() + shift);
  208. bool truncated_t = !CppInt1::variable && (t.size() != y.size() + shift + 1);
  209. typename CppInt1::limb_pointer pt = t.limbs();
  210. for(unsigned i = 0; i < shift; ++i)
  211. pt[i] = 0;
  212. for(unsigned i = 0; i < y.size(); ++i)
  213. {
  214. carry += static_cast<double_limb_type>(py[i]) * static_cast<double_limb_type>(guess);
  215. pt[i + shift] = static_cast<limb_type>(carry);
  216. carry >>= CppInt1::limb_bits;
  217. }
  218. if(carry && !truncated_t)
  219. {
  220. pt[t.size() - 1] = static_cast<limb_type>(carry);
  221. }
  222. else if(!truncated_t)
  223. {
  224. t.resize(t.size() - 1, t.size() - 1);
  225. }
  226. //
  227. // Update r in a way that won't actually produce a negative result
  228. // in case the argument types are unsigned:
  229. //
  230. if(truncated_t && carry)
  231. {
  232. // We need to calculate 2^n + t - r
  233. // where n is the number of bits in this type.
  234. // Simplest way is to get 2^n - r by complementing
  235. // r, then add t to it. Note that we can't call eval_complement
  236. // in case this is a signed checked type:
  237. for(unsigned i = 0; i <= r_order; ++i)
  238. r.limbs()[i] = ~prem[i];
  239. r.normalize();
  240. eval_increment(r);
  241. eval_add(r, t);
  242. r_neg = !r_neg;
  243. }
  244. else if(r.compare(t) > 0)
  245. {
  246. eval_subtract(r, t);
  247. }
  248. else
  249. {
  250. r.swap(t);
  251. eval_subtract(r, t);
  252. prem = r.limbs();
  253. r_neg = !r_neg;
  254. }
  255. //
  256. // First time through we need to strip any leading zero, otherwise
  257. // the termination condition goes belly-up:
  258. //
  259. if(result && first_pass)
  260. {
  261. first_pass = false;
  262. while(pr[result->size() - 1] == 0)
  263. result->resize(result->size() - 1, result->size() - 1);
  264. }
  265. //
  266. // Update r_order:
  267. //
  268. r_order = r.size() - 1;
  269. if(r_order < y_order)
  270. break;
  271. }
  272. // Termination condition is really just a check that r > y, but with a common
  273. // short-circuit case handled first:
  274. while((r_order > y_order) || (r.compare_unsigned(y) >= 0));
  275. //
  276. // We now just have to normalise the result:
  277. //
  278. if(r_neg && eval_get_sign(r))
  279. {
  280. // We have one too many in the result:
  281. if(result)
  282. eval_decrement(*result);
  283. if(y.sign())
  284. {
  285. r.negate();
  286. eval_subtract(r, y);
  287. }
  288. else
  289. eval_subtract(r, y, r);
  290. }
  291. BOOST_ASSERT(r.compare_unsigned(y) < 0); // remainder must be less than the divisor or our code has failed
  292. }
  293. template <class CppInt1, class CppInt2>
  294. void divide_unsigned_helper(
  295. CppInt1* result,
  296. const CppInt2& x,
  297. limb_type y,
  298. CppInt1& r)
  299. {
  300. if(((void*)result == (void*)&x) || ((void*)&r == (void*)&x))
  301. {
  302. CppInt2 t(x);
  303. divide_unsigned_helper(result, t, y, r);
  304. return;
  305. }
  306. if(result == &r)
  307. {
  308. CppInt1 rem;
  309. divide_unsigned_helper(result, x, y, rem);
  310. r = rem;
  311. return;
  312. }
  313. // As above, but simplified for integer divisor:
  314. using default_ops::eval_subtract;
  315. if(y == 0)
  316. {
  317. BOOST_THROW_EXCEPTION(std::overflow_error("Integer Division by zero."));
  318. }
  319. //
  320. // Find the most significant word of numerator.
  321. //
  322. limb_type r_order = x.size() - 1;
  323. //
  324. // Set remainder and result to their initial values:
  325. //
  326. r = x;
  327. r.sign(false);
  328. typename CppInt1::limb_pointer pr = r.limbs();
  329. //
  330. // check for x < y, try to do this without actually having to
  331. // do a full comparison:
  332. //
  333. if((r_order == 0) && (*pr < y))
  334. {
  335. if(result)
  336. *result = static_cast<limb_type>(0u);
  337. return;
  338. }
  339. //
  340. // See if we can short-circuit long division, and use basic arithmetic instead:
  341. //
  342. if(r_order == 0)
  343. {
  344. if(result)
  345. {
  346. *result = *pr / y;
  347. result->sign(x.sign());
  348. }
  349. *pr %= y;
  350. r.sign(x.sign());
  351. return;
  352. }
  353. else if(r_order == 1)
  354. {
  355. double_limb_type a;
  356. a = (static_cast<double_limb_type>(pr[r_order]) << CppInt1::limb_bits) | pr[0];
  357. if(result)
  358. {
  359. *result = a / y;
  360. result->sign(x.sign());
  361. }
  362. r = a % y;
  363. r.sign(x.sign());
  364. return;
  365. }
  366. // This is initialised just to keep the compiler from emitting useless warnings later on:
  367. typename CppInt1::limb_pointer pres = typename CppInt1::limb_pointer();
  368. if(result)
  369. {
  370. result->resize(r_order + 1, r_order + 1);
  371. pres = result->limbs();
  372. if(result->size() > r_order)
  373. pres[r_order] = 0; // just in case we don't set the most significant limb below.
  374. }
  375. do
  376. {
  377. //
  378. // Calculate our best guess for how many times y divides into r:
  379. //
  380. if((pr[r_order] < y) && r_order)
  381. {
  382. double_limb_type a, b;
  383. a = (static_cast<double_limb_type>(pr[r_order]) << CppInt1::limb_bits) | pr[r_order - 1];
  384. b = a % y;
  385. r.resize(r.size() - 1, r.size() - 1);
  386. --r_order;
  387. pr[r_order] = static_cast<limb_type>(b);
  388. if(result)
  389. pres[r_order] = static_cast<limb_type>(a / y);
  390. if(r_order && pr[r_order] == 0)
  391. {
  392. --r_order; // No remainder, division was exact.
  393. r.resize(r.size() - 1, r.size() - 1);
  394. if(result)
  395. pres[r_order] = static_cast<limb_type>(0u);
  396. }
  397. }
  398. else
  399. {
  400. if(result)
  401. pres[r_order] = pr[r_order] / y;
  402. pr[r_order] %= y;
  403. if(r_order && pr[r_order] == 0)
  404. {
  405. --r_order; // No remainder, division was exact.
  406. r.resize(r.size() - 1, r.size() - 1);
  407. if(result)
  408. pres[r_order] = static_cast<limb_type>(0u);
  409. }
  410. }
  411. }
  412. // Termination condition is really just a check that r >= y, but with two common
  413. // short-circuit cases handled first:
  414. while(r_order || (pr[r_order] >= y));
  415. if(result)
  416. {
  417. result->normalize();
  418. result->sign(x.sign());
  419. }
  420. r.normalize();
  421. r.sign(x.sign());
  422. BOOST_ASSERT(r.compare(y) < 0); // remainder must be less than the divisor or our code has failed
  423. }
  424. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2, unsigned MinBits3, unsigned MaxBits3, cpp_integer_type SignType3, cpp_int_check_type Checked3, class Allocator3>
  425. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits3, MaxBits3, SignType3, Checked3, Allocator3> >::value >::type
  426. eval_divide(
  427. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  428. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& a,
  429. const cpp_int_backend<MinBits3, MaxBits3, SignType3, Checked3, Allocator3>& b)
  430. {
  431. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> r;
  432. bool s = a.sign() != b.sign();
  433. divide_unsigned_helper(&result, a, b, r);
  434. result.sign(s);
  435. }
  436. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  437. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value >::type
  438. eval_divide(
  439. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  440. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& a,
  441. limb_type& b)
  442. {
  443. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> r;
  444. bool s = a.sign();
  445. divide_unsigned_helper(&result, a, b, r);
  446. result.sign(s);
  447. }
  448. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  449. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value >::type
  450. eval_divide(
  451. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  452. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& a,
  453. signed_limb_type& b)
  454. {
  455. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> r;
  456. bool s = a.sign() != (b < 0);
  457. divide_unsigned_helper(&result, a, static_cast<limb_type>(boost::multiprecision::detail::unsigned_abs(b)), r);
  458. result.sign(s);
  459. }
  460. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  461. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value >::type
  462. eval_divide(
  463. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  464. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& b)
  465. {
  466. // There is no in place divide:
  467. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> a(result);
  468. eval_divide(result, a, b);
  469. }
  470. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  471. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value>::type
  472. eval_divide(
  473. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  474. limb_type b)
  475. {
  476. // There is no in place divide:
  477. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> a(result);
  478. eval_divide(result, a, b);
  479. }
  480. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  481. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value>::type
  482. eval_divide(
  483. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  484. signed_limb_type b)
  485. {
  486. // There is no in place divide:
  487. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> a(result);
  488. eval_divide(result, a, b);
  489. }
  490. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2, unsigned MinBits3, unsigned MaxBits3, cpp_integer_type SignType3, cpp_int_check_type Checked3, class Allocator3>
  491. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits3, MaxBits3, SignType3, Checked3, Allocator3> >::value >::type
  492. eval_modulus(
  493. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  494. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& a,
  495. const cpp_int_backend<MinBits3, MaxBits3, SignType3, Checked3, Allocator3>& b)
  496. {
  497. bool s = a.sign();
  498. divide_unsigned_helper(static_cast<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>* >(0), a, b, result);
  499. result.sign(s);
  500. }
  501. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  502. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value >::type
  503. eval_modulus(
  504. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  505. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& a, limb_type b)
  506. {
  507. bool s = a.sign();
  508. divide_unsigned_helper(static_cast<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>* >(0), a, b, result);
  509. result.sign(s);
  510. }
  511. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  512. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value >::type
  513. eval_modulus(
  514. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  515. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& a,
  516. signed_limb_type b)
  517. {
  518. bool s = a.sign();
  519. divide_unsigned_helper(static_cast<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>* >(0), a, static_cast<limb_type>(boost::multiprecision::detail::unsigned_abs(b)), result);
  520. result.sign(s);
  521. }
  522. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1, unsigned MinBits2, unsigned MaxBits2, cpp_integer_type SignType2, cpp_int_check_type Checked2, class Allocator2>
  523. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value && !is_trivial_cpp_int<cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2> >::value >::type
  524. eval_modulus(
  525. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  526. const cpp_int_backend<MinBits2, MaxBits2, SignType2, Checked2, Allocator2>& b)
  527. {
  528. // There is no in place divide:
  529. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> a(result);
  530. eval_modulus(result, a, b);
  531. }
  532. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  533. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value>::type
  534. eval_modulus(
  535. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  536. limb_type b)
  537. {
  538. // There is no in place divide:
  539. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> a(result);
  540. eval_modulus(result, a, b);
  541. }
  542. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  543. BOOST_MP_FORCEINLINE typename enable_if_c<!is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value>::type
  544. eval_modulus(
  545. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  546. signed_limb_type b)
  547. {
  548. // There is no in place divide:
  549. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> a(result);
  550. eval_modulus(result, a, b);
  551. }
  552. //
  553. // Over again for trivial cpp_int's:
  554. //
  555. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  556. BOOST_MP_FORCEINLINE typename enable_if_c<
  557. is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  558. && is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  559. && (is_signed_number<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  560. || is_signed_number<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value)
  561. >::type
  562. eval_divide(
  563. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  564. const cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& o)
  565. {
  566. if(!*o.limbs())
  567. BOOST_THROW_EXCEPTION(std::overflow_error("Division by zero."));
  568. *result.limbs() /= *o.limbs();
  569. result.sign(result.sign() != o.sign());
  570. }
  571. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  572. BOOST_MP_FORCEINLINE typename enable_if_c<
  573. is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  574. && is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  575. && is_unsigned_number<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  576. && is_unsigned_number<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  577. >::type
  578. eval_divide(
  579. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  580. const cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& o)
  581. {
  582. if(!*o.limbs())
  583. BOOST_THROW_EXCEPTION(std::overflow_error("Division by zero."));
  584. *result.limbs() /= *o.limbs();
  585. }
  586. template <unsigned MinBits1, unsigned MaxBits1, cpp_integer_type SignType1, cpp_int_check_type Checked1, class Allocator1>
  587. BOOST_MP_FORCEINLINE typename enable_if_c<
  588. is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  589. && is_trivial_cpp_int<cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1> >::value
  590. >::type
  591. eval_modulus(
  592. cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& result,
  593. const cpp_int_backend<MinBits1, MaxBits1, SignType1, Checked1, Allocator1>& o)
  594. {
  595. if(!*o.limbs())
  596. BOOST_THROW_EXCEPTION(std::overflow_error("Division by zero."));
  597. *result.limbs() %= *o.limbs();
  598. result.sign(result.sign());
  599. }
  600. }}} // namespaces
  601. #endif