Lines Matching refs:PredNo
531 unsigned PredNo = getPatternPredicate(Pred); in EmitMatcher() local
532 if (PredNo > 255) in EmitMatcher()
533 OS << "OPC_CheckPatternPredicateTwoByte, TARGET_VAL(" << PredNo << "),"; in EmitMatcher()
534 else if (PredNo < 8) in EmitMatcher()
535 OS << "OPC_CheckPatternPredicate" << PredNo << ','; in EmitMatcher()
537 OS << "OPC_CheckPatternPredicate, " << PredNo << ','; in EmitMatcher()
541 return 2 + (PredNo > 255) - (PredNo < 8); in EmitMatcher()
546 unsigned PredNo = getNodePredicate(Pred); in EmitMatcher() local
555 if (PredNo < 8) { in EmitMatcher()
557 OS << "OPC_CheckPredicate" << PredNo << ", "; in EmitMatcher()
562 if (PredNo >= 8 || Pred.usesOperands()) in EmitMatcher()
563 OS << PredNo << ','; in EmitMatcher()