Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/
H A DCIRGenFunctionInfo.h77 unsigned numArgs; variable
118 return llvm::ArrayRef<CanQualType>(argTypesBegin(), numArgs); in arguments()
128 const_arg_iterator argTypesEnd() const { return getArgTypes() + 1 + numArgs; } in argTypesEnd()
130 arg_iterator argTypesEnd() { return getArgTypes() + 1 + numArgs; } in argTypesEnd()
132 unsigned argTypeSize() const { return numArgs; } in argTypeSize()
135 return llvm::MutableArrayRef<CanQualType>(argTypesBegin(), numArgs); in argTypes()
138 return llvm::ArrayRef<CanQualType>(argTypesBegin(), numArgs); in argTypes()
H A DCIRGenCall.cpp36 fi->numArgs = argTypes.size(); in create()
/freebsd/contrib/llvm-project/clang/include/clang/Sema/
H A DParsedAttr.h207 AttributeScopeInfo scope, ArgsUnion *args, unsigned numArgs, in ParsedAttr() argument
210 EllipsisLoc(ellipsisLoc), NumArgs(numArgs), Invalid(false), in ParsedAttr()
215 if (numArgs) in ParsedAttr()
216 memcpy(getArgsBuffer(), args, numArgs * sizeof(ArgsUnion)); in ParsedAttr()
737 unsigned numArgs, ParsedAttr::Form form,
742 detail::PropertyData>(numArgs, 0, 0, 0,
745 numArgs, form, ellipsisLoc));
980 unsigned numArgs, ParsedAttr::Form form,
982 ParsedAttr *attr = pool.create(attrName, attrRange, scope, args, numArgs,
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DUnixAPIChecker.cpp119 const unsigned numArgs,
501 const unsigned numArgs, in BasicAllocationCheck() argument
505 if (CE->getNumArgs() != numArgs) in BasicAllocationCheck()
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DMangle.cpp365 numArgs = selector.getNumArgs(), in mangleObjCMethodName() local
366 slotEnd = std::max(numArgs, 1U); in mangleObjCMethodName()
374 if (numArgs) in mangleObjCMethodName()
/freebsd/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcISelLowering.h144 unsigned numArgs) const;
H A DSparcISelLowering.cpp2305 unsigned numArgs) const { in LowerF128Op()
2334 assert(Op->getNumOperands() >= numArgs && "Not enough operands!"); in LowerF128Op()
2335 for (unsigned i = 0, e = numArgs; i != e; ++i) { in LowerF128Op()
/freebsd/contrib/llvm-project/lldb/source/Expression/
H A DIRInterpreter.cpp1444 const int numArgs = call_inst->arg_size(); in Interpret() local
1448 if (numArgs >= 16) { in Interpret()
1456 for (int i = 0; i < numArgs; i++) { in Interpret()
1509 llvm::ArrayRef<lldb_private::ABI::CallArgument> args(rawArgs, numArgs); in Interpret()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPULibCalls.cpp1629 int numArgs = (int)aCI->arg_size(); in evaluateCall() local
1630 if (numArgs > 3) in evaluateCall()
1635 if (numArgs > 0) { in evaluateCall()
1640 if (numArgs > 1) { in evaluateCall()
/freebsd/contrib/llvm-project/clang/lib/Frontend/Rewrite/
H A DRewriteModernObjC.cpp1437 unsigned numArgs = OldMsg->getNumArgs(); in RewritePropertyOrImplicitSetter() local
1438 for (unsigned i = 0; i < numArgs; i++) { in RewritePropertyOrImplicitSetter()
1521 unsigned numArgs = OldMsg->getNumArgs(); in RewritePropertyOrImplicitGetter() local
1522 for (unsigned i = 0; i < numArgs; i++) { in RewritePropertyOrImplicitGetter()
2391 unsigned numArgs = proto->getNumParams(); in RewriteBlockLiteralFunctionDecl() local
2392 for (unsigned i = 0; i < numArgs; i++) { in RewriteBlockLiteralFunctionDecl()
2395 if (i+1 < numArgs) in RewriteBlockLiteralFunctionDecl()
2399 FdStr += (numArgs > 0) ? ", ...);\n" : "...);\n"; in RewriteBlockLiteralFunctionDecl()
H A DRewriteObjC.cpp2304 unsigned numArgs = proto->getNumParams(); in RewriteBlockLiteralFunctionDecl() local
2305 for (unsigned i = 0; i < numArgs; i++) { in RewriteBlockLiteralFunctionDecl()
2308 if (i+1 < numArgs) in RewriteBlockLiteralFunctionDecl()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DMemorySanitizer.cpp4785 unsigned int numArgs = I.arg_size(); in handleNEONVectorLoad() local
4798 assert(4 <= numArgs && numArgs <= 6); in handleNEONVectorLoad()
4801 assert(RetTy->getNumElements() + 2 == numArgs); in handleNEONVectorLoad()
4805 assert(numArgs == 1); in handleNEONVectorLoad()
4812 for (unsigned int i = 0; i < numArgs - 2; i++) in handleNEONVectorLoad()
4816 Value *LaneNumber = I.getArgOperand(numArgs - 2); in handleNEONVectorLoad()
4823 Value *Src = I.getArgOperand(numArgs - 1); in handleNEONVectorLoad()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVBuiltins.td1254 multiclass DemangledIntelSubgroupsBuiltinWrapper<string name, bits<8> numArgs, Op operation> {
1255 …def : DemangledBuiltin<!strconcat("__spirv_", name), OpenCL_std, IntelSubgroups, numArgs, numArgs>;
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DType.h5358 unsigned numArgs) {
5359 for (unsigned Idx = 0; Idx < numArgs; ++Idx)
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaChecking.cpp4936 unsigned numArgs = isStore ? 2 : 1; in BuiltinNontemporalOverloaded() local
4939 if (checkArgCount(TheCall, numArgs)) in BuiltinNontemporalOverloaded()
4946 Expr *PointerArg = TheCall->getArg(numArgs - 1); in BuiltinNontemporalOverloaded()
4953 TheCall->setArg(numArgs - 1, PointerArg); in BuiltinNontemporalOverloaded()