Merge pull request #3007 from bjorn3/hand_written_legalization

Use hand written legalizations in simple_legalize
This commit is contained in:
Chris Fallin
2021-06-21 09:59:35 -07:00
committed by GitHub
4 changed files with 119 additions and 77 deletions

View File

@@ -1,4 +1,3 @@
use crate::cdsl::cpu_modes::CpuMode;
use crate::cdsl::instructions::{InstructionGroupBuilder, InstructionPredicateMap}; use crate::cdsl::instructions::{InstructionGroupBuilder, InstructionPredicateMap};
use crate::cdsl::isa::TargetIsa; use crate::cdsl::isa::TargetIsa;
use crate::cdsl::recipes::Recipes; use crate::cdsl::recipes::Recipes;
@@ -55,20 +54,7 @@ pub(crate) fn define(shared_defs: &mut SharedDefinitions) -> TargetIsa {
let inst_group = InstructionGroupBuilder::new(&mut shared_defs.all_instructions).build(); let inst_group = InstructionGroupBuilder::new(&mut shared_defs.all_instructions).build();
// CPU modes for 32-bit ARM and Thumb2. let cpu_modes = vec![];
let mut a32 = CpuMode::new("A32");
let mut t32 = CpuMode::new("T32");
// TODO refine these.
let narrow_flags = shared_defs.transform_groups.by_name("narrow_flags");
a32.legalize_default(narrow_flags);
t32.legalize_default(narrow_flags);
// Make sure that the expand code is used, thus generated.
let expand = shared_defs.transform_groups.by_name("expand");
a32.legalize_monomorphic(expand);
let cpu_modes = vec![a32, t32];
// TODO implement arm32 recipes. // TODO implement arm32 recipes.
let recipes = Recipes::new(); let recipes = Recipes::new();

View File

@@ -1,4 +1,3 @@
use crate::cdsl::cpu_modes::CpuMode;
use crate::cdsl::instructions::{InstructionGroupBuilder, InstructionPredicateMap}; use crate::cdsl::instructions::{InstructionGroupBuilder, InstructionPredicateMap};
use crate::cdsl::isa::TargetIsa; use crate::cdsl::isa::TargetIsa;
use crate::cdsl::recipes::Recipes; use crate::cdsl::recipes::Recipes;
@@ -54,15 +53,7 @@ pub(crate) fn define(shared_defs: &mut SharedDefinitions) -> TargetIsa {
let inst_group = InstructionGroupBuilder::new(&mut shared_defs.all_instructions).build(); let inst_group = InstructionGroupBuilder::new(&mut shared_defs.all_instructions).build();
let mut a64 = CpuMode::new("A64"); let cpu_modes = vec![];
// TODO refine these.
let expand_flags = shared_defs.transform_groups.by_name("expand_flags");
let narrow_flags = shared_defs.transform_groups.by_name("narrow_flags");
a64.legalize_monomorphic(expand_flags);
a64.legalize_default(narrow_flags);
let cpu_modes = vec![a64];
// TODO implement arm64 recipes. // TODO implement arm64 recipes.
let recipes = Recipes::new(); let recipes = Recipes::new();

View File

@@ -1,4 +1,3 @@
use crate::cdsl::cpu_modes::CpuMode;
use crate::cdsl::instructions::{InstructionGroupBuilder, InstructionPredicateMap}; use crate::cdsl::instructions::{InstructionGroupBuilder, InstructionPredicateMap};
use crate::cdsl::isa::TargetIsa; use crate::cdsl::isa::TargetIsa;
use crate::cdsl::recipes::Recipes; use crate::cdsl::recipes::Recipes;
@@ -51,10 +50,7 @@ pub(crate) fn define(shared_defs: &mut SharedDefinitions) -> TargetIsa {
let recipes = Recipes::new(); let recipes = Recipes::new();
let encodings_predicates = InstructionPredicateMap::new(); let encodings_predicates = InstructionPredicateMap::new();
let mut mode = CpuMode::new("s390x"); let cpu_modes = vec![];
let expand = shared_defs.transform_groups.by_name("expand");
mode.legalize_default(expand);
let cpu_modes = vec![mode];
TargetIsa::new( TargetIsa::new(
"s390x", "s390x",

View File

@@ -13,6 +13,7 @@
//! The legalizer does not deal with register allocation constraints. These constraints are derived //! The legalizer does not deal with register allocation constraints. These constraints are derived
//! from the encoding recipes, and solved later by the register allocator. //! from the encoding recipes, and solved later by the register allocator.
#[cfg(any(feature = "x86", feature = "riscv"))]
use crate::bitset::BitSet; use crate::bitset::BitSet;
use crate::cursor::{Cursor, FuncCursor}; use crate::cursor::{Cursor, FuncCursor};
use crate::flowgraph::ControlFlowGraph; use crate::flowgraph::ControlFlowGraph;
@@ -20,19 +21,9 @@ use crate::ir::types::{I32, I64};
use crate::ir::{self, InstBuilder, MemFlags}; use crate::ir::{self, InstBuilder, MemFlags};
use crate::isa::TargetIsa; use crate::isa::TargetIsa;
#[cfg(any( #[cfg(any(feature = "x86", feature = "riscv"))]
feature = "x86",
feature = "arm32",
feature = "arm64",
feature = "riscv"
))]
use crate::predicates; use crate::predicates;
#[cfg(any( #[cfg(any(feature = "x86", feature = "riscv"))]
feature = "x86",
feature = "arm32",
feature = "arm64",
feature = "riscv"
))]
use alloc::vec::Vec; use alloc::vec::Vec;
use crate::timing; use crate::timing;
@@ -46,6 +37,7 @@ mod libcall;
mod split; mod split;
mod table; mod table;
#[cfg(any(feature = "x86", feature = "riscv"))]
use self::call::expand_call; use self::call::expand_call;
use self::globalvalue::expand_global_value; use self::globalvalue::expand_global_value;
use self::heap::expand_heap_addr; use self::heap::expand_heap_addr;
@@ -213,49 +205,126 @@ pub fn legalize_function(func: &mut ir::Function, cfg: &mut ControlFlowGraph, is
/// Perform a simple legalization by expansion of the function, without /// Perform a simple legalization by expansion of the function, without
/// platform-specific transforms. /// platform-specific transforms.
pub fn simple_legalize(func: &mut ir::Function, cfg: &mut ControlFlowGraph, isa: &dyn TargetIsa) { pub fn simple_legalize(func: &mut ir::Function, cfg: &mut ControlFlowGraph, isa: &dyn TargetIsa) {
macro_rules! expand_imm_op {
($pos:ident, $inst:ident: $from:ident => $to:ident) => {{
let (arg, imm) = match $pos.func.dfg[$inst] {
ir::InstructionData::BinaryImm64 {
opcode: _,
arg,
imm,
} => (arg, imm),
_ => panic!(
concat!("Expected ", stringify!($from), ": {}"),
$pos.func.dfg.display_inst($inst, None)
),
};
let ty = $pos.func.dfg.value_type(arg);
let imm = $pos.ins().iconst(ty, imm);
$pos.func.dfg.replace($inst).$to(arg, imm);
}};
($pos:ident, $inst:ident<$ty:ident>: $from:ident => $to:ident) => {{
let (arg, imm) = match $pos.func.dfg[$inst] {
ir::InstructionData::BinaryImm64 {
opcode: _,
arg,
imm,
} => (arg, imm),
_ => panic!(
concat!("Expected ", stringify!($from), ": {}"),
$pos.func.dfg.display_inst($inst, None)
),
};
let imm = $pos.ins().iconst($ty, imm);
$pos.func.dfg.replace($inst).$to(arg, imm);
}};
}
let mut pos = FuncCursor::new(func); let mut pos = FuncCursor::new(func);
let func_begin = pos.position(); let func_begin = pos.position();
pos.set_position(func_begin); pos.set_position(func_begin);
while let Some(_block) = pos.next_block() { while let Some(_block) = pos.next_block() {
let mut prev_pos = pos.position(); let mut prev_pos = pos.position();
while let Some(inst) = pos.next_inst() { while let Some(inst) = pos.next_inst() {
let expanded = match pos.func.dfg[inst].opcode() { match pos.func.dfg[inst].opcode() {
ir::Opcode::BrIcmp // control flow
| ir::Opcode::GlobalValue ir::Opcode::BrIcmp => expand_br_icmp(inst, &mut pos.func, cfg, isa),
| ir::Opcode::HeapAddr ir::Opcode::Trapnz | ir::Opcode::Trapz | ir::Opcode::ResumableTrapnz => {
| ir::Opcode::StackLoad expand_cond_trap(inst, &mut pos.func, cfg, isa);
| ir::Opcode::StackStore }
| ir::Opcode::TableAddr
| ir::Opcode::Trapnz // memory and constants
| ir::Opcode::Trapz ir::Opcode::GlobalValue => expand_global_value(inst, &mut pos.func, cfg, isa),
| ir::Opcode::ResumableTrapnz ir::Opcode::HeapAddr => expand_heap_addr(inst, &mut pos.func, cfg, isa),
| ir::Opcode::BandImm ir::Opcode::StackLoad => expand_stack_load(inst, &mut pos.func, cfg, isa),
| ir::Opcode::BorImm ir::Opcode::StackStore => expand_stack_store(inst, &mut pos.func, cfg, isa),
| ir::Opcode::BxorImm ir::Opcode::TableAddr => expand_table_addr(inst, &mut pos.func, cfg, isa),
| ir::Opcode::IaddImm
| ir::Opcode::IfcmpImm // bitops
| ir::Opcode::ImulImm ir::Opcode::BandImm => expand_imm_op!(pos, inst: band_imm => band),
| ir::Opcode::IrsubImm ir::Opcode::BorImm => expand_imm_op!(pos, inst: bor_imm => bor),
| ir::Opcode::IshlImm ir::Opcode::BxorImm => expand_imm_op!(pos, inst: bxor_imm => bxor),
| ir::Opcode::RotlImm ir::Opcode::IaddImm => expand_imm_op!(pos, inst: iadd_imm => iadd),
| ir::Opcode::RotrImm
| ir::Opcode::SdivImm // bitshifting
| ir::Opcode::SremImm ir::Opcode::IshlImm => expand_imm_op!(pos, inst<I32>: ishl_imm => ishl),
| ir::Opcode::SshrImm ir::Opcode::RotlImm => expand_imm_op!(pos, inst<I32>: rotl_imm => rotl),
| ir::Opcode::UdivImm ir::Opcode::RotrImm => expand_imm_op!(pos, inst<I32>: rotr_imm => rotr),
| ir::Opcode::UremImm ir::Opcode::SshrImm => expand_imm_op!(pos, inst<I32>: sshr_imm => sshr),
| ir::Opcode::UshrImm ir::Opcode::UshrImm => expand_imm_op!(pos, inst<I32>: ushr_imm => ushr),
| ir::Opcode::IcmpImm => expand(inst, &mut pos.func, cfg, isa),
_ => false, // math
ir::Opcode::IrsubImm => {
let (arg, imm) = match pos.func.dfg[inst] {
ir::InstructionData::BinaryImm64 {
opcode: _,
arg,
imm,
} => (arg, imm),
_ => panic!(
"Expected irsub_imm: {}",
pos.func.dfg.display_inst(inst, None)
),
};
let ty = pos.func.dfg.value_type(arg);
let imm = pos.ins().iconst(ty, imm);
pos.func.dfg.replace(inst).isub(imm, arg); // note: arg order reversed
}
ir::Opcode::ImulImm => expand_imm_op!(pos, inst: imul_imm => imul),
ir::Opcode::SdivImm => expand_imm_op!(pos, inst: sdiv_imm => sdiv),
ir::Opcode::SremImm => expand_imm_op!(pos, inst: srem_imm => srem),
ir::Opcode::UdivImm => expand_imm_op!(pos, inst: udiv_imm => udiv),
ir::Opcode::UremImm => expand_imm_op!(pos, inst: urem_imm => urem),
// comparisons
ir::Opcode::IfcmpImm => expand_imm_op!(pos, inst: ifcmp_imm => ifcmp),
ir::Opcode::IcmpImm => {
let (cc, x, y) = match pos.func.dfg[inst] {
ir::InstructionData::IntCompareImm {
opcode: _,
cond,
arg,
imm,
} => (cond, arg, imm),
_ => panic!(
"Expected ircmp_imm: {}",
pos.func.dfg.display_inst(inst, None)
),
};
let ty = pos.func.dfg.value_type(x);
let y = pos.ins().iconst(ty, y);
pos.func.dfg.replace(inst).icmp(cc, x, y);
}
_ => {
prev_pos = pos.position();
continue;
}
}; };
if expanded { // Legalization implementations require fixpoint loop here.
// Legalization implementations require fixpoint loop // TODO: fix this.
// here. TODO: fix this. pos.set_position(prev_pos);
pos.set_position(prev_pos);
} else {
prev_pos = pos.position();
}
} }
} }
} }