| /f-stack/freebsd/amd64/include/ |
| H A D | profile.h | 98 ((pc < (uintfptr_t)VM_MAXUSER_ADDRESS) ? (uintfptr_t)user : pc) 101 ((pc >= (uintfptr_t)btrap && pc < (uintfptr_t)eintr) ? \ 102 ((pc >= (uintfptr_t)bintr) ? (uintfptr_t)bintr : \ 103 (uintfptr_t)btrap) : ~0UL) 110 static void _mcount(uintfptr_t frompc, uintfptr_t selfpc) __used; \ 150 uintfptr_t selfpc, frompc; \ 165 frompc = ((uintfptr_t *)frompc)[1]; \ 173 typedef u_long uintfptr_t; typedef 185 void mcount(uintfptr_t frompc, uintfptr_t selfpc);
|
| /f-stack/freebsd/i386/include/ |
| H A D | profile.h | 106 if ((pc) >= (uintfptr_t)start_exceptions + setidt_disp && \ 107 (pc) < (uintfptr_t)end_exceptions + setidt_disp) \ 112 ((pc >= (uintfptr_t)btrap && pc < (uintfptr_t)eintr) ? \ 113 ((pc >= (uintfptr_t)bintr) ? (uintfptr_t)bintr : \ 114 (uintfptr_t)btrap) : ~0U) 116 #define MCOUNT_USERPC ((uintfptr_t)user) 129 uintfptr_t selfpc, frompc, ecx; \ 152 frompc = ((uintfptr_t *)frompc)[1]; \ 160 typedef u_int uintfptr_t; typedef 172 void mcount(uintfptr_t frompc, uintfptr_t selfpc);
|
| /f-stack/freebsd/arm/include/ |
| H A D | profile.h | 102 ((pc < (uintfptr_t)VM_MAXUSER_ADDRESS) ? (uintfptr_t)user : pc) 105 ((pc >= (uintfptr_t)btrap && pc < (uintfptr_t)eintr) ? \ 106 ((pc >= (uintfptr_t)bintr) ? (uintfptr_t)bintr : \ 107 (uintfptr_t)btrap) : ~0U) 118 void mcount(uintfptr_t frompc, uintfptr_t selfpc); 121 typedef u_int uintfptr_t; typedef
|
| /f-stack/freebsd/arm64/include/ |
| H A D | profile.h | 62 ((pc < (uintfptr_t)VM_MAXUSER_ADDRESS) ? (uintfptr_t)user : pc) 65 ((pc >= (uintfptr_t)btrap && pc < (uintfptr_t)eintr) ? \ 66 ((pc >= (uintfptr_t)bintr) ? (uintfptr_t)bintr : \ 67 (uintfptr_t)btrap) : ~0UL) 69 void mcount(uintfptr_t frompc, uintfptr_t selfpc); 73 typedef __uintfptr_t uintfptr_t; typedef
|
| /f-stack/freebsd/mips/include/ |
| H A D | profile.h | 115 typedef u_long uintfptr_t; typedef 117 typedef u_int uintfptr_t; typedef 134 void mcount(uintfptr_t frompc, uintfptr_t selfpc); 160 void _mcount(uintfptr_t frompc, uintfptr_t selfpc); 172 void mexitcount(uintfptr_t selfpc);
|
| /f-stack/freebsd/sys/ |
| H A D | gmon.h | 166 uintfptr_t lowpc; 167 uintfptr_t highpc; 207 #define PC_TO_I(p, pc) ((uintfptr_t)(pc) - (uintfptr_t)(p)->lowpc) 229 void kmupetext(uintfptr_t nhighpc); 230 void mexitcount(uintfptr_t selfpc);
|
| H A D | pmclog.h | 151 uintfptr_t pl_start; /* 8 byte aligned */ 159 uintfptr_t pl_start; /* 8 byte aligned */ 160 uintfptr_t pl_end; 205 uintfptr_t pl_start; /* keep 8 byte aligned */ 308 uintfptr_t start, const char *path); 310 uintfptr_t start, uintfptr_t end); 317 uintfptr_t _startaddr, char *_path);
|
| H A D | pmckern.h | 79 uintfptr_t pm_entryaddr; 84 uintfptr_t pm_address; /* address object is loaded at */ 88 uintfptr_t pm_address; /* start address of region */
|
| H A D | resourcevar.h | 116 void addupc_intr(struct thread *td, uintfptr_t pc, u_int ticks); 117 void addupc_task(struct thread *td, uintfptr_t pc, u_int ticks);
|
| H A D | types.h | 290 typedef __uintfptr_t uintfptr_t; typedef
|
| H A D | systm.h | 447 void profclock(int cnt, int usermode, uintfptr_t pc);
|
| /f-stack/freebsd/libkern/ |
| H A D | mcount.c | 62 _MCOUNT_DECL(uintfptr_t frompc, uintfptr_t selfpc) in _MCOUNT_DECL() 264 mexitcount(uintfptr_t selfpc) in mexitcount() 267 uintfptr_t selfpcdiff; in mexitcount() 273 selfpcdiff = selfpc - (uintfptr_t)p->lowpc; in mexitcount()
|
| /f-stack/freebsd/kern/ |
| H A D | subr_prof.c | 86 kmupetext(uintfptr_t nhighpc) in kmupetext() 154 uintfptr_t tmp_addr; in kmstartup() 242 for (tmp_addr = (uintfptr_t)nullfunc_loop_profiled; in kmstartup() 243 tmp_addr < (uintfptr_t)nullfunc_loop_profiled_end; in kmstartup() 461 addupc_intr(struct thread *td, uintfptr_t pc, u_int ticks) in addupc_intr() 488 addupc_task(struct thread *td, uintfptr_t pc, u_int ticks) in addupc_task()
|
| H A D | sys_process.c | 980 (u_long)(uintfptr_t)addr); in kern_ptrace() 990 (u_long)(uintfptr_t)addr, data); in kern_ptrace() 997 (u_long)(uintfptr_t)addr, data); in kern_ptrace() 1004 (u_long)(uintfptr_t)addr, data); in kern_ptrace() 1009 p->p_pid, (u_long)(uintfptr_t)addr, data); in kern_ptrace()
|
| H A D | kern_clock.c | 724 profclock(int cnt, int usermode, uintfptr_t pc) in profclock() 729 uintfptr_t i; in profclock()
|
| H A D | link_elf.c | 1179 kmupetext((uintfptr_t)(mapbase + segs[0]->p_vaddr - base_vaddr + in link_elf_load_file()
|
| /f-stack/tools/compat/include/sys/ |
| H A D | resourcevar.h | 119 void addupc_intr(struct thread *td, uintfptr_t pc, u_int ticks); 120 void addupc_task(struct thread *td, uintfptr_t pc, u_int ticks);
|