egraph-based midend: draw the rest of the owl (productionized). (#4953)
* egraph-based midend: draw the rest of the owl. * Rename `egg` submodule of cranelift-codegen to `egraph`. * Apply some feedback from @jsharp during code walkthrough. * Remove recursion from find_best_node by doing a single pass. Rather than recursively computing the lowest-cost node for a given eclass and memoizing the answer at each eclass node, we can do a single forward pass; because every eclass node refers only to earlier nodes, this is sufficient. The behavior may slightly differ from the earlier behavior because we cannot short-circuit costs to zero once a node is elaborated; but in practice this should not matter. * Make elaboration non-recursive. Use an explicit stack instead (with `ElabStackEntry` entries, alongside a result stack). * Make elaboration traversal of the domtree non-recursive/stack-safe. * Work analysis logic in Cranelift-side egraph glue into a general analysis framework in cranelift-egraph. * Apply static recursion limit to rule application. * Fix aarch64 wrt dynamic-vector support -- broken rebase. * Topo-sort cranelift-egraph before cranelift-codegen in publish script, like the comment instructs me to! * Fix multi-result call testcase. * Include `cranelift-egraph` in `PUBLISHED_CRATES`. * Fix atomic_rmw: not really a load. * Remove now-unnecessary PartialOrd/Ord derivations. * Address some code-review comments. * Review feedback. * Review feedback. * No overlap in mid-end rules, because we are defining a multi-constructor. * rustfmt * Review feedback. * Review feedback. * Review feedback. * Review feedback. * Remove redundant `mut`. * Add comment noting what rules can do. * Review feedback. * Clarify comment wording. * Update `has_memory_fence_semantics`. * Apply @jameysharp's improved loop-level computation. Co-authored-by: Jamey Sharp <jamey@minilop.net> * Fix suggestion commit. * Fix off-by-one in new loop-nest analysis. * Review feedback. * Review feedback. * Review feedback. * Use `Default`, not `std::default::Default`, as per @fitzgen Co-authored-by: Nick Fitzgerald <fitzgen@gmail.com> * Apply @fitzgen's comment elaboration to a doc-comment. Co-authored-by: Nick Fitzgerald <fitzgen@gmail.com> * Add stat for hitting the rewrite-depth limit. * Some code motion in split prelude to make the diff a little clearer wrt `main`. * Take @jameysharp's suggested `try_into()` usage for blockparam indices. Co-authored-by: Jamey Sharp <jamey@minilop.net> * Take @jameysharp's suggestion to avoid double-match on load op. Co-authored-by: Jamey Sharp <jamey@minilop.net> * Fix suggestion (add import). * Review feedback. * Fix stack_load handling. * Remove redundant can_store case. * Take @jameysharp's suggested improvement to FuncEGraph::build() logic Co-authored-by: Jamey Sharp <jamey@minilop.net> * Tweaks to FuncEGraph::build() on top of suggestion. * Take @jameysharp's suggested clarified condition Co-authored-by: Jamey Sharp <jamey@minilop.net> * Clean up after suggestion (unused variable). * Fix loop analysis. * loop level asserts * Revert constant-space loop analysis -- edge cases were incorrect, so let's go with the simple thing for now. * Take @jameysharp's suggestion re: result_tys Co-authored-by: Jamey Sharp <jamey@minilop.net> * Fix up after suggestion * Take @jameysharp's suggestion to use fold rather than reduce Co-authored-by: Jamey Sharp <jamey@minilop.net> * Fixup after suggestion * Take @jameysharp's suggestion to remove elaborate_eclass_use's return value. * Clarifying comment in terminator insts. Co-authored-by: Jamey Sharp <jamey@minilop.net> Co-authored-by: Nick Fitzgerald <fitzgen@gmail.com>
This commit is contained in:
@@ -10,6 +10,7 @@ use crate::ir::{Block, Function, Layout};
|
||||
use crate::packed_option::PackedOption;
|
||||
use crate::timing;
|
||||
use alloc::vec::Vec;
|
||||
use smallvec::{smallvec, SmallVec};
|
||||
|
||||
/// A opaque reference to a code loop.
|
||||
#[derive(Copy, Clone, PartialEq, Eq, Hash)]
|
||||
@@ -29,6 +30,48 @@ pub struct LoopAnalysis {
|
||||
struct LoopData {
|
||||
header: Block,
|
||||
parent: PackedOption<Loop>,
|
||||
level: LoopLevel,
|
||||
}
|
||||
|
||||
/// A level in a loop nest.
|
||||
#[derive(Clone, Copy, Debug, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||
pub struct LoopLevel(u8);
|
||||
impl LoopLevel {
|
||||
const INVALID: u8 = 0xff;
|
||||
|
||||
/// Get the root level (no loop).
|
||||
pub fn root() -> Self {
|
||||
Self(0)
|
||||
}
|
||||
/// Get the loop level.
|
||||
pub fn level(self) -> usize {
|
||||
self.0 as usize
|
||||
}
|
||||
/// Invalid loop level.
|
||||
pub fn invalid() -> Self {
|
||||
Self(Self::INVALID)
|
||||
}
|
||||
/// One loop level deeper.
|
||||
pub fn inc(self) -> Self {
|
||||
if self.0 == (Self::INVALID - 1) {
|
||||
self
|
||||
} else {
|
||||
Self(self.0 + 1)
|
||||
}
|
||||
}
|
||||
/// A clamped loop level from a larger-width (usize) depth.
|
||||
pub fn clamped(level: usize) -> Self {
|
||||
Self(
|
||||
u8::try_from(std::cmp::min(level, (Self::INVALID as usize) - 1))
|
||||
.expect("Clamped value must always convert"),
|
||||
)
|
||||
}
|
||||
}
|
||||
|
||||
impl std::default::Default for LoopLevel {
|
||||
fn default() -> Self {
|
||||
LoopLevel::invalid()
|
||||
}
|
||||
}
|
||||
|
||||
impl LoopData {
|
||||
@@ -37,6 +80,7 @@ impl LoopData {
|
||||
Self {
|
||||
header,
|
||||
parent: parent.into(),
|
||||
level: LoopLevel::invalid(),
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -71,6 +115,17 @@ impl LoopAnalysis {
|
||||
self.loops[lp].parent.expand()
|
||||
}
|
||||
|
||||
/// Return the innermost loop for a given block.
|
||||
pub fn innermost_loop(&self, block: Block) -> Option<Loop> {
|
||||
self.block_loop_map[block].expand()
|
||||
}
|
||||
|
||||
/// Determine if a Block is a loop header. If so, return the loop.
|
||||
pub fn is_loop_header(&self, block: Block) -> Option<Loop> {
|
||||
self.innermost_loop(block)
|
||||
.filter(|&lp| self.loop_header(lp) == block)
|
||||
}
|
||||
|
||||
/// Determine if a Block belongs to a loop by running a finger along the loop tree.
|
||||
///
|
||||
/// Returns `true` if `block` is in loop `lp`.
|
||||
@@ -96,6 +151,12 @@ impl LoopAnalysis {
|
||||
}
|
||||
false
|
||||
}
|
||||
|
||||
/// Returns the loop-nest level of a given block.
|
||||
pub fn loop_level(&self, block: Block) -> LoopLevel {
|
||||
self.innermost_loop(block)
|
||||
.map_or(LoopLevel(0), |lp| self.loops[lp].level)
|
||||
}
|
||||
}
|
||||
|
||||
impl LoopAnalysis {
|
||||
@@ -107,6 +168,7 @@ impl LoopAnalysis {
|
||||
self.block_loop_map.resize(func.dfg.num_blocks());
|
||||
self.find_loop_headers(cfg, domtree, &func.layout);
|
||||
self.discover_loop_blocks(cfg, domtree, &func.layout);
|
||||
self.assign_loop_levels();
|
||||
self.valid = true;
|
||||
}
|
||||
|
||||
@@ -228,6 +290,28 @@ impl LoopAnalysis {
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
fn assign_loop_levels(&mut self) {
|
||||
let mut stack: SmallVec<[Loop; 8]> = smallvec![];
|
||||
for lp in self.loops.keys() {
|
||||
if self.loops[lp].level == LoopLevel::invalid() {
|
||||
stack.push(lp);
|
||||
while let Some(&lp) = stack.last() {
|
||||
if let Some(parent) = self.loops[lp].parent.into() {
|
||||
if self.loops[parent].level != LoopLevel::invalid() {
|
||||
self.loops[lp].level = self.loops[parent].level.inc();
|
||||
stack.pop();
|
||||
} else {
|
||||
stack.push(parent);
|
||||
}
|
||||
} else {
|
||||
self.loops[lp].level = LoopLevel::root().inc();
|
||||
stack.pop();
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
@@ -286,6 +370,10 @@ mod tests {
|
||||
assert_eq!(loop_analysis.is_in_loop(block2, loops[0]), true);
|
||||
assert_eq!(loop_analysis.is_in_loop(block3, loops[0]), true);
|
||||
assert_eq!(loop_analysis.is_in_loop(block0, loops[1]), false);
|
||||
assert_eq!(loop_analysis.loop_level(block0).level(), 1);
|
||||
assert_eq!(loop_analysis.loop_level(block1).level(), 2);
|
||||
assert_eq!(loop_analysis.loop_level(block2).level(), 2);
|
||||
assert_eq!(loop_analysis.loop_level(block3).level(), 1);
|
||||
}
|
||||
|
||||
#[test]
|
||||
@@ -345,5 +433,11 @@ mod tests {
|
||||
assert_eq!(loop_analysis.is_in_loop(block3, loops[2]), true);
|
||||
assert_eq!(loop_analysis.is_in_loop(block4, loops[2]), true);
|
||||
assert_eq!(loop_analysis.is_in_loop(block5, loops[0]), true);
|
||||
assert_eq!(loop_analysis.loop_level(block0).level(), 1);
|
||||
assert_eq!(loop_analysis.loop_level(block1).level(), 2);
|
||||
assert_eq!(loop_analysis.loop_level(block2).level(), 2);
|
||||
assert_eq!(loop_analysis.loop_level(block3).level(), 2);
|
||||
assert_eq!(loop_analysis.loop_level(block4).level(), 2);
|
||||
assert_eq!(loop_analysis.loop_level(block5).level(), 1);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user