Home
last modified time | relevance | path

Searched refs:InsertPoint (Results 1 – 16 of 16) sorted by relevance

/external/llvm/lib/CodeGen/
DPHIEliminationUtils.cpp42 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/
DAttributes.cpp41 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/
DIRBuilder.h136 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/
DCGException.cpp693 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()
DCGCleanup.cpp702 CGBuilderTy::InsertPoint savedInactiveFallthroughIP; in PopCleanupBlock()
873 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); in PopCleanupBlock()
1126 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP(); in DeactivateCleanupBlock()
DCGObjCRuntime.cpp225 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); in EmitTryCatchStmt()
DCGDebugInfo.h262 llvm::Instruction *InsertPoint = 0);
DCGDebugInfo.cpp2932 const CGBlockInfo &blockInfo, llvm::Instruction *InsertPoint) { in EmitDeclareOfBlockDeclRefVariable() argument
2991 if (InsertPoint) in EmitDeclareOfBlockDeclRefVariable()
2993 InsertPoint); in EmitDeclareOfBlockDeclRefVariable()
DCGObjC.cpp2422 CGBuilderTy::InsertPoint ip = CGF.Builder.saveIP(); in emitARCRetainAfterCall()
2432 CGBuilderTy::InsertPoint ip = CGF.Builder.saveIP(); in emitARCRetainAfterCall()
DCGObjCMac.cpp3836 CGBuilderTy::InsertPoint TryFallthroughIP = CGF.Builder.saveAndClearIP(); in EmitTryOrSynchronizedStmt()
4034 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP(); in EmitTryOrSynchronizedStmt()
DCGCall.cpp3099 CGBuilderTy::InsertPoint IP = Builder.saveIP(); in EmitCall()
/external/llvm/lib/Transforms/Utils/
DInlineFunction.cpp140 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/
DDwarfLinker.cpp2262 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/
DYAMLParser.cpp418 , TokenQueueT::iterator InsertPoint);
950 , TokenQueueT::iterator InsertPoint) { in rollIndent() argument
960 TokenQueue.insert(InsertPoint, T); in rollIndent()
/external/clang/lib/Sema/
DSemaLookup.cpp2429 void *InsertPoint; in LookupSpecialMember() local
2431 SpecialMemberCache.FindNodeOrInsertPos(ID, InsertPoint); in LookupSpecialMember()
2439 SpecialMemberCache.InsertNode(Result, InsertPoint); in LookupSpecialMember()
/external/llvm/lib/Analysis/
DScalarEvolutionExpander.cpp535 BuilderType::InsertPoint SaveInsertPt = Builder.saveIP(); in expandAddToGEP()