hevents           130 src/dps8/hdbg.c static struct hevt * hevents = NULL;
hevents           139 src/dps8/hdbg.c   if (hevents) {
hevents           140 src/dps8/hdbg.c     FREE (hevents);
hevents           141 src/dps8/hdbg.c     hevents = NULL;
hevents           146 src/dps8/hdbg.c   hevents = aligned_malloc (sizeof (struct hevt) * hdbgSize);
hevents           148 src/dps8/hdbg.c   hevents = malloc (sizeof (struct hevt) * hdbgSize);
hevents           150 src/dps8/hdbg.c   if (! hevents) {
hevents           154 src/dps8/hdbg.c   (void)memset (hevents, 0, sizeof (struct hevt) * hdbgSize);
hevents           172 src/dps8/hdbg.c   if (! hevents) \
hevents           181 src/dps8/hdbg.c   hevents[p].type = t; \
hevents           182 src/dps8/hdbg.c   hevents[p].cpu_idx = current_running_cpu_idx; \
hevents           183 src/dps8/hdbg.c   hevents[p].time = cpu.cycleCnt; \
hevents           184 src/dps8/hdbg.c   strncpy (hevents[p].ctx, ctx, 15); \
hevents           185 src/dps8/hdbg.c   hevents[p].ctx[15] = 0; \
hevents           186 src/dps8/hdbg.c   hevents[p].rw = tf;
hevents           197 src/dps8/hdbg.c   hevents[p].trace.addrMode = get_addr_mode (cpup);
hevents           198 src/dps8/hdbg.c   hevents[p].trace.segno    = cpu.PPR.PSR;
hevents           199 src/dps8/hdbg.c   hevents[p].trace.ic       = cpu.PPR.IC;
hevents           200 src/dps8/hdbg.c   hevents[p].trace.ring     = cpu.PPR.PRR;
hevents           201 src/dps8/hdbg.c   hevents[p].trace.inst     = IWB_IRODD;
hevents           208 src/dps8/hdbg.c   hevents[p].memref.addr = addr;
hevents           209 src/dps8/hdbg.c   hevents[p].memref.data = data;
hevents           216 src/dps8/hdbg.c   hevents[p].memref.addr = addr;
hevents           217 src/dps8/hdbg.c   hevents[p].memref.data = data;
hevents           224 src/dps8/hdbg.c   hevents[p].apu.segno  = segno;
hevents           225 src/dps8/hdbg.c   hevents[p].apu.offset = offset;
hevents           226 src/dps8/hdbg.c   hevents[p].apu.final  = final;
hevents           227 src/dps8/hdbg.c   hevents[p].apu.data   = data;
hevents           234 src/dps8/hdbg.c   hevents[p].apu.segno  = segno;
hevents           235 src/dps8/hdbg.c   hevents[p].apu.offset = offset;
hevents           236 src/dps8/hdbg.c   hevents[p].apu.final  = final;
hevents           237 src/dps8/hdbg.c   hevents[p].apu.data   = data;
hevents           244 src/dps8/hdbg.c   hevents[p].fault.faultNumber  = faultNumber;
hevents           245 src/dps8/hdbg.c   hevents[p].fault.subFault     = subFault;
hevents           246 src/dps8/hdbg.c   strncpy (hevents[p].fault.faultMsg, faultMsg, 63);
hevents           247 src/dps8/hdbg.c   hevents[p].fault.faultMsg[63] = 0;
hevents           254 src/dps8/hdbg.c   hevents[p].intrSet.inum       = inum;
hevents           255 src/dps8/hdbg.c   hevents[p].intrSet.cpuUnitIdx = cpuUnitIdx;
hevents           256 src/dps8/hdbg.c   hevents[p].intrSet.scuUnitIdx = scuUnitIdx;
hevents           263 src/dps8/hdbg.c   hevents[p].cpu_idx             = current_running_cpu_idx;
hevents           264 src/dps8/hdbg.c   hevents[p].time                = cpu.cycleCnt;
hevents           265 src/dps8/hdbg.c   strncpy (hevents[p].ctx, ctx, 15);
hevents           266 src/dps8/hdbg.c   hevents[p].ctx[15]             = 0;
hevents           267 src/dps8/hdbg.c   hevents[p].intr.intr_pair_addr = intr_pair_addr;
hevents           274 src/dps8/hdbg.c   hevents[p].reg.type = type;
hevents           275 src/dps8/hdbg.c   hevents[p].reg.data = data;
hevents           282 src/dps8/hdbg.c   hevents[p].reg.type = type;
hevents           283 src/dps8/hdbg.c   hevents[p].reg.data = data;
hevents           290 src/dps8/hdbg.c   hevents[p].par.type = type;
hevents           291 src/dps8/hdbg.c   hevents[p].par.data = * data;
hevents           298 src/dps8/hdbg.c     hevents[p].par.type = type;
hevents           299 src/dps8/hdbg.c     hevents[p].par.data = * data;
hevents           306 src/dps8/hdbg.c 
hevents           307 src/dps8/hdbg.c 
hevents           313 src/dps8/hdbg.c 
hevents           314 src/dps8/hdbg.c 
hevents           322 src/dps8/hdbg.c   hevents [p].iefp.type   = type;
hevents           323 src/dps8/hdbg.c   hevents [p].iefp.segno  = segno;
hevents           324 src/dps8/hdbg.c   hevents [p].iefp.offset = offset;
hevents           333 src/dps8/hdbg.c   (void)vsnprintf (hevents [p].note.noteBody, NOTE_SZ - 1, fmt, arglist);
hevents           580 src/dps8/hdbg.c   if (! hevents)
hevents           582 src/dps8/hdbg.c   struct hevt * t = hevents;
hevents           583 src/dps8/hdbg.c   hevents = NULL;