Files
wasmtime/cranelift/isle/isle
yuyang c9a9c2c191 Specify a read parameter for ISLE's Lexer. (#6123)
* fix col

* fix test failure

* specify read method.

* modify isle lexer

* remove a fn
2023-04-24 16:11:34 +00:00
..
2023-04-05 17:06:36 +00:00

ISLE: Instruction Selection / Lowering Expressions

ISLE is a domain specific language (DSL) for instruction selection and lowering clif instructions to vcode's MachInsts in Cranelift.

ISLE is a statically-typed term-rewriting language. You define rewriting rules that map input terms (clif instructions) into output terms (MachInsts). These rules get compiled down into Rust source test that uses a tree of match expressions that is as good or better than what you would have written by hand.