Home
last modified time | relevance | path

Searched refs:pVecTy (Results 1 – 2 of 2) sorted by relevance

/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp385 FixedVectorType* pVecTy = cast<FixedVectorType>(pTy); in GetDebugVectorType() local
387 VectorType* pVecTy = cast<VectorType>(pTy); in GetDebugVectorType() local
389 auto pVecTy = pTy; in GetDebugVectorType() local
392 uint32_t size = DL.getTypeAllocSizeInBits(pVecTy); in GetDebugVectorType()
393 uint32_t alignment = DL.getABITypeAlignment(pVecTy); in GetDebugVectorType()
397 Elems.push_back(builder.getOrCreateSubrange(0, pVecTy->getNumElements())); in GetDebugVectorType()
399 Elems.push_back(builder.getOrCreateSubrange(0, pVecTy->getVectorNumElements())); in GetDebugVectorType()
405 GetDebugType(pVecTy->getElementType()), in GetDebugVectorType()
407 GetDebugType(pVecTy->getVectorElementType()), in GetDebugVectorType()
/third_party/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/
Dlower_x86.cpp246 Type* pVecTy = pCallInst->getType(); in GetRequestedWidthAndType() local
254 pVecTy = pOp->getType(); in GetRequestedWidthAndType()
257 if (!pVecTy->isVectorTy()) in GetRequestedWidthAndType()
263 pVecTy = op.get()->getType(); in GetRequestedWidthAndType()
268 SWR_ASSERT(pVecTy->isVectorTy(), "Couldn't determine vector size"); in GetRequestedWidthAndType()
270 uint32_t width = getBitWidth(cast<VectorType>(pVecTy)); in GetRequestedWidthAndType()
284 *pTy = pVecTy->getScalarType(); in GetRequestedWidthAndType()