| /freebsd-12-stable/contrib/llvm-project/llvm/lib/CodeGen/ |
| D | LiveRangeEdit.cpp | 187 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()
|
| D | ReachingDefAnalysis.cpp | 645 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()
|
| D | RDFLiveness.cpp | 301 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()
|
| D | SplitKit.cpp | 1413 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()
|
| D | RDFGraph.cpp | 85 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/ |
| D | SimplifyIndVar.h | 53 SmallVectorImpl<WeakTrackingVH> &Dead, 60 SmallVectorImpl<WeakTrackingVH> &Dead);
|
| /freebsd-12-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/ |
| D | LiveRangeEdit.h | 102 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr *> &Dead); 246 void eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead,
|
| D | MachineInstrBuilder.h | 50 Dead = 0x10, enumerator 105 flags & RegState::Dead, 512 return B ? RegState::Dead : 0; in getDeadRegState()
|
| D | ReachingDefAnalysis.h | 220 void collectKilledOperands(MachineInstr *MI, InstSet &Dead) const;
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/RISCV/ |
| D | RISCVInsertVSETVLI.cpp | 417 .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/ |
| D | GlobalOpt.cpp | 208 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/ |
| D | ARMLowOverheadLoops.cpp | 543 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/ |
| D | DebugProject.xcconfig | 19 // Dead code stripping off
|
| D | ReleaseProject.xcconfig | 24 // Dead code strip does not affect ObjC code but can help for C
|
| /freebsd-12-stable/usr.bin/calendar/calendars/ |
| D | calendar.lotr | 18 02/26 Aragorn takes the Paths of the Dead
|
| D | calendar.music | 49 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/ |
| D | SimplifyIndVar.cpp | 67 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()
|
| D | BasicBlockUtils.cpp | 98 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/ |
| D | SystemZElimCompare.cpp | 236 MIB.addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead); in convertToBRCT() 682 RegState::ImplicitDefine | RegState::Dead); in fuseCompareOperations()
|
| D | SystemZShortenInst.cpp | 147 .addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead); in shortenOn001AddCC()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| D | SIFormMemoryClauses.cpp | 138 S |= RegState::Dead; in getMopState()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/AArch64/ |
| D | AArch64FrameLowering.cpp | 1348 .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()
|
| D | AArch64ConditionalCompares.cpp | 638 .addReg(DestReg, RegState::Define | RegState::Dead) in convert()
|
| /freebsd-12-stable/contrib/llvm-project/llvm/lib/Target/Mips/ |
| D | MipsISelLowering.cpp | 1599 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/ |
| D | InlineCost.cpp | 2456 BasicBlock *Dead = NewDead.pop_back_val(); in findDeadBlocks() local 2457 if (DeadBlocks.insert(Dead)) in findDeadBlocks() 2459 for (BasicBlock *S : successors(Dead)) in findDeadBlocks()
|