Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
DJitManager.cpp384 VectorType* pVecTy = cast<VectorType>(pTy); in GetDebugVectorType() local
386 uint32_t size = DL.getTypeAllocSizeInBits(pVecTy); in GetDebugVectorType()
387 uint32_t alignment = DL.getABITypeAlignment(pVecTy); in GetDebugVectorType()
391 Elems.push_back(builder.getOrCreateSubrange(0, pVecTy->getNumElements())); in GetDebugVectorType()
393 Elems.push_back(builder.getOrCreateSubrange(0, pVecTy->getVectorNumElements())); in GetDebugVectorType()
399 GetDebugType(pVecTy->getElementType()), in GetDebugVectorType()
401 GetDebugType(pVecTy->getVectorElementType()), in GetDebugVectorType()
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/
Dlower_x86.cpp244 Type* pVecTy = pCallInst->getType(); in GetRequestedWidthAndType() local
252 pVecTy = pOp->getType(); in GetRequestedWidthAndType()
255 if (!pVecTy->isVectorTy()) in GetRequestedWidthAndType()
261 pVecTy = op.get()->getType(); in GetRequestedWidthAndType()
266 SWR_ASSERT(pVecTy->isVectorTy(), "Couldn't determine vector size"); in GetRequestedWidthAndType()
268 uint32_t width = getBitWidth(cast<VectorType>(pVecTy)); in GetRequestedWidthAndType()
282 *pTy = pVecTy->getScalarType(); in GetRequestedWidthAndType()