Searched full:dtrh (Results 1 – 3 of 3) sorted by relevance
1111 #define DTRACE_RECORD_LOAD_TIMESTAMP(dtrh) \ argument1112 ((dtrh)->dtrh_timestamp_lo + \1113 ((uint64_t)(dtrh)->dtrh_timestamp_hi << 32))1115 #define DTRACE_RECORD_STORE_TIMESTAMP(dtrh, hrtime) { \ argument1116 (dtrh)->dtrh_timestamp_lo = (uint32_t)hrtime; \1117 (dtrh)->dtrh_timestamp_hi = hrtime >> 32; \
2962 dtrace_rechdr_t *dtrh = (dtrace_rechdr_t *)saddr; in dtrace_speculation_commit() local2964 if (dtrh->dtrh_epid == DTRACE_EPIDNONE) { in dtrace_speculation_commit()2968 ASSERT3U(dtrh->dtrh_epid, <=, state->dts_necbs); in dtrace_speculation_commit()2969 size = state->dts_ecbs[dtrh->dtrh_epid - 1]->dte_size; in dtrace_speculation_commit()2973 ASSERT3U(DTRACE_RECORD_LOAD_TIMESTAMP(dtrh), ==, UINT64_MAX); in dtrace_speculation_commit()2975 DTRACE_RECORD_STORE_TIMESTAMP(dtrh, timestamp); in dtrace_speculation_commit()7576 dtrace_rechdr_t dtrh; local7582 dtrh.dtrh_epid = ecb->dte_epid;7583 DTRACE_RECORD_STORE_TIMESTAMP(&dtrh,7585 *((dtrace_rechdr_t *)(tomax + offs)) = dtrh;[all …]
4009 dtrace_rechdr_t *dtrh = local4012 if (dtrh->dtrh_epid == DTRACE_EPIDNONE) {4015 return (DTRACE_RECORD_LOAD_TIMESTAMP(dtrh));