HomeSort by relevance Sort by last modified time
    Searched refs:live_out (Results 1 - 6 of 6) sorted by null

  /art/compiler/optimizing/
ssa_liveness_analysis.cc 153 // Compute the live ranges, as well as the initial live_in, live_out, and kill sets.
155 // and live_out sets are not yet correct.
159 // that will update live_in of loop headers, and therefore live_out and live_in
264 // change in this loop), and the live_out set. If the live_out
274 BitVector* live_out = GetLiveOutSet(block); local
276 // The live_out set of a block is the union of live_in sets of its successors.
279 if (live_out->Union(GetLiveInSet(*successor))) {
288 BitVector* live_out = GetLiveOutSet(block); local
291 // If live_out is updated (because of backward branches), we need to mak
    [all...]
liveness_test.cc 63 BitVector* live_out = liveness.GetLiveOutSet(*block); local
64 DumpBitVector(live_out, buffer, ssa_values, " live out: ");
  /external/chromium_org/v8/src/compiler/
register-allocator.cc 529 BitVector* live_out = local
540 if (live_in != NULL) live_out->Union(*live_in);
552 live_out->Add(input->id());
556 return live_out;
561 BitVector* live_out) {
563 // each live_out value.
568 BitVector::Iterator iterator(live_out);
    [all...]
register-allocator.h 387 void AddInitialIntervals(BasicBlock* block, BitVector* live_out);
  /external/chromium_org/v8/src/
lithium-allocator.cc 544 BitVector* live_out = new(zone()) BitVector(next_virtual_register_, zone()); local
552 if (live_in != NULL) live_out->Union(*live_in);
561 live_out->Add(phi->OperandAt(index)->id());
566 return live_out;
571 BitVector* live_out) {
573 // each live_out value.
578 BitVector::Iterator iterator(live_out);
    [all...]
lithium-allocator.h 399 void AddInitialIntervals(HBasicBlock* block, BitVector* live_out);

Completed in 985 milliseconds