• Home
  • Raw
  • Download

Lines Matching refs:pFunction

1552    auto pFunction = Function::Create(vsFuncType,  in CompileGS()  local
1559 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileGS()
1561 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileGS()
1564 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileGS()
1568 auto argitr = pFunction->arg_begin(); in CompileGS()
1669 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileGS()
1673 (PFN_GS_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileGS()
1779 auto pFunction = Function::Create(tesFuncType, in CompileTES() local
1787 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileTES()
1789 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileTES()
1792 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileTES()
1796 auto argitr = pFunction->arg_begin(); in CompileTES()
2029 JM()->DumpToFile(pFunction, "src"); in CompileTES()
2030 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileTES()
2033 JM()->DumpToFile(pFunction, "optimized"); in CompileTES()
2036 (PFN_TES_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileTES()
2041 JM()->DumpAsm(pFunction, "asm"); in CompileTES()
2080 auto pFunction = Function::Create(tcsFuncType, in CompileTCS() local
2088 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileTCS()
2090 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileTCS()
2093 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileTCS()
2097 auto argitr = pFunction->arg_begin(); in CompileTCS()
2237 JM()->DumpToFile(pFunction, "src"); in CompileTCS()
2238 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileTCS()
2240 JM()->DumpToFile(pFunction, "optimized"); in CompileTCS()
2243 (PFN_TCS_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileTCS()
2247 JM()->DumpAsm(pFunction, "asm"); in CompileTCS()
2336 auto pFunction = Function::Create(vsFuncType, in CompileVS() local
2343 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileVS()
2345 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileVS()
2348 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileVS()
2352 auto argitr = pFunction->arg_begin(); in CompileVS()
2537 JM()->DumpToFile(pFunction, "vs_function1"); in CompileVS()
2538 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileVS()
2540 JM()->DumpToFile(pFunction, "vs_function2"); in CompileVS()
2545 (PFN_VERTEX_FUNC)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileVS()
2547 JM()->DumpAsm(pFunction, "vs_function_asm"); in CompileVS()
2641 auto pFunction = Function::Create(funcType, in CompileFS() local
2648 pFunction->addAttributes(AttributeSet::FunctionIndex, attrSet); in CompileFS()
2650 pFunction->addAttributes(AttributeList::FunctionIndex, attrBuilder); in CompileFS()
2653 BasicBlock *block = BasicBlock::Create(JM()->mContext, "entry", pFunction); in CompileFS()
2657 auto args = pFunction->arg_begin(); in CompileFS()
3008 gallivm_verify_function(gallivm, wrap(pFunction)); in CompileFS()
3015 lowerPass.run(*pFunction); in CompileFS()
3018 (PFN_PIXEL_KERNEL)gallivm_jit_function(gallivm, wrap(pFunction)); in CompileFS()