HomeSort by relevance Sort by last modified time
    Searched refs:InsertPoint (Results 1 - 16 of 16) 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/
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);
468 void *InsertPoint;
470 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
479 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
595 void *InsertPoint;
    [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 135 /// InsertPoint - A saved insertion point.
136 class InsertPoint {
142 InsertPoint() : Block(nullptr) {}
145 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint)
146 : Block(InsertBlock), Point(InsertPoint) {}
156 InsertPoint saveIP() const {
157 return InsertPoint(GetInsertBlock(), GetInsertPoint());
161 InsertPoint saveAndClearIP() {
162 InsertPoint IP(GetInsertBlock(), GetInsertPoint())
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 693 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
832 CGBuilderTy::InsertPoint savedIP = CGF.Builder.saveIP();
    [all...]
CGCleanup.cpp 702 CGBuilderTy::InsertPoint savedInactiveFallthroughIP;
    [all...]
CGObjCRuntime.cpp 225 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
CGDebugInfo.h 262 llvm::Instruction *InsertPoint = 0);
CGDebugInfo.cpp     [all...]
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
CGCall.cpp     [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 140 BasicBlock::iterator InsertPoint = InnerResumeDest->begin();
146 InsertPoint);
153 "eh.lpad-body", InsertPoint);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 414 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
418 , TokenQueueT::iterator InsertPoint);
950 , TokenQueueT::iterator InsertPoint) {
960 TokenQueue.insert(InsertPoint, T);
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 535 BuilderType::InsertPoint SaveInsertPt = Builder.saveIP();
    [all...]

Completed in 472 milliseconds