Home
last modified time | relevance | path

Searched refs:isDead (Results 1 – 25 of 98) sorted by relevance

1234

/third_party/node/test/parallel/
Dtest-cluster-worker-isdead.js8 let workerDead = worker.isDead();
14 workerDead = worker.isDead();
27 const workerDead = cluster.worker.isDead();
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/
DAVRExpandPseudoInsts.cpp147 bool DstIsDead = MI.getOperand(0).isDead(); in expandArith()
150 bool ImpIsDead = MI.getOperand(3).isDead(); in expandArith()
180 bool DstIsDead = MI.getOperand(0).isDead(); in expandLogic()
183 bool ImpIsDead = MI.getOperand(3).isDead(); in expandLogic()
226 bool DstIsDead = MI.getOperand(0).isDead(); in expandLogicImm()
228 bool ImpIsDead = MI.getOperand(3).isDead(); in expandLogicImm()
278 bool DstIsDead = MI.getOperand(0).isDead(); in expand()
280 bool ImpIsDead = MI.getOperand(3).isDead(); in expand()
330 bool DstIsDead = MI.getOperand(0).isDead(); in expand()
332 bool ImpIsDead = MI.getOperand(3).isDead(); in expand()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DDeadMachineInstructionElim.cpp50 bool isDead(const MachineInstr *MI) const;
59 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { in isDead() function in DeadMachineInstructionElim
85 if (MO.isDead()) { in isDead()
138 if (isDead(MI)) { in runOnMachineFunction()
DMachineInstrBundle.cpp187 if (MO.isDead()) { in finalizeBundle()
193 if (!MO.isDead()) in finalizeBundle()
198 if (!MO.isDead() && Register::isPhysicalRegister(Reg)) { in finalizeBundle()
215 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg); in finalizeBundle() local
216 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) | in finalizeBundle()
348 if (!MO.isDead()) in AnalyzePhysRegInBundle()
DLiveRangeShrink.cpp146 else if (MO.isDead() && UseMap.count(MO.getReg())) in runOnMachineFunction()
174 if (!MO.isReg() || MO.isDead() || MO.isDebug()) in runOnMachineFunction()
DPHIElimination.cpp252 bool isDead = MPhi->getOperand(0).isDead(); in LowerPHINode() local
320 if (isDead) { in LowerPHINode()
347 if (DestLI.endIndex().isDead()) { in LowerPHINode()
DMachineCSE.cpp316 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end())) in hasLivePhysRegDefUses()
604 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead()) in ProcessBlockCSE()
609 if (MO.isImplicit() && !MO.isDead() && OldReg == NewReg) in ProcessBlockCSE()
660 if (!MI->getOperand(PhysDef.first).isDead()) in ProcessBlockCSE()
DTailDuplicator.cpp180 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken(); in tailDuplicateAndUpdate() local
182 updateSuccessorsPHIs(MBB, isDead, TDBBs, Succs); in tailDuplicateAndUpdate()
185 if (isDead) { in tailDuplicateAndUpdate()
468 MachineBasicBlock *FromBB, bool isDead, in updateSuccessorsPHIs() argument
488 if (isDead) { in updateSuccessorsPHIs()
DDetectDeadLanes.cpp367 if (Def.isDead()) in determineInitialDefinedLanes()
409 if (DefMI.isImplicitDef() || Def.isDead()) in determineInitialDefinedLanes()
544 if (MO.isDef() && !MO.isDead() && RegInfo.UsedLanes.none()) { in runOnce()
DRegAllocFast.cpp831 } else if (MO.isDead()) { in reloadVirtReg()
842 } else if (MO.isDead()) { in reloadVirtReg()
858 bool Dead = MO.isDead(); in setPhysReg()
1067 (MO.isImplicit() || MO.isDead()) ? regFree : regReserved); in allocateInstruction()
1174 definePhysReg(MI, Reg, MO.isDead() ? regFree : regReserved); in allocateInstruction()
DMachineInstr.cpp637 if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) in isIdenticalTo()
992 MachineInstr::findRegisterDefOperandIdx(Register Reg, bool isDead, bool Overlap, in findRegisterDefOperandIdx() argument
1011 if (Found && (!isDead || MO.isDead())) in findRegisterDefOperandIdx()
1390 if (!MO.isDead()) in allDefsAreDead()
1883 } else if (hasAliases && MO.isDead() && in addRegisterDead()
DMachineOperand.cpp235 bool isKill, bool isDead, bool isUndef, in ChangeToRegister() argument
247 assert(!(isDead && !isDef) && "Dead flag on non-def"); in ChangeToRegister()
254 IsDeadOrKill = isKill | isDead; in ChangeToRegister()
739 if (isDead()) in print()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DMachineOperand.h383 bool isDead() const { in isDead() function
754 bool isKill = false, bool isDead = false,
780 bool isKill = false, bool isDead = false,
786 assert(!(isDead && !isDef) && "Dead flag on non-def");
791 Op.IsDeadOrKill = isKill | isDead;
DMachineInstr.h1270 bool isDead = false, bool Overlap = false,
1276 findRegisterDefOperand(Register Reg, bool isDead = false,
1279 int Idx = findRegisterDefOperandIdx(Reg, isDead, Overlap, TRI);
1284 findRegisterDefOperand(Register Reg, bool isDead = false,
1288 Reg, isDead, Overlap, TRI);
DTailDuplicator.h109 void updateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64ExpandPseudoInsts.cpp146 bool DstIsDead = MI.getOperand(0).isDead(); in expandMOVImm()
157 bool DstIsDead = MI.getOperand(0).isDead(); in expandMOVImm()
182 bool StatusDead = MI.getOperand(1).isDead(); in expandCMP_SWAP()
210 .addReg(Dest.getReg(), getKillRegState(Dest.isDead())) in expandCMP_SWAP()
262 bool StatusDead = MI.getOperand(2).isDead(); in expandCMP_SWAP_128()
291 .addReg(DestLo.getReg(), getKillRegState(DestLo.isDead())) in expandCMP_SWAP_128()
299 .addReg(DestHi.getReg(), getKillRegState(DestHi.isDead())) in expandCMP_SWAP_128()
DAArch64DeadRegisterDefinitionsPass.cpp150 (!MO.isDead() && !MRI->use_nodbg_empty(Reg))) in processMachineBasicBlock()
/third_party/skia/src/sksl/transform/
DSkSLEliminateDeadGlobalVariables.cpp28 if (!usage->isDead(varDecl.var())) { in EliminateDeadGlobalVariables()
/third_party/node/lib/internal/cluster/
Dworker.js51 Worker.prototype.isDead = function() { method in Worker
/third_party/skia/third_party/externals/swiftshader/src/Reactor/
DOptimizer.cpp46 bool isDead(Ice::Inst *instruction);
290 if(!isDead(newAllocas[i])) in performScalarReplacementOfAggregates()
312 if(isDead(&inst)) in eliminateDeadCode()
572 bool Optimizer::isDead(Ice::Inst *instruction) in isDead() function in __anona784d5550111::Optimizer
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/
DWebAssemblyOptimizeLiveIntervals.cpp98 if (MI->isImplicitDef() && MI->getOperand(0).isDead()) { in runOnMachineFunction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/
DBPFMIChecking.cpp119 if (!MO.isDead()) { in hasLiveDefs()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/
DARMExpandPseudoInsts.cpp483 bool DstIsDead = MI.getOperand(OpIdx).isDead(); in ExpandVLD()
686 DstIsDead = MI.getOperand(OpIdx).isDead(); in ExpandLaneOp()
833 bool DstIsDead = MI.getOperand(0).isDead(); in ExpandMOV32BitImm()
976 .addReg(Dest.getReg(), getKillRegState(Dest.isDead())) in ExpandCMP_SWAP()
1091 .addReg(DestLo, getKillRegState(Dest.isDead())) in ExpandCMP_SWAP_64()
1096 .addReg(DestHi, getKillRegState(Dest.isDead())) in ExpandCMP_SWAP_64()
1114 unsigned Flags = getKillRegState(New.isDead()); in ExpandCMP_SWAP_64()
1452 bool DstIsDead = MI.getOperand(0).isDead(); in ExpandMI()
1474 bool DstIsDead = MI.getOperand(0).isDead(); in ExpandMI()
1532 bool DstIsDead = MI.getOperand(0).isDead(); in ExpandMI()
[all …]
DThumb2SizeReduction.cpp809 if (HasCC && MI->getOperand(NumOps-1).isDead()) in ReduceTo2Addr()
901 if (HasCC && MI->getOperand(NumOps-1).isDead()) in ReduceToNarrow()
981 if (!MO.isDead()) in UpdateCPSRDef()
1091 if (MO && !MO->isDead()) in ReduceMBB()
/third_party/skia/src/sksl/analysis/
DSkSLProgramUsage.cpp114 bool ProgramUsage::isDead(const Variable& v) const { in isDead() function in SkSL::ProgramUsage

1234