add more annotation kinds

This commit is contained in:
Jacob Lifshay 2024-10-01 18:33:32 -07:00
parent 2a25dd9d7b
commit d0b406d288
Signed by: programmerjake
SSH key fingerprint: SHA256:B1iRVvUJkvd7upMIiMqn6OyxvD2SgJkAH3ZnUOj6z+c
5 changed files with 187 additions and 15 deletions

View file

@ -1,8 +1,15 @@
// SPDX-License-Identifier: LGPL-3.0-or-later
// See Notices.txt for copyright information
use fayalite::{
annotations::CustomFirrtlAnnotation, assert_export_firrtl, firrtl::ExportOptions,
intern::Intern, module::transform::simplify_enums::SimplifyEnumsKind, prelude::*,
annotations::{
BlackBoxInlineAnnotation, BlackBoxPathAnnotation, CustomFirrtlAnnotation,
DocStringAnnotation, SVAttributeAnnotation,
},
assert_export_firrtl,
firrtl::ExportOptions,
intern::Intern,
module::transform::simplify_enums::SimplifyEnumsKind,
prelude::*,
ty::StaticType,
};
use serde_json::json;
@ -3058,6 +3065,14 @@ pub fn check_annotations() {
.try_into()
.unwrap(),
}));
m.annotate_module(Annotation::DocString(DocStringAnnotation {
text: r"This module is used as a test that fayalite's firrtl
backend properly emits annotations.
Testing...
"
.intern(),
}));
#[hdl]
let raddr: UInt<8> = m.input();
annotate(raddr, Annotation::DontTouch);
@ -3139,6 +3154,40 @@ pub fn check_annotations() {
connect(write_port.clk, clk);
connect(write_port.data, wdata);
connect(write_port.mask, wmask);
#[hdl_module(extern)]
fn black_box1() {
m.verilog_name("BlackBox1");
m.annotate_module(Annotation::BlackBoxInline(BlackBoxInlineAnnotation {
path: "black_box1.v".intern(),
text: r"(* blackbox *)
module BlackBox1();
endmodule
"
.intern(),
}));
}
#[hdl]
let black_box1_instance = instance(black_box1());
annotate(black_box1_instance, Annotation::DontTouch);
#[hdl_module(extern)]
fn black_box2() {
m.verilog_name("BlackBox2");
m.annotate_module(Annotation::BlackBoxPath(BlackBoxPathAnnotation {
path: "black_box2.v".intern(),
}));
}
#[hdl]
let black_box2_instance = instance(black_box2());
annotate(black_box2_instance, Annotation::DontTouch);
#[hdl]
let a_wire: (SInt<1>, Bool) = wire();
annotate(
a_wire.1,
Annotation::SVAttribute(SVAttributeAnnotation {
text: "custom_sv_attr = \"abc\"".intern(),
}),
);
connect(a_wire, (0_hdl_i1, false));
}
#[test]
@ -3156,6 +3205,11 @@ circuit check_annotations: %[[
"bar": "a nice module!",
"target": "~check_annotations|check_annotations"
},
{
"class": "firrtl.DocStringAnnotation",
"description": "This module is used as a test that fayalite's firrtl\nbackend properly emits annotations.\n\nTesting...\n",
"target": "~check_annotations|check_annotations"
},
{
"class": "firrtl.transforms.DontTouchAnnotation",
"target": "~check_annotations|check_annotations>raddr"
@ -3196,10 +3250,35 @@ circuit check_annotations: %[[
"class": "some.annotation.Class",
"baz": "first mask bit",
"target": "~check_annotations|check_annotations>mem.w1.data[0]"
},
{
"class": "firrtl.transforms.DontTouchAnnotation",
"target": "~check_annotations|check_annotations>black_box1_instance"
},
{
"class": "firrtl.transforms.DontTouchAnnotation",
"target": "~check_annotations|check_annotations>black_box2_instance"
},
{
"class": "firrtl.AttributeAnnotation",
"description": "custom_sv_attr = \"abc\"",
"target": "~check_annotations|check_annotations>a_wire.1"
},
{
"class": "firrtl.transforms.BlackBoxInlineAnno",
"name": "black_box1.v",
"text": "(* blackbox *)\nmodule BlackBox1();\nendmodule\n",
"target": "~check_annotations|black_box1"
},
{
"class": "firrtl.transforms.BlackBoxPathAnno",
"path": "black_box2.v",
"target": "~check_annotations|black_box2"
}
]]
type Ty0 = {addr: UInt<8>, en: UInt<1>, clk: Clock, data: UInt<4>[2], mask: UInt<1>[2]}
type Ty1 = {addr: UInt<8>, en: UInt<1>, clk: Clock, flip data: UInt<4>[2]}
type Ty2 = {`0`: SInt<1>, `1`: UInt<1>}
module check_annotations: @[module-XXXXXXXXXX.rs 1:1]
input raddr: UInt<8> @[module-XXXXXXXXXX.rs 2:1]
output rdata: UInt<4>[2] @[module-XXXXXXXXXX.rs 3:1]
@ -3224,6 +3303,17 @@ circuit check_annotations: %[[
connect `mem`.w1.clk, clk @[module-XXXXXXXXXX.rs 17:1]
connect `mem`.w1.data, wdata @[module-XXXXXXXXXX.rs 18:1]
connect `mem`.w1.mask, wmask @[module-XXXXXXXXXX.rs 19:1]
inst black_box1_instance of black_box1 @[module-XXXXXXXXXX.rs 21:1]
inst black_box2_instance of black_box2 @[module-XXXXXXXXXX.rs 23:1]
wire a_wire: Ty2 @[module-XXXXXXXXXX.rs 24:1]
wire _bundle_literal_expr: Ty2
connect _bundle_literal_expr.`0`, SInt<1>(0h0)
connect _bundle_literal_expr.`1`, UInt<1>(0h0)
connect a_wire, _bundle_literal_expr @[module-XXXXXXXXXX.rs 25:1]
extmodule black_box1: @[module-XXXXXXXXXX.rs 20:1]
defname = BlackBox1
extmodule black_box2: @[module-XXXXXXXXXX.rs 22:1]
defname = BlackBox2
"#,
};
}