Searched refs:NodeID (Results 1 – 7 of 7) sorted by relevance
239 template <class T> struct NodeID;240 template <> struct NodeID<Expr> { static constexpr StringRef value = "expr"; }; struct241 template <> struct NodeID<Decl> { static constexpr StringRef value = "decl"; }; struct242 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 …]
271 N->NodeID = P->SizeOfSubTree; in computeNodeSize()281 N->NodeID += P->NodeID; // Fix NodeIDs relative to starting node. in computeNodeID()
437 llvm::FoldingSetNodeID NodeID; in addDiagnostic() local438 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() local459 NodeID.Add(PD); in getFiles()461 PDFileEntry *Entry = Set.FindNodeOrInsertPos(NodeID, InsertPos); in getFiles()
716 for (unsigned NodeID : BV.set_bits()) in calculateCost() local717 Cost += getNode(NodeID).getIndividualCost(); in calculateCost()1035 for (unsigned NodeID : Entry.Cluster.set_bits()) { in setupWorkList() local1036 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()
96 PDFileEntry(llvm::FoldingSetNodeID &NodeID) : NodeID(NodeID) {} in PDFileEntry() argument104 const llvm::FoldingSetNodeID NodeID; variable107 void Profile(llvm::FoldingSetNodeID &ID) { ID = NodeID; } in Profile()
1515 int NodeID = 0; member1526 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()
1268 unsigned NodeID; member1273 RootData(unsigned id): NodeID(id), in RootData()1276 unsigned getSparseSetIndex() const { return NodeID; } in getSparseSetIndex()1366 unsigned TreeID = SubtreeClasses[Root.NodeID]; in finalize()