/external/llvm/lib/CodeGen/ |
D | PHIEliminationUtils.cpp | 42 MachineBasicBlock::iterator InsertPoint; in findPHICopyInsertPoint() local 45 InsertPoint = MBB->begin(); in findPHICopyInsertPoint() 48 InsertPoint = *DefUsesInMBB.begin(); in findPHICopyInsertPoint() 49 ++InsertPoint; in findPHICopyInsertPoint() 52 InsertPoint = MBB->end(); in findPHICopyInsertPoint() 53 while (!DefUsesInMBB.count(&*--InsertPoint)) {} in findPHICopyInsertPoint() 54 ++InsertPoint; in findPHICopyInsertPoint() 58 return MBB->SkipPHIsAndLabels(InsertPoint); in findPHICopyInsertPoint()
|
/external/llvm/lib/IR/ |
D | Attributes.cpp | 41 void *InsertPoint; in get() local 42 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint); in get() 51 pImpl->AttrsSet.InsertNode(PA, InsertPoint); in get() 64 void *InsertPoint; in get() local 65 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint); in get() 71 pImpl->AttrsSet.InsertNode(PA, InsertPoint); in get() 468 void *InsertPoint; in get() local 470 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint); in get() 479 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint); in get() 595 void *InsertPoint; in getImpl() local [all …]
|
/external/llvm/include/llvm/IR/ |
D | IRBuilder.h | 136 class InsertPoint { 142 InsertPoint() : Block(nullptr) {} in InsertPoint() function 145 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint) in InsertPoint() function 146 : Block(InsertBlock), Point(InsertPoint) {} in InsertPoint() 156 InsertPoint saveIP() const { in saveIP() 157 return InsertPoint(GetInsertBlock(), GetInsertPoint()); in saveIP() 161 InsertPoint saveAndClearIP() { in saveAndClearIP() 162 InsertPoint IP(GetInsertBlock(), GetInsertPoint()); in saveAndClearIP() 168 void restoreIP(InsertPoint IP) { in restoreIP() 211 Builder.restoreIP(InsertPoint(Block, Point)); in ~InsertPointGuard()
|
/external/clang/lib/CodeGen/ |
D | CGException.cpp | 693 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP(); in EmitLandingPad() 832 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP(); in emitCatchDispatchBlock() 1071 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); in Emit() 1153 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveAndClearIP(); in exit() 1187 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); in getTerminateLandingPad() 1218 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); in getTerminateHandler() 1241 CGBuilderTy::InsertPoint SavedIP = Builder.saveIP(); in getEHResumeBlock()
|
D | CGCleanup.cpp | 702 CGBuilderTy::InsertPoint savedInactiveFallthroughIP; in PopCleanupBlock() 873 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); in PopCleanupBlock() 1126 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); in DeactivateCleanupBlock()
|
D | CGObjCRuntime.cpp | 225 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); in EmitTryCatchStmt()
|
D | CGDebugInfo.h | 262 llvm::Instruction *InsertPoint = 0);
|
D | CGDebugInfo.cpp | 2932 const CGBlockInfo &blockInfo, llvm::Instruction *InsertPoint) { in EmitDeclareOfBlockDeclRefVariable() argument 2991 if (InsertPoint) in EmitDeclareOfBlockDeclRefVariable() 2993 InsertPoint); in EmitDeclareOfBlockDeclRefVariable()
|
D | CGObjC.cpp | 2422 CGBuilderTy::InsertPoint ip = CGF.Builder.saveIP(); in emitARCRetainAfterCall() 2432 CGBuilderTy::InsertPoint ip = CGF.Builder.saveIP(); in emitARCRetainAfterCall()
|
D | CGObjCMac.cpp | 3836 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP(); in EmitTryOrSynchronizedStmt() 4034 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); in EmitTryOrSynchronizedStmt()
|
D | CGCall.cpp | 3099 CGBuilderTy::InsertPoint IP = Builder.saveIP(); in EmitCall()
|
/external/llvm/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 140 BasicBlock::iterator InsertPoint = InnerResumeDest->begin(); in getInnerResumeDest() local 146 InsertPoint); in getInnerResumeDest() 153 "eh.lpad-body", InsertPoint); in getInnerResumeDest() 1071 BasicBlock::iterator InsertPoint = Caller->begin()->begin(); in InlineFunction() local 1101 Caller->getEntryBlock().getInstList().splice(InsertPoint, in InlineFunction()
|
/external/llvm/tools/dsymutil/ |
D | DwarfLinker.cpp | 2262 auto InsertPoint = std::lower_bound( in insertLineSequence() local 2272 if (InsertPoint != Rows.end() && in insertLineSequence() 2273 InsertPoint->Address == Seq.front().Address && InsertPoint->EndSequence) { in insertLineSequence() 2274 *InsertPoint = Seq.front(); in insertLineSequence() 2275 Rows.insert(InsertPoint + 1, Seq.begin() + 1, Seq.end()); in insertLineSequence() 2277 Rows.insert(InsertPoint, Seq.begin(), Seq.end()); in insertLineSequence()
|
/external/llvm/lib/Support/ |
D | YAMLParser.cpp | 418 , TokenQueueT::iterator InsertPoint); 950 , TokenQueueT::iterator InsertPoint) { in rollIndent() argument 960 TokenQueue.insert(InsertPoint, T); in rollIndent()
|
/external/clang/lib/Sema/ |
D | SemaLookup.cpp | 2429 void *InsertPoint; in LookupSpecialMember() local 2431 SpecialMemberCache.FindNodeOrInsertPos(ID, InsertPoint); in LookupSpecialMember() 2439 SpecialMemberCache.InsertNode(Result, InsertPoint); in LookupSpecialMember()
|
/external/llvm/lib/Analysis/ |
D | ScalarEvolutionExpander.cpp | 535 BuilderType::InsertPoint SaveInsertPt = Builder.saveIP(); in expandAddToGEP()
|