Searched defs:isDead (Results 1 - 13 of 13) sorted by relevance

/external/llvm/lib/CodeGen/
H A DDeadMachineInstructionElim.cpp45 bool isDead(const MachineInstr *MI) const;
54 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const { function in class:DeadMachineInstructionElim
131 if (isDead(MI)) {
H A DMachineInstrBundle.cpp160 if (MO.isDead()) {
166 if (!MO.isDead())
171 if (!MO.isDead()) {
189 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg); local
190 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) |
H A DPHIElimination.cpp204 bool isDead = MPhi->getOperand(0).isDead(); local
273 if (isDead) {
H A DTailDuplication.cpp93 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
208 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken(); local
210 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs);
213 if (isDead) {
443 TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead, argument
465 if (isDead) {
H A DMachineInstr.cpp157 bool isKill, bool isDead, bool isUndef,
180 IsDead = isDead;
246 if (isDef() || isKill() || isDead() || isImplicit() || isUndef() ||
263 if (isKill() || isDead() || isUndef() || isInternalRead()) {
270 if (isDead()) {
817 if (Check == CheckKillDead && MO.isDead() != OMO.isDead())
1036 /// the specified register or -1 if it is not found. If isDead is true, defs
1040 MachineInstr::findRegisterDefOperandIdx(unsigned Reg, bool isDead, bool Overlap, argument
1060 if (Found && (!isDead || M
156 ChangeToRegister(unsigned Reg, bool isDef, bool isImp, bool isKill, bool isDead, bool isUndef, bool isDebug) argument
[all...]
H A DRegisterCoalescer.cpp817 assert(MO.isDef() && MO.isImplicit() && MO.isDead() &&
1886 bool isDead = true; local
1900 if (MO.isDead())
1904 isDead = false;
1908 if (isDead) {
H A DTwoAddressInstructionPass.cpp827 if (MO.isDef() && !MO.isDead())
883 bool isDead = NewKills.back().first.second; local
886 if (isDead)
989 if (!MO.isDead() && Defs.count(MOReg))
1101 if (!MO.isDead())
1208 if (!regBKilled && MI.getOperand(DstIdx).isDead() &&
/external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
H A DAnalyzedInstruction.java142 public boolean isDead() { method in class:AnalyzedInstruction
/external/llvm/include/llvm/CodeGen/
H A DMachineOperand.h262 bool isDead() const { function in class:llvm::MachineOperand
503 /// operand. Note: This method ignores isKill and isDead properties.
515 bool isKill = false, bool isDead = false,
541 bool isKill = false, bool isDead = false,
550 Op.IsDead = isDead;
H A DSlotIndexes.h239 /// isDead - Returns true if this is a dead def kill slot.
240 bool isDead() const { return getSlot() == Slot_Dead; } function in class:llvm::SlotIndex
/external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
H A DSymbolManager.h631 bool isDead(SymbolRef sym) const { function in class:clang::ento::SymbolReaper
/external/clang/lib/StaticAnalyzer/Core/
H A DBugReporter.cpp762 bool isDead() const { return IsDead; } function in class:__anon3486::ContextLocation
823 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
/external/llvm/lib/Target/X86/
H A DX86InstrInfo.cpp1478 if (MO.isDef()) return MO.isDead();
1541 MO.getReg() == X86::EFLAGS && !MO.isDead()) {
1560 bool isDead = MI->getOperand(0).isDead(); local
1637 .addReg(Dest, RegState::Define | getDeadRegState(isDead))
1646 if (isDead)
1672 bool isDead = MI->getOperand(0).isDead(); local
1694 .addReg(A, RegState::Define | getDeadRegState(isDead))
1712 .addReg(A, RegState::Define | getDeadRegState(isDead))
[all...]

Completed in 123 milliseconds