HomeSort by: relevance | last modified time | path
    Searched refs:tfi (Results 1 - 5 of 5) sorted by relevancy

  /src/sys/dev/tprof/
tprof_armv7.c 226 tprof_frame_info_t tfi; local in function:armv7_pmu_intr
245 tfi.tfi_pc = tf->tf_pc;
246 tfi.tfi_counter = bit;
247 tfi.tfi_inkernel =
248 tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS &&
249 tfi.tfi_pc < VM_MAX_KERNEL_ADDRESS;
250 tprof_sample(NULL, &tfi);
tprof_armv8.c 198 tprof_frame_info_t tfi; local in function:armv8_pmu_intr
217 tfi.tfi_pc = tf->tf_pc;
218 tfi.tfi_counter = bit;
219 tfi.tfi_inkernel =
220 tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS &&
221 tfi.tfi_pc < VM_MAX_KERNEL_ADDRESS;
222 tprof_sample(NULL, &tfi);
tprof_x86_amd.c 189 tprof_frame_info_t tfi; local in function:tprof_amd_nmi
213 tfi.tfi_pc = tf->tf_rip;
215 tfi.tfi_pc = tf->tf_eip;
217 tfi.tfi_counter = bit;
218 tfi.tfi_inkernel = tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS;
219 tprof_sample(NULL, &tfi);
tprof_x86_intel.c 181 tprof_frame_info_t tfi; local in function:tprof_intel_nmi
206 tfi.tfi_pc = tf->tf_rip;
208 tfi.tfi_pc = tf->tf_eip;
210 tfi.tfi_counter = bit;
211 tfi.tfi_inkernel = tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS;
212 tprof_sample(NULL, &tfi);
tprof.c 707 tprof_sample(void *unused, const tprof_frame_info_t *tfi)
712 const uintptr_t pc = tfi->tfi_pc;
725 sp->s_flags = ((tfi->tfi_inkernel) ? TPROF_SAMPLE_INKERNEL : 0) |
726 __SHIFTIN(tfi->tfi_counter, TPROF_SAMPLE_COUNTER_MASK);

Completed in 12 milliseconds