Home | History | Annotate | Download | only in arm

Lines Matching refs:bit_field_

214         bit_field_(IsCallBits::encode(false)) {
258 // +1/-1 so that the encoded value of position in bit_field_ is always >= 0
261 bit_field_ = PositionBits::update(bit_field_, pos + 1);
263 int position() { return PositionBits::decode(bit_field_) - 1; }
270 void MarkAsCall() { bit_field_ = IsCallBits::update(bit_field_, true); }
271 bool IsCall() const { return IsCallBits::decode(bit_field_); }
309 int bit_field_;