Home
last modified time | relevance | path

Searched refs:m_atom (Results 1 – 3 of 3) sorted by relevance

/external/OpenCSD/decoder/include/opencsd/etmv3/
Dtrc_pkt_decode_etmv3.h80 ocsd_pkt_atom m_atom; /**< atom elements - non zero number indicates valid atom count */ variable
96 m_atom = in_pkt->getAtom(); in initAtomPkt()
103 return (m_atom.En_bits & 0x1) ? ATOM_E : ATOM_N; in getCurrAtomVal()
108 return m_atom.num; in numAtoms()
134 hasCC = (m_atom.num > 1); // first of 2 has W state in hasAtomCC()
157 CC = (m_atom.num > 1) ? 1: 0; in getAtomCC()
184 CC = (m_atom.num > 1) ? 1: 0; in getRemainCC()
188 CC = m_atom.num; in getRemainCC()
196 m_atom.En_bits >>=1; in clearAtom()
197 if(m_atom.num) in clearAtom()
[all …]
/external/OpenCSD/decoder/include/opencsd/ptm/
Dtrc_pkt_decode_ptm.h61 ocsd_pkt_atom m_atom;
67 m_atom = atom; in initAtomPkt()
73 return (m_atom.En_bits & 0x1) ? ATOM_E : ATOM_N; in getCurrAtomVal()
78 return m_atom.num; in numAtoms()
88 if(m_atom.num) in clearAtom()
90 m_atom.num--; in clearAtom()
91 m_atom.En_bits >>=1; in clearAtom()
97 m_atom.num = 0; in clearAll()
/external/OpenCSD/decoder/include/opencsd/etmv4/
Dtrc_etmv4_stack_elem.h245 void setAtom(const ocsd_pkt_atom &atom) { m_atom = atom; }; in setAtom()
250 const bool isEmpty() const { return (m_atom.num == 0); }; in isEmpty()
253 ocsd_pkt_atom m_atom;
259 m_atom.num = 0; in TrcStackElemAtom()
265 ocsd_atm_val val = (m_atom.En_bits & 0x1) ? ATOM_E : ATOM_N; in commitOldest()
266 m_atom.num--; in commitOldest()
267 m_atom.En_bits >>= 1; in commitOldest()
274 int nRemove = (nCancel <= m_atom.num) ? nCancel : m_atom.num; in cancelNewest()
275 m_atom.num -= nRemove; in cancelNewest()
282 uint32_t mask = 0x1 << (m_atom.num - 1); in mispredictNewest()
[all …]