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

  /src/sys/dev/tprof/
tprof.h 77 uintptr_t tfi_pc; /* program counter */ member in struct:__anonecd820040108
79 bool tfi_inkernel; /* if tfi_pc is in the kernel address space */
tprof_armv7.c 245 tfi.tfi_pc = tf->tf_pc;
248 tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS &&
249 tfi.tfi_pc < VM_MAX_KERNEL_ADDRESS;
tprof_armv8.c 217 tfi.tfi_pc = tf->tf_pc;
220 tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS &&
221 tfi.tfi_pc < VM_MAX_KERNEL_ADDRESS;
tprof_x86_amd.c 213 tfi.tfi_pc = tf->tf_rip;
215 tfi.tfi_pc = tf->tf_eip;
218 tfi.tfi_inkernel = tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS;
tprof_x86_intel.c 206 tfi.tfi_pc = tf->tf_rip;
208 tfi.tfi_pc = tf->tf_eip;
211 tfi.tfi_inkernel = tfi.tfi_pc >= VM_MIN_KERNEL_ADDRESS;
tprof.c 712 const uintptr_t pc = tfi->tfi_pc;

Completed in 14 milliseconds