Git Product home page Git Product logo

libbittwiddle's Introduction

  What is libbittwiddle
  =====================

Libbittwiddle is a collection of bit manipulation routines.

The included routines are as follows:

 * popcnt

    Computes set bits. Uses a compiler intrinsic if available.
    Results in 12 arithmetic operations, no branches.

 * clz

    Computes leading zeros. Uses a compiler intrinsic if available.
    Results in 23-25 arithmetic operations, no branches.

 * ctz

    Computes trailing zeros. Uses a compiler intrinsic if available.
    Results in 16 arithmetic operations, no branches.

 * check_has_byte_eq

    Checks whether a number has a byte with a value equal to a value x.
    Results in 5 arithmetic operations, no branches.

 * check_has_byte_lt

    Checks whether a number has a byte with a value less than a value x.
    It's possible to select from two implementations with the following
    performance characteristics:
     4-5 arithmetic operations and a branch (default).
     14-15 arithmetic operations and no branches.

    If the value x is known at compile-time, both implementations are equivalent
    and result in 4-5 arithmetic operations and no branches.

    The branchless implementation can be selected by defining
    LIBBITTWIDDLE_BRANCHLESS_CHECK_HAS_LTGT before including libbittwiddle.h

 * check_has_byte_gt

    Checks whether a number has a byte with a value greater than a value x.
    It's possible to select from two implementations with the following
    performance characteristics:
     3-4 arithmetic operations and a branch (default).
     14-15 arithmetic operations and no branches.

    If the value x is known at compile-time, both implementations are equivalent
    and result in 3-4 arithmetic operations and no branches.

    The branchless implementation can be selected by defining
    LIBBITTWIDDLE_BRANCHLESS_CHECK_HAS_LTGT before including libbittwiddle.h

 * check_has_byte_between

    Checks whether a number has a byte with a value between compile-time values
    x and y. Results in 7 arithmetic operations and no branches (the range of
    x and y is restricted).

A C++11-aware compiler is required.

libbittwiddle's People

Watchers

James Cloos avatar Rain avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.