Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am trying to create a Call Instruction using the llvm IRBuilder as below

llvm::Value* FunctionCall::genLLVM(GenLLVM* g){
    std::vector<llvm::Value*> paramArrayRef;
    std::list<Value*> paramList = getParamList();
    std::list<Value*>::iterator paramIter = paramList.begin();
    unsigned int i = 0;
    for(; paramIter != paramList.end(); ++paramIter, ++i)
        paramArrayRef.push_back((*paramIter)->genLLVM(g));

    llvm::FunctionType *FT = &getFunctionType(getFunction());
    llvm::Function *F = static_cast<llvm::Function*>(g->getModule().getOrInsertFunction(getFunction().getName(), FT));

    return g->getBuilder().CreateCall(F, paramArrayRef,"");
}

./genllvm.cpp:67: error: no matching function for call to ‘llvm::IRBuilder<true, llvm::ConstantFolder, llvm::IRBuilderDefaultInserter<true> >::CreateCall(llvm::Function*&, std::vector<llvm::Value*, std::allocator<llvm::Value*> >&, const char [1])’
/usr/include/llvm/Support/IRBuilder.h:891: note: candidates are: llvm::CallInst* llvm::IRBuilder<preserveNames, T, Inserter>::CreateCall(llvm::Value*, const llvm::Twine&) [with bool preserveNames = true, T = llvm::ConstantFolder, Inserter = llvm::IRBuilderDefaultInserter<true>]
/usr/include/llvm/Support/IRBuilder.h:894: note:                 llvm::CallInst* llvm::IRBuilder<preserveNames, T, Inserter>::CreateCall(llvm::Value*, llvm::Value*, const llvm::Twine&) [with bool preserveNames = true, T = llvm::ConstantFolder, Inserter = llvm::IRBuilderDefaultInserter<true>]

I went throught the IRBuilder.h file but couldn't find any function that can take variable arguments. Is there a function that creates a function call with variable number of arguments. Btw, I am using llvm 2.8

share|improve this question

1 Answer

I do not remember the situation in 2.8 (it's pretty ancient by now), but currently there are a bunch of methods to create calls with different number of arguments, e.g. CreateCall{2,3,4,5} and generic CreateCall which accepts arbitrary number of args. See e.g. http://llvm.org/doxygen/classllvm_1_1IRBuilder.html#a7e31b0c02df2aeed261b103b790cc01e

If there is no such API functions in 2.8, then you either need to update to more recent version of LLVM, or insert the call by hands, that is via CallInst::Create() and after this - IRBuilder::Insert() calls.

share|improve this answer
Thanks @Anton Korobeynikov: ! I actually found a function in IRBuilder.h to create such a call - template<typename InputIterator> CallInst *CreateCall(Value *Callee, InputIterator ArgBegin, InputIterator ArgEnd, const Twine &Name = "") { return Insert(CallInst::Create(Callee, ArgBegin, ArgEnd), Name); } Hence I just inserted this statement to create such calls - return g->getBuilder().CreateCall(F, paramArrayRef.begin(),paramArrayRef.end(), ""); – Chethan Ravindranath Dec 5 '11 at 11:19

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.