Searched defs:Kills (Results 1 - 5 of 5) 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);
201 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
785 SmallSet<unsigned, 16> Defs, Kills; local
[all...]
H A DLiveDebugVariables.cpp219 /// End points where VNI is no longer live are added to Kills.
224 /// @param Kills Append end points of VNI's live range to Kills.
229 SmallVectorImpl<SlotIndex> *Kills,
238 /// @param Kills Points where the range of LocNo could be extended.
241 const SmallVectorImpl<SlotIndex> &Kills,
496 SmallVectorImpl<SlotIndex> *Kills,
512 if (Kills)
513 Kills->push_back(Start);
534 else if (!ToEnd && Kills)
494 extendDef(SlotIndex Idx, unsigned LocNo, LiveInterval *LI, const VNInfo *VNI, SmallVectorImpl<SlotIndex> *Kills, LiveIntervals &LIS, MachineDominatorTree &MDT, UserValueScopes &UVS) argument
556 addDefsFromCopies(LiveInterval *LI, unsigned LocNo, const SmallVectorImpl<SlotIndex> &Kills, SmallVectorImpl<std::pair<SlotIndex, unsigned> > &NewDefs, MachineRegisterInfo &MRI, LiveIntervals &LIS) argument
660 SmallVector<SlotIndex, 16> Kills; local
[all...]
H A DTwoAddressInstructionPass.cpp798 SmallSet<unsigned, 2> Kills; local
813 Kills.insert(MOReg);
865 ((isKill && Uses.count(MOReg)) || Kills.count(MOReg)))
983 SmallSet<unsigned, 2> Kills; local
1001 Kills.insert(MOReg);
1037 if (Kills.count(MOReg))

Completed in 81 milliseconds