05_dft_testability / task_52 | jtag_tap_debug
Здесь перечислены все реальные попытки этой модели на одной задаче. По каждой попытке можно увидеть, до какой стадии она дошла, где именно сломалась и какое сообщение об ошибке вернулось из syntax, functional или synthesis.
| sample | run | extract_ok | syntax_ok | functional_ok | openlane_ok | final_success | failure_stage | failure_reason | details |
|---|---|---|---|---|---|---|---|---|---|
| sample_1 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:21: error: dbg_control is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_1
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal registers
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// JTAG TAP state machine
always @(posedge tck) begin
if (trst_n == 0) begin
state <= 4'b0001; // TEST_LOGIC_RESET
instruction <= 4'b0001; // IDCODE
dbg_control <= 8'h00;
data <= 0;
end else begin
case (state)
4'b0001: // TEST_LOGIC_RESET
if (tms) begin
state <= 4'b0010; // RUN_TEST_IDLE
end
4'b0010: // RUN_TEST_IDLE
if (tms) begin
state <= 4'b0100; // SELECT_DR_SCAN
end
...
syntax details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:21: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:98: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:8: : dbg_control is declared here as wire. 2 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:21: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:98: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:8: : dbg_control is declared here as wire. 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:21: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:98: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/generated.v:8: : dbg_control is declared here as wire.\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:21: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:98: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_1/functional/generated.v:8: : dbg_control is declared here as wire.\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_2 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | rated.v:92: error: tdo is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_2
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal signals
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// Reset logic
initial begin
state = 4'b0000;
instruction = 4'b0001;
dbg_control = 8'h00;
tdo = 0;
end
always @(posedge tck) begin
if (trst_n == 0) begin
state <= 4'b0000;
instruction <= 4'b0001;
dbg_control <= 8'h00;
tdo <= 0;
end else begin
case (state)
4'b0000: begin
...
syntax details[stderr] rated.v:92: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:95: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:98: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:101: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:104: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:107: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire. 13 error(s) during elaboration. functional details[stderr] _2/functional/generated.v:28: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:29: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:82: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:86: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:89: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:92: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:95: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:98: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:101: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:104: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:107: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire. 13 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "rated.v:92: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:95: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:98: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:101: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:104: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:107: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/generated.v:6: : tdo is declared here as wire.\n13 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "_2/functional/generated.v:28: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:29: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:82: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:86: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:89: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:92: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:95: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_2/functional/generated.v:98: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/p…
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_3 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/generated.v:70: syntax error |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_3
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
always @(posedge tck) begin
if (trst_n == 0) begin
state <= 4'b0001;
instruction <= 4'b0001;
dbg_control <= 8'h00;
data <= 8'h00;
tdo <= 0;
end else begin
case (state)
4'b0001: begin
if (tms == 1) begin
state <= 4'b0010;
end
end
4'b0010: begin
if (tms == 1) begin
instruction <= 4'b0101;
state <= 4'b0011;
...
syntax details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/generated.v:70: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/generated.v:71: Syntax in assignment statement l-value. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/functional/generated.v:70: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/functional/generated.v:71: Syntax in assignment statement l-value. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/generated.v:70: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/generated.v:71: Syntax in assignment statement l-value.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/functional/generated.v:70: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_3/functional/generated.v:71: Syntax in assignment statement l-value.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_4 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:20: error: dbg_control is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_4
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal signals
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// Reset logic
always @(posedge trst_n) begin
state <= 4'b0000;
instruction <= 4'b0001;
dbg_control <= 8'h00;
tdo <= 0;
end
// State machine
always @(posedge tck) begin
case (state)
4'b0000: begin // TEST_LOGIC_RESET
if (tms) begin
state <= 4'b0001;
end
end
4'b0001: begin // RUN_TEST_IDLE
...
syntax details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:20: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:21: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:100: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:8: : dbg_control is declared here as wire. 3 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:100: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:8: : dbg_control is declared here as wire. 3 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:20: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:21: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:100: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/generated.v:8: : dbg_control is declared here as wire.\n3 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:100: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_4/functional/generated.v:8: : dbg_control is declared here as wire.\n3 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_5 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | enerated.v:48: error: tdo is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_5
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal signals
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// Reset logic
always @(posedge trst_n) begin
state <= 4'b0000;
instruction <= 4'b0001;
dbg_control <= 8'h00;
tdo <= 0;
end
// State machine
always @(posedge tck) begin
if (tms) begin
case (state)
4'b0000: state <= 4'b0001; // TEST_LOGIC_RESET
4'b0001: state <= 4'b0010; // RUN_TEST_IDLE
4'b0010: state <= 4'b0011; // SELECT_DR_SCAN
4'b0011: state <= 4'b0100; // CAPTURE_DR
4'b0100: state <= 4'b0101; // SHIFT_DR
...
syntax details[stderr] enerated.v:48: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:51: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:58: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:64: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:71: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:77: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire. 10 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:44: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:45: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:48: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:51: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:58: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:64: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:71: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:77: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire. 10 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "enerated.v:48: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:51: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:58: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:64: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:71: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:77: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/generated.v:6: : tdo is declared here as wire.\n10 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:44: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:45: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:48: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:51: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:58: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_5/functional/generated.…
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_6 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:21: error: dbg_control is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_6
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal registers
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// JTAG TAP state machine
always @(posedge tck) begin
if (trst_n == 0) begin
state <= 4'b0001; // TEST_LOGIC_RESET
instruction <= 4'b0001; // IDCODE
dbg_control <= 8'h00;
data <= 0;
end else begin
case (state)
4'b0001: begin // TEST_LOGIC_RESET
if (tms == 1) begin
state <= 4'b0010; // RUN_TEST_IDLE
end
end
4'b0010: begin // RUN_TEST_IDLE
if (tms == 1) begin
state <= 4'b0100; // SELECT_DR_SCAN
...
syntax details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:21: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:87: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:8: : dbg_control is declared here as wire. 2 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:21: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:87: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:8: : dbg_control is declared here as wire. 2 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:21: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:87: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/generated.v:8: : dbg_control is declared here as wire.\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:21: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:87: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_6/functional/generated.v:8: : dbg_control is declared here as wire.\n2 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_7 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | ol is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_7
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal signals
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// Reset logic
initial begin
state = 4'b0000;
instruction = 4'b0001;
dbg_control = 8'h00;
tdo = 0;
end
always @(posedge tck) begin
if (trst_n == 0) begin
state <= 4'b0000;
instruction <= 4'b0001;
dbg_control <= 8'h00;
tdo <= 0;
end else begin
case (state)
4'b0000: begin // TEST_LOGIC_RESET
...
syntax details[stderr] ol is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:21: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:28: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:29: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:56: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:79: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire. 6 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:28: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:29: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:56: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:79: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire. 6 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "ol is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:21: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:28: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:29: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:56: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:79: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/generated.v:6: : tdo is declared here as wire.\n6 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:28: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:29: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:56: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:79: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_7/functional/generated.v:6: : tdo is declared here as wire.\n6 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_8 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:45: syntax error |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_8
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal signals
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
reg [7:0] shifted_data;
// Reset logic
always @(posedge trst_n) begin
state <= 4'b0000;
instruction <= 4'b0001;
dbg_control <= 8'h00;
tdo <= 0;
end
// State machine
always @(posedge tck) begin
if (tms) begin
case (state)
4'b0000: state <= 4'b0001; // TEST_LOGIC_RESET
4'b0001: state <= 4'b0010; // RUN_TEST_IDLE
4'b0010: state <= 4'b0011; // SELECT_DR_SCAN
4'b0011: state <= 4'b0100; // CAPTURE_DR
...
syntax details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:45: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:46: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:48: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:50: sorry: break statements not supported. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:49: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:53: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:54: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:56: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:58: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:60: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:61: error: Incomprehensible case expression. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:45: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:46: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:48: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:50: sorry: break statements not supported. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:49: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:53: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:54: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:56: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:58: error: Incomprehensible case expression. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:60: syntax error /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:61: error: Incomprehensible case expression. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:45: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:46: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:48: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:50: sorry: break statements not supported.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:49: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:53: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:54: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:56: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:58: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:60: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/generated.v:61: error: Incomprehensible case expression.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:45: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:46: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:48: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:50: sorry: break statements not supported.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:49: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:53: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:54: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:56: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:58: error: Incomprehensible case expression.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:60: syntax error\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_8/functional/generated.v:61: error: Incomprehensible case expression.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_9 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | error: tdo is not a valid l-value in jtag_tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_9
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
// Internal signals
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
// Reset logic
always @(posedge trst_n) begin
state <= 4'b0000;
instruction <= 4'b0001;
dbg_control <= 8'h00;
tdo <= 0;
end
// State machine
always @(posedge tck) begin
if (tms) begin
case (state)
4'b0000: state <= 4'b0001; // TEST_LOGIC_RESET
4'b0001: state <= 4'b0010; // RUN_TEST_IDLE
4'b0010: state <= 4'b0100; // SELECT_DR_SCAN
4'b0100: state <= 4'b0101; // CAPTURE_DR
4'b0101: state <= 4'b0110; // SHIFT_DR
...
syntax details[stderr] error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:45: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:50: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:52: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:59: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:63: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire. 7 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:45: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:50: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:52: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:59: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:63: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire. 7 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:45: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:50: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:52: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:59: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:63: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/generated.v:6: : tdo is declared here as wire.\n7 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:20: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:45: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:50: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:52: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:59: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:63: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_9/functional/generated.v:6: : tdo is declared here as wire.\n7 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|
| sample_10 | run_20260427_200103_669320_45d5dc | ok | failed | failed | skipped | failed | syntax | _tap_debug. |
Open detailssample_dir: E:\Work\MIEM\VKR\Analyse\data\model_dataset\models\codegemma-7b\rag_off\benchmarks\ilyasov\tasks\ilyasov__05_dft_testability__task_52\samples\run_20260427_200103_669320_45d5dc__sample_10
generated.v previewmodule jtag_tap_debug(
input tck,
input trst_n,
input tms,
input tdi,
output tdo,
input [7:0] dbg_status,
output [7:0] dbg_control
);
reg [3:0] state;
reg [3:0] instruction;
reg [7:0] data;
always @(posedge tck) begin
if (trst_n == 0) begin
state <= 4'b0001;
instruction <= 4'b0001;
dbg_control <= 8'h00;
data <= 8'h00;
tdo <= 0;
end else begin
case (state)
4'b0001: begin
if (tms == 1) begin
state <= 4'b0010;
end
end
4'b0010: begin
if (tms == 1) begin
instruction <= 4'b0101;
state <= 4'b0011;
...
syntax details[stderr] _tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:40: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:42: error: dbg_status is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:7: : dbg_status is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:56: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:59: error: dbg_control is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:76: error: tdo is not a valid l-value in jtag_tap_debug. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:6: : tdo is declared here as wire. 7 error(s) during elaboration. functional details[stderr] /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:19: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:40: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:42: error: dbg_status is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:7: : dbg_status is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:56: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:6: : tdo is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:59: error: dbg_control is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:8: : dbg_control is declared here as wire. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:76: error: tdo is not a valid l-value in tb_task_52.dut. /data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:6: : tdo is declared here as wire. 7 error(s) during elaboration. synthesis details[error] None errors[][
{
"stage": "syntax",
"code": "syntax.iverilog_failed",
"message": "_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:40: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:42: error: dbg_status is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:7: : dbg_status is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:56: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:59: error: dbg_control is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:76: error: tdo is not a valid l-value in jtag_tap_debug.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/generated.v:6: : tdo is declared here as wire.\n7 error(s) during elaboration.\n",
"retryable": false,
"details": {}
},
{
"stage": "functional",
"code": "functional.testbench_failed",
"message": "/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:19: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:21: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:40: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:42: error: dbg_status is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:7: : dbg_status is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:56: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:6: : tdo is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:59: error: dbg_control is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:8: : dbg_control is declared here as wire.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:76: error: tdo is not a valid l-value in tb_task_52.dut.\n/data/eval/out/run_20260427_200103_669320_45d5dc/tmp/codegemma_7/pashencev__05_dft_testability__task_52/sample_10/functional/generated.v:6: : tdo is declared here as wire.\n7 error(s) during elaboration.\n",
"retryable": false,
"details": {}
}
]
outcome{
"llm_ok": true,
"extract_ok": true,
"syntax_ok": false,
"functional_ok": false,
"openlane_ok": false,
"syntax_required": true,
"functional_required": true,
"openlane_required": true,
"final_success": false,
"success": false
}
|