Searched refs:isDead (Results 26 - 50 of 98) sorted by relevance

1234

/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/
H A DMachineOperand.cpp235 bool isKill, bool isDead, bool isUndef,
247 assert(!(isDead && !isDef) && "Dead flag on non-def");
254 IsDeadOrKill = isKill | isDead;
739 if (isDead())
234 ChangeToRegister(Register Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
H A DLiveInterval.cpp89 assert(!Def.isDead() && "Cannot define a value at the dead slot");
597 bool isDead = true;
600 isDead = false;
603 if (isDead) {
H A DLivePhysRegs.cpp106 if (Reg.second->isReg() && Reg.second->isDead())
H A DMachineInstr.cpp637 if (Check == CheckKillDead && MO.isDead() != OMO.isDead())
988 /// the specified register or -1 if it is not found. If isDead is true, defs
992 MachineInstr::findRegisterDefOperandIdx(Register Reg, bool isDead, bool Overlap, argument
1011 if (Found && (!isDead || MO.isDead()))
1390 if (!MO.isDead())
1883 } else if (hasAliases && MO.isDead() &&
H A DMachineLICM.cpp479 if (!MO.isDead())
1064 } else if (!MO.isDead()) {
1531 if (MO.isReg() && MO.isDef() && !MO.isDead())
H A DPeepholeOptimizer.cpp883 while (CopyLike.getOperand(CurrentSrcIdx).isDead()) {
1360 if (MO.isImplicit() && MO.isDead())
1852 if (MO.isImplicit() && MO.isDead())
H A DRenameIndependentSubregs.cpp359 if (!MO.isDead()) {
H A DImplicitNullChecks.cpp701 if (!MO.isReg() || !MO.getReg() || !MO.isDef() || MO.isDead())
H A DInlineSpiller.cpp857 assert(MO->isDead() && "Cannot fold physreg def");
1046 if (!MO.isDead())
1520 if (MO.isReg() && MO.isImplicit() && MO.isDef() && !MO.isDead())
H A DLiveIntervals.cpp1136 bool OldIdxDefIsDead = OldIdxOut->end.isDead();
1270 bool OldIdxDefIsDead = OldIdxOut->end.isDead();
1535 if (LII->end.isDead()) {
H A DBranchFolding.cpp1858 if (!MO.isDead())
2002 if (Defs.count(Reg) && !MO.isDead()) {
2057 if (!MO.isReg() || !MO.isDef() || MO.isDead())
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/WebAssembly/
H A DWebAssemblyLateEHPrepare.cpp244 if (MI.getOperand(0).isDead())
H A DWebAssemblyRegStackify.cpp340 if (MO.isDead() && Insert->definesRegister(Reg) &&
616 .addReg(DefReg, getUndefRegState(DefMO.isDead()));
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMExpandPseudoInsts.cpp483 bool DstIsDead = MI.getOperand(OpIdx).isDead();
686 DstIsDead = MI.getOperand(OpIdx).isDead();
833 bool DstIsDead = MI.getOperand(0).isDead();
976 .addReg(Dest.getReg(), getKillRegState(Dest.isDead()))
1091 .addReg(DestLo, getKillRegState(Dest.isDead()))
1096 .addReg(DestHi, getKillRegState(Dest.isDead()))
1114 unsigned Flags = getKillRegState(New.isDead());
1452 bool DstIsDead = MI.getOperand(0).isDead();
1474 bool DstIsDead = MI.getOperand(0).isDead();
1532 bool DstIsDead = MI.getOperand(0).isDead();
[all...]
H A DMLxExpansionPass.cpp273 bool DstDead = MI->getOperand(0).isDead();
H A DARMBaseInstrInfo.cpp269 if (WB.isDead())
285 if (MO.isDead())
562 if (MO.isReg() && MO.getReg() == ARM::CPSR && MO.isDef() && !MO.isDead())
689 if (!MO.isDead())
1519 if (isThumb1 || !MI->getOperand(1).isDead()) {
1529 if (isThumb1 || !MI->getOperand(0).isDead()) {
1607 if (MI.getOperand(0).isDead())
2200 if (MO.isDef() && !MO.isDead())
3197 if (MO.getReg() == ARM::CPSR && !MO.isDead())
/freebsd-11-stable/contrib/llvm-project/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSMTConstraintManager.h205 if (SymReaper.isDead(I->first))
H A DSymbolManager.h613 bool isDead(SymbolRef sym) { function in class:clang::ento::SymbolReaper
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSlotIndexes.h235 /// isDead - Returns true if this is a dead def kill slot.
236 bool isDead() const { return getSlot() == Slot_Dead; } function in class:llvm::SlotIndex
H A DMachineInstrBuilder.h499 getKillRegState(RegOp.isKill()) | getDeadRegState(RegOp.isDead()) |
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DSIFormMemoryClauses.cpp140 if (MO.isDead())
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DStreamChecker.cpp334 if (!SymReaper.isDead(Sym) || !SS.isOpened())
H A DExprInspectionChecker.cpp268 if (!SymReaper.isDead(Sym))
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/Analysis/
H A DLazyCallGraph.h350 bool isDead() const { function in class:llvm::LazyCallGraph::Edge::Node
1215 return Value.getPointer() && !Value.getPointer()->isDead();
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonHardwareLoops.cpp223 bool isDead(const MachineInstr *MI,
1031 /// copied from DeadMachineInstructionElim::isDead, but with special cases
1034 bool HexagonHardwareLoops::isDead(const MachineInstr *MI, function in class:HexagonHardwareLoops
1086 if (isDead(MI, DeadPhis)) {

Completed in 196 milliseconds

1234