Home | History | Annotate | Download | only in CodeGen

Lines Matching refs:Cur

238     SUnit *Cur = WorkList.back();
242 for (SUnit::const_pred_iterator I = Cur->Preds.begin(),
243 E = Cur->Preds.end(); I != E; ++I) {
256 if (MaxPredDepth != Cur->Depth) {
257 Cur->setDepthDirty();
258 Cur->Depth = MaxPredDepth;
260 Cur->isDepthCurrent = true;
271 SUnit *Cur = WorkList.back();
275 for (SUnit::const_succ_iterator I = Cur->Succs.begin(),
276 E = Cur->Succs.end(); I != E; ++I) {
289 if (MaxSuccHeight != Cur->Height) {
290 Cur->setHeightDirty();
291 Cur->Height = MaxSuccHeight;
293 Cur->isHeightCurrent = true;