Searched refs:Attribute (Results 226 - 250 of 309) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DWasmYAML.h79 uint32_t Attribute; member in struct:llvm::WasmYAML::Event
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1313 Attribute TFAttr = F->getFnAttribute("target-features");
1314 if (!TFAttr.hasAttribute(Attribute::None)) {
1373 F->addFnAttr(Attribute::Naked);
1383 F->addFnAttr(Attribute::NoUnwind);
H A DPartialInlining.cpp1263 if (F->hasFnAttribute(Attribute::AlwaysInline))
1266 if (F->hasFnAttribute(Attribute::NoInline))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp64 .removeAttribute(Attribute::NoAlias)
65 .removeAttribute(Attribute::NonNull)
70 if (CallerAttrs.hasAttribute(AttributeList::ReturnIndex, Attribute::ZExt) ||
71 CallerAttrs.hasAttribute(AttributeList::ReturnIndex, Attribute::SExt))
107 IsSExt = Call->paramHasAttr(ArgIdx, Attribute::SExt);
108 IsZExt = Call->paramHasAttr(ArgIdx, Attribute::ZExt);
109 IsInReg = Call->paramHasAttr(ArgIdx, Attribute::InReg);
110 IsSRet = Call->paramHasAttr(ArgIdx, Attribute::StructRet);
111 IsNest = Call->paramHasAttr(ArgIdx, Attribute::Nest);
112 IsByVal = Call->paramHasAttr(ArgIdx, Attribute
[all...]
H A DFastISel.cpp1099 SmallVector<Attribute::AttrKind, 2> Attrs;
1101 Attrs.push_back(Attribute::SExt);
1103 Attrs.push_back(Attribute::ZExt);
1105 Attrs.push_back(Attribute::InReg);
1284 // Skip the first return-type Attribute to get to params.
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPrologEpilogInserter.cpp255 if (!F.hasFnAttribute(Attribute::Naked))
613 if (!F.hasFnAttribute(Attribute::Naked)) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DLoopUnswitch.cpp536 SanitizeMemory = F->hasFnAttribute(Attribute::SanitizeMemory);
664 loopHeader->getParent()->hasFnAttribute(Attribute::OptimizeForSize))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DLoadStoreVectorizer.cpp252 if (skipFunction(F) || F.hasFnAttribute(Attribute::NoImplicitFloat))
267 if (F.hasFnAttribute(Attribute::NoImplicitFloat))
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGOpenMPRuntimeNVPTX.cpp1990 OutlinedFun->removeFnAttr(llvm::Attribute::NoInline);
1991 OutlinedFun->removeFnAttr(llvm::Attribute::OptimizeNone);
1992 OutlinedFun->addFnAttr(llvm::Attribute::AlwaysInline);
2111 OutlinedFun->removeFnAttr(llvm::Attribute::NoInline);
2112 OutlinedFun->removeFnAttr(llvm::Attribute::OptimizeNone);
2113 OutlinedFun->addFnAttr(llvm::Attribute::AlwaysInline);
3502 Fn->removeFnAttr(llvm::Attribute::NoInline);
3503 Fn->removeFnAttr(llvm::Attribute::OptimizeNone);
3504 Fn->addFnAttr(llvm::Attribute::AlwaysInline);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetLowering.h3523 IsInReg = Call.hasRetAttr(Attribute::InReg);
3530 RetSExt = Call.hasRetAttr(Attribute::SExt);
3531 RetZExt = Call.hasRetAttr(Attribute::ZExt);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DInstructions.cpp298 if (hasRetAttr(Attribute::NonNull))
312 if (Attrs.hasAttrSomewhere(Attribute::Returned, &Index) && Index)
315 if (F->getAttributes().hasAttrSomewhere(Attribute::Returned, &Index) &&
322 bool CallBase::hasRetAttr(Attribute::AttrKind Kind) const {
333 bool CallBase::paramHasAttr(unsigned ArgNo, Attribute::AttrKind Kind) const {
343 bool CallBase::hasFnAttrOnCalledFunction(Attribute::AttrKind Kind) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64FastISel.cpp2298 Attribute::SpeculativeLoadHardening))
2970 if (Arg.hasAttribute(Attribute::ByVal) ||
2971 Arg.hasAttribute(Attribute::InReg) ||
2972 Arg.hasAttribute(Attribute::StructRet) ||
2973 Arg.hasAttribute(Attribute::SwiftSelf) ||
2974 Arg.hasAttribute(Attribute::SwiftError) ||
2975 Arg.hasAttribute(Attribute::Nest))
3852 F.getAttributes().hasAttrSomewhere(Attribute::SwiftError))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Instrumentation/
H A DPGOInstrumentation.cpp1627 F->addFnAttr(Attribute::InlineHint);
1632 F->addFnAttr(Attribute::Cold);
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Daclocal.h424 UINT8 Attribute; member in struct:acpi_create_field_info
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Bitcode/Writer/
H A DValueEnumerator.cpp954 if (I.hasAttribute(Attribute::ByVal))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DCompileOnDemandLayer.h661 ClonedF->addFnAttr(Attribute::AlwaysInline);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIRBuilder.h260 if (!F->hasFnAttribute(Attribute::StrictFP)) {
261 F->addFnAttr(Attribute::StrictFP);
266 if (!I->hasFnAttr(Attribute::StrictFP))
267 I->addAttribute(AttributeList::FunctionIndex, Attribute::StrictFP);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DARMAttributeParser.cpp1 //===--- ARMAttributeParser.cpp - ARM Attribute Information Printer -------===//
106 DictScope AS(*SW, "Attribute");
121 DictScope AS(*SW, "Attribute");
478 DictScope AS(*SW, "Attribute");
609 if (uint64_t(DisplayRoutines[AHI].Attribute) == Tag) {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DBranchProbabilityInfo.cpp208 if (CI->hasFnAttr(Attribute::Cold))
H A DAliasAnalysis.cpp884 return Call->hasRetAttr(Attribute::NoAlias);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonCopyToCombine.cpp474 bool OptForSize = F.hasFnAttribute(Attribute::OptimizeForSize);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMISelLowering.h758 MF->getFunction().hasFnAttribute(Attribute::NoUnwind);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsAsmPrinter.cpp432 bool IsNakedFunction = MF->getFunction().hasFnAttribute(Attribute::Naked);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DCommentSema.cpp464 ArrayRef<HTMLStartTagComment::Attribute> Attrs,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreFrameLowering.cpp241 if (PAL.hasAttrSomewhere(Attribute::Nest))

Completed in 327 milliseconds

1234567891011>>