Home
last modified time | relevance | path

Searched refs:VectorTy (Results 1 – 12 of 12) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/ObjCARC/
DBlotMapVector.h28 using VectorTy = std::vector<std::pair<KeyT, ValueT>>; variable
29 VectorTy Vector;
40 for (typename VectorTy::const_iterator I = Vector.begin(), E = Vector.end(); in ~BlotMapVector()
47 using iterator = typename VectorTy::iterator;
48 using const_iterator = typename VectorTy::const_iterator;
DObjCARC.h85 template<class PHINodeTy, class VectorTy>
86 void getEquivalentPHIs(PHINodeTy &PN, VectorTy &PHIList) { in getEquivalentPHIs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUPromoteAlloca.cpp415 VectorType *VectorTy = dyn_cast<VectorType>(AllocaTy); in tryPromoteAllocaToVector() local
416 if (!VectorTy) in tryPromoteAllocaToVector()
417 VectorTy = arrayTypeToVecType(cast<ArrayType>(AllocaTy)); in tryPromoteAllocaToVector()
420 << *VectorTy << '\n'); in tryPromoteAllocaToVector()
430 Type *VecPtrTy = VectorTy->getPointerTo(AMDGPUAS::PRIVATE_ADDRESS); in tryPromoteAllocaToVector()
435 Value *VecValue = Builder.CreateLoad(VectorTy, BitCast); in tryPromoteAllocaToVector()
446 Type *VecPtrTy = VectorTy->getPointerTo(AMDGPUAS::PRIVATE_ADDRESS); in tryPromoteAllocaToVector()
450 Value *VecValue = Builder.CreateLoad(VectorTy, BitCast); in tryPromoteAllocaToVector()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DLoopVectorize.cpp322 auto *VectorTy = VectorType::get(Ty, VF); in hasIrregularType() local
323 return VF * DL.getTypeAllocSize(Ty) != DL.getTypeStoreSize(VectorTy); in hasIrregularType()
1340 unsigned getInstructionCost(Instruction *I, unsigned VF, Type *&VectorTy);
5835 Type *VectorTy = ToVectorTy(ValTy, VF); in getConsecutiveMemOpCost() local
5845 Cost += TTI.getMaskedMemoryOpCost(I->getOpcode(), VectorTy, in getConsecutiveMemOpCost()
5848 Cost += TTI.getMemoryOpCost(I->getOpcode(), VectorTy, Alignment, AS, I); in getConsecutiveMemOpCost()
5852 Cost += TTI.getShuffleCost(TargetTransformInfo::SK_Reverse, VectorTy, 0); in getConsecutiveMemOpCost()
5859 Type *VectorTy = ToVectorTy(ValTy, VF); in getUniformMemOpCost() local
5865 TTI.getShuffleCost(TargetTransformInfo::SK_Broadcast, VectorTy); in getUniformMemOpCost()
5874 : TTI.getVectorInstrCost(Instruction::ExtractElement, VectorTy, in getUniformMemOpCost()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DTargetTransformInfoImpl.h927 if (VectorType *VectorTy = dyn_cast<VectorType>(DstTy)) in getInstructionLatency() local
928 DstTy = VectorTy->getElementType(); in getInstructionLatency()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DLowerMatrixIntrinsics.cpp759 VectorType *VectorTy = cast<VectorType>(InputVal->getType()); in LowerTranspose() local
766 VectorType::get(VectorTy->getElementType(), ArgShape.NumColumns)); in LowerTranspose()
DSROA.cpp1442 } else if (VectorType *VectorTy = dyn_cast<VectorType>(ElementTy)) { in getNaturalGEPWithType() local
1443 ElementTy = VectorTy->getElementType(); in getNaturalGEPWithType()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMISelLowering.h577 bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx,
DARMISelLowering.cpp16855 bool ARMTargetLowering::canCombineStoreAndExtract(Type *VectorTy, Value *Idx, in canCombineStoreAndExtract() argument
16865 if (VectorTy->isFPOrFPVectorTy()) in canCombineStoreAndExtract()
16873 assert(VectorTy->isVectorTy() && "VectorTy is not a vector type"); in canCombineStoreAndExtract()
16874 unsigned BitWidth = cast<VectorType>(VectorTy)->getBitWidth(); in canCombineStoreAndExtract()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm-c/
DCore.h1445 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DCore.cpp774 unsigned LLVMGetVectorSize(LLVMTypeRef VectorTy) { in LLVMGetVectorSize() argument
775 return unwrap<VectorType>(VectorTy)->getNumElements(); in LLVMGetVectorSize()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DTargetLowering.h642 virtual bool canCombineStoreAndExtract(Type *VectorTy, Value *Idx, in canCombineStoreAndExtract() argument