Searched refs:mFP32Ty (Results 1 – 7 of 7) sorted by relevance
/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/ |
D | builder.cpp | 55 mFP32Ty = Type::getFloatTy(pJitMgr->mContext); in Builder() 56 mFP32PtrTy = PointerType::get(mFP32Ty, 0); in Builder() 74 mSimdFP32Ty = VectorType::get(mFP32Ty, mVWidth); in Builder() 85 mSimd16FP32Ty = VectorType::get(mFP32Ty, mVWidth16); in Builder()
|
D | fetch_jit.cpp | 166 pVtxOut = BITCAST(pVtxOut, PointerType::get(VectorType::get(mFP32Ty, mVWidth16), 0)); in Create() 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() 385 Constant* uwvec = UndefValue::get(VectorType::get(mFP32Ty, 4)); in JitLoadVertices() 506 … case 32: vptr = BITCAST(pointer, PointerType::get(VectorType::get(mFP32Ty, 4), 0)); break; in JitLoadVertices() 520 vec = UI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices() 521 …= FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 255.0)))); in JitLoadVertices() 524 vec = UI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices() 525 … FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 65535.0)))… in JitLoadVertices() 536 vec = SI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices() [all …]
|
D | builder.h | 60 Type* mFP32Ty; member
|
D | builder_misc.cpp | 257 return UndefValue::get(VectorType::get(mFP32Ty, mVWidth)); in VUNDEF_F() 262 return UndefValue::get(VectorType::get(mFP32Ty, mVWidth16)); in VUNDEF_F_16() 441 mask = BITCAST(mask,VectorType::get(mFP32Ty,mVWidth)); in MASKLOADD() 621 loadAddress = BITCAST(loadAddress,PointerType::get(mFP32Ty,0)); in GATHERPS() 1001 FunctionType* pFuncTy = FunctionType::get(mFP32Ty, mInt16Ty); in CVTPH2PS() 1035 FunctionType* pFuncTy = FunctionType::get(mInt16Ty, mFP32Ty); in CVTPS2PH()
|
D | JitManager.h | 150 llvm::Type* mFP32Ty; member
|
D | JitManager.cpp | 118 mFP32Ty = Type::getFloatTy(mContext); // float type in JitManager() 143 mSimtFP32Ty = VectorType::get(mFP32Ty, mVWidth); in JitManager()
|
/external/mesa3d/src/gallium/drivers/swr/ |
D | swr_shader.cpp | 414 Value *pTmpPtr = ALLOCA(mFP32Ty, C(4)); // used for dummy write for lane masking in swr_gs_llvm_emit_vertex() 1132 UI_TO_FP(LOAD(pPS, {0, SWR_PS_CONTEXT_frontFace}), mFP32Ty); in CompileFS()
|