• Home
  • Raw
  • Download

Lines Matching refs:pFunction

592    auto pFunction = Function::Create(vsFuncType,  in CompileGS()  local
599 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileGS()
601 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileGS()
604 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileGS()
608 auto argitr = pFunction->arg_begin(); in CompileGS()
698 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileGS()
702 (PFN_GS_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileGS()
760 auto pFunction = Function::Create(vsFuncType, in CompileVS() local
767 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileVS()
769 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileVS()
772 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileVS()
776 auto argitr = pFunction->arg_begin(); in CompileVS()
944 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileVS()
950 (PFN_VERTEX_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileVS()
1042 auto pFunction = Function::Create(funcType, in CompileFS() local
1049 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileFS()
1051 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileFS()
1054 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileFS()
1058 auto args = pFunction->arg_begin(); in CompileFS()
1388 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileFS()
1393 (PFN_PIXEL_KERNEL)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileFS()