Closed
Bug 1518289
Opened 6 years ago
Closed 6 years ago
ARM64: Implement codegen for visitRoundF().
Categories
(Core :: JavaScript Engine: JIT, enhancement, P2)
Tracking
()
RESOLVED
FIXED
mozilla66
Tracking | Status | |
---|---|---|
firefox66 | --- | fixed |
People
(Reporter: sstangl, Assigned: sstangl)
References
Details
Attachments
(1 file, 1 obsolete file)
4.59 KB,
patch
|
sstangl
:
review+
|
Details | Diff | Splinter Review |
Just like the visitRound() patch, but for 32-bit floating point.
Attachment #9034822 -
Flags: review?(nicolas.b.pierron)
Comment 1•6 years ago
|
||
Comment on attachment 9034822 [details] [diff] [review]
0001-Implement-ARM64-CodeGenerator-visitRoundF-.-r-nbp.patch
Review of attachment 9034822 [details] [diff] [review]:
-----------------------------------------------------------------
Looks good to me, nothing more to say expect that this look like a proper port from visitRound to visitRoundF.
::: js/src/jit/arm64/CodeGenerator-arm64.cpp
@@ +1052,5 @@
> + // In the case of zero, the input may have been NaN or -0, which must bail.
> + masm.branch32(Assembler::NotEqual, output, Imm32(0), &done);
> + {
> + // If input is NaN, comparisons set the C and V bits of the NZCV flags.
> + masm.Fcmp(ARMFPRegister(input), 0.0f);
note: Nice touch on the 0.0f :) (hopefully C++ should coerce it to a double at compile time to match Fcmp second parameter type)
Attachment #9034822 -
Flags: review?(nicolas.b.pierron) → review+
Assignee | ||
Comment 2•6 years ago
|
||
Same patch, but avoids redundantly creating an ARMFPRegister that already exists.
Attachment #9034822 -
Attachment is obsolete: true
Attachment #9035088 -
Flags: review+
Assignee | ||
Updated•6 years ago
|
Keywords: checkin-needed
Pushed by apavel@mozilla.com:
https://hg.mozilla.org/integration/mozilla-inbound/rev/52e46924c0bc
Implement ARM64 CodeGenerator::visitRoundF(). r=nbp
Keywords: checkin-needed
Comment 4•6 years ago
|
||
bugherder |
Status: NEW → RESOLVED
Closed: 6 years ago
status-firefox66:
--- → fixed
Resolution: --- → FIXED
Target Milestone: --- → mozilla66
You need to log in
before you can comment on or make changes to this bug.
Description
•