| /freebsd/contrib/llvm-project/clang/lib/CIR/CodeGen/ |
| H A D | CIRGenFunctionInfo.h | 77 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 D | CIRGenCall.cpp | 36 fi->numArgs = argTypes.size(); in create()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Sema/ |
| H A D | ParsedAttr.h | 207 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 D | UnixAPIChecker.cpp | 119 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 D | Mangle.cpp | 365 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 D | SparcISelLowering.h | 144 unsigned numArgs) const;
|
| H A D | SparcISelLowering.cpp | 2305 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 D | IRInterpreter.cpp | 1444 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 D | AMDGPULibCalls.cpp | 1629 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 D | RewriteModernObjC.cpp | 1437 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 D | RewriteObjC.cpp | 2304 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 D | MemorySanitizer.cpp | 4785 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 D | SPIRVBuiltins.td | 1254 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 D | Type.h | 5358 unsigned numArgs) { 5359 for (unsigned Idx = 0; Idx < numArgs; ++Idx)
|
| /freebsd/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaChecking.cpp | 4936 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()
|