Home
last modified time | relevance | path

Searched refs:Kills (Results 1 – 25 of 31) sorted by relevance

12

/external/llvm/lib/CodeGen/
DLiveVariables.cpp61 for (unsigned i = 0, e = Kills.size(); i != e; ++i) in findKill()
62 if (Kills[i]->getParent() == MBB) in findKill()
63 return Kills[i]; in findKill()
74 if (Kills.empty()) in dump()
77 for (unsigned i = 0, e = Kills.size(); i != e; ++i) in dump()
78 dbgs() << "\n #" << i << ": " << *Kills[i]; in dump()
100 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i) in MarkVirtRegAliveInBlock()
101 if (VRInfo.Kills[i]->getParent() == MBB) { in MarkVirtRegAliveInBlock()
102 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry in MarkVirtRegAliveInBlock()
140 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) { in HandleVirtRegUse()
[all …]
DLiveDebugVariables.cpp237 SmallVectorImpl<SlotIndex> *Kills,
249 const SmallVectorImpl<SlotIndex> &Kills,
543 const VNInfo *VNI, SmallVectorImpl<SlotIndex> *Kills, in extendDef() argument
556 if (Kills) in extendDef()
557 Kills->push_back(Start); in extendDef()
582 else if (!ToEnd && Kills) in extendDef()
583 Kills->push_back(Stop); in extendDef()
591 const SmallVectorImpl<SlotIndex> &Kills, in addDefsFromCopies() argument
594 if (Kills.empty()) in addDefsFromCopies()
637 for (unsigned i = 0, e = Kills.size(); i != e; ++i) { in addDefsFromCopies()
[all …]
DTwoAddressInstructionPass.cpp868 SmallSet<unsigned, 2> Kills; in rescheduleMIBelowKill() local
882 Kills.insert(MOReg); in rescheduleMIBelowKill()
932 ((isKill && Uses.count(MOReg)) || Kills.count(MOReg))) in rescheduleMIBelowKill()
1046 SmallSet<unsigned, 2> Kills; in rescheduleKillAboveMI() local
1063 Kills.insert(MOReg); in rescheduleKillAboveMI()
1097 if (Kills.count(MOReg)) in rescheduleKillAboveMI()
DMachineTraceMetrics.cpp698 SmallVector<unsigned, 8> Kills; in updatePhysDepsDownwards() local
712 Kills.push_back(Reg); in updatePhysDepsDownwards()
716 Kills.push_back(Reg); in updatePhysDepsDownwards()
731 for (unsigned Kill : Kills) in updatePhysDepsDownwards()
DMachineVerifier.cpp1202 if (std::find(VI.Kills.begin(), VI.Kills.end(), MI) == VI.Kills.end()) in checkLiveness()
DMachineBasicBlock.cpp851 LV->getVarInfo(Reg).Kills.push_back(&*I); in SplitCriticalEdge()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/CodeGen/
DLiveVariables.cpp61 for (unsigned i = 0, e = Kills.size(); i != e; ++i) in findKill()
62 if (Kills[i]->getParent() == MBB) in findKill()
63 return Kills[i]; in findKill()
74 if (Kills.empty()) in dump()
77 for (unsigned i = 0, e = Kills.size(); i != e; ++i) in dump()
78 dbgs() << "\n #" << i << ": " << *Kills[i]; in dump()
100 for (unsigned i = 0, e = VRInfo.Kills.size(); i != e; ++i) in MarkVirtRegAliveInBlock()
101 if (VRInfo.Kills[i]->getParent() == MBB) { in MarkVirtRegAliveInBlock()
102 VRInfo.Kills.erase(VRInfo.Kills.begin()+i); // Erase entry in MarkVirtRegAliveInBlock()
140 if (!VRInfo.Kills.empty() && VRInfo.Kills.back()->getParent() == MBB) { in HandleVirtRegUse()
[all …]
DLiveDebugVariables.cpp286 SmallVectorImpl<SlotIndex> *Kills,
299 const SmallVectorImpl<SlotIndex> &Kills,
606 const VNInfo *VNI, SmallVectorImpl<SlotIndex> *Kills, in extendDef() argument
618 if (Kills) in extendDef()
619 Kills->push_back(Start); in extendDef()
644 else if (!ToEnd && Kills) in extendDef()
645 Kills->push_back(Stop); in extendDef()
653 const SmallVectorImpl<SlotIndex> &Kills, in addDefsFromCopies() argument
656 if (Kills.empty()) in addDefsFromCopies()
700 for (unsigned i = 0, e = Kills.size(); i != e; ++i) { in addDefsFromCopies()
[all …]
DTwoAddressInstructionPass.cpp910 SmallVector<unsigned, 2> Kills; in rescheduleMIBelowKill() local
924 Kills.push_back(MOReg); in rescheduleMIBelowKill()
974 regOverlapsSet(Kills, MOReg, TRI))) in rescheduleMIBelowKill()
1088 SmallSet<unsigned, 2> Kills; in rescheduleKillAboveMI() local
1105 Kills.insert(MOReg); in rescheduleKillAboveMI()
1139 if (Kills.count(MOReg)) in rescheduleKillAboveMI()
DMachineTraceMetrics.cpp705 SmallVector<unsigned, 8> Kills; in updatePhysDepsDownwards() local
719 Kills.push_back(Reg); in updatePhysDepsDownwards()
723 Kills.push_back(Reg); in updatePhysDepsDownwards()
738 for (unsigned Kill : Kills) in updatePhysDepsDownwards()
DMachineBasicBlock.cpp998 LV->getVarInfo(Reg).Kills.push_back(&*I); in SplitCriticalEdge()
DMachineVerifier.cpp1464 if (!is_contained(VI.Kills, MI)) in checkLiveness()
/external/llvm/include/llvm/CodeGen/
DLiveVariables.h89 std::vector<MachineInstr*> Kills; member
96 std::find(Kills.begin(), Kills.end(), &MI); in removeKill()
97 if (I == Kills.end()) in removeKill()
99 Kills.erase(I); in removeKill()
205 getVarInfo(IncomingReg).Kills.push_back(&MI);
241 getVarInfo(IncomingReg).Kills.push_back(&MI);
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/CodeGen/
DLiveVariables.h89 std::vector<MachineInstr*> Kills; member
95 std::vector<MachineInstr *>::iterator I = find(Kills, &MI); in removeKill()
96 if (I == Kills.end()) in removeKill()
98 Kills.erase(I); in removeKill()
204 getVarInfo(IncomingReg).Kills.push_back(&MI);
240 getVarInfo(IncomingReg).Kills.push_back(&MI);
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Transforms/Coroutines/
DCoroFrame.cpp83 BitVector Kills; member
108 bool const Result = Block[UseIndex].Kills[DefIndex]; in hasPathCrossingSuspendPoint()
152 dump(" Kills", Block[I].Kills); in dump()
167 B.Kills.resize(N); in SuspendCrossingInfo()
185 B.Kills |= B.Consumes; in SuspendCrossingInfo()
212 auto SavedKills = S.Kills; in SuspendCrossingInfo()
216 S.Kills |= B.Kills; in SuspendCrossingInfo()
221 S.Kills |= B.Consumes; in SuspendCrossingInfo()
226 S.Kills |= S.Consumes; in SuspendCrossingInfo()
232 S.Kills.reset(); in SuspendCrossingInfo()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/
DX86FloatingPoint.cpp882 unsigned Kills = 0; in adjustLiveRegs() local
887 Kills |= (1 << RegNo); in adjustLiveRegs()
892 assert((Kills & Defs) == 0 && "Register needs killing and def'ing?"); in adjustLiveRegs()
895 while (Kills && Defs) { in adjustLiveRegs()
896 unsigned KReg = countTrailingZeros(Kills); in adjustLiveRegs()
902 Kills &= ~(1 << KReg); in adjustLiveRegs()
907 if (Kills && I != MBB->begin()) { in adjustLiveRegs()
911 if (!(Kills & (1 << KReg))) in adjustLiveRegs()
915 Kills &= ~(1 << KReg); in adjustLiveRegs()
920 while (Kills) { in adjustLiveRegs()
[all …]
/external/llvm/lib/Target/X86/
DX86FloatingPoint.cpp845 unsigned Kills = 0; in adjustLiveRegs() local
850 Kills |= (1 << RegNo); in adjustLiveRegs()
855 assert((Kills & Defs) == 0 && "Register needs killing and def'ing?"); in adjustLiveRegs()
858 while (Kills && Defs) { in adjustLiveRegs()
859 unsigned KReg = countTrailingZeros(Kills); in adjustLiveRegs()
864 Kills &= ~(1 << KReg); in adjustLiveRegs()
869 if (Kills && I != MBB->begin()) { in adjustLiveRegs()
873 if (!(Kills & (1 << KReg))) in adjustLiveRegs()
877 Kills &= ~(1 << KReg); in adjustLiveRegs()
882 while (Kills) { in adjustLiveRegs()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/test/tools/llvm-mca/X86/BtVer2/
Dclear-super-register-1.s7 ## Kills the previous definition of RAX.
/external/swiftshader/third_party/subzero/src/
DIceRegAlloc.h125 CfgVector<InstNumberT> Kills; variable
DIceRegAlloc.cpp141 Kills.clear(); in initForGlobal()
151 Kills.push_back(I.getNumber()); in initForGlobal()
298 Kills.clear(); in initForInfOnly()
851 LiveRange KillsRange(Kills); in scan()
DIceOperand.h635 explicit LiveRange(const CfgVector<InstNumberT> &Kills) { in LiveRange() argument
636 Range.reserve(Kills.size()); in LiveRange()
637 for (InstNumberT I : Kills) in LiveRange()
/external/libgav1/libgav1/cmake/
Dlibgav1_helpers.cmake20 # Kills build generation using message(FATAL_ERROR) and outputs all data passed
/external/swiftshader/third_party/subzero/tests_lit/llvm2ice_tests/
Dvector-arg.ll301 ; Kills XMM registers so that no in-arg lowering code interferes
410 ; Kills XMM registers so that no in-arg lowering code interferes
/external/perfetto/docs/data-sources/
Dmemory-counters.md214 ## Low-memory Kills (LMK)
/external/python/cpython2/Doc/library/
Dsubprocess.rst527 Kills the child. On Posix OSs the function sends SIGKILL to the child.

12