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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
IVDescriptors.cpp 871 unsigned RedOp = getOpcode(Kind);
889 if (RedOp == Instruction::ICmp || RedOp == Instruction::FCmp)
893 if (RedOp == Instruction::ICmp || RedOp == Instruction::FCmp) {
904 if (RedOp == Instruction::ICmp || RedOp == Instruction::FCmp) {
909 return Cur->getOpcode() == RedOp;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorize.cpp 7150 Instruction *RedOp = RetI->getOperand(1) == LastChain
7156 if (RedOp && (isa<SExtInst>(RedOp) || isa<ZExtInst>(RedOp)) &&
7157 !TheLoop->isLoopInvariant(RedOp)) {
7158 bool IsUnsigned = isa<ZExtInst>(RedOp);
7159 auto *ExtType = VectorType::get(RedOp->getOperand(0)->getType(), VectorTy);
7165 TTI.getCastInstrCost(RedOp->getOpcode(), VectorTy, ExtType,
7166 TTI::CastContextHint::None, CostKind, RedOp);
7169 } else if (RedOp && RedOp->getOpcode() == Instruction::Mul)
    [all...]

Completed in 120 milliseconds