Searched refs:CondTy (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Target/PowerPC/
H A DPPCTargetTransformInfo.cpp95 Type *CondTy) const;
189 Type *CondTy) const {
190 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
/external/llvm/lib/CodeGen/
H A DBasicTargetTransformInfo.cpp95 Type *CondTy) const;
331 Type *CondTy) const {
337 assert(CondTy && "CondTy must exist");
338 if (CondTy->isVectorTy())
353 if (CondTy)
354 CondTy = CondTy->getScalarType();
356 CondTy);
/external/llvm/include/llvm/Analysis/
H A DTargetTransformInfo.h299 Type *CondTy = 0) const;
/external/llvm/lib/Analysis/
H A DCostModel.cpp128 Type *CondTy = SI->getCondition()->getType(); local
129 return TTI->getCmpSelInstrCost(I->getOpcode(), I->getType(), CondTy);
H A DTargetTransformInfo.cpp172 Type *CondTy) const {
173 return PrevTTI->getCmpSelInstrCost(Opcode, ValTy, CondTy);
517 Type *CondTy = 0) const {
/external/llvm/lib/Target/X86/
H A DX86TargetTransformInfo.cpp95 Type *CondTy) const;
277 Type *CondTy) const {
330 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
/external/llvm/lib/Target/ARM/
H A DARMTargetTransformInfo.cpp123 unsigned getCmpSelInstrCost(unsigned Opcode, Type *ValTy, Type *CondTy) const;
385 Type *CondTy) const {
400 EVT SelCondTy = TLI->getValueType(CondTy);
413 return TargetTransformInfo::getCmpSelInstrCost(Opcode, ValTy, CondTy);
/external/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp567 Type *CondTy = Type::getInt1Ty(Context); local
573 CondTy = VectorType::get(CondTy, NumElem);
576 Value *Cond = getRandomValue(CondTy);
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineSelect.cpp134 Type *CondTy = SI.getCondition()->getType();
135 if (CondTy->isVectorTy() && CondTy->getVectorNumElements() !=
/external/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp3340 Type *CondTy = SI->getCondition()->getType(); local
3342 CondTy = VectorType::get(CondTy, VF);
3344 return TTI.getCmpSelInstrCost(I->getOpcode(), VectorTy, CondTy);
/external/clang/lib/Sema/
H A DSemaExpr.cpp4807 QualType CondTy = Cond->getType(); local
4810 if (CondTy->isScalarType()) return false;
4813 if (S.getLangOpts().OpenCL && CondTy->isVectorType())
4820 << CondTy;
4828 QualType CondTy) {
4832 << CondTy;
4837 << CondTy;
4842 LHS = S.ImpCastExprToType(LHS.take(), CondTy, CK_IntegralCast);
4843 RHS = S.ImpCastExprToType(RHS.take(), CondTy, CK_IntegralCast);
5061 QualType CondTy
4826 checkConditionalConvertScalarsToVectors(Sema &S, ExprResult &LHS, ExprResult &RHS, QualType CondTy) argument
[all...]

Completed in 261 milliseconds