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

  /src/external/apache2/llvm/dist/llvm/lib/Analysis/
IVDescriptors.cpp 1143 Type *PhiTy = Phi->getType();
1149 if (!PhiTy->isIntegerTy() && !PhiTy->isPointerTy() && !PhiTy->isFloatTy() &&
1150 !PhiTy->isDoubleTy() && !PhiTy->isHalfTy())
1153 if (PhiTy->isFloatingPointTy())
1188 Type *PhiTy = Phi->getType();
1190 if (!PhiTy->isIntegerTy() && !PhiTy->isPointerTy()
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
LoopVectorizationLegality.cpp 506 Type *PhiTy = Phi->getType();
510 if (!PhiTy->isFloatingPointTy()) {
512 WidestIndTy = convertPointerToIntegerType(DL, PhiTy);
514 WidestIndTy = getWiderType(DL, PhiTy, WidestIndTy);
527 if (!PrimaryInduction || PhiTy == WidestIndTy)
608 Type *PhiTy = Phi->getType();
610 if (!PhiTy->isIntegerTy() && !PhiTy->isFloatingPointTy() &&
611 !PhiTy->isPointerTy()) {
LoopVectorize.cpp 4368 Type *PhiTy = OrigPhi->getType();
4394 RdxDesc.getOpcode(), PhiTy,
4407 if (VF.isVector() && PhiTy != RdxDesc.getRecurrenceType()) {
4470 if (PhiTy != RdxDesc.getRecurrenceType())
4472 ? Builder.CreateSExt(ReducedPartRdx, PhiTy)
4473 : Builder.CreateZExt(ReducedPartRdx, PhiTy);
4478 PHINode *BCBlockPhi = PHINode::Create(PhiTy, 2, "bc.merge.rdx",
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
LoopInterchange.cpp 303 Type *PhiTy = PhiVar->getType();
304 if (!PhiTy->isIntegerTy() && !PhiTy->isFloatingPointTy() &&
305 !PhiTy->isPointerTy())
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
CodeGenPrepare.cpp 5980 Type *PhiTy = I->getType();
6071 if (!ConvertTy || !AnyAnchored || !TLI->shouldConvertPhiType(PhiTy, ConvertTy))
6080 ValMap[UndefValue::get(PhiTy)] = UndefValue::get(ConvertTy);
6108 new BitCastInst(ValMap[U->getOperand(0)], PhiTy, "bc", U));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ScalarEvolutionExpander.cpp 1140 Type *PhiTy = SE.getEffectiveSCEVType(Phi->getType());
1143 if (RequestedTy->getIntegerBitWidth() > PhiTy->getIntegerBitWidth())
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 3587 LLT PhiTy = MRI.getType(DstReg);
3595 = getNarrowTypeBreakDown(PhiTy, NarrowTy, LeftoverTy);
3618 insertParts(DstReg, PhiTy, NarrowTy, DstRegs, LeftoverTy, LeftoverDstRegs);
3632 if (!extractParts(SrcReg, PhiTy, NarrowTy, Unused, PartRegs,

Completed in 39 milliseconds