HomeSort by relevance Sort by last modified time
    Searched defs:isDead (Results 1 - 12 of 12) sorted by null

  /external/llvm/lib/CodeGen/
DeadMachineInstructionElim.cpp 45 bool isDead(const MachineInstr *MI) const;
54 bool DeadMachineInstructionElim::isDead(const MachineInstr *MI) const {
131 if (isDead(MI)) {
MachineInstrBundle.cpp 160 if (MO.isDead()) {
166 if (!MO.isDead())
171 if (!MO.isDead()) {
189 bool isDead = DeadDefSet.count(Reg) || KilledDefSet.count(Reg);
190 MIB.addReg(Reg, getDefRegState(true) | getDeadRegState(isDead) |
PHIElimination.cpp 204 bool isDead = MPhi->getOperand(0).isDead();
273 if (isDead) {
TailDuplication.cpp 93 void UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
208 bool isDead = MBB->pred_empty() && !MBB->hasAddressTaken();
210 UpdateSuccessorsPHIs(MBB, isDead, TDBBs, Succs);
213 if (isDead) {
443 TailDuplicatePass::UpdateSuccessorsPHIs(MachineBasicBlock *FromBB, bool isDead,
465 if (isDead) {
    [all...]
TwoAddressInstructionPass.cpp 827 if (MO.isDef() && !MO.isDead())
    [all...]
RegisterCoalescer.cpp 817 assert(MO.isDef() && MO.isImplicit() && MO.isDead() &&
    [all...]
  /external/smali/dexlib/src/main/java/org/jf/dexlib/Code/Analysis/
AnalyzedInstruction.java 142 public boolean isDead() {
  /external/llvm/include/llvm/CodeGen/
MachineOperand.h 68 /// IsDef/IsImp/IsKill/IsDead flags - These are only valid for MO_Register
83 /// IsDead - True if this register is never used by a subsequent instruction.
85 bool IsDead : 1;
262 bool isDead() const {
264 return IsDead;
362 IsDead = Val;
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
    [all...]
SlotIndexes.h 239 /// isDead - Returns true if this is a dead def kill slot.
240 bool isDead() const { return getSlot() == Slot_Dead; }
  /external/clang/include/clang/StaticAnalyzer/Core/PathSensitive/
SymbolManager.h 631 bool isDead(SymbolRef sym) const {
  /external/clang/lib/StaticAnalyzer/Core/
BugReporter.cpp 756 bool IsDead;
758 ContextLocation(const PathDiagnosticLocation &L, bool isdead = false)
759 : PathDiagnosticLocation(L), IsDead(isdead) {}
761 void markDead() { IsDead = true; }
762 bool isDead() const { return IsDead; }
823 if (!CLocs.back().isDead() && CLocs.back().asLocation().isFileID()) {
    [all...]
  /external/llvm/lib/Target/X86/
X86InstrInfo.cpp     [all...]

Completed in 343 milliseconds