Home
last modified time | relevance | path

Searched refs:ODRHash (Results 1 – 15 of 15) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/AST/
H A DODRHash.cpp23 void ODRHash::AddStmt(const Stmt *S) { in AddStmt()
28 void ODRHash::AddIdentifierInfo(const IdentifierInfo *II) { in AddIdentifierInfo()
33 void ODRHash::AddDeclarationNameInfo(DeclarationNameInfo NameInfo, in AddDeclarationNameInfo()
46 void ODRHash::AddDeclarationNameInfoImpl(DeclarationNameInfo NameInfo) { in AddDeclarationNameInfoImpl()
114 void ODRHash::AddNestedNameSpecifier(const NestedNameSpecifier *NNS) { in AddNestedNameSpecifier()
142 void ODRHash::AddDependentTemplateName(const DependentTemplateStorage &Name) { in AddDependentTemplateName()
152 void ODRHash::AddTemplateName(TemplateName Name) { in AddTemplateName()
184 void ODRHash::AddTemplateArgument(TemplateArgument TA) { in AddTemplateArgument()
226 void ODRHash::AddTemplateParameterList(const TemplateParameterList *TPL) { in AddTemplateParameterList()
235 void ODRHash::clear() { in clear()
[all …]
H A DODRDiagsEmitter.cpp19 ODRHash Hasher; in computeODRHash()
25 ODRHash Hasher; in computeODRHash()
32 ODRHash Hasher; in computeODRHash()
38 ODRHash Hasher; in computeODRHash()
894 if (!ODRHash::isSubDeclToBeProcessed(D, DC)) in diagnoseMismatch()
1235 ODRHash Hasher; in diagnoseMismatch()
1445 ODRHash Hasher; in diagnoseMismatch()
1574 if (!ODRHash::isSubDeclToBeProcessed(D, DC)) in diagnoseMismatch()
1871 if (!ODRHash::isSubDeclToBeProcessed(D, FirstEnum)) in diagnoseMismatch()
2011 if (!ODRHash::isSubDeclToBeProcessed(D, DC)) in diagnoseMismatch()
[all …]
H A DDeclObjC.cpp793 return data().ODRHash; in getODRHash()
796 ODRHash Hasher; in getODRHash()
798 data().ODRHash = Hasher.CalculateHash(); in getODRHash()
801 return data().ODRHash; in getODRHash()
2086 return data().ODRHash; in getODRHash()
2089 ODRHash Hasher; in getODRHash()
2091 data().ODRHash = Hasher.CalculateHash(); in getODRHash()
2094 return data().ODRHash; in getODRHash()
H A DDecl.cpp3076 DeclContext(DK), redeclarable_base(C), Body(), ODRHash(0), in FunctionDecl()
4609 return ODRHash; in getODRHash()
4614 return ODRHash; in getODRHash()
4618 ODRHash = FT->getODRHash(); in getODRHash()
4619 return ODRHash; in getODRHash()
4622 class ODRHash Hash; in getODRHash()
4625 ODRHash = Hash.CalculateHash(); in getODRHash()
4626 return ODRHash; in getODRHash()
4950 ODRHash = 0; in EnumDecl()
5056 return ODRHash; in getODRHash()
[all …]
H A DDeclCXX.cpp507 return DefinitionData->ODRHash; in getODRHash()
510 ODRHash Hash; in getODRHash()
513 DefinitionData->ODRHash = Hash.CalculateHash(); in getODRHash()
515 return DefinitionData->ODRHash; in getODRHash()
2334 ODRHash SelfHash, OtherHash; in isEquivalent()
H A DStmtProfile.cpp185 ODRHash &Hash;
187 StmtProfilerWithoutPointers(llvm::FoldingSetNodeID &ID, ODRHash &Hash) in StmtProfilerWithoutPointers()
2132 ODRHash Hasher; in VisitLambdaExpr()
2865 class ODRHash &Hash) const { in ProcessODRHash()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DODRHash.h42 class ODRHash {
53 ODRHash() {} in ODRHash() function
H A DDecl.h2050 unsigned ODRHash; variable
3992 unsigned ODRHash; variable
4500 bool hasODRHash() const { return RecordDeclBits.ODRHash; } in hasODRHash()
4501 void setODRHash(unsigned Hash) { RecordDeclBits.ODRHash = Hash; } in setODRHash()
H A DDeclObjC.h1220 unsigned ODRHash = 0; member
2094 unsigned ODRHash = 0; member
H A DStmt.h63 class ODRHash; variable
1615 void ProcessODRHash(llvm::FoldingSetNodeID &ID, ODRHash& Hash) const;
H A DDeclBase.h1706 uint64_t ODRHash : NumOdrHashBits;
H A DDeclCXX.h314 unsigned ODRHash = 0; member
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReaderDecl.cpp785 ED->ODRHash = Record.readInt(); in VisitEnumDecl()
1080 FD->ODRHash = Record.readInt(); in VisitFunctionDecl()
1251 Data.ODRHash = Record.readInt(); in ReadObjCDefinitionData()
1287 if (D->getODRHash() != NewDD.ODRHash) in MergeDefinitionData()
1384 Data.ODRHash = Record.readInt(); in ReadObjCDefinitionData()
1398 if (D->getODRHash() != NewDD.ODRHash) in MergeDefinitionData()
1995 Data.ODRHash = Record.readInt(); in ReadCXXDefinitionData()
2161 if (D->getODRHash() != MergeDD.ODRHash) { in MergeDefinitionData()
/freebsd/contrib/llvm-project/clang/lib/Index/
H A DUSRGeneration.cpp1073 ODRHash Hash{}; in VisitTemplateArgument()
/freebsd/lib/clang/libclang/
H A DMakefile130 SRCS_MIN+= AST/ODRHash.cpp