One more change to the extraction method to avoid extracting the

substrate more than once for the same subcell, since the substrate
extraction method scans the entire plane area;  this was making
large standard cell layouts extract very slowly, as every component
cell was causing the substrate search to be repeated.
This commit is contained in:
Tim Edwards
2020-03-13 11:36:42 -04:00
parent 2569a06c1f
commit 2788fd70ab
4 changed files with 39 additions and 0 deletions
+4
View File
@@ -91,6 +91,10 @@ extHierSubstrate(ha, use, x, y)
/* define a substrate plane or substrate connections. */
if (glob_subsnode == NULL) return;
/* If the substrate has already been extracted for this use */
/* then there is no need to do it again. */
if (use->cu_flags & CU_SUB_EXTRACTED) return;
def = (CellDef *)ha->ha_parentUse->cu_def;
/* Register the name of the parent's substrate */