int-util.h 3.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. // Copyright (c) 2014-2018, The Monero Project
  2. //
  3. // All rights reserved.
  4. //
  5. // Redistribution and use in source and binary forms, with or without
  6. // modification, are permitted provided that the following conditions are met:
  7. //
  8. // 1. Redistributions of source code must retain the above copyright notice,
  9. // this list of conditions and the following disclaimer.
  10. //
  11. // 2. Redistributions in binary form must reproduce the above copyright notice,
  12. // this list of conditions and the following disclaimer in the documentation
  13. // and/or other materials provided with the distribution.
  14. //
  15. // 3. Neither the name of the copyright holder nor the names of its contributors
  16. // may be used to endorse or promote products derived from this software
  17. // without specific prior written permission.
  18. //
  19. // THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  20. // AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  21. // IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  22. // ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
  23. // LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  24. // CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  25. // SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  26. // INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  27. // CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  28. // ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  29. // POSSIBILITY OF SUCH DAMAGE.
  30. //
  31. // Parts of this file are originally copyright (c) 2012-2013 The Cryptonote
  32. // developers
  33. #if USE_MONERO
  34. #pragma once
  35. #include <assert.h>
  36. #include <stdint.h>
  37. static inline uint64_t hi_dword(uint64_t val) { return val >> 32; }
  38. static inline uint64_t lo_dword(uint64_t val) { return val & 0xFFFFFFFF; }
  39. static inline uint64_t mul128(uint64_t multiplier, uint64_t multiplicand,
  40. uint64_t* product_hi) {
  41. // multiplier = ab = a * 2^32 + b
  42. // multiplicand = cd = c * 2^32 + d
  43. // ab * cd = a * c * 2^64 + (a * d + b * c) * 2^32 + b * d
  44. uint64_t a = hi_dword(multiplier);
  45. uint64_t b = lo_dword(multiplier);
  46. uint64_t c = hi_dword(multiplicand);
  47. uint64_t d = lo_dword(multiplicand);
  48. uint64_t ac = a * c;
  49. uint64_t ad = a * d;
  50. uint64_t bc = b * c;
  51. uint64_t bd = b * d;
  52. uint64_t adbc = ad + bc;
  53. uint64_t adbc_carry = adbc < ad ? 1 : 0;
  54. // multiplier * multiplicand = product_hi * 2^64 + product_lo
  55. uint64_t product_lo = bd + (adbc << 32);
  56. uint64_t product_lo_carry = product_lo < bd ? 1 : 0;
  57. *product_hi = ac + (adbc >> 32) + (adbc_carry << 32) + product_lo_carry;
  58. assert(ac <= *product_hi);
  59. return product_lo;
  60. }
  61. #define SWAP64(x) \
  62. ((((uint64_t)(x)&0x00000000000000ff) << 56) | \
  63. (((uint64_t)(x)&0x000000000000ff00) << 40) | \
  64. (((uint64_t)(x)&0x0000000000ff0000) << 24) | \
  65. (((uint64_t)(x)&0x00000000ff000000) << 8) | \
  66. (((uint64_t)(x)&0x000000ff00000000) >> 8) | \
  67. (((uint64_t)(x)&0x0000ff0000000000) >> 24) | \
  68. (((uint64_t)(x)&0x00ff000000000000) >> 40) | \
  69. (((uint64_t)(x)&0xff00000000000000) >> 56))
  70. #endif // USE_MONERO