Squelette du projet

This commit is contained in:
Olivier Muller
2025-11-03 11:00:11 +01:00
commit ff440776bb
41 changed files with 2522 additions and 0 deletions

View File

@@ -0,0 +1,28 @@
proc report_critical_paths { filename } {
# Open the specified output file in write mode
set FH [open $filename w]
# Write the current date and CSV format to a file header
puts $FH "#\n# File created on [clock format [clock seconds]]\n#\n"
puts $FH "Startpoint,Endpoint,Slack,#Levels,#LUTs"
# Collect details from the 50 worst timing paths for the current analysis
# The $path variable contains a Timing Path object.
foreach path [get_timing_paths -max_paths 500 -nworst 1] {
# Get the LUT cells of the timing paths
set luts [get_cells -filter {REF_NAME =~ LUT*} -of_object $path]
# Get the startpoint of the Timing Path object
set startpoint [get_property STARTPOINT_PIN $path]
# Get the endpoint of the Timing Path object
set endpoint [get_property ENDPOINT_PIN $path]
# Get the slack on the Timing Path object
set slack [get_property SLACK $path]
# Get the number of logic levels between startpoint and endpoint
set levels [get_property LOGIC_LEVELS $path]
# Save the collected path details to the CSV file
puts $FH "$startpoint,$endpoint,$slack,$levels,[llength $luts]"
}
# Close the output file
close $FH
puts "CSV file $filename has been created.\n"
return 0
}; # End PROC