On ISAs with no instruction predicates, just emit an unimplemented!() stub for the check_instp() function. It is unlikely that a finished ISA will not have any instruction predicates.
9 lines
209 B
Rust
9 lines
209 B
Rust
//! Encoding tables for ARM32 ISA.
|
|
|
|
use ir::InstructionData;
|
|
use ir::types;
|
|
use isa::enc_tables::{Level1Entry, Level2Entry};
|
|
use isa::constraints::*;
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/encoding-arm32.rs"));
|