Searched refs:Property (Results 1 - 25 of 147) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/llvm/utils/TableGen/
H A DSDNodeProperties.cpp17 for (Record *Property : R->getValueAsListOfDefs("Properties")) {
18 if (Property->getName() == "SDNPCommutative") {
20 } else if (Property->getName() == "SDNPAssociative") {
22 } else if (Property->getName() == "SDNPHasChain") {
24 } else if (Property->getName() == "SDNPOutGlue") {
26 } else if (Property->getName() == "SDNPInGlue") {
28 } else if (Property->getName() == "SDNPOptInGlue") {
30 } else if (Property->getName() == "SDNPMayStore") {
32 } else if (Property->getName() == "SDNPMayLoad") {
34 } else if (Property
[all...]
H A DCodeGenTarget.cpp747 Record *Property = PropList->getElementAsRecord(i); local
748 assert(Property->isSubClassOf("IntrinsicProperty") &&
751 if (Property->getName() == "IntrNoMem")
753 else if (Property->getName() == "IntrReadMem")
755 else if (Property->getName() == "IntrWriteMem")
757 else if (Property->getName() == "IntrArgMemOnly")
759 else if (Property->getName() == "IntrInaccessibleMemOnly")
761 else if (Property->getName() == "IntrInaccessibleMemOrArgMemOnly")
764 else if (Property->getName() == "Commutative")
766 else if (Property
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/utils/TableGen/
H A DLLDBPropertyDefEmitter.cpp24 static void emitPropertyEnum(Record *Property, raw_ostream &OS) { argument
26 OS << Property->getName();
30 static void emitProperty(Record *Property, raw_ostream &OS) { argument
34 OS << "\"" << Property->getValueAsString("Name") << "\"";
39 OS << Property->getValueAsString("Type");
43 OS << (Property->getValue("Global") ? "true" : "false");
46 bool hasDefaultUnsignedValue = Property->getValue("HasDefaultUnsignedValue");
47 bool hasDefaultEnumValue = Property->getValue("HasDefaultEnumValue");
48 bool hasDefaultStringValue = Property->getValue("HasDefaultStringValue");
53 "Property mus
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/GlobalISel/
H A DInstructionSelect.h36 .set(MachineFunctionProperties::Property::IsSSA)
37 .set(MachineFunctionProperties::Property::Legalized)
38 .set(MachineFunctionProperties::Property::RegBankSelected);
43 MachineFunctionProperties::Property::Selected);
H A DLocalizer.h85 .set(MachineFunctionProperties::Property::IsSSA)
86 .set(MachineFunctionProperties::Property::Legalized)
87 .set(MachineFunctionProperties::Property::RegBankSelected);
H A DLegalizer.h53 MachineFunctionProperties::Property::IsSSA);
58 MachineFunctionProperties::Property::Legalized);
63 MachineFunctionProperties::Property::NoPHIs);
H A DRegBankSelect.h627 .set(MachineFunctionProperties::Property::IsSSA)
628 .set(MachineFunctionProperties::Property::Legalized);
633 MachineFunctionProperties::Property::RegBankSelected);
638 .set(MachineFunctionProperties::Property::NoPHIs);
/freebsd-11-stable/contrib/llvm-project/lldb/source/Interpreter/
H A DOptionValueProperties.cpp15 #include "lldb/Interpreter/Property.h"
53 Property property(definition);
64 Property *property = ProtectedGetPropertyAtIndex(property_idx);
73 Property property(name, desc, is_global, value_sp);
225 const Property *
234 const Property *OptionValueProperties::GetPropertyAtIndex(
241 const Property *setting = GetPropertyAtIndex(exe_ctx, will_modify, idx);
267 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
276 const Property *property = GetPropertyAtIndex(exe_ctx, false, idx);
284 const Property *propert
[all...]
H A DProperty.cpp1 //===-- Property.cpp --------------------------------------------*- C++ -*-===//
9 #include "lldb/Interpreter/Property.h"
23 Property::Property(const PropertyDefinition &definition) function in class:Property
221 Property::Property(ConstString name, ConstString desc, function in class:Property
226 bool Property::DumpQualifiedName(Stream &strm) const {
236 void Property::Dump(const ExecutionContext *exe_ctx, Stream &strm,
264 void Property::DumpDescription(CommandInterpreter &interpreter, Stream &strm,
295 void Property
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Interpreter/
H A DProperty.h1 //===-- Property.h ----------------------------------------------*- C++ -*-===//
23 // Property class instances can be constructed using one of these.
36 class Property { class in namespace:lldb_private
38 Property(const PropertyDefinition &definition);
40 Property(ConstString name, ConstString desc, bool is_global,
H A DOptionValueProperties.h17 #include "lldb/Interpreter/Property.h"
58 std::vector<const Property *> &matching_properties) const;
77 virtual const Property *GetProperty(const ExecutionContext *exe_ctx,
81 virtual const Property *GetPropertyAtIndex(const ExecutionContext *exe_ctx,
85 // Property can be be a property path like
87 virtual const Property *GetPropertyAtPath(const ExecutionContext *exe_ctx,
204 Property *ProtectedGetPropertyAtIndex(uint32_t idx) {
208 const Property *ProtectedGetPropertyAtIndex(uint32_t idx) const {
215 std::vector<Property> m_properties;
/freebsd-11-stable/contrib/llvm-project/lldb/include/lldb/Core/
H A DUserSettingsController.h27 class Property;
69 std::vector<const Property *> &matching_properties) const;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DFuncletLayout.cpp33 MachineFunctionProperties::Property::NoVRegs);
H A DTailDuplication.cpp66 .set(MachineFunctionProperties::Property::NoPHIs);
H A DResetMachineFunctionPass.cpp63 MachineFunctionProperties::Property::FailedISel)) {
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DReachingDefAnalysis.h90 MachineFunctionProperties::Property::NoVRegs).set(
91 MachineFunctionProperties::Property::TracksLiveness);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Sema/
H A DScopeInfo.cpp117 : Base(nullptr, true), Property(getBestPropertyDecl(PropE)) {
132 : Base(nullptr, true), Property(Prop) {
140 : Base(nullptr, true), Property(DRE->getDecl()) {
141 assert(isa<VarDecl>(Property));
146 : Base(getBaseInfo(IvarE->getBase())), Property(IvarE->getDecl()) {
H A DSemaObjCProperty.cpp360 auto isImplicitlyReadonlyAtomic = [](ObjCPropertyDecl *Property) -> bool {
362 auto Attrs = Property->getPropertyAttributes();
369 if (Property->getPropertyAttributesAsWritten() &
584 // Property defaults to 'assign' if it is readwrite, unless this is ARC
849 ObjCPropertyDecl *Property) {
850 assert(isa<ObjCProtocolDecl>(Property->getDeclContext()) &&
856 PDecl->collectInheritedProtocolProperties(Property, ProtocolSet,
863 PDecl->collectInheritedProtocolProperties(Property, ProtocolSet,
871 return Property;
873 ObjCPropertyDecl *OriginalProperty = Property;
847 SelectPropertyForSynthesisFromProtocols(Sema &S, SourceLocation AtLoc, ObjCInterfaceDecl *ClassDecl, ObjCPropertyDecl *Property) argument
1641 DiagnosePropertyMismatch(ObjCPropertyDecl *Property, ObjCPropertyDecl *SuperProperty, const IdentifierInfo *inheritedName, bool OverridingProtocolProperty) argument
2191 const ObjCPropertyDecl *Property = I->second; local
2375 AddPropertyAttrs(Sema &S, ObjCMethodDecl *PropertyMethod, ObjCPropertyDecl *Property) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/lldb/source/Core/
H A DUserSettingsController.cpp27 class Property;
87 std::vector<const Property *> &matching_properties) const {
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMOptimizeBarriersPass.cpp31 MachineFunctionProperties::Property::NoVRegs);
H A DMVEVPTBlockPass.cpp53 MachineFunctionProperties::Property::NoVRegs).set(
54 MachineFunctionProperties::Property::TracksLiveness);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Mips/
H A DMipsPreLegalizerCombiner.cpp83 MachineFunctionProperties::Property::FailedISel))
/freebsd-11-stable/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectApropos.cpp13 #include "lldb/Interpreter/Property.h"
74 std::vector<const Property *> properties;
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/XCore/
H A DXCoreFrameToArgsOffsetElim.cpp31 MachineFunctionProperties::Property::NoVRegs);
/freebsd-11-stable/cddl/contrib/opensolaris/lib/pyzfs/common/
H A Ddataset.py26 datasets. Also implements the Property class, which describes ZFS
35 class Property(object): class in inherits:object
73 proptable[name] = Property(t)
77 """Return the Property object that is identified by the given
139 Property object.)

Completed in 249 milliseconds

123456