546
edits
Line 10: | Line 10: | ||
** [https://bugzilla.mozilla.org/show_bug.cgi?id=506174 Use one single GC heap chunk, avoiding frequent mmap and malloc calls] | ** [https://bugzilla.mozilla.org/show_bug.cgi?id=506174 Use one single GC heap chunk, avoiding frequent mmap and malloc calls] | ||
* Speed up collector | * Speed up collector | ||
** Allocate short-enough strings from GC heap, not malloc heap [bug | ** Allocate short-enough strings from GC heap, not malloc heap [bug 402614] | ||
** Allocate object dslots from GC heap, not malloc heap? Alternative: [bug NNNNNN] | ** Allocate object dslots from GC heap, not malloc heap? Alternative: [bug NNNNNN] | ||
** Based on [https://bugzilla.mozilla.org/show_bug.cgi?id=502736 Gregor's stats] consider making 32-byte and 64-byte JSObjects to cover most cases except large objects without any dslots [https://bugzilla.mozilla.org/show_bug.cgi?id=508357 bug 508357] | ** Based on [https://bugzilla.mozilla.org/show_bug.cgi?id=502736 Gregor's stats] consider making 32-byte and 64-byte JSObjects to cover most cases except large objects without any dslots [https://bugzilla.mozilla.org/show_bug.cgi?id=508357 bug 508357] |
edits