Stream: git-wasmtime

Topic: wasmtime / issue #7856 Cranelift/ISLE/e-graphs: Add bette...


view this post on Zulip Wasmtime GitHub notifications bot (Feb 01 2024 at 16:04):

fitzgen added the cranelift label to Issue #7856.

view this post on Zulip Wasmtime GitHub notifications bot (Feb 01 2024 at 16:04):

fitzgen added the isle label to Issue #7856.

view this post on Zulip Wasmtime GitHub notifications bot (Feb 01 2024 at 16:04):

fitzgen opened issue #7856:

In traditional peephole passes, it is easy to add logging for each rewrite you perform on the IR.

In e-graphs, we perform all possible rewrites, producing many equivalent expressions, and then afterwards extract just the best version. This means that logging each rewrite we perform will emit a bunch of largely irrelevant logs for expressions that we didn't ultimately extract. And by the time we do extraction, we no longer know which chain of rewrites produced that expression. This makes debugging a series of rewrites quite difficult.

We should figure out some way to improve things here.

Straw person idea:

We would probably only want to do this when a compile-time cargo feature is enabled. We could enable this feature for the filetests crate, but not be default in cranelift-codegen, so we could even write filetests that assert that certain rules we expect to chain together, do in fact chain together.

I think there were plans to add names to rules (maybe support for this even already landed in ISLE? can't remember) and we could use these names in the comments if they exist. That would be something that we could test for in the filetest directives, since we wouldn't want to include the source locations, as those would be too noisy for filetests when adding, removing, and tweaking rules.

But anyways, the filetest support is ultimately a secondary priority. I really just want to have better debugging of the e-graph rewrites.

cc @elliottt

view this post on Zulip Wasmtime GitHub notifications bot (Feb 01 2024 at 16:05):

github-actions[bot] commented on issue #7856:

Subscribe to Label Action

cc @cfallin, @fitzgen

<details>
This issue or pull request has been labeled: "isle"

Thus the following users have been cc'd because of the following labels:

To subscribe or unsubscribe from this label, edit the <code>.github/subscribe-to-label.json</code> configuration file.

Learn more.
</details>

view this post on Zulip Wasmtime GitHub notifications bot (Feb 06 2024 at 19:34):

avanhatt commented on issue #7856:

FWIW, egg's "explanation" construct (and the paper they reference) might be a useful place to look for inspiration.

view this post on Zulip Wasmtime GitHub notifications bot (Feb 06 2024 at 19:35):

avanhatt commented on issue #7856:

We also have code to name ISLE rules in the Crocus codebase, I can try to split that off as a separate PR soon.


Last updated: Nov 22 2024 at 16:03 UTC