Open
Bug 1097807
Opened 10 years ago
Updated 2 months ago
Clean up ion jitcode mapping generation.
Categories
(Core :: JavaScript Engine: JIT, enhancement, P5)
Core
JavaScript Engine: JIT
Tracking
()
NEW
People
(Reporter: djvj, Unassigned)
References
(Blocks 1 open bug)
Details
IonMonkey's CodeGenerator keeps a handful of fields (nativeToBytecode*_) that are better organized as a temporary struct that is passed around on stack.
Also, the freeing of nativeToBytecodeScriptList_ and nativeToBytecodeMap_ on error paths is currently ad-hoc, and should be modified to use a UniquePtr to ensure that the data gets freed appropriately.
Updated•8 years ago
|
Priority: -- → P5
Updated•2 years ago
|
Severity: normal → S3
Updated•2 months ago
|
You need to log in
before you can comment on or make changes to this bug.
Description
•