Searched refs:mcount (Results 1 - 11 of 11) sorted by relevance

/xnu-2782.1.97/osfmk/x86_64/
H A Dmcount.s33 Entry(mcount)
34 pushq %rbp // setup mcount's frame
62 movq (%rbp),%rax // frame pointer of mcount's caller
69 movq 8(%rax),%rdi // mcount's caller's return address
70 movq 8(%rbp),%rsi // push selfpc parameter for mcount()
72 call _mcount // call the C mcount
85 movq %rbp,%rsp // tear down mcount's frame
/xnu-2782.1.97/osfmk/i386/
H A Dhibernate_i386.c64 uint32_t mcount, msize, i; local
73 mcount = args->MemoryMapSize / msize;
77 for (i = 0; i < mcount; i++, mptr = (EfiMemoryRange *)(((vm_offset_t)mptr) + msize))
H A Di386_vm_init.c177 unsigned int mcount; local
320 mcount = args->MemoryMapSize / msize;
325 for (i = 0; i < mcount; i++, mptr = (EfiMemoryRange *)(((vm_offset_t)mptr) + msize)) {
581 for (i=0; i<mcount; i++, mptr = (EfiMemoryRange *)(((vm_offset_t)mptr) + msize)) {
H A Dasm.h172 #define MCOUNT ; call mcount;
/xnu-2782.1.97/bsd/sys/
H A Dgmon.h243 void mcount(uintptr_t, uintptr_t);
/xnu-2782.1.97/osfmk/i386/AT386/
H A Dmodel_dep.c493 unsigned int msize, mcount; local
497 mcount = args->MemoryMapSize / msize;
511 for (i=0; i < mcount; i++, mptr = (EfiMemoryRange *)(((vm_offset_t)mptr) + msize)) {
559 unsigned int msize, mcount; local
574 mcount = args->MemoryMapSize / msize;
576 for (i=0; i < mcount; i++, mptr = (EfiMemoryRange *)(((vm_offset_t)mptr) + msize)) {
595 mcount = (unsigned int )(map_size / msize);
597 for (i=0; i < mcount; i++, mptr = (EfiMemoryRange *)(((vm_offset_t)mptr) + msize)) {
/xnu-2782.1.97/bsd/miscfs/fifofs/
H A Dfifo_vnops.c568 int mcount; local
569 int err = sock_ioctl(vp->v_fifoinfo->fi_readsock, FIONREAD, (void*)&mcount);
571 *count = mcount;
/xnu-2782.1.97/EXTERNAL_HEADERS/architecture/i386/
H A Dasm_help.h71 call mcount ;\
/xnu-2782.1.97/bsd/kern/
H A Dsubr_prof.c227 * mcount() called with interrupts disabled.
230 mcount( function
336 printf("mcount: tos overflow\n");
/xnu-2782.1.97/bsd/nfs/
H A Dnfs_serv.c1178 int mlen, mcount; local
1261 for (mcount=0, m=nmreq->nmc_mcur; m; m = mbuf_next(m))
1263 mcount++;
1264 MALLOC(uio_bufp, char *, UIO_SIZEOF(mcount), M_TEMP, M_WAITOK);
1266 auio = uio_createwithbuffer(mcount, off, UIO_SYSSPACE, UIO_WRITE, uio_bufp, UIO_SIZEOF(mcount));
/xnu-2782.1.97/tools/lldbmacros/
H A Dmemory.py2046 mcount = (boot_args.MemoryMapSize) / unsigned(msize)
2051 while i < mcount:

Completed in 52 milliseconds