HomeSort by relevance Sort by last modified time
    Searched refs:InsertPoint (Results 1 - 18 of 18) 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/Target/PowerPC/
PPCVSXSwapRemoval.cpp 153 // InsertPoint.
154 void insertSwap(MachineInstr *MI, MachineBasicBlock::iterator InsertPoint,
774 MachineBasicBlock::iterator InsertPoint,
776 BuildMI(*MI->getParent(), InsertPoint, MI->getDebugLoc(),
864 auto InsertPoint = ++MachineBasicBlock::iterator(MI);
875 BuildMI(*MI->getParent(), InsertPoint, MI->getDebugLoc(),
878 DEBUG(std::prev(InsertPoint)->dump());
880 insertSwap(MI, InsertPoint, VSRCTmp2, VSRCTmp1);
881 DEBUG(std::prev(InsertPoint)->dump());
883 BuildMI(*MI->getParent(), InsertPoint, MI->getDebugLoc()
    [all...]
  /external/clang/lib/StaticAnalyzer/Checkers/
PaddingChecker.cpp 245 CharUnitPair InsertPoint = {CurAlignment, CharUnits::Zero()};
253 auto Iter = std::upper_bound(CurBegin, CurEnd, 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);
487 void *InsertPoint;
489 pImpl->AttrsSetNodes.FindNodeOrInsertPos(ID, InsertPoint);
497 pImpl->AttrsSetNodes.InsertNode(PA, InsertPoint);
620 void *InsertPoint;
    [all...]
  /external/clang/lib/CodeGen/
CGException.cpp 748 CGBuilderTy::InsertPoint savedIP = Builder.saveAndClearIP();
878 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveIP();
    [all...]
CGCleanup.cpp 715 CGBuilderTy::InsertPoint savedInactiveFallthroughIP;
    [all...]
CGObjCRuntime.cpp 226 CGBuilderTy::InsertPoint SavedIP = CGF.Builder.saveAndClearIP();
CGDebugInfo.h 327 llvm::Instruction *InsertPoint = nullptr);
CGDebugInfo.cpp     [all...]
CGObjC.cpp     [all...]
CGObjCMac.cpp     [all...]
CGCall.cpp     [all...]
  /external/llvm/include/llvm/IR/
IRBuilder.h 127 /// InsertPoint - A saved insertion point.
128 class InsertPoint {
134 InsertPoint() : Block(nullptr) {}
137 InsertPoint(BasicBlock *InsertBlock, BasicBlock::iterator InsertPoint)
138 : Block(InsertBlock), Point(InsertPoint) {}
148 InsertPoint saveIP() const {
149 return InsertPoint(GetInsertBlock(), GetInsertPoint());
153 InsertPoint saveAndClearIP() {
154 InsertPoint IP(GetInsertBlock(), GetInsertPoint())
    [all...]
  /external/llvm/lib/Transforms/Utils/
InlineFunction.cpp 142 Instruction *InsertPoint = &InnerResumeDest->front();
148 InsertPoint);
155 "eh.lpad-body", InsertPoint);
    [all...]
  /external/llvm/tools/dsymutil/
DwarfLinker.cpp     [all...]
  /external/llvm/lib/Support/
YAMLParser.cpp 436 /// @brief Increase indent to \a Col. Creates \a Kind token at \a InsertPoint
440 , TokenQueueT::iterator InsertPoint);
1031 , TokenQueueT::iterator InsertPoint) {
1041 TokenQueue.insert(InsertPoint, T);
    [all...]
  /external/clang/lib/Sema/
SemaLookup.cpp     [all...]
  /external/llvm/lib/Analysis/
ScalarEvolutionExpander.cpp 548 BuilderType::InsertPoint SaveInsertPt = Builder.saveIP();
    [all...]

Completed in 314 milliseconds