Lines Matching refs:cur
146 GateRef cur; in RunCFGIsDAGCheck() member
158 auto &cur = curState.cur; in RunCFGIsDAGCheck() local
162 gateAcc.SetFinished(cur); in RunCFGIsDAGCheck()
172 << "(id=" << gateAcc.GetId(cur) << ")"; in RunCFGIsDAGCheck()
173 LOG_COMPILER(ERROR) << "(id=" << gateAcc.GetId(cur) << ") is reachable from " in RunCFGIsDAGCheck()
298 GateRef cur; in RunFlowCyclesFind() member
313 auto &cur = curState.cur; in RunFlowCyclesFind() local
317 gateAcc.SetFinished(cur); in RunFlowCyclesFind()
321 const auto prev = gateAcc.GetIn(cur, idx); in RunFlowCyclesFind()
328 << "(id=" << circuit->GetId(cur) << ")"; in RunFlowCyclesFind()
330 << "(id=" << circuit->GetId(cur) << ") without passing selectors"; in RunFlowCyclesFind()
344 while (dfsStack.top().cur != meet) { in RunFlowCyclesFind()
345 cycleGatesList.push_back(dfsStack.top().cur); in RunFlowCyclesFind()
446 auto& cur = st.top(); in RunFlowCyclesFind() local
447 if (cur.it == cur.end) { in RunFlowCyclesFind()
449 acc.SetFinished(cur.gate); in RunFlowCyclesFind()
452 auto succ = *cur.it; in RunFlowCyclesFind()
453 if (acc.IsLoopBackUse(cur.gate, cur.it)) { in RunFlowCyclesFind()
454 cur.it++; in RunFlowCyclesFind()
472 cur.it++; in RunFlowCyclesFind()
519 size_t cur; in Run() member
534 auto &cur = curState.cur; in Run() local
538 timeOut[cur] = timestamp++; in Run()
545 jumpUp[succ][0] = cur; in Run()