HomeSort by: relevance | last modified time | path
    Searched refs:AllocaInsertPt (Results 1 - 6 of 6) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
CodeGenFunction.cpp 427 CGBuilderTy(*this, AllocaInsertPt).CreateCall(FrameEscapeFn, EscapeArgs);
430 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
431 llvm::Instruction *Ptr = AllocaInsertPt;
432 AllocaInsertPt = nullptr;
965 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "allocapt", EntryBB);
CodeGenFunction.h 376 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt;
1792 OldAllocaIP = CGF.AllocaInsertPt;
1793 CGF.AllocaInsertPt = &*AllocaIP.getPoint();
1801 CGF.AllocaInsertPt = OldAllocaIP;
1822 CGF.AllocaInsertPt->getParent() == AllocaIP.getBlock()) &&
1825 OldAllocaIP = CGF.AllocaInsertPt;
1827 CGF.AllocaInsertPt = &*AllocaIP.getPoint();
1837 ~InlinedRegionBodyRAII() { CGF.AllocaInsertPt = OldAllocaIP; }
CGException.cpp 1809 CGBuilderTy Builder(*this, AllocaInsertPt);
1835 RecoverCall->insertBefore(AllocaInsertPt);
1862 CGBuilderTy Builder(CGM, AllocaInsertPt);
CGStmtOpenMP.cpp 1742 AllocaInsertPt->getParent(), AllocaInsertPt->getIterator());
3596 AllocaInsertPt->getParent(), AllocaInsertPt->getIterator());
3848 AllocaInsertPt->getParent(), AllocaInsertPt->getIterator());
CGExpr.cpp 93 // When ArraySize is nullptr, alloca is inserted at AllocaInsertPt,
97 Builder.SetInsertPoint(AllocaInsertPt);
115 ArraySize, Name, AllocaInsertPt);
138 llvm::BasicBlock *Block = AllocaInsertPt->getParent();
139 Block->getInstList().insertAfter(AllocaInsertPt->getIterator(), Store);
CGOpenMPRuntime.cpp 1406 Elem.second.ServiceInsertPt->insertAfter(CGF.AllocaInsertPt);
1484 llvm::BasicBlock *TopBlock = CGF.AllocaInsertPt->getParent();

Completed in 74 milliseconds