Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h112 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
[all …]