/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AVR/ |
H A D | AVRExpandPseudoInsts.cpp | 147 bool DstIsDead = MI.getOperand(0).isDead(); 150 bool ImpIsDead = MI.getOperand(3).isDead(); 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/ |
H A 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()
|
H A 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()
|
H A 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()
|
H A D | LiveRangeShrink.cpp | 146 else if (MO.isDead() && UseMap.count(MO.getReg())) in runOnMachineFunction() 174 if (!MO.isReg() || MO.isDead() || MO.isDebug()) in runOnMachineFunction()
|
H A 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()
|
H A 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() 488 if (isDead) { in updateSuccessorsPHIs() 467 updateSuccessorsPHIs( MachineBasicBlock *FromBB, bool isDead, SmallVectorImpl<MachineBasicBlock *> &TDBBs, SmallSetVector<MachineBasicBlock *, 8> &Succs) updateSuccessorsPHIs() argument
|
H A 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()
|
H A 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()
|
H A D | MachineInstr.cpp | 637 if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) in isIdenticalTo() 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, in findRegisterDefOperandIdx() argument 1011 if (Found && (!isDead || MO.isDead())) in findRegisterDefOperandIdx() 1390 if (!MO.isDead()) 1883 } else if (hasAliases && MO.isDead() &&
|
H A D | VirtRegMap.cpp | 536 if (MO.isDead()) in rewrite() 548 } else if (!MO.isDead()) { in rewrite()
|
H A D | LiveInterval.cpp | 89 assert(!Def.isDead() && "Cannot define a value at the dead slot"); in createDeadDef() 597 bool isDead = true; 600 isDead = false; 603 if (isDead) {
|
H A D | MachineOperand.cpp | 235 bool isKill, bool isDead, bool isUndef, in ChangeToRegister() 247 assert(!(isDead && !isDef) && "Dead flag on non-def"); in ChangeToRegister() 254 IsDeadOrKill = isKill | isDead; in ChangeToRegister() 739 if (isDead()) in print() 234 ChangeToRegister(Register Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) ChangeToRegister() argument
|
H A D | ScheduleDAGInstrs.cpp | 312 (Kind != SDep::Output || !MO.isDead() || in addPhysRegDeps() 341 if (!MO.isDead()) in addPhysRegDeps() 344 if (MO.isDead() && SU->isCall) { in addPhysRegDeps() 427 if (MO.isDead()) { in addVRegDefDeps()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/ |
H A D | MachineOperand.h | 383 bool isDead() const { in isDead() function 711 /// for liveness related flags (isKill, isUndef and isDead). Note that this 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;
|
H A D | MachineInstr.h | 1264 /// -1 if it is not found. If isDead is true, defs that are not dead are 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);
|
H A D | TailDuplicator.h | 109 void updateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
|
/third_party/node/lib/internal/cluster/ |
H A D | worker.js | 51 Worker.prototype.isDead = function() {
|
/third_party/skia/src/sksl/transform/ |
H A D | SkSLEliminateDeadGlobalVariables.cpp | 28 if (!usage->isDead(varDecl.var())) { in EliminateDeadGlobalVariables()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/ |
H A 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()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/BPF/ |
H A D | BPFMIChecking.cpp | 119 if (!MO.isDead()) { in hasLiveDefs()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/WebAssembly/ |
H A D | WebAssemblyOptimizeLiveIntervals.cpp | 98 if (MI->isImplicitDef() && MI->getOperand(0).isDead()) { in runOnMachineFunction()
|
/third_party/skia/third_party/externals/swiftshader/src/Reactor/ |
H A 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 __anon22923::Optimizer
|
/third_party/skia/src/sksl/analysis/ |
H A D | SkSLProgramUsage.cpp | 114 bool ProgramUsage::isDead(const Variable& v) const { in isDead() function in SkSL::ProgramUsage
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/ARM/ |
H A 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...] |