Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DStackSafetyAnalysis.cpp100 template <typename CalleeTy> struct CallInfo {
102 const CalleeTy *Callee = nullptr;
106 CallInfo(const CalleeTy *Callee, size_t ParamNo) in CallInfo()
117 template <typename CalleeTy> struct UseInfo {
128 using CallsTy = std::map<CallInfo<CalleeTy>, ConstantRange,
129 typename CallInfo<CalleeTy>::Less>;
142 template <typename CalleeTy>
143 raw_ostream &operator<<(raw_ostream &OS, const UseInfo<CalleeTy> &U) { in operator <<()
183 template <typename CalleeTy> struct FunctionInfo {
184 std::map<const AllocaInst *, UseInfo<CalleeTy>> Alloca
[all...]
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGDeclCXX.cpp1130 llvm::FunctionType *CalleeTy; in GenerateCXXGlobalCleanUpFunc() local
1133 std::tie(CalleeTy, Callee, Arg) = DtorsOrStermFinalizers[e - i - 1]; in GenerateCXXGlobalCleanUpFunc()
1140 CI = Builder.CreateCall(CalleeTy, Callee); in GenerateCXXGlobalCleanUpFunc()
1142 CI = Builder.CreateCall(CalleeTy, Callee, Arg); in GenerateCXXGlobalCleanUpFunc()
H A DCGExpr.cpp6011 llvm::Type *CalleeTy = getTypes().GetFunctionType(FnInfo); in EmitCall() local
6013 CalleeTy = CalleeTy->getPointerTo(AS); in EmitCall()
6016 CalleePtr = Builder.CreateBitCast(CalleePtr, CalleeTy, "callee.knr.cast"); in EmitCall()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp1224 auto *CalleeTy = in lowerTimestamp() local
1227 INSTR_PROF_QUOTE(INSTR_PROF_PROFILE_SET_TIMESTAMP), CalleeTy); in lowerTimestamp()
/freebsd/contrib/llvm-project/llvm/lib/IR/
H A DVerifier.cpp3832 FunctionType *CalleeTy = CI.getFunctionType(); in verifyMustTailCall() local
3833 Check(CallerTy->isVarArg() == CalleeTy->isVarArg(), in verifyMustTailCall()
3835 Check(isTypeCongruent(CallerTy->getReturnType(), CalleeTy->getReturnType()), in verifyMustTailCall()
3878 for (unsigned I = 0, E = CalleeTy->getNumParams(); I != E; ++I) { in verifyMustTailCall()
3893 Check(CallerTy->getNumParams() == CalleeTy->getNumParams(), in verifyMustTailCall()
3897 isTypeCongruent(CallerTy->getParamType(I), CalleeTy->getParamType(I)), in verifyMustTailCall()
/freebsd/contrib/llvm-project/llvm/lib/Bitcode/Reader/
H A DBitcodeReader.cpp5757 PointerType *CalleeTy = dyn_cast<PointerType>(Callee->getType()); in parseFunctionBody() local
5758 if (!CalleeTy) in parseFunctionBody()