HomeSort by: relevance | last modified time | path
    Searched defs:CondTy (Results 1 - 9 of 9) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-stress/
llvm-stress.cpp 631 Type *CondTy = Type::getInt1Ty(Context);
638 CondTy = FixedVectorType::get(CondTy, NumElem);
641 Value *Cond = getRandomValue(CondTy);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 655 Type *CondTy = SelectCond->getType();
669 replaceUse(Op, NonNullOperand == 1 ? ConstantInt::getTrue(CondTy)
670 : ConstantInt::getFalse(CondTy));
InstCombineSelect.cpp 278 Type *CondTy = Cond->getType();
286 if (auto *CondVTy = dyn_cast<VectorType>(CondTy)) {
396 if (CondTy->isVectorTy() && (!OtherOpT->getType()->isVectorTy() ||
  /src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/
TargetTransformInfoImpl.h 530 InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
1045 Type *CondTy = U->getOperand(0)->getType();
1046 return TargetTTI->getCmpSelInstrCost(Opcode, U->getType(), CondTy,
  /src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/
BasicTTIImpl.h 1018 InstructionCost getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy,
1028 return BaseT::getCmpSelInstrCost(Opcode, ValTy, CondTy, VecPred, CostKind,
1033 assert(CondTy && "CondTy must exist");
1034 if (CondTy->isVectorTy())
1052 if (CondTy)
1053 CondTy = CondTy->getScalarType();
1055 Opcode, ValVTy->getScalarType(), CondTy, VecPred, CostKind, I);
1423 Type *CondTy = RetTy->getWithNewBitWidth(1)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
MachineVerifier.cpp 1191 LLT CondTy = MRI->getType(MI->getOperand(1).getReg());
1192 if (!SelTy.isValid() || !CondTy.isValid())
1196 if (CondTy.isVector())
1197 verifyVectorElementMatch(SelTy, CondTy, MI);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
SimplifyCFG.cpp 6163 auto *CondTy = cast<IntegerType>(SI->getCondition()->getType());
6164 if (CondTy->getIntegerBitWidth() > 64 ||
6165 !DL.fitsInLegalInteger(CondTy->getIntegerBitWidth()))
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
LegalizerHelper.cpp 3098 const LLT CondTy = MRI.getType(BorrowOut);
3105 auto LHS_EQ_RHS = MIRBuilder.buildICmp(CmpInst::ICMP_EQ, CondTy, LHS, RHS);
3106 auto LHS_ULT_RHS = MIRBuilder.buildICmp(CmpInst::ICMP_ULT, CondTy, LHS, RHS);
3521 LLT CondTy = MRI.getType(CondReg);
3524 assert(TypeIdx == 0 || CondTy.isVector());
3528 NarrowTy1 = CondTy;
3539 if (CondTy.isVector()) {
3540 if (CondTy.getNumElements() == NumParts)
3541 NarrowTy1 = CondTy.getElementType();
3543 NarrowTy1 = LLT::vector(CondTy.getNumElements() / NumParts
    [all...]
  /src/external/apache2/llvm/dist/clang/lib/Sema/
SemaExpr.cpp 7759 QualType CondTy = Cond->getType();
7762 if (S.getLangOpts().OpenCL && CondTy->isFloatingType()) {
7764 << CondTy << Cond->getSourceRange();
7769 if (CondTy->isScalarType()) return false;
7772 << CondTy << Cond->getSourceRange();
8088 QualType CondTy, SourceLocation QuestionLoc) {
8092 const VectorType *CV = CondTy->getAs<VectorType>();
8109 << CondTy << OS.str();
8125 const VectorType *CondTy = Cond->getType()->getAs<VectorType>();
8126 assert(CondTy);
    [all...]

Completed in 78 milliseconds