Lines Matching defs:predGate
126 for (const auto &predGate : gateAcc.ConstIns(bbGate)) {
127 if (gateAcc.IsState(predGate) || circuit->GetOpCode(predGate) == OpCode::STATE_ENTRY) {
128 if (bbGatesAddrToIdx.count(predGate) == 0) {
131 LOG_COMPILER(ERROR) << "(id=" << circuit->GetId(predGate) << ") is pred of "
134 LOG_COMPILER(ERROR) << "(id=" << circuit->GetId(predGate) << ") is unreachable from entry";
237 GateRef predGate = *i;
238 if (ac.IsFixed(predGate) &&
242 auto a = bbGatesAddrToIdx.at(circuit->GetIn(predGate, 0));
249 << circuit->GetId(predGate)
252 LOG_COMPILER(ERROR) << "BB_" << bbGatesAddrToIdx.at(circuit->GetIn(predGate, 0))
274 GateRef predGate = *i;
275 if (ac.IsSchedulable(predGate)) {
276 if (circuit->GetMark(predGate) == MarkCode::NO_MARK) {
277 startGateList.push_back(predGate);
278 circuit->SetMark(predGate, MarkCode::VISITED);
286 GateRef predGate = *i;
287 if (ac.IsSchedulable(predGate)) {
288 if (circuit->GetMark(predGate) == MarkCode::NO_MARK) {
289 startGateList.push_back(predGate);
290 circuit->SetMark(predGate, MarkCode::VISITED);