uweigand opened PR #3723 from isle-safepoint
to main
:
Change the implementation of emitted_insts in IsleContext from
a plain vector of instructions into a vector of tuples, where
the second element is a boolean that indicates whether this
instruction should be emitted as a safepoint.This allows targets to emit safepoint insns via ISLE.
@cfallin @fitzgen
<!--
Please ensure that the following steps are all taken care of before submitting
the PR.
[ ] This has been discussed in issue #..., or if not, please tell us why
here.[ ] A short description of what this does, why it is needed; if the
description becomes long, the matter should probably be discussed in an issue
first.[ ] This PR contains test cases, if meaningful.
- [ ] A reviewer from the core maintainer team has been assigned for this PR.
If you don't know who could review this, please indicate so. The list of
suggested reviewers on the right can help you.Please ensure all communication adheres to the code of conduct.
-->
bjorn3 submitted PR review.
bjorn3 created PR review comment:
This probably increases memory usage by a considerable amount due to padding. Maybe we could instead have an
is_safepoint
method on instructions?
uweigand submitted PR review.
uweigand created PR review comment:
This vector tends to be small, it only holds the machine instructions emitted for a single CLIF instruction. So I don't think memory usage is really any concern here ...
bjorn3 submitted PR review.
bjorn3 created PR review comment:
Right, forgot about that.
cfallin submitted PR review.
cfallin merged PR #3723.
fitzgen submitted PR review.
fitzgen submitted PR review.
fitzgen created PR review comment:
Could we use
self.emit(..)
here to hide the bool tuple entry, which is noise/distracting/raises irrelevant questions for new code readers who stumble upon this?
fitzgen submitted PR review.
fitzgen created PR review comment:
Ah I see this already merged, I'll send a follow up PR.
Last updated: Nov 22 2024 at 16:03 UTC