HomeSort by: relevance | last modified time | path
    Searched refs:canCreateUndefOrPoison (Results 1 - 2 of 2) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
ValueTracking.h 618 /// canCreateUndefOrPoison returns true if Op can create undef or poison from
620 /// For vectors, canCreateUndefOrPoison returns true if there is potential
629 bool canCreateUndefOrPoison(const Operator *Op);
640 /// Note that this is different from canCreateUndefOrPoison because the
  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
ValueTracking.cpp 4883 static bool canCreateUndefOrPoison(const Operator *Op, bool PoisonOnly) {
4996 bool llvm::canCreateUndefOrPoison(const Operator *Op) {
4997 return ::canCreateUndefOrPoison(Op, /*PoisonOnly=*/false);
5001 return ::canCreateUndefOrPoison(Op, /*PoisonOnly=*/true);
5135 } else if (!canCreateUndefOrPoison(Opr) && all_of(Opr->operands(), OpCheck))

Completed in 17 milliseconds