Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenFunction.cpp355 CGBuilderTy(*this, AllocaInsertPt).CreateCall(FrameEscapeFn, EscapeArgs); in FinishFunction()
359 llvm::Instruction *Ptr = AllocaInsertPt; in FinishFunction()
360 AllocaInsertPt = nullptr; in FinishFunction()
771 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "allocapt", EntryBB); in StartFunction()
DCGException.cpp1500 CGBuilderTy Builder(*this, AllocaInsertPt); in recoverAddrOfEscapedLocal()
1526 RecoverCall->insertBefore(AllocaInsertPt); in recoverAddrOfEscapedLocal()
1553 CGBuilderTy Builder(CGM, AllocaInsertPt); in EmitCapturedLocals()
DCGExpr.cpp71 return new llvm::AllocaInst(Ty, nullptr, Name, AllocaInsertPt); in CreateTempAlloca()
89 llvm::BasicBlock *Block = AllocaInsertPt->getParent(); in InitTempAlloca()
90 Block->getInstList().insertAfter(AllocaInsertPt->getIterator(), Store); in InitTempAlloca()
DCGOpenMPRuntime.cpp953 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt); in emitUpdateLocation()
1005 if (CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) { in getThreadID()
1018 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt); in getThreadID()
DCodeGenFunction.h174 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt; variable