B&W print-friendly diagrams + tinkerpop-0001 + wave-3 proof sections. Squash of 94 local commits onto remote master.
16 lines
685 B
Bash
Executable file
16 lines
685 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
cd /tmp && git clone --depth 1 https://github.com/verilator/verilator verilator 2>/dev/null
|
|
|
|
echo "=== V3ExecGraph.cpp:945-965 — schedule.contains type ==="
|
|
grep -n "schedule\b" verilator/src/V3ExecGraph.cpp | grep -v "//" | head -10
|
|
sed -n '945,970p' verilator/src/V3ExecGraph.cpp
|
|
|
|
echo ""
|
|
echo "=== V3Gate.cpp:710-730 — readVscps type ==="
|
|
grep -n "readVscps\s*[;=]" verilator/src/V3Gate.cpp | head -5
|
|
sed -n '710,735p' verilator/src/V3Gate.cpp
|
|
|
|
echo ""
|
|
echo "=== V3GraphAlg.cpp — SCC implementation type check ==="
|
|
grep -n "m_onStack\|m_visited\|m_seen\|pool<\|unordered_set\|std::set" verilator/src/V3GraphAlg.cpp 2>/dev/null | head -15
|