Home | History | Annotate | Download | only in aarch64

Lines Matching refs:list_

524       : list_(reg1.GetBit() | reg2.GetBit() | reg3.GetBit() | reg4.GetBit()),
532 : list_(list), size_(size), type_(type) {
546 list_ = (UINT64_C(1) << (last_reg + 1)) - 1;
547 list_ &= ~((UINT64_C(1) << first_reg) - 1);
566 list_ |= other.GetList();
576 list_ &= ~other.GetList();
597 list_ |= (UINT64_C(1) << code);
603 list_ &= ~(UINT64_C(1) << code);
609 return CPURegList(list_1.type_, list_1.size_, list_1.list_ | list_2.list_);
623 return CPURegList(list_1.type_, list_1.size_, list_1.list_ & list_2.list_);
634 return (type_ == other.type_) && ((list_ & other.list_) != 0);
639 return list_;
645 list_ = new_list;
670 return list_ == 0;
675 return (type_ == other.GetType()) && ((other.GetBit() & list_) != 0);
680 return ((code & list_) != 0);
685 return CountSetBits(list_);
715 RegList list_;