| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | CodeGenIntrinsics.cpp | 408 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 411 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 414 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 417 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 420 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 423 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 426 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 429 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 432 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local 435 unsigned ArgNo = R->getValueAsInt("ArgNo"); in setProperty() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
| H A D | Function.h | 487 MaybeAlign getParamAlign(unsigned ArgNo) const { in getParamAlign() 491 MaybeAlign getParamStackAlign(unsigned ArgNo) const { in getParamStackAlign() 496 Type *getParamByValType(unsigned ArgNo) const { in getParamByValType() 501 Type *getParamStructRetType(unsigned ArgNo) const { in getParamStructRetType() 506 Type *getParamInAllocaType(unsigned ArgNo) const { in getParamInAllocaType() 511 Type *getParamByRefType(unsigned ArgNo) const { in getParamByRefType() 516 Type *getParamPreallocatedType(unsigned ArgNo) const { in getParamPreallocatedType() 522 uint64_t getParamDereferenceableBytes(unsigned ArgNo) const { in getParamDereferenceableBytes() 529 uint64_t getParamDereferenceableOrNullBytes(unsigned ArgNo) const { in getParamDereferenceableOrNullBytes() 534 FPClassTest getParamNoFPClass(unsigned ArgNo) const { in getParamNoFPClass()
|
| H A D | AbstractCallSite.h | 171 int getCallArgOperandNo(unsigned ArgNo) const { in getCallArgOperandNo() 185 Value *getCallArgOperand(unsigned ArgNo) const { in getCallArgOperand()
|
| H A D | Argument.h | 34 unsigned ArgNo; variable
|
| /freebsd/contrib/llvm-project/llvm/lib/IR/ |
| H A D | Function.cpp | 106 Argument::Argument(Type *Ty, const Twine &Name, Function *Par, unsigned ArgNo) in Argument() 665 void Function::addParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) { in addParamAttr() 669 void Function::addParamAttr(unsigned ArgNo, Attribute Attr) { in addParamAttr() 673 void Function::addParamAttrs(unsigned ArgNo, const AttrBuilder &Attrs) { in addParamAttrs() 709 void Function::removeParamAttr(unsigned ArgNo, Attribute::AttrKind Kind) { in removeParamAttr() 713 void Function::removeParamAttr(unsigned ArgNo, StringRef Kind) { in removeParamAttr() 717 void Function::removeParamAttrs(unsigned ArgNo, const AttributeMask &Attrs) { in removeParamAttrs() 722 void Function::addDereferenceableParamAttr(unsigned ArgNo, uint64_t Bytes) { in addDereferenceableParamAttr() 739 bool Function::hasParamAttribute(unsigned ArgNo, in hasParamAttribute() 744 bool Function::hasParamAttribute(unsigned ArgNo, StringRef Kind) const { in hasParamAttribute() [all …]
|
| H A D | Intrinsics.cpp | 371 unsigned short ArgNo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType() local 384 unsigned short ArgNo = (NextElt == Infos.size() ? 0 : Infos[NextElt++]); in DecodeIITType() local
|
| H A D | Instruction.cpp | 541 for (unsigned ArgNo = 0; ArgNo < CB->arg_size(); ArgNo++) in dropUBImplyingAttrsAndUnknownMetadata() local 562 for (unsigned ArgNo = 0; ArgNo < CB->arg_size(); ArgNo++) in hasUBImplyingAttrs() local
|
| H A D | MDBuilder.cpp | 127 for (int ArgNo : Arguments) in createCallbackEncoding() local
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
| H A D | CallSiteSplitting.cpp | 87 unsigned ArgNo = 0; in addNonNullAttribute() local 97 unsigned ArgNo = 0; in setConstantInArgument() local 112 unsigned ArgNo = 0; in isCondRelevantToAnyCallArgument() local 337 unsigned ArgNo = 0; in splitCallSite() local
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFPreserveStaticOffset.cpp | 168 static void setParamElementType(CallInst *Call, unsigned ArgNo, Type *Type) { in setParamElementType() 173 static void setParamReadNone(CallInst *Call, unsigned ArgNo) { in setParamReadNone() 178 static void setParamReadOnly(CallInst *Call, unsigned ArgNo) { in setParamReadOnly() 183 static void setParamWriteOnly(CallInst *Call, unsigned ArgNo) { in setParamWriteOnly() 265 static unsigned getOperandAsUnsigned(CallInst *Call, unsigned ArgNo) { in getOperandAsUnsigned()
|
| /freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Interpreter/ |
| H A D | ExternalFunctions.cpp | 221 const unsigned ArgNo = A->getArgNo(); in ffiInvoke() local 233 const unsigned ArgNo = A->getArgNo(); in ffiInvoke() local 359 unsigned ArgNo = 2; in lle_X_sprintf() local
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/ |
| H A D | BuildLibCalls.cpp | 168 static bool setDoesNotCapture(Function &F, unsigned ArgNo) { in setDoesNotCapture() 177 static bool setDoesNotAlias(Function &F, unsigned ArgNo) { in setDoesNotAlias() 185 static bool setOnlyReadsMemory(Function &F, unsigned ArgNo) { in setOnlyReadsMemory() 193 static bool setOnlyWritesMemory(Function &F, unsigned ArgNo) { in setOnlyWritesMemory() 213 for (unsigned ArgNo = 0; ArgNo < F.arg_size(); ++ArgNo) { in setArgsNoUndef() local 223 static bool setArgNoUndef(Function &F, unsigned ArgNo) { in setArgNoUndef() 238 static bool setReturnedArg(Function &F, unsigned ArgNo) { in setReturnedArg() 268 static bool setAlignedAllocParam(Function &F, unsigned ArgNo) { in setAlignedAllocParam() 275 static bool setAllocatedPointerParam(Function &F, unsigned ArgNo) { in setAllocatedPointerParam() 1400 static void setArgExtAttr(Function &F, unsigned ArgNo, in setArgExtAttr()
|
| H A D | CallPromotionUtils.cpp | 521 for (unsigned ArgNo = 0; ArgNo < CalleeParamNum; ++ArgNo) { in promoteCall() local
|
| /freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
| H A D | ArgumentPromotion.cpp | 134 unsigned ArgNo = 0, NewArgNo = 0; in doPromotion() local 683 unsigned int ArgNo = Arg->getArgNo(); in findArgParts() local 863 unsigned ArgNo = PtrArg->getArgNo(); in promoteArguments() local
|
| H A D | DeadArgumentElimination.cpp | 190 for (unsigned ArgNo = 0; ArgNo < NumArgs; ++ArgNo) in deleteDeadVarargs() local 317 for (unsigned ArgNo : UnusedArgs) { in removeDeadArgumentsFromCallers() local 443 unsigned ArgNo = CB->getArgOperandNo(U); in surveyUse() local
|
| H A D | ThinLTOBitcodeWriter.cpp | 109 auto ExternalizeTypeId = [&](CallInst *CI, unsigned ArgNo) { in promoteTypeIds()
|
| H A D | AttributorAttributes.cpp | 451 unsigned ArgNo = QueryingAA.getIRPosition().getCallSiteArgNo(); in clampCallSiteArgumentStates() local 505 int ArgNo = Pos.getCallSiteArgNo(); in getArgumentStateFromCallBaseContext() local 1901 unsigned ArgNo = CB->getArgOperandNo(&U); in updateImpl() local 2016 unsigned ArgNo = getIRPosition().getCallSiteArgNo(); in updateImpl() local 2362 unsigned ArgNo = CB->getArgOperandNo(&U); in updateImpl() local 2554 unsigned ArgNo = CB->getArgOperandNo(U); in getKnownNonNullAndDerefBytesForUse() local 3948 unsigned ArgNo = CB->getArgOperandNo(&U); in isKnownNoAliasDueToNoAliasPreservation() local 5213 unsigned ArgNo = CB->getArgOperandNo(U); in getKnownAlignForUse() local 5827 int ArgNo = IRP.getCalleeArgNo(); in determineFunctionCaptureCapabilities() local 5924 unsigned ArgNo = CB->getArgOperandNo(&U); in checkUse() local [all …]
|
| /freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
| H A D | Lint.cpp | 233 unsigned ArgNo = 0; in visitCallBase() local 266 unsigned ArgNo = AI->getOperandNo(); in visitCallBase() local 295 unsigned ArgNo = 0; in visitCallBase() local
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | TokenLexer.cpp | 371 int ArgNo = Macro->getParameterNum(Tokens[I+1].getIdentifierInfo()); in ExpandFunctionArguments() local 418 int ArgNo = II ? Macro->getParameterNum(II) : -1; in ExpandFunctionArguments() local
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
| H A D | InlineAsmLowering.cpp | 235 unsigned ArgNo = 0; // ArgNo - The argument of the CallInst. in lowerInlineAsm() local
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | FunctionLoweringInfo.cpp | 75 unsigned ArgNo = CallI->getArgOperandNo(&U); in getPreferredExtendForValue() local
|
| /freebsd/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCall.cpp | 1591 unsigned ArgNo = 0; in construct() local 1756 unsigned ArgNo = 0; in GetFunctionType() local 2331 unsigned NumRequiredArgs, unsigned ArgNo) { in IsArgumentMaybeUndef() 2806 unsigned ArgNo = 0; in ConstructAttributeList() local 3023 QualType ArgType, unsigned ArgNo) { in getNonNullAttr() 3112 unsigned ArgNo = 0; in EmitFunctionProlog() local 4537 unsigned ArgNo = PVD ? PVD->getFunctionScopeIndex() : ParmNum; in EmitNonNullArgCheck() local 5308 unsigned ArgNo = 0; in EmitCall() local
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUHSAMetadataStreamer.cpp | 305 auto ArgNo = Arg.getArgNo(); in emitKernelArg() local
|
| H A D | AMDGPUAsanInstrumentation.cpp | 359 for (unsigned ArgNo = 0; ArgNo < CI->arg_size(); ArgNo++) { in getInterestingMemoryOperands() local
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/ |
| H A D | TargetLibraryInfo.h | 561 for (auto ArgNo : ArgNos) variable
|