Home
last modified time | relevance | path

Searched refs:InTy (Results 1 – 9 of 9) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXTargetTransformInfo.h114 VectorType *InTy, const APInt &DemandedElts, bool Insert, bool Extract,
117 if (!InTy->getElementCount().isFixed())
120 auto VT = getTLI()->getValueType(DL, InTy);
121 auto NumElements = InTy->getElementCount().getFixedValue();
145 return Cost + BaseT::getScalarizationOverhead(InTy, DemandedElts, Insert,
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/
H A DCodeGenDAGPatterns.h851 bool UpdateNodeType(unsigned ResNo, const TypeSetByHwMode &InTy,
853 bool UpdateNodeType(unsigned ResNo, MVT::SimpleValueType InTy,
855 bool UpdateNodeType(unsigned ResNo, const ValueTypeByHwMode &InTy,
997 const TypeSetByHwMode &InTy, in UpdateNodeType() argument
999 TypeSetByHwMode VTS(InTy); in UpdateNodeType()
1005 MVT::SimpleValueType InTy, in UpdateNodeType() argument
1007 TypeSetByHwMode VTS(InTy); in UpdateNodeType()
1013 const ValueTypeByHwMode &InTy, in UpdateNodeType() argument
1015 TypeSetByHwMode VTS(InTy); in UpdateNodeType()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaStmtAsm.cpp654 QualType InTy = InputExpr->getType(); in ActOnGCCAsmStmt() local
656 if (Context.hasSameType(InTy, OutTy)) in ActOnGCCAsmStmt()
665 if (InTy->isIntegerType() || InTy->isPointerType()) in ActOnGCCAsmStmt()
667 else if (InTy->isRealFloatingType()) in ActOnGCCAsmStmt()
686 uint64_t InSize = Context.getTypeSize(InTy); in ActOnGCCAsmStmt()
747 << InTy << OutTy << OutputExpr->getSourceRange() in ActOnGCCAsmStmt()
/freebsd/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCInstrAltivec.td276 ValueType InTy>
279 [(set OutTy:$RT, (IntID InTy:$RA, InTy:$RB, InTy:$RC))]>;
299 ValueType InTy>
302 [(set OutTy:$VD, (IntID InTy:$VA, InTy:$VB))]>;
321 ValueType InTy>
324 [(set OutTy:$VD, (IntID InTy:$VB))]>;
H A DPPCInstrVSX.td145 ValueType OutTy, ValueType InTy> {
149 [(set OutTy:$XT, (Int InTy:$XA, InTy:$XB))]>;
153 [(set InTy:$XT,
154 (InTy (PPCvcmp_rec InTy:$XA, InTy:$XB, xo)))]>,
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h873 VectorType *InTy, const APInt &DemandedElts, bool Insert, bool Extract,
878 if (isa<ScalableVectorType>(InTy))
880 auto *Ty = cast<FixedVectorType>(InTy);
926 InstructionCost getScalarizationOverhead(VectorType *InTy, bool Insert, in getScalarizationOverhead() argument
929 if (isa<ScalableVectorType>(InTy)) in getScalarizationOverhead()
931 auto *Ty = cast<FixedVectorType>(InTy); in getScalarizationOverhead()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/TargetBuiltins/
H A DARM.cpp5823 llvm::Type *InTy = Is64 ? Int64Ty : Int32Ty; in EmitAArch64BuiltinExpr() local
5825 Ops[0] = Builder.CreateBitCast(Ops[0], InTy); in EmitAArch64BuiltinExpr()
5840 llvm::Type *InTy; in EmitAArch64BuiltinExpr() local
5842 InTy = Int64Ty; in EmitAArch64BuiltinExpr()
5844 InTy = Int32Ty; in EmitAArch64BuiltinExpr()
5846 InTy = Int16Ty; in EmitAArch64BuiltinExpr()
5847 Ops[0] = Builder.CreateBitCast(Ops[0], InTy); in EmitAArch64BuiltinExpr()
5863 llvm::Type* InTy = Int32Ty; in EmitAArch64BuiltinExpr() local
5865 llvm::Type *Tys[2] = {InTy, FTy}; in EmitAArch64BuiltinExpr()
5898 llvm::Type* InTy = Int32Ty; in EmitAArch64BuiltinExpr() local
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DSROA.cpp2044 Type *InTy = In->getType(); in convertValue() local
2045 if (InTy == Ty) in convertValue()
2048 if (isa<FixedVectorType>(InTy) && isa<ScalableVectorType>(Ty)) { in convertValue()
2051 auto *VTy = VectorType::getWithSizeAndScalar(cast<VectorType>(Ty), InTy); in convertValue()
2058 if (isa<ScalableVectorType>(InTy) && isa<FixedVectorType>(Ty)) { in convertValue()
2061 auto *VTy = VectorType::getWithSizeAndScalar(cast<VectorType>(InTy), Ty); in convertValue()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp23977 EVT InTy = In.getOperand(0).getValueType(); in reduceBuildVecExtToExtBuildVec() local
23982 SourceType = InTy; in reduceBuildVecExtToExtBuildVec()
23983 else if (InTy != SourceType) { in reduceBuildVecExtToExtBuildVec()