Lines Matching refs:Cur
268 SUnit *Cur = WorkList.back(); in ComputeDepth() local
272 for (const SDep &PredDep : Cur->Preds) { in ComputeDepth()
285 if (MaxPredDepth != Cur->Depth) { in ComputeDepth()
286 Cur->setDepthDirty(); in ComputeDepth()
287 Cur->Depth = MaxPredDepth; in ComputeDepth()
289 Cur->isDepthCurrent = true; in ComputeDepth()
299 SUnit *Cur = WorkList.back(); in ComputeHeight() local
303 for (const SDep &SuccDep : Cur->Succs) { in ComputeHeight()
316 if (MaxSuccHeight != Cur->Height) { in ComputeHeight()
317 Cur->setHeightDirty(); in ComputeHeight()
318 Cur->Height = MaxSuccHeight; in ComputeHeight()
320 Cur->isHeightCurrent = true; in ComputeHeight()