Lines Matching refs:liftoff_code
170 (reg.is_gp() && code == LiftoffRegister{reg.gp()}.liftoff_code()) || in from_liftoff_code()
171 (reg.is_fp() && code == LiftoffRegister{reg.fp()}.liftoff_code()) || in from_liftoff_code()
173 code == ForPair(reg.low_gp(), reg.high_gp()).liftoff_code()) || in from_liftoff_code()
174 (reg.is_fp_pair() && code == ForFpPair(reg.low_fp()).liftoff_code())); in from_liftoff_code()
288 int liftoff_code() const { in liftoff_code() function
359 regs_ |= storage_t{1} << reg.low().liftoff_code(); in set()
360 regs_ |= storage_t{1} << reg.high().liftoff_code(); in set()
362 regs_ |= storage_t{1} << reg.liftoff_code(); in set()
369 regs_ &= ~(storage_t{1} << reg.low().liftoff_code()); in clear()
370 regs_ &= ~(storage_t{1} << reg.high().liftoff_code()); in clear()
372 regs_ &= ~(storage_t{1} << reg.liftoff_code()); in clear()
382 return (regs_ & (storage_t{1} << reg.liftoff_code())) != 0; in has()