non-working build on TLII (using QEMU for x86 binaries)
Some checks failed
/ test (push) Failing after 19s
Some checks failed
/ test (push) Failing after 19s
This commit is contained in:
parent
34b4a57507
commit
fd2c635343
6 changed files with 1811 additions and 61 deletions
27
Makefile
27
Makefile
|
|
@ -1,21 +1,30 @@
|
|||
DIRU=/home/alex/Desktop/Hacking/libre-chip/fayalite-wip/target/blinky-out
|
||||
NEXTPNR_DENSITY:=--25k
|
||||
DIRU=/home/alex/Hacking/FPGA/libre-chip/fayalite/target/blinky-out
|
||||
NEXTPNR_DENSITY:=--85k
|
||||
|
||||
# --nextpnr /home/alex/.guix-profile/bin/nextpnr-ecp5 \
|
||||
# --ecppack /home/alex/.guix-profile/bin/ecppack \
|
||||
# --yosys /home/alex/.guix-profile/bin/yosys
|
||||
# firtool executed with qemu
|
||||
#FIXME --placeholder-dir
|
||||
|
||||
all:
|
||||
cp $(DIRU)/*.pcf /tmp
|
||||
#cp $(DIRU)/*.pcf /tmp
|
||||
RUST_BACKTRACE=full cargo run --example blinky yosys-nextpnr-ecp5 \
|
||||
--nextpnr /home/alex/.guix-profile/bin/nextpnr-ecp5 \
|
||||
--platform orangecrab-85k -o target/blinky-out \
|
||||
--ecppack /home/alex/.guix-profile/bin/ecppack \
|
||||
--placeholder-dir /tmp/anyPathBuf/orangecrab_r0.2.1.pcf
|
||||
ls -1 $(DIRU)/*.bit
|
||||
--placeholder-dir /home/alex/Hacking/FPGA/orangecrab/orangecrab-examples/fayalite/orangecrab_r0.2.1.pcf \
|
||||
--nextpnr /usr/bin/nextpnr-ecp5
|
||||
#ls -1 $(DIRU)/*.bit
|
||||
ls:
|
||||
ls -1 $(DIRU)
|
||||
clean:
|
||||
rm $(DIRU)/*
|
||||
nextpnr:
|
||||
cd $(DIRU) && nextpnr-ecp5 --json blinky.json --textcfg blinky.nextpnr.out $(NEXTPNR_DENSITY) \
|
||||
--package CSFBGA285 --lpf orangecrab_r0.2.1.pcf --lpf-allow-unconstrained
|
||||
--package CSFBGA285 --lpf /home/alex/Hacking/FPGA/orangecrab/orangecrab-examples/fayalite/orangecrab_r0.2.1.pcf --lpf-allow-unconstrained
|
||||
pack:
|
||||
cd $(DIRU) && ecppack --compress --freq 38.8 --input blinky.nextpnr.out --bit blinky.nextpnr.bit
|
||||
cd $(DIRU) && file *.bit
|
||||
cd $(DIRU) && file *.bit
|
||||
clean2:
|
||||
find . -name "*.bit" -exec rm {} \;
|
||||
ls2:
|
||||
find . -name "*.bit"
|
||||
|
|
|
|||
2
crates/fayalite/src/vendor/lattice.rs
vendored
2
crates/fayalite/src/vendor/lattice.rs
vendored
|
|
@ -144,7 +144,7 @@ macro_rules! make_device_enum {
|
|||
};
|
||||
}
|
||||
|
||||
//ECP5 variants
|
||||
//ECP5 variants -- needs fixme
|
||||
make_device_enum! {
|
||||
pub enum Device {
|
||||
#[
|
||||
|
|
|
|||
96
crates/fayalite/src/vendor/lattice/orangecrab.rs
vendored
96
crates/fayalite/src/vendor/lattice/orangecrab.rs
vendored
|
|
@ -66,20 +66,20 @@ orangecrab_platform! {
|
|||
}
|
||||
}
|
||||
|
||||
//FIXME
|
||||
//FIXME rename
|
||||
#[derive(Debug)]
|
||||
pub struct ArtyA7Peripherals {
|
||||
clk100_div_pow2: [Peripheral<ClockInput>; 4],
|
||||
rst: Peripheral<Reset>,
|
||||
rst_sync: Peripheral<SyncReset>,
|
||||
ld0: Peripheral<RgbLed>,
|
||||
ld1: Peripheral<RgbLed>,
|
||||
ld2: Peripheral<RgbLed>,
|
||||
ld3: Peripheral<RgbLed>,
|
||||
ld4: Peripheral<Led>,
|
||||
ld5: Peripheral<Led>,
|
||||
ld6: Peripheral<Led>,
|
||||
ld7: Peripheral<Led>,
|
||||
//ld1: Peripheral<RgbLed>,
|
||||
//ld2: Peripheral<RgbLed>,
|
||||
//ld3: Peripheral<RgbLed>,
|
||||
//ld4: Peripheral<Led>,
|
||||
//ld5: Peripheral<Led>,
|
||||
//ld6: Peripheral<Led>,
|
||||
//ld7: Peripheral<Led>,
|
||||
uart: Peripheral<Uart>,
|
||||
// TODO: add rest of peripherals when we need them
|
||||
}
|
||||
|
|
@ -91,26 +91,26 @@ impl Peripherals for ArtyA7Peripherals {
|
|||
rst,
|
||||
rst_sync,
|
||||
ld0,
|
||||
ld1,
|
||||
ld2,
|
||||
ld3,
|
||||
ld4,
|
||||
ld5,
|
||||
ld6,
|
||||
ld7,
|
||||
//ld1,
|
||||
//ld2,
|
||||
//ld3,
|
||||
//ld4,
|
||||
//ld5,
|
||||
//ld6,
|
||||
//ld7,
|
||||
uart,
|
||||
} = self;
|
||||
clk100_div_pow2.append_peripherals(peripherals);
|
||||
rst.append_peripherals(peripherals);
|
||||
rst_sync.append_peripherals(peripherals);
|
||||
ld0.append_peripherals(peripherals);
|
||||
ld1.append_peripherals(peripherals);
|
||||
ld2.append_peripherals(peripherals);
|
||||
ld3.append_peripherals(peripherals);
|
||||
ld4.append_peripherals(peripherals);
|
||||
ld5.append_peripherals(peripherals);
|
||||
ld6.append_peripherals(peripherals);
|
||||
ld7.append_peripherals(peripherals);
|
||||
//ld1.append_peripherals(peripherals);
|
||||
//ld2.append_peripherals(peripherals);
|
||||
//ld3.append_peripherals(peripherals);
|
||||
//ld4.append_peripherals(peripherals);
|
||||
//ld5.append_peripherals(peripherals);
|
||||
//ld6.append_peripherals(peripherals);
|
||||
//ld7.append_peripherals(peripherals);
|
||||
uart.append_peripherals(peripherals);
|
||||
}
|
||||
}
|
||||
|
|
@ -175,13 +175,13 @@ impl Platform for OrangeCrabPlatform {
|
|||
rst: builder.input_peripheral("rst", Reset),
|
||||
rst_sync: builder.input_peripheral("rst_sync", SyncReset),
|
||||
ld0: builder.output_peripheral("ld0", RgbLed),
|
||||
ld1: builder.output_peripheral("ld1", RgbLed),
|
||||
ld2: builder.output_peripheral("ld2", RgbLed),
|
||||
ld3: builder.output_peripheral("ld3", RgbLed),
|
||||
ld4: builder.output_peripheral("ld4", Led),
|
||||
ld5: builder.output_peripheral("ld5", Led),
|
||||
ld6: builder.output_peripheral("ld6", Led),
|
||||
ld7: builder.output_peripheral("ld7", Led),
|
||||
//ld1: builder.output_peripheral("ld1", RgbLed),
|
||||
//ld2: builder.output_peripheral("ld2", RgbLed),
|
||||
//ld3: builder.output_peripheral("ld3", RgbLed),
|
||||
//ld4: builder.output_peripheral("ld4", Led),
|
||||
//ld5: builder.output_peripheral("ld5", Led),
|
||||
//ld6: builder.output_peripheral("ld6", Led),
|
||||
//ld7: builder.output_peripheral("ld7", Led),
|
||||
uart: builder.output_peripheral("uart", Uart),
|
||||
},
|
||||
builder.finish(),
|
||||
|
|
@ -198,13 +198,13 @@ impl Platform for OrangeCrabPlatform {
|
|||
rst,
|
||||
rst_sync,
|
||||
ld0,
|
||||
ld1,
|
||||
ld2,
|
||||
ld3,
|
||||
ld4,
|
||||
ld5,
|
||||
ld6,
|
||||
ld7,
|
||||
//ld1,
|
||||
//ld2,
|
||||
//ld3,
|
||||
//ld4,
|
||||
//ld5,
|
||||
//ld6,
|
||||
//ld7,
|
||||
uart,
|
||||
} = peripherals;
|
||||
let make_buffered_input = |name: &str, location: &str, io_standard: &str, invert: bool| {
|
||||
|
|
@ -343,9 +343,9 @@ impl Platform for OrangeCrabPlatform {
|
|||
}
|
||||
let rgb_leds = [
|
||||
(ld0, ("G6", "F6", "E1")),
|
||||
(ld1, ("G3", "J4", "G4")),
|
||||
(ld2, ("J3", "J2", "H4")),
|
||||
(ld3, ("K1", "H6", "K2")),
|
||||
//(ld1, ("G3", "J4", "G4")),
|
||||
//(ld2, ("J3", "J2", "H4")),
|
||||
//(ld3, ("K1", "H6", "K2")),
|
||||
];
|
||||
for (rgb_led, (r_loc, g_loc, b_loc)) in rgb_leds {
|
||||
let r = make_buffered_output(&format!("{}_r", rgb_led.name()), r_loc, "LVCMOS33");
|
||||
|
|
@ -361,15 +361,15 @@ impl Platform for OrangeCrabPlatform {
|
|||
connect(b, false);
|
||||
}
|
||||
}
|
||||
let leds = [(ld4, "H5"), (ld5, "J5"), (ld6, "T9"), (ld7, "T10")];
|
||||
for (led, loc) in leds {
|
||||
let o = make_buffered_output(&led.name(), loc, "LVCMOS33");
|
||||
if let Some(led) = led.into_used() {
|
||||
connect(o, led.instance_io_field().on);
|
||||
} else {
|
||||
connect(o, false);
|
||||
}
|
||||
}
|
||||
//let leds = [(ld4, "H5"), (ld5, "J5"), (ld6, "T9"), (ld7, "T10")];
|
||||
//for (led, loc) in leds {
|
||||
// let o = make_buffered_output(&led.name(), loc, "LVCMOS33");
|
||||
// if let Some(led) = led.into_used() {
|
||||
// connect(o, led.instance_io_field().on);
|
||||
// } else {
|
||||
// connect(o, false);
|
||||
// }
|
||||
//}
|
||||
let uart_tx = make_buffered_output("uart_tx", "D10", "LVCMOS33");
|
||||
let uart_rx = make_buffered_input("uart_rx", "A9", "LVCMOS33", false);
|
||||
if let Some(uart) = uart.into_used() {
|
||||
|
|
|
|||
|
|
@ -713,11 +713,14 @@ impl ExternalCommand for YosysNextpnrRunNextpnr {
|
|||
} = job.additional_job_data();
|
||||
args.write_long_option_eq("json", json_file_name);
|
||||
args.write_long_option_eq("textcfg",textcfg_file_name);
|
||||
args.write_arg("--25k");
|
||||
args.write_long_option_eq("write",routed_json_file_name);
|
||||
args.write_arg("--85k"); //FIXME do not hardcode
|
||||
args.write_long_option_eq("package","CSFBGA285");
|
||||
args.write_long_option_eq("lpf","/tmp/orangecrab_r0.2.1.pcf");
|
||||
args.write_arg("--lpf-allow-unconstrained");
|
||||
args.write_long_option_eq("lpf","/home/alex/Hacking/FPGA/orangecrab/orangecrab-examples/fayalite/orangecrab_r0.2.1.pcf"); //just a quick test
|
||||
//handwrite before adding new module, ask pj before cont
|
||||
//HACK: args.write_arg("--lpf-allow-unconstrained");
|
||||
//???args.write_display_arg(format_args!("--seed={nextpnr_lattice_seed}"));
|
||||
//fix ERROR: failed to open LPF file '/tmp/orangecrab_r0.2.1.pcf' FIRST
|
||||
|
||||
}
|
||||
|
||||
|
|
|
|||
869
fix_warnings.html
Normal file
869
fix_warnings.html
Normal file
|
|
@ -0,0 +1,869 @@
|
|||
<pre><font color="#55FF55"><b> Compiling</b></font> fayalite-proc-macros v0.3.0 (/home/alex/Hacking/FPGA/libre-chip/fayalite/crates/fayalite-proc-macros)
|
||||
<font color="#55FF55"><b> Compiling</b></font> fayalite v0.3.0 (/home/alex/Hacking/FPGA/libre-chip/fayalite/crates/fayalite)
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused import: `make_impls`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/expr/ops.rs:582:16
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>582</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) use make_impls;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused imports: `annotations::make_annotation_enum` and `intern::Interned`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice.rs:5:5
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>5</b></font> <font color="#5555FF"><b>|</b></font> annotations::make_annotation_enum,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>6</b></font> <font color="#5555FF"><b>|</b></font> build::{GlobalParams, ToArgs, WriteArgs},
|
||||
<font color="#5555FF"><b>7</b></font> <font color="#5555FF"><b>|</b></font> intern::Interned,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused import: `ordered_float::NotNan`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice.rs:11:5
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>11</b></font> <font color="#5555FF"><b>|</b></font> use ordered_float::NotNan;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused import: `primitives`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:15:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>15</b></font> <font color="#5555FF"><b>|</b></font> primitives,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused import: `ordered_float::NotNan`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:18:5
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>18</b></font> <font color="#5555FF"><b>|</b></font> use ordered_float::NotNan;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: variant `OrangeCrab_25k` should have an upper camel case name</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:63:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>63</b></font> <font color="#5555FF"><b>|</b></font> OrangeCrab_25k,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: convert the identifier to upper camel case: `OrangeCrab25k`</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: variant `OrangeCrab_85k` should have an upper camel case name</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:65:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>65</b></font> <font color="#5555FF"><b>|</b></font> OrangeCrab_85k,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: convert the identifier to upper camel case: `OrangeCrab85k`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused imports: `Annotation`, `ScopedNameId`, `TargetBase`, and `TargetName`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:5:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b> 5</b></font> <font color="#5555FF"><b>|</b></font> annotations::{Annotation, TargetedAnnotation},
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>16</b></font> <font color="#5555FF"><b>|</b></font> expr::target::{Target, TargetBase},
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>20</b></font> <font color="#5555FF"><b>|</b></font> NameId, ScopedNameId, TargetName,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused import: `convert::Infallible`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:34:5
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>34</b></font> <font color="#5555FF"><b>|</b></font> convert::Infallible,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `lhs_ty`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:3809:37
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>3809</b></font> <font color="#5555FF"><b>|</b></font> CanonicalType::Enum(lhs_ty) => {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_lhs_ty`</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `rhs_ty`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:3810:45
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>3810</b></font> <font color="#5555FF"><b>|</b></font> let CanonicalType::Enum(rhs_ty) = rhs.ty() else {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_rhs_ty`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `part_name`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:3898:37
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>3898</b></font> <font color="#5555FF"><b>|</b></font> let mut alloc_small_slot = |part_name: &str| {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_part_name`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `annotations`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:4080:23
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>4080</b></font> <font color="#5555FF"><b>|</b></font> let StmtReg { annotations, reg } = stmt_reg;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `annotations: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `annotations`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:4118:46
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>4118</b></font> <font color="#5555FF"><b>|</b></font> StmtDeclaration::Wire(StmtWire { annotations, wire }) => {}
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `annotations: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `wire`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:4118:59
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>4118</b></font> <font color="#5555FF"><b>|</b></font> StmtDeclaration::Wire(StmtWire { annotations, wire }) => {}
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `wire: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `annotations`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:4129:17
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>4129</b></font> <font color="#5555FF"><b>|</b></font> annotations,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `annotations: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `location`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:233:49
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>233</b></font> <font color="#5555FF"><b>|</b></font> let make_buffered_output = |name: &str, location: &str, io_standard: &str| {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_location`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `io_standard`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:233:65
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>233</b></font> <font color="#5555FF"><b>|</b></font> let make_buffered_output = |name: &str, location: &str, io_standard: &str| {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_io_standard`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `location`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:210:48
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>210</b></font> <font color="#5555FF"><b>|</b></font> let make_buffered_input = |name: &str, location: &str, io_standard: &str, invert: bool| {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_location`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `io_standard`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:210:64
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>210</b></font> <font color="#5555FF"><b>|</b></font> let make_buffered_input = |name: &str, location: &str, io_standard: &str, invert: bool| {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_io_standard`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: variable `frequency` is assigned to, but never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:257:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>257</b></font> <font color="#5555FF"><b>|</b></font> let mut frequency = clk100_div_pow2[0].ty().frequency();
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: consider using `_frequency` instead
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: value assigned to `frequency` is never read</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/orangecrab.rs:268:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>268</b></font> <font color="#5555FF"><b>|</b></font> frequency = p.ty().frequency();
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>help</b>: maybe it is overwritten before being read?
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `output`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:496:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>496</b></font> <font color="#5555FF"><b>|</b></font> output: &mut impl fmt::Write,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_output`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `port`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:497:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>497</b></font> <font color="#5555FF"><b>|</b></font> port: &ScalarizedModuleABIPort,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_port`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `annotations`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:498:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>498</b></font> <font color="#5555FF"><b>|</b></font> annotations: ScalarizedModuleABIAnnotations<'_>,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_annotations`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `job_data`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:707:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>707</b></font> <font color="#5555FF"><b>|</b></font> let job_data @ YosysNextpnrRunNextpnr {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_job_data`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `nextpnr_lattice_seed`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:708:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>708</b></font> <font color="#5555FF"><b>|</b></font> nextpnr_lattice_seed,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `nextpnr_lattice_seed: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `routed_json_file_name`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:710:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>710</b></font> <font color="#5555FF"><b>|</b></font> routed_json_file_name,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `routed_json_file_name: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `job_data`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:861:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>861</b></font> <font color="#5555FF"><b>|</b></font> let job_data @ YosysNextpnrRunEcpPack {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font> <font color="#FFFF55"><b>help: if this is intentional, prefix it with an underscore: `_job_data`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `placeholder_dir`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:862:4
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>862</b></font> <font color="#5555FF"><b>|</b></font> placeholder_dir,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `placeholder_dir: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `device`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:863:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>863</b></font> <font color="#5555FF"><b>|</b></font> device,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `device: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `routed_json_file_name`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:864:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>864</b></font> <font color="#5555FF"><b>|</b></font> routed_json_file_name,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `routed_json_file_name: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: unused variable: `frames_file_name`</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:866:13
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>866</b></font> <font color="#5555FF"><b>|</b></font> frames_file_name,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^</b></font> <font color="#FFFF55"><b>help: try ignoring the field: `frames_file_name: _`</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `SliceAsMapDebug` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim.rs:3231:8
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>3231</b></font> <font color="#5555FF"><b>|</b></font> struct SliceAsMapDebug<'a, T>(&'a [Option<T>]);
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `element_dyn` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:397:8
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>385</b></font> <font color="#5555FF"><b>|</b></font> impl CompiledValue<Array> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>397</b></font> <font color="#5555FF"><b>|</b></font> fn element_dyn(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `len`, `index`, `is_empty`, and `stride` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:444:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>434</b></font> <font color="#5555FF"><b>|</b></font> impl TypeArrayIndex {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>444</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn len(self) -> usize {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>449</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn index(self) -> StatePartIndex<StatePartKindSmallSlots> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>454</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_empty(self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>457</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn stride(self) -> TypeLen {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>569</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>570</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_type_array_indexes! {
|
||||
<font color="#5555FF"><b>571</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>572</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>573</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>574</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `iter`, `for_each_offset`, `split_first`, and `for_each_offset2` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:478:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>469</b></font> <font color="#5555FF"><b>|</b></font> impl<'a> TypeArrayIndexesRef<'a> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>--------------------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>478</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn iter(self) -> impl Iterator<Item = TypeArrayIndex> + 'a {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>483</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn for_each_offset(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>491</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn split_first(self) -> Option<(TypeArrayIndex, Self)> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>501</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn for_each_offset2(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>569</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>570</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_type_array_indexes! {
|
||||
<font color="#5555FF"><b>571</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>572</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>573</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>574</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `TypeArrayIndexed` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:534:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>534</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct TypeArrayIndexed {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>569</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>570</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_type_array_indexes! {
|
||||
<font color="#5555FF"><b>571</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>572</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>573</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>574</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: associated items `from_parts`, `base`, and `indexes` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:539:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>538</b></font> <font color="#5555FF"><b>|</b></font> impl TypeArrayIndexed {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>---------------------</b></font> <font color="#5555FF"><b>associated items in this implementation</b></font>
|
||||
<font color="#5555FF"><b>539</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn from_parts(base: TypeIndex, indexes: TypeArrayIndexes) -> Self {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>547</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn base(self) -> TypeIndex {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>552</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn indexes(self) -> TypeArrayIndexes {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>569</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>570</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_type_array_indexes! {
|
||||
<font color="#5555FF"><b>571</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>572</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>573</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>574</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `add_target_without_indexes_to_set` and `add_target_and_indexes_to_set` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:602:8
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>591</b></font> <font color="#5555FF"><b>|</b></font> impl<T: Type> CompiledExpr<T> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-----------------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>602</b></font> <font color="#5555FF"><b>|</b></font> fn add_target_without_indexes_to_set(self, inputs: &mut SlotSet) {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>611</b></font> <font color="#5555FF"><b>|</b></font> fn add_target_and_indexes_to_set(self, inputs: &mut SlotSet) {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `field_by_name` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:628:8
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>621</b></font> <font color="#5555FF"><b>|</b></font> impl CompiledExpr<Bundle> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>628</b></font> <font color="#5555FF"><b>|</b></font> fn field_by_name(self, name: Interned<str>) -> CompiledExpr<CanonicalType> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `for_each` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:1272:16
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1251</b></font> <font color="#5555FF"><b>|</b></font> impl SlotToAssignmentIndexFullMap {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>---------------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1272</b></font> <font color="#5555FF"><b>|</b></font> fn for_each(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1413</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1414</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_assignment_graph! {
|
||||
<font color="#5555FF"><b>1415</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>1416</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_singular_variants;
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1422</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_assignment_graph` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `SlotVec` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:1509:16
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1509</b></font> <font color="#5555FF"><b>|</b></font> struct SlotVec {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1521</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1522</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_slot_vec! {
|
||||
<font color="#5555FF"><b>1523</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>1524</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>1525</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>1526</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_slot_vec` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `is_empty` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:1514:16
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1513</b></font> <font color="#5555FF"><b>|</b></font> impl SlotVec {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>1514</b></font> <font color="#5555FF"><b>|</b></font> fn is_empty(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1521</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1522</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_slot_vec! {
|
||||
<font color="#5555FF"><b>1523</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>1524</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>1525</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>1526</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_slot_vec` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `is_empty`, `for_each`, and `all` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/compiler.rs:1539:16
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1538</b></font> <font color="#5555FF"><b>|</b></font> impl SlotSet {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>1539</b></font> <font color="#5555FF"><b>|</b></font> fn is_empty(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1542</b></font> <font color="#5555FF"><b>|</b></font> fn for_each(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1548</b></font> <font color="#5555FF"><b>|</b></font> fn all(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1619</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1620</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_slot_set! {
|
||||
<font color="#5555FF"><b>1621</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_plural_fields;
|
||||
<font color="#5555FF"><b>1622</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> type_kinds;
|
||||
<font color="#5555FF"><b>1623</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>1624</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_slot_set` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: constant `MIN_BITS_FOR_NEEDING_BIG` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:33:18
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>33</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) const MIN_BITS_FOR_NEEDING_BIG: usize = SmallUInt::BITS as usize + 1;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `InsnFieldTypeTransformUnit` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:50:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>50</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct InsnFieldTypeTransformUnit;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `InsnFieldTypeTransformValue` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:80:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>80</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct InsnFieldTypeTransformValue;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: associated constant `UNIT` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:90:11
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>89</b></font> <font color="#5555FF"><b>|</b></font> pub trait InsnFieldTrait: Send + Sync + 'static + Copy + Eq + Hash + fmt::Debug {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>--------------</b></font> <font color="#5555FF"><b>associated constant in this trait</b></font>
|
||||
<font color="#5555FF"><b>90</b></font> <font color="#5555FF"><b>|</b></font> const UNIT: InsnFieldType<InsnFieldTypeTransformUnit>;
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: field `orig_insns` is never read</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1035:24
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1034</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct BorrowedState<'a> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------</b></font> <font color="#5555FF"><b>field in this struct</b></font>
|
||||
<font color="#5555FF"><b>1035</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) orig_insns: Interned<Insns<InsnsBuildingDone>>,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1052</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1053</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state! {
|
||||
<font color="#5555FF"><b>1054</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>1055</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>1056</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>1057</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `BorrowedState` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `StatePartIndexMap` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1060:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1060</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct StatePartIndexMap<K: StatePartKind, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: multiple associated items are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1079:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1078</b></font> <font color="#5555FF"><b>|</b></font> impl<K: StatePartKind, V> StatePartIndexMap<K, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------------------------------------</b></font> <font color="#5555FF"><b>associated items in this implementation</b></font>
|
||||
<font color="#5555FF"><b>1079</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn new() -> Self {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1085</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn get(&self, key: StatePartIndex<K>) -> Option<&V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1088</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn get_mut(&mut self, key: StatePartIndex<K>) -> Option<&mut V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1091</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn keys(&self) -> impl Iterator<Item = StatePartIndex<K>> + '_ {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1094</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn values(&self) -> vec_map::Values<'_, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1097</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn values_mut(&mut self) -> vec_map::ValuesMut<'_, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1100</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn iter(&self) -> impl Iterator<Item = (StatePartIndex<K>, &V)> + '_ {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1105</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn iter_mut(&mut self) -> impl Iterator<Item = (StatePartIndex<K>, &mut V)> + '_ {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1110</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn len(&self) -> usize {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1113</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_empty(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1116</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn insert(&mut self, key: StatePartIndex<K>, value: V) -> Option<V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1119</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn remove(&mut self, key: StatePartIndex<K>) -> Option<V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1122</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn entry(&mut self, key: StatePartIndex<K>) -> StatePartIndexMapEntry<'_, K, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `StatePartIndexMapVacantEntry` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1154:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1154</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct StatePartIndexMapVacantEntry<'a, K: StatePartKind, V>(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `StatePartIndexMapOccupiedEntry` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1159:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1159</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct StatePartIndexMapOccupiedEntry<'a, K: StatePartKind, V>(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: enum `StatePartIndexMapEntry` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1164:17
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1164</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) enum StatePartIndexMapEntry<'a, K: StatePartKind, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `or_insert` and `or_insert_with` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1170:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1169</b></font> <font color="#5555FF"><b>|</b></font> impl<'a, K: StatePartKind, V> StatePartIndexMapEntry<'a, K, V> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>--------------------------------------------------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>1170</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn or_insert(self, default: V) -> &'a mut V {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1176</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn or_insert_with(self, f: impl FnOnce() -> V) -> &'a mut V {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `last_insn_pc` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1193:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1184</b></font> <font color="#5555FF"><b>|</b></font> impl Insns<InsnsBuilding> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1193</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn last_insn_pc(&self) -> usize {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: function `bigint_pow2` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:1338:4
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1338</b></font> <font color="#5555FF"><b>|</b></font> fn bigint_pow2(width: usize) -> Interned<BigInt> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `fields_unit` and `into_fields` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter.rs:449:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b> 448</b></font> <font color="#5555FF"><b>|</b></font> impl $Insn {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>----------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b> 449</b></font> <font color="#5555FF"><b>|</b></font> $vis const fn fields_unit(&self) -> &'static [InsnField<InsnFieldTypeTransformUnit>] {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b> 521</b></font> <font color="#5555FF"><b>|</b></font> $vis fn into_fields(self) -> std::array::IntoIter<InsnField<InsnFieldTypeTransformValue>, { $Insn::MAX_FIELDS }> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1435</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> impl_insns! {
|
||||
<font color="#5555FF"><b>1436</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> #[insn = Insn, next_macro = next, branch_macro = branch]
|
||||
<font color="#5555FF"><b>1437</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn State::run(&mut self) -> () {
|
||||
<font color="#5555FF"><b>1438</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> #[state]
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>2106</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `impl_insns` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `offset` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:490:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>469</b></font> <font color="#5555FF"><b>|</b></font> impl<K: StatePartKind> StatePartIndexRange<K> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>---------------------------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>490</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn offset(self, offset: StatePartIndex<K>) -> Self {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `len` and `is_empty` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:574:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>573</b></font> <font color="#5555FF"><b>|</b></font> impl<BK: InsnsBuildingKind> StateLayout<BK> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------------------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>574</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn len(&self) -> StateLen {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>580</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_empty(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>677</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>678</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_layout! {
|
||||
<font color="#5555FF"><b>679</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>680</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>681</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>682</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `next_index` and `allocate` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:592:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>591</b></font> <font color="#5555FF"><b>|</b></font> impl StateLayout<InsnsBuilding> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>592</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn next_index(&self) -> StateIndex {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>598</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn allocate<BK: InsnsBuildingKind>(
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>677</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>678</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_layout! {
|
||||
<font color="#5555FF"><b>679</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>680</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>681</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>682</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `is_empty` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:631:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>625</b></font> <font color="#5555FF"><b>|</b></font> impl<BK: InsnsBuildingKind> TypeLayout<BK> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>------------------------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>631</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_empty(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>677</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>678</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_layout! {
|
||||
<font color="#5555FF"><b>679</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>680</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>681</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>682</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `next_index` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:652:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>651</b></font> <font color="#5555FF"><b>|</b></font> impl TypeLayout<InsnsBuilding> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>------------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>652</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn next_index(&self) -> TypeIndex {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>677</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>678</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_layout! {
|
||||
<font color="#5555FF"><b>679</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>680</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>681</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>682</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `is_empty` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:702:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>693</b></font> <font color="#5555FF"><b>|</b></font> impl<K: StatePartKind, BK: InsnsBuildingKind> StatePartLayout<K, BK> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>--------------------------------------------------------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>702</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_empty(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `StateLen` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:809:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>809</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct StateLen {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>863</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>864</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_len! {
|
||||
<font color="#5555FF"><b>865</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>866</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>870</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_len` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `only_small` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:849:33
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>824</b></font> <font color="#5555FF"><b>|</b></font> impl TypeLen {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>849</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) const fn only_small(mut self) -> Option<StatePartLen<StatePartKindSmallSlots>> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>863</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>864</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_len! {
|
||||
<font color="#5555FF"><b>865</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>866</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>870</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_len` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `StateIndex` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:926:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>926</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct StateIndex {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>949</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>950</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_index! {
|
||||
<font color="#5555FF"><b>951</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>952</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>953</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>954</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_index` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: struct `StateIndexRange` is never constructed</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:963:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b> 963</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) struct StateIndexRange {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1041</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1042</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_index_range! {
|
||||
<font color="#5555FF"><b>1043</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>1044</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1047</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_index_range` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `start`, `len`, and `is_empty` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:969:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b> 968</b></font> <font color="#5555FF"><b>|</b></font> impl StateIndexRange {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>--------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b> 969</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn start(self) -> StateIndex {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b> 975</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn len(self) -> StateLen {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b> 981</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_empty(self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1041</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1042</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_index_range! {
|
||||
<font color="#5555FF"><b>1043</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>1044</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1047</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_index_range` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `offset` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/sim/interpreter/parts.rs:1023:27
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b> 991</b></font> <font color="#5555FF"><b>|</b></font> impl TypeIndexRange {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1023</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn offset(self, offset: TypeIndex) -> Self {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>1041</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>/</b></font> get_state_part_kinds! {
|
||||
<font color="#5555FF"><b>1042</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> make_state_index_range! {
|
||||
<font color="#5555FF"><b>1043</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_plural_fields;
|
||||
<font color="#5555FF"><b>1044</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> state_kinds;
|
||||
<font color="#5555FF"><b>...</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>1047</b></font> <font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font> }
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|_-</b></font> <font color="#5555FF"><b>in this macro invocation</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: this warning originates in the macro `make_state_index_range` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: methods `is_unique` and `is_shared` are never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/util/alternating_cell.rs:59:19
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>40</b></font> <font color="#5555FF"><b>|</b></font> impl<T: ?Sized> AlternatingCell<T> {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>----------------------------------</b></font> <font color="#5555FF"><b>methods in this implementation</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>59</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_unique(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>...</b></font>
|
||||
<font color="#5555FF"><b>62</b></font> <font color="#5555FF"><b>|</b></font> pub(crate) fn is_shared(&self) -> bool {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: function `tcl_escape` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:362:4
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>362</b></font> <font color="#5555FF"><b>|</b></font> fn tcl_escape(s: impl AsRef<str>) -> String {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: field `0` is never read</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:382:12
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>382</b></font> <font color="#5555FF"><b>|</b></font> Module(Module<Bundle>),
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>------</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^</b></font>
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>field in this variant</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `AnnotationTarget` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
|
||||
<font color="#55FFFF"><b>help</b></font>: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>382</b></font> <font color="#FF5555">- </font> Module(<font color="#FF5555">Module<Bundle></font>),
|
||||
<font color="#5555FF"><b>382</b></font> <font color="#55FF55">+ </font> Module(<font color="#55FF55">()</font>),
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: field `0` is never read</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:383:9
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>383</b></font> <font color="#5555FF"><b>|</b></font> Mem(Mem),
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>---</b></font> <font color="#FFFF55"><b>^^^</b></font>
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>field in this variant</b></font>
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>= </b></font><b>note</b>: `AnnotationTarget` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
|
||||
<font color="#55FFFF"><b>help</b></font>: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>383</b></font> <font color="#FF5555">- </font> Mem(<font color="#FF5555">Mem</font>),
|
||||
<font color="#5555FF"><b>383</b></font> <font color="#55FF55">+ </font> Mem(<font color="#55FF55">()</font>),
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: method `source_location` is never used</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:388:8
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>387</b></font> <font color="#5555FF"><b>|</b></font> impl AnnotationTarget {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>---------------------</b></font> <font color="#5555FF"><b>method in this implementation</b></font>
|
||||
<font color="#5555FF"><b>388</b></font> <font color="#5555FF"><b>|</b></font> fn source_location(self) -> SourceLocation {
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^^^^^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font><b>: field `output` is never read</b>
|
||||
<font color="#5555FF"><b>--> </b></font>crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:399:5
|
||||
<font color="#5555FF"><b>|</b></font>
|
||||
<font color="#5555FF"><b>398</b></font> <font color="#5555FF"><b>|</b></font> struct PcfFileWriter<W: fmt::Write> { //TODO
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#5555FF"><b>-------------</b></font> <font color="#5555FF"><b>field in this struct</b></font>
|
||||
<font color="#5555FF"><b>399</b></font> <font color="#5555FF"><b>|</b></font> output: W,
|
||||
<font color="#5555FF"><b>|</b></font> <font color="#FFFF55"><b>^^^^^^</b></font>
|
||||
|
||||
<font color="#FFFF55"><b>warning</b></font>: `fayalite` (lib) generated 77 warnings (run `cargo fix --lib -p fayalite` to apply 29 suggestions)
|
||||
<font color="#55FF55"><b> Finished</b></font> `dev` profile [unoptimized + debuginfo] target(s) in 2m 00s
|
||||
<font color="#55FF55"><b> Running</b></font> `target/debug/examples/blinky yosys-nextpnr-ecp5 --nextpnr /home/alex/.guix-profile/bin/nextpnr-ecp5 --platform orangecrab-85k -o target/blinky-out --ecppack /home/alex/.guix-profile/bin/ecppack --placeholder-dir /tmp/anyPathBuf/orangecrab_r0.2.1.pcf --yosys /home/alex/.guix-profile/bin/yosys`
|
||||
<font color="#FF5555"><b>error:</b></font> invalid value '<font color="#AA5500">/home/alex/.guix-profile/bin/nextpnr-ecp5</font>' for '<b>--nextpnr <NEXTPNR></b>': nextpnr: failed to resolve "/home/alex/.guix-profile/bin/nextpnr-ecp5" to a valid program: cannot find binary path
|
||||
|
||||
For more information, try '<b>--help</b>'.
|
||||
make: *** [Makefile:6: all] Error 2</pre>
|
||||
869
fix_warnings.txt
Normal file
869
fix_warnings.txt
Normal file
|
|
@ -0,0 +1,869 @@
|
|||
Compiling fayalite-proc-macros v0.3.0 (/home/alex/Hacking/FPGA/libre-chip/fayalite/crates/fayalite-proc-macros)
|
||||
Compiling fayalite v0.3.0 (/home/alex/Hacking/FPGA/libre-chip/fayalite/crates/fayalite)
|
||||
warning: unused import: `make_impls`
|
||||
--> crates/fayalite/src/expr/ops.rs:582:16
|
||||
|
|
||||
582 | pub(crate) use make_impls;
|
||||
| ^^^^^^^^^^
|
||||
|
|
||||
= note: `#[warn(unused_imports)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
warning: unused imports: `annotations::make_annotation_enum` and `intern::Interned`
|
||||
--> crates/fayalite/src/vendor/lattice.rs:5:5
|
||||
|
|
||||
5 | annotations::make_annotation_enum,
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
6 | build::{GlobalParams, ToArgs, WriteArgs},
|
||||
7 | intern::Interned,
|
||||
| ^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: unused import: `ordered_float::NotNan`
|
||||
--> crates/fayalite/src/vendor/lattice.rs:11:5
|
||||
|
|
||||
11 | use ordered_float::NotNan;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: unused import: `primitives`
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:15:9
|
||||
|
|
||||
15 | primitives,
|
||||
| ^^^^^^^^^^
|
||||
|
||||
warning: unused import: `ordered_float::NotNan`
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:18:5
|
||||
|
|
||||
18 | use ordered_float::NotNan;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: variant `OrangeCrab_25k` should have an upper camel case name
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:63:9
|
||||
|
|
||||
63 | OrangeCrab_25k,
|
||||
| ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `OrangeCrab25k`
|
||||
|
|
||||
= note: `#[warn(non_camel_case_types)]` (part of `#[warn(nonstandard_style)]`) on by default
|
||||
|
||||
warning: variant `OrangeCrab_85k` should have an upper camel case name
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:65:9
|
||||
|
|
||||
65 | OrangeCrab_85k,
|
||||
| ^^^^^^^^^^^^^^ help: convert the identifier to upper camel case: `OrangeCrab85k`
|
||||
|
||||
warning: unused imports: `Annotation`, `ScopedNameId`, `TargetBase`, and `TargetName`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:5:19
|
||||
|
|
||||
5 | annotations::{Annotation, TargetedAnnotation},
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
16 | expr::target::{Target, TargetBase},
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
20 | NameId, ScopedNameId, TargetName,
|
||||
| ^^^^^^^^^^^^ ^^^^^^^^^^
|
||||
|
||||
warning: unused import: `convert::Infallible`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:34:5
|
||||
|
|
||||
34 | convert::Infallible,
|
||||
| ^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: unused variable: `lhs_ty`
|
||||
--> crates/fayalite/src/sim/compiler.rs:3809:37
|
||||
|
|
||||
3809 | CanonicalType::Enum(lhs_ty) => {
|
||||
| ^^^^^^ help: if this is intentional, prefix it with an underscore: `_lhs_ty`
|
||||
|
|
||||
= note: `#[warn(unused_variables)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
warning: unused variable: `rhs_ty`
|
||||
--> crates/fayalite/src/sim/compiler.rs:3810:45
|
||||
|
|
||||
3810 | let CanonicalType::Enum(rhs_ty) = rhs.ty() else {
|
||||
| ^^^^^^ help: if this is intentional, prefix it with an underscore: `_rhs_ty`
|
||||
|
||||
warning: unused variable: `part_name`
|
||||
--> crates/fayalite/src/sim/compiler.rs:3898:37
|
||||
|
|
||||
3898 | let mut alloc_small_slot = |part_name: &str| {
|
||||
| ^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_part_name`
|
||||
|
||||
warning: unused variable: `annotations`
|
||||
--> crates/fayalite/src/sim/compiler.rs:4080:23
|
||||
|
|
||||
4080 | let StmtReg { annotations, reg } = stmt_reg;
|
||||
| ^^^^^^^^^^^ help: try ignoring the field: `annotations: _`
|
||||
|
||||
warning: unused variable: `annotations`
|
||||
--> crates/fayalite/src/sim/compiler.rs:4118:46
|
||||
|
|
||||
4118 | StmtDeclaration::Wire(StmtWire { annotations, wire }) => {}
|
||||
| ^^^^^^^^^^^ help: try ignoring the field: `annotations: _`
|
||||
|
||||
warning: unused variable: `wire`
|
||||
--> crates/fayalite/src/sim/compiler.rs:4118:59
|
||||
|
|
||||
4118 | StmtDeclaration::Wire(StmtWire { annotations, wire }) => {}
|
||||
| ^^^^ help: try ignoring the field: `wire: _`
|
||||
|
||||
warning: unused variable: `annotations`
|
||||
--> crates/fayalite/src/sim/compiler.rs:4129:17
|
||||
|
|
||||
4129 | annotations,
|
||||
| ^^^^^^^^^^^ help: try ignoring the field: `annotations: _`
|
||||
|
||||
warning: unused variable: `location`
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:233:49
|
||||
|
|
||||
233 | let make_buffered_output = |name: &str, location: &str, io_standard: &str| {
|
||||
| ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_location`
|
||||
|
||||
warning: unused variable: `io_standard`
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:233:65
|
||||
|
|
||||
233 | let make_buffered_output = |name: &str, location: &str, io_standard: &str| {
|
||||
| ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_io_standard`
|
||||
|
||||
warning: unused variable: `location`
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:210:48
|
||||
|
|
||||
210 | let make_buffered_input = |name: &str, location: &str, io_standard: &str, invert: bool| {
|
||||
| ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_location`
|
||||
|
||||
warning: unused variable: `io_standard`
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:210:64
|
||||
|
|
||||
210 | let make_buffered_input = |name: &str, location: &str, io_standard: &str, invert: bool| {
|
||||
| ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_io_standard`
|
||||
|
||||
warning: variable `frequency` is assigned to, but never used
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:257:13
|
||||
|
|
||||
257 | let mut frequency = clk100_div_pow2[0].ty().frequency();
|
||||
| ^^^^^^^^^^^^^
|
||||
|
|
||||
= note: consider using `_frequency` instead
|
||||
|
||||
warning: value assigned to `frequency` is never read
|
||||
--> crates/fayalite/src/vendor/lattice/orangecrab.rs:268:13
|
||||
|
|
||||
268 | frequency = p.ty().frequency();
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
|
||||
= help: maybe it is overwritten before being read?
|
||||
= note: `#[warn(unused_assignments)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
warning: unused variable: `output`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:496:9
|
||||
|
|
||||
496 | output: &mut impl fmt::Write,
|
||||
| ^^^^^^ help: if this is intentional, prefix it with an underscore: `_output`
|
||||
|
||||
warning: unused variable: `port`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:497:9
|
||||
|
|
||||
497 | port: &ScalarizedModuleABIPort,
|
||||
| ^^^^ help: if this is intentional, prefix it with an underscore: `_port`
|
||||
|
||||
warning: unused variable: `annotations`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:498:9
|
||||
|
|
||||
498 | annotations: ScalarizedModuleABIAnnotations<'_>,
|
||||
| ^^^^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_annotations`
|
||||
|
||||
warning: unused variable: `job_data`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:707:13
|
||||
|
|
||||
707 | let job_data @ YosysNextpnrRunNextpnr {
|
||||
| ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_job_data`
|
||||
|
||||
warning: unused variable: `nextpnr_lattice_seed`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:708:13
|
||||
|
|
||||
708 | nextpnr_lattice_seed,
|
||||
| ^^^^^^^^^^^^^^^^^^^^ help: try ignoring the field: `nextpnr_lattice_seed: _`
|
||||
|
||||
warning: unused variable: `routed_json_file_name`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:710:13
|
||||
|
|
||||
710 | routed_json_file_name,
|
||||
| ^^^^^^^^^^^^^^^^^^^^^ help: try ignoring the field: `routed_json_file_name: _`
|
||||
|
||||
warning: unused variable: `job_data`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:861:13
|
||||
|
|
||||
861 | let job_data @ YosysNextpnrRunEcpPack {
|
||||
| ^^^^^^^^ help: if this is intentional, prefix it with an underscore: `_job_data`
|
||||
|
||||
warning: unused variable: `placeholder_dir`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:862:4
|
||||
|
|
||||
862 | placeholder_dir,
|
||||
| ^^^^^^^^^^^^^^^ help: try ignoring the field: `placeholder_dir: _`
|
||||
|
||||
warning: unused variable: `device`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:863:13
|
||||
|
|
||||
863 | device,
|
||||
| ^^^^^^ help: try ignoring the field: `device: _`
|
||||
|
||||
warning: unused variable: `routed_json_file_name`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:864:13
|
||||
|
|
||||
864 | routed_json_file_name,
|
||||
| ^^^^^^^^^^^^^^^^^^^^^ help: try ignoring the field: `routed_json_file_name: _`
|
||||
|
||||
warning: unused variable: `frames_file_name`
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:866:13
|
||||
|
|
||||
866 | frames_file_name,
|
||||
| ^^^^^^^^^^^^^^^^ help: try ignoring the field: `frames_file_name: _`
|
||||
|
||||
warning: struct `SliceAsMapDebug` is never constructed
|
||||
--> crates/fayalite/src/sim.rs:3231:8
|
||||
|
|
||||
3231 | struct SliceAsMapDebug<'a, T>(&'a [Option<T>]);
|
||||
| ^^^^^^^^^^^^^^^
|
||||
|
|
||||
= note: `#[warn(dead_code)]` (part of `#[warn(unused)]`) on by default
|
||||
|
||||
warning: method `element_dyn` is never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:397:8
|
||||
|
|
||||
385 | impl CompiledValue<Array> {
|
||||
| ------------------------- method in this implementation
|
||||
...
|
||||
397 | fn element_dyn(
|
||||
| ^^^^^^^^^^^
|
||||
|
||||
warning: methods `len`, `index`, `is_empty`, and `stride` are never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:444:27
|
||||
|
|
||||
434 | impl TypeArrayIndex {
|
||||
| ------------------- methods in this implementation
|
||||
...
|
||||
444 | pub(crate) fn len(self) -> usize {
|
||||
| ^^^
|
||||
...
|
||||
449 | pub(crate) fn index(self) -> StatePartIndex<StatePartKindSmallSlots> {
|
||||
| ^^^^^
|
||||
...
|
||||
454 | pub(crate) fn is_empty(self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
457 | pub(crate) fn stride(self) -> TypeLen {
|
||||
| ^^^^^^
|
||||
...
|
||||
569 | / get_state_part_kinds! {
|
||||
570 | | make_type_array_indexes! {
|
||||
571 | | type_plural_fields;
|
||||
572 | | type_kinds;
|
||||
573 | | }
|
||||
574 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: methods `iter`, `for_each_offset`, `split_first`, and `for_each_offset2` are never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:478:27
|
||||
|
|
||||
469 | impl<'a> TypeArrayIndexesRef<'a> {
|
||||
| -------------------------------- methods in this implementation
|
||||
...
|
||||
478 | pub(crate) fn iter(self) -> impl Iterator<Item = TypeArrayIndex> + 'a {
|
||||
| ^^^^
|
||||
...
|
||||
483 | pub(crate) fn for_each_offset(
|
||||
| ^^^^^^^^^^^^^^^
|
||||
...
|
||||
491 | pub(crate) fn split_first(self) -> Option<(TypeArrayIndex, Self)> {
|
||||
| ^^^^^^^^^^^
|
||||
...
|
||||
501 | pub(crate) fn for_each_offset2(
|
||||
| ^^^^^^^^^^^^^^^^
|
||||
...
|
||||
569 | / get_state_part_kinds! {
|
||||
570 | | make_type_array_indexes! {
|
||||
571 | | type_plural_fields;
|
||||
572 | | type_kinds;
|
||||
573 | | }
|
||||
574 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: struct `TypeArrayIndexed` is never constructed
|
||||
--> crates/fayalite/src/sim/compiler.rs:534:27
|
||||
|
|
||||
534 | pub(crate) struct TypeArrayIndexed {
|
||||
| ^^^^^^^^^^^^^^^^
|
||||
...
|
||||
569 | / get_state_part_kinds! {
|
||||
570 | | make_type_array_indexes! {
|
||||
571 | | type_plural_fields;
|
||||
572 | | type_kinds;
|
||||
573 | | }
|
||||
574 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: associated items `from_parts`, `base`, and `indexes` are never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:539:27
|
||||
|
|
||||
538 | impl TypeArrayIndexed {
|
||||
| --------------------- associated items in this implementation
|
||||
539 | pub(crate) fn from_parts(base: TypeIndex, indexes: TypeArrayIndexes) -> Self {
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
547 | pub(crate) fn base(self) -> TypeIndex {
|
||||
| ^^^^
|
||||
...
|
||||
552 | pub(crate) fn indexes(self) -> TypeArrayIndexes {
|
||||
| ^^^^^^^
|
||||
...
|
||||
569 | / get_state_part_kinds! {
|
||||
570 | | make_type_array_indexes! {
|
||||
571 | | type_plural_fields;
|
||||
572 | | type_kinds;
|
||||
573 | | }
|
||||
574 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_type_array_indexes` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: methods `add_target_without_indexes_to_set` and `add_target_and_indexes_to_set` are never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:602:8
|
||||
|
|
||||
591 | impl<T: Type> CompiledExpr<T> {
|
||||
| ----------------------------- methods in this implementation
|
||||
...
|
||||
602 | fn add_target_without_indexes_to_set(self, inputs: &mut SlotSet) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
...
|
||||
611 | fn add_target_and_indexes_to_set(self, inputs: &mut SlotSet) {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: method `field_by_name` is never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:628:8
|
||||
|
|
||||
621 | impl CompiledExpr<Bundle> {
|
||||
| ------------------------- method in this implementation
|
||||
...
|
||||
628 | fn field_by_name(self, name: Interned<str>) -> CompiledExpr<CanonicalType> {
|
||||
| ^^^^^^^^^^^^^
|
||||
|
||||
warning: method `for_each` is never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:1272:16
|
||||
|
|
||||
1251 | impl SlotToAssignmentIndexFullMap {
|
||||
| --------------------------------- method in this implementation
|
||||
...
|
||||
1272 | fn for_each(
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1413 | / get_state_part_kinds! {
|
||||
1414 | | make_assignment_graph! {
|
||||
1415 | | type_plural_fields;
|
||||
1416 | | type_singular_variants;
|
||||
... |
|
||||
1422 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_assignment_graph` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: struct `SlotVec` is never constructed
|
||||
--> crates/fayalite/src/sim/compiler.rs:1509:16
|
||||
|
|
||||
1509 | struct SlotVec {
|
||||
| ^^^^^^^
|
||||
...
|
||||
1521 | / get_state_part_kinds! {
|
||||
1522 | | make_slot_vec! {
|
||||
1523 | | type_plural_fields;
|
||||
1524 | | type_kinds;
|
||||
1525 | | }
|
||||
1526 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_slot_vec` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `is_empty` is never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:1514:16
|
||||
|
|
||||
1513 | impl SlotVec {
|
||||
| ------------ method in this implementation
|
||||
1514 | fn is_empty(&self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1521 | / get_state_part_kinds! {
|
||||
1522 | | make_slot_vec! {
|
||||
1523 | | type_plural_fields;
|
||||
1524 | | type_kinds;
|
||||
1525 | | }
|
||||
1526 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_slot_vec` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: methods `is_empty`, `for_each`, and `all` are never used
|
||||
--> crates/fayalite/src/sim/compiler.rs:1539:16
|
||||
|
|
||||
1538 | impl SlotSet {
|
||||
| ------------ methods in this implementation
|
||||
1539 | fn is_empty(&self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1542 | fn for_each(
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1548 | fn all(
|
||||
| ^^^
|
||||
...
|
||||
1619 | / get_state_part_kinds! {
|
||||
1620 | | make_slot_set! {
|
||||
1621 | | type_plural_fields;
|
||||
1622 | | type_kinds;
|
||||
1623 | | }
|
||||
1624 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_slot_set` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: constant `MIN_BITS_FOR_NEEDING_BIG` is never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:33:18
|
||||
|
|
||||
33 | pub(crate) const MIN_BITS_FOR_NEEDING_BIG: usize = SmallUInt::BITS as usize + 1;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: struct `InsnFieldTypeTransformUnit` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter.rs:50:19
|
||||
|
|
||||
50 | pub(crate) struct InsnFieldTypeTransformUnit;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: struct `InsnFieldTypeTransformValue` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter.rs:80:19
|
||||
|
|
||||
80 | pub(crate) struct InsnFieldTypeTransformValue;
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: associated constant `UNIT` is never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:90:11
|
||||
|
|
||||
89 | pub trait InsnFieldTrait: Send + Sync + 'static + Copy + Eq + Hash + fmt::Debug {
|
||||
| -------------- associated constant in this trait
|
||||
90 | const UNIT: InsnFieldType<InsnFieldTypeTransformUnit>;
|
||||
| ^^^^
|
||||
|
||||
warning: field `orig_insns` is never read
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1035:24
|
||||
|
|
||||
1034 | pub(crate) struct BorrowedState<'a> {
|
||||
| ------------- field in this struct
|
||||
1035 | pub(crate) orig_insns: Interned<Insns<InsnsBuildingDone>>,
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
1052 | / get_state_part_kinds! {
|
||||
1053 | | make_state! {
|
||||
1054 | | state_plural_fields;
|
||||
1055 | | state_kinds;
|
||||
1056 | | }
|
||||
1057 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: `BorrowedState` has a derived impl for the trait `Debug`, but this is intentionally ignored during dead code analysis
|
||||
= note: this warning originates in the macro `make_state` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: struct `StatePartIndexMap` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1060:19
|
||||
|
|
||||
1060 | pub(crate) struct StatePartIndexMap<K: StatePartKind, V> {
|
||||
| ^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: multiple associated items are never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1079:19
|
||||
|
|
||||
1078 | impl<K: StatePartKind, V> StatePartIndexMap<K, V> {
|
||||
| ------------------------------------------------- associated items in this implementation
|
||||
1079 | pub(crate) fn new() -> Self {
|
||||
| ^^^
|
||||
...
|
||||
1085 | pub(crate) fn get(&self, key: StatePartIndex<K>) -> Option<&V> {
|
||||
| ^^^
|
||||
...
|
||||
1088 | pub(crate) fn get_mut(&mut self, key: StatePartIndex<K>) -> Option<&mut V> {
|
||||
| ^^^^^^^
|
||||
...
|
||||
1091 | pub(crate) fn keys(&self) -> impl Iterator<Item = StatePartIndex<K>> + '_ {
|
||||
| ^^^^
|
||||
...
|
||||
1094 | pub(crate) fn values(&self) -> vec_map::Values<'_, V> {
|
||||
| ^^^^^^
|
||||
...
|
||||
1097 | pub(crate) fn values_mut(&mut self) -> vec_map::ValuesMut<'_, V> {
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
1100 | pub(crate) fn iter(&self) -> impl Iterator<Item = (StatePartIndex<K>, &V)> + '_ {
|
||||
| ^^^^
|
||||
...
|
||||
1105 | pub(crate) fn iter_mut(&mut self) -> impl Iterator<Item = (StatePartIndex<K>, &mut V)> + '_ {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1110 | pub(crate) fn len(&self) -> usize {
|
||||
| ^^^
|
||||
...
|
||||
1113 | pub(crate) fn is_empty(&self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1116 | pub(crate) fn insert(&mut self, key: StatePartIndex<K>, value: V) -> Option<V> {
|
||||
| ^^^^^^
|
||||
...
|
||||
1119 | pub(crate) fn remove(&mut self, key: StatePartIndex<K>) -> Option<V> {
|
||||
| ^^^^^^
|
||||
...
|
||||
1122 | pub(crate) fn entry(&mut self, key: StatePartIndex<K>) -> StatePartIndexMapEntry<'_, K, V> {
|
||||
| ^^^^^
|
||||
|
||||
warning: struct `StatePartIndexMapVacantEntry` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1154:19
|
||||
|
|
||||
1154 | pub(crate) struct StatePartIndexMapVacantEntry<'a, K: StatePartKind, V>(
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: struct `StatePartIndexMapOccupiedEntry` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1159:19
|
||||
|
|
||||
1159 | pub(crate) struct StatePartIndexMapOccupiedEntry<'a, K: StatePartKind, V>(
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: enum `StatePartIndexMapEntry` is never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1164:17
|
||||
|
|
||||
1164 | pub(crate) enum StatePartIndexMapEntry<'a, K: StatePartKind, V> {
|
||||
| ^^^^^^^^^^^^^^^^^^^^^^
|
||||
|
||||
warning: methods `or_insert` and `or_insert_with` are never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1170:19
|
||||
|
|
||||
1169 | impl<'a, K: StatePartKind, V> StatePartIndexMapEntry<'a, K, V> {
|
||||
| -------------------------------------------------------------- methods in this implementation
|
||||
1170 | pub(crate) fn or_insert(self, default: V) -> &'a mut V {
|
||||
| ^^^^^^^^^
|
||||
...
|
||||
1176 | pub(crate) fn or_insert_with(self, f: impl FnOnce() -> V) -> &'a mut V {
|
||||
| ^^^^^^^^^^^^^^
|
||||
|
||||
warning: method `last_insn_pc` is never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1193:19
|
||||
|
|
||||
1184 | impl Insns<InsnsBuilding> {
|
||||
| ------------------------- method in this implementation
|
||||
...
|
||||
1193 | pub(crate) fn last_insn_pc(&self) -> usize {
|
||||
| ^^^^^^^^^^^^
|
||||
|
||||
warning: function `bigint_pow2` is never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:1338:4
|
||||
|
|
||||
1338 | fn bigint_pow2(width: usize) -> Interned<BigInt> {
|
||||
| ^^^^^^^^^^^
|
||||
|
||||
warning: methods `fields_unit` and `into_fields` are never used
|
||||
--> crates/fayalite/src/sim/interpreter.rs:449:27
|
||||
|
|
||||
448 | impl $Insn {
|
||||
| ---------- methods in this implementation
|
||||
449 | $vis const fn fields_unit(&self) -> &'static [InsnField<InsnFieldTypeTransformUnit>] {
|
||||
| ^^^^^^^^^^^
|
||||
...
|
||||
521 | $vis fn into_fields(self) -> std::array::IntoIter<InsnField<InsnFieldTypeTransformValue>, { $Insn::MAX_FIELDS }> {
|
||||
| ^^^^^^^^^^^
|
||||
...
|
||||
1435 | / impl_insns! {
|
||||
1436 | | #[insn = Insn, next_macro = next, branch_macro = branch]
|
||||
1437 | | pub(crate) fn State::run(&mut self) -> () {
|
||||
1438 | | #[state]
|
||||
... |
|
||||
2106 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `impl_insns` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `offset` is never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:490:19
|
||||
|
|
||||
469 | impl<K: StatePartKind> StatePartIndexRange<K> {
|
||||
| --------------------------------------------- method in this implementation
|
||||
...
|
||||
490 | pub(crate) fn offset(self, offset: StatePartIndex<K>) -> Self {
|
||||
| ^^^^^^
|
||||
|
||||
warning: methods `len` and `is_empty` are never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:574:27
|
||||
|
|
||||
573 | impl<BK: InsnsBuildingKind> StateLayout<BK> {
|
||||
| ------------------------------------------- methods in this implementation
|
||||
574 | pub(crate) fn len(&self) -> StateLen {
|
||||
| ^^^
|
||||
...
|
||||
580 | pub(crate) fn is_empty(&self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
677 | / get_state_part_kinds! {
|
||||
678 | | make_state_layout! {
|
||||
679 | | state_plural_fields;
|
||||
680 | | state_kinds;
|
||||
681 | | }
|
||||
682 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: methods `next_index` and `allocate` are never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:592:27
|
||||
|
|
||||
591 | impl StateLayout<InsnsBuilding> {
|
||||
| ------------------------------- methods in this implementation
|
||||
592 | pub(crate) fn next_index(&self) -> StateIndex {
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
598 | pub(crate) fn allocate<BK: InsnsBuildingKind>(
|
||||
| ^^^^^^^^
|
||||
...
|
||||
677 | / get_state_part_kinds! {
|
||||
678 | | make_state_layout! {
|
||||
679 | | state_plural_fields;
|
||||
680 | | state_kinds;
|
||||
681 | | }
|
||||
682 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `is_empty` is never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:631:27
|
||||
|
|
||||
625 | impl<BK: InsnsBuildingKind> TypeLayout<BK> {
|
||||
| ------------------------------------------ method in this implementation
|
||||
...
|
||||
631 | pub(crate) fn is_empty(&self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
677 | / get_state_part_kinds! {
|
||||
678 | | make_state_layout! {
|
||||
679 | | state_plural_fields;
|
||||
680 | | state_kinds;
|
||||
681 | | }
|
||||
682 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `next_index` is never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:652:27
|
||||
|
|
||||
651 | impl TypeLayout<InsnsBuilding> {
|
||||
| ------------------------------ method in this implementation
|
||||
652 | pub(crate) fn next_index(&self) -> TypeIndex {
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
677 | / get_state_part_kinds! {
|
||||
678 | | make_state_layout! {
|
||||
679 | | state_plural_fields;
|
||||
680 | | state_kinds;
|
||||
681 | | }
|
||||
682 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_layout` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `is_empty` is never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:702:19
|
||||
|
|
||||
693 | impl<K: StatePartKind, BK: InsnsBuildingKind> StatePartLayout<K, BK> {
|
||||
| -------------------------------------------------------------------- method in this implementation
|
||||
...
|
||||
702 | pub(crate) fn is_empty(&self) -> bool {
|
||||
| ^^^^^^^^
|
||||
|
||||
warning: struct `StateLen` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:809:27
|
||||
|
|
||||
809 | pub(crate) struct StateLen {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
863 | / get_state_part_kinds! {
|
||||
864 | | make_state_len! {
|
||||
865 | | state_plural_fields;
|
||||
866 | | state_kinds;
|
||||
... |
|
||||
870 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_len` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `only_small` is never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:849:33
|
||||
|
|
||||
824 | impl TypeLen {
|
||||
| ------------ method in this implementation
|
||||
...
|
||||
849 | pub(crate) const fn only_small(mut self) -> Option<StatePartLen<StatePartKindSmallSlots>> {
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
863 | / get_state_part_kinds! {
|
||||
864 | | make_state_len! {
|
||||
865 | | state_plural_fields;
|
||||
866 | | state_kinds;
|
||||
... |
|
||||
870 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_len` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: struct `StateIndex` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:926:27
|
||||
|
|
||||
926 | pub(crate) struct StateIndex {
|
||||
| ^^^^^^^^^^
|
||||
...
|
||||
949 | / get_state_part_kinds! {
|
||||
950 | | make_state_index! {
|
||||
951 | | state_plural_fields;
|
||||
952 | | state_kinds;
|
||||
953 | | }
|
||||
954 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_index` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: struct `StateIndexRange` is never constructed
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:963:27
|
||||
|
|
||||
963 | pub(crate) struct StateIndexRange {
|
||||
| ^^^^^^^^^^^^^^^
|
||||
...
|
||||
1041 | / get_state_part_kinds! {
|
||||
1042 | | make_state_index_range! {
|
||||
1043 | | state_plural_fields;
|
||||
1044 | | state_kinds;
|
||||
... |
|
||||
1047 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_index_range` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: methods `start`, `len`, and `is_empty` are never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:969:27
|
||||
|
|
||||
968 | impl StateIndexRange {
|
||||
| -------------------- methods in this implementation
|
||||
969 | pub(crate) fn start(self) -> StateIndex {
|
||||
| ^^^^^
|
||||
...
|
||||
975 | pub(crate) fn len(self) -> StateLen {
|
||||
| ^^^
|
||||
...
|
||||
981 | pub(crate) fn is_empty(self) -> bool {
|
||||
| ^^^^^^^^
|
||||
...
|
||||
1041 | / get_state_part_kinds! {
|
||||
1042 | | make_state_index_range! {
|
||||
1043 | | state_plural_fields;
|
||||
1044 | | state_kinds;
|
||||
... |
|
||||
1047 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_index_range` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: method `offset` is never used
|
||||
--> crates/fayalite/src/sim/interpreter/parts.rs:1023:27
|
||||
|
|
||||
991 | impl TypeIndexRange {
|
||||
| ------------------- method in this implementation
|
||||
...
|
||||
1023 | pub(crate) fn offset(self, offset: TypeIndex) -> Self {
|
||||
| ^^^^^^
|
||||
...
|
||||
1041 | / get_state_part_kinds! {
|
||||
1042 | | make_state_index_range! {
|
||||
1043 | | state_plural_fields;
|
||||
1044 | | state_kinds;
|
||||
... |
|
||||
1047 | | }
|
||||
| |_- in this macro invocation
|
||||
|
|
||||
= note: this warning originates in the macro `make_state_index_range` which comes from the expansion of the macro `get_state_part_kinds` (in Nightly builds, run with -Z macro-backtrace for more info)
|
||||
|
||||
warning: methods `is_unique` and `is_shared` are never used
|
||||
--> crates/fayalite/src/util/alternating_cell.rs:59:19
|
||||
|
|
||||
40 | impl<T: ?Sized> AlternatingCell<T> {
|
||||
| ---------------------------------- methods in this implementation
|
||||
...
|
||||
59 | pub(crate) fn is_unique(&self) -> bool {
|
||||
| ^^^^^^^^^
|
||||
...
|
||||
62 | pub(crate) fn is_shared(&self) -> bool {
|
||||
| ^^^^^^^^^
|
||||
|
||||
warning: function `tcl_escape` is never used
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:362:4
|
||||
|
|
||||
362 | fn tcl_escape(s: impl AsRef<str>) -> String {
|
||||
| ^^^^^^^^^^
|
||||
|
||||
warning: field `0` is never read
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:382:12
|
||||
|
|
||||
382 | Module(Module<Bundle>),
|
||||
| ------ ^^^^^^^^^^^^^^
|
||||
| |
|
||||
| field in this variant
|
||||
|
|
||||
= note: `AnnotationTarget` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
|
||||
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
||||
|
|
||||
382 - Module(Module<Bundle>),
|
||||
382 + Module(()),
|
||||
|
|
||||
|
||||
warning: field `0` is never read
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:383:9
|
||||
|
|
||||
383 | Mem(Mem),
|
||||
| --- ^^^
|
||||
| |
|
||||
| field in this variant
|
||||
|
|
||||
= note: `AnnotationTarget` has derived impls for the traits `Debug` and `Clone`, but these are intentionally ignored during dead code analysis
|
||||
help: consider changing the field to be of unit type to suppress this warning while preserving the field numbering, or remove the field
|
||||
|
|
||||
383 - Mem(Mem),
|
||||
383 + Mem(()),
|
||||
|
|
||||
|
||||
warning: method `source_location` is never used
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:388:8
|
||||
|
|
||||
387 | impl AnnotationTarget {
|
||||
| --------------------- method in this implementation
|
||||
388 | fn source_location(self) -> SourceLocation {
|
||||
| ^^^^^^^^^^^^^^^
|
||||
|
||||
warning: field `output` is never read
|
||||
--> crates/fayalite/src/vendor/lattice/yosys_nextpnr.rs:399:5
|
||||
|
|
||||
398 | struct PcfFileWriter<W: fmt::Write> { //TODO
|
||||
| ------------- field in this struct
|
||||
399 | output: W,
|
||||
| ^^^^^^
|
||||
|
||||
warning: `fayalite` (lib) generated 77 warnings (run `cargo fix --lib -p fayalite` to apply 29 suggestions)
|
||||
Finished `dev` profile [unoptimized + debuginfo] target(s) in 2m 00s
|
||||
Running `target/debug/examples/blinky yosys-nextpnr-ecp5 --nextpnr /home/alex/.guix-profile/bin/nextpnr-ecp5 --platform orangecrab-85k -o target/blinky-out --ecppack /home/alex/.guix-profile/bin/ecppack --placeholder-dir /tmp/anyPathBuf/orangecrab_r0.2.1.pcf --yosys /home/alex/.guix-profile/bin/yosys`
|
||||
error: invalid value '/home/alex/.guix-profile/bin/nextpnr-ecp5' for '--nextpnr <NEXTPNR>': nextpnr: failed to resolve "/home/alex/.guix-profile/bin/nextpnr-ecp5" to a valid program: cannot find binary path
|
||||
|
||||
For more information, try '--help'.
|
||||
make: *** [Makefile:6: all] Error 2
|
||||
Loading…
Add table
Add a link
Reference in a new issue