HomeSort by: relevance | last modified time | path
    Searched defs:tfi (Results 1 - 4 of 4) 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);

Completed in 15 milliseconds