allow yosys to read il output

main
NotAFile 2022-01-18 00:11:37 +01:00
parent 824262c89c
commit 120a3c59f4
3 changed files with 50 additions and 19 deletions

View File

@ -76,6 +76,12 @@ impl Signal {
} }
} }
/// context used when generating processes
struct ProcContext {
updates: Vec<(rtlil::SigSpec, rtlil::SigSpec)>,
next_sigs: BTreeMap<String, rtlil::SigSpec>,
}
struct Context { struct Context {
/// map callable name to callable /// map callable name to callable
callables: BTreeMap<String, Callable>, callables: BTreeMap<String, Callable>,
@ -96,27 +102,36 @@ impl Context {
fn lower_process_statement( fn lower_process_statement(
ctx: &Context, ctx: &Context,
pctx: &mut ProcContext,
module: &mut rtlil::Module, module: &mut rtlil::Module,
updates: &mut Vec<(rtlil::SigSpec, rtlil::SigSpec)>,
stmt: &parser::proc::ProcStatement, stmt: &parser::proc::ProcStatement,
) -> Result<rtlil::CaseRule, CompileError> { ) -> Result<rtlil::CaseRule, CompileError> {
let rule = match stmt { let rule = match stmt {
parser::proc::ProcStatement::IfElse(_) => todo!("if/else unimplemented"), parser::proc::ProcStatement::IfElse(_) => todo!("if/else unimplemented"),
parser::proc::ProcStatement::Assign(assig) => { parser::proc::ProcStatement::Assign(assig) => {
// FIXME: actually store this // FIXME: actually store this
let next_gen_id = format!("${}$next", assig.lhs); let next_sig;
module.add_wire(rtlil::Wire::new(&next_gen_id, TODO_WIDTH, None)); if let Some(sig) = pctx.next_sigs.get(assig.lhs) {
next_sig = sig.clone();
}
else {
let next_gen_id = format!("${}$next", assig.lhs);
module.add_wire(rtlil::Wire::new(&next_gen_id, TODO_WIDTH, None));
next_sig = rtlil::SigSpec::Wire(next_gen_id);
let next_wire = rtlil::SigSpec::Wire(next_gen_id); pctx.next_sigs.insert(assig.lhs.to_owned(), next_sig.clone());
updates.push((
rtlil::SigSpec::Wire(assig.lhs.to_owned()), // trigger the modified value to update
next_wire.clone(), pctx.updates.push((
)); ctx.try_get_signal(assig.lhs)?.sigspec(),
next_sig.clone(),
));
};
let next_expr_wire = lower_expression(ctx, module, &assig.expr)?; let next_expr_wire = lower_expression(ctx, module, &assig.expr)?;
rtlil::CaseRule { rtlil::CaseRule {
assign: vec![(next_wire, next_expr_wire)], assign: vec![(next_sig.clone(), next_expr_wire)],
switches: vec![], switches: vec![],
} }
} }
@ -124,7 +139,7 @@ fn lower_process_statement(
let match_sig = lower_expression(ctx, module, &match_block.expr)?; let match_sig = lower_expression(ctx, module, &match_block.expr)?;
let mut cases = vec![]; let mut cases = vec![];
for arm in &match_block.arms { for arm in &match_block.arms {
let case = lower_process_statement(ctx, module, updates, &arm.1)?; let case = lower_process_statement(ctx, pctx, module, &arm.1)?;
let compare_sig = lower_expression(ctx, module, &arm.0)?; let compare_sig = lower_expression(ctx, module, &arm.0)?;
cases.push((compare_sig, case)); cases.push((compare_sig, case));
} }
@ -147,17 +162,21 @@ fn lower_process(
module: &mut rtlil::Module, module: &mut rtlil::Module,
process: &parser::proc::ProcBlock, process: &parser::proc::ProcBlock,
) -> Result<(), CompileError> { ) -> Result<(), CompileError> {
let mut updates = vec![]; let mut pctx = ProcContext {
updates: vec![],
next_sigs: BTreeMap::new(),
};
let mut cases = vec![]; let mut cases = vec![];
for stmt in &process.items { for stmt in &process.items {
let case = lower_process_statement(ctx, module, &mut updates, stmt)?; let case = lower_process_statement(ctx, &mut pctx, module, stmt)?;
cases.push(case); cases.push(case);
} }
let sync_cond = rtlil::SyncCond::Posedge((*process.net.fragment()).into()); let sync_sig = ctx.try_get_signal(process.net.fragment())?;
let sync_cond = rtlil::SyncCond::Posedge(sync_sig.sigspec());
let sync_rule = rtlil::SyncRule { let sync_rule = rtlil::SyncRule {
cond: sync_cond, cond: sync_cond,
assign: updates, assign: pctx.updates,
}; };
if cases.len() != 1 { if cases.len() != 1 {
panic!("only one expression per block, for now") panic!("only one expression per block, for now")

View File

@ -15,6 +15,12 @@ struct Opt {
/// Input file /// Input file
#[structopt(parse(from_os_str))] #[structopt(parse(from_os_str))]
input: PathBuf, input: PathBuf,
/// Debug AST
#[structopt(short)]
debug: bool,
/// Output file, stdout if not present
#[structopt(short, parse(from_os_str))]
output: Option<PathBuf>,
} }
fn main() { fn main() {
@ -35,11 +41,16 @@ fn main() {
} }
Err(_) => (), Err(_) => (),
Ok(res) => { Ok(res) => {
println!("{:#?}", res); if opt.debug {
println!("{:#?}", res);
}
let lowered = crate::frontend::lower_module(res.1); let lowered = crate::frontend::lower_module(res.1);
match lowered { match lowered {
Ok(res) => println!("{}", res), Ok(res) => {
Err(err) => println!("{:#?}", err), let mut file = File::create(opt.output.unwrap_or("out.rtlil".into())).expect("could not open file");
file.write_all(res.as_bytes()).expect("failed to write output file");
},
Err(err) => eprintln!("{:#?}", err),
} }
} }
} }

View File

@ -29,8 +29,8 @@ pub struct SyncRule {
pub enum SyncCond { pub enum SyncCond {
Always, Always,
Init, Init,
Posedge(String), Posedge(SigSpec),
Negedge(String), Negedge(SigSpec),
} }
impl RtlilWrite for Process { impl RtlilWrite for Process {
@ -64,6 +64,7 @@ impl RtlilWrite for SwitchRule {
writer.dedent(); writer.dedent();
} }
writer.dedent(); writer.dedent();
writer.write_line("end");
} }
} }