/freebsd/contrib/llvm-project/llvm/lib/Target/AArch64/ |
H A D | AArch64RegisterInfo.cpp | 96 MF->getFunction().getAttributes().hasAttrSomewhere( in getCalleeSavedRegs() 130 MF->getFunction().getAttributes().hasAttrSomewhere( in getCalleeSavedRegs() 189 MF->getFunction().getAttributes().hasAttrSomewhere( in getDarwinCalleeSavedRegs() 267 MF.getFunction().getAttributes().hasAttrSomewhere(Attribute::SwiftError)) in getDarwinCallPreservedMask() 313 MF.getFunction().getAttributes().hasAttrSomewhere(Attribute::SwiftError)) in getCallPreservedMask()
|
H A D | AArch64FrameLowering.cpp | 432 !MF.getFunction().getAttributes().hasAttrSomewhere( in getFixedObjectSize() 1971 bool HaveInitialContext = Attrs.hasAttrSomewhere(Attribute::SwiftAsync); in emitPrologue() 2858 Attrs.hasAttrSomewhere(Attribute::SwiftError)) && in produceCompactUnwindFrame()
|
H A D | AArch64FastISel.cpp | 3856 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError)) in selectRet()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/SystemZ/ |
H A D | SystemZRegisterInfo.cpp | 206 MF->getFunction().getAttributes().hasAttrSomewhere( in getCalleeSavedRegs() 230 MF.getFunction().getAttributes().hasAttrSomewhere( in getCallPreservedMask()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/ |
H A D | SwiftErrorValueTracking.cpp | 324 if (!F->getAttributes().hasAttrSomewhere(Attribute::SwiftError))
|
H A D | PreISelIntrinsicLowering.cpp | 169 if (F.getAttributes().hasAttrSomewhere(Attribute::Returned, &Index) && in lowerObjCCall()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/ARM/ |
H A D | ARMBaseRegisterInfo.cpp | 98 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError)) { in getCalleeSavedRegs() 144 MF.getFunction().getAttributes().hasAttrSomewhere(Attribute::SwiftError)) in getCallPreservedMask()
|
H A D | ARMFastISel.cpp | 2086 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError)) in SelectRet()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | AttributeImpl.h | 401 bool hasAttrSomewhere(Attribute::AttrKind Kind,
|
H A D | Attributes.cpp | 1235 bool AttributeListImpl::hasAttrSomewhere(Attribute::AttrKind Kind, in hasAttrSomewhere() function in AttributeListImpl 1653 bool AttributeList::hasAttrSomewhere(Attribute::AttrKind Attr, in hasAttrSomewhere() function in AttributeList 1655 return pImpl && pImpl->hasAttrSomewhere(Attr, Index); in hasAttrSomewhere()
|
H A D | Instructions.cpp | 396 if (Attrs.hasAttrSomewhere(Kind, &Index)) in getArgOperandWithAttribute() 399 if (F->getAttributes().hasAttrSomewhere(Kind, &Index)) in getArgOperandWithAttribute()
|
H A D | Verifier.cpp | 2236 Check(!Attrs.hasAttrSomewhere(Attribute::Writable) || in verifyFunctionAttrs() 2779 Check(!Attrs.hasAttrSomewhere(Attribute::ElementType), in visitFunction()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | FunctionAttrs.cpp | 175 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca) || in checkFunctionMemoryAccess() 176 F.getAttributes().hasAttrSomewhere(Attribute::Preallocated)) in checkFunctionMemoryAccess() 767 if (F->getAttributes().hasAttrSomewhere(Attribute::Returned)) in addArgumentReturnedAttrs()
|
H A D | DeadArgumentElimination.cpp | 496 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca) || in surveyFunction() 497 F.getAttributes().hasAttrSomewhere(Attribute::Preallocated)) { in surveyFunction()
|
H A D | GlobalOpt.cpp | 1675 if (Attrs.hasAttrSomewhere(A, &AttrIndex)) in StripAttr() 1979 if (F.getAttributes().hasAttrSomewhere(Attribute::InAlloca) && in OptimizeFunctions() 1987 if (F.getAttributes().hasAttrSomewhere(Attribute::Preallocated)) { in OptimizeFunctions() 2024 if (F.getAttributes().hasAttrSomewhere(Attribute::Nest) && in OptimizeFunctions()
|
H A D | ArgumentPromotion.cpp | 778 if (F->getAttributes().hasAttrSomewhere(Attribute::InAlloca)) in promoteArguments()
|
H A D | Attributor.cpp | 2894 if (FnAttributeList.hasAttrSomewhere(Attribute::Nest) || in isValidFunctionSignatureRewrite() 2895 FnAttributeList.hasAttrSomewhere(Attribute::StructRet) || in isValidFunctionSignatureRewrite() 2896 FnAttributeList.hasAttrSomewhere(Attribute::InAlloca) || in isValidFunctionSignatureRewrite() 2897 FnAttributeList.hasAttrSomewhere(Attribute::Preallocated)) { in isValidFunctionSignatureRewrite()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/ |
H A D | X86RegisterInfo.cpp | 396 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError); in getCalleeSavedRegs() 517 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError); in getCallPreservedMask()
|
H A D | X86FrameLowering.cpp | 1779 if (Attrs.hasAttrSomewhere(Attribute::SwiftAsync)) { in emitPrologue()
|
H A D | X86FastISel.cpp | 1177 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError)) in X86SelectRet()
|
/freebsd/contrib/llvm-project/llvm/lib/Target/XCore/ |
H A D | XCoreFrameLowering.cpp | 240 if (PAL.hasAttrSomewhere(Attribute::Nest)) in emitPrologue()
|
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/ |
H A D | Attributes.h | 844 bool hasAttrSomewhere(Attribute::AttrKind Kind,
|
H A D | InstrTypes.h | 2043 return Attrs.hasAttrSomewhere(Attribute::ByVal);
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/ |
H A D | InstCombineCalls.cpp | 4162 if (Callee->getAttributes().hasAttrSomewhere(Attribute::InAlloca) || in transformConstExprCastCall() 4163 Callee->getAttributes().hasAttrSomewhere(Attribute::Preallocated)) in transformConstExprCastCall() 4217 if (CallerPAL.hasAttrSomewhere(Attribute::StructRet, &SRetIdx) && in transformConstExprCastCall() 4354 if (Attrs.hasAttrSomewhere(Attribute::Nest)) in transformCallThroughTrampoline()
|
/freebsd/contrib/llvm-project/llvm/lib/Analysis/ |
H A D | BasicAliasAnalysis.cpp | 925 !CI->getAttributes().hasAttrSomewhere(Attribute::ByVal)) in getModRefInfo()
|