reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Analysis/VectorUtils.cpp
  386       InstructionSet.insert(&I);
  388       if (TTI && (isa<ZExtInst>(&I) || isa<SExtInst>(&I)) &&
  388       if (TTI && (isa<ZExtInst>(&I) || isa<SExtInst>(&I)) &&
  389           !TTI->isTypeLegal(I.getOperand(0)->getType()))
  393       if ((isa<TruncInst>(&I) || isa<ICmpInst>(&I)) &&
  393       if ((isa<TruncInst>(&I) || isa<ICmpInst>(&I)) &&
  394           !I.getType()->isVectorTy() &&
  395           I.getOperand(0)->getType()->getScalarSizeInBits() <= 64) {
  398         if (TTI && isa<TruncInst>(&I) && TTI->isTypeLegal(I.getType()))
  398         if (TTI && isa<TruncInst>(&I) && TTI->isTypeLegal(I.getType()))
  401         Worklist.push_back(&I);
  402         Roots.insert(&I);