Home | History | Annotate | Download | only in Vectorize

Lines Matching defs:Hint

758     // hint. If the loop already has a loop id then copy the existing operands.
793 // The expected hint is either a MDString or a MDNode with the first
809 // Check if the hint starts with the vectorizer prefix.
810 StringRef Hint = S->getString();
811 if (!Hint.startswith(Prefix()))
814 Hint = Hint.substr(Prefix().size(), StringRef::npos);
817 getHint(Hint, Args[0]);
821 // Check string hint with one operand.
822 void getHint(StringRef Hint, Value *Arg) {
827 if (Hint == "width") {
831 } else if (Hint == "unroll") {
836 DEBUG(dbgs() << "LV: ignoring unknown hint " << Hint);