bv-sized: a BitVector datatype that is parameterized by the vector width

[ bit-vectors, bsd3, library ] [ Propose Tags ]

This module defines a width-parameterized BitVector type and various associated operations that assume a 2's complement representation.


[Skip to Readme]

Downloads

Maintainer's Corner

Package maintainers

For package maintainers and hackage trustees

Candidates

Versions [RSS] 0.1.0.0, 0.1.1.0, 0.1.1.1, 0.2.0, 0.2.1, 0.3.0, 0.4.0, 0.5.0, 0.6.0, 0.7.0, 1.0.0, 1.0.1, 1.0.2, 1.0.3, 1.0.4, 1.0.5
Change log changelog.md
Dependencies base (>=4.7 && <5), containers (>=0.5.10 && <0.6), lens (>=4 && <5), mtl (>=2 && <3), parameterized-utils, prettyclass (>=1.0 && <2.0), QuickCheck (>=2.11 && <2.12), random (>=1.1 && <1.2) [details]
License BSD-3-Clause
Copyright March 2018
Author Ben Selfridge
Maintainer benselfridge@galois.com
Category Bit Vectors
Home page https://github.com/benjaminselfridge/bv-sized
Uploaded by benselfridge at 2018-08-18T20:23:30Z
Distributions Arch:1.0.5, NixOS:1.0.5
Reverse Dependencies 11 direct, 7 indirect [details]
Downloads 11057 total (78 in the last 30 days)
Rating 2.0 (votes: 1) [estimated by Bayesian average]
Your Rating
  • λ
  • λ
  • λ
Status Docs available [build log]
Last success reported on 2018-08-18 [all 1 reports]

Readme for bv-sized-0.5.0

[back to package description]

bv-sized - A Haskell library for manipulating width-parameterized bitvectors

copyright (c) Ben Selfridge, Galois Inc. 2018

This library defines a BitVector datatype that is parameterized by the vector width.

Requirements

The following are a list of mandatory and secondary requirements for bv-sized.

Mandatory Requirements

  • Must support integer arithmetic on bitvectors of arbitrary width, assuming a two's-complement representation.

  • Must support the construction of symbolic expressions involving bitvectors, and evaluating those expressions in such a way that the "pure" bitvector expression language can be embedded in a larger expression language. (See Data.BitVector.Sized.App)

  • Declarative descriptions of bit encodings within an instruction word for the purposes of ISA definitions and the like. (See Data.BitVector.Sized.BitLayout)

Secondary Requirements

None.

Current Status

The library is relatively stable and supports all the above requirements.

Other information