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

  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 67 /// being captured by the Kills set. In these blocks, the value is live into
70 /// value whose Kills set contains two instructions from the same basic block.
73 /// value in one of its predecessor blocks, it is not listed in the kills set,
78 /// not live across any blocks) and Kills is empty (phi nodes are not
88 /// Kills - List of MachineInstruction's which are the last use of this
91 std::vector<MachineInstr*> Kills;
98 I = std::find(Kills.begin(), Kills.end(), MI);
99 if (I == Kills.end())
101 Kills.erase(I)
    [all...]
MachineInstrBundle.h 187 bool Kills;
  /external/llvm/lib/CodeGen/
LiveVariables.cpp 61 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
62 if (Kills[i]->getParent() == MBB)
63 return Kills[i];
74 if (Kills.empty())
77 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
78 dbgs() << "\n #" << i << ": " << *Kills[i];
100 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i)
101 if (VRInfo.Kills[i]->getParent() == MBB) {
102 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entr
    [all...]
LiveDebugVariables.cpp 217 /// End points where VNI is no longer live are added to Kills.
222 /// @param Kills Append end points of VNI's live range to Kills.
227 SmallVectorImpl<SlotIndex> *Kills,
236 /// @param Kills Points where the range of LocNo could be extended.
239 const SmallVectorImpl<SlotIndex> &Kills,
491 SmallVectorImpl<SlotIndex> *Kills,
507 if (Kills)
508 Kills->push_back(Start);
529 else if (!ToEnd && Kills)
    [all...]
MachineTraceMetrics.cpp 610 SmallVector<unsigned, 8> Kills;
619 // Track live defs and kills for updating RegUnits.
622 Kills.push_back(Reg);
626 Kills.push_back(Reg);
640 // First kills.
641 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
642 for (MCRegUnitIterator Units(Kills[i], TRI); Units.isValid(); ++Units)
    [all...]
TwoAddressInstructionPass.cpp 206 // Find the instruction that kills SavedReg.
233 // If we find the instruction that kills SavedReg, and it is in an
271 // Save the operand that kills the register. We want to unset the kill
393 /// If allowFalsePositives is true then likely kills are treated as kills even
394 /// if it can't be proven that they are kills.
402 // All uses of physical registers are likely to be kills.
739 /// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
746 // kills efficiently.
794 SmallSet<unsigned, 2> Kills;
    [all...]
MachineInstrBundle.cpp 307 PRI.Kills = MO.isKill();
MachineBasicBlock.cpp 780 // Restore kills of virtual registers that were killed by the terminators.
787 LV->getVarInfo(Reg).Kills.push_back(I);
    [all...]
MachineVerifier.cpp     [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 257 VI.Kills.push_back(NewMI);
744 // Add implicit super-register defs and kills to the last instruction.
    [all...]

Completed in 228 milliseconds