Searched refs:functionPtr (Results 1 - 1 of 1) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h112 CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr) argument
113 : KindOrFunctionPointer(SpecialKind(uintptr_t(functionPtr))) {
115 assert(functionPtr && "configuring callee without function pointer");
116 assert(functionPtr->getType()->isPointerTy());
117 assert(functionPtr->getType()->getPointerElementType()->isFunctionTy());
134 static CGCallee forDirect(llvm::Constant *functionPtr, argument
136 return CGCallee(abstractInfo, functionPtr);
139 static CGCallee forDirect(llvm::FunctionCallee functionPtr, argument
141 return CGCallee(abstractInfo, functionPtr.getCallee());
187 void setFunctionPointer(llvm::Value *functionPtr) { argument
[all...]

Completed in 100 milliseconds