Home
last modified time | relevance | path

Searched refs:NewIP (Results 1 – 4 of 4) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DSymbolTableListTraitsImpl.h92 ItemParentClass *NewIP = getListOwner(); in transferNodesFromList() local
93 invalidateParentIListOrdering(NewIP); in transferNodesFromList()
97 if (NewIP == OldIP) in transferNodesFromList()
102 ValueSymbolTable *NewST = getSymTab(NewIP); in transferNodesFromList()
110 V.setParent(NewIP); in transferNodesFromList()
118 first->setParent(NewIP); in transferNodesFromList()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/MCDisassembler/
H A DDisassembler.h115 void setIP(MCInstPrinter *NewIP) { IP.reset(NewIP); } in setIP() argument
/netbsd-src/external/apache2/llvm/dist/clang/lib/AST/
H A DASTContext.cpp3178 ComplexType *NewIP = ComplexTypes.FindNodeOrInsertPos(ID, InsertPos); in getComplexType() local
3179 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; in getComplexType()
3206 PointerType *NewIP = PointerTypes.FindNodeOrInsertPos(ID, InsertPos); in getPointerType() local
3207 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; in getPointerType()
3296 BlockPointerType *NewIP = in getBlockPointerType() local
3298 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; in getBlockPointerType()
3333 LValueReferenceType *NewIP = in getLValueReferenceType() local
3335 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; in getLValueReferenceType()
3369 RValueReferenceType *NewIP = in getRValueReferenceType() local
3371 assert(!NewIP && "Shouldn't be in the map!"); (void)NewIP; in getRValueReferenceType()
[all …]
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/
H A DLoopVectorize.cpp9697 auto NewIP = std::next(BasicBlock::iterator(LastInst)); in get() local
9698 Builder.SetInsertPoint(&*NewIP); in get()