Closed
Bug 1813002
Opened 2 years ago
Closed 2 years ago
Mark all known boolean stack values in Baseline
Categories
(Core :: JavaScript Engine: JIT, enhancement, P1)
Core
JavaScript Engine: JIT
Tracking
()
RESOLVED
FIXED
111 Branch
| Tracking | Status | |
|---|---|---|
| firefox111 | --- | fixed |
People
(Reporter: anba, Assigned: anba)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
Marking known boolean stack values let's us avoid generating unnecessary ToBool ICs.
For example if (p in o) { ... } is currently generated a ToBool IC for the if statement, even though we know at compile time that the in expression always returns a boolean value.
| Assignee | ||
Comment 1•2 years ago
|
||
This saves some unnecessary ToBool ICs for known boolean values.
Updated•2 years ago
|
Pushed by andre.bargull@gmail.com:
https://hg.mozilla.org/integration/autoland/rev/48e3f591f662
Mark boolean values in Baseline compilation. r=jandem
Comment 3•2 years ago
|
||
| bugherder | ||
Status: ASSIGNED → RESOLVED
Closed: 2 years ago
Resolution: --- → FIXED
Target Milestone: --- → 111 Branch
You need to log in
before you can comment on or make changes to this bug.
Description
•