Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
1,333
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
TCL 2.74 KB | None | 0 0
  1. ::parseOpt::cmdSpec runRDT {
  2.    -help "Command that runs the RDT flow.  This also provides control in interactive use modes, such as stepping through flow stages, start from existing saved sessions, and running standalone flows.  Status information can be obtained from related commands like rdt_list_stages, rdt_list_steps and rdt_report_stage_status"
  3.    -opt {
  4.       { -optname init  -type boolean -default false   -required 0 -help "initialize flow -> restart from beginning" }
  5.       { -optname load  -type string  -default ""      -required 0 -help "load design flow from this stage" }
  6.       { -optname subflow  -type string  -default ""   -required 0 -help "Execute a defined subflow instead of the standard flow" }
  7.       { -optname no_run -type boolean -default false   -required 0  }
  8.       { -optname mark_loaded_stage -type boolean -default false -required 0 -help "Added along with the -load of a stage to automatically mark the loaded stage. Usefui to overcome logscan errors"}
  9.       { -optname start -type string -default ""   -required 0 -help "start the run from specified stage " }
  10.       { -optname stop  -type string  -default "{}"    -required 0 -help "stop design flow after this stage or stage.step" }
  11.       { -optname signoff  -type string  -default "{}"    -required 0 -help "signoff flow to be run. Supported flows are in signoff_procs.tcl file" }
  12.       { -optname stage -type boolean -default false   -required 0 -help "run next stage only" }
  13.       { -optname step  -type boolean -default false   -required 0 -help "run next step only" }
  14.       { -optname jump  -type string  -default ""      -required 0 -help "jump to 'step' within the current stage (else if integer move step +forward or -reverse)" }
  15.       { -optname standalone  -type string  -default "{}"    -required 0 -help "run specified standalone design flow" }
  16.       { -optname load_path  -type string  -default ""      -required 0 -help "Specify the location of starting db. Provide a complete path to database" }
  17.       { -optname load_cel  -type string  -default ""      -required 0 -help "Specify the  cel in starting  db that you want to load . Provide only the name of the cel along with the path to database from -load_path" }
  18.       { -optname reset_ebb_libs    -type boolean -default false   -required 0 -help "Specify If the link and reference libs needs to be reset" }
  19.       { -optname reset_start_stage -type boolean -default false -required 0 -help "reset all the stages from start to final" }
  20.    }
  21. }
  22. 1
  23. # redefine_proc_attributes -> convert cmdSpec settings to define_proc_attributes
  24. #  to enable option completion in Synopsys tools
  25. if { [info exists ::synopsys_program_name] && ([namespace which -command ::define_proc_attributes] ne "") } {
  26.    ::parseOpt::redefine_proc_attributes
  27. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement