* Optimizations

* Reduced memory for attribute and body objects, see `XML_NEW_DIFFERENTIATE` compile-time option.
  * Optimized cbuf handling in parsing and xml2cbuf functions.
  * Optimized xml scanner to read strings rather than single chars
  * Optimized xml_merge for the case of disjunct trees.
This commit is contained in:
Olof hagsand 2020-04-28 22:31:58 +02:00
parent 9a8c6cf3e6
commit 94cf4a88b3
24 changed files with 477 additions and 257 deletions

View file

@ -341,8 +341,10 @@ xpath_optimize_check(xpath_tree *xs,
_optimize_hits++;
return 1; /* Optimized */
}
else
else{
clixon_xvec_free(xvec);
return 0; /* use regular code */
}
#else
return 0; /* use regular code */
#endif