Home
last modified time | relevance | path

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

/external/clang/lib/CodeGen/
DCodeGenFunction.cpp354 CGBuilderTy(*this, AllocaInsertPt).CreateCall(FrameEscapeFn, EscapeArgs); in FinishFunction()
358 llvm::Instruction *Ptr = AllocaInsertPt; in FinishFunction()
359 AllocaInsertPt = nullptr; in FinishFunction()
733 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB); in StartFunction()
735 AllocaInsertPt->setName("allocapt"); in StartFunction()
DCGException.cpp1500 CGBuilderTy Builder(*this, AllocaInsertPt); in recoverAddrOfEscapedLocal()
1526 RecoverCall->insertBefore(AllocaInsertPt); in recoverAddrOfEscapedLocal()
1553 CGBuilderTy Builder(CGM, AllocaInsertPt); in EmitCapturedLocals()
DCGExpr.cpp69 return new llvm::AllocaInst(Ty, nullptr, "", AllocaInsertPt); in CreateTempAlloca()
70 return new llvm::AllocaInst(Ty, nullptr, Name, AllocaInsertPt); in CreateTempAlloca()
88 llvm::BasicBlock *Block = AllocaInsertPt->getParent(); in InitTempAlloca()
89 Block->getInstList().insertAfter(AllocaInsertPt->getIterator(), Store); in InitTempAlloca()
DCGOpenMPRuntime.cpp430 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt); in emitUpdateLocation()
482 if (CGF.Builder.GetInsertBlock() == CGF.AllocaInsertPt->getParent()) { in getThreadID()
495 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt); in getThreadID()
DCodeGenFunction.h171 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt; variable