Searched refs:CurNode (Results 1 - 6 of 6) sorted by relevance

/freebsd-11-stable/contrib/llvm-project/clang/lib/Rewrite/
H A DRewriteRope.cpp680 CurNode = cast<RopePieceBTreeLeaf>(N);
684 while (CurNode && getCN(CurNode)->getNumPieces() == 0)
685 CurNode = getCN(CurNode)->getNextLeafInOrder();
687 if (CurNode)
688 CurPiece = &getCN(CurNode)->getPiece(0);
695 if (CurPiece != &getCN(CurNode)->getPiece(getCN(CurNode)->getNumPieces()-1)) {
703 CurNode
[all...]
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DAliasSetTracker.h241 PointerRec *CurNode;
244 explicit iterator(PointerRec *CN = nullptr) : CurNode(CN) {}
247 return CurNode == x.CurNode;
252 assert(CurNode && "Dereferencing AliasSet.end()!");
253 return *CurNode;
257 Value *getPointer() const { return CurNode->getValue(); }
258 LocationSize getSize() const { return CurNode->getSize(); }
259 AAMDNodes getAAInfo() const { return CurNode->getAAInfo(); }
262 assert(CurNode
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/Rewrite/Core/
H A DRewriteRope.h88 /// CurNode - The current B+Tree node that we are inspecting.
89 const void /*RopePieceBTreeLeaf*/ *CurNode = nullptr; member in class:clang::RopePieceBTreeIterator
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/ASTMatchers/
H A DASTMatchers.h6658 const auto &CurNode = Stack.back(); local
6660 if(const auto *FuncDeclNode = CurNode.get<FunctionDecl>()) {
6664 } else if(const auto *LambdaExprNode = CurNode.get<LambdaExpr>()) {
6670 for(const auto &Parent: Finder->getASTContext().getParents(CurNode))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Analysis/
H A DMemorySSA.cpp819 DefPath &CurNode = *Iter; local
820 assert(CurNode.Last == Current);
847 TerminatedPath Result{CurNode.Last, defPathIndex(CurNode)};
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp1848 auto CurNode = Worklist[i].first; local
1852 switch (CurNode->getOpcode()) {
1861 for (const SDValue &Op : CurNode->op_values())
1868 AddToWorklist(i, CurNode->getOperand(0).getNode(), CurOpNumber);
1871 if (auto *MemNode = dyn_cast<MemSDNode>(CurNode))

Completed in 165 milliseconds