Searched refs:dtrh (Results 1 – 3 of 3) sorted by relevance
1103 #define DTRACE_RECORD_LOAD_TIMESTAMP(dtrh) \ argument1104 ((dtrh)->dtrh_timestamp_lo + \1105 ((uint64_t)(dtrh)->dtrh_timestamp_hi << 32))1107 #define DTRACE_RECORD_STORE_TIMESTAMP(dtrh, hrtime) { \ argument1108 (dtrh)->dtrh_timestamp_lo = (uint32_t)hrtime; \1109 (dtrh)->dtrh_timestamp_hi = hrtime >> 32; \
2886 dtrace_rechdr_t *dtrh = local2889 if (dtrh->dtrh_epid == DTRACE_EPIDNONE) {2892 return (DTRACE_RECORD_LOAD_TIMESTAMP(dtrh));
3033 dtrace_rechdr_t *dtrh = (dtrace_rechdr_t *)saddr; in dtrace_speculation_commit() local3035 if (dtrh->dtrh_epid == DTRACE_EPIDNONE) { in dtrace_speculation_commit()3039 ASSERT3U(dtrh->dtrh_epid, <=, state->dts_necbs); in dtrace_speculation_commit()3040 size = state->dts_ecbs[dtrh->dtrh_epid - 1]->dte_size; in dtrace_speculation_commit()3044 ASSERT3U(DTRACE_RECORD_LOAD_TIMESTAMP(dtrh), ==, UINT64_MAX); in dtrace_speculation_commit()3046 DTRACE_RECORD_STORE_TIMESTAMP(dtrh, timestamp); in dtrace_speculation_commit()7754 dtrace_rechdr_t dtrh; local7760 dtrh.dtrh_epid = ecb->dte_epid;7761 DTRACE_RECORD_STORE_TIMESTAMP(&dtrh,7763 *((dtrace_rechdr_t *)(tomax + offs)) = dtrh;[all …]