Skip to content

Commit

Permalink
Merge branch 'main' into fud2-pyenv
Browse files Browse the repository at this point in the history
  • Loading branch information
sgpthomas authored Oct 21, 2024
2 parents 95cc1df + 22fc4bb commit 466fc8c
Show file tree
Hide file tree
Showing 8 changed files with 162 additions and 2 deletions.
3 changes: 3 additions & 0 deletions calyx-frontend/src/attribute.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,9 @@ pub enum BoolAttr {
#[strum(serialize = "fast")]
/// https://github.com/calyxir/calyx/issues/1828
Fast,
#[strum(serialize = "protected")]
/// Indicate that the cell should not be removed or shared during optimization.
Protected,
}

impl From<BoolAttr> for Attribute {
Expand Down
6 changes: 5 additions & 1 deletion calyx-opt/src/passes/cell_share.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ use crate::analysis::{
use crate::traversal::{
Action, ConstructVisitor, Named, ParseVal, PassOpt, VisResult, Visitor,
};
use calyx_ir::rewriter;
use calyx_ir::{self as ir};
use calyx_ir::{rewriter, BoolAttr};
use calyx_utils::{CalyxResult, OutputFile};
use itertools::Itertools;
use serde_json::{json, Value};
Expand Down Expand Up @@ -242,6 +242,10 @@ impl CellShare {
if self.cont_ref_cells.contains(&cell.name()) {
return false;
}
// Cells that have @protected cannot be shared (even if they have share/state_share attributes)
if cell.attributes.has(BoolAttr::Protected) {
return false;
}
if let Some(ref name) = cell.type_name() {
self.state_shareable.contains(name) || self.shareable.contains(name)
} else {
Expand Down
3 changes: 2 additions & 1 deletion calyx-opt/src/passes/dead_cell_removal.rs
Original file line number Diff line number Diff line change
Expand Up @@ -129,13 +129,14 @@ impl Visitor for DeadCellRemoval {
_sigs: &ir::LibrarySignatures,
_comps: &[ir::Component],
) -> VisResult {
// Add @external cells and ref cells.
// Add @external cells, @protected cells and ref cells.
self.all_reads.extend(
comp.cells
.iter()
.filter(|c| {
let cell = c.borrow();
cell.attributes.get(ir::BoolAttr::External).is_some()
|| cell.attributes.has(ir::BoolAttr::Protected)
|| cell.is_reference()
})
.map(|c| c.borrow().name()),
Expand Down
4 changes: 4 additions & 0 deletions docs/lang/attributes.md
Original file line number Diff line number Diff line change
Expand Up @@ -247,3 +247,7 @@ as before.
[externalize]: https://docs.rs/calyx-opt/latest/calyx_opt/passes/struct.Externalize.html
[promotable]: #promotable(n)
[interval]: #interval(n)

### `@protected`

Marks that the cell should not be removed or shared during optimization.
31 changes: 31 additions & 0 deletions tests/passes/cell-share/protected.expect
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
import "primitives/core.futil";
import "primitives/memories/comb.futil";
component main(@go go: 1, @clk clk: 1, @reset reset: 1) -> (@done done: 1) {
cells {
@protected add0 = std_add(32);
add1 = std_add(32);
x_0 = std_reg(32);
}
wires {
group upd0 {
add0.left = x_0.out;
add0.right = 32'd1;
x_0.in = add0.out;
x_0.write_en = 1'd1;
upd0[done] = x_0.done ? 1'd1;
}
group upd1 {
add1.left = x_0.out;
add1.right = 32'd1;
x_0.in = add1.out;
x_0.write_en = 1'd1;
upd1[done] = x_0.done ? 1'd1;
}
}
control {
seq {
upd0;
upd1;
}
}
}
35 changes: 35 additions & 0 deletions tests/passes/cell-share/protected.futil
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
//-p cell-share -p remove-ids

import "primitives/core.futil";
import "primitives/memories/comb.futil";

// testing that @protected overrides @share
component main() -> () {
cells {
@protected add0 = std_add(32);
add1 = std_add(32);
x_0 = std_reg(32);
}
wires {
group upd0 {
add0.left = x_0.out;
add0.right = 32'd1;
x_0.in = add0.out;
x_0.write_en = 1'd1;
upd0[done] = x_0.done ? 1'd1;
}
group upd1 {
add1.left = x_0.out;
add1.right = 32'd1;
x_0.in = add1.out;
x_0.write_en = 1'd1;
upd1[done] = x_0.done ? 1'd1;
}
}
control {
seq {
upd0;
upd1;
}
}
}
41 changes: 41 additions & 0 deletions tests/passes/dead-cell-removal-protected.expect
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
import "primitives/core.futil";
import "primitives/memories/comb.futil";
component add(left: 32, right: 32, @go go: 1, @clk clk: 1, @reset reset: 1) -> (out: 32, @done done: 1) {
cells {
adder = std_add(32);
outpt = std_reg(32);
}
wires {
group do_add {
adder.left = left;
adder.right = right;
outpt.in = adder.out;
outpt.write_en = 1'd1;
do_add[done] = outpt.done;
}
}
control {
seq {
do_add;
}
}
}
component main(@go go: 1, @clk clk: 1, @reset reset: 1) -> (out: 32, @done done: 1) {
cells {
used_reg = std_reg(32);
used_le = std_le(1);
@protected unused_reg = std_reg(32);
my_add = add();
add_input = std_reg(32);
}
wires {
used_reg.in = used_le.out ? 32'd10;
out = used_reg.out;
}
control {
invoke my_add(
left = add_input.out,
right = add_input.out
)();
}
}
41 changes: 41 additions & 0 deletions tests/passes/dead-cell-removal-protected.futil
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
// -p dead-cell-removal
import "primitives/core.futil";
import "primitives/memories/comb.futil";

component add(left: 32, right: 32) -> (out: 32) {
cells {
adder = std_add(32);
outpt = std_reg(32);
}
wires {
group do_add {
adder.left = left;
adder.right = right;
outpt.in = adder.out;
outpt.write_en = 1'd1;
do_add[done] = outpt.done;
}
}
control {
seq {
do_add;
}
}
}

component main() -> (out: 32) {
cells {
used_reg = std_reg(32);
used_le = std_le(1);
@protected unused_reg = std_reg(32);
my_add = add();
add_input = std_reg(32);
}
wires {
used_reg.in = used_le.out ? 32'd10;
out = used_reg.out;
}
control {
invoke my_add(left = add_input.out, right = add_input.out)();
}
}

0 comments on commit 466fc8c

Please sign in to comment.