Searched refs:AllocaInsertPt (Results 1 - 5 of 5) sorted by relevance

/external/clang/lib/CodeGen/
H A DCodeGenFunction.cpp354 CGBuilderTy(*this, AllocaInsertPt).CreateCall(FrameEscapeFn, EscapeArgs);
357 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
358 llvm::Instruction *Ptr = AllocaInsertPt;
359 AllocaInsertPt = nullptr;
733 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
735 AllocaInsertPt->setName("allocapt");
H A DCGException.cpp1500 CGBuilderTy Builder(*this, AllocaInsertPt);
1526 RecoverCall->insertBefore(AllocaInsertPt);
1553 CGBuilderTy Builder(CGM, AllocaInsertPt);
H A DCGExpr.cpp69 return new llvm::AllocaInst(Ty, nullptr, "", AllocaInsertPt);
70 return new llvm::AllocaInst(Ty, nullptr, Name, AllocaInsertPt);
88 llvm::BasicBlock *Block = AllocaInsertPt->getParent();
89 Block->getInstList().insertAfter(AllocaInsertPt->getIterator(), Store);
H A DCGOpenMPRuntime.cpp430 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
482 if (CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) {
495 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
H A DCodeGenFunction.h171 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt; member in class:clang::CodeGen::CodeGenFunction

Completed in 97 milliseconds