Lines Matching refs:dump_
66 VIXL_ASSERT(sizeof(dump_.d_[0]) == kDRegSizeInBytes); in RegisterDump()
67 VIXL_ASSERT(sizeof(dump_.s_[0]) == kSRegSizeInBytes); in RegisterDump()
68 VIXL_ASSERT(sizeof(dump_.h_[0]) == kHRegSizeInBytes); in RegisterDump()
69 VIXL_ASSERT(sizeof(dump_.d_[0]) == kXRegSizeInBytes); in RegisterDump()
70 VIXL_ASSERT(sizeof(dump_.s_[0]) == kWRegSizeInBytes); in RegisterDump()
71 VIXL_ASSERT(sizeof(dump_.x_[0]) == kXRegSizeInBytes); in RegisterDump()
72 VIXL_ASSERT(sizeof(dump_.w_[0]) == kWRegSizeInBytes); in RegisterDump()
73 VIXL_ASSERT(sizeof(dump_.q_[0]) == kQRegSizeInBytes); in RegisterDump()
91 return dump_.w_[code]; in wreg()
99 return dump_.x_[code]; in xreg()
105 return dump_.h_[code]; in hreg_bits()
110 return dump_.s_[code]; in sreg_bits()
123 return dump_.d_[code]; in dreg_bits()
130 inline vec128_t qreg(unsigned code) const { return dump_.q_[code]; } in qreg()
135 return dump_.sp_; in spreg()
140 return static_cast<int32_t>(dump_.wsp_); in wspreg()
146 VIXL_ASSERT((dump_.flags_ & ~Flags_mask) == 0); in flags_nzcv()
147 return dump_.flags_ & Flags_mask; in flags_nzcv()
162 return ((dump_.x_[code] & kWRegMask) == dump_.w_[code]); in RegAliasesMatch()
168 return ((dump_.sp_ & kWRegMask) == dump_.wsp_); in SPRegAliasesMatch()
175 return (((dump_.d_[code] & kSRegMask) == dump_.s_[code]) || in FPRegAliasesMatch()
176 ((dump_.s_[code] & kHRegMask) == dump_.h_[code])); in FPRegAliasesMatch()
204 } dump_; variable