HomeSort by relevance Sort by last modified time
    Searched refs:AllocaInsertPt (Results 1 - 4 of 4) sorted by null

  /external/clang/lib/CodeGen/
CGOpenMPRuntime.cpp 91 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
133 CGF.Builder.SetInsertPoint(CGF.AllocaInsertPt);
CodeGenFunction.cpp 261 // Remove the AllocaInsertPt instruction, which is just a convenience for us.
262 llvm::Instruction *Ptr = AllocaInsertPt;
263 AllocaInsertPt = nullptr;
583 AllocaInsertPt = new llvm::BitCastInst(Undef, Int32Ty, "", EntryBB);
585 AllocaInsertPt->setName("allocapt");
    [all...]
CGExpr.cpp 57 return new llvm::AllocaInst(Ty, nullptr, "", AllocaInsertPt);
58 return new llvm::AllocaInst(Ty, nullptr, Name, AllocaInsertPt);
64 llvm::BasicBlock *Block = AllocaInsertPt->getParent();
65 Block->getInstList().insertAfter(&*AllocaInsertPt, Store);
    [all...]
CodeGenFunction.h 167 llvm::AssertingVH<llvm::Instruction> AllocaInsertPt;
    [all...]

Completed in 555 milliseconds