Searched refs:Attribute (Results 51 - 75 of 309) sorted by relevance

1234567891011>>

/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUInline.cpp117 Callee->hasFnAttribute(Attribute::InlineHint);
119 && !Caller->hasFnAttribute(Attribute::MinSize))
191 if (CS.hasFnAttr(Attribute::AlwaysInline)) {
221 if (IC && !IC.isAlways() && !Callee->hasFnAttribute(Attribute::InlineHint)) {
H A DAMDGPULowerKernelArguments.cpp88 KernArgSegment->addAttribute(AttributeList::ReturnIndex, Attribute::NonNull);
90 Attribute::getWithDereferenceableBytes(Ctx, TotalKernArgSize));
224 Attribute::getWithAlignment(Ctx, std::max(KernArgBaseAlign, MaxAlign)));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DCFGuardLongjmp.cpp93 if (F->hasFnAttribute(Attribute::ReturnsTwice)) {
H A DPatchableFunction.cpp76 Attribute PatchAttr = MF.getFunction().getFnAttribute("patchable-function");
H A DXRayInstrumentation.cpp148 bool AlwaysInstrument = !InstrAttr.hasAttribute(Attribute::None) &&
151 Attribute Attr = F.getFnAttribute("xray-instruction-threshold");
154 if (Attr.hasAttribute(Attribute::None) || !Attr.isStringAttribute())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyOptimizeReturned.cpp60 if (CS.paramHasAttr(I, Attribute::Returned)) {
H A DWebAssemblyTargetMachine.cpp150 Attribute CPUAttr = F.getFnAttribute("target-cpu");
151 Attribute FSAttr = F.getFnAttribute("target-features");
153 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
156 std::string FS = !FSAttr.hasAttribute(Attribute::None)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Sparc/
H A DSparcTargetMachine.cpp110 Attribute CPUAttr = F.getFnAttribute("target-cpu");
111 Attribute FSAttr = F.getFnAttribute("target-features");
113 std::string CPU = !CPUAttr.hasAttribute(Attribute::None)
116 std::string FS = !FSAttr.hasAttribute(Attribute::None)
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCallLowering.cpp83 if (Attrs.hasAttribute(OpIdx, Attribute::ZExt))
85 if (Attrs.hasAttribute(OpIdx, Attribute::SExt))
87 if (Attrs.hasAttribute(OpIdx, Attribute::InReg))
89 if (Attrs.hasAttribute(OpIdx, Attribute::StructRet))
91 if (Attrs.hasAttribute(OpIdx, Attribute::SwiftSelf))
93 if (Attrs.hasAttribute(OpIdx, Attribute::SwiftError))
95 if (Attrs.hasAttribute(OpIdx, Attribute::ByVal))
97 if (Attrs.hasAttribute(OpIdx, Attribute::InAlloca))
103 auto Ty = Attrs.getAttribute(OpIdx, Attribute::ByVal).getValueAsType();
115 if (Attrs.hasAttribute(OpIdx, Attribute
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/DebugInfo/DWARF/
H A DDWARFDie.h142 Optional<DWARFFormValue> find(dwarf::Attribute Attr) const;
155 Optional<DWARFFormValue> find(ArrayRef<dwarf::Attribute> Attrs) const;
167 findRecursively(ArrayRef<dwarf::Attribute> Attrs) const;
182 DWARFDie getAttributeValueAsReferencedDie(dwarf::Attribute Attr) const;
236 getLocations(dwarf::Attribute Attr) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/BinaryFormat/
H A DDwarf.cpp72 StringRef llvm::dwarf::AttributeString(unsigned Attribute) { argument
73 switch (Attribute) {
83 unsigned llvm::dwarf::AttributeVersion(dwarf::Attribute Attribute) { argument
84 switch (Attribute) {
94 unsigned llvm::dwarf::AttributeVendor(dwarf::Attribute Attribute) { argument
95 switch (Attribute) {
756 constexpr char llvm::dwarf::EnumTraits<Attribute>::Type[];
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DFastISel.h110 IsInReg = Call.hasRetAttr(Attribute::InReg);
114 RetSExt = Call.hasRetAttr(Attribute::SExt);
115 RetZExt = Call.hasRetAttr(Attribute::ZExt);
134 IsInReg = Call.hasRetAttr(Attribute::InReg);
138 RetSExt = Call.hasRetAttr(Attribute::SExt);
139 RetZExt = Call.hasRetAttr(Attribute::ZExt);
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp1702 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
1711 FuncAttrs.addAttribute(llvm::Attribute::OptimizeForSize);
1713 FuncAttrs.addAttribute(llvm::Attribute::MinSize);
1717 FuncAttrs.addAttribute(llvm::Attribute::NoRedZone);
1721 FuncAttrs.addAttribute(llvm::Attribute::NoImplicitFloat);
1727 FuncAttrs.addAttribute(llvm::Attribute::NoBuiltin);
1801 FuncAttrs.addAttribute(llvm::Attribute::SpeculativeLoadHardening);
1810 FuncAttrs.addAttribute(llvm::Attribute::Convergent);
1815 FuncAttrs.addAttribute(llvm::Attribute::NoUnwind);
1844 FuncAttrs.addAttribute(llvm::Attribute
[all...]
/freebsd-11-stable/sys/contrib/edk2/Include/Protocol/
H A DSimpleTextOut.h272 @param Attribute The attribute to set. Bits 0..3 are the foreground color, and
285 IN UINTN Attribute
372 INT32 Attribute; member in struct:__anon6087
/freebsd-11-stable/contrib/wpa/hs20/client/
H A Dest.c203 * attribute Attribute }
205 * Attribute ::= SEQUENCE {
213 } Attribute; typedef in typeref:struct:__anon3608
219 Attribute *attribute;
232 ASN1_SEQUENCE(Attribute) = { variable
233 ASN1_SIMPLE(Attribute, type, ASN1_OBJECT),
234 ASN1_SET_OF(Attribute, values, ASN1_OBJECT)
235 } ASN1_SEQUENCE_END(Attribute);
239 ASN1_SIMPLE(AttrOrOID, d.attribute, Attribute)
303 static void add_csrattrs_attr(struct hs20_osu_client *ctx, Attribute *att
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DIntrinsicInst.h369 removeParamAttr(ARG_DEST, Attribute::Alignment);
372 Attribute::getWithAlignment(getContext(), *Alignment));
375 removeParamAttr(ARG_DEST, Attribute::Alignment);
377 Attribute::getWithAlignment(getContext(), Alignment));
434 BaseCL::removeParamAttr(ARG_SOURCE, Attribute::Alignment);
436 BaseCL::addParamAttr(ARG_SOURCE, Attribute::getWithAlignment(
440 BaseCL::removeParamAttr(ARG_SOURCE, Attribute::Alignment);
441 BaseCL::addParamAttr(ARG_SOURCE, Attribute::getWithAlignment(
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DCodeMoverUtils.cpp151 if (!CB->hasFnAttr(Attribute::WillReturn))
153 if (!CB->hasFnAttr(Attribute::NoSync))
/freebsd-11-stable/sys/dev/smartpqi/
H A Dsmartpqi_ioctl.h100 BYTE Attribute:3; member in struct:_RequestBlock_struct::__anon7842
/freebsd-11-stable/sys/contrib/dev/acpica/components/executer/
H A Dexfield.c305 Function = ACPI_READ | (ObjDesc->Field.Attribute << 16);
310 AccessorType = ObjDesc->Field.Attribute;
539 Function = ACPI_WRITE | (ObjDesc->Field.Attribute << 16);
544 AccessorType = ObjDesc->Field.Attribute;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCWasmStreamer.h51 bool EmitSymbolAttribute(MCSymbol *Symbol, MCSymbolAttr Attribute) override;
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/ObjectYAML/
H A DDWARFYAML.h48 llvm::dwarf::Attribute Attribute; member in struct:llvm::DWARFYAML::AttributeAbbrev
268 template <> struct ScalarEnumerationTraits<dwarf::Attribute> {
269 static void enumeration(IO &io, dwarf::Attribute &value) {
/freebsd-11-stable/contrib/llvm-project/lldb/source/Plugins/LanguageRuntime/RenderScript/RenderScriptRuntime/
H A DRenderScriptx86ABIFixups.cpp243 if (call_attribs.hasAttribute(I, llvm::Attribute::ByVal)) {
245 call_inst->removeAttribute(I, llvm::Attribute::ByVal);
256 arg.removeAttr(llvm::Attribute::ByVal);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCWasmStreamer.cpp80 bool MCWasmStreamer::EmitSymbolAttribute(MCSymbol *S, MCSymbolAttr Attribute) { argument
81 assert(Attribute != MCSA_IndirectSymbol && "indirect symbols not supported");
90 switch (Attribute) {
/freebsd-11-stable/sys/contrib/dev/acpica/compiler/
H A Daslopcodes.c444 UINT8 Attribute; local
468 Attribute = (UINT8) AttribOp->Asl.Value.Integer;
469 if ((Attribute != AML_FIELD_ATTRIB_MULTIBYTE) &&
470 (Attribute != AML_FIELD_ATTRIB_RAW_BYTES) &&
471 (Attribute != AML_FIELD_ATTRIB_RAW_PROCESS))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DDwarf.h103 enum Attribute : uint16_t {
455 StringRef AttributeString(unsigned Attribute);
512 unsigned AttributeVersion(Attribute A);
526 unsigned AttributeVendor(Attribute A);
638 template <> struct EnumTraits<Attribute> : public std::true_type {

Completed in 228 milliseconds

1234567891011>>