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

  /art/compiler/dex/quick/
mir_to_lir.h 335 bool InUse() { return (storage_mask_ & master_->used_storage_) != 0; }
336 void MarkInUse() { master_->used_storage_ |= storage_mask_; }
337 void MarkFree() { master_->used_storage_ &= ~storage_mask_; }
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_;
373 RegisterInfo* Master() { return master_; }
375 master_ = master;
377 master_->aliased_ = true
413 RegisterInfo* master_; \/\/ Pointer to controlling storage mask. member in class:art::Mir2Lir::RegisterInfo
    [all...]
ralloc_util.cc 47 s_reg_(INVALID_SREG), def_use_mask_(mask), master_(this), def_start_(nullptr),
    [all...]

Completed in 184 milliseconds