| Linux | Windows | Codecov | Coveralls | Docs | Crates.io |
|:-------------------:|:-------------------:|:--------------------:|:--------------------:|:----------------:|:--------------------:|
| |
|
|
|
|
|
Development in progress: The implementation has not been finished, is unstable and may not work.
An Arbitrary precision Integer (ApInt) represents an integer that has an arbitrary but fixed runtime bit-width and offers two's complement modulo arithmetic equal to machine integers.
The API is based on the popular LLVM APInt
support library
that is heavily used within the compiler and compiler based tools.
The design focus is at efficiency and robustness.
ApInt
instances are small-value-optimized. This means that only ApInt
instances with a bit-width larger than 64 bits allocate dynamic memory.
An ApInt
constists of a sequence of 64-bit Digit
s.
Computations are done within their 128-bit DoubleDigit
form to prevent bit-loss on over- or underflows.
This implies a dependency on 128-bit integers which are currently unstable in Rust.
The below table lists public and internal differences between ApInt
and num::BigInt
.
| Topic | num::BigInt
| ApInt
|
|:------------------------:|:------------------------------------------|:----------------------------------------|
| Abstraction | High-level unbounded integers. | Twos-complement machine integers. |
| Behaviour | Behaves like an immutable type most often. This results in lots of copies and better usability. | API design with a focus on efficient operations and machine emulation. |
| Small Value Optimization | No | Yes: Up to 64-bits. |
| Building Blocks | 32-bit BigDigit
aka u32
| 64-bit Digit
|
| Compute Unit | 64-bit DoubleBigDigit
aka u64
| 128-bit DoubleDigit
|
| Signed | Yes: num::BigUint
is for unsigned. | No: Operations know signedness instead. |
| mem::size_of<..>
| About 24 bytes + some signedness info. | Exactly 128 bits (16 bytes). |
| Width interoperability | No restriction to operate between BigInt
instances with different bit-widths. | Only ApInt
instances with the same bit-width can interoperate. |
| Memory footprint | Determined by current value stored. | Determined by bit-width. |
| Can grow and shrink? | Yes | No, see above. |
| Unstable features? | None | Yes, e.g. 128-bit integers. |
Currently only a few parts of the implementation are done - especially the implementation of ApInt
's with bit-widths greater than 64 bits is incomplete.
State of the API modules implemented so far:
| Module | Design | Implementation | Testing | TODO |
|:-------------------:|:------:|:--------------:|:-------:|:----:|
| arithmetic
| done | unfinished | unfinished | |
| constructors
| done | done | done | |
| casting
| done | done | not started | issue #4 |
| bitwise
| done | done | not started | |
| shift
| done | done | done | |
| relational
| done | done | not started | |
| utils
| done | done | not started | |
| serialization
| done | unfinished | unfinished | depends on arithmetic
|
| to_primitive
| done | done | done | |
| serde_impl
(opt.) | done | done | done | |
| rand_impl
(opt.) | done | done | done | |
ApInt
implementation and decent test coverage.SignedApInt
and UnsignedApInt
types that wrap ApInt
with static sign information
allowing for improved user friendliness but restricted access to the underlying operations.ApsInt
wrapper around ApInt
that stores a run-time sign information.
This is different from SignedApInt
and UnsignedApInt
since those types store
their sign immutable in their type. This is the same as LLVM's APSInt
data type.These features need to be stabilized before this crate can be used on the stable channel.
#![feature(i128_type)]
#![feature(conservative_impl_trait)]
#![feature(unique)]
#![feature(slice_rotate)
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.