Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/lib/Analysis/
H A DExprMutationAnalyzer.cpp239 template <class T> struct NodeID;
240 template <> struct NodeID<Expr> { static constexpr StringRef value = "expr"; }; struct
241 template <> struct NodeID<Decl> { static constexpr StringRef value = "decl"; }; argument
242 constexpr StringRef NodeID<Expr>::value;
243 constexpr StringRef NodeID<Decl>::value;
249 const StringRef ID = NodeID<T>::value; in tryEachMatch()
324 .bind(NodeID<Expr>::value)), in tryEachDeclRef()
327 const auto *E = RefNodes.getNodeAs<Expr>(NodeID<Expr>::value); in tryEachDeclRef()
517 .bind(NodeID<Expr>::value)), in findMemberMutation()
531 .bind(NodeID<Expr>::value)), in findArrayElementMutation()
[all …]
H A DThreadSafetyTIL.cpp271 N->NodeID = P->SizeOfSubTree; in computeNodeSize()
281 N->NodeID += P->NodeID; // Fix NodeIDs relative to starting node. in computeNodeID()
H A DPathDiagnostic.cpp437 llvm::FoldingSetNodeID NodeID; in addDiagnostic() local
438 NodeID.Add(PD); in addDiagnostic()
440 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in addDiagnostic()
443 Entry = new (Entry) PDFileEntry(NodeID); in addDiagnostic()
458 llvm::FoldingSetNodeID NodeID; in getFiles() local
459 NodeID.Add(PD); in getFiles()
461 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in getFiles()
/freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUSplitModule.cpp716 for (unsigned NodeID : BV.set_bits()) in calculateCost() local
717 Cost += getNode(NodeID).getIndividualCost(); in calculateCost()
1035 for (unsigned NodeID : Entry.Cluster.set_bits()) { in setupWorkList() local
1036 const SplitGraph::Node &N = SG.getNode(NodeID); in setupWorkList()
1064 for (unsigned NodeID : Entry.Cluster.set_bits()) in setupWorkList()
1065 dbgs() << NodeID << " "; in setupWorkList()
1492 for (unsigned NodeID : (*Proposal)[PID].set_bits()) in splitAMDGPUModule()
1493 FnsInPart.insert(&SG.getNode(NodeID).getFunction()); in splitAMDGPUModule()
/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.h1515 int NodeID = 0; member
1526 return OtherNode.NodeID > NodeID && in isParentOf()
1527 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOf()
1531 return OtherNode.NodeID >= NodeID && in isParentOfOrEqual()
1532 OtherNode.NodeID < NodeID + SizeOfSubTree; in isParentOfOrEqual()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DScheduleDAGInstrs.cpp1268 unsigned NodeID; member
1273 RootData(unsigned id): NodeID(id), in RootData()
1276 unsigned getSparseSetIndex() const { return NodeID; } in getSparseSetIndex()
1366 unsigned TreeID = SubtreeClasses[Root.NodeID]; in finalize()