Displaying 2 results from an estimated 2 matches for "kernelgen_launch_".
2011 Sep 22
2
[LLVMdev] How to const char* Value for function argument
Hi,
I'm trying to replace function call with call to
wrapper(function_name, num_args, ...), where varargs hold args of
original call.
Function* launch = Function::Create(
TypeBuilder<int(const char*, int, ...), false>::get(context),
GlobalValue::ExternalLinkage, "kernelgen_launch_", m2);
{
CallInst* call = dyn_cast<CallInst>(cast<Value>(I));
if (!call) continue;
Function* callee = call->getCalledFunction();
if (!callee && !callee->isDeclaration()) continue;
if (callee->getName() != func2.getName()) continue;...
2011 Sep 22
0
[LLVMdev] How to const char* Value for function argument
...o replace function call with call to
wrapper(function_name, num_args, ...), where varargs hold args of
original call.
Function* launch = Function::Create(
TypeBuilder<int(const char*, int, ...), false>::get(context),
GlobalValue::ExternalLinkage, "kernelgen_launch_", m2);
{
CallInst* call = dyn_cast<CallInst>(cast<Value>(I));
if (!call) continue;
Function* callee = call->getCalledFunction(...