Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp128 template <class T> struct NodeID;
131 constexpr StringRef NodeID<Expr>::value;
132 constexpr StringRef NodeID<Decl>::value;
137 const StringRef ID = NodeID<T>::value; in tryEachMatch()
205 NodeID<Expr>::value, in isUnevaluated()
230 .bind(NodeID<Expr>::value)), in isUnevaluated()
393 .bind(NodeID<Expr>::value)), in findMemberMutation()
407 .bind(NodeID<Expr>::value)), in findArrayElementMutation()
434 .bind(NodeID<Expr>::value)), in findCastMutation()
541 .bind(NodeID<Decl>::value))), in findReferenceMutation()
[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.cpp444 llvm::FoldingSetNodeID NodeID; in addDiagnostic() local
445 NodeID.Add(PD); in addDiagnostic()
447 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in addDiagnostic()
450 Entry = new (Entry) PDFileEntry(NodeID); in addDiagnostic()
465 llvm::FoldingSetNodeID NodeID; in getFiles() local
466 NodeID.Add(PD); in getFiles()
468 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in getFiles()
/llvm-project-15.0.7/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()
/llvm-project-15.0.7/clang/include/clang/Analysis/Analyses/
H A DThreadSafetyTIL.h1511 int NodeID = 0; member
1522 return OtherNode.NodeID > NodeID && in isParentOf()
1523 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOf()
1527 return OtherNode.NodeID >= NodeID && in isParentOfOrEqual()
1528 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOfOrEqual()
/llvm-project-15.0.7/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1224 unsigned NodeID; member
1229 RootData(unsigned id): NodeID(id), in RootData()
1232 unsigned getSparseSetIndex() const { return NodeID; } in getSparseSetIndex()
1322 unsigned TreeID = SubtreeClasses[Root.NodeID]; in finalize()
/llvm-project-15.0.7/clang/unittests/Tooling/
H A DRangeSelectorTest.cpp113 testing::Matcher<StringError> withTypeErrorMessage(const std::string &NodeID) { in withTypeErrorMessage() argument
116 AllOf(HasSubstr(NodeID), HasSubstr("mismatched type"))); in withTypeErrorMessage()
/llvm-project-15.0.7/bolt/runtime/
H A Dinstr.cpp1014 uint64_t visitAllCallsIn(uint32_t NodeID, uint64_t Freq, uint64_t *CallFreqs, in visitAllCallsIn()
1018 const MapEntry &Entry = Entries[NodeID]; in visitAllCallsIn()