Searched refs:Dead (Results 1 - 25 of 50) sorted by relevance

12

/openbsd-current/games/robots/
H A Dplay_level.c63 while (!Dead && Num_robots > 0) {
69 Dead = TRUE;
70 if (!Dead)
85 if (!Dead) {
H A Dextern.c36 bool Dead; /* Player is now dead */ variable
H A Dinit_field.c71 Dead = FALSE;
H A Drobots.h82 extern bool Dead, Full_clear, Jump, Newscore, Real_time, Running,
H A Dmove_robs.c76 Dead = TRUE;
H A Dmain.c157 for (Level = Start_level; !Dead; Level++) {
/openbsd-current/gnu/llvm/llvm/include/llvm/Transforms/Utils/
H A DSimplifyIndVar.h52 SmallVectorImpl<WeakTrackingVH> &Dead,
59 SmallVectorImpl<WeakTrackingVH> &Dead);
/openbsd-current/gnu/llvm/llvm/lib/CodeGen/
H A DLiveRangeEdit.cpp192 // DestReg of the cloned instruction cannot be Dead. Set isDead of DestReg
210 SmallVectorImpl<MachineInstr*> &Dead) {
263 Dead.push_back(DefMI);
435 void LiveRangeEdit::eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead, argument
441 while (!Dead.empty())
442 eliminateDeadDef(Dead.pop_back_val(), ToShrink);
449 if (foldAsLoad(LI, Dead))
454 if (!LIS.shrinkToUses(LI, &Dead))
209 foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr*> &Dead) argument
H A DReachingDefAnalysis.cpp650 InstSet &Dead) const {
651 Dead.insert(MI);
652 auto IsDead = [this, &Dead](MachineInstr *Def, MCRegister PhysReg) {
669 return llvm::set_is_subset(Uses, Dead);
677 collectKilledOperands(Def, Dead);
H A DRDFLiveness.cpp115 // Dead defs will be treated as if they were live, since they are actually
300 return DA.Addr->getFlags() & NodeAttrs::Dead;
428 bool IsDead = DefA.Addr->getFlags() & NodeAttrs::Dead;
509 bool IsDead = DA.Addr->getFlags() & NodeAttrs::Dead;
H A DSplitKit.cpp1428 SmallVector<MachineInstr*, 8> Dead;
1432 // Dead defs end at the dead slot.
1445 Dead.push_back(MI);
1449 if (Dead.empty())
1452 Edit->eliminateDeadDefs(Dead, std::nullopt);
H A DRDFGraph.cpp83 if (Flags & NodeAttrs::Dead)
1295 Flags |= NodeAttrs::Dead;
1309 NodeAttrs::Dead;
1343 Flags |= NodeAttrs::Dead;
/openbsd-current/gnu/llvm/llvm/include/llvm/CodeGen/
H A DLiveRangeEdit.h98 bool foldAsLoad(LiveInterval *LI, SmallVectorImpl<MachineInstr *> &Dead);
240 void eliminateDeadDefs(SmallVectorImpl<MachineInstr *> &Dead,
H A DMachineInstrBuilder.h50 Dead = 0x10, enumerator in enum:llvm::RegState::__anon1730
105 flags & RegState::Dead,
535 return B ? RegState::Dead : 0;
H A DReachingDefAnalysis.h220 void collectKilledOperands(MachineInstr *MI, InstSet &Dead) const;
/openbsd-current/gnu/llvm/lldb/source/Host/linux/
H A DHost.cpp42 Dead, member in class:__anon1326::ProcessState
105 .Case("X", ProcessState::Dead)
/openbsd-current/gnu/llvm/llvm/lib/Transforms/IPO/
H A DGlobalOpt.cpp205 // If Dead[n].first is the only use of a malloc result, we can delete its
206 // chain of computation and the store to the global in Dead[n].second.
207 SmallVector<std::pair<Instruction *, Instruction *>, 32> Dead; local
218 Dead.push_back(std::make_pair(I, SI));
226 Dead.push_back(std::make_pair(I, MSI));
235 Dead.push_back(std::make_pair(I, MTI));
246 Dead.clear();
253 for (int i = 0, e = Dead.size(); i != e; ++i) {
254 if (IsSafeComputationToRemove(Dead[i].first, GetTLI)) {
255 Dead[
[all...]
/openbsd-current/gnu/llvm/llvm/lib/Target/ARM/
H A DARMLowOverheadLoops.cpp554 for (auto *Dead : Killed)
555 BasicBlocks.insert(Dead->getParent());
572 for (auto *Dead : Killed) {
573 if (MachineOperand *MO = Dead->findRegisterUseOperand(ARM::ITSTATE)) {
574 MachineInstr *IT = RDA.getMIOperand(Dead, *MO);
577 CurrentBlock.erase(Dead);
605 LLVM_DEBUG(for (auto *Dead : Killed)
606 dbgs() << " - " << *Dead);
/openbsd-current/gnu/llvm/llvm/lib/Target/RISCV/
H A DRISCVInsertVSETVLI.cpp727 .addReg(RISCV::X0, RegState::Define | RegState::Dead)
736 .addReg(RISCV::X0, RegState::Define | RegState::Dead)
749 .addReg(RISCV::X0, RegState::Define | RegState::Dead)
757 .addReg(RISCV::X0, RegState::Define | RegState::Dead)
776 .addReg(DestReg, RegState::Define | RegState::Dead)
/openbsd-current/gnu/llvm/llvm/lib/Target/SystemZ/
H A DSystemZElimCompare.cpp235 MIB.addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead);
680 RegState::ImplicitDefine | RegState::Dead);
H A DSystemZShortenInst.cpp148 .addReg(SystemZ::CC, RegState::ImplicitDefine | RegState::Dead);
/openbsd-current/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DSIFormMemoryClauses.cpp138 S |= RegState::Dead;
/openbsd-current/gnu/llvm/llvm/lib/Transforms/Utils/
H A DSimplifyIndVar.cpp65 SmallVectorImpl<WeakTrackingVH> &Dead)
67 DeadInsts(Dead) {
955 SmallVectorImpl<WeakTrackingVH> &Dead,
958 Rewriter, Dead);
967 SmallVectorImpl<WeakTrackingVH> &Dead) {
975 simplifyUsersOfIV(cast<PHINode>(I), SE, DT, LI, TTI, Dead, Rewriter);
62 SimplifyIndvar(Loop *Loop, ScalarEvolution *SE, DominatorTree *DT, LoopInfo *LI, const TargetTransformInfo *TTI, SCEVExpander &Rewriter, SmallVectorImpl<WeakTrackingVH> &Dead) argument
953 simplifyUsersOfIV(PHINode *CurrIV, ScalarEvolution *SE, DominatorTree *DT, LoopInfo *LI, const TargetTransformInfo *TTI, SmallVectorImpl<WeakTrackingVH> &Dead, SCEVExpander &Rewriter, IVVisitor *V) argument
965 simplifyLoopIVs(Loop *L, ScalarEvolution *SE, DominatorTree *DT, LoopInfo *LI, const TargetTransformInfo *TTI, SmallVectorImpl<WeakTrackingVH> &Dead) argument
H A DBasicBlockUtils.cpp104 SmallPtrSet<BasicBlock *, 4> Dead(BBs.begin(), BBs.end());
105 assert(Dead.size() == BBs.size() && "Duplicating blocks?");
106 for (auto *BB : Dead)
108 assert(Dead.count(Pred) && "All predecessors must be dead!");
/openbsd-current/gnu/llvm/llvm/lib/Target/AArch64/
H A DAArch64ConditionalCompares.cpp637 .addReg(DestReg, RegState::Define | RegState::Dead)

Completed in 379 milliseconds

12