Open
Bug 1071406
Opened 11 years ago
Updated 3 years ago
IonMonkey: crash emitting regalloc debug messages in PrintUse()
Categories
(Core :: JavaScript Engine: JIT, defect, P5)
Core
JavaScript Engine: JIT
Tracking
()
NEW
People
(Reporter: dougc, Unassigned)
References
(Blocks 1 open bug)
Details
Attachments
(1 file)
|
1.35 KB,
patch
|
Details | Diff | Splinter Review |
From the PrintUse() function in LIR.cpp:
"case LUse::FIXED:
// Unfortunately, we don't know here whether the virtual register is a
// float or a double. Should we steal a bit in LUse for help? For now,
// nothing defines any fixed xmm registers."
This comment is no longer correct. The ARM has fixed float operands for some operations and the x64/x86 now use xmm operations with implicit fixed register operands. This code path can crash on the ARM.
| Reporter | ||
Comment 1•11 years ago
|
||
fwiw a workaround.
Updated•9 years ago
|
Priority: -- → P5
Updated•4 years ago
|
Blocks: sm-regalloc
Updated•3 years ago
|
Severity: normal → S3
You need to log in
before you can comment on or make changes to this bug.
Description
•