Home
last modified time | relevance | path

Searched refs:Class (Results 1 – 25 of 421) sorted by relevance

12345678910>>...17

/freebsd/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DObjCARCInstKind.h56 raw_ostream &operator<<(raw_ostream &OS, const ARCInstKind Class);
59 bool IsUser(ARCInstKind Class);
62 bool IsRetain(ARCInstKind Class);
65 bool IsAutorelease(ARCInstKind Class);
69 bool IsForwarding(ARCInstKind Class);
73 bool IsNoopOnNull(ARCInstKind Class);
77 bool IsNoopOnGlobal(ARCInstKind Class);
81 bool IsAlwaysTail(ARCInstKind Class);
85 bool IsNeverTail(ARCInstKind Class);
89 bool IsNoThrow(ARCInstKind Class);
[all …]
/freebsd/contrib/llvm-project/llvm/lib/Transforms/ObjCARC/
H A DDependencyAnalysis.cpp38 switch (Class) { in CanAlterRefCount()
71 if (!CanDecrementRefCount(Class)) in CanDecrementRefCount()
84 if (Class == ARCInstKind::Call) in CanUse()
130 ARCInstKind Class = GetARCInstKind(Inst); in Depends() local
131 switch (Class) { in Depends()
137 return CanUse(Inst, Arg, PA, Class); in Depends()
142 ARCInstKind Class = GetARCInstKind(Inst); in Depends() local
143 switch (Class) { in Depends()
156 switch (Class) { in Depends()
186 switch (Class) { in Depends()
[all …]
H A DPtrState.cpp229 ARCInstKind Class) { in HandlePotentialAlterRefCount() argument
233 if (!CanDecrementRefCount(Inst, Ptr, PA, Class)) in HandlePotentialAlterRefCount()
256 ARCInstKind Class) { in HandlePotentialUse() argument
292 if (CanUse(Inst, Ptr, PA, Class)) { in HandlePotentialUse()
296 } else if (const auto *Call = getreturnRVOperand(*Inst, Class)) { in HandlePotentialUse()
305 if (CanUse(Inst, Ptr, PA, Class)) { in HandlePotentialUse()
379 ARCInstKind Class, const BundledRetainClaimRVs &BundledRVs) { in HandlePotentialAlterRefCount() argument
382 if (!CanDecrementRefCount(Inst, Ptr, PA, Class) && in HandlePotentialAlterRefCount()
383 Class != ARCInstKind::IntrinsicUser) in HandlePotentialAlterRefCount()
418 ARCInstKind Class) { in HandlePotentialUse() argument
[all …]
H A DObjCARCOpts.cpp753 Class = ARCInstKind::Autorelease; in OptimizeAutoreleaseRVCall()
819 switch (Class) { in OptimizeIndividualCalls()
898 if (IsNoopOnGlobal(Class)) in OptimizeIndividualCallImpl()
907 switch (Class) { in OptimizeIndividualCallImpl()
1021 if (IsNeverTail(Class)) { in OptimizeIndividualCallImpl()
1029 if (IsNoThrow(Class)) { in OptimizeIndividualCallImpl()
1037 if (!IsNoopOnNull(Class)) { in OptimizeIndividualCallImpl()
1105 switch (Class) { in OptimizeIndividualCallImpl()
1333 switch (Class) { in VisitInstructionBottomUp()
1516 switch (Class) { in VisitInstructionTopDown()
[all …]
H A DDependencyAnalysis.h65 ARCInstKind Class);
70 ProvenanceAnalysis &PA, ARCInstKind Class);
75 ProvenanceAnalysis &PA, ARCInstKind Class);
/freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DPrettyTypeDumper.cpp104 while (auto Class = E.getNext()) { in filterAndSortClassDefs() local
112 if (Class->getUnmodifiedTypeId() != 0) { in filterAndSortClassDefs()
117 if (Printer.IsTypeExcluded(Class->getName(), Class->getLength())) { in filterAndSortClassDefs()
183 if (Class.getUnmodifiedTypeId() != 0) { in printClassDecl()
184 if (Class.isConstType()) in printClassDecl()
186 if (Class.isVolatileType()) in printClassDecl()
188 if (Class.isUnalignedType()) in printClassDecl()
249 for (auto &Class : Filtered) in start() local
250 dumpClassLayout(*Class); in start()
253 if (Printer.IsTypeExcluded(Class->getName(), Class->getLength())) in start()
[all …]
H A DPrettyClassDefinitionDumper.h32 void start(const PDBSymbolTypeUDT &Class);
33 void start(const ClassLayout &Class);
36 void prettyPrintClassIntro(const ClassLayout &Class);
37 void prettyPrintClassOutro(const ClassLayout &Class);
H A DPrettyClassDefinitionDumper.cpp30 void ClassDefinitionDumper::start(const PDBSymbolTypeUDT &Class) { in start() argument
34 ClassLayout Layout(Class); in start()
52 const PDBSymbolTypeUDT &Class = Layout.getClass(); in prettyPrintClassIntro() local
61 WithColor(Printer, PDB_ColorItem::Keyword).get() << Class.getUdtKind() << " "; in prettyPrintClassIntro()
62 WithColor(Printer, PDB_ColorItem::Type).get() << Class.getName(); in prettyPrintClassIntro()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DTypeLocNodes.def14 // TYPELOC(Class, Base) - A TypeLoc subclass. If UNQUAL_TYPELOC is
17 // UNQUAL_TYPELOC(Class, Base, Type) - An UnqualTypeLoc subclass.
19 // ABSTRACT_TYPELOC(Class) - Refers to TypeSpecLoc and DeclaratorLoc.
24 # define UNQUAL_TYPELOC(Class, Base) TYPELOC(Class, Base)
28 # define ABSTRACT_TYPELOC(Class, Base) UNQUAL_TYPELOC(Class, Base)
32 #define TYPE(Class, Base) UNQUAL_TYPELOC(Class, Base##Loc)
33 #define ABSTRACT_TYPE(Class, Base) ABSTRACT_TYPELOC(Class, Base##Loc)
H A DTypeProperties.td12 let Class = ComplexType in {
20 let Class = PointerType in {
28 let Class = AdjustedType in {
39 let Class = DecayedType in {
93 let Class = ArrayType in {
165 let Class = VectorType in {
227 let Class = MatrixType in {
369 let Class = UsingType in {
452 let Class = AutoType in {
503 let Class = TagType in {
[all …]
H A DPropertiesBase.td170 HasProperties Class;
195 HasProperties Class;
205 HasProperties Class;
215 HasProperties Class;
257 let Class = PropertyTypeCase<APValue, "None"> in {
263 let Class = PropertyTypeCase<APValue, "Int"> in {
269 let Class = PropertyTypeCase<APValue, "Float"> in {
328 let Class = PropertyTypeCase<APValue, "Vector"> in {
348 let Class = PropertyTypeCase<APValue, "Array"> in {
377 let Class = PropertyTypeCase<APValue, "Struct"> in {
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DInstruction.def25 #define HANDLE_TERM_INST(num, opcode, Class)
27 #define HANDLE_TERM_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
41 #define HANDLE_UNARY_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
55 #define HANDLE_BINARY_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
67 #define HANDLE_MEMORY_INST(num, opcode, Class)
69 #define HANDLE_MEMORY_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
81 #define HANDLE_CAST_INST(num, opcode, Class)
83 #define HANDLE_CAST_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
97 #define HANDLE_FUNCLETPAD_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
111 #define HANDLE_OTHER_INST(num, opcode, Class) HANDLE_INST(num, opcode, Class)
[all …]
/freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/
H A DCodeView.h53 #define CV_DEFINE_ENUM_CLASS_FLAGS_OPERATORS(Class) \ argument
54 inline Class operator|(Class a, Class b) { \
55 return static_cast<Class>(llvm::to_underlying(a) | \
58 inline Class operator&(Class a, Class b) { \
59 return static_cast<Class>(llvm::to_underlying(a) & \
62 inline Class operator~(Class a) { \
63 return static_cast<Class>(~llvm::to_underlying(a)); \
65 inline Class &operator|=(Class &a, Class b) { \
69 inline Class &operator&=(Class &a, Class b) { \
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DObjCARCInstKind.cpp30 switch (Class) { in operator <<()
311 switch (Class) { in IsUser()
345 switch (Class) { in IsRetain()
381 switch (Class) { in IsAutorelease()
416 switch (Class) { in IsForwarding()
451 switch (Class) { in IsNoopOnNull()
486 switch (Class) { in IsNoopOnGlobal()
522 switch (Class) { in IsAlwaysTail()
561 switch (Class) { in IsNeverTail()
598 switch (Class) { in IsNoThrow()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Parse/
H A DParseCXXInlineMethods.cpp245 : Self(P), Class(C) {} in LateParsedClass()
248 Self->DeallocateParsedClasses(Class); in ~LateParsedClass()
252 Self->ParseLexedMethodDeclarations(*Class); in ParseLexedMethodDeclarations()
256 Self->ParseLexedMemberInitializers(*Class); in ParseLexedMemberInitializers()
260 Self->ParseLexedMethodDefs(*Class); in ParseLexedMethodDefs()
264 Self->ParseLexedAttributes(*Class); in ParseLexedAttributes()
268 Self->ParseLexedPragmas(*Class); in ParseLexedPragmas()
309 ParsingClass &Class; member
314 Class(Class) { in ReenterClassScopeRAII()
316 if (Class.TopLevelClass) in ReenterClassScopeRAII()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaLambda.cpp258 DC->addDecl(Class); in createLambdaClosureType()
260 return Class; in createLambdaClosureType()
1051 LSI->Lambda = Class; in ActOnLambdaExpressionAfterIntroducer()
1510 Class->setInvalidDecl(); in ActOnLambdaError()
1512 ActOnFields(nullptr, Class->getLocation(), Class, Fields, SourceLocation(), in ActOnLambdaError()
1692 S.Context, Class, Loc, in addFunctionPointerConversion()
1765 Class->addDecl(Invoke); in addFunctionPointerConversion()
1821 Class->addDecl(Conversion); in addBlockPointerConversion()
2017 CXXRecordDecl *Class; in BuildLambdaExpr() local
2027 Class = LSI->Lambda; in BuildLambdaExpr()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/
H A DNativeTypeUDT.cpp23 Class(std::move(CR)), Tag(&*Class) {} in NativeTypeUDT()
94 if (Class) in getVirtualTableShapeId()
95 return Session.getSymbolCache().findSymbolByTypeIndex(Class->VTableShape); in getVirtualTableShapeId()
104 if (Class) in getLength()
105 return Class->getSize(); in getLength()
115 case TypeRecordKind::Class: in getUdtKind()
116 return PDB_UdtType::Class; in getUdtKind()
/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DObjCNoReturn.cpp20 static bool isSubclass(const ObjCInterfaceDecl *Class, IdentifierInfo *II) { in isSubclass() argument
21 if (!Class) in isSubclass()
23 if (Class->getIdentifier() == II) in isSubclass()
25 return isSubclass(Class->getSuperClass(), II); in isSubclass()
/freebsd/contrib/llvm-project/lldb/bindings/
H A Dmacros.swig1 %define STRING_EXTENSION_LEVEL_OUTSIDE(Class, Level)
2 %extend lldb:: ## Class ## {
16 %define STRING_EXTENSION_OUTSIDE(Class)
17 %extend lldb:: ## Class ## {
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTTypeTraits.cpp52 #define CLAUSE_CLASS(Enum, Str, Class) {NKI_OMPClause, #Class}, argument
134 case Stmt::CLASS##Class: return ASTNodeKind(NKI_##CLASS); in getFromNode()
143 #define TYPE(Class, Base) \ in getFromNode() argument
144 case Type::Class: return ASTNodeKind(NKI_##Class##Type); in getFromNode()
145 #define ABSTRACT_TYPE(Class, Base) in getFromNode() argument
165 #define CLAUSE_CLASS(Enum, Str, Class) \ in getFromNode() argument
167 return ASTNodeKind(NKI_##Class); in getFromNode()
/freebsd/contrib/llvm-project/llvm/utils/TableGen/
H A DSearchableTableEmitter.cpp47 Record *Class = nullptr; member
682 Enum->Class = Records.getClass(FilterClass); in run()
683 if (!Enum->Class) in run()
776 Record *Class = NameRec.second.get(); in run() local
777 if (Class->getSuperClasses().size() != 1 || in run()
778 !Class->isSubClassOf(SearchableTable)) in run()
781 StringRef TableName = Class->getName(); in run()
783 if (!Class->isValueUnset("EnumNameField")) { in run()
786 if (!Class->isValueUnset("EnumValueField")) in run()
792 Enum->Class = Class; in run()
[all …]
/freebsd/contrib/llvm-project/llvm/lib/TableGen/
H A DDetailedRecordsBackend.cpp89 auto *const Class = ClassPair.second.get(); in printClasses() local
90 OS << formatv("\n{0} |{1}|\n", Class->getNameInitAsString(), in printClasses()
91 SrcMgr.getFormattedLocationNoOffset(Class->getLoc().front())); in printClasses()
92 printTemplateArgs(Class, OS); in printClasses()
93 printSuperclasses(Class, OS); in printClasses()
94 printFields(Class, OS); in printClasses()
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DBasicObjCFoundationChecks.cpp181 if (Class == FC_NSArray) { in warnIfNilArg()
195 if (Class == FC_NSDictionary) { in warnIfNilArg()
243 if (Class == FC_NSString) { in checkPreObjCMessage()
270 } else if (Class == FC_NSArray) { in checkPreObjCMessage()
631 assert(Class); in checkPreObjCMessage()
695 switch (findKnownClass(Class)) { in isVariadicMessage()
708 switch (findKnownClass(Class)) { in isVariadicMessage()
1029 if (Class != FC_NSDictionary && in checkPostObjCMessage()
1030 Class != FC_NSArray && in checkPostObjCMessage()
1031 Class != FC_NSSet && in checkPostObjCMessage()
[all …]
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/WebKit/
H A DPtrTypesSemantics.h36 std::optional<bool> isRefCountable(const clang::CXXRecordDecl* Class);
39 bool isRefCounted(const clang::CXXRecordDecl *Class);
43 std::optional<bool> isUncounted(const clang::CXXRecordDecl* Class);
/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexresolv.c279 RefType = StackDesc->Reference.Class; in AcpiExResolveObjectToValue()
538 switch (ObjDesc->Reference.Class) in AcpiExResolveMultiple()
545 if (ObjDesc->Reference.Class == ACPI_REFCLASS_REFOF) in AcpiExResolveMultiple()
620 Status = AcpiDsMethodDataGetValue (ObjDesc->Reference.Class, in AcpiExResolveMultiple()
630 Status = AcpiDsMethodDataGetNode (ObjDesc->Reference.Class, in AcpiExResolveMultiple()
657 ObjDesc->Reference.Class)); in AcpiExResolveMultiple()

12345678910>>...17