Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/OpenROAD
Submodule OpenROAD updated 87 files
+2 −0 .github/PULL_REQUEST_TEMPLATE.md
+4 −1 .github/workflows/github-actions-format-on-push.yml
+2 −0 .gitignore
+10 −4 docs/agents/testing.md
+8 −1 src/Main.cc
+1 −0 src/dbSta/test/BUILD
+1 −0 src/dbSta/test/CMakeLists.txt
+25 −0 src/dbSta/test/hier_weird_port.ok
+32 −0 src/dbSta/test/hier_weird_port.tcl
+21 −0 src/dbSta/test/hier_weird_port.v
+14 −4 src/grt/src/GlobalRouter.cpp
+5 −0 src/grt/src/fastroute/src/FastRoute.cpp
+1 −1 src/grt/src/fastroute/src/maze.cpp
+15 −9 src/odb/src/db/dbModule.cpp
+4 −0 src/ppl/src/IOPlacer.cpp
+16 −2 src/ram/include/ram/ram.h
+613 −66 src/ram/src/ram.cpp
+3 −4 src/ram/src/ram.i
+20 −4 src/ram/src/ram.tcl
+509 −507 src/ram/test/make_7x7_nangate45.defok
+10 −10 src/ram/test/make_7x7_nangate45.lefok
+4 −2 src/ram/test/make_7x7_nangate45.ok
+32 −0 src/ram/test/make_8x8_behavioral.vok
+2,914 −0 src/ram/test/make_8x8_mux2_sky130.defok
+267 −0 src/ram/test/make_8x8_mux2_sky130.lefok
+72 −0 src/ram/test/make_8x8_mux2_sky130.ok
+32 −0 src/ram/test/make_8x8_mux2_sky130.tcl
+4,345 −0 src/ram/test/make_8x8_mux4_sky130.defok
+391 −0 src/ram/test/make_8x8_mux4_sky130.lefok
+72 −0 src/ram/test/make_8x8_mux4_sky130.ok
+40 −0 src/ram/test/make_8x8_mux4_sky130.tcl
+353 −353 src/ram/test/make_8x8_sky130.defok
+7 −7 src/ram/test/make_8x8_sky130.lefok
+4 −2 src/ram/test/make_8x8_sky130.ok
+2 −0 src/ram/test/regression_tests.tcl
+11 −9 src/rsz/src/RepairHold.cc
+1 −0 src/rsz/test/BUILD
+1 −0 src/rsz/test/CMakeLists.txt
+29 −0 src/rsz/test/repair_hold_multi_output_load.def
+87 −0 src/rsz/test/repair_hold_multi_output_load.ok
+28 −0 src/rsz/test/repair_hold_multi_output_load.tcl
+11 −0 src/web/BUILD
+5 −0 src/web/CMakeLists.txt
+ src/web/fonts/DejaVuSans.ttf
+52 −0 src/web/fonts/LICENSE
+16 −0 src/web/include/web/web.h
+107 −42 src/web/src/clock-tree-widget.js
+4 −4 src/web/src/color.h
+42 −0 src/web/src/embed_font.py
+44 −0 src/web/src/font_atlas.h
+47,497 −0 src/web/src/font_data.cpp
+13 −0 src/web/src/font_data.h
+213 −0 src/web/src/glyph_cache.cpp
+100 −0 src/web/src/glyph_cache.h
+9 −32 src/web/src/hierarchy-browser.js
+143 −0 src/web/src/hierarchy_report.cpp
+16 −0 src/web/src/hierarchy_report.h
+2 −1 src/web/src/index.html
+4 −1 src/web/src/main.js
+33 −0 src/web/src/module_color_palette.h
+78 −0 src/web/src/request_dispatcher.h
+454 −235 src/web/src/request_handler.cpp
+35 −94 src/web/src/request_handler.h
+107 −57 src/web/src/search.cpp
+6 −6 src/web/src/search.h
+44 −0 src/web/src/style.css
+10 −0 src/web/src/theme.js
+125 −244 src/web/src/tile_generator.cpp
+23 −16 src/web/src/tile_generator.h
+12 −0 src/web/src/title.js
+139 −489 src/web/src/web.cpp
+7 −0 src/web/src/web.i
+45 −0 src/web/src/web_serve.cpp
+5 −0 src/web/src/websocket-manager.js
+19 −0 src/web/test/BUILD
+14 −0 src/web/test/cpp/CMakeLists.txt
+6 −6 src/web/test/cpp/TestClockTreeReport.cpp
+115 −0 src/web/test/cpp/TestGlyphCache.cpp
+86 −148 src/web/test/cpp/TestRequestHandler.cpp
+18 −32 src/web/test/cpp/TestSnap.cpp
+50 −0 src/web/test/cpp/TestTileGenerator.cpp
+57 −0 src/web/test/js/test-title.js
+1 −0 third-party/CMakeLists.txt
+11 −0 third-party/stb_truetype/BUILD
+11 −0 third-party/stb_truetype/CMakeLists.txt
+5 −0 third-party/stb_truetype/stb_truetype.cpp
+5,079 −0 third-party/stb_truetype/stb_truetype.h