Index: third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh |
diff --git a/third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh b/third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh |
index 13386c22e17d602517cfd2a7061097bb368cf947..a2e4b2fdbb55a4de76b9f5e21b80866c7aa7c69f 100644 |
--- a/third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh |
+++ b/third_party/harfbuzz-ng/src/hb-ot-layout-gsubgpos-private.hh |
@@ -1,6 +1,6 @@ |
/* |
* Copyright © 2007,2008,2009,2010 Red Hat, Inc. |
- * Copyright © 2010 Google, Inc. |
+ * Copyright © 2010,2012 Google, Inc. |
* |
* This is part of HarfBuzz, a text shaping library. |
* |
@@ -33,50 +33,112 @@ |
#include "hb-ot-layout-gdef-table.hh" |
-/* buffer var allocations */ |
-#define lig_id() var2.u8[2] /* unique ligature id */ |
-#define lig_comp() var2.u8[3] /* component number in the ligature (0 = base) */ |
+ |
+/* unique ligature id */ |
+/* component number in the ligature (0 = base) */ |
+static inline void |
+set_lig_props (hb_glyph_info_t &info, unsigned int lig_id, unsigned int lig_comp) |
+{ |
+ info.lig_props() = (lig_id << 4) | (lig_comp & 0x0F); |
+} |
+static inline unsigned int |
+get_lig_id (hb_glyph_info_t &info) |
+{ |
+ return info.lig_props() >> 4; |
+} |
+static inline unsigned int |
+get_lig_comp (hb_glyph_info_t &info) |
+{ |
+ return info.lig_props() & 0x0F; |
+} |
static inline uint8_t allocate_lig_id (hb_buffer_t *buffer) { |
- uint8_t lig_id = buffer->next_serial (); |
- if (unlikely (!lig_id)) lig_id = buffer->next_serial (); /* in case of overflow */ |
+ uint8_t lig_id = buffer->next_serial () & 0x0F; |
+ if (unlikely (!lig_id)) |
+ lig_id = allocate_lig_id (buffer); /* in case of overflow */ |
return lig_id; |
} |
+#ifndef HB_DEBUG_CLOSURE |
+#define HB_DEBUG_CLOSURE (HB_DEBUG+0) |
+#endif |
+ |
+#define TRACE_CLOSURE() \ |
+ hb_auto_trace_t<HB_DEBUG_CLOSURE> trace (&c->debug_depth, "CLOSURE", this, HB_FUNC, ""); |
+ |
+ |
+/* TODO Add TRACE_RETURN annotation for would_apply */ |
+ |
+ |
+struct hb_closure_context_t |
+{ |
+ hb_face_t *face; |
+ hb_set_t *glyphs; |
+ unsigned int nesting_level_left; |
+ unsigned int debug_depth; |
+ |
+ |
+ hb_closure_context_t (hb_face_t *face_, |
+ hb_set_t *glyphs_, |
+ unsigned int nesting_level_left_ = MAX_NESTING_LEVEL) : |
+ face (face_), glyphs (glyphs_), |
+ nesting_level_left (nesting_level_left_), |
+ debug_depth (0) {} |
+}; |
+ |
+ |
+ |
#ifndef HB_DEBUG_APPLY |
#define HB_DEBUG_APPLY (HB_DEBUG+0) |
#endif |
#define TRACE_APPLY() \ |
- hb_auto_trace_t<HB_DEBUG_APPLY> trace (&c->debug_depth, "APPLY", this, NULL, HB_FUNC); |
+ hb_auto_trace_t<HB_DEBUG_APPLY> trace (&c->debug_depth, "APPLY", this, HB_FUNC, "idx %d codepoint %u", c->buffer->cur().codepoint); |
struct hb_apply_context_t |
{ |
- unsigned int debug_depth; |
hb_font_t *font; |
hb_face_t *face; |
hb_buffer_t *buffer; |
hb_direction_t direction; |
hb_mask_t lookup_mask; |
- unsigned int context_length; |
unsigned int nesting_level_left; |
unsigned int lookup_props; |
unsigned int property; /* propety of first glyph */ |
+ unsigned int debug_depth; |
+ |
+ |
+ hb_apply_context_t (hb_font_t *font_, |
+ hb_face_t *face_, |
+ hb_buffer_t *buffer_, |
+ hb_mask_t lookup_mask_) : |
+ font (font_), face (face_), buffer (buffer_), |
+ direction (buffer_->props.direction), |
+ lookup_mask (lookup_mask_), |
+ nesting_level_left (MAX_NESTING_LEVEL), |
+ lookup_props (0), property (0), debug_depth (0) {} |
+ |
+ void set_lookup (const Lookup &l) { |
+ lookup_props = l.get_props (); |
+ } |
struct mark_skipping_forward_iterator_t |
{ |
inline mark_skipping_forward_iterator_t (hb_apply_context_t *c_, |
unsigned int start_index_, |
- unsigned int num_items_) |
+ unsigned int num_items_, |
+ bool context_match = false) |
{ |
c = c_; |
idx = start_index_; |
num_items = num_items_; |
- end = MIN (c->buffer->len, c->buffer->idx + c->context_length); |
+ mask = context_match ? -1 : c->lookup_mask; |
+ syllable = context_match ? 0 : c->buffer->cur().syllable (); |
+ end = c->buffer->len; |
} |
inline bool has_no_chance (void) const |
{ |
@@ -93,7 +155,7 @@ struct hb_apply_context_t |
idx++; |
} while (_hb_ot_layout_skip_mark (c->face, &c->buffer->info[idx], lookup_props, property_out)); |
num_items--; |
- return true; |
+ return (c->buffer->info[idx].mask & mask) && (!syllable || syllable == c->buffer->info[idx].syllable ()); |
} |
inline bool next (unsigned int *property_out = NULL) |
{ |
@@ -104,6 +166,8 @@ struct hb_apply_context_t |
private: |
hb_apply_context_t *c; |
unsigned int num_items; |
+ hb_mask_t mask; |
+ uint8_t syllable; |
unsigned int end; |
}; |
@@ -111,11 +175,15 @@ struct hb_apply_context_t |
{ |
inline mark_skipping_backward_iterator_t (hb_apply_context_t *c_, |
unsigned int start_index_, |
- unsigned int num_items_) |
+ unsigned int num_items_, |
+ hb_mask_t mask_ = 0, |
+ bool match_syllable_ = true) |
{ |
c = c_; |
idx = start_index_; |
num_items = num_items_; |
+ mask = mask_ ? mask_ : c->lookup_mask; |
+ syllable = match_syllable_ ? c->buffer->cur().syllable () : 0; |
} |
inline bool has_no_chance (void) const |
{ |
@@ -132,7 +200,7 @@ struct hb_apply_context_t |
idx--; |
} while (_hb_ot_layout_skip_mark (c->face, &c->buffer->out_info[idx], lookup_props, property_out)); |
num_items--; |
- return true; |
+ return (c->buffer->out_info[idx].mask & mask) && (!syllable || syllable == c->buffer->out_info[idx].syllable ()); |
} |
inline bool prev (unsigned int *property_out = NULL) |
{ |
@@ -143,69 +211,92 @@ struct hb_apply_context_t |
private: |
hb_apply_context_t *c; |
unsigned int num_items; |
+ hb_mask_t mask; |
+ uint8_t syllable; |
}; |
inline bool should_mark_skip_current_glyph (void) const |
{ |
- return _hb_ot_layout_skip_mark (face, &buffer->info[buffer->idx], lookup_props, NULL); |
+ return _hb_ot_layout_skip_mark (face, &buffer->cur(), lookup_props, NULL); |
} |
- inline void replace_glyph (hb_codepoint_t glyph_index) const |
+ inline void replace_glyph (hb_codepoint_t glyph_index, |
+ unsigned int klass = 0) const |
{ |
- clear_property (); |
+ buffer->cur().props_cache() = klass; /*XXX if has gdef? */ |
buffer->replace_glyph (glyph_index); |
} |
inline void replace_glyphs_be16 (unsigned int num_in, |
unsigned int num_out, |
- const uint16_t *glyph_data_be) const |
+ const uint16_t *glyph_data_be, |
+ unsigned int klass = 0) const |
{ |
- clear_property (); |
+ buffer->cur().props_cache() = klass; /* XXX if has gdef? */ |
buffer->replace_glyphs_be16 (num_in, num_out, glyph_data_be); |
} |
- |
- inline void guess_glyph_class (unsigned int klass) |
- { |
- /* XXX if ! has gdef */ |
- buffer->info[buffer->idx].props_cache() = klass; |
- } |
- |
- private: |
- inline void clear_property (void) const |
- { |
- /* XXX if has gdef */ |
- buffer->info[buffer->idx].props_cache() = 0; |
- } |
}; |
+typedef bool (*intersects_func_t) (hb_set_t *glyphs, const USHORT &value, const void *data); |
typedef bool (*match_func_t) (hb_codepoint_t glyph_id, const USHORT &value, const void *data); |
+typedef void (*closure_lookup_func_t) (hb_closure_context_t *c, unsigned int lookup_index); |
typedef bool (*apply_lookup_func_t) (hb_apply_context_t *c, unsigned int lookup_index); |
-struct ContextFuncs |
+struct ContextClosureFuncs |
+{ |
+ intersects_func_t intersects; |
+ closure_lookup_func_t closure; |
+}; |
+struct ContextApplyFuncs |
{ |
match_func_t match; |
apply_lookup_func_t apply; |
}; |
+static inline bool intersects_glyph (hb_set_t *glyphs, const USHORT &value, const void *data HB_UNUSED) |
+{ |
+ return glyphs->has (value); |
+} |
+static inline bool intersects_class (hb_set_t *glyphs, const USHORT &value, const void *data) |
+{ |
+ const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); |
+ return class_def.intersects_class (glyphs, value); |
+} |
+static inline bool intersects_coverage (hb_set_t *glyphs, const USHORT &value, const void *data) |
+{ |
+ const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; |
+ return (data+coverage).intersects (glyphs); |
+} |
+ |
+static inline bool intersects_array (hb_closure_context_t *c, |
+ unsigned int count, |
+ const USHORT values[], |
+ intersects_func_t intersects_func, |
+ const void *intersects_data) |
+{ |
+ for (unsigned int i = 0; i < count; i++) |
+ if (likely (!intersects_func (c->glyphs, values[i], intersects_data))) |
+ return false; |
+ return true; |
+} |
+ |
static inline bool match_glyph (hb_codepoint_t glyph_id, const USHORT &value, const void *data HB_UNUSED) |
{ |
return glyph_id == value; |
} |
- |
static inline bool match_class (hb_codepoint_t glyph_id, const USHORT &value, const void *data) |
{ |
const ClassDef &class_def = *reinterpret_cast<const ClassDef *>(data); |
return class_def.get_class (glyph_id) == value; |
} |
- |
static inline bool match_coverage (hb_codepoint_t glyph_id, const USHORT &value, const void *data) |
{ |
const OffsetTo<Coverage> &coverage = (const OffsetTo<Coverage>&)value; |
- return (data+coverage) (glyph_id) != NOT_COVERED; |
+ return (data+coverage).get_coverage (glyph_id) != NOT_COVERED; |
} |
@@ -214,7 +305,7 @@ static inline bool match_input (hb_apply_context_t *c, |
const USHORT input[], /* Array of input values--start with second glyph */ |
match_func_t match_func, |
const void *match_data, |
- unsigned int *context_length_out) |
+ unsigned int *end_offset = NULL) |
{ |
hb_apply_context_t::mark_skipping_forward_iterator_t skippy_iter (c, c->buffer->idx, count - 1); |
if (skippy_iter.has_no_chance ()) |
@@ -229,7 +320,8 @@ static inline bool match_input (hb_apply_context_t *c, |
return false; |
} |
- *context_length_out = skippy_iter.idx - c->buffer->idx + 1; |
+ if (end_offset) |
+ *end_offset = skippy_iter.idx - c->buffer->idx + 1; |
return true; |
} |
@@ -240,7 +332,7 @@ static inline bool match_backtrack (hb_apply_context_t *c, |
match_func_t match_func, |
const void *match_data) |
{ |
- hb_apply_context_t::mark_skipping_backward_iterator_t skippy_iter (c, c->buffer->backtrack_len (), count); |
+ hb_apply_context_t::mark_skipping_backward_iterator_t skippy_iter (c, c->buffer->backtrack_len (), count, true); |
if (skippy_iter.has_no_chance ()) |
return false; |
@@ -263,7 +355,7 @@ static inline bool match_lookahead (hb_apply_context_t *c, |
const void *match_data, |
unsigned int offset) |
{ |
- hb_apply_context_t::mark_skipping_forward_iterator_t skippy_iter (c, c->buffer->idx + offset - 1, count); |
+ hb_apply_context_t::mark_skipping_forward_iterator_t skippy_iter (c, c->buffer->idx + offset - 1, count, true); |
if (skippy_iter.has_no_chance ()) |
return false; |
@@ -285,7 +377,7 @@ struct LookupRecord |
{ |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return c->check_struct (this); |
+ return TRACE_RETURN (c->check_struct (this)); |
} |
USHORT sequenceIndex; /* Index into current glyph |
@@ -297,6 +389,14 @@ struct LookupRecord |
}; |
+static inline void closure_lookup (hb_closure_context_t *c, |
+ unsigned int lookupCount, |
+ const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */ |
+ closure_lookup_func_t closure_func) |
+{ |
+ for (unsigned int i = 0; i < lookupCount; i++) |
+ closure_func (c, lookupRecord->lookupListIndex); |
+} |
static inline bool apply_lookup (hb_apply_context_t *c, |
unsigned int count, /* Including the first glyph */ |
@@ -304,7 +404,7 @@ static inline bool apply_lookup (hb_apply_context_t *c, |
const LookupRecord lookupRecord[], /* Array of LookupRecords--in design order */ |
apply_lookup_func_t apply_func) |
{ |
- unsigned int end = MIN (c->buffer->len, c->buffer->idx + c->context_length); |
+ unsigned int end = c->buffer->len; |
if (unlikely (count == 0 || c->buffer->idx + count > end)) |
return false; |
@@ -360,25 +460,45 @@ static inline bool apply_lookup (hb_apply_context_t *c, |
/* Contextual lookups */ |
-struct ContextLookupContext |
+struct ContextClosureLookupContext |
{ |
- ContextFuncs funcs; |
+ ContextClosureFuncs funcs; |
+ const void *intersects_data; |
+}; |
+ |
+struct ContextApplyLookupContext |
+{ |
+ ContextApplyFuncs funcs; |
const void *match_data; |
}; |
-static inline bool context_lookup (hb_apply_context_t *c, |
- unsigned int inputCount, /* Including the first glyph (not matched) */ |
- const USHORT input[], /* Array of input values--start with second glyph */ |
- unsigned int lookupCount, |
- const LookupRecord lookupRecord[], |
- ContextLookupContext &lookup_context) |
+static inline void context_closure_lookup (hb_closure_context_t *c, |
+ unsigned int inputCount, /* Including the first glyph (not matched) */ |
+ const USHORT input[], /* Array of input values--start with second glyph */ |
+ unsigned int lookupCount, |
+ const LookupRecord lookupRecord[], |
+ ContextClosureLookupContext &lookup_context) |
+{ |
+ if (intersects_array (c, |
+ inputCount ? inputCount - 1 : 0, input, |
+ lookup_context.funcs.intersects, lookup_context.intersects_data)) |
+ closure_lookup (c, |
+ lookupCount, lookupRecord, |
+ lookup_context.funcs.closure); |
+} |
+ |
+ |
+static inline bool context_apply_lookup (hb_apply_context_t *c, |
+ unsigned int inputCount, /* Including the first glyph (not matched) */ |
+ const USHORT input[], /* Array of input values--start with second glyph */ |
+ unsigned int lookupCount, |
+ const LookupRecord lookupRecord[], |
+ ContextApplyLookupContext &lookup_context) |
{ |
- hb_apply_context_t new_context = *c; |
return match_input (c, |
inputCount, input, |
- lookup_context.funcs.match, lookup_context.match_data, |
- &new_context.context_length) |
- && apply_lookup (&new_context, |
+ lookup_context.funcs.match, lookup_context.match_data) |
+ && apply_lookup (c, |
inputCount, |
lookupCount, lookupRecord, |
lookup_context.funcs.apply); |
@@ -389,14 +509,22 @@ struct Rule |
friend struct RuleSet; |
private: |
- inline bool apply (hb_apply_context_t *c, ContextLookupContext &lookup_context) const |
+ |
+ inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const |
+ { |
+ TRACE_CLOSURE (); |
+ const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0)); |
+ context_closure_lookup (c, |
+ inputCount, input, |
+ lookupCount, lookupRecord, |
+ lookup_context); |
+ } |
+ |
+ inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const |
{ |
TRACE_APPLY (); |
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (input, input[0].static_size * (inputCount ? inputCount - 1 : 0)); |
- return context_lookup (c, |
- inputCount, input, |
- lookupCount, lookupRecord, |
- lookup_context); |
+ return TRACE_RETURN (context_apply_lookup (c, inputCount, input, lookupCount, lookupRecord, lookup_context)); |
} |
public: |
@@ -405,13 +533,13 @@ struct Rule |
return inputCount.sanitize (c) |
&& lookupCount.sanitize (c) |
&& c->check_range (input, |
- input[0].static_size * inputCount |
- + lookupRecordX[0].static_size * lookupCount); |
+ input[0].static_size * inputCount |
+ + lookupRecordX[0].static_size * lookupCount); |
} |
private: |
USHORT inputCount; /* Total number of glyphs in input |
- * glyph sequence--includes the first |
+ * glyph sequence--includes the first |
* glyph */ |
USHORT lookupCount; /* Number of LookupRecords */ |
USHORT input[VAR]; /* Array of match inputs--start with |
@@ -424,22 +552,29 @@ struct Rule |
struct RuleSet |
{ |
- inline bool apply (hb_apply_context_t *c, ContextLookupContext &lookup_context) const |
+ inline void closure (hb_closure_context_t *c, ContextClosureLookupContext &lookup_context) const |
+ { |
+ TRACE_CLOSURE (); |
+ unsigned int num_rules = rule.len; |
+ for (unsigned int i = 0; i < num_rules; i++) |
+ (this+rule[i]).closure (c, lookup_context); |
+ } |
+ |
+ inline bool apply (hb_apply_context_t *c, ContextApplyLookupContext &lookup_context) const |
{ |
TRACE_APPLY (); |
unsigned int num_rules = rule.len; |
for (unsigned int i = 0; i < num_rules; i++) |
{ |
if ((this+rule[i]).apply (c, lookup_context)) |
- return true; |
+ return TRACE_RETURN (true); |
} |
- |
- return false; |
+ return TRACE_RETURN (false); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return rule.sanitize (c, this); |
+ return TRACE_RETURN (rule.sanitize (c, this)); |
} |
private: |
@@ -456,25 +591,44 @@ struct ContextFormat1 |
friend struct Context; |
private: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ |
+ const Coverage &cov = (this+coverage); |
+ |
+ struct ContextClosureLookupContext lookup_context = { |
+ {intersects_glyph, closure_func}, |
+ NULL |
+ }; |
+ |
+ unsigned int count = ruleSet.len; |
+ for (unsigned int i = 0; i < count; i++) |
+ if (cov.intersects_coverage (c->glyphs, i)) { |
+ const RuleSet &rule_set = this+ruleSet[i]; |
+ rule_set.closure (c, lookup_context); |
+ } |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
- unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint); |
+ unsigned int index = (this+coverage) (c->buffer->cur().codepoint); |
if (likely (index == NOT_COVERED)) |
- return false; |
+ return TRACE_RETURN (false); |
const RuleSet &rule_set = this+ruleSet[index]; |
- struct ContextLookupContext lookup_context = { |
+ struct ContextApplyLookupContext lookup_context = { |
{match_glyph, apply_func}, |
NULL |
}; |
- return rule_set.apply (c, lookup_context); |
+ return TRACE_RETURN (rule_set.apply (c, lookup_context)); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return coverage.sanitize (c, this) |
- && ruleSet.sanitize (c, this); |
+ return TRACE_RETURN (coverage.sanitize (c, this) && ruleSet.sanitize (c, this)); |
} |
private: |
@@ -495,28 +649,47 @@ struct ContextFormat2 |
friend struct Context; |
private: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ if (!(this+coverage).intersects (c->glyphs)) |
+ return; |
+ |
+ const ClassDef &class_def = this+classDef; |
+ |
+ struct ContextClosureLookupContext lookup_context = { |
+ {intersects_class, closure_func}, |
+ NULL |
+ }; |
+ |
+ unsigned int count = ruleSet.len; |
+ for (unsigned int i = 0; i < count; i++) |
+ if (class_def.intersects_class (c->glyphs, i)) { |
+ const RuleSet &rule_set = this+ruleSet[i]; |
+ rule_set.closure (c, lookup_context); |
+ } |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
- unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint); |
- if (likely (index == NOT_COVERED)) |
- return false; |
+ unsigned int index = (this+coverage) (c->buffer->cur().codepoint); |
+ if (likely (index == NOT_COVERED)) return TRACE_RETURN (false); |
const ClassDef &class_def = this+classDef; |
- index = class_def (c->buffer->info[c->buffer->idx].codepoint); |
+ index = class_def (c->buffer->cur().codepoint); |
const RuleSet &rule_set = this+ruleSet[index]; |
- struct ContextLookupContext lookup_context = { |
+ struct ContextApplyLookupContext lookup_context = { |
{match_class, apply_func}, |
&class_def |
}; |
- return rule_set.apply (c, lookup_context); |
+ return TRACE_RETURN (rule_set.apply (c, lookup_context)); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return coverage.sanitize (c, this) |
- && classDef.sanitize (c, this) |
- && ruleSet.sanitize (c, this); |
+ return TRACE_RETURN (coverage.sanitize (c, this) && classDef.sanitize (c, this) && ruleSet.sanitize (c, this)); |
} |
private: |
@@ -540,33 +713,47 @@ struct ContextFormat3 |
friend struct Context; |
private: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ if (!(this+coverage[0]).intersects (c->glyphs)) |
+ return; |
+ |
+ const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * glyphCount); |
+ struct ContextClosureLookupContext lookup_context = { |
+ {intersects_coverage, closure_func}, |
+ this |
+ }; |
+ context_closure_lookup (c, |
+ glyphCount, (const USHORT *) (coverage + 1), |
+ lookupCount, lookupRecord, |
+ lookup_context); |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
- unsigned int index = (this+coverage[0]) (c->buffer->info[c->buffer->idx].codepoint); |
- if (likely (index == NOT_COVERED)) |
- return false; |
+ unsigned int index = (this+coverage[0]) (c->buffer->cur().codepoint); |
+ if (likely (index == NOT_COVERED)) return TRACE_RETURN (false); |
const LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * glyphCount); |
- struct ContextLookupContext lookup_context = { |
+ struct ContextApplyLookupContext lookup_context = { |
{match_coverage, apply_func}, |
this |
}; |
- return context_lookup (c, |
- glyphCount, (const USHORT *) (coverage + 1), |
- lookupCount, lookupRecord, |
- lookup_context); |
+ return TRACE_RETURN (context_apply_lookup (c, glyphCount, (const USHORT *) (coverage + 1), lookupCount, lookupRecord, lookup_context)); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- if (!c->check_struct (this)) return false; |
+ if (!c->check_struct (this)) return TRACE_RETURN (false); |
unsigned int count = glyphCount; |
- if (!c->check_array (coverage, coverage[0].static_size, count)) return false; |
+ if (!c->check_array (coverage, coverage[0].static_size, count)) return TRACE_RETURN (false); |
for (unsigned int i = 0; i < count; i++) |
- if (!coverage[i].sanitize (c, this)) return false; |
+ if (!coverage[i].sanitize (c, this)) return TRACE_RETURN (false); |
LookupRecord *lookupRecord = &StructAtOffset<LookupRecord> (coverage, coverage[0].static_size * count); |
- return c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount); |
+ return TRACE_RETURN (c->check_array (lookupRecord, lookupRecord[0].static_size, lookupCount)); |
} |
private: |
@@ -586,25 +773,37 @@ struct ContextFormat3 |
struct Context |
{ |
protected: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ switch (u.format) { |
+ case 1: u.format1.closure (c, closure_func); break; |
+ case 2: u.format2.closure (c, closure_func); break; |
+ case 3: u.format3.closure (c, closure_func); break; |
+ default: break; |
+ } |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
switch (u.format) { |
- case 1: return u.format1.apply (c, apply_func); |
- case 2: return u.format2.apply (c, apply_func); |
- case 3: return u.format3.apply (c, apply_func); |
- default:return false; |
+ case 1: return TRACE_RETURN (u.format1.apply (c, apply_func)); |
+ case 2: return TRACE_RETURN (u.format2.apply (c, apply_func)); |
+ case 3: return TRACE_RETURN (u.format3.apply (c, apply_func)); |
+ default:return TRACE_RETURN (false); |
} |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- if (!u.format.sanitize (c)) return false; |
+ if (!u.format.sanitize (c)) return TRACE_RETURN (false); |
switch (u.format) { |
- case 1: return u.format1.sanitize (c); |
- case 2: return u.format2.sanitize (c); |
- case 3: return u.format3.sanitize (c); |
- default:return true; |
+ case 1: return TRACE_RETURN (u.format1.sanitize (c)); |
+ case 2: return TRACE_RETURN (u.format2.sanitize (c)); |
+ case 3: return TRACE_RETURN (u.format3.sanitize (c)); |
+ default:return TRACE_RETURN (true); |
} |
} |
@@ -620,42 +819,67 @@ struct Context |
/* Chaining Contextual lookups */ |
-struct ChainContextLookupContext |
+struct ChainContextClosureLookupContext |
+{ |
+ ContextClosureFuncs funcs; |
+ const void *intersects_data[3]; |
+}; |
+ |
+struct ChainContextApplyLookupContext |
{ |
- ContextFuncs funcs; |
+ ContextApplyFuncs funcs; |
const void *match_data[3]; |
}; |
-static inline bool chain_context_lookup (hb_apply_context_t *c, |
- unsigned int backtrackCount, |
- const USHORT backtrack[], |
- unsigned int inputCount, /* Including the first glyph (not matched) */ |
- const USHORT input[], /* Array of input values--start with second glyph */ |
- unsigned int lookaheadCount, |
- const USHORT lookahead[], |
- unsigned int lookupCount, |
- const LookupRecord lookupRecord[], |
- ChainContextLookupContext &lookup_context) |
+static inline void chain_context_closure_lookup (hb_closure_context_t *c, |
+ unsigned int backtrackCount, |
+ const USHORT backtrack[], |
+ unsigned int inputCount, /* Including the first glyph (not matched) */ |
+ const USHORT input[], /* Array of input values--start with second glyph */ |
+ unsigned int lookaheadCount, |
+ const USHORT lookahead[], |
+ unsigned int lookupCount, |
+ const LookupRecord lookupRecord[], |
+ ChainContextClosureLookupContext &lookup_context) |
{ |
- /* First guess */ |
- if (unlikely (c->buffer->backtrack_len () < backtrackCount || |
- c->buffer->idx + inputCount + lookaheadCount > c->buffer->len || |
- inputCount + lookaheadCount > c->context_length)) |
- return false; |
+ if (intersects_array (c, |
+ backtrackCount, backtrack, |
+ lookup_context.funcs.intersects, lookup_context.intersects_data[0]) |
+ && intersects_array (c, |
+ inputCount ? inputCount - 1 : 0, input, |
+ lookup_context.funcs.intersects, lookup_context.intersects_data[1]) |
+ && intersects_array (c, |
+ lookaheadCount, lookahead, |
+ lookup_context.funcs.intersects, lookup_context.intersects_data[2])) |
+ closure_lookup (c, |
+ lookupCount, lookupRecord, |
+ lookup_context.funcs.closure); |
+} |
- hb_apply_context_t new_context = *c; |
+static inline bool chain_context_apply_lookup (hb_apply_context_t *c, |
+ unsigned int backtrackCount, |
+ const USHORT backtrack[], |
+ unsigned int inputCount, /* Including the first glyph (not matched) */ |
+ const USHORT input[], /* Array of input values--start with second glyph */ |
+ unsigned int lookaheadCount, |
+ const USHORT lookahead[], |
+ unsigned int lookupCount, |
+ const LookupRecord lookupRecord[], |
+ ChainContextApplyLookupContext &lookup_context) |
+{ |
+ unsigned int lookahead_offset; |
return match_backtrack (c, |
backtrackCount, backtrack, |
lookup_context.funcs.match, lookup_context.match_data[0]) |
&& match_input (c, |
inputCount, input, |
lookup_context.funcs.match, lookup_context.match_data[1], |
- &new_context.context_length) |
+ &lookahead_offset) |
&& match_lookahead (c, |
lookaheadCount, lookahead, |
lookup_context.funcs.match, lookup_context.match_data[2], |
- new_context.context_length) |
- && apply_lookup (&new_context, |
+ lookahead_offset) |
+ && apply_lookup (c, |
inputCount, |
lookupCount, lookupRecord, |
lookup_context.funcs.apply); |
@@ -666,30 +890,44 @@ struct ChainRule |
friend struct ChainRuleSet; |
private: |
- inline bool apply (hb_apply_context_t *c, ChainContextLookupContext &lookup_context) const |
+ |
+ inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const |
+ { |
+ TRACE_CLOSURE (); |
+ const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack); |
+ const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); |
+ const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
+ chain_context_closure_lookup (c, |
+ backtrack.len, backtrack.array, |
+ input.len, input.array, |
+ lookahead.len, lookahead.array, |
+ lookup.len, lookup.array, |
+ lookup_context); |
+ } |
+ |
+ inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const |
{ |
TRACE_APPLY (); |
const HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack); |
const ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); |
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
- return chain_context_lookup (c, |
- backtrack.len, backtrack.array, |
- input.len, input.array, |
- lookahead.len, lookahead.array, |
- lookup.len, lookup.array, |
- lookup_context); |
+ return TRACE_RETURN (chain_context_apply_lookup (c, |
+ backtrack.len, backtrack.array, |
+ input.len, input.array, |
+ lookahead.len, lookahead.array, lookup.len, |
+ lookup.array, lookup_context)); |
} |
public: |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- if (!backtrack.sanitize (c)) return false; |
+ if (!backtrack.sanitize (c)) return TRACE_RETURN (false); |
HeadlessArrayOf<USHORT> &input = StructAfter<HeadlessArrayOf<USHORT> > (backtrack); |
- if (!input.sanitize (c)) return false; |
+ if (!input.sanitize (c)) return TRACE_RETURN (false); |
ArrayOf<USHORT> &lookahead = StructAfter<ArrayOf<USHORT> > (input); |
- if (!lookahead.sanitize (c)) return false; |
+ if (!lookahead.sanitize (c)) return TRACE_RETURN (false); |
ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
- return lookup.sanitize (c); |
+ return TRACE_RETURN (lookup.sanitize (c)); |
} |
private: |
@@ -712,22 +950,28 @@ struct ChainRule |
struct ChainRuleSet |
{ |
- inline bool apply (hb_apply_context_t *c, ChainContextLookupContext &lookup_context) const |
+ inline void closure (hb_closure_context_t *c, ChainContextClosureLookupContext &lookup_context) const |
+ { |
+ TRACE_CLOSURE (); |
+ unsigned int num_rules = rule.len; |
+ for (unsigned int i = 0; i < num_rules; i++) |
+ (this+rule[i]).closure (c, lookup_context); |
+ } |
+ |
+ inline bool apply (hb_apply_context_t *c, ChainContextApplyLookupContext &lookup_context) const |
{ |
TRACE_APPLY (); |
unsigned int num_rules = rule.len; |
for (unsigned int i = 0; i < num_rules; i++) |
- { |
if ((this+rule[i]).apply (c, lookup_context)) |
- return true; |
- } |
+ return TRACE_RETURN (true); |
- return false; |
+ return TRACE_RETURN (false); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return rule.sanitize (c, this); |
+ return TRACE_RETURN (rule.sanitize (c, this)); |
} |
private: |
@@ -743,25 +987,42 @@ struct ChainContextFormat1 |
friend struct ChainContext; |
private: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ const Coverage &cov = (this+coverage); |
+ |
+ struct ChainContextClosureLookupContext lookup_context = { |
+ {intersects_glyph, closure_func}, |
+ {NULL, NULL, NULL} |
+ }; |
+ |
+ unsigned int count = ruleSet.len; |
+ for (unsigned int i = 0; i < count; i++) |
+ if (cov.intersects_coverage (c->glyphs, i)) { |
+ const ChainRuleSet &rule_set = this+ruleSet[i]; |
+ rule_set.closure (c, lookup_context); |
+ } |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
- unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint); |
- if (likely (index == NOT_COVERED)) |
- return false; |
+ unsigned int index = (this+coverage) (c->buffer->cur().codepoint); |
+ if (likely (index == NOT_COVERED)) return TRACE_RETURN (false); |
const ChainRuleSet &rule_set = this+ruleSet[index]; |
- struct ChainContextLookupContext lookup_context = { |
+ struct ChainContextApplyLookupContext lookup_context = { |
{match_glyph, apply_func}, |
{NULL, NULL, NULL} |
}; |
- return rule_set.apply (c, lookup_context); |
+ return TRACE_RETURN (rule_set.apply (c, lookup_context)); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return coverage.sanitize (c, this) |
- && ruleSet.sanitize (c, this); |
+ return TRACE_RETURN (coverage.sanitize (c, this) && ruleSet.sanitize (c, this)); |
} |
private: |
@@ -781,35 +1042,58 @@ struct ChainContextFormat2 |
friend struct ChainContext; |
private: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ if (!(this+coverage).intersects (c->glyphs)) |
+ return; |
+ |
+ const ClassDef &backtrack_class_def = this+backtrackClassDef; |
+ const ClassDef &input_class_def = this+inputClassDef; |
+ const ClassDef &lookahead_class_def = this+lookaheadClassDef; |
+ |
+ struct ChainContextClosureLookupContext lookup_context = { |
+ {intersects_class, closure_func}, |
+ {&backtrack_class_def, |
+ &input_class_def, |
+ &lookahead_class_def} |
+ }; |
+ |
+ unsigned int count = ruleSet.len; |
+ for (unsigned int i = 0; i < count; i++) |
+ if (input_class_def.intersects_class (c->glyphs, i)) { |
+ const ChainRuleSet &rule_set = this+ruleSet[i]; |
+ rule_set.closure (c, lookup_context); |
+ } |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
- unsigned int index = (this+coverage) (c->buffer->info[c->buffer->idx].codepoint); |
- if (likely (index == NOT_COVERED)) |
- return false; |
+ unsigned int index = (this+coverage) (c->buffer->cur().codepoint); |
+ if (likely (index == NOT_COVERED)) return TRACE_RETURN (false); |
const ClassDef &backtrack_class_def = this+backtrackClassDef; |
const ClassDef &input_class_def = this+inputClassDef; |
const ClassDef &lookahead_class_def = this+lookaheadClassDef; |
- index = input_class_def (c->buffer->info[c->buffer->idx].codepoint); |
+ index = input_class_def (c->buffer->cur().codepoint); |
const ChainRuleSet &rule_set = this+ruleSet[index]; |
- struct ChainContextLookupContext lookup_context = { |
+ struct ChainContextApplyLookupContext lookup_context = { |
{match_class, apply_func}, |
{&backtrack_class_def, |
&input_class_def, |
&lookahead_class_def} |
}; |
- return rule_set.apply (c, lookup_context); |
+ return TRACE_RETURN (rule_set.apply (c, lookup_context)); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return coverage.sanitize (c, this) |
- && backtrackClassDef.sanitize (c, this) |
- && inputClassDef.sanitize (c, this) |
- && lookaheadClassDef.sanitize (c, this) |
- && ruleSet.sanitize (c, this); |
+ return TRACE_RETURN (coverage.sanitize (c, this) && backtrackClassDef.sanitize (c, this) && |
+ inputClassDef.sanitize (c, this) && lookaheadClassDef.sanitize (c, this) && |
+ ruleSet.sanitize (c, this)); |
} |
private: |
@@ -842,38 +1126,58 @@ struct ChainContextFormat3 |
private: |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack); |
+ |
+ if (!(this+input[0]).intersects (c->glyphs)) |
+ return; |
+ |
+ const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); |
+ const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
+ struct ChainContextClosureLookupContext lookup_context = { |
+ {intersects_coverage, closure_func}, |
+ {this, this, this} |
+ }; |
+ chain_context_closure_lookup (c, |
+ backtrack.len, (const USHORT *) backtrack.array, |
+ input.len, (const USHORT *) input.array + 1, |
+ lookahead.len, (const USHORT *) lookahead.array, |
+ lookup.len, lookup.array, |
+ lookup_context); |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
const OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack); |
- unsigned int index = (this+input[0]) (c->buffer->info[c->buffer->idx].codepoint); |
- if (likely (index == NOT_COVERED)) |
- return false; |
+ unsigned int index = (this+input[0]) (c->buffer->cur().codepoint); |
+ if (likely (index == NOT_COVERED)) return TRACE_RETURN (false); |
const OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); |
const ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
- struct ChainContextLookupContext lookup_context = { |
+ struct ChainContextApplyLookupContext lookup_context = { |
{match_coverage, apply_func}, |
{this, this, this} |
}; |
- return chain_context_lookup (c, |
- backtrack.len, (const USHORT *) backtrack.array, |
- input.len, (const USHORT *) input.array + 1, |
- lookahead.len, (const USHORT *) lookahead.array, |
- lookup.len, lookup.array, |
- lookup_context); |
+ return TRACE_RETURN (chain_context_apply_lookup (c, |
+ backtrack.len, (const USHORT *) backtrack.array, |
+ input.len, (const USHORT *) input.array + 1, |
+ lookahead.len, (const USHORT *) lookahead.array, |
+ lookup.len, lookup.array, lookup_context)); |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- if (!backtrack.sanitize (c, this)) return false; |
+ if (!backtrack.sanitize (c, this)) return TRACE_RETURN (false); |
OffsetArrayOf<Coverage> &input = StructAfter<OffsetArrayOf<Coverage> > (backtrack); |
- if (!input.sanitize (c, this)) return false; |
+ if (!input.sanitize (c, this)) return TRACE_RETURN (false); |
OffsetArrayOf<Coverage> &lookahead = StructAfter<OffsetArrayOf<Coverage> > (input); |
- if (!lookahead.sanitize (c, this)) return false; |
+ if (!lookahead.sanitize (c, this)) return TRACE_RETURN (false); |
ArrayOf<LookupRecord> &lookup = StructAfter<ArrayOf<LookupRecord> > (lookahead); |
- return lookup.sanitize (c); |
+ return TRACE_RETURN (lookup.sanitize (c)); |
} |
private: |
@@ -900,25 +1204,37 @@ struct ChainContextFormat3 |
struct ChainContext |
{ |
protected: |
+ |
+ inline void closure (hb_closure_context_t *c, closure_lookup_func_t closure_func) const |
+ { |
+ TRACE_CLOSURE (); |
+ switch (u.format) { |
+ case 1: u.format1.closure (c, closure_func); break; |
+ case 2: u.format2.closure (c, closure_func); break; |
+ case 3: u.format3.closure (c, closure_func); break; |
+ default: break; |
+ } |
+ } |
+ |
inline bool apply (hb_apply_context_t *c, apply_lookup_func_t apply_func) const |
{ |
TRACE_APPLY (); |
switch (u.format) { |
- case 1: return u.format1.apply (c, apply_func); |
- case 2: return u.format2.apply (c, apply_func); |
- case 3: return u.format3.apply (c, apply_func); |
- default:return false; |
+ case 1: return TRACE_RETURN (u.format1.apply (c, apply_func)); |
+ case 2: return TRACE_RETURN (u.format2.apply (c, apply_func)); |
+ case 3: return TRACE_RETURN (u.format3.apply (c, apply_func)); |
+ default:return TRACE_RETURN (false); |
} |
} |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- if (!u.format.sanitize (c)) return false; |
+ if (!u.format.sanitize (c)) return TRACE_RETURN (false); |
switch (u.format) { |
- case 1: return u.format1.sanitize (c); |
- case 2: return u.format2.sanitize (c); |
- case 3: return u.format3.sanitize (c); |
- default:return true; |
+ case 1: return TRACE_RETURN (u.format1.sanitize (c)); |
+ case 2: return TRACE_RETURN (u.format2.sanitize (c)); |
+ case 3: return TRACE_RETURN (u.format3.sanitize (c)); |
+ default:return TRACE_RETURN (true); |
} |
} |
@@ -942,7 +1258,7 @@ struct ExtensionFormat1 |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return c->check_struct (this); |
+ return TRACE_RETURN (c->check_struct (this)); |
} |
private: |
@@ -975,10 +1291,10 @@ struct Extension |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- if (!u.format.sanitize (c)) return false; |
+ if (!u.format.sanitize (c)) return TRACE_RETURN (false); |
switch (u.format) { |
- case 1: return u.format1.sanitize (c); |
- default:return true; |
+ case 1: return TRACE_RETURN (u.format1.sanitize (c)); |
+ default:return TRACE_RETURN (true); |
} |
} |
@@ -1032,10 +1348,10 @@ struct GSUBGPOS |
inline bool sanitize (hb_sanitize_context_t *c) { |
TRACE_SANITIZE (); |
- return version.sanitize (c) && likely (version.major == 1) |
- && scriptList.sanitize (c, this) |
- && featureList.sanitize (c, this) |
- && lookupList.sanitize (c, this); |
+ return TRACE_RETURN (version.sanitize (c) && likely (version.major == 1) && |
+ scriptList.sanitize (c, this) && |
+ featureList.sanitize (c, this) && |
+ lookupList.sanitize (c, this)); |
} |
protected: |