Lines Matching refs:functionPtr
112 CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr) in CGCallee() argument
114 SpecialKind(reinterpret_cast<uintptr_t>(functionPtr))) { in CGCallee()
116 assert(functionPtr && "configuring callee without function pointer"); in CGCallee()
117 assert(functionPtr->getType()->isPointerTy()); in CGCallee()
118 assert(functionPtr->getType()->getPointerElementType()->isFunctionTy()); in CGCallee()
135 static CGCallee forDirect(llvm::Constant *functionPtr,
137 return CGCallee(abstractInfo, functionPtr);
140 static CGCallee forDirect(llvm::FunctionCallee functionPtr,
142 return CGCallee(abstractInfo, functionPtr.getCallee());
188 void setFunctionPointer(llvm::Value *functionPtr) { in setFunctionPointer() argument
191 SpecialKind(reinterpret_cast<uintptr_t>(functionPtr)); in setFunctionPointer()