Home
last modified time | relevance | path

Searched refs:mFP32Ty (Results 1 – 7 of 7) sorted by relevance

/external/mesa3d/src/gallium/drivers/swr/rasterizer/jitter/
Dbuilder.cpp49 mFP32Ty = Type::getFloatTy(pJitMgr->mContext); in Builder()
59 …mV4FP32Ty = StructType::get(pJitMgr->mContext, std::vector<Type*>(4, mFP32Ty), false); // vector4 … in Builder()
66 mSimdFP32Ty = VectorType::get(mFP32Ty, mVWidth); in Builder()
Dfetch_jit.cpp117 pVtxOut = BITCAST(pVtxOut, PointerType::get(VectorType::get(mFP32Ty, mVWidth), 0)); in Create()
249 Constant* uwvec = UndefValue::get(VectorType::get(mFP32Ty, 4)); in JitLoadVertices()
339 … case 32: vptr = BITCAST(pointer, PointerType::get(VectorType::get(mFP32Ty, 4), 0)); break; in JitLoadVertices()
353 vec = UI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices()
354 …= FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 255.0)))); in JitLoadVertices()
357 vec = UI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices()
358 … FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 65535.0)))… in JitLoadVertices()
369 vec = SI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices()
370 …= FMUL(vec, ConstantVector::get(std::vector<Constant*>(4, ConstantFP::get(mFP32Ty, 1.0 / 128.0)))); in JitLoadVertices()
373 vec = SI_TO_FP(vec, VectorType::get(mFP32Ty, 4)); in JitLoadVertices()
[all …]
DJitManager.cpp132 mFP32Ty = Type::getFloatTy(mContext); // float type in JitManager()
136 …mV4FP32Ty = StructType::get(mContext, std::vector<Type*>(4, mFP32Ty), false); // vector4 float typ… in JitManager()
147 mSimtFP32Ty = VectorType::get(mFP32Ty, mVWidth); in JitManager()
Dbuilder.h58 Type* mFP32Ty; member
DJitManager.h166 llvm::Type* mFP32Ty; member
Dbuilder_misc.cpp231 return UndefValue::get(VectorType::get(mFP32Ty, mVWidth)); in VUNDEF_F()
385 mask = BITCAST(mask,VectorType::get(mFP32Ty,mVWidth)); in MASKLOADD()
569 loadAddress = BITCAST(loadAddress,PointerType::get(mFP32Ty,0)); in GATHERPS()
880 FunctionType* pFuncTy = FunctionType::get(mFP32Ty, mInt16Ty); in CVTPH2PS()
913 FunctionType* pFuncTy = FunctionType::get(mInt16Ty, mFP32Ty); in CVTPS2PH()
/external/mesa3d/src/gallium/drivers/swr/
Dswr_shader.cpp484 UI_TO_FP(LOAD(pPS, {0, SWR_PS_CONTEXT_frontFace}), mFP32Ty); in CompileFS()