HomeSort by: relevance | last modified time | path
    Searched defs:NewN (Results 1 - 5 of 5) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/
ExplodedGraph.cpp 497 ExplodedNode *NewN = G->createUncachedNode(N->getLocation(), N->State,
499 Pass2[N] = NewN;
502 if (InverseMap) (*InverseMap)[NewN] = N;
506 G->addRoot(NewN);
508 // In the case that some of the intended predecessors of NewN have already
519 NewN->addPredecessor(const_cast<ExplodedNode *>(PI->second), *G);
522 // In the case that some of the intended successors of NewN have already
530 const_cast<ExplodedNode *>(PI->second)->addPredecessor(NewN, *G);
ExprEngineCXX.cpp 926 ExplodedNode *NewN = Bldr.generateNode(CNE, Pred, State);
927 if (!NewN)
935 Bldr.takeNodes(NewN);
936 evalBind(Dst, CNE, NewN, Result, State->getSVal(Init, LCtx),
BugReporter.cpp 2617 ExplodedNode *NewN = GNew->createUncachedNode(
2623 Succ->addPredecessor(NewN, *GNew);
2625 CurrentBugPath.ErrorNode = NewN;
2627 Succ = NewN;
2631 GNew->addRoot(NewN);
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
ValueMapper.cpp 756 auto *NewN = MDNode::replaceWithUniqued(std::move(ClonedN));
757 if (N && NewN && N != NewN) {
759 << "To " << *NewN << "\n\n");
762 M.mapToMetadata(N, NewN);
767 CyclicNodes.push_back(NewN);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/
HexagonCommonGEP.cpp 954 GepNode *NewN = new (*Mem) GepNode(N);
955 Nodes.push_back(NewN);
956 Loc[NewN] = PB;
959 NewNode = NewN;
960 NewN->Flags &= ~GepNode::Used;
962 C->Parent = NewN;
963 C = NewN;

Completed in 32 milliseconds