Lines Matching refs:index
62 bool RegisterIsLive(int index) const {
63 DCHECK_GE(index, 0);
64 DCHECK_LT(index, bit_vector_.length() - 1);
65 return bit_vector_.Contains(index + 1);
74 void MarkRegisterLive(int index) {
75 DCHECK_GE(index, 0);
76 DCHECK_LT(index, bit_vector_.length() - 1);
77 bit_vector_.Add(index + 1);
80 void MarkRegisterDead(int index) {
81 DCHECK_GE(index, 0);
82 DCHECK_LT(index, bit_vector_.length() - 1);
83 bit_vector_.Remove(index + 1);