HomeSort by relevance Sort by last modified time
    Searched defs:InsertPoint (Results 1 - 5 of 5) sorted by null

  /external/llvm/lib/CodeGen/
PHIEliminationUtils.cpp 44 MachineBasicBlock::iterator InsertPoint;
47 InsertPoint = MBB->begin();
50 InsertPoint = *DefUsesInMBB.begin();
51 ++InsertPoint;
54 InsertPoint = MBB->end();
55 while (!DefUsesInMBB.count(&*--InsertPoint)) {}
56 ++InsertPoint;
60 return MBB->SkipPHIsAndLabels(InsertPoint);
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 118 BasicBlock::iterator InsertPoint = InnerResumeDest->begin();
124 InsertPoint);
131 "eh.lpad-body", InsertPoint);
623 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
653 Caller->getEntryBlock().getInstList().splice(InsertPoint,
    [all...]
  /external/llvm/lib/VMCore/
Metadata.cpp 227 void *InsertPoint;
228 MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint);
260 // InsertPoint will have been set by the FindNodeOrInsertPos call.
261 pImpl->MDNodeSet.InsertNode(N, InsertPoint);
376 void *InsertPoint;
377 if (MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint)) {
385 // InsertPoint will have been set by the FindNodeOrInsertPos call.
386 pImpl->MDNodeSet.InsertNode(this, InsertPoint);
  /external/llvm/include/llvm/
IRBuilder.h 128 /// InsertPoint - A saved insertion point.
129 class InsertPoint {
135 InsertPoint() : Block(0) {}
138 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint)
139 : Block(InsertBlock), Point(InsertPoint) {}
149 InsertPoint saveIP() const {
150 return InsertPoint(GetInsertBlock(), GetInsertPoint());
155 InsertPoint saveAndClearIP() {
156 InsertPoint IP(GetInsertBlock(), GetInsertPoint())
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]

Completed in 203 milliseconds