Lines Matching refs:exception
59 m_pkt_data.exception.bits.present = 0; in Clear()
126 m_pkt_data.exception.bits.cancel = cancel ? 1 : 0; in SetException()
127 m_pkt_data.exception.bits.cm_irq_n = irq_n; in SetException()
128 m_pkt_data.exception.bits.cm_resume = resume; in SetException()
129 m_pkt_data.exception.bits.cm_type = cm_type ? 1 : 0; in SetException()
130 m_pkt_data.exception.number = number; in SetException()
131 m_pkt_data.exception.type = type; in SetException()
134 m_pkt_data.exception.bits.present = 1; in SetException()
507 if(m_pkt_data.exception.bits.present) in getBranchAddressStr()
669 if(m_pkt_data.exception.bits.cm_type) in getExcepStr()
671 if(m_pkt_data.exception.number < 0x18) in getExcepStr()
672 oss << MExcep[m_pkt_data.exception.number]; in getExcepStr()
674 oss << "IRQ" << std::dec << (m_pkt_data.exception.number - 0x10); in getExcepStr()
675 if(m_pkt_data.exception.bits.cm_resume) in getExcepStr()
676 oss << "; Resume=" << m_pkt_data.exception.bits.cm_resume; in getExcepStr()
677 if(m_pkt_data.exception.bits.cancel) in getExcepStr()
682 oss << ARv7Excep[m_pkt_data.exception.number] << "; "; in getExcepStr()
683 if(m_pkt_data.exception.bits.cancel) in getExcepStr()