int_util.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  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) {
  38. return val >> 32;
  39. }
  40. static inline uint64_t lo_dword(uint64_t val) {
  41. return val & 0xFFFFFFFF;
  42. }
  43. static inline uint64_t mul128(uint64_t multiplier, uint64_t multiplicand, uint64_t* product_hi) {
  44. // multiplier = ab = a * 2^32 + b
  45. // multiplicand = cd = c * 2^32 + d
  46. // ab * cd = a * c * 2^64 + (a * d + b * c) * 2^32 + b * d
  47. uint64_t a = hi_dword(multiplier);
  48. uint64_t b = lo_dword(multiplier);
  49. uint64_t c = hi_dword(multiplicand);
  50. uint64_t d = lo_dword(multiplicand);
  51. uint64_t ac = a * c;
  52. uint64_t ad = a * d;
  53. uint64_t bc = b * c;
  54. uint64_t bd = b * d;
  55. uint64_t adbc = ad + bc;
  56. uint64_t adbc_carry = adbc < ad ? 1 : 0;
  57. // multiplier * multiplicand = product_hi * 2^64 + product_lo
  58. uint64_t product_lo = bd + (adbc << 32);
  59. uint64_t product_lo_carry = product_lo < bd ? 1 : 0;
  60. *product_hi = ac + (adbc >> 32) + (adbc_carry << 32) + product_lo_carry;
  61. assert(ac <= *product_hi);
  62. return product_lo;
  63. }
  64. #define SWAP64(x) \
  65. ((((uint64_t)(x)&0x00000000000000ff) << 56) | (((uint64_t)(x)&0x000000000000ff00) << 40) | \
  66. (((uint64_t)(x)&0x0000000000ff0000) << 24) | (((uint64_t)(x)&0x00000000ff000000) << 8) | \
  67. (((uint64_t)(x)&0x000000ff00000000) >> 8) | (((uint64_t)(x)&0x0000ff0000000000) >> 24) | \
  68. (((uint64_t)(x)&0x00ff000000000000) >> 40) | (((uint64_t)(x)&0xff00000000000000) >> 56))
  69. #endif // USE_MONERO