Searched refs: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; \
2935 dtrace_rechdr_t *dtrh = (dtrace_rechdr_t *)saddr; in dtrace_speculation_commit() local2937 if (dtrh->dtrh_epid == DTRACE_EPIDNONE) { in dtrace_speculation_commit()2941 ASSERT3U(dtrh->dtrh_epid, <=, state->dts_necbs); in dtrace_speculation_commit()2942 size = state->dts_ecbs[dtrh->dtrh_epid - 1]->dte_size; in dtrace_speculation_commit()2946 ASSERT3U(DTRACE_RECORD_LOAD_TIMESTAMP(dtrh), ==, UINT64_MAX); in dtrace_speculation_commit()2948 DTRACE_RECORD_STORE_TIMESTAMP(dtrh, timestamp); in dtrace_speculation_commit()7549 dtrace_rechdr_t dtrh; local7555 dtrh.dtrh_epid = ecb->dte_epid;7556 DTRACE_RECORD_STORE_TIMESTAMP(&dtrh,7558 *((dtrace_rechdr_t *)(tomax + offs)) = dtrh;[all …]
4007 dtrace_rechdr_t *dtrh = local4010 if (dtrh->dtrh_epid == DTRACE_EPIDNONE) {4013 return (DTRACE_RECORD_LOAD_TIMESTAMP(dtrh));