Searched defs:Kills (Results 1 - 6 of 6) sorted by relevance

/external/llvm/include/llvm/CodeGen/
H A DLiveVariables.h65 /// 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.
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; member in struct:llvm::LiveVariables::VarInfo
96 I = std::find(Kills.begin(), Kills.end(), MI);
97 if (I == Kills.end())
99 Kills.erase(I);
205 getVarInfo(IncomingReg).Kills
[all...]
H A DMachineInstrBundle.h187 bool Kills; member in struct:llvm::MachineOperandIteratorBase::PhysRegInfo
/external/llvm/lib/CodeGen/
H A DLiveVariables.cpp61 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]; local
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
791 SmallSet<unsigned, 16> Defs, Kills; local
[all...]
H A DLiveDebugVariables.cpp226 /// End points where VNI is no longer live are added to Kills.
231 /// @param Kills Append end points of VNI's live range to Kills.
236 SmallVectorImpl<SlotIndex> *Kills,
245 /// @param Kills Points where the range of LocNo could be extended.
248 const SmallVectorImpl<SlotIndex> &Kills,
541 SmallVectorImpl<SlotIndex> *Kills,
557 if (Kills)
558 Kills->push_back(Start);
579 else if (!ToEnd && Kills)
539 extendDef(SlotIndex Idx, unsigned LocNo, LiveRange *LR, const VNInfo *VNI, SmallVectorImpl<SlotIndex> *Kills, LiveIntervals &LIS, MachineDominatorTree &MDT, UserValueScopes &UVS) argument
601 addDefsFromCopies(LiveInterval *LI, unsigned LocNo, const SmallVectorImpl<SlotIndex> &Kills, SmallVectorImpl<std::pair<SlotIndex, unsigned> > &NewDefs, MachineRegisterInfo &MRI, LiveIntervals &LIS) argument
703 SmallVector<SlotIndex, 16> Kills; local
[all...]
H A DTwoAddressInstructionPass.cpp872 SmallSet<unsigned, 2> Kills; local
887 Kills.insert(MOReg);
939 ((isKill && Uses.count(MOReg)) || Kills.count(MOReg)))
1055 SmallSet<unsigned, 2> Kills; local
1073 Kills.insert(MOReg);
1109 if (Kills.count(MOReg))
/external/llvm/lib/Target/X86/
H A DX86FloatingPoint.cpp846 unsigned Kills = 0; local
851 Kills |= (1 << RegNo);
856 assert((Kills & Defs) == 0 && "Register needs killing and def'ing?");
859 while (Kills && Defs) {
860 unsigned KReg = countTrailingZeros(Kills);
865 Kills &= ~(1 << KReg);
870 if (Kills && I != MBB->begin()) {
874 if (!(Kills & (1 << KReg)))
878 Kills &= ~(1 << KReg);
883 while (Kills) {
[all...]

Completed in 1193 milliseconds