HomeSort by relevance Sort by last modified time
    Searched refs:CurNode (Results 1 - 13 of 13) sorted by null

  /external/swiftshader/third_party/LLVM/include/llvm/Analysis/
AliasSetTracker.h 187 PointerRec *CurNode;
189 explicit iterator(PointerRec *CN = 0) : CurNode(CN) {}
192 return CurNode == x.CurNode;
197 CurNode = I.CurNode;
202 assert(CurNode && "Dereferencing AliasSet.end()!");
203 return *CurNode;
207 Value *getPointer() const { return CurNode->getValue(); }
208 uint64_t getSize() const { return CurNode->getSize();
    [all...]
  /external/llvm/include/llvm/Analysis/
AliasSetTracker.h 198 PointerRec *CurNode;
201 explicit iterator(PointerRec *CN = nullptr) : CurNode(CN) {}
204 return CurNode == x.CurNode;
209 assert(CurNode && "Dereferencing AliasSet.end()!");
210 return *CurNode;
214 Value *getPointer() const { return CurNode->getValue(); }
215 uint64_t getSize() const { return CurNode->getSize(); }
216 AAMDNodes getAAInfo() const { return CurNode->getAAInfo(); }
219 assert(CurNode && "Advancing past AliasSet.end()!")
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/
AliasSetTracker.h 233 PointerRec *CurNode;
236 explicit iterator(PointerRec *CN = nullptr) : CurNode(CN) {}
239 return CurNode == x.CurNode;
244 assert(CurNode && "Dereferencing AliasSet.end()!");
245 return *CurNode;
249 Value *getPointer() const { return CurNode->getValue(); }
250 LocationSize getSize() const { return CurNode->getSize(); }
251 AAMDNodes getAAInfo() const { return CurNode->getAAInfo(); }
254 assert(CurNode && "Advancing past AliasSet.end()!")
    [all...]
  /external/swiftshader/third_party/subzero/src/
IceASanInstrumentation.h 40 ICE_TLS_INIT_FIELD(CurNode);
61 ICE_TLS_DECLARE_FIELD(CfgNode *, CurNode);
IceVariableSplitting.cpp 76 void reset(const CfgNode *CurNode) {
77 Node = CurNode;
171 void setNode(CfgNode *CurNode) {
172 Node = CurNode;
IceASanInstrumentation.cpp 73 ICE_TLS_DEFINE_FIELD(CfgNode *, ASanInstrumentation, CurNode);
415 if (ICE_TLS_GET_FIELD(CurNode) != Context.getNode()) {
416 ICE_TLS_SET_FIELD(CurNode, Context.getNode());
  /external/clang/lib/Rewrite/
RewriteRope.cpp 676 CurNode = cast<RopePieceBTreeLeaf>(N);
680 while (CurNode && getCN(CurNode)->getNumPieces() == 0)
681 CurNode = getCN(CurNode)->getNextLeafInOrder();
683 if (CurNode)
684 CurPiece = &getCN(CurNode)->getPiece(0);
691 if (CurPiece != &getCN(CurNode)->getPiece(getCN(CurNode)->getNumPieces()-1)) {
699 CurNode = getCN(CurNode)->getNextLeafInOrder()
    [all...]
  /external/clang/include/clang/Rewrite/Core/
RewriteRope.h 90 /// CurNode - The current B+Tree node that we are inspecting.
91 const void /*RopePieceBTreeLeaf*/ *CurNode;
102 : CurNode(nullptr), CurPiece(nullptr), CurChar(0) {}
  /external/llvm/include/llvm/ADT/
ilist.h 410 NodeTy *CurNode = where.getNodePtrUnchecked();
411 NodeTy *PrevNode = this->getPrev(CurNode);
412 this->setNext(New, CurNode);
415 if (CurNode != Head) // Is PrevNode off the beginning of the list?
419 this->setPrev(CurNode, New);
  /external/swiftshader/third_party/LLVM/include/llvm/ADT/
ilist.h 410 NodeTy *CurNode = where.getNodePtrUnchecked();
411 NodeTy *PrevNode = this->getPrev(CurNode);
412 this->setNext(New, CurNode);
415 if (CurNode != Head) // Is PrevNode off the beginning of the list?
419 this->setPrev(CurNode, New);
  /external/clang/include/clang/ASTMatchers/
ASTMatchers.h     [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/Analysis/
MemorySSA.cpp 629 T &operator*() const { return curNode(); }
632 N = curNode().Previous;
643 T &curNode() const { return W->Paths[*N]; }
745 DefPath &CurNode = *Iter;
746 assert(CurNode.Last == Current);
773 TerminatedPath Result{CurNode.Last, defPathIndex(CurNode)};
    [all...]
  /external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/SelectionDAG/
DAGCombiner.cpp     [all...]

Completed in 503 milliseconds