fixup rtlil identifiers
This commit is contained in:
parent
1de0846f96
commit
f03c777e28
|
@ -12,11 +12,11 @@ fn lower_expression(
|
||||||
expr: &typed_ir::Expr,
|
expr: &typed_ir::Expr,
|
||||||
) -> Result<rtlil::SigSpec, CompileError> {
|
) -> Result<rtlil::SigSpec, CompileError> {
|
||||||
let expr_width = ctx.types.get_width(expr.typ).expect("signal needs width");
|
let expr_width = ctx.types.get_width(expr.typ).expect("signal needs width");
|
||||||
let expr_wire_name = format!("$sig_{}", expr.id.0);
|
let expr_wire_name = format!("$_sig_{}", expr.id.0);
|
||||||
let expr_wire = rtlil::Wire::new(expr_wire_name.clone(), expr_width, None);
|
let expr_wire = rtlil::Wire::new(expr_wire_name.clone(), expr_width, None);
|
||||||
module.add_wire(expr_wire);
|
module.add_wire(expr_wire);
|
||||||
match &expr.kind {
|
match &expr.kind {
|
||||||
ExprKind::Path(def) => Ok(rtlil::SigSpec::Wire(format!("$sig_{}", def.0))),
|
ExprKind::Path(def) => Ok(rtlil::SigSpec::Wire(format!("\\$sig_{}", def.0))),
|
||||||
ExprKind::Call {
|
ExprKind::Call {
|
||||||
called,
|
called,
|
||||||
args,
|
args,
|
||||||
|
@ -40,14 +40,8 @@ fn lower_expression(
|
||||||
cell.add_param("\\B_SIGNED", "0");
|
cell.add_param("\\B_SIGNED", "0");
|
||||||
cell.add_param("\\B_WIDTH", &b_width.to_string());
|
cell.add_param("\\B_WIDTH", &b_width.to_string());
|
||||||
cell.add_param("\\Y_WIDTH", &y_width.to_string());
|
cell.add_param("\\Y_WIDTH", &y_width.to_string());
|
||||||
cell.add_connection(
|
cell.add_connection("\\A", &args_resolved[0]);
|
||||||
"\\A",
|
cell.add_connection("\\B", &args_resolved[1]);
|
||||||
&rtlil::SigSpec::Wire(format!("$sig_{}", args[0].id.0)),
|
|
||||||
);
|
|
||||||
cell.add_connection(
|
|
||||||
"\\B",
|
|
||||||
&rtlil::SigSpec::Wire(format!("$sig_{}", args[1].id.0)),
|
|
||||||
);
|
|
||||||
cell.add_connection("\\Y", &rtlil::SigSpec::Wire(expr_wire_name.clone()));
|
cell.add_connection("\\Y", &rtlil::SigSpec::Wire(expr_wire_name.clone()));
|
||||||
module.add_cell(cell);
|
module.add_cell(cell);
|
||||||
} else if *called == ctx.callables.builtins.reduce_or {
|
} else if *called == ctx.callables.builtins.reduce_or {
|
||||||
|
@ -57,10 +51,7 @@ fn lower_expression(
|
||||||
cell.add_param("\\A_SIGNED", "0");
|
cell.add_param("\\A_SIGNED", "0");
|
||||||
cell.add_param("\\A_WIDTH", &a_width.to_string());
|
cell.add_param("\\A_WIDTH", &a_width.to_string());
|
||||||
cell.add_param("\\Y_WIDTH", &y_width.to_string());
|
cell.add_param("\\Y_WIDTH", &y_width.to_string());
|
||||||
cell.add_connection(
|
cell.add_connection("\\A", &args_resolved[0]);
|
||||||
"\\A",
|
|
||||||
&rtlil::SigSpec::Wire(format!("$sig_{}", args[0].id.0)),
|
|
||||||
);
|
|
||||||
cell.add_connection("\\Y", &rtlil::SigSpec::Wire(expr_wire_name.clone()));
|
cell.add_connection("\\Y", &rtlil::SigSpec::Wire(expr_wire_name.clone()));
|
||||||
module.add_cell(cell);
|
module.add_cell(cell);
|
||||||
} else if *called == ctx.callables.builtins.bitnot {
|
} else if *called == ctx.callables.builtins.bitnot {
|
||||||
|
@ -70,10 +61,7 @@ fn lower_expression(
|
||||||
cell.add_param("\\A_SIGNED", "0");
|
cell.add_param("\\A_SIGNED", "0");
|
||||||
cell.add_param("\\A_WIDTH", &a_width.to_string());
|
cell.add_param("\\A_WIDTH", &a_width.to_string());
|
||||||
cell.add_param("\\Y_WIDTH", &y_width.to_string());
|
cell.add_param("\\Y_WIDTH", &y_width.to_string());
|
||||||
cell.add_connection(
|
cell.add_connection("\\A", &args_resolved[0]);
|
||||||
"\\A",
|
|
||||||
&rtlil::SigSpec::Wire(format!("$sig_{}", args[0].id.0)),
|
|
||||||
);
|
|
||||||
cell.add_connection("\\Y", &rtlil::SigSpec::Wire(expr_wire_name.clone()));
|
cell.add_connection("\\Y", &rtlil::SigSpec::Wire(expr_wire_name.clone()));
|
||||||
module.add_cell(cell);
|
module.add_cell(cell);
|
||||||
}
|
}
|
||||||
|
@ -93,7 +81,7 @@ fn lower_comb(
|
||||||
block: typed_ir::Block,
|
block: typed_ir::Block,
|
||||||
) -> Result<(), CompileError> {
|
) -> Result<(), CompileError> {
|
||||||
for (num, sig) in block.signals.iter().enumerate() {
|
for (num, sig) in block.signals.iter().enumerate() {
|
||||||
let sig_id = format!("$sig_{}", sig.id.0);
|
let sig_id = format!("\\$sig_{}", sig.id.0);
|
||||||
let port_width = ctx.types.get_width(sig.typ).expect("signal has no size");
|
let port_width = ctx.types.get_width(sig.typ).expect("signal has no size");
|
||||||
module.add_wire(rtlil::Wire::new(
|
module.add_wire(rtlil::Wire::new(
|
||||||
sig_id.clone(),
|
sig_id.clone(),
|
||||||
|
@ -102,13 +90,13 @@ fn lower_comb(
|
||||||
));
|
));
|
||||||
}
|
}
|
||||||
|
|
||||||
let ret_id = module.make_genid("ret");
|
let ret_id = make_pubid("ret");
|
||||||
module.add_wire(rtlil::Wire::new(
|
module.add_wire(rtlil::Wire::new(
|
||||||
ret_id.clone(),
|
ret_id.clone(),
|
||||||
ctx.types
|
ctx.types
|
||||||
.get_width(block.expr.typ)
|
.get_width(block.expr.typ)
|
||||||
.expect("signal has no size"),
|
.expect("signal has no size"),
|
||||||
Some(rtlil::PortOption::Output(99)),
|
Some(rtlil::PortOption::Output(block.signals.len() as i32)),
|
||||||
));
|
));
|
||||||
let out_sig = lower_expression(ctx, module, &block.expr)?;
|
let out_sig = lower_expression(ctx, module, &block.expr)?;
|
||||||
module.add_connection(&rtlil::SigSpec::Wire(ret_id), &out_sig);
|
module.add_connection(&rtlil::SigSpec::Wire(ret_id), &out_sig);
|
||||||
|
|
12
src/main.rs
12
src/main.rs
|
@ -60,22 +60,23 @@ fn main() {
|
||||||
}
|
}
|
||||||
let mut frontendcontext = crate::frontend::Context::new();
|
let mut frontendcontext = crate::frontend::Context::new();
|
||||||
let typed = frontendcontext.type_module(res.1);
|
let typed = frontendcontext.type_module(res.1);
|
||||||
if opt.debug {
|
|
||||||
println!("{:#?}", &typed);
|
|
||||||
let mut pretty_block = String::new();
|
|
||||||
if let Ok(block) = typed {
|
if let Ok(block) = typed {
|
||||||
|
if opt.debug {
|
||||||
|
let mut pretty_block = String::new();
|
||||||
frontendcontext
|
frontendcontext
|
||||||
.pretty_typed_block(&mut pretty_block, &block)
|
.pretty_typed_block(&mut pretty_block, &block)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
println!("{}", &pretty_block);
|
println!("{}", &pretty_block);
|
||||||
|
}
|
||||||
let typed_inferred = frontendcontext.infer_types(block);
|
let typed_inferred = frontendcontext.infer_types(block);
|
||||||
|
if opt.debug {
|
||||||
let mut pretty_block = String::new();
|
let mut pretty_block = String::new();
|
||||||
frontendcontext
|
frontendcontext
|
||||||
.pretty_typed_block(&mut pretty_block, &typed_inferred)
|
.pretty_typed_block(&mut pretty_block, &typed_inferred)
|
||||||
.unwrap();
|
.unwrap();
|
||||||
println!("{}", &pretty_block);
|
println!("{}", &pretty_block);
|
||||||
let lowered =
|
}
|
||||||
frontend::lowering::lower_block(&mut frontendcontext, typed_inferred);
|
let lowered = frontend::lowering::lower_block(&mut frontendcontext, typed_inferred);
|
||||||
match lowered {
|
match lowered {
|
||||||
Ok(res) => {
|
Ok(res) => {
|
||||||
let mut file =
|
let mut file =
|
||||||
|
@ -90,4 +91,3 @@ fn main() {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
Loading…
Reference in New Issue