Lines Matching refs:bits_
323 return RepresentationField::decode(bits_); in representation()
326 int assigned_register() const { return AssignedRegisterField::decode(bits_); } in assigned_register()
333 bool spilled() const { return SpilledField::decode(bits_); } in spilled()
433 void set_spilled(bool value) { bits_ = SpilledField::update(bits_, value); } in set_spilled()
448 uint32_t bits_; variable
502 bool is_phi() const { return IsPhiField::decode(bits_); } in is_phi()
503 void set_is_phi(bool value) { bits_ = IsPhiField::update(bits_, value); } in set_is_phi()
505 bool is_non_loop_phi() const { return IsNonLoopPhiField::decode(bits_); } in is_non_loop_phi()
507 bits_ = IsNonLoopPhiField::update(bits_, value); in set_is_non_loop_phi()
510 bool has_slot_use() const { return HasSlotUseField::decode(bits_); } in has_slot_use()
512 bits_ = HasSlotUseField::update(bits_, value); in set_has_slot_use()
537 bits_ = SpillTypeField::update(bits_, value); in set_spill_type()
539 SpillType spill_type() const { return SpillTypeField::decode(bits_); } in spill_type()