Searched refs:KillIndices (Results 1 - 4 of 4) sorted by relevance

/freebsd-10.1-release/contrib/llvm/lib/CodeGen/
H A DCriticalAntiDepBreaker.cpp37 KillIndices(TRI->getNumRegs(), 0),
51 KillIndices[i] = ~0u;
68 KillIndices[Reg] = BBSize;
83 KillIndices[Reg] = BBSize;
101 if (KillIndices[Reg] != ~0u) {
106 KillIndices[Reg] = Count;
228 KillIndices[i] = ~0u;
242 KillIndices[Reg] = ~0u;
243 assert(((KillIndices[Reg] == ~0u) !=
253 KillIndices[SubregRe
[all...]
H A DAggressiveAntiDepBreaker.h69 /// KillIndices - The index of the most recent kill (proceding bottom-up),
71 std::vector<unsigned> KillIndices; member in class:llvm::AggressiveAntiDepState
81 std::vector<unsigned> &GetKillIndices() { return KillIndices; }
H A DAggressiveAntiDepBreaker.cpp46 KillIndices(TargetRegs, 0),
55 KillIndices[i] = ~0u;
110 return((KillIndices[Reg] != ~0u) && (DefIndices[Reg] == ~0u));
151 std::vector<unsigned> &KillIndices = State->GetKillIndices(); local
162 KillIndices[Reg] = BB->size();
178 KillIndices[AliasReg] = BB->size();
302 std::vector<unsigned> &KillIndices = State->GetKillIndices();
308 KillIndices[Reg] = KillIdx;
320 KillIndices[SubregReg] = KillIdx;
529 std::vector<unsigned> &KillIndices
[all...]
H A DCriticalAntiDepBreaker.h58 /// KillIndices - The index of the most recent kill (proceding bottom-up),
60 std::vector<unsigned> KillIndices; member in class:llvm::CriticalAntiDepBreaker

Completed in 51 milliseconds