Lines Matching refs:Cur
269 SUnit *Cur = WorkList.back(); in ComputeDepth() local
273 for (const SDep &PredDep : Cur->Preds) { in ComputeDepth()
286 if (MaxPredDepth != Cur->Depth) { in ComputeDepth()
287 Cur->setDepthDirty(); in ComputeDepth()
288 Cur->Depth = MaxPredDepth; in ComputeDepth()
290 Cur->isDepthCurrent = true; in ComputeDepth()
300 SUnit *Cur = WorkList.back(); in ComputeHeight() local
304 for (const SDep &SuccDep : Cur->Succs) { in ComputeHeight()
317 if (MaxSuccHeight != Cur->Height) { in ComputeHeight()
318 Cur->setHeightDirty(); in ComputeHeight()
319 Cur->Height = MaxSuccHeight; in ComputeHeight()
321 Cur->isHeightCurrent = true; in ComputeHeight()