Home
last modified time | relevance | path

Searched refs:getPrevNode (Results 1 – 25 of 29) sorted by relevance

12

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A Dilist_node.h274 NodeTy *getPrevNode() { in getPrevNode() function
279 return List.getPrevNode(*static_cast<NodeTy *>(this)); in getPrevNode()
283 const NodeTy *getPrevNode() const { in getPrevNode() function
284 return const_cast<ilist_node_with_parent *>(this)->getPrevNode(); in getPrevNode()
H A Dilist.h360 pointer getPrevNode(reference N) const {
367 const_pointer getPrevNode(const_reference N) const {
368 return getPrevNode(const_cast<reference >(N));
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/ARM/
H A DARMBlockPlacement.cpp99 if (!LoopExit->getPrevNode()) in fixBackwardsWLS()
182 MachineBasicBlock *BBPrevious = BB->getPrevNode(); in moveBasicBlock()
186 MachineBasicBlock *BeforePrev = Before->getPrevNode(); in moveBasicBlock()
H A DMVEGatherScatterLowering.cpp852 .getPrevNode()); in pushOutMul()
H A DARMConstantIslandPass.cpp2240 MachineInstr *Shift = User.MI->getPrevNode(); in optimizeThumb2JumpTables()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/
H A DBasicBlock.cpp161 const Instruction *Prev = RI->getPrevNode(); in getTerminatingMustTailCall()
172 Prev = BI->getPrevNode(); in getTerminatingMustTailCall()
192 if (auto *CI = dyn_cast_or_null<CallInst>(RI->getPrevNode())) in getTerminatingDeoptimizeCall()
H A DInstruction.cpp708 for (const Instruction *I = getPrevNode(); I; I = I->getPrevNode()) in getPrevNonDebugInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/
H A DX86AvoidStoreForwardingBlocks.cpp506 MachineInstr *LastLoad = LoadInst->getPrevNode(); in updateKillStatus()
512 LastLoad = LoadInst->getPrevNode()->getPrevNode(); in updateKillStatus()
519 getBaseOperand(StInst->getPrevNode()).setIsKill(StoreBase.isKill()); in updateKillStatus()
H A DX86LoadValueInjectionLoadHardening.cpp743 Prev = MI->getPrevNode(); in insertFences()
755 : InsertionPt->getPrevNode(); in insertFences()
H A DX86FixupLEAs.cpp668 LLVM_DEBUG(MI.getPrevNode()->dump();); in processInstrForSlow3OpLEA()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/
H A DWebAssemblyCFGStackify.cpp278 MachineBasicBlock *LayoutPred = MBB.getPrevNode(); in placeBlockMarker()
306 auto *LoopBottom = BeginToEnd[&MI]->getParent()->getPrevNode(); in placeBlockMarker()
502 MachineBasicBlock *LayoutPred = Cont->getPrevNode(); in placeTryMarker()
530 auto *LoopBottom = BeginToEnd[&MI]->getParent()->getPrevNode(); in placeTryMarker()
707 MachineBasicBlock *EHPadLayoutPred = MBB.getPrevNode(); in removeUnnecessaryInstrs()
1537 Worklist.push_back(MBB->getPrevNode()->rbegin()); in fixEndsAtEndOfFunction()
H A DWebAssemblyLowerEmscriptenEHSjLj.cpp937 const Instruction *Prev = InsertBefore->getPrevNode(); in getOrCreateDebugLoc()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
H A DGVNSink.cpp142 Insts.push_back(BB->getTerminator()->getPrevNode()); in reset()
178 NewInsts.push_back(Inst->getPrevNode()); in operator --()
837 Insts.push_back(BB->getTerminator()->getPrevNode()); in sinkLastInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/
H A DMustExecute.cpp768 bool IsFirst = !(PP->getPrevNode()); in getMustBeExecutedPrevInstruction()
785 const Instruction *PrevPP = PP->getPrevNode(); in getMustBeExecutedPrevInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/GlobalISel/
H A DRegBankSelect.cpp908 return Instr.getPrevNode() && Instr.getPrevNode()->isTerminator(); in isSplit()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCFragment.cpp77 LastValidFragment[F->getParent()] = F->getPrevNode(); in invalidateFragmentsFrom()
H A DMCAssembler.cpp396 MCFragment *Prev = F->getPrevNode(); in layoutFragment()
1087 F = F->getPrevNode()) in relaxBoundaryAlign()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/X86/MCTargetDesc/
H A DX86AsmBackend.cpp497 for (; isa_and_nonnull<MCDataFragment>(F); F = F->getPrevNode()) in isRightAfterData()
614 if (PendingBA && OS.getCurrentFragment()->getPrevNode() == PendingBA) { in emitInstructionBegin()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DFixupStatepointCallerSaved.cpp442 MachineInstr *Reload = It->getPrevNode(); in insertReloadBefore()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DHotColdSplitting.cpp136 dyn_cast_or_null<CallInst>(BB.getTerminator()->getPrevNode())) in unlikelyExecuted()
H A DOpenMPOpt.cpp820 NextForkCI->getPrevNode()); in mergeParallelRegions()
2047 while ((CurrInst = CurrInst->getPrevNode())) { in getReplacementValue()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/
H A DSimplifyCFG.cpp1801 I = I->getPrevNode(); in sinkLastInstruction()
1912 for (Inst = Inst->getPrevNode(); Inst && isa<DbgInfoIntrinsic>(Inst);) in reset()
1913 Inst = Inst->getPrevNode(); in reset()
1931 for (Inst = Inst->getPrevNode(); Inst && isa<DbgInfoIntrinsic>(Inst);) in operator --()
1932 Inst = Inst->getPrevNode(); in operator --()
2174 << *UnconditionalPreds[0]->getTerminator()->getPrevNode() in SinkCommonCodeFromPredecessors()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/
H A DSIWholeQuadMode.cpp637 if (MachineInstr *PrevMI = MI.getPrevNode()) { in propagateInstruction()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Coroutines/
H A DCoroSplit.cpp1376 Instruction *Prev = Suspend->getPrevNode(); in simplifySuspendPoint()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DFastISel.cpp210 EmitStartPt = EmitStartPt->getPrevNode(); in flushLocalValueMap()

12