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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
VectorUtils.cpp 496 MapVector<Instruction *, uint64_t> MinBWs;
523 return MinBWs;
618 MinBWs[cast<Instruction>(M)] = MinBW;
622 return MinBWs;
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 664 MinBWs.clear();
2453 MapVector<Value *, std::pair<uint64_t, bool>> MinBWs;
3608 if (MinBWs.count(VL[0]))
3610 IntegerType::get(F->getContext(), MinBWs[VL[0]].first), VL.size());
3877 if (!MinBWs.count(VL0) || VecTy != SrcVecTy) {
4452 if (MinBWs.count(ScalarRoot)) {
4453 auto *MinTy = IntegerType::get(F->getContext(), MinBWs[ScalarRoot].first);
4455 MinBWs[ScalarRoot].second ? Instruction::SExt : Instruction::ZExt;
5430 if (MinBWs.count(ScalarRoot)) {
5440 auto *MinTy = IntegerType::get(F->getContext(), MinBWs[ScalarRoot].first)
    [all...]
LoopVectorize.cpp 1305 return MinBWs;
1360 return VF.isVector() && MinBWs.find(I) != MinBWs.end() &&
1724 MapVector<Instruction *, uint64_t> MinBWs;
3923 // For every instruction `I` in MinBWs, truncate the operands, create a
5693 MinBWs = computeMinimumValueSizes(TheLoop->getBlocks(), *DB, &TTI);
7453 RetTy = IntegerType::get(RetTy->getContext(), MinBWs[I]);
7660 ValTy = IntegerType::get(ValTy->getContext(), MinBWs[Op0AsInstruction]);

Completed in 41 milliseconds