Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DNonNullParamChecker.cpp50 template <class CallType>
51 void setBitsAccordingToFunctionAttributes(const CallType &Call, in setBitsAccordingToFunctionAttributes()
74 template <class CallType>
75 void setBitsAccordingToParameterAttributes(const CallType &Call, in setBitsAccordingToParameterAttributes()
87 template <class CallType>
88 llvm::SmallBitVector getNonNullAttrsImpl(const CallType &Call, in getNonNullAttrsImpl()
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/
H A DSystemZAsmPrinter.h42 enum class CallType { enum
135 void emitCallInformation(CallType CT);
H A DSystemZAsmPrinter.cpp165 void SystemZAsmPrinter::emitCallInformation(CallType CT) { in emitCallInformation()
328 emitCallInformation(CallType::BRASL7); in emitInstruction()
335 emitCallInformation(CallType::BASR76); in emitInstruction()
342 emitCallInformation(CallType::BASR33); in emitInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DScalarizer.cpp687 Type *CallType = CI.getType(); in splitCall() local
688 bool AreAllVectorsOfMatchingSize = isStructOfMatchingFixedVectors(CallType); in splitCall()
691 VS = getVectorSplit(CallType->getContainedType(0)); in splitCall()
693 VS = getVectorSplit(CallType); in splitCall()
719 for (unsigned I = 1; I < CallType->getNumContainedTypes(); I++) { in splitCall()
721 getVectorSplit(cast<FixedVectorType>(CallType->getContainedType(I))); in splitCall()
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp3528 SourceRange Range, VariadicCallType CallType) { in checkCall() argument
3539 CheckFormatString(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
3545 CheckFormatArguments(I, Args, IsMemberFunction, CallType, Loc, Range, in checkCall()
3553 if (CallType != VariadicCallType::DoesNotApply && in checkCall()
3566 checkVariadicArgument(Arg, CallType); in checkCall()
3604 CallType == VariadicCallType::DoesNotApply) in checkCall()
3726 VariadicCallType CallType = Proto->isVariadic() in CheckConstructorCall() local
3736 Loc, SourceRange(), CallType); in CheckConstructorCall()
3745 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, in CheckFunctionCall() local
3781 TheCall->getCallee()->getSourceRange(), CallType); in CheckFunctionCall()
[all …]
H A DSemaCoroutine.cpp372 auto BuildSubExpr = [&](ACT CallType, StringRef Func, in buildCoawaitCalls()
379 Calls.Results[CallType] = Result.get(); in buildCoawaitCalls()
H A DSemaObjC.cpp1243 VariadicCallType CallType = Method->isVariadic() in CheckObjCMethodCall() local
1249 CallType); in CheckObjCMethodCall()
H A DSemaExprCXX.cpp2448 VariadicCallType CallType = Proto->isVariadic() in BuildCXXNew() local
2465 AllPlaceArgs, CallType)) in BuildCXXNew()
2534 /*IsMemberFunction=*/false, StartLoc, Range, CallType); in BuildCXXNew()
H A DSemaExpr.cpp6007 VariadicCallType CallType = getVariadicCallType(FDecl, Proto, Fn); in ConvertArgumentsForCall() local
6010 AllArgs, CallType); in ConvertArgumentsForCall()
6025 VariadicCallType CallType, bool AllowExplicit, in GatherArgumentsForCall() argument
6104 if (CallType != VariadicCallType::DoesNotApply) { in GatherArgumentsForCall()
6119 ExprResult Arg = DefaultVariadicArgumentPromotion(A, CallType, FDecl); in GatherArgumentsForCall()
H A DSemaDeclCXX.cpp16375 VariadicCallType CallType = Proto->isVariadic() in CompleteConstructorCall() local
16381 CallType, AllowExplicit, IsListInitialization); in CompleteConstructorCall()
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp1302 QualType CallType = Call->getType(); in interp__builtin_ia32_bzhi() local
1305 !CallType->isIntegerType()) in interp__builtin_ia32_bzhi()
1320 pushInteger(S, Val, CallType); in interp__builtin_ia32_bzhi()
1327 QualType CallType = Call->getType(); in interp__builtin_ia32_lzcnt() local
1328 if (!CallType->isIntegerType() || in interp__builtin_ia32_lzcnt()
1333 pushInteger(S, Val.countLeadingZeros(), CallType); in interp__builtin_ia32_lzcnt()
1340 QualType CallType = Call->getType(); in interp__builtin_ia32_tzcnt() local
1341 if (!CallType->isIntegerType() || in interp__builtin_ia32_tzcnt()
1346 pushInteger(S, Val.countTrailingZeros(), CallType); in interp__builtin_ia32_tzcnt()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DInstrProfiling.cpp1013 ValueProfilingCallType CallType = ValueProfilingCallType::Default) { in getOrInsertValueProfilingCall() argument
1021 assert((CallType == ValueProfilingCallType::Default || in getOrInsertValueProfilingCall()
1022 CallType == ValueProfilingCallType::MemOp) && in getOrInsertValueProfilingCall()
1030 StringRef FuncName = CallType == ValueProfilingCallType::Default in getOrInsertValueProfilingCall()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DSema.h2774 VariadicCallType CallType);
3004 VariadicCallType CallType, SourceLocation Loc,
3009 VariadicCallType CallType, SourceLocation Loc,
3016 FormatStringType Type, VariadicCallType CallType,
7966 VariadicCallType CallType = VariadicCallType::DoesNotApply,
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp19392 X86ISD::NodeType CallType = UseTLSDESC ? X86ISD::TLSDESC in GetTLSADDR() local
19403 Chain = DAG.getNode(CallType, dl, NodeTys, {Chain, TGA, InGlue}); in GetTLSADDR()
19405 Chain = DAG.getNode(CallType, dl, NodeTys, {Chain, TGA}); in GetTLSADDR()