Home
last modified time | relevance | path

Searched refs:master_ (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/quick/
Dmir_to_lir.h356 bool InUse() { return (storage_mask_ & master_->used_storage_) != 0; } in InUse()
357 void MarkInUse() { master_->used_storage_ |= storage_mask_; } in MarkInUse()
358 void MarkFree() { master_->used_storage_ &= ~storage_mask_; } in MarkFree()
360 bool IsDead() { return (master_->liveness_ & storage_mask_) == 0; } in IsDead()
362 bool IsLive() { return (master_->liveness_ & storage_mask_) == storage_mask_; } in IsLive()
366 master_->liveness_ |= storage_mask_; in MarkLive()
371 master_->liveness_ &= ~storage_mask_; in MarkDead()
394 RegisterInfo* Master() { return master_; } in Master()
396 master_ = master; in SetMaster()
398 master_->aliased_ = true; in SetMaster()
[all …]
Dralloc_util.cc43 s_reg_(INVALID_SREG), def_use_mask_(mask), master_(this), def_start_(nullptr), in RegisterInfo()