Searched refs:mVWidth (Results 1 – 8 of 8) sorted by relevance
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder.cpp | 44 SWR_ASSERT(pJitMgr->mVWidth == 8); in Builder() 46 mVWidth = pJitMgr->mVWidth; in Builder() 47 mVWidth16 = pJitMgr->mVWidth * 2; in Builder() 69 mSimdInt1Ty = VectorType::get(mInt1Ty, mVWidth); in Builder() 70 mSimdInt16Ty = VectorType::get(mInt16Ty, mVWidth); in Builder() 71 mSimdInt32Ty = VectorType::get(mInt32Ty, mVWidth); in Builder() 72 mSimdInt64Ty = VectorType::get(mInt64Ty, mVWidth); in Builder() 73 mSimdFP16Ty = VectorType::get(mFP16Ty, mVWidth); in Builder() 74 mSimdFP32Ty = VectorType::get(mFP32Ty, mVWidth); in Builder()
|
D | builder_misc.cpp | 197 return ConstantVector::getSplat(mVWidth, cast<ConstantInt>(C(i))); in VIMMED1() 207 return ConstantVector::getSplat(mVWidth, cast<ConstantInt>(C(i))); in VIMMED1() 217 return ConstantVector::getSplat(mVWidth, cast<ConstantFP>(C(i))); in VIMMED1() 227 return ConstantVector::getSplat(mVWidth, cast<ConstantInt>(C(i))); in VIMMED1() 237 return UndefValue::get(VectorType::get(mInt32PtrTy,mVWidth)); in VUNDEF_IPTR() 242 return UndefValue::get(VectorType::get(t, mVWidth)); in VUNDEF() 247 return UndefValue::get(VectorType::get(mInt32Ty, mVWidth)); in VUNDEF_I() 257 return UndefValue::get(VectorType::get(mFP32Ty, mVWidth)); in VUNDEF_F() 278 return VECTOR_SPLAT(mVWidth, src, name); in VBROADCAST() 439 mask = BITCAST(mask,VectorType::get(mInt32Ty,mVWidth)); in MASKLOADD() [all …]
|
D | fetch_jit.cpp | 168 pVtxOut = BITCAST(pVtxOut, PointerType::get(VectorType::get(mFP32Ty, mVWidth), 0)); in Create() 171 pVtxOut = BITCAST(pVtxOut, PointerType::get(VectorType::get(mFP32Ty, mVWidth), 0)); in Create() 201 …OAD(BITCAST(indices, PointerType::get(VectorType::get(mInt8Ty, mpJitMgr->mVWidth), 0)), {(uint32_t… in Create() 204 …AD(BITCAST(indices2, PointerType::get(VectorType::get(mInt8Ty, mpJitMgr->mVWidth), 0)), { (uint32_… in Create() 225 …AD(BITCAST(indices, PointerType::get(VectorType::get(mInt16Ty, mpJitMgr->mVWidth), 0)), {(uint32_t… in Create() 228 …D(BITCAST(indices2, PointerType::get(VectorType::get(mInt16Ty, mpJitMgr->mVWidth), 0)), { (uint32_… in Create() 379 std::vector<Constant*> pMask(mVWidth); in JitLoadVertices() 380 for(uint32_t i = 0; i < mVWidth; ++i) in JitLoadVertices() 469 for(uint32_t lane = 0; lane < mVWidth; ++lane) in JitLoadVertices() 609 std::vector<Constant*> v01Mask(mVWidth); in JitLoadVertices() [all …]
|
D | builder.h | 47 uint32_t mVWidth; // vector width simd8 member
|
D | JitManager.cpp | 63 …: mContext(), mBuilder(mContext), mIsModuleFinalized(true), mJitNumber(0), mVWidth(simdWidth), mAr… in JitManager() 143 mSimtFP32Ty = VectorType::get(mFP32Ty, mVWidth); in JitManager() 144 mSimtInt32Ty = VectorType::get(mInt32Ty, mVWidth); in JitManager()
|
D | JitManager.h | 143 uint32_t mVWidth; member
|
D | builder_misc.h | 174 return S_EXT(vIndexMask,VectorType::get(mInt32Ty,JM()->mVWidth)); in VPCMPGTD()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_shader.cpp | 411 Value *vMask1 = TRUNC(vMask, VectorType::get(mInt1Ty, mVWidth)); in swr_gs_llvm_emit_vertex() 436 for (uint32_t lane = 0; lane < mVWidth; ++lane) { in swr_gs_llvm_emit_vertex() 506 for (uint32_t lane = 0; lane < mVWidth; ++lane) { in swr_gs_llvm_end_primitive() 533 for (uint32_t lane = 0; lane < mVWidth; ++lane) in swr_gs_llvm_epilogue() 584 attrBuilder.addStackAlignmentAttr(JM()->mVWidth * sizeof(float)); in CompileGS() 655 for (uint32_t lane = 0; lane < mVWidth; ++lane) in CompileGS() 752 attrBuilder.addStackAlignmentAttr(JM()->mVWidth * sizeof(float)); in CompileVS() 820 uint32_t vectorWidth = mVWidth; in CompileVS() 1035 attrBuilder.addStackAlignmentAttr(JM()->mVWidth * sizeof(float)); in CompileFS() 1134 ff = VECTOR_SPLAT(JM()->mVWidth, ff, "vFrontFace"); in CompileFS()
|