Home
last modified time | relevance | path

Searched refs:Properties (Results 1 – 25 of 131) sorted by relevance

123456

/openbsd-src/gnu/llvm/lldb/source/Core/
H A DUserSettingsController.cpp34 Properties::GetPropertyValue(const ExecutionContext *exe_ctx, in GetPropertyValue()
43 Status Properties::SetPropertyValue(const ExecutionContext *exe_ctx, in SetPropertyValue()
55 void Properties::DumpAllPropertyValues(const ExecutionContext *exe_ctx, in DumpAllPropertyValues()
69 void Properties::DumpAllDescriptions(CommandInterpreter &interpreter, in DumpAllDescriptions()
78 Status Properties::DumpPropertyValue(const ExecutionContext *exe_ctx, in DumpPropertyValue()
93 Properties::Apropos(llvm::StringRef keyword, in Apropos()
103 Properties::GetSubProperty(const ExecutionContext *exe_ctx, in GetSubProperty()
111 const char *Properties::GetExperimentalSettingsName() { return "experimental"; } in GetExperimentalSettingsName()
113 bool Properties::IsSettingExperimental(llvm::StringRef setting) { in IsSettingExperimental()
/openbsd-src/gnu/llvm/clang/lib/Index/
H A DIndexSymbol.cpp90 Info.Properties = SymbolPropertySet(); in getSymbolInfo()
94 Info.Properties |= (SymbolPropertySet)SymbolProperty::Local; in getSymbolInfo()
97 Info.Properties |= (SymbolPropertySet)SymbolProperty::ProtocolInterface; in getSymbolInfo()
101 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
129 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
135 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
136 Info.Properties |= in getSymbolInfo()
139 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
140 Info.Properties |= in getSymbolInfo()
155 Info.Properties |= (SymbolPropertySet)SymbolProperty::Generic; in getSymbolInfo()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DUserSettingsController.h33 class Properties {
35 Properties() = default;
37 Properties(const lldb::OptionValuePropertiesSP &collection_sp) in Properties() function
40 virtual ~Properties() = default;
/openbsd-src/gnu/llvm/llvm/utils/TableGen/
H A DSDNodeProperties.cpp17 unsigned Properties = 0; in parseSDPatternOperatorProperties() local
33 Properties |= 1 << Offset; in parseSDPatternOperatorProperties()
39 return Properties; in parseSDPatternOperatorProperties()
H A DCodeGenTarget.cpp610 Properties = 0; in ComplexPattern()
614 Properties |= 1 << SDNPHasChain; in ComplexPattern()
616 Properties |= 1 << SDNPOptInGlue; in ComplexPattern()
618 Properties |= 1 << SDNPMayStore; in ComplexPattern()
620 Properties |= 1 << SDNPMayLoad; in ComplexPattern()
622 Properties |= 1 << SDNPSideEffect; in ComplexPattern()
624 Properties |= 1 << SDNPMemOperand; in ComplexPattern()
626 Properties |= 1 << SDNPVariadic; in ComplexPattern()
628 Properties |= 1 << SDNPWantRoot; in ComplexPattern()
630 Properties |= 1 << SDNPWantParent; in ComplexPattern()
[all …]
H A DCodeGenIntrinsics.h66 unsigned Properties; member
142 return Properties & (1 << Prop); in hasProperty()
H A DCodeGenTarget.h208 unsigned Properties; // Node properties variable
219 bool hasProperty(enum SDNP Prop) const { return Properties & (1 << Prop); } in hasProperty()
/openbsd-src/gnu/llvm/lldb/utils/TableGen/
H A DLLDBPropertyDefEmitter.cpp173 std::vector<Record *> Properties = in EmitPropertyDefs() local
175 for (auto &PropertyRecordPair : getRecordsByName(Properties, "Definition")) { in EmitPropertyDefs()
184 std::vector<Record *> Properties = in EmitPropertyEnumDefs() local
186 for (auto &PropertyRecordPair : getRecordsByName(Properties, "Definition")) { in EmitPropertyEnumDefs()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/LiveDebugValues/
H A DInstrRefBasedImpl.cpp202 DbgValueProperties Properties; member
205 DbgValueProperties Properties) in ResolvedDbgValue()
206 : Ops(Ops.begin(), Ops.end()), Properties(Properties) {} in ResolvedDbgValue()
249 DbgValueProperties Properties; member
251 const DbgValueProperties &Properties) in UseBeforeDef()
253 Properties(Properties) {} in UseBeforeDef()
389 recoverAsEntryValue(Var, Value.Properties, Num); in loadVarInloc()
407 addUseBeforeDef(Var, Value.Properties, DbgOps, in loadVarInloc()
417 auto NewValue = ResolvedDbgValue{ResolvedDbgOps, Value.Properties}; in loadVarInloc()
422 MTracker->emitLoc(ResolvedDbgOps, Var, Value.Properties)); in loadVarInloc()
[all …]
H A DInstrRefBasedImpl.h455 DbgValueProperties Properties;
470 : OpCount(DbgOps.size()), BlockNo(0), Properties(Prop), Kind(Def) {
491 : OpCount(0), BlockNo(BlockNo), Properties(Prop), Kind(Kind) {
496 : OpCount(0), BlockNo(0), Properties(Prop), Kind(Kind) {
507 if (std::tie(Kind, Properties) != std::tie(Other.Kind, Other.Properties))
553 return Properties.getLocationOpCount();
950 const DbgValueProperties &Properties);
985 void defVar(const MachineInstr &MI, const DbgValueProperties &Properties,
991 ? DbgValue(DebugOps, Properties)
992 : DbgValue(Properties, DbgValue::Undef);
/openbsd-src/gnu/llvm/llvm/include/llvm/CodeGen/
H A DMachineFunction.h194 return Properties[static_cast<unsigned>(P)];
198 Properties.set(static_cast<unsigned>(P));
203 Properties.reset(static_cast<unsigned>(P));
209 Properties.reset();
214 Properties |= MFP.Properties;
219 Properties.reset(MFP.Properties);
226 return !V.Properties.test(Properties);
233 BitVector Properties =
337 MachineFunctionProperties Properties;
763 const MachineFunctionProperties &getProperties() const { return Properties; }
[all …]
H A DSDNodeProperties.td13 list<SDNodeProperty> Properties = [];
17 // Selection DAG Node Properties.
/openbsd-src/gnu/usr.bin/perl/lib/unicore/
H A DPropertyAliases.txt57 # Numeric Properties
65 # String Properties
81 # Miscellaneous Properties
107 # Catalog Properties
114 # Enumerated Properties
139 # Binary Properties
/openbsd-src/gnu/llvm/clang/include/clang/Analysis/FlowSensitive/
H A DValue.h66 auto It = Properties.find(Name); in getProperty()
67 return It == Properties.end() ? nullptr : It->second; in getProperty()
73 Properties.insert_or_assign(Name, &Val); in setProperty()
78 llvm::StringMap<Value *> Properties; variable
/openbsd-src/gnu/llvm/llvm/tools/llvm-exegesis/lib/
H A DAssembler.cpp190 auto &Properties = MF.getProperties(); in assembleToStream() local
191 Properties.set(MachineFunctionProperties::Property::NoVRegs); in assembleToStream()
192 Properties.reset(MachineFunctionProperties::Property::IsSSA); in assembleToStream()
193 Properties.set(MachineFunctionProperties::Property::NoPHIs); in assembleToStream()
214 Properties.reset(MachineFunctionProperties::Property::TracksLiveness); in assembleToStream()
/openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/LogicalView/Core/
H A DLVSupport.h103 #define PROPERTY(ENUM, FIELD) BOOL_BIT(Properties, ENUM, FIELD)
104 #define PROPERTY_1(ENUM, FIELD, F1) BOOL_BIT_1(Properties, ENUM, FIELD, F1)
106 BOOL_BIT_2(Properties, ENUM, FIELD, F1, F2)
108 BOOL_BIT_3(Properties, ENUM, FIELD, F1, F2, F3)
H A DLVObject.h148 LVProperties<Property> Properties; variable
176 Properties = Object.Properties; in LVObject()
/openbsd-src/gnu/usr.bin/binutils/ld/
H A Dh8-doc.texi10 @c 3. Properties of this configuration
H A Dconfigdoc.texi16 @c 3. Properties of this configuration
H A Dgen-doc.texi16 @c 3. Properties of this configuration
/openbsd-src/gnu/usr.bin/binutils-2.17/ld/
H A Dh8-doc.texi10 @c 3. Properties of this configuration
H A Dconfigdoc.texi18 @c 3. Properties of this configuration
H A Dgen-doc.texi18 @c 3. Properties of this configuration
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DType.cpp842 uint64_t Properties; member
845 TargetTypeInfo(Type *LayoutType, ArgTys... Properties) in TargetTypeInfo()
846 : LayoutType(LayoutType), Properties((0 | ... | Properties)) {} in TargetTypeInfo()
865 uint64_t Properties = getTargetTypeInfo(this).Properties; in hasProperty() local
866 return (Properties & Prop) == Prop; in hasProperty()
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUPropagateAttributes.cpp100 Properties(Props), OrigF(OrigF), NewF(NewF) {} in Clone()
102 FnProperties Properties; member in __anonceddf6120111::AMDGPUPropagateAttributes::Clone
204 if (C.OrigF == OrigF && PropsNeeded == C.Properties) in findFunction()

123456