Home
last modified time | relevance | path

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

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
HDStatepoint.h72 template <typename FunTy, typename InstructionTy, typename ValueTy,
142 FunTy *getCalledFunction() const { in getCalledFunction()
147 FunTy *getCaller() const { return getCall()->getCaller(); } in getCaller()
404 template <typename FunTy, typename InstructionTy, typename ValueTy,
407 StatepointBase<FunTy, InstructionTy, ValueTy, CallBaseTy>::getRelocates() in getRelocates()
HDCallSite.h51 template <typename FunTy = const Function, typename BBTy = const BasicBlock,
111 FunTy *getCalledFunction() const { in getCalledFunction()
112 return dyn_cast<FunTy>(getCalledValue()); in getCalledFunction()
120 if (isa<FunTy>(V) || isa<Constant>(V)) in isIndirectCall()
275 FunTy *getCaller() const { return (*this)->getParent()->getParent(); } in getCaller()
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
HDSema.cpp2049 const FunctionType *FunTy = nullptr; in tryExprAsCall() local
2052 FunTy = PointeeTy->getAs<FunctionType>(); in tryExprAsCall()
2053 if (!FunTy) in tryExprAsCall()
2054 FunTy = ExprTy->getAs<FunctionType>(); in tryExprAsCall()
2057 dyn_cast_or_null<FunctionProtoType>(FunTy)) { in tryExprAsCall()
2059 ZeroArgCallReturnTy = FunTy->getReturnType(); in tryExprAsCall()