提交 deed4a48 编写于 作者: B Behdad Esfahbod
上级 1d397120
...@@ -410,35 +410,49 @@ struct hb_prealloced_array_t ...@@ -410,35 +410,49 @@ struct hb_prealloced_array_t
inline const Type& operator [] (unsigned int i) const { return array[i]; } inline const Type& operator [] (unsigned int i) const { return array[i]; }
inline Type *push (void) inline Type *push (void)
{
if (unlikely (!resize (len + 1)))
return nullptr;
return &array[len - 1];
}
inline bool resize (unsigned int size)
{ {
if (!array) { if (!array) {
array = static_array; array = static_array;
allocated = ARRAY_LENGTH (static_array); allocated = ARRAY_LENGTH (static_array);
} }
if (likely (len < allocated)) if (size > allocated)
return &array[len++]; {
/* Need to reallocate */
unsigned int new_allocated = allocated;
while (size >= new_allocated)
new_allocated += (new_allocated >> 1) + 8;
Type *new_array = nullptr;
if (array == static_array) {
new_array = (Type *) calloc (new_allocated, sizeof (Type));
if (new_array)
memcpy (new_array, array, len * sizeof (Type));
} else {
bool overflows = (new_allocated < allocated) || _hb_unsigned_int_mul_overflows (new_allocated, sizeof (Type));
if (likely (!overflows)) {
new_array = (Type *) realloc (array, new_allocated * sizeof (Type));
}
}
/* Need to reallocate */ if (unlikely (!new_array))
unsigned int new_allocated = allocated + (allocated >> 1) + 8; return false;
Type *new_array = nullptr;
if (array == static_array) { array = new_array;
new_array = (Type *) calloc (new_allocated, sizeof (Type)); allocated = new_allocated;
if (new_array)
memcpy (new_array, array, len * sizeof (Type));
} else {
bool overflows = (new_allocated < allocated) || _hb_unsigned_int_mul_overflows (new_allocated, sizeof (Type));
if (likely (!overflows)) {
new_array = (Type *) realloc (array, new_allocated * sizeof (Type));
}
} }
if (unlikely (!new_array)) len = size;
return nullptr; return true;
array = new_array;
allocated = new_allocated;
return &array[len++];
} }
inline void pop (void) inline void pop (void)
...@@ -517,7 +531,7 @@ struct hb_prealloced_array_t ...@@ -517,7 +531,7 @@ struct hb_prealloced_array_t
return true; return true;
} }
} }
if (max < 0 || max < (int) this->len && this->array[max].cmp (x) < 0) if (max < 0 || (max < (int) this->len && this->array[max].cmp (x) > 0))
max++; max++;
*i = max; *i = max;
return false; return false;
......
/* /*
* Copyright © 2012 Google, Inc. * Copyright © 2012,2017 Google, Inc.
* *
* This is part of HarfBuzz, a text shaping library. * This is part of HarfBuzz, a text shaping library.
* *
...@@ -35,39 +35,208 @@ ...@@ -35,39 +35,208 @@
* hb_set_t * hb_set_t
*/ */
struct Union
/* TODO Make this faster and memmory efficient. */ {
static const bool passthru_left = true;
static const bool passthru_right = true;
template <typename T> static void process (T &o, const T &a, const T &b) { o = a | b; }
};
struct Intersect
{
static const bool passthru_left = false;
static const bool passthru_right = false;
template <typename T> static void process (T &o, const T &a, const T &b) { o = a & b; }
};
struct Subtract
{
static const bool passthru_left = true;
static const bool passthru_right = false;
template <typename T> static void process (T &o, const T &a, const T &b) { o = a & ~b; }
};
struct SymmetricDifference
{
static const bool passthru_left = true;
static const bool passthru_right = true;
template <typename T> static void process (T &o, const T &a, const T &b) { o = a ^ b; }
};
struct hb_set_t struct hb_set_t
{ {
struct page_map_t
{
inline int cmp (const page_map_t *o) const { return (int) o->major - (int) major; }
uint32_t major;
uint32_t index;
};
struct page_t
{
inline void init (void) {
memset (&v, 0, sizeof (v));
}
inline unsigned int len (void) const
{ return ARRAY_LENGTH_CONST (v); }
inline bool is_empty (void) const
{
for (unsigned int i = 0; i < len (); i++)
if (v[i])
return false;
return true;
}
inline void add (hb_codepoint_t g) { elt (g) |= mask (g); }
inline void del (hb_codepoint_t g) { elt (g) &= ~mask (g); }
inline bool has (hb_codepoint_t g) const { return !!(elt (g) & mask (g)); }
inline bool is_equal (const page_t *other) const
{
return 0 == memcmp (&v, &other->v, sizeof (v));
}
inline unsigned int get_population (void) const
{
unsigned int pop = 0;
for (unsigned int i = 0; i < len (); i++)
pop += _hb_popcount (v[i]);
return pop;
}
inline bool next (hb_codepoint_t *codepoint) const
{
unsigned int m = (*codepoint + 1) & MASK;
if (!m)
{
*codepoint = INVALID;
return false;
}
unsigned int i = m / ELT_BITS;
unsigned int j = m & ELT_MASK;
for (; j < ELT_BITS; j++)
if (v[i] & (elt_t (1) << j))
goto found;
for (i++; i < len (); i++)
if (v[i])
for (unsigned int j = 0; j < ELT_BITS; j++)
if (v[i] & (elt_t (1) << j))
goto found;
*codepoint = INVALID;
return false;
found:
*codepoint = i * ELT_BITS + j;
return true;
}
inline hb_codepoint_t get_min (void) const
{
for (unsigned int i = 0; i < len (); i++)
if (v[i])
{
elt_t e = v[i];
for (unsigned int j = 0; j < ELT_BITS; j++)
if (e & (elt_t (1) << j))
return i * ELT_BITS + j;
}
return INVALID;
}
inline hb_codepoint_t get_max (void) const
{
for (int i = len () - 1; i >= 0; i--)
if (v[i])
{
elt_t e = v[i];
for (int j = ELT_BITS - 1; j >= 0; j--)
if (e & (elt_t (1) << j))
return i * ELT_BITS + j;
}
return 0;
}
typedef uint64_t elt_t;
static const unsigned int PAGE_BITS = 512; /* Use to tune. */
static_assert ((PAGE_BITS & ((PAGE_BITS) - 1)) == 0, "");
#if 1
typedef elt_t vector_t __attribute__((vector_size (PAGE_BITS / 8)));
#else
struct vector_t
{
elt_t& operator [] (unsigned int i) { return v[i]; }
const elt_t& operator [] (unsigned int i) const { return v[i]; }
private:
elt_t v[PAGE_BITS / (sizeof (elt_t) * 8)];
};
#endif
vector_t v;
static const unsigned int ELT_BITS = sizeof (elt_t) * 8;
static const unsigned int ELT_MASK = ELT_BITS - 1;
static const unsigned int BITS = sizeof (v) * 8;
static const unsigned int MASK = BITS - 1;
static_assert (PAGE_BITS == BITS, "");
elt_t &elt (hb_codepoint_t g) { return v[(g & MASK) / ELT_BITS]; }
elt_t const &elt (hb_codepoint_t g) const { return v[(g & MASK) / ELT_BITS]; }
elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & ELT_MASK); }
};
hb_object_header_t header; hb_object_header_t header;
ASSERT_POD (); ASSERT_POD ();
bool in_error; bool in_error;
hb_prealloced_array_t<page_map_t, 8> page_map;
hb_prealloced_array_t<page_t, 8> pages;
inline bool resize (unsigned int count)
{
if (unlikely (in_error)) return false;
if (!pages.resize (count) || !page_map.resize (count))
{
pages.resize (page_map.len);
in_error = true;
return false;
}
return true;
}
inline void init (void) { inline void init (void) {
hb_object_init (this); hb_object_init (this);
clear (); page_map.init ();
pages.init ();
} }
inline void fini (void) { inline void fini (void) {
page_map.finish ();
pages.finish ();
} }
inline void clear (void) { inline void clear (void) {
if (unlikely (hb_object_is_inert (this))) if (unlikely (hb_object_is_inert (this)))
return; return;
in_error = false; in_error = false;
memset (elts, 0, sizeof elts); page_map.resize (0);
pages.resize (0);
} }
inline bool is_empty (void) const { inline bool is_empty (void) const {
for (unsigned int i = 0; i < ARRAY_LENGTH (elts); i++) unsigned int count = pages.len;
if (elts[i]) for (unsigned int i = 0; i < count; i++)
if (!pages[i].is_empty ())
return false; return false;
return true; return true;
} }
inline void add (hb_codepoint_t g) inline void add (hb_codepoint_t g)
{ {
if (unlikely (in_error)) return; if (unlikely (in_error)) return;
if (unlikely (g == INVALID)) return; if (unlikely (g == INVALID)) return;
if (unlikely (g > MAX_G)) return; page_t *page = page_for_insert (g);
elt (g) |= mask (g); if (!page)
return;
page->add (g);
} }
inline void add_range (hb_codepoint_t a, hb_codepoint_t b) inline void add_range (hb_codepoint_t a, hb_codepoint_t b)
{ {
...@@ -79,8 +248,10 @@ struct hb_set_t ...@@ -79,8 +248,10 @@ struct hb_set_t
inline void del (hb_codepoint_t g) inline void del (hb_codepoint_t g)
{ {
if (unlikely (in_error)) return; if (unlikely (in_error)) return;
if (unlikely (g > MAX_G)) return; page_t *p = page_for (g);
elt (g) &= ~mask (g); if (!p)
return;
p->del (g);
} }
inline void del_range (hb_codepoint_t a, hb_codepoint_t b) inline void del_range (hb_codepoint_t a, hb_codepoint_t b)
{ {
...@@ -91,80 +262,169 @@ struct hb_set_t ...@@ -91,80 +262,169 @@ struct hb_set_t
} }
inline bool has (hb_codepoint_t g) const inline bool has (hb_codepoint_t g) const
{ {
if (unlikely (g > MAX_G)) return false; const page_t *p = page_for (g);
return !!(elt (g) & mask (g)); if (!p)
return false;
return p->has (g);
} }
inline bool intersects (hb_codepoint_t first, inline bool intersects (hb_codepoint_t first,
hb_codepoint_t last) const hb_codepoint_t last) const
{ {
if (unlikely (first > MAX_G)) return false; /* TODO Speedup */
if (unlikely (last > MAX_G)) last = MAX_G;
unsigned int end = last + 1; unsigned int end = last + 1;
for (hb_codepoint_t i = first; i < end; i++) for (hb_codepoint_t i = first; i < end; i++)
if (has (i)) if (has (i))
return true; return true;
return false; return false;
} }
inline void set (const hb_set_t *other)
{
if (unlikely (in_error)) return;
unsigned int count = other->pages.len;
if (!resize (count))
return;
memcpy (pages.array, other->pages.array, count * sizeof (pages.array[0]));
memcpy (page_map.array, other->page_map.array, count * sizeof (page_map.array[0]));
}
inline bool is_equal (const hb_set_t *other) const inline bool is_equal (const hb_set_t *other) const
{ {
for (unsigned int i = 0; i < ELTS; i++) unsigned int na = pages.len;
if (elts[i] != other->elts[i]) unsigned int nb = other->pages.len;
unsigned int a = 0, b = 0;
for (; a < na && b < nb; )
{
if (page_at (a).is_empty ()) { a++; continue; }
if (other->page_at (b).is_empty ()) { b++; continue; }
if (page_map[a].major != other->page_map[b].major ||
!page_at (a).is_equal (&other->page_at (b)))
return false; return false;
a++;
b++;
}
for (; a < na; a++)
if (!page_at (a).is_empty ()) { return false; }
for (; b < nb; b++)
if (!other->page_at (b).is_empty ()) { return false; }
return true; return true;
} }
inline void set (const hb_set_t *other)
template <class Op>
inline void process (const hb_set_t *other)
{ {
if (unlikely (in_error)) return; if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] = other->elts[i]; int na = pages.len;
int nb = other->pages.len;
unsigned int count = 0;
int a = 0, b = 0;
for (; a < na && b < nb; )
{
if (page_map[a].major == other->page_map[b].major)
{
count++;
a++;
b++;
}
else if (page_map[a].major < other->page_map[b].major)
{
if (Op::passthru_left)
count++;
a++;
}
else
{
if (Op::passthru_right)
count++;
b++;
}
}
if (Op::passthru_left)
count += na - a;
if (Op::passthru_right)
count += nb - b;
if (!resize (count))
return;
/* Process in-place backward. */
a = na - 1, b = nb - 1;
for (; a >= 0 && b >= 0; )
{
if (page_map[a].major == other->page_map[b].major)
{
Op::process (page_at (--count).v, page_at (a).v, other->page_at (b).v);
a--;
b--;
}
else if (page_map[a].major < other->page_map[b].major)
{
if (Op::passthru_left)
page_at (--count).v = page_at (a).v;
a--;
}
else
{
if (Op::passthru_right)
page_at (--count).v = other->page_at (b).v;
b--;
}
}
while (a >= 0)
page_at (--count).v = page_at (--a).v;
while (b >= 0)
page_at (--count).v = other->page_at (--b).v;
assert (!count);
} }
inline void union_ (const hb_set_t *other) inline void union_ (const hb_set_t *other)
{ {
if (unlikely (in_error)) return; process<Union> (other);
for (unsigned int i = 0; i < ELTS; i++)
elts[i] |= other->elts[i];
} }
inline void intersect (const hb_set_t *other) inline void intersect (const hb_set_t *other)
{ {
if (unlikely (in_error)) return; process<Intersect> (other);
for (unsigned int i = 0; i < ELTS; i++)
elts[i] &= other->elts[i];
} }
inline void subtract (const hb_set_t *other) inline void subtract (const hb_set_t *other)
{ {
if (unlikely (in_error)) return; process<Subtract> (other);
for (unsigned int i = 0; i < ELTS; i++)
elts[i] &= ~other->elts[i];
} }
inline void symmetric_difference (const hb_set_t *other) inline void symmetric_difference (const hb_set_t *other)
{ {
if (unlikely (in_error)) return; process<SymmetricDifference> (other);
for (unsigned int i = 0; i < ELTS; i++)
elts[i] ^= other->elts[i];
}
inline void invert (void)
{
if (unlikely (in_error)) return;
for (unsigned int i = 0; i < ELTS; i++)
elts[i] = ~elts[i];
} }
inline bool next (hb_codepoint_t *codepoint) const inline bool next (hb_codepoint_t *codepoint) const
{ {
if (unlikely (*codepoint == INVALID)) { if (unlikely (*codepoint == INVALID)) {
hb_codepoint_t i = get_min (); *codepoint = get_min ();
if (i != INVALID) { return *codepoint != INVALID;
*codepoint = i; }
return true;
} else { page_map_t map = {major (*codepoint), 0};
*codepoint = INVALID; unsigned int i;
return false; page_map.bfind (&map, &i);
if (i < page_map.len)
{
if (pages[page_map[i].index].next (codepoint))
{
*codepoint += page_map[i].major * PAGE_SIZE;
return true;
} }
i++;
} }
for (hb_codepoint_t i = *codepoint + 1; i < MAX_G + 1; i++) for (; i < page_map.len; i++)
if (has (i)) { {
*codepoint = i; hb_codepoint_t m = pages[page_map[i].index].get_min ();
if (m != INVALID)
{
*codepoint = page_map[i].major * PAGE_SIZE + m;
return true; return true;
} }
}
*codepoint = INVALID; *codepoint = INVALID;
return false; return false;
} }
...@@ -172,6 +432,7 @@ struct hb_set_t ...@@ -172,6 +432,7 @@ struct hb_set_t
{ {
hb_codepoint_t i; hb_codepoint_t i;
/* TODO speedup. */
i = *last; i = *last;
if (!next (&i)) if (!next (&i))
{ {
...@@ -188,46 +449,66 @@ struct hb_set_t ...@@ -188,46 +449,66 @@ struct hb_set_t
inline unsigned int get_population (void) const inline unsigned int get_population (void) const
{ {
unsigned int count = 0; unsigned int pop = 0;
for (unsigned int i = 0; i < ELTS; i++) unsigned int count = pages.len;
count += _hb_popcount32 (elts[i]); for (unsigned int i = 0; i < count; i++)
return count; pop += pages[i].get_population ();
return pop;
} }
inline hb_codepoint_t get_min (void) const inline hb_codepoint_t get_min (void) const
{ {
for (unsigned int i = 0; i < ELTS; i++) unsigned int count = pages.len;
if (elts[i]) for (unsigned int i = 0; i < count; i++)
for (unsigned int j = 0; j < BITS; j++) if (!page_at (i).is_empty ())
if (elts[i] & (1u << j)) return page_map[i].major * PAGE_SIZE + page_at (i).get_min ();
return i * BITS + j;
return INVALID; return INVALID;
} }
inline hb_codepoint_t get_max (void) const inline hb_codepoint_t get_max (void) const
{ {
for (unsigned int i = ELTS; i; i--) unsigned int count = pages.len;
if (elts[i - 1]) for (int i = count - 1; i >= 0; i++)
for (unsigned int j = BITS; j; j--) if (!page_at (i).is_empty ())
if (elts[i - 1] & (1u << (j - 1))) return page_map[i].major * PAGE_SIZE + page_at (i).get_max ();
return (i - 1) * BITS + (j - 1);
return INVALID; return INVALID;
} }
typedef uint32_t elt_t; static const unsigned int PAGE_SIZE = sizeof (page_t) * 8;
static const unsigned int MAX_G = 65536 - 1; /* XXX Fix this... */
static const unsigned int SHIFT = 5;
static const unsigned int BITS = (1 << SHIFT);
static const unsigned int MASK = BITS - 1;
static const unsigned int ELTS = (MAX_G + 1 + (BITS - 1)) / BITS;
static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID; static const hb_codepoint_t INVALID = HB_SET_VALUE_INVALID;
elt_t &elt (hb_codepoint_t g) { return elts[g >> SHIFT]; } page_t *page_for_insert (hb_codepoint_t g)
elt_t const &elt (hb_codepoint_t g) const { return elts[g >> SHIFT]; } {
elt_t mask (hb_codepoint_t g) const { return elt_t (1) << (g & MASK); } page_map_t map = {major (g), pages.len};
unsigned int i;
elt_t elts[ELTS]; /* XXX 8kb */ if (!page_map.bfind (&map, &i))
{
if (!resize (pages.len + 1))
return nullptr;
static_assert ((sizeof (elt_t) * 8 == BITS), ""); pages[map.index].init ();
static_assert ((sizeof (elt_t) * 8 * ELTS > MAX_G), ""); memmove (&page_map[i + 1], &page_map[i], (page_map.len - 1 - i) * sizeof (page_map[0]));
page_map[i] = map;
}
return &pages[page_map[i].index];
}
page_t *page_for (hb_codepoint_t g)
{
page_map_t key = {major (g)};
const page_map_t *found = page_map.bsearch (&key);
if (found)
return &pages[found->index];
return nullptr;
}
const page_t *page_for (hb_codepoint_t g) const
{
page_map_t key = {major (g)};
const page_map_t *found = page_map.bsearch (&key);
if (found)
return &pages[found->index];
return nullptr;
}
page_t &page_at (unsigned int i) { return pages[page_map[i].index]; }
const page_t &page_at (unsigned int i) const { return pages[page_map[i].index]; }
unsigned int major (hb_codepoint_t g) const { return g / PAGE_SIZE; }
}; };
......
...@@ -76,12 +76,6 @@ test_set_basic (void) ...@@ -76,12 +76,6 @@ test_set_basic (void)
g_assert_cmpint (hb_set_get_min (s), ==, 10); g_assert_cmpint (hb_set_get_min (s), ==, 10);
g_assert_cmpint (hb_set_get_max (s), ==, 29); g_assert_cmpint (hb_set_get_max (s), ==, 29);
hb_set_invert (s);
test_not_empty (s);
g_assert (!hb_set_has (s, 13));
g_assert_cmpint (hb_set_get_min (s), ==, 0);
hb_set_invert (s);
test_not_empty (s); test_not_empty (s);
g_assert (hb_set_has (s, 13)); g_assert (hb_set_has (s, 13));
g_assert_cmpint (hb_set_get_population (s), ==, 20); g_assert_cmpint (hb_set_get_population (s), ==, 20);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册