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

  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.cpp 37 KillIndices(TRI->getNumRegs(), 0),
50 KillIndices[i] = ~0u;
66 KillIndices[Reg] = BB->size();
73 KillIndices[AliasReg] = BB->size();
88 KillIndices[Reg] = BB->size();
95 KillIndices[AliasReg] = BB->size();
109 KillIndices[Reg] = BB->size();
116 KillIndices[AliasReg] = BB->size();
134 if (KillIndices[Reg] != ~0u) {
139 KillIndices[Reg] = Count
    [all...]
AggressiveAntiDepBreaker.h 69 /// KillIndices - The index of the most recent kill (proceding bottom-up),
71 std::vector<unsigned> KillIndices;
81 std::vector<unsigned> &GetKillIndices() { return KillIndices; }
PostRASchedulerList.cpp 133 /// KillIndices - The index of the most recent kill (proceding bottom-up),
135 std::vector<unsigned> KillIndices;
189 KillIndices(TRI->getNumRegs())
364 KillIndices[i] = ~0u;
372 KillIndices[Reg] = BB->size();
376 KillIndices[*Subreg] = BB->size();
387 KillIndices[Reg] = BB->size();
391 KillIndices[*Subreg] = BB->size();
407 if (KillIndices[MO.getReg()] != ~0u) {
419 if (KillIndices[*Subreg] != ~0u)
    [all...]
AggressiveAntiDepBreaker.cpp 47 KillIndices(TargetRegs, 0),
56 KillIndices[i] = ~0u;
111 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
152 std::vector<unsigned> &KillIndices = State->GetKillIndices();
163 KillIndices[Reg] = BB->size();
179 KillIndices[Reg] = BB->size();
195 KillIndices[AliasReg] = BB->size();
321 std::vector<unsigned> &KillIndices = State->GetKillIndices();
327 KillIndices[Reg] = KillIdx;
340 KillIndices[SubregReg] = KillIdx
    [all...]
CriticalAntiDepBreaker.h 59 /// KillIndices - The index of the most recent kill (proceding bottom-up),
61 std::vector<unsigned> KillIndices;

Completed in 46 milliseconds