/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AVR/ |
D | AVRExpandPseudoInsts.cpp | 146 bool DstIsDead = MI.getOperand(0).isDead(); in expandArith() 149 bool ImpIsDead = MI.getOperand(3).isDead(); in expandArith() 179 bool DstIsDead = MI.getOperand(0).isDead(); in expandLogic() 182 bool ImpIsDead = MI.getOperand(3).isDead(); in expandLogic() 225 bool DstIsDead = MI.getOperand(0).isDead(); in expandLogicImm() 227 bool ImpIsDead = MI.getOperand(3).isDead(); in expandLogicImm() 277 bool DstIsDead = MI.getOperand(0).isDead(); in expand() 279 bool ImpIsDead = MI.getOperand(3).isDead(); in expand() 329 bool DstIsDead = MI.getOperand(0).isDead(); in expand() 331 bool ImpIsDead = MI.getOperand(3).isDead(); in expand() [all …]
|
/external/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 175 if (MO.isDead()) { in finalizeBundle() 181 if (!MO.isDead()) in finalizeBundle() 186 if (!MO.isDead()) { in finalizeBundle() 203 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg); in finalizeBundle() local 204 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) | in finalizeBundle() 331 if (!MO.isDead()) in analyzePhysReg()
|
D | DeadMachineInstructionElim.cpp | 51 bool isDead(const MachineInstr *MI) const; 60 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { in isDead() function in DeadMachineInstructionElim 128 if (isDead(MI)) { in runOnMachineFunction()
|
D | PHIElimination.cpp | 235 bool isDead = MPhi->getOperand(0).isDead(); in LowerPHINode() local 303 if (isDead) { in LowerPHINode() 331 if (DestLI.endIndex().isDead()) { in LowerPHINode()
|
D | MachineCSE.cpp | 253 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end())) in hasLivePhysRegDefUses() 544 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead()) in ProcessBlock() 549 if (MO.isImplicit() && !MO.isDead() && OldReg == NewReg) in ProcessBlock()
|
D | MachineInstr.cpp | 178 bool isKill, bool isDead, bool isUndef, in ChangeToRegister() argument 198 IsDead = isDead; in ChangeToRegister() 319 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() || in print() 345 if (isDead()) { in print() 1015 if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) in isIdenticalTo() 1340 MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, in findRegisterDefOperandIdx() argument 1360 if (Found && (!isDead || MO.isDead())) in findRegisterDefOperandIdx() 1645 if (!MO.isDead()) in allDefsAreDead() 2038 } else if (hasAliases && MO.isDead() && in addRegisterDead()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/ |
D | MachineInstrBundle.cpp | 177 if (MO.isDead()) { in finalizeBundle() 183 if (!MO.isDead()) in finalizeBundle() 188 if (!MO.isDead()) { in finalizeBundle() 205 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg); in finalizeBundle() local 206 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) | in finalizeBundle() 333 if (!MO.isDead()) in analyzePhysReg()
|
D | DeadMachineInstructionElim.cpp | 50 bool isDead(const MachineInstr *MI) const; 59 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { in isDead() function in DeadMachineInstructionElim 127 if (isDead(MI)) { in runOnMachineFunction()
|
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 | 248 bool isDead = MPhi->getOperand(0).isDead(); in LowerPHINode() local 317 if (isDead) { in LowerPHINode() 345 if (DestLI.endIndex().isDead()) { in LowerPHINode()
|
D | MachineCSE.cpp | 276 if (!MO.isDead() && !isPhysDefTriviallyDead(Reg, I, MBB->end())) in hasLivePhysRegDefUses() 564 if (MO.isImplicit() && !MO.isDead() && CSMI->getOperand(i).isDead()) in ProcessBlock() 569 if (MO.isImplicit() && !MO.isDead() && OldReg == NewReg) in ProcessBlock()
|
/external/swiftshader/third_party/LLVM/lib/CodeGen/ |
D | DeadMachineInstructionElim.cpp | 44 bool isDead(const MachineInstr *MI) const; 56 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { in isDead() function in DeadMachineInstructionElim 129 if (isDead(MI)) { in runOnMachineFunction()
|
D | MachineInstr.cpp | 156 bool isKill, bool isDead, bool isUndef, in ChangeToRegister() argument 179 IsDead = isDead; in ChangeToRegister() 242 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() || in print() 259 if (isKill() || isDead() || isUndef()) { in print() 262 if (isDead()) OS << "dead"; in print() 264 if (isKill() || isDead()) in print() 770 if (Check == CheckKillDead && MO.isDead() != OMO.isDead()) in isIdenticalTo() 946 MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, in findRegisterDefOperandIdx() argument 962 if (Found && (!isDead || MO.isDead())) in findRegisterDefOperandIdx() 1104 if (!MO.isReg() || (!MO.isKill() && !MO.isDead())) in copyKillDeadInfo() [all …]
|
D | ExpandPostRAPseudos.cpp | 139 if (MI->getOperand(0).isDead()) in LowerSubregToReg() 160 if (DstMO.isDead() || SrcMO.isUndef() || MI->getNumOperands() > 2) { in LowerCopy() 176 if (DstMO.isDead()) in LowerCopy()
|
D | PHIElimination.cpp | 200 bool isDead = MPhi->getOperand(0).isDead(); in LowerAtomicPHINode() local 270 if (isDead) { in LowerAtomicPHINode()
|
D | TailDuplication.cpp | 94 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead, 207 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken(); in TailDuplicateAndUpdate() local 209 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs); in TailDuplicateAndUpdate() 212 if (isDead) { in TailDuplicateAndUpdate() 442 TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead, in UpdateSuccessorsPHIs() argument 464 if (isDead) { in UpdateSuccessorsPHIs()
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 292 bool isDead() const { in isDead() function 581 bool isKill = false, bool isDead = false, 607 bool isKill = false, bool isDead = false, 613 assert(!(isDead && !isDef) && "Dead flag on non-def"); 619 Op.IsDead = isDead;
|
/external/swiftshader/third_party/LLVM/include/llvm/CodeGen/ |
D | MachineOperand.h | 246 bool isDead() const { in isDead() function 464 bool isKill = false, bool isDead = false, 490 bool isKill = false, bool isDead = false, 499 Op.IsDead = isDead;
|
D | MachineInstr.h | 376 bool isDead = false, bool Overlap = false, 381 MachineOperand *findRegisterDefOperand(unsigned Reg, bool isDead = false, 383 int Idx = findRegisterDefOperandIdx(Reg, isDead, false, TRI);
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/AArch64/ |
D | AArch64ExpandPseudoInsts.cpp | 164 const bool DstIsDead = MI.getOperand(0).isDead(); in tryToreplicateChunks() 346 const bool DstIsDead = MI.getOperand(0).isDead(); in trySequenceOfOnes() 465 const bool DstIsDead = MI.getOperand(0).isDead(); in expandMOVImm() 549 bool DstIsDead = MI.getOperand(0).isDead(); in expandMOVImmSimple() 597 bool StatusDead = MI.getOperand(1).isDead(); in expandCMP_SWAP() 625 .addReg(Dest.getReg(), getKillRegState(Dest.isDead())) in expandCMP_SWAP() 677 bool StatusDead = MI.getOperand(2).isDead(); in expandCMP_SWAP_128() 706 .addReg(DestLo.getReg(), getKillRegState(DestLo.isDead())) in expandCMP_SWAP_128() 714 .addReg(DestHi.getReg(), getKillRegState(DestHi.isDead())) in expandCMP_SWAP_128()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/ |
D | MachineOperand.h | 374 bool isDead() const { in isDead() function 731 bool isKill = false, bool isDead = false, 757 bool isKill = false, bool isDead = false, 763 assert(!(isDead && !isDef) && "Dead flag on non-def"); 768 Op.IsDeadOrKill = isKill | isDead;
|
/external/llvm/lib/Target/ARM/ |
D | ARMExpandPseudoInsts.cpp | 405 bool DstIsDead = MI.getOperand(OpIdx).isDead(); in ExpandVLD() 539 DstIsDead = MI.getOperand(OpIdx).isDead(); in ExpandLaneOp() 671 bool DstIsDead = MI.getOperand(0).isDead(); in ExpandMOV32BitImm() 818 .addReg(Dest.getReg(), getKillRegState(Dest.isDead())) in ExpandCMP_SWAP() 875 MIB.addReg(RegLo, Flags | getKillRegState(Reg.isDead())); in addExclusiveRegPair() 876 MIB.addReg(RegHi, Flags | getKillRegState(Reg.isDead())); in addExclusiveRegPair() 878 MIB.addReg(Reg.getReg(), Flags | getKillRegState(Reg.isDead())); in addExclusiveRegPair() 932 .addReg(DestLo, getKillRegState(Dest.isDead())) in ExpandCMP_SWAP_64() 933 .addReg(DesiredLo, getKillRegState(Desired.isDead()))); in ExpandCMP_SWAP_64() 938 .addReg(DestHi, getKillRegState(Dest.isDead())) in ExpandCMP_SWAP_64() [all …]
|
/external/tensorflow/tensorflow/examples/android/src/org/tensorflow/demo/tracking/ |
D | ObjectTracker.java | 497 private boolean isDead; field in ObjectTracker.TrackedObject 500 isDead = false; in TrackedObject() 517 isDead = true; in stopTracking() 593 if (isDead) { in checkValidObject()
|
/external/tensorflow/tensorflow/lite/examples/android/app/src/main/java/org/tensorflow/demo/tracking/ |
D | ObjectTracker.java | 497 private boolean isDead; field in ObjectTracker.TrackedObject 500 isDead = false; in TrackedObject() 517 isDead = true; in stopTracking() 593 if (isDead) { in checkValidObject()
|
/external/llvm/lib/Target/AArch64/ |
D | AArch64ExpandPseudoInsts.cpp | 128 const bool DstIsDead = MI.getOperand(0).isDead(); in tryOrrMovk() 193 const bool DstIsDead = MI.getOperand(0).isDead(); in tryToreplicateChunks() 376 const bool DstIsDead = MI.getOperand(0).isDead(); in trySequenceOfOnes() 552 bool DstIsDead = MI.getOperand(0).isDead(); in expandMOVImm() 635 .addReg(Dest.getReg(), getKillRegState(Dest.isDead())) in expandCMP_SWAP() 718 .addReg(DestLo.getReg(), getKillRegState(DestLo.isDead())) in expandCMP_SWAP_128() 722 .addReg(DestHi.getReg(), getKillRegState(DestHi.isDead())) in expandCMP_SWAP_128()
|