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

  /external/llvm/lib/CodeGen/
PHIEliminationUtils.cpp 42 MachineBasicBlock::iterator InsertPoint;
45 InsertPoint = MBB->begin();
48 InsertPoint = *DefUsesInMBB.begin();
49 ++InsertPoint;
52 InsertPoint = MBB->end();
53 while (!DefUsesInMBB.count(&*--InsertPoint)) {}
54 ++InsertPoint;
58 return MBB->SkipPHIsAndLabels(InsertPoint);
  /external/llvm/lib/IR/
Metadata.cpp 231 void *InsertPoint;
232 MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint);
263 // InsertPoint will have been set by the FindNodeOrInsertPos call.
264 pImpl->MDNodeSet.InsertNode(N, InsertPoint);
380 void *InsertPoint;
381 if (MDNode *N = pImpl->MDNodeSet.FindNodeOrInsertPos(ID, InsertPoint)) {
389 // InsertPoint will have been set by the FindNodeOrInsertPos call.
390 pImpl->MDNodeSet.InsertNode(this, InsertPoint);
Attributes.cpp 41 void *InsertPoint;
42 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
51 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
64 void *InsertPoint;
65 AttributeImpl *PA = pImpl->AttrsSet.FindNodeOrInsertPos(ID, InsertPoint);
71 pImpl->AttrsSet.InsertNode(PA, InsertPoint);
425 void *InsertPoint;
427 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
436 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
543 void *InsertPoint;
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 120 BasicBlock::iterator InsertPoint = InnerResumeDest->begin();
126 InsertPoint);
133 "eh.lpad-body", InsertPoint);
658 BasicBlock::iterator InsertPoint = Caller->begin()->begin();
688 Caller->getEntryBlock().getInstList().splice(InsertPoint,
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 136 /// InsertPoint - A saved insertion point.
137 class InsertPoint {
143 InsertPoint() : Block(nullptr) {}
146 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint)
147 : Block(InsertBlock), Point(InsertPoint) {}
157 InsertPoint saveIP() const {
158 return InsertPoint(GetInsertBlock(), GetInsertPoint());
162 InsertPoint saveAndClearIP() {
163 InsertPoint IP(GetInsertBlock(), GetInsertPoint())
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 722 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
    [all...]
CGCleanup.cpp 692 CGBuilderTy::InsertPoint savedInactiveFallthroughIP;
    [all...]
CGObjCRuntime.cpp 225 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
CGCall.cpp     [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 411 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
415 , TokenQueueT::iterator InsertPoint);
953 , TokenQueueT::iterator InsertPoint) {
963 TokenQueue.insert(InsertPoint, T);
    [all...]
  /art/compiler/llvm/
gbc_expander.cc     [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 571 BuilderType::InsertPoint SaveInsertPt = Builder.saveIP();
    [all...]

Completed in 738 milliseconds