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

  /art/compiler/optimizing/
register_allocator.cc 45 liveness_(liveness),
430 for (size_t i = 0; i < liveness_.GetNumberOfSsaValues(); ++i) {
431 HInstruction* instruction = liveness_.GetInstructionFromSsaIndex(i);
774 int hint = current->FindFirstRegisterHint(free_until, liveness_);
    [all...]
register_allocator.h 161 const SsaLivenessAnalysis& liveness_; member in class:art::RegisterAllocator
  /art/compiler/dex/quick/
mir_to_lir.h 290 * The "liveness" of a register is handled in a similar way. The liveness_ storage is
339 bool IsDead() { return (master_->liveness_ & storage_mask_) == 0; }
341 bool IsLive() { return (master_->liveness_ & storage_mask_) == storage_mask_; }
345 master_->liveness_ |= storage_mask_;
350 master_->liveness_ &= ~storage_mask_;
412 uint32_t liveness_; // 1 bit per 4 bytes of storage. Unused by aliases. member in class:art::Mir2Lir::RegisterInfo
    [all...]
ralloc_util.cc 59 liveness_ = used_storage_;
    [all...]

Completed in 214 milliseconds