Home
last modified time | relevance | path

Searched refs:NodeID (Results 1 – 6 of 6) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp183 template <class T> struct NodeID;
184 template <> struct NodeID<Expr> { static constexpr StringRef value = "expr"; }; argument
185 template <> struct NodeID<Decl> { static constexpr StringRef value = "decl"; }; argument
186 constexpr StringRef NodeID<Expr>::value;
187 constexpr StringRef NodeID<Decl>::value;
193 const StringRef ID = NodeID<T>::value; in tryEachMatch()
262 .bind(NodeID<Expr>::value)), in tryEachDeclRef()
265 const auto *E = RefNodes.getNodeAs<Expr>(NodeID<Expr>::value); in tryEachDeclRef()
276 NodeID<Expr>::value, in isUnevaluated()
301 .bind(NodeID<Expr>::value)), in isUnevaluated()
[all …]
H A DThreadSafetyTIL.cpp272 N->NodeID = P->SizeOfSubTree; in computeNodeSize()
282 N->NodeID += P->NodeID; // Fix NodeIDs relative to starting node. in computeNodeID()
H A DPathDiagnostic.cpp442 llvm::FoldingSetNodeID NodeID; in addDiagnostic() local
443 NodeID.Add(PD); in addDiagnostic()
445 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in addDiagnostic()
448 Entry = new (Entry) PDFileEntry(NodeID); in addDiagnostic()
463 llvm::FoldingSetNodeID NodeID; in getFiles() local
464 NodeID.Add(PD); in getFiles()
466 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in getFiles()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/
H A DPathDiagnostic.h96 PDFileEntry(llvm::FoldingSetNodeID &NodeID) : NodeID(NodeID) {} in PDFileEntry() argument
104 const llvm::FoldingSetNodeID NodeID; variable
107 void Profile(llvm::FoldingSetNodeID &ID) { ID = NodeID; } in Profile()
/freebsd/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1518 int NodeID = 0; member
1529 return OtherNode.NodeID > NodeID && in isParentOf()
1530 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOf()
1534 return OtherNode.NodeID >= NodeID && in isParentOfOrEqual()
1535 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOfOrEqual()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1251 unsigned NodeID; member
1256 RootData(unsigned id): NodeID(id), in RootData()
1259 unsigned getSparseSetIndex() const { return NodeID; } in getSparseSetIndex()
1349 unsigned TreeID = SubtreeClasses[Root.NodeID]; in finalize()