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

  /external/llvm/include/llvm/CodeGen/
LiveVariables.h 65 /// being captured by the Kills set. In these blocks, the value is live into
68 /// value whose Kills set contains two instructions from the same basic block.
71 /// value in one of its predecessor blocks, it is not listed in the kills set,
76 /// not live across any blocks) and Kills is empty (phi nodes are not
86 /// Kills - List of MachineInstruction's which are the last use of this
89 std::vector<MachineInstr*> Kills;
96 I = std::find(Kills.begin(), Kills.end(), MI);
97 if (I == Kills.end())
99 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 223 /// End points where VNI is no longer live are added to Kills.
228 /// @param Kills Append end points of VNI's live range to Kills.
233 SmallVectorImpl<SlotIndex> *Kills,
242 /// @param Kills Points where the range of LocNo could be extended.
245 const SmallVectorImpl<SlotIndex> &Kills,
503 SmallVectorImpl<SlotIndex> *Kills,
519 if (Kills)
520 Kills->push_back(Start);
541 else if (!ToEnd && Kills)
    [all...]
MachineTraceMetrics.cpp 702 SmallVector<unsigned, 8> Kills;
711 // Track live defs and kills for updating RegUnits.
714 Kills.push_back(Reg);
718 Kills.push_back(Reg);
732 // First kills.
733 for (unsigned i = 0, e = Kills.size(); i != e; ++i)
734 for (MCRegUnitIterator Units(Kills[i], TRI); Units.isValid(); ++Units)
    [all...]
TwoAddressInstructionPass.cpp 214 // Find the instruction that kills SavedReg.
241 // If we find the instruction that kills SavedReg, and it is in an
279 // Save the operand that kills the register. We want to unset the kill
399 /// If allowFalsePositives is true then likely kills are treated as kills even
400 /// if it can't be proven that they are kills.
408 // All uses of physical registers are likely to be kills.
742 /// 'Reg' and it kills 'Reg, consider moving the instruction below the kill
749 // kills efficiently.
797 SmallSet<unsigned, 2> Kills;
    [all...]
MachineInstrBundle.cpp 307 PRI.Kills = MO.isKill();
MachineVerifier.cpp     [all...]
MachineBasicBlock.cpp 828 // Restore kills of virtual registers that were killed by the terminators.
835 LV->getVarInfo(Reg).Kills.push_back(I);
    [all...]
  /external/llvm/lib/Target/X86/
X86FloatingPoint.cpp     [all...]
X86InstrInfo.cpp     [all...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/host/interface/
abstract_host.js 119 * Kills ChromeVox on this host.
  /external/chromium_org/tools/stats_viewer/
stats_viewer.Designer.cs 137 this.labelKills.Text = "During the World Wide Wait, God Kills Kittens.";
  /external/llvm/lib/Target/ARM/
ARMBaseInstrInfo.cpp 261 VI.Kills.push_back(NewMI);
777 // Add implicit super-register defs and kills to the last instruction.
    [all...]

Completed in 1683 milliseconds