Searched refs:getType (Results 1 - 25 of 46) sorted by relevance

12

/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/
H A Dgen_builder.hpp47 argTypes.push_back(${arg}->getType());
50 #define VEC_GET_NUM_ELEMS cast<FixedVectorType>(a->getType())->getNumElements()
52 #define VEC_GET_NUM_ELEMS cast<VectorType>(a->getType())->getNumElements()
54 #define VEC_GET_NUM_ELEMS a->getType()->getVectorNumElements()
70 args.push_back(${arg}->getType());
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/
H A Dlower_x86.cpp246 Type* pVecTy = pCallInst->getType();
254 pVecTy = pOp->getType();
261 if (op.get()->getType()->isVectorTy())
263 pVecTy = op.get()->getType();
326 uint32_t numElem = cast<FixedVectorType>(vi1Mask->getType())->getNumElements();
328 uint32_t numElem = cast<VectorType>(vi1Mask->getType())->getNumElements();
330 uint32_t numElem = vi1Mask->getType()->getVectorNumElements();
372 args.push_back(GetZeroVec(W256, pCallInst->getType()->getScalarType()));
515 v32Result = UndefValue::get(v32A->getType());
517 uint32_t numElem = cast<FixedVectorType>(v32A->getType())
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/codegen/templates/
H A Dgen_builder.hpp47 argTypes.push_back(${arg}->getType());
63 args.push_back(${arg}->getType());
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/swr/rasterizer/jitter/
H A Dbuilder_gfx_mem.cpp56 SWR_ASSERT(!(ptr->getType() == mInt64Ty && usage == MEM_CLIENT::MEM_CLIENT_INTERNAL),
76 if (pBase->getType() == mInt64Ty)
102 if (pBase->getType() == mInt64Ty)
116 if (pDst->getType() == mInt64Ty)
131 bool xlate = (Ptr->getType() == mInt64Ty);
155 bool xlate = (Ptr->getType() == mInt64Ty);
172 bool xlate = (Ptr->getType() == mInt64Ty);
190 bool xlate = (Ptr->getType() == mInt64Ty);
207 SWR_ASSERT(!(Ptr->getType() == mInt64Ty && Ty == nullptr),
211 if (Ptr->getType()
[all...]
H A Dbuilder_misc.cpp264 if (src->getType()->isVectorTy())
275 if (src->getType()->isVectorTy())
390 Type* pType = pArg->getType();
504 constString->getType(), true, GlobalValue::InternalLinkage, constString, "printStr");
543 return VSHUFFLE(x, UndefValue::get(x->getType()), {0, 1, 2, 3, 4, 5, 6, 7});
547 return VSHUFFLE(x, UndefValue::get(x->getType()), {8, 9, 10, 11, 12, 13, 14, 15});
581 FixedVectorType* pVectorType = cast<FixedVectorType>(mask->getType());
583 VectorType* pVectorType = cast<VectorType>(mask->getType());
588 SWR_ASSERT(mask->getType()->getVectorElementType() == mInt1Ty);
589 uint32_t numLanes = mask->getType()
[all...]
H A Dbuilder_mem.cpp40 ptr->getType() != mInt64Ty,
656 SWR_ASSERT(cast<VectorType>(vSrc->getType())->getElementType()->isFloatTy());
658 SWR_ASSERT(vSrc->getType()->getVectorElementType()->isFloatTy());
679 Type* pSrcTy = vSrc->getType()->getVectorElementType();
690 Value* pSrcArrayPtr = BITCAST(pScatterStackSrc, PointerType::get(vSrc->getType(), 0));
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/jitter/functionpasses/
H A Dlower_x86.cpp223 Type* pVecTy = pCallInst->getType();
229 pVecTy = pCallInst->getOperand(0)->getType();
236 if (op.get()->getType()->isVectorTy())
238 pVecTy = op.get()->getType();
300 uint32_t numElem = vi1Mask->getType()->getVectorNumElements();
339 args.push_back(GetZeroVec(W256, pCallInst->getType()->getScalarType()));
466 v32Result = UndefValue::get(v32A->getType());
467 for (uint32_t l = 0; l < v32A->getType()->getVectorNumElements(); ++l)
488 uint32_t numElem = vSrc->getType()->getVectorNumElements();
490 auto srcTy = vSrc->getType()
[all...]
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_graph.h59 inline Type getType() const { return type; } function in class:nv50_ir::Graph::Edge
96 inline Edge::Type getType() { return e ? e->getType() : Edge::UNKNOWN; } function in class:nv50_ir::Graph::EdgeIterator
221 if (ei.getType() != Edge::BACK)
H A Dnv50_ir_graph.cpp187 if (ei.getType() == Edge::BACK || ei.getType() == Edge::DUMMY)
301 switch (ei.getType()) {
H A Dnv50_ir_bb.cpp108 bb->cfg.attach(&pol.get(obb)->cfg, it.getType());
315 bb->cfg.attach(e->getTarget(), e->getType());
380 eR = out[1]->outgoing().getType();
526 switch (ei.getType()) {
H A Dnv50_ir_lowering_nv50.cpp353 (prog->getType() == Program::TYPE_GEOMETRY ||
354 prog->getType() == Program::TYPE_VERTEX))
379 if (prog->getType() == Program::TYPE_GEOMETRY) {
669 if (prog->getType() == Program::TYPE_COMPUTE) {
688 if (prog->getType() > Program::TYPE_VERTEX)
690 if (prog->getType() > Program::TYPE_GEOMETRY)
1131 if (prog->getType() == Program::TYPE_COMPUTE) {
1166 assert(prog->getType() == Program::TYPE_FRAGMENT);
1269 if (prog->getType() == Program::TYPE_FRAGMENT) {
1300 assert(prog->getType()
[all...]
H A Dnv50_ir_target_nv50.cpp332 if (ld->bb->getProgram()->getType() == Program::TYPE_GEOMETRY)
336 if (ld->bb->getProgram()->getType() != Program::TYPE_GEOMETRY)
379 Program::Type pt = ld->bb->getProgram()->getType();
H A Dnv50_ir_lowering_nvc0.cpp327 if (i->sType == TYPE_F32 && prog->getType() != Program::TYPE_COMPUTE)
721 if (ei.getType() != Graph::Edge::BACK)
723 if (ei.getType() != Graph::Edge::BACK)
734 assert(ei.end() || ei.getType() != Graph::Edge::BACK);
839 prog->getType() != Program::TYPE_COMPUTE) {
883 if (prog->getType() == Program::TYPE_GEOMETRY) {
2581 if (prog->getType() == Program::TYPE_COMPUTE) {
2585 if (prog->getType() == Program::TYPE_GEOMETRY &&
2594 assert(prog->getType() != Program::TYPE_FRAGMENT); // INTERP
2601 prog->getType()
[all...]
/xsrc/external/mit/MesaLib/dist/src/gallium/drivers/nouveau/codegen/
H A Dnv50_ir_graph.h58 inline Type getType() const { return type; } function in class:nv50_ir::Graph::Edge
95 inline Edge::Type getType() { return e ? e->getType() : Edge::UNKNOWN; } function in class:nv50_ir::Graph::EdgeIterator
220 if (ei.getType() != Edge::BACK)
H A Dnv50_ir_bb.cpp108 bb->cfg.attach(&pol.get(obb)->cfg, it.getType());
315 bb->cfg.attach(e->getTarget(), e->getType());
380 eR = out[1]->outgoing().getType();
526 switch (ei.getType()) {
H A Dnv50_ir_target_nv50.cpp339 if (ld->bb->getProgram()->getType() == Program::TYPE_GEOMETRY)
343 if (ld->bb->getProgram()->getType() != Program::TYPE_GEOMETRY)
389 Program::Type pt = ld->bb->getProgram()->getType();
H A Dnv50_ir_graph.cpp187 if (ei.getType() == Edge::BACK)
301 switch (ei.getType()) {
/xsrc/external/mit/MesaLib.old/dist/src/gallium/drivers/swr/rasterizer/jitter/
H A Dbuilder_gfx_mem.cpp55 SWR_ASSERT(!(ptr->getType() == mInt64Ty && usage == JIT_MEM_CLIENT::MEM_CLIENT_INTERNAL),
76 if (pBase->getType() == mInt64Ty)
102 if (pBase->getType() == mInt64Ty)
116 if (pDst->getType() == mInt64Ty)
157 SWR_ASSERT(!(Ptr->getType() == mInt64Ty && Ty == nullptr),
162 if (Ptr->getType() == mInt64Ty)
205 if (BasePtr->getType() == mInt64Ty)
H A Dbuilder_misc.cpp233 if (src->getType()->isVectorTy())
244 if (src->getType()->isVectorTy())
339 Type* pType = pArg->getType();
367 for (; i < (pArg->getType()->getVectorNumElements()) - 1; i++)
380 for (; i < (pArg->getType()->getVectorNumElements()) - 1; i++)
393 for (; i < (pArg->getType()->getVectorNumElements()) - 1; i++)
433 constString->getType(), true, GlobalValue::InternalLinkage, constString, "printStr");
472 return VSHUFFLE(x, UndefValue::get(x->getType()), {0, 1, 2, 3, 4, 5, 6, 7});
476 return VSHUFFLE(x, UndefValue::get(x->getType()), {8, 9, 10, 11, 12, 13, 14, 15});
508 SWR_ASSERT(mask->getType()
[all...]
H A Dbuilder_mem.cpp40 ptr->getType() != mInt64Ty,
662 Type* pSrcTy = vSrc->getType()->getVectorElementType();
673 Value* pSrcArrayPtr = BITCAST(pScatterStackSrc, PointerType::get(vSrc->getType(), 0));
/xsrc/external/mit/glu/dist/src/libnurbs/internals/
H A Dmaplist.cc114 if( m->getType() == type ) break;
H A Dmapdesc.h68 long getType( void );
168 Mapdesc::getType( void ) function in class:Mapdesc
H A Dquilt.cc129 backend.surfpts( mapdesc->getType(), ps,
142 backend.curvpts( mapdesc->getType(), ps,
/xsrc/external/mit/MesaLib/dist/src/gallium/frontends/clover/llvm/
H A Dmetadata.hpp104 ->getType();
/xsrc/external/mit/MesaLib.old/dist/src/gallium/state_trackers/clover/llvm/codegen/
H A Dcommon.cpp80 const auto arg_type = arg.getType();

Completed in 30 milliseconds

12