(inst: &Inst)
| 9 | const ASM: &str = "cranelift_assembler_x64"; |
| 10 | |
| 11 | fn include_inst(inst: &Inst) -> bool { |
| 12 | // No need to worry about this instruction shape in ISLE as it's generated |
| 13 | // in ABI code, not ISLE. |
| 14 | if inst.mnemonic.starts_with("push") { |
| 15 | return false; |
| 16 | } |
| 17 | |
| 18 | true |
| 19 | } |
| 20 | |
| 21 | /// Returns the Rust type used for the `IsleConstructorRaw` variants. |
| 22 | /// |
no outgoing calls
no test coverage detected