Lines Matching defs:other
294 bool operator==(const LiftoffRegister other) const {
295 DCHECK_EQ(is_gp_pair(), other.is_gp_pair());
296 DCHECK_EQ(is_fp_pair(), other.is_fp_pair());
297 return code_ == other.code_;
299 bool operator!=(const LiftoffRegister other) const {
300 DCHECK_EQ(is_gp_pair(), other.is_gp_pair());
301 DCHECK_EQ(is_fp_pair(), other.is_fp_pair());
302 return code_ != other.code_;
304 bool overlaps(const LiftoffRegister other) const {
305 if (is_pair()) return low().overlaps(other) || high().overlaps(other);
306 if (other.is_pair()) return *this == other.low() || *this == other.high();
307 return *this == other;
410 constexpr LiftoffRegList operator&(const LiftoffRegList other) const {
411 return LiftoffRegList(regs_ & other.regs_);
414 constexpr LiftoffRegList operator|(const LiftoffRegList other) const {
415 return LiftoffRegList(regs_ | other.regs_);
429 constexpr bool operator==(const LiftoffRegList other) const {
430 return regs_ == other.regs_;
432 constexpr bool operator!=(const LiftoffRegList other) const {
433 return regs_ != other.regs_;
495 bool operator==(Iterator other) { return remaining_ == other.remaining_; }
496 bool operator!=(Iterator other) { return remaining_ != other.remaining_; }