Searched refs:Property (Results 26 - 50 of 147) sorted by relevance

123456

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DPatchableFunction.cpp35 MachineFunctionProperties::Property::NoVRegs);
H A DStackMapLivenessAnalysis.cpp66 MachineFunctionProperties::Property::NoVRegs);
H A DMachineFunction.cpp87 static const char *getPropertyName(MachineFunctionProperties::Property Prop) {
88 using P = MachineFunctionProperties::Property;
111 OS << Separator << getPropertyName(static_cast<Property>(I));
155 Properties.set(MachineFunctionProperties::Property::IsSSA);
156 Properties.set(MachineFunctionProperties::Property::TracksLiveness);
H A DRegAllocBasic.cpp111 MachineFunctionProperties::Property::NoPHIs);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyPrepareForLiveIntervals.cpp124 MF.getProperties().set(MachineFunctionProperties::Property::TracksLiveness);
/freebsd-11-stable/contrib/llvm-project/clang/utils/TableGen/
H A DClangASTPropertiesEmitter.cpp78 std::vector<Property> Properties;
101 for (Property property :
182 function_ref<void (Property)> visit) {
197 for (Property prop : info.Properties) {
249 void emitReadOfProperty(StringRef readerName, Property property);
253 void emitWriteOfProperty(StringRef writerName, Property property);
299 std::map<StringRef, Property> allProperties;
304 for (Property property : nodeInfo.Properties) {
314 Property existingProperty = result.first->second;
362 Out << "template <class Property" << suffi
[all...]
H A DASTTableGen.h49 #define PropertyClassName "Property"
381 class Property : public WrappedRecord { class in namespace:clang::tblgen
383 Property(llvm::Record *record = nullptr) : WrappedRecord(record) {} function in class:clang::tblgen::Property
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Sema/
H A DScopeInfo.h230 /// Access Expression | "Base" Decl | "Property" Decl
248 /// The extra flag is "true" if the Base and Property are enough to uniquely
259 const NamedDecl *Property = nullptr; member in class:clang::sema::FunctionScopeInfo::WeakObjectProfileTy
269 WeakObjectProfileTy(const Expr *Base, const ObjCPropertyDecl *Property);
274 const NamedDecl *getProperty() const { return Property; }
292 return Base == Other.Base && Property == Other.Property;
313 Val.Property));
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DExecutionDomainFix.h143 MachineFunctionProperties::Property::NoVRegs);
H A DMachineFunction.h120 // Property descriptions:
146 enum class Property : unsigned { class in class:llvm::MachineFunctionProperties
158 bool hasProperty(Property P) const {
162 MachineFunctionProperties &set(Property P) {
167 MachineFunctionProperties &reset(Property P) {
199 BitVector(static_cast<unsigned>(Property::LastProperty)+1);
H A DMachineRegisterInfo.h187 MachineFunctionProperties::Property::IsSSA);
192 MF->getProperties().reset(MachineFunctionProperties::Property::IsSSA);
196 /// (see MachineFUnctionProperties::Property description for details)
199 MachineFunctionProperties::Property::TracksLiveness);
209 MachineFunctionProperties::Property::TracksLiveness);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64PreLegalizerCombiner.cpp138 MachineFunctionProperties::Property::FailedISel))
H A DAArch64A53Fix835769.cpp92 MachineFunctionProperties::Property::NoVRegs);
H A DAArch64CompressJumpTables.cpp55 MachineFunctionProperties::Property::NoVRegs);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonSplitConst32AndConst64.cpp51 MachineFunctionProperties::Property::NoVRegs);
H A DHexagonCFGOptimizer.cpp53 MachineFunctionProperties::Property::NoVRegs);
H A DHexagonFixupHwLoops.cpp49 MachineFunctionProperties::Property::NoVRegs);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/
H A DCombiner.cpp103 MachineFunctionProperties::Property::FailedISel))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp339 Properties.set(MachineFunctionProperties::Property::NoPHIs);
343 Properties.set(MachineFunctionProperties::Property::IsSSA);
345 Properties.reset(MachineFunctionProperties::Property::IsSSA);
349 Properties.set(MachineFunctionProperties::Property::NoVRegs);
410 MF.getProperties().set(MachineFunctionProperties::Property::Legalized);
413 MachineFunctionProperties::Property::RegBankSelected);
415 MF.getProperties().set(MachineFunctionProperties::Property::Selected);
417 MF.getProperties().set(MachineFunctionProperties::Property::FailedISel);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/PowerPC/
H A DPPCEarlyReturn.cpp194 MachineFunctionProperties::Property::NoVRegs);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86PadShortFunction.cpp66 MachineFunctionProperties::Property::NoVRegs);
/freebsd-11-stable/contrib/llvm-project/clang/lib/AST/
H A DDeclObjC.cpp124 const ObjCPropertyDecl *Property) const {
125 Selector Sel = Property->getSetterName();
148 if (P->getIdentifier() == Property->getIdentifier()) {
157 if (Proto->HasUserDeclaredSetterMethod(Property))
163 if (OSC->HasUserDeclaredSetterMethod(Property))
170 if (PI->HasUserDeclaredSetterMethod(Property))
1841 ObjCSubstitutionContext::Property);
1966 const ObjCPropertyDecl *Property, ProtocolPropertySet &PS,
1972 if (Prop == Property)
1974 if (Prop->getIdentifier() == Property
1965 collectInheritedProtocolProperties( const ObjCPropertyDecl *Property, ProtocolPropertySet &PS, PropertyDeclOrder &PO) const argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DRangeSelector.cpp50 StringRef Property) {
51 return invalidArgumentError(Description + " requires property '" + Property +
49 missingPropertyError(StringRef ID, Twine Description, StringRef Property) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Lanai/
H A DLanaiDelaySlotFiller.cpp62 MachineFunctionProperties::Property::NoVRegs);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DThumb2ITBlockPass.cpp58 MachineFunctionProperties::Property::NoVRegs);

Completed in 435 milliseconds

123456