Displaying 1 result from an estimated 1 matches for "bitmap_word_bit".
Did you mean:
bitmap_word_bits
2007 Apr 25
2
[LLVMdev] Work in progress patch to speed up andersen's implementation
...*/
#ifndef GCC_BITMAP_H
#define GCC_BITMAP_H
#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdbool.h>
#include "obstack.h"
/* Fundamental storage type for bitmap. */
typedef unsigned long hashval_t;
typedef unsigned long BITMAP_WORD;
/* BITMAP_WORD_BITS needs to be unsigned, but cannot contain casts as
it is used in preprocessor directives -- hence the 1u. */
#define BITMAP_WORD_BITS (1 * 32 * 1u)
/* Number of words to use for each element in the linked list. */
#ifndef BITMAP_ELEMENT_WORDS
#define BITMAP_ELEMENT_WORDS ((128 + BITMAP_WORD...