Lines Matching defs:functionPtr
112 CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr,
116 SpecialKind(reinterpret_cast<uintptr_t>(functionPtr))) {
119 assert(functionPtr && "configuring callee without function pointer");
120 assert(functionPtr->getType()->isPointerTy());
137 static CGCallee forDirect(llvm::Constant *functionPtr,
139 return CGCallee(abstractInfo, functionPtr);
142 static CGCallee forDirect(llvm::FunctionCallee functionPtr,
144 return CGCallee(abstractInfo, functionPtr.getCallee());
194 void setFunctionPointer(llvm::Value *functionPtr) {
197 SpecialKind(reinterpret_cast<uintptr_t>(functionPtr));