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

/art/compiler/optimizing/
H A Dliveness_test.cc61 BitVector* live_in = liveness.GetLiveInSet(*block); local
62 DumpBitVector(live_in, buffer, ssa_values, " live in: ");
H A Dssa_liveness_analysis.cc153 // Compute the live ranges, as well as the initial live_in, live_out, and kill sets.
154 // This method does not handle backward branches for the sets, therefore live_in
159 // that will update live_in of loop headers, and therefore live_out and live_in
171 BitVector* live_in = GetLiveInSet(*block); local
174 // as live_in.
177 live_in->Union(GetLiveInSet(*successor));
185 live_in->SetBit(input->GetSsaIndex());
189 // Add a range that covers this block to all instructions live_in because of successors.
190 for (uint32_t idx : live_in
290 BitVector* live_in = GetLiveInSet(block); local
[all...]

Completed in 163 milliseconds