Searched refs:NodeMap (Results 1 - 14 of 14) sorted by relevance

/freebsd-current/contrib/llvm-project/clang/lib/Tooling/
H A DRefactoringCallbacks.cpp200 const auto &NodeMap = Result.Nodes.getMap(); local
209 auto NodeIter = NodeMap.find(Element.Value);
210 if (NodeIter == NodeMap.end()) {
223 if (NodeMap.count(FromId) == 0) {
229 tooling::Replacement(*Result.SourceManager, &NodeMap.at(FromId), ToText,
/freebsd-current/contrib/llvm-project/llvm/lib/Analysis/
H A DLazyCallGraph.cpp208 : BPA(std::move(G.BPA)), NodeMap(std::move(G.NodeMap)),
224 NodeMap = std::move(G.NodeMap);
1451 assert(G->NodeMap.find(&NewF) == G->NodeMap.end() &&
1468 G->NodeMap.erase(&OldF);
1469 G->NodeMap[&NewF] = &N;
1505 auto NI = NodeMap.find(&F);
1506 if (NI == NodeMap
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LoadValueInjectionLoadHardening.cpp340 DenseMap<MachineInstr *, GraphIter> NodeMap;
342 auto MaybeAddNode = [&NodeMap, &Builder](MachineInstr *MI) {
343 auto Ref = NodeMap.find(MI);
344 if (Ref == NodeMap.end()) {
346 NodeMap[MI] = I;
512 auto Ref = NodeMap.find(&*NI);
513 if (Ref != NodeMap.end()) {
/freebsd-current/contrib/llvm-project/llvm/lib/IR/
H A DModuleSummaryIndex.cpp552 DenseMap<GlobalValue::GUID, std::vector<uint64_t>> NodeMap;
624 NodeMap[SummaryIt.first].push_back(ModId);
683 auto &ModList = NodeMap[E.Dst];
/freebsd-current/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h973 Node *lookup(const Function &F) const { return NodeMap.lookup(&F); }
995 Node *&N = NodeMap[&F];
1121 DenseMap<const Function *, Node *> NodeMap; member in class:llvm::LazyCallGraph::Edge
1153 /// the NodeMap.
1157 /// it to the NodeMap if necessary. For example, useful when a function is
/freebsd-current/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchersInternal.h221 NodeMap[std::string(ID)] = DynNode;
230 IDToNodeMap::const_iterator It = NodeMap.find(ID);
231 if (It == NodeMap.end()) {
238 IDToNodeMap::const_iterator It = NodeMap.find(ID);
239 if (It == NodeMap.end()) {
247 return NodeMap < Other.NodeMap;
258 return NodeMap;
264 for (const auto &IDAndNode : NodeMap) {
272 IDToNodeMap NodeMap; member in class:clang::ast_matchers::internal::BoundNodesMap
[all...]
/freebsd-current/contrib/llvm-project/clang/lib/Tooling/Transformer/
H A DStencil.cpp335 const BoundNodes::IDToNodeMap &NodeMap = match.Nodes.getMap(); variable
337 if (NodeMap.count(S.first) > 0) {
/freebsd-current/contrib/llvm-project/llvm/lib/Passes/
H A DStandardInstrumentations.cpp1743 std::map<const unsigned, unsigned> &NodeMap) const;
1973 std::map<const unsigned, unsigned> NodeMap;
1981 NodeMap.insert({I.getIndex(), Index++});
1986 for (auto &I : NodeMap) {
1989 getNode(SourceNode).createDisplayEdges(G, DisplayNode, NodeMap);
1996 std::map<const unsigned, unsigned> &NodeMap) const {
/freebsd-current/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DExplodedGraph.h422 using NodeMap = llvm::DenseMap<const ExplodedNode *, ExplodedNode *>;
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.h101 DenseMap<const Value*, SDValue> NodeMap; member in class:llvm::SelectionDAGBuilder
377 SDValue &N = NodeMap[V];
H A DSelectionDAGBuilder.cpp1089 NodeMap.clear();
1182 SDValue &N = NodeMap[Address];
1324 auto It = NodeMap.find(&I);
1325 if (It != NodeMap.end()) {
1591 SDValue N = NodeMap[V];
1722 SDValue &N = NodeMap[V];
1732 NodeMap[V] = Val;
1741 SDValue &N = NodeMap[V];
1755 NodeMap[V] = Val;
1791 SDValue N1 = NodeMap[
[all...]
/freebsd-current/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3494 MapType NodeMap; member in class:__anon39::PhiNodeSet
3507 if (NodeMap.insert(std::make_pair(Ptr, NodeList.size())).second) {
3518 if (NodeMap.erase(Ptr)) {
3527 NodeMap.clear();
3544 size_t size() const { return NodeMap.size(); }
3547 size_t count(PHINode *Ptr) const { return NodeMap.count(Ptr); }
3557 auto it = NodeMap.find(NodeList[CurrentIndex]);
3558 // If the element has been deleted and added again later, NodeMap will
3560 if (it != NodeMap.end() && it->second == CurrentIndex)
/freebsd-current/sys/contrib/dev/acpica/include/
H A Dactbl2.h1489 UINT64 NodeMap; member in struct:acpi_madt_eio_pic
/freebsd-current/sys/contrib/dev/acpica/common/
H A Ddmtbinfo2.c968 {ACPI_DMT_UINT64, ACPI_MADT20_OFFSET (NodeMap), "NodeMap", 0},

Completed in 180 milliseconds