Home
last modified time | relevance | path

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

/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.h107 CGCallee(const CGCalleeInfo &abstractInfo, llvm::Value *functionPtr) in CGCallee() argument
109 SpecialKind(reinterpret_cast<uintptr_t>(functionPtr))) { in CGCallee()
111 assert(functionPtr && "configuring callee without function pointer"); in CGCallee()
112 assert(functionPtr->getType()->isPointerTy()); in CGCallee()
129 static CGCallee forDirect(llvm::Constant *functionPtr,
131 return CGCallee(abstractInfo, functionPtr);
134 static CGCallee forDirect(llvm::FunctionCallee functionPtr,
136 return CGCallee(abstractInfo, functionPtr.getCallee());
182 void setFunctionPointer(llvm::Value *functionPtr) { in setFunctionPointer() argument
185 SpecialKind(reinterpret_cast<uintptr_t>(functionPtr)); in setFunctionPointer()