HomeSort by relevance Sort by last modified time
    Searched refs:InsertPoint (Results 1 - 13 of 13) 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);
50 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
63 void *InsertPoint;
64 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
70 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
408 void *InsertPoint;
410 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
419 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
526 void *InsertPoint;
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 119 BasicBlock::iterator InsertPoint = InnerResumeDest->begin();
125 InsertPoint);
132 "eh.lpad-body", InsertPoint);
633 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
663 Caller->getEntryBlock().getInstList().splice(InsertPoint,
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 768 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
    [all...]
CGCleanup.cpp 692 CGBuilderTy::InsertPoint savedInactiveFallthroughIP;
    [all...]
CGObjCRuntime.cpp 224 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 132 /// InsertPoint - A saved insertion point.
133 class InsertPoint {
139 InsertPoint() : Block(0) {}
142 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint)
143 : Block(InsertBlock), Point(InsertPoint) {}
153 InsertPoint saveIP() const {
154 return InsertPoint(GetInsertBlock(), GetInsertPoint());
158 InsertPoint saveAndClearIP() {
159 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...]
  /art/compiler/llvm/
gbc_expander.cc     [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]

Completed in 133 milliseconds