Home
last modified time | relevance | path

Searched refs:Dead (Results 1 – 25 of 57) sorted by relevance

123

/freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/
DLiveRangeEdit.cpp187 SmallVectorImpl<MachineInstr*> &Dead) { in foldAsLoad() argument
240 Dead.push_back(DefMI); in foldAsLoad()
394 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead, in eliminateDeadDefs() argument
401 while (!Dead.empty()) in eliminateDeadDefs()
402 eliminateDeadDef(Dead.pop_back_val(), ToShrink, AA); in eliminateDeadDefs()
410 if (foldAsLoad(LI, Dead)) in eliminateDeadDefs()
415 if (!LIS.shrinkToUses(LI, &Dead)) in eliminateDeadDefs()
DReachingDefAnalysis.cpp645 InstSet &Dead) const { in collectKilledOperands()
646 Dead.insert(MI); in collectKilledOperands()
647 auto IsDead = [this, &Dead](MachineInstr *Def, MCRegister PhysReg) { in collectKilledOperands()
664 return llvm::set_is_subset(Uses, Dead); in collectKilledOperands()
672 collectKilledOperands(Def, Dead); in collectKilledOperands()
DRDFLiveness.cpp301 return DA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachingDefs()
430 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead; in getAllReachedUses()
511 bool IsDead = DA.Addr->getFlags() & NodeAttrs::Dead; in computePhiInfo()
DSplitKit.cpp1413 SmallVector<MachineInstr*, 8> Dead; in deleteRematVictims() local
1430 Dead.push_back(MI); in deleteRematVictims()
1434 if (Dead.empty()) in deleteRematVictims()
1437 Edit->eliminateDeadDefs(Dead, None, &AA); in deleteRematVictims()
DRDFGraph.cpp85 if (Flags & NodeAttrs::Dead) in operator <<()
1306 Flags |= NodeAttrs::Dead; in buildStmt()
1320 NodeAttrs::Dead; in buildStmt()
1354 Flags |= NodeAttrs::Dead; in buildStmt()
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/Transforms/Utils/
DSimplifyIndVar.h53 SmallVectorImpl<WeakTrackingVH> &Dead,
60 SmallVectorImpl<WeakTrackingVH> &Dead);
/freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
DLiveRangeEdit.h102 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr *> &Dead);
246 void eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead,
DMachineInstrBuilder.h50 Dead = 0x10, enumerator
105 flags & RegState::Dead,
512 return B ? RegState::Dead : 0; in getDeadRegState()
DReachingDefAnalysis.h220 void collectKilledOperands(MachineInstr *MI, InstSet &Dead) const;
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/
DRISCVInsertVSETVLI.cpp417 .addReg(RISCV::X0, RegState::Define | RegState::Dead) in insertVSETVLI()
426 .addReg(RISCV::X0, RegState::Define | RegState::Dead) in insertVSETVLI()
439 .addReg(RISCV::X0, RegState::Define | RegState::Dead) in insertVSETVLI()
447 .addReg(RISCV::X0, RegState::Define | RegState::Dead) in insertVSETVLI()
458 .addReg(DestReg, RegState::Define | RegState::Dead) in insertVSETVLI()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
DGlobalOpt.cpp208 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; in CleanupPointerRootUsers() local
221 Dead.push_back(std::make_pair(I, SI)); in CleanupPointerRootUsers()
229 Dead.push_back(std::make_pair(I, MSI)); in CleanupPointerRootUsers()
238 Dead.push_back(std::make_pair(I, MTI)); in CleanupPointerRootUsers()
249 Dead.clear(); in CleanupPointerRootUsers()
256 for (int i = 0, e = Dead.size(); i != e; ++i) { in CleanupPointerRootUsers()
257 if (IsSafeComputationToRemove(Dead[i].first, GetTLI)) { in CleanupPointerRootUsers()
258 Dead[i].second->eraseFromParent(); in CleanupPointerRootUsers()
259 Instruction *I = Dead[i].first; in CleanupPointerRootUsers()
1306 bool Dead; in deleteIfDead() local
[all …]
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/ARM/
DARMLowOverheadLoops.cpp543 for (auto *Dead : Killed) in INITIALIZE_PASS() local
544 BasicBlocks.insert(Dead->getParent()); in INITIALIZE_PASS()
561 for (auto *Dead : Killed) { in INITIALIZE_PASS() local
562 if (MachineOperand *MO = Dead->findRegisterUseOperand(ARM::ITSTATE)) { in INITIALIZE_PASS()
563 MachineInstr *IT = RDA.getMIOperand(Dead, *MO); in INITIALIZE_PASS()
566 CurrentBlock.erase(Dead); in INITIALIZE_PASS()
594 LLVM_DEBUG(for (auto *Dead : Killed) in INITIALIZE_PASS()
595 dbgs() << " - " << *Dead); in INITIALIZE_PASS()
/freebsd-12-stable/contrib/googletest/googletest/xcode/Config/
DDebugProject.xcconfig19 // Dead code stripping off
DReleaseProject.xcconfig24 // Dead code strip does not affect ObjC code but can help for C
/freebsd-12-stable/usr.bin/calendar/calendars/
Dcalendar.lotr18 02/26 Aragorn takes the Paths of the Dead
Dcalendar.music49 01/31 The Grateful Dead are busted in New Orleans, 1970
114 03/08 Ron "Pigpen" McKernan (Grateful Dead) dies in California, 1973
361 09/08 Ron "Pigpen" McKernan (Grateful Dead) is born in San Bruno,
415 10/16 Bob Weir (Grateful Dead) is born in San Francisco, 1947
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Transforms/Utils/
DSimplifyIndVar.cpp67 SmallVectorImpl<WeakTrackingVH> &Dead) in SimplifyIndvar() argument
69 DeadInsts(Dead), Changed(false) { in SimplifyIndvar()
918 SmallVectorImpl<WeakTrackingVH> &Dead, in simplifyUsersOfIV() argument
921 Rewriter, Dead); in simplifyUsersOfIV()
930 SmallVectorImpl<WeakTrackingVH> &Dead) { in simplifyLoopIVs() argument
938 simplifyUsersOfIV(cast<PHINode>(I), SE, DT, LI, TTI, Dead, Rewriter); in simplifyLoopIVs()
DBasicBlockUtils.cpp98 SmallPtrSet<BasicBlock *, 4> Dead(BBs.begin(), BBs.end()); in DeleteDeadBlocks() local
99 assert(Dead.size() == BBs.size() && "Duplicating blocks?"); in DeleteDeadBlocks()
100 for (auto *BB : Dead) in DeleteDeadBlocks()
102 assert(Dead.count(Pred) && "All predecessors must be dead!"); in DeleteDeadBlocks()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/SystemZ/
DSystemZElimCompare.cpp236 MIB.addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead); in convertToBRCT()
682 RegState::ImplicitDefine | RegState::Dead); in fuseCompareOperations()
DSystemZShortenInst.cpp147 .addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead); in shortenOn001AddCC()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
DSIFormMemoryClauses.cpp138 S |= RegState::Dead; in getMopState()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/
DAArch64FrameLowering.cpp1348 .addReg(AArch64::X16, RegState::Implicit | RegState::Define | RegState::Dead) in emitPrologue()
1349 .addReg(AArch64::X17, RegState::Implicit | RegState::Define | RegState::Dead) in emitPrologue()
1350 .addReg(AArch64::NZCV, RegState::Implicit | RegState::Define | RegState::Dead) in emitPrologue()
1373 .addReg(AArch64::X16, RegState::Implicit | RegState::Define | RegState::Dead) in emitPrologue()
1374 .addReg(AArch64::X17, RegState::Implicit | RegState::Define | RegState::Dead) in emitPrologue()
1375 .addReg(AArch64::NZCV, RegState::Implicit | RegState::Define | RegState::Dead) in emitPrologue()
DAArch64ConditionalCompares.cpp638 .addReg(DestReg, RegState::Define | RegState::Dead) in convert()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/
DMipsISelLowering.cpp1599 RegState::Implicit | RegState::Dead); in emitAtomicBinary()
1604 RegState::Implicit | RegState::Dead); in emitAtomicBinary()
1812 RegState::Dead | RegState::Implicit) in emitAtomicBinaryPartword()
1814 RegState::Dead | RegState::Implicit) in emitAtomicBinaryPartword()
1816 RegState::Dead | RegState::Implicit); in emitAtomicBinaryPartword()
1820 RegState::Dead | RegState::Implicit); in emitAtomicBinaryPartword()
1883 RegState::Dead | RegState::Implicit); in emitAtomicCmpSwap()
2005 RegState::Dead | RegState::Implicit) in emitAtomicCmpSwapPartword()
2007 RegState::Dead | RegState::Implicit); in emitAtomicCmpSwapPartword()
/freebsd-12-stable/contrib/llvm-project/llvm/lib/Analysis/
DInlineCost.cpp2456 BasicBlock *Dead = NewDead.pop_back_val(); in findDeadBlocks() local
2457 if (DeadBlocks.insert(Dead)) in findDeadBlocks()
2459 for (BasicBlock *S : successors(Dead)) in findDeadBlocks()

123