gecko-dev/dom/webbrowserpersist
Henri Sivonen 3edc601325 Bug 1402247 - Use encoding_rs for XPCOM string encoding conversions. r=Nika,erahm,froydnj.
Correctness improvements:

 * UTF errors are handled safely per spec instead of dangerously truncating
   strings.

 * There are fewer converter implementations.

Performance improvements:

 * The old code did exact buffer length math, which meant doing UTF math twice
   on each input string (once for length calculation and another time for
   conversion). Exact length math is more complicated when handling errors
   properly, which the old code didn't do. The new code does UTF math on the
   string content only once (when converting) but risks allocating more than
   once. There are heuristics in place to lower the probability of
   reallocation in cases where the double math avoidance isn't enough of a
   saving to absorb an allocation and memcpy.

 * Previously, in UTF-16 <-> UTF-8 conversions, an ASCII prefix was optimized
   but a single non-ASCII code point pessimized the rest of the string. The
   new code tries to get back on the fast ASCII path.

 * UTF-16 to Latin1 conversion guarantees less about handling of out-of-range
   input to eliminate an operation from the inner loop on x86/x86_64.

 * When assigning to a pre-existing string, the new code tries to reuse the
   old buffer instead of first releasing the old buffer and then allocating a
   new one.

 * When reallocating from the new code, the memcpy covers only the data that
   is part of the logical length of the old string instead of memcpying the
   whole capacity. (For old callers old excess memcpy behavior is preserved
   due to bogus callers. See bug 1472113.)

 * UTF-8 strings in XPConnect that are in the Latin1 range are passed to
   SpiderMonkey as Latin1.

New features:

 * Conversion between UTF-8 and Latin1 is added in order to enable faster
   future interop between Rust code (or otherwise UTF-8-using code) and text
   node and SpiderMonkey code that uses Latin1.

MozReview-Commit-ID: JaJuExfILM9
2018-08-14 14:43:42 +03:00
..
PWebBrowserPersistDocument.ipdl Bug 1469916, r=ckerschb,jkt 2018-06-22 15:41:39 +01:00
PWebBrowserPersistResources.ipdl
PWebBrowserPersistSerialize.ipdl
WebBrowserPersistDocumentChild.cpp Bug 1469916, r=ckerschb,jkt 2018-06-22 15:41:39 +01:00
WebBrowserPersistDocumentChild.h
WebBrowserPersistDocumentParent.cpp Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
WebBrowserPersistDocumentParent.h Bug 1339713 - Use IPCStream everywhere - part 1 - PWebBrowserPersistDocument, r=smaug 2017-03-09 14:09:11 +01:00
WebBrowserPersistLocalDocument.cpp Bug 1476145 part 9. Drop support for getting window utils via getInterface. r=nika 2018-07-24 19:47:43 -04:00
WebBrowserPersistLocalDocument.h Bug 1373984 - Turn nsIDocument::mCharacterSet into mozilla::NotNull<const mozilla::Encoding*>. r=hsivonen 2017-06-18 20:37:50 +09:00
WebBrowserPersistRemoteDocument.cpp Bug 1469916, r=ckerschb,jkt 2018-06-22 15:41:39 +01:00
WebBrowserPersistRemoteDocument.h Bug 1469916, r=ckerschb,jkt 2018-06-22 15:41:39 +01:00
WebBrowserPersistResourcesChild.cpp
WebBrowserPersistResourcesChild.h
WebBrowserPersistResourcesParent.cpp Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
WebBrowserPersistResourcesParent.h
WebBrowserPersistSerializeChild.cpp Bug 1465585: Switch from mozilla::Move to std::move. r=froydnj 2018-06-01 10:45:27 +02:00
WebBrowserPersistSerializeChild.h
WebBrowserPersistSerializeParent.cpp Bug 1372405 - Provide names for all runnables in the tree (r=froydnj) 2017-06-26 14:19:58 -07:00
WebBrowserPersistSerializeParent.h
moz.build Bug 1480607 - Remove nsCWebBrowser and nsCWebBrowserPersist; r=nika 2018-08-07 01:10:31 +00:00
nsIWebBrowserPersist.idl Bug 1480607 - Remove nsCWebBrowser and nsCWebBrowserPersist; r=nika 2018-08-07 01:10:31 +00:00
nsIWebBrowserPersistDocument.idl Bug 1469916, r=ckerschb,jkt 2018-06-22 15:41:39 +01:00
nsWebBrowserPersist.cpp Bug 1402247 - Use encoding_rs for XPCOM string encoding conversions. r=Nika,erahm,froydnj. 2018-08-14 14:43:42 +03:00
nsWebBrowserPersist.h Bug 1480607 - Remove nsCWebBrowser and nsCWebBrowserPersist; r=nika 2018-08-07 01:10:31 +00:00