/third_party/node/test/parallel/ |
D | test-cluster-worker-isdead.js | 8 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/ |
D | AVRExpandPseudoInsts.cpp | 147 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/ |
D | DeadMachineInstructionElim.cpp | 50 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()
|
D | MachineInstrBundle.cpp | 187 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()
|
D | LiveRangeShrink.cpp | 146 else if (MO.isDead() && UseMap.count(MO.getReg())) in runOnMachineFunction() 174 if (!MO.isReg() || MO.isDead() || MO.isDebug()) in runOnMachineFunction()
|
D | PHIElimination.cpp | 252 bool isDead = MPhi->getOperand(0).isDead(); in LowerPHINode() local 320 if (isDead) { in LowerPHINode() 347 if (DestLI.endIndex().isDead()) { in LowerPHINode()
|
D | MachineCSE.cpp | 316 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()
|
D | TailDuplicator.cpp | 180 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()
|
D | DetectDeadLanes.cpp | 367 if (Def.isDead()) in determineInitialDefinedLanes() 409 if (DefMI.isImplicitDef() || Def.isDead()) in determineInitialDefinedLanes() 544 if (MO.isDef() && !MO.isDead() && RegInfo.UsedLanes.none()) { in runOnce()
|
D | RegAllocFast.cpp | 831 } 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()
|
D | MachineInstr.cpp | 637 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()
|
D | MachineOperand.cpp | 235 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/ |
D | MachineOperand.h | 383 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;
|
D | MachineInstr.h | 1270 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);
|
D | TailDuplicator.h | 109 void updateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
D | AArch64ExpandPseudoInsts.cpp | 146 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()
|
D | AArch64DeadRegisterDefinitionsPass.cpp | 150 (!MO.isDead() && !MRI->use_nodbg_empty(Reg))) in processMachineBasicBlock()
|
/third_party/skia/src/sksl/transform/ |
D | SkSLEliminateDeadGlobalVariables.cpp | 28 if (!usage->isDead(varDecl.var())) { in EliminateDeadGlobalVariables()
|
/third_party/node/lib/internal/cluster/ |
D | worker.js | 51 Worker.prototype.isDead = function() { method in Worker
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
D | Optimizer.cpp | 46 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/ |
D | WebAssemblyOptimizeLiveIntervals.cpp | 98 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/ |
D | BPFMIChecking.cpp | 119 if (!MO.isDead()) { in hasLiveDefs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
D | ARMExpandPseudoInsts.cpp | 483 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 …]
|
D | Thumb2SizeReduction.cpp | 809 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/ |
D | SkSLProgramUsage.cpp | 114 bool ProgramUsage::isDead(const Variable& v) const { in isDead() function in SkSL::ProgramUsage
|