Searched defs:live_in (Results 1 - 2 of 2) sorted by last modified time

/art/compiler/optimizing/
H A Dliveness_test.cc68 BitVector* live_in = liveness.GetLiveInSet(*block); local
69 DumpBitVector(live_in, buffer, ssa_values, " live in: ");
H A Dssa_liveness_analysis.cc166 // Compute the live ranges, as well as the initial live_in, live_out, and kill sets.
167 // This method does not handle backward branches for the sets, therefore live_in
172 // that will update live_in of loop headers, and therefore live_out and live_in
184 BitVector* live_in = GetLiveInSet(*block); local
187 // as live_in.
190 live_in->Union(GetLiveInSet(*successor));
198 live_in->SetBit(input->GetSsaIndex());
202 // Add a range that covers this block to all instructions live_in because of successors.
204 for (uint32_t idx : live_in
312 BitVector* live_in = GetLiveInSet(block); local
[all...]

Completed in 52 milliseconds