Closed
Bug 1509094
Opened 6 years ago
Closed 4 years ago
Add LifoAlloc documentation.
Categories
(Core :: JavaScript Engine, enhancement, P3)
Core
JavaScript Engine
Tracking
()
RESOLVED
FIXED
89 Branch
| Tracking | Status | |
|---|---|---|
| firefox89 | --- | fixed |
People
(Reporter: nbp, Assigned: nbp)
References
Details
Attachments
(2 files)
Bug 1489572 is changing some of the way LifoAlloc is handling memory, to be used for large allocations too.
We should document how LifoAlloc is structured:
- 2 list of live chunks, 1 list of unused chunks.
- What are markers, and where they are used.
- Why do we have an iterator over LifoAlloc allocations.
- LifoAllocScope, and how to use them correctly.
- How to use LifoAlloc as an infallible allocator.
- Describe the various compilation toggles and memory safety reports instrumentation. (LIFO_CHUNK_PROTECT, LIFO_HAVE_MEM_CHECK, JS_OOM_BREAKPOINT) and induced errors and ways to test and fix them [1].
[1] https://bugzilla.mozilla.org/buglist.cgi?f1=OP&o3=substring&list_id=14442422&short_desc=%5BOOM%5D%20Cannot%20allocate%20a%20new%20chunk&f0=OP&v3=OOM%5D&resolution=FIXED&o2=substring&f4=CP&query_format=advanced&j1=OR&f3=status_whiteboard&f2=short_desc&bug_status=RESOLVED&short_desc_type=allwordssubstr&f5=CP&component=JavaScript%20Engine&component=JavaScript%20Engine%3A%20JIT&component=JavaScript%3A%20GC&component=JavaScript%3A%20Internationalization%20API&component=JavaScript%3A%20Standard%20Library&component=Javascript%3A%20Web%20Assembly&component=js-ctypes&v2=OOM%5D&product=Core
Updated•6 years ago
|
Priority: -- → P3
| Assignee | ||
Comment 1•6 years ago
|
||
This patch add LifoAlloc documentation, to document the main use cases.
This documentation lacks description of LifoAlloc::{steal / transfer*From / free*} functions.
Attachment #9033332 -
Flags: feedback?(tcampbell)
Comment 2•4 years ago
|
||
Comment on attachment 9033332 [details] [diff] [review]
Add LifoAlloc documentation.
Should turn this into a patch and submit :)
Attachment #9033332 -
Flags: feedback?(tcampbell) → feedback+
| Assignee | ||
Comment 3•4 years ago
|
||
Updated•4 years ago
|
Assignee: nobody → nicolas.b.pierron
Status: NEW → ASSIGNED
Pushed by npierron@mozilla.com:
https://hg.mozilla.org/integration/autoland/rev/9813615084f6
Add LifoAlloc documentation. r=iain DONTBUILD
Comment 5•4 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 4 years ago
status-firefox89:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → 89 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•