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

  /external/llvm/lib/CodeGen/
CriticalAntiDepBreaker.h 58 /// KillIndices - The index of the most recent kill (proceding bottom-up),
60 std::vector<unsigned> KillIndices;
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...]
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; }

Completed in 292 milliseconds