From b908195634bf04ab1166369f3e0ef4f39f081844 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Thu, 1 Jun 2023 20:52:36 -0600 Subject: [PATCH] [subset/glyf] Use a hashmap instead of vector for SubsetGlyph Doens't seem to provide any speedup though. --- src/OT/glyf/glyf.hh | 26 ++++++++++++++++---------- 1 file changed, 16 insertions(+), 10 deletions(-) diff --git a/src/OT/glyf/glyf.hh b/src/OT/glyf/glyf.hh index 1a12d2bac..d38e1acba 100644 --- a/src/OT/glyf/glyf.hh +++ b/src/OT/glyf/glyf.hh @@ -103,7 +103,7 @@ struct glyf return false; } - hb_vector_t glyphs; + hb_hashmap_t glyphs; if (!_populate_subset_glyphs (c->plan, font, glyphs)) { hb_font_destroy (font); @@ -129,7 +129,11 @@ struct glyf padded_offsets.arrayZ[i] = glyphs[i].length (); } - bool result = glyf_prime->serialize (c->serializer, glyphs.iter (), use_short_loca, c->plan); + auto it = + + hb_range (num_glyphs) + | hb_map (glyphs) + ; + bool result = glyf_prime->serialize (c->serializer, it, use_short_loca, c->plan); if (c->plan->normalized_coords && !c->plan->pinned_at_default) _free_compiled_subset_glyphs (glyphs); @@ -145,15 +149,15 @@ struct glyf bool _populate_subset_glyphs (const hb_subset_plan_t *plan, hb_font_t *font, - hb_vector_t &glyphs /* OUT */) const; + hb_hashmap_t &glyphs /* OUT */) const; hb_font_t * _create_font_for_instancing (const hb_subset_plan_t *plan) const; - void _free_compiled_subset_glyphs (hb_vector_t &glyphs) const + void _free_compiled_subset_glyphs (hb_hashmap_t &glyphs) const { - for (unsigned i = 0; i < glyphs.length; i++) - glyphs[i].free_compiled_bytes (); + for (auto &glyph : glyphs.values_ref ()) + glyph.free_compiled_bytes (); } protected: @@ -428,17 +432,19 @@ struct glyf_accelerator_t inline bool glyf::_populate_subset_glyphs (const hb_subset_plan_t *plan, hb_font_t *font, - hb_vector_t& glyphs /* OUT */) const + hb_hashmap_t& glyphs /* OUT */) const { OT::glyf_accelerator_t glyf (plan->source); - unsigned num_glyphs = plan->num_output_glyphs (); - if (!glyphs.resize (num_glyphs)) return false; + if (!glyphs.resize (plan->glyph_map->get_population ())) return false; for (auto p : plan->glyph_map->iter ()) { hb_codepoint_t old_gid = p.first; hb_codepoint_t new_gid = p.second; - glyf_impl::SubsetGlyph& subset_glyph = glyphs.arrayZ[new_gid]; + glyphs.set (new_gid, glyf_impl::SubsetGlyph ()); + glyf_impl::SubsetGlyph* p_subset_glyph = nullptr; + if (unlikely (!glyphs.has (new_gid, &p_subset_glyph))) return false; + glyf_impl::SubsetGlyph& subset_glyph = *p_subset_glyph; subset_glyph.old_gid = old_gid; if (unlikely (old_gid == 0 && new_gid == 0 &&