HomeSort by relevance Sort by last modified time
    Searched refs:InsertPoint (Results 1 - 12 of 12) 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/IR/
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);
377 void *InsertPoint;
378 if (MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint)) {
386 // InsertPoint will have been set by the FindNodeOrInsertPos call.
387 pImpl->MDNodeSet.InsertNode(this, InsertPoint);
Attributes.cpp 40 void *InsertPoint;
41 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
49 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
62 void *InsertPoint;
63 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
69 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
420 void *InsertPoint;
422 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
428 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
537 void *InsertPoint;
    [all...]
  /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/clang/lib/CodeGen/
CGException.cpp 764 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
    [all...]
CGCleanup.cpp 665 CGBuilderTy::InsertPoint savedInactiveFallthroughIP;
836 CGBuilderTy::InsertPoint SavedIP = Builder.saveAndClearIP();
    [all...]
CGObjCRuntime.cpp 224 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 129 /// InsertPoint - A saved insertion point.
130 class InsertPoint {
136 InsertPoint() : Block(0) {}
139 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint)
140 : Block(InsertBlock), Point(InsertPoint) {}
150 InsertPoint saveIP() const {
151 return InsertPoint(GetInsertBlock(), GetInsertPoint());
155 InsertPoint saveAndClearIP() {
156 InsertPoint IP(GetInsertBlock(), GetInsertPoint())
    [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 405 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
409 , TokenQueueT::iterator InsertPoint);
983 , TokenQueueT::iterator InsertPoint) {
993 TokenQueue.insert(InsertPoint, T);
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]

Completed in 217 milliseconds