2014-07-18 13:56:17 +00:00
|
|
|
// Rust Bitcoin Library
|
|
|
|
// Written in 2014 by
|
|
|
|
// Andrew Poelstra <apoelstra@wpsoftware.net>
|
|
|
|
//
|
|
|
|
// To the extent possible under law, the author(s) have dedicated all
|
|
|
|
// copyright and related and neighboring rights to this software to
|
|
|
|
// the public domain worldwide. This software is distributed without
|
|
|
|
// any warranty.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the CC0 Public Domain Dedication
|
|
|
|
// along with this software.
|
|
|
|
// If not, see <http://creativecommons.org/publicdomain/zero/1.0/>.
|
|
|
|
//
|
|
|
|
|
|
|
|
//! # Big unsigned integer types
|
|
|
|
//!
|
|
|
|
//! Implementation of a various large-but-fixed sized unsigned integer types.
|
|
|
|
//! The functions here are designed to be fast.
|
|
|
|
//!
|
|
|
|
|
|
|
|
use std::fmt;
|
|
|
|
use std::num::{Zero, One};
|
|
|
|
|
2014-08-01 16:01:39 +00:00
|
|
|
use network::serialize::RawEncoder;
|
2014-07-18 13:56:17 +00:00
|
|
|
use util::BitArray;
|
|
|
|
|
2015-01-18 18:16:01 +00:00
|
|
|
macro_rules! construct_uint {
|
2014-07-18 13:56:17 +00:00
|
|
|
($name:ident, $n_words:expr) => (
|
|
|
|
/// Little-endian large integer type
|
|
|
|
#[repr(C)]
|
2015-01-18 18:16:01 +00:00
|
|
|
pub struct $name(pub [u64; $n_words]);
|
|
|
|
impl_array_newtype!($name, u64, $n_words);
|
2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
impl $name {
|
|
|
|
/// Conversion to u32
|
|
|
|
#[inline]
|
|
|
|
pub fn low_u32(&self) -> u32 {
|
|
|
|
let &$name(ref arr) = self;
|
|
|
|
arr[0] as u32
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Return the least number of bits needed to represent the number
|
|
|
|
#[inline]
|
2015-04-05 03:13:19 +00:00
|
|
|
pub fn bits(&self) -> usize {
|
2014-07-18 13:56:17 +00:00
|
|
|
let &$name(ref arr) = self;
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 1..$n_words {
|
2015-01-18 18:16:01 +00:00
|
|
|
if arr[$n_words - i] > 0 { return (0x40 * ($n_words - i + 1)) - arr[$n_words - i].leading_zeros() as usize; }
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
2015-04-07 01:51:11 +00:00
|
|
|
0x40 - arr[0].leading_zeros() as usize
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Multiplication by u32
|
2015-04-07 01:51:11 +00:00
|
|
|
pub fn mul_u32(self, other: u32) -> $name {
|
|
|
|
let $name(ref arr) = self;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut carry = [0u64; $n_words];
|
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
let upper = other as u64 * (arr[i] >> 32);
|
|
|
|
let lower = other as u64 * (arr[i] & 0xFFFFFFFF);
|
|
|
|
if i < 3 {
|
|
|
|
carry[i + 1] += upper >> 32;
|
|
|
|
}
|
|
|
|
ret[i] = lower + (upper << 32);
|
|
|
|
}
|
|
|
|
$name(ret) + $name(carry)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 03:13:19 +00:00
|
|
|
impl ::std::num::FromPrimitive for $name {
|
2014-07-18 13:56:17 +00:00
|
|
|
#[inline]
|
|
|
|
fn from_u64(init: u64) -> Option<$name> {
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0; $n_words];
|
2014-07-18 13:56:17 +00:00
|
|
|
ret[0] = init;
|
|
|
|
Some($name(ret))
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
fn from_i64(init: i64) -> Option<$name> {
|
2015-04-05 03:13:19 +00:00
|
|
|
::std::num::FromPrimitive::from_u64(init as u64)
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 03:13:19 +00:00
|
|
|
impl ::std::num::Zero for $name {
|
2015-01-18 18:16:01 +00:00
|
|
|
fn zero() -> $name { $name([0; $n_words]) }
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
|
2015-04-05 03:13:19 +00:00
|
|
|
impl ::std::num::One for $name {
|
2014-07-18 13:56:17 +00:00
|
|
|
fn one() -> $name {
|
2015-01-18 18:16:01 +00:00
|
|
|
$name({ let mut ret = [0; $n_words]; ret[0] = 1; ret })
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Add<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2015-04-07 01:51:11 +00:00
|
|
|
fn add(self, other: $name) -> $name {
|
|
|
|
let $name(ref me) = self;
|
|
|
|
let $name(ref you) = other;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
|
|
|
let mut carry = [0u64; $n_words];
|
2014-07-18 13:56:17 +00:00
|
|
|
let mut b_carry = false;
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
ret[i] = me[i] + you[i];
|
|
|
|
if i < $n_words - 1 && ret[i] < me[i] {
|
|
|
|
carry[i + 1] = 1;
|
|
|
|
b_carry = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if b_carry { $name(ret) + $name(carry) } else { $name(ret) }
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Sub<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2014-07-18 13:56:17 +00:00
|
|
|
#[inline]
|
2015-04-07 01:51:11 +00:00
|
|
|
fn sub(self, other: $name) -> $name {
|
|
|
|
self + !other + One::one()
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Mul<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2015-04-07 01:51:11 +00:00
|
|
|
fn mul(self, other: $name) -> $name {
|
|
|
|
let mut me = self;
|
2014-07-18 13:56:17 +00:00
|
|
|
// TODO: be more efficient about this
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..(2 * $n_words) {
|
2014-07-18 13:56:17 +00:00
|
|
|
me = me + me.mul_u32((other >> (32 * i)).low_u32()) << (32 * i);
|
|
|
|
}
|
|
|
|
me
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Div<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2015-04-07 01:51:11 +00:00
|
|
|
fn div(self, other: $name) -> $name {
|
|
|
|
let mut sub_copy = self;
|
|
|
|
let mut shift_copy = other;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
let my_bits = self.bits();
|
|
|
|
let your_bits = other.bits();
|
|
|
|
|
|
|
|
// Check for division by 0
|
|
|
|
assert!(your_bits != 0);
|
|
|
|
|
|
|
|
// Early return in case we are dividing by a larger number than us
|
|
|
|
if my_bits < your_bits {
|
|
|
|
return $name(ret);
|
|
|
|
}
|
|
|
|
|
|
|
|
// Bitwise long division
|
|
|
|
let mut shift = my_bits - your_bits;
|
|
|
|
shift_copy = shift_copy << shift;
|
|
|
|
loop {
|
|
|
|
if sub_copy >= shift_copy {
|
|
|
|
ret[shift / 64] |= 1 << (shift % 64);
|
2015-04-07 01:51:11 +00:00
|
|
|
sub_copy = sub_copy - shift_copy;
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
shift_copy = shift_copy >> 1;
|
|
|
|
if shift == 0 { break; }
|
|
|
|
shift -= 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl BitArray for $name {
|
|
|
|
#[inline]
|
2015-01-18 18:16:01 +00:00
|
|
|
fn bit(&self, index: usize) -> bool {
|
2014-07-18 13:56:17 +00:00
|
|
|
let &$name(ref arr) = self;
|
|
|
|
arr[index / 64] & (1 << (index % 64)) != 0
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2015-01-18 18:16:01 +00:00
|
|
|
fn bit_slice(&self, start: usize, end: usize) -> $name {
|
2015-04-07 01:51:11 +00:00
|
|
|
(*self >> start).mask(end - start)
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2015-01-18 18:16:01 +00:00
|
|
|
fn mask(&self, n: usize) -> $name {
|
2014-07-18 13:56:17 +00:00
|
|
|
let &$name(ref arr) = self;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0; $n_words];
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
if n >= 0x40 * (i + 1) {
|
|
|
|
ret[i] = arr[i];
|
|
|
|
} else {
|
|
|
|
ret[i] = arr[i] & ((1 << (n - 0x40 * i)) - 1);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
|
|
|
|
#[inline]
|
2015-01-18 18:16:01 +00:00
|
|
|
fn trailing_zeros(&self) -> usize {
|
2014-07-18 13:56:17 +00:00
|
|
|
let &$name(ref arr) = self;
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..($n_words - 1) {
|
2015-04-07 01:51:11 +00:00
|
|
|
if arr[i] > 0 { return (0x40 * i) + arr[i].trailing_zeros() as usize; }
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
2015-04-07 01:51:11 +00:00
|
|
|
(0x40 * ($n_words - 1)) + arr[3].trailing_zeros() as usize
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::BitAnd<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2014-07-18 13:56:17 +00:00
|
|
|
#[inline]
|
2015-04-07 01:51:11 +00:00
|
|
|
fn bitand(self, other: $name) -> $name {
|
|
|
|
let $name(ref arr1) = self;
|
|
|
|
let $name(ref arr2) = other;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
ret[i] = arr1[i] & arr2[i];
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::BitXor<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2014-07-18 13:56:17 +00:00
|
|
|
#[inline]
|
2015-04-07 01:51:11 +00:00
|
|
|
fn bitxor(self, other: $name) -> $name {
|
|
|
|
let $name(ref arr1) = self;
|
|
|
|
let $name(ref arr2) = other;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
ret[i] = arr1[i] ^ arr2[i];
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::BitOr<$name> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2014-07-18 13:56:17 +00:00
|
|
|
#[inline]
|
2015-04-07 01:51:11 +00:00
|
|
|
fn bitor(self, other: $name) -> $name {
|
|
|
|
let $name(ref arr1) = self;
|
|
|
|
let $name(ref arr2) = other;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
ret[i] = arr1[i] | arr2[i];
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Not for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2014-07-18 13:56:17 +00:00
|
|
|
#[inline]
|
2015-04-07 01:51:11 +00:00
|
|
|
fn not(self) -> $name {
|
|
|
|
let $name(ref arr) = self;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
ret[i] = !arr[i];
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Shl<usize> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2015-04-07 01:51:11 +00:00
|
|
|
fn shl(self, shift: usize) -> $name {
|
|
|
|
let $name(ref original) = self;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-07 01:51:11 +00:00
|
|
|
let word_shift = shift / 64;
|
|
|
|
let bit_shift = shift % 64;
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
// Shift
|
|
|
|
if bit_shift < 64 && i + word_shift < $n_words {
|
|
|
|
ret[i + word_shift] += original[i] << bit_shift;
|
|
|
|
}
|
|
|
|
// Carry
|
|
|
|
if bit_shift > 0 && i + word_shift + 1 < $n_words {
|
|
|
|
ret[i + word_shift + 1] += original[i] >> (64 - bit_shift);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl ::std::ops::Shr<usize> for $name {
|
|
|
|
type Output = $name;
|
|
|
|
|
2014-07-18 13:56:17 +00:00
|
|
|
#[allow(unsigned_negate)]
|
2015-04-07 01:51:11 +00:00
|
|
|
fn shr(self, shift: usize) -> $name {
|
|
|
|
let $name(ref original) = self;
|
2015-01-18 18:16:01 +00:00
|
|
|
let mut ret = [0u64; $n_words];
|
2015-04-07 01:51:11 +00:00
|
|
|
let word_shift = shift / 64;
|
|
|
|
let bit_shift = shift % 64;
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
2014-07-18 13:56:17 +00:00
|
|
|
// Shift
|
|
|
|
if bit_shift < 64 && i - word_shift < $n_words {
|
|
|
|
ret[i - word_shift] += original[i] >> bit_shift;
|
|
|
|
}
|
|
|
|
// Carry
|
|
|
|
if bit_shift > 0 && i - word_shift - 1 < $n_words {
|
|
|
|
ret[i - word_shift - 1] += original[i] << (64 - bit_shift);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$name(ret)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 03:13:19 +00:00
|
|
|
impl ::std::cmp::Ord for $name {
|
|
|
|
fn cmp(&self, other: &$name) -> ::std::cmp::Ordering {
|
2014-07-18 13:56:17 +00:00
|
|
|
let &$name(ref me) = self;
|
|
|
|
let &$name(ref you) = other;
|
2015-04-05 03:13:19 +00:00
|
|
|
for i in 0..$n_words {
|
|
|
|
if me[$n_words - 1 - i] < you[$n_words - 1 - i] { return ::std::cmp::Ordering::Less; }
|
|
|
|
if me[$n_words - 1 - i] > you[$n_words - 1 - i] { return ::std::cmp::Ordering::Greater; }
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
2015-04-05 03:13:19 +00:00
|
|
|
return ::std::cmp::Ordering::Equal;
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-05 03:13:19 +00:00
|
|
|
impl ::std::cmp::PartialOrd for $name {
|
|
|
|
fn partial_cmp(&self, other: &$name) -> Option<::std::cmp::Ordering> {
|
2014-07-18 13:56:17 +00:00
|
|
|
Some(self.cmp(other))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-26 15:35:31 +00:00
|
|
|
impl fmt::Debug for $name {
|
2014-07-18 13:56:17 +00:00
|
|
|
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
|
2015-04-07 01:51:11 +00:00
|
|
|
let &$name(ref data) = self;
|
|
|
|
try!(write!(f, "0x"));
|
|
|
|
for ch in data.iter().rev() {
|
|
|
|
try!(write!(f, "{:02x}", ch));
|
|
|
|
}
|
|
|
|
Ok(())
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl<S: ::network::serialize::SimpleEncoder> ::network::encodable::ConsensusEncodable<S> for $name {
|
2014-08-01 16:01:39 +00:00
|
|
|
#[inline]
|
2015-04-06 00:10:37 +00:00
|
|
|
fn consensus_encode(&self, s: &mut S) -> Result<(), S::Error> {
|
2014-08-01 16:01:39 +00:00
|
|
|
use network::encodable::ConsensusEncodable;
|
|
|
|
let &$name(ref data) = self;
|
|
|
|
for word in data.iter() { try!(word.consensus_encode(s)); }
|
|
|
|
Ok(())
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
2014-08-01 16:01:39 +00:00
|
|
|
}
|
2014-07-18 13:56:17 +00:00
|
|
|
|
2015-04-06 00:10:37 +00:00
|
|
|
impl<D: ::network::serialize::SimpleDecoder> ::network::encodable::ConsensusDecodable<D> for $name {
|
|
|
|
fn consensus_decode(d: &mut D) -> Result<$name, D::Error> {
|
2014-08-01 16:01:39 +00:00
|
|
|
use network::encodable::ConsensusDecodable;
|
2015-01-18 18:16:01 +00:00
|
|
|
let ret: [u64; $n_words] = try!(ConsensusDecodable::consensus_decode(d));
|
2014-08-01 16:01:39 +00:00
|
|
|
Ok($name(ret))
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
);
|
2015-01-18 18:16:01 +00:00
|
|
|
}
|
2014-07-18 13:56:17 +00:00
|
|
|
|
2015-01-18 18:16:01 +00:00
|
|
|
construct_uint!(Uint256, 4);
|
|
|
|
construct_uint!(Uint128, 2);
|
2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
impl Uint256 {
|
|
|
|
/// Increment by 1
|
|
|
|
#[inline]
|
|
|
|
pub fn increment(&mut self) {
|
2015-04-07 01:51:11 +00:00
|
|
|
let &mut Uint256(ref mut arr) = self;
|
2014-07-18 13:56:17 +00:00
|
|
|
arr[0] += 1;
|
|
|
|
if arr[0] == 0 {
|
|
|
|
arr[1] += 1;
|
|
|
|
if arr[1] == 0 {
|
|
|
|
arr[2] += 1;
|
|
|
|
if arr[2] == 0 {
|
|
|
|
arr[3] += 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2014-08-24 19:28:02 +00:00
|
|
|
|
|
|
|
/// Decay to a uint128
|
|
|
|
#[inline]
|
|
|
|
pub fn low_128(&self) -> Uint128 {
|
|
|
|
let &Uint256(data) = self;
|
|
|
|
Uint128([data[0], data[1]])
|
|
|
|
}
|
2014-07-18 13:56:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
2015-04-07 01:51:11 +00:00
|
|
|
use std::io;
|
2014-07-18 13:56:17 +00:00
|
|
|
use std::num::from_u64;
|
|
|
|
|
2014-08-01 16:01:39 +00:00
|
|
|
use network::serialize::{deserialize, serialize};
|
2014-07-18 13:56:17 +00:00
|
|
|
use util::uint::Uint256;
|
|
|
|
use util::BitArray;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn uint256_bits_test() {
|
|
|
|
assert_eq!(from_u64::<Uint256>(255).unwrap().bits(), 8);
|
|
|
|
assert_eq!(from_u64::<Uint256>(256).unwrap().bits(), 9);
|
|
|
|
assert_eq!(from_u64::<Uint256>(300).unwrap().bits(), 9);
|
|
|
|
assert_eq!(from_u64::<Uint256>(60000).unwrap().bits(), 16);
|
|
|
|
assert_eq!(from_u64::<Uint256>(70000).unwrap().bits(), 17);
|
|
|
|
|
|
|
|
// Try to read the following lines out loud quickly
|
|
|
|
let mut shl: Uint256 = from_u64(70000).unwrap();
|
2015-01-18 18:16:01 +00:00
|
|
|
shl = shl << 100;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(shl.bits(), 117);
|
2015-01-18 18:16:01 +00:00
|
|
|
shl = shl << 100;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(shl.bits(), 217);
|
2015-01-18 18:16:01 +00:00
|
|
|
shl = shl << 100;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(shl.bits(), 0);
|
|
|
|
|
|
|
|
// Bit set check
|
|
|
|
assert!(!from_u64::<Uint256>(10).unwrap().bit(0));
|
|
|
|
assert!(from_u64::<Uint256>(10).unwrap().bit(1));
|
|
|
|
assert!(!from_u64::<Uint256>(10).unwrap().bit(2));
|
|
|
|
assert!(from_u64::<Uint256>(10).unwrap().bit(3));
|
|
|
|
assert!(!from_u64::<Uint256>(10).unwrap().bit(4));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn uint256_comp_test() {
|
|
|
|
let small = Uint256([10u64, 0, 0, 0]);
|
|
|
|
let big = Uint256([0x8C8C3EE70C644118u64, 0x0209E7378231E632, 0, 0]);
|
|
|
|
let bigger = Uint256([0x9C8C3EE70C644118u64, 0x0209E7378231E632, 0, 0]);
|
|
|
|
let biggest = Uint256([0x5C8C3EE70C644118u64, 0x0209E7378231E632, 0, 1]);
|
|
|
|
|
|
|
|
assert!(small < big);
|
|
|
|
assert!(big < bigger);
|
|
|
|
assert!(bigger < biggest);
|
|
|
|
assert!(bigger <= biggest);
|
|
|
|
assert!(biggest <= biggest);
|
|
|
|
assert!(bigger >= big);
|
|
|
|
assert!(bigger >= small);
|
|
|
|
assert!(small <= small);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn uint256_arithmetic_test() {
|
|
|
|
let init: Uint256 = from_u64(0xDEADBEEFDEADBEEF).unwrap();
|
|
|
|
let copy = init;
|
|
|
|
|
2015-04-07 01:51:11 +00:00
|
|
|
let add = init + copy;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(add, Uint256([0xBD5B7DDFBD5B7DDEu64, 1, 0, 0]));
|
|
|
|
// Bitshifts
|
2015-01-18 18:16:01 +00:00
|
|
|
let shl = add << 88;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(shl, Uint256([0u64, 0xDFBD5B7DDE000000, 0x1BD5B7D, 0]));
|
2015-01-18 18:16:01 +00:00
|
|
|
let shr = shl >> 40;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(shr, Uint256([0x7DDE000000000000u64, 0x0001BD5B7DDFBD5B, 0, 0]));
|
|
|
|
// Increment
|
|
|
|
let mut incr = shr;
|
|
|
|
incr.increment();
|
|
|
|
assert_eq!(incr, Uint256([0x7DDE000000000001u64, 0x0001BD5B7DDFBD5B, 0, 0]));
|
|
|
|
// Subtraction
|
2015-04-07 01:51:11 +00:00
|
|
|
let sub = incr - init;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(sub, Uint256([0x9F30411021524112u64, 0x0001BD5B7DDFBD5A, 0, 0]));
|
|
|
|
// Multiplication
|
|
|
|
let mult = sub.mul_u32(300);
|
|
|
|
assert_eq!(mult, Uint256([0x8C8C3EE70C644118u64, 0x0209E7378231E632, 0, 0]));
|
|
|
|
// Division
|
|
|
|
assert_eq!(from_u64::<Uint256>(105).unwrap() /
|
|
|
|
from_u64::<Uint256>(5).unwrap(),
|
|
|
|
from_u64::<Uint256>(21).unwrap());
|
|
|
|
let div = mult / from_u64::<Uint256>(300).unwrap();
|
|
|
|
assert_eq!(div, Uint256([0x9F30411021524112u64, 0x0001BD5B7DDFBD5A, 0, 0]));
|
|
|
|
// TODO: bit inversion
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn uint256_bitslice_test() {
|
|
|
|
let init = from_u64::<Uint256>(0xDEADBEEFDEADBEEF).unwrap();
|
|
|
|
let add = init + (init << 64);
|
|
|
|
assert_eq!(add.bit_slice(64, 128), init);
|
|
|
|
assert_eq!(add.mask(64), init);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn uint256_extreme_bitshift_test() {
|
|
|
|
// Shifting a u64 by 64 bits gives an undefined value, so make sure that
|
|
|
|
// we're doing the Right Thing here
|
|
|
|
let init = from_u64::<Uint256>(0xDEADBEEFDEADBEEF).unwrap();
|
|
|
|
|
|
|
|
assert_eq!(init << 64, Uint256([0, 0xDEADBEEFDEADBEEF, 0, 0]));
|
2015-04-07 01:51:11 +00:00
|
|
|
let add = (init << 64) + init;
|
2014-07-18 13:56:17 +00:00
|
|
|
assert_eq!(add, Uint256([0xDEADBEEFDEADBEEF, 0xDEADBEEFDEADBEEF, 0, 0]));
|
|
|
|
assert_eq!(add >> 0, Uint256([0xDEADBEEFDEADBEEF, 0xDEADBEEFDEADBEEF, 0, 0]));
|
|
|
|
assert_eq!(add << 0, Uint256([0xDEADBEEFDEADBEEF, 0xDEADBEEFDEADBEEF, 0, 0]));
|
|
|
|
assert_eq!(add >> 64, Uint256([0xDEADBEEFDEADBEEF, 0, 0, 0]));
|
|
|
|
assert_eq!(add << 64, Uint256([0, 0xDEADBEEFDEADBEEF, 0xDEADBEEFDEADBEEF, 0]));
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
pub fn uint256_serialize_test() {
|
|
|
|
let start1 = Uint256([0x8C8C3EE70C644118u64, 0x0209E7378231E632, 0, 0]);
|
|
|
|
let start2 = Uint256([0x8C8C3EE70C644118u64, 0x0209E7378231E632, 0xABCD, 0xFFFF]);
|
2014-08-01 16:01:39 +00:00
|
|
|
let serial1 = serialize(&start1).unwrap();
|
|
|
|
let serial2 = serialize(&start2).unwrap();
|
2015-04-07 01:51:11 +00:00
|
|
|
let end1: io::Result<Uint256> = deserialize(serial1);
|
|
|
|
let end2: io::Result<Uint256> = deserialize(serial2);
|
2014-07-18 13:56:17 +00:00
|
|
|
|
|
|
|
assert_eq!(end1, Ok(start1));
|
|
|
|
assert_eq!(end2, Ok(start2));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|