Home
last modified time | relevance | path

Searched refs:Tp (Results 1 – 25 of 34) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/tools/llvm-stress/
H A Dllvm-stress.cpp215 Constant *getRandomConstant(Type *Tp) { in getRandomConstant()
216 if (Tp->isIntegerTy()) { in getRandomConstant()
218 return ConstantInt::getAllOnesValue(Tp); in getRandomConstant()
219 return ConstantInt::getNullValue(Tp); in getRandomConstant()
220 } else if (Tp->isFloatingPointTy()) { in getRandomConstant()
222 return ConstantFP::getAllOnesValue(Tp); in getRandomConstant()
223 return ConstantFP::getZero(Tp); in getRandomConstant()
225 return UndefValue::get(Tp); in getRandomConstant()
229 Value *getRandomValue(Type *Tp) { in getRandomValue()
233 if (V->getType() == Tp) in getRandomValue()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DMoveChecker.cpp501 const Type *Tp = ConversionDec->getConversionType().getTypePtrOrNull(); in isMoveSafeMethod() local
502 if (!Tp) in isMoveSafeMethod()
504 if (Tp->isBooleanType() || Tp->isVoidType() || Tp->isVoidPointerType()) in isMoveSafeMethod()
/freebsd/contrib/llvm-project/llvm/lib/Target/RISCV/
H A DRISCVTargetTransformInfo.cpp311 Type *Tp = VectorType::get(AccumType, VF.divideCoefficientBy(4)); in getPartialReductionCost() local
312 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Tp); in getPartialReductionCost()
414 MVT LegalVT, VectorType *Tp, in costShuffleViaSplitting() argument
427 Tp->getElementType()->getPrimitiveSizeInBits() || in costShuffleViaSplitting()
428 LegalNumElts >= Tp->getElementCount().getFixedValue()) in costShuffleViaSplitting()
431 unsigned VecTySize = TTI.getDataLayout().getTypeStoreSize(Tp); in costShuffleViaSplitting()
436 auto *SingleOpTy = FixedVectorType::get(Tp->getElementType(), LegalNumElts); in costShuffleViaSplitting()
484 std::optional<unsigned> VLen, VectorType *Tp, in costShuffleViaVRegSplitting() argument
492 FixedVectorType::get(Tp->getElementType(), ElemsPerVReg)) in costShuffleViaVRegSplitting()
499 Tp->getElementType()->getPrimitiveSizeInBits() || in costShuffleViaVRegSplitting()
[all …]
H A DRISCVTargetTransformInfo.h68 InstructionCost getSlideCost(FixedVectorType *Tp, ArrayRef<int> Mask,
/freebsd/tests/sys/net/if_ovpn/
H A Dclient.key16 kSDTsNIYU8IRvtfz9F0SKWJthjXVm/vliPeKmQ0Gb1EKn2fitqHv77WTwoo6V/Tp
/freebsd/contrib/llvm-project/libcxx/include/
H A Dmemory_resource27 template <class Tp> class polymorphic_allocator;
H A Dscoped_allocator42 template <class Tp>
46 OuterTraits::template rebind_alloc<Tp>, InnerAllocs...> other;
/freebsd/contrib/ntp/sntp/libevent/build-aux/
H A Dcompile209 set x "$@" -Tp"$file"
/freebsd/contrib/ntp/sntp/libevent/
H A Dcompile209 set x "$@" -Tp"$file"
/freebsd/contrib/libevent/build-aux/
H A Dcompile209 set x "$@" -Tp"$file"
/freebsd/contrib/openpam/
H A Dcompile209 set x "$@" -Tp"$file"
/freebsd/contrib/file/
H A Dcompile222 set x "$@" -Tp"$file"
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonTargetTransformInfo.h114 InstructionCost getAddressComputationCost(Type *Tp, ScalarEvolution *SE,
H A DHexagonTargetTransformInfo.cpp159 InstructionCost HexagonTTIImpl::getAddressComputationCost(Type *Tp, in getAddressComputationCost() argument
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DTargetTransformInfo.cpp1229 unsigned TargetTransformInfo::getNumberOfParts(Type *Tp) const { in getNumberOfParts()
1230 return TTIImpl->getNumberOfParts(Tp); in getNumberOfParts()
1234 TargetTransformInfo::getAddressComputationCost(Type *Tp, ScalarEvolution *SE, in getAddressComputationCost() argument
1236 InstructionCost Cost = TTIImpl->getAddressComputationCost(Tp, SE, Ptr); in getAddressComputationCost()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUTargetTransformInfo.h304 unsigned getNumberOfParts(Type *Tp) const override;
H A DAMDGPUTargetTransformInfo.cpp1533 unsigned GCNTTIImpl::getNumberOfParts(Type *Tp) const { in getNumberOfParts()
1534 if (VectorType *VecTy = dyn_cast<VectorType>(Tp)) { in getNumberOfParts()
1540 return BaseT::getNumberOfParts(Tp); in getNumberOfParts()
/freebsd/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
H A DLoopUtils.h398 LLVM_ABI Value *getRecurrenceIdentity(RecurKind K, Type *Tp, FastMathFlags FMF);
/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64TargetTransformInfo.h231 InstructionCost getSpliceCost(VectorType *Tp, int Index,
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h2965 unsigned getNumberOfParts(Type *Tp) const override { in getNumberOfParts() argument
2966 std::pair<InstructionCost, MVT> LT = getTypeLegalizationCost(Tp); in getNumberOfParts()
2971 if (auto *FTp = dyn_cast<FixedVectorType>(Tp); in getNumberOfParts()
2972 Tp && LT.second.isFixedLengthVector() && in getNumberOfParts()
2975 EVT(LT.second).getTypeForEVT(Tp->getContext())); in getNumberOfParts()
/freebsd/contrib/llvm-project/libcxx/include/experimental/
H A Dmemory_resource
/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DTargetTransformInfoImpl.h934 virtual unsigned getNumberOfParts(Type *Tp) const { return 1; } in getNumberOfParts() argument
936 virtual InstructionCost getAddressComputationCost(Type *Tp, ScalarEvolution *, in getAddressComputationCost() argument
H A DTargetTransformInfo.h1674 LLVM_ABI unsigned getNumberOfParts(Type *Tp) const;
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kISelLowering.cpp1486 SDValue Tp = getM68kReadTp(SDLoc(GA), DAG); in LowerTLSInitialExec() local
1495 return DAG.getNode(ISD::ADD, SDLoc(GA), MVT::i32, Offset, Tp); in LowerTLSInitialExec()
1500 SDValue Tp = getM68kReadTp(SDLoc(GA), DAG); in LowerTLSLocalExec() local
1504 return DAG.getNode(ISD::ADD, SDLoc(GA), MVT::i32, TGA, Tp); in LowerTLSLocalExec()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLoopUtils.cpp1288 Value *llvm::getRecurrenceIdentity(RecurKind K, Type *Tp, FastMathFlags FMF) { in getRecurrenceIdentity() argument
1293 return getReductionIdentity(RdxID, Tp, FMF); in getRecurrenceIdentity()

12