Searched defs:kill (Results 1 - 2 of 2) sorted by relevance

/art/compiler/optimizing/
H A Dliveness_test.cc65 BitVector* kill = liveness.GetKillSet(*block); local
66 DumpBitVector(kill, buffer, ssa_values, " kill: ");
76 " kill: (1)\n"
80 " kill: (0)\n"
84 " kill: (0)\n";
99 " kill: (1)\n"
103 " kill: (0)\n"
107 " kill: (0)\n";
121 " kill
[all...]
H A Dssa_liveness_analysis.cc153 // Compute the live ranges, as well as the initial live_in, live_out, and kill sets.
170 BitVector* kill = GetKillSet(*block); local
199 kill->SetBit(current->GetSsaIndex());
233 kill->SetBit(current->GetSsaIndex());
263 // The live_in set depends on the kill set (which does not
289 BitVector* kill = GetKillSet(block); local
294 return live_in->UnionIfNotIn(live_out, kill);

Completed in 54 milliseconds