RESOLVED FIXED 234952
[RISCV64] riscv64 backend should lower offlineasm instructions
https://bugs.webkit.org/show_bug.cgi?id=234952
Summary [RISCV64] riscv64 backend should lower offlineasm instructions
Zan Dobersek
Reported 2022-01-07 02:55:30 PST
[RISCV64] riscv64 backend should lower offlineasm instructions
Attachments
Patch (128.67 KB, patch)
2022-01-07 02:56 PST, Zan Dobersek
no flags
Patch (129.17 KB, patch)
2022-01-09 23:59 PST, Zan Dobersek
no flags
Patch (128.79 KB, patch)
2022-01-13 04:43 PST, Zan Dobersek
no flags
Zan Dobersek
Comment 1 2022-01-07 02:56:19 PST
Zan Dobersek
Comment 2 2022-01-09 23:59:25 PST
Created attachment 448723 [details] Patch With additional shift-amount validation.
Yusuke Suzuki
Comment 3 2022-01-11 23:18:34 PST
Comment on attachment 448723 [details] Patch r=me
EWS
Comment 4 2022-01-11 23:53:52 PST
Committed r287912 (245945@main): <https://commits.webkit.org/245945@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 448723 [details].
Radar WebKit Bug Importer
Comment 5 2022-01-11 23:54:17 PST
WebKit Commit Bot
Comment 6 2022-01-12 16:28:39 PST
Re-opened since this is blocked by bug 235164
Zan Dobersek
Comment 7 2022-01-13 02:17:19 PST
With regards to the regression that initiated the rollout in #235164, the only thing that could affect ARM64/ARM64E is the additional lowering of misplaced addresses for any baddi*, bsubi* and bmuli* instructions. But these should already be lowered by the time that Sequence.getModifiedListARM64() calls riscLowerMisplacedAddresses(), due to already calling riscLowerSimpleBranchOps() and riscLowerHardBranchOps64() before that. Don't know. I can implement Sequence.lowerMisplacedAddressesRISCV64() and manually lower these instructions there, not affecting any other architecture.
Zan Dobersek
Comment 8 2022-01-13 04:43:34 PST
Zan Dobersek
Comment 9 2022-01-13 04:45:43 PST
Comment on attachment 449048 [details] Patch View in context: https://bugs.webkit.org/attachment.cgi?id=449048&action=review > Source/JavaScriptCore/offlineasm/riscv64.rb:406 > +def riscv64LowerMisplacedAddresses(list) > + newList = [] > + list.each { > + | node | > + if node.is_a? Instruction > + case node.opcode > + when /^baddi/, /^bsubi/, /^bmuli/ > + postInstructions = [] > + newList << node.riscCloneWithOperandsLowered(newList, postInstructions, "i") > + newList += postInstructions These specific instructions are now handled in a separate, RISCV64-specific lowering pass. Didn't use Instruction.lowerMisplacedAddressesRISCV64() to keep the lowering passes uniformly implemented in helper functions.
Yusuke Suzuki
Comment 10 2022-01-13 15:00:28 PST
Comment on attachment 449048 [details] Patch r=me
EWS
Comment 11 2022-01-13 20:38:47 PST
Committed r288007 (246033@main): <https://commits.webkit.org/246033@main> All reviewed patches have been landed. Closing bug and clearing flags on attachment 449048 [details].
Note You need to log in before you can comment on or make changes to this bug.