Lines Matching refs:PredNo
537 unsigned PredNo = getPatternPredicate(Pred); in EmitMatcher() local
538 if (PredNo > 255) in EmitMatcher()
539 OS << "OPC_CheckPatternPredicateTwoByte, TARGET_VAL(" << PredNo << "),"; in EmitMatcher()
540 else if (PredNo < 8) in EmitMatcher()
541 OS << "OPC_CheckPatternPredicate" << PredNo << ','; in EmitMatcher()
543 OS << "OPC_CheckPatternPredicate, " << PredNo << ','; in EmitMatcher()
547 return 2 + (PredNo > 255) - (PredNo < 8); in EmitMatcher()
552 unsigned PredNo = getNodePredicate(Pred); in EmitMatcher() local
561 if (PredNo < 8) { in EmitMatcher()
563 OS << "OPC_CheckPredicate" << PredNo << ", "; in EmitMatcher()
568 if (PredNo >= 8 || Pred.usesOperands()) in EmitMatcher()
569 OS << PredNo << ','; in EmitMatcher()