/glibc-2.36/sysdeps/riscv/ |
D | machine-gmon.h | 25 static void mcount_internal (unsigned long int frompc, 28 #define _MCOUNT_DECL(frompc, selfpc) \ argument 29 static inline void mcount_internal (unsigned long int frompc, \ 33 void _mcount (void *frompc) \ 35 mcount_internal ((unsigned long int) frompc, \
|
/glibc-2.36/sysdeps/loongarch/ |
D | machine-gmon.h | 25 static void mcount_internal (unsigned long int frompc, 28 #define _MCOUNT_DECL(frompc, selfpc) \ argument 29 static inline void mcount_internal (unsigned long int frompc, \ 33 void _mcount (void *frompc) \ 35 mcount_internal ((unsigned long int) frompc, \
|
/glibc-2.36/sysdeps/aarch64/ |
D | machine-gmon.h | 25 static void mcount_internal (u_long frompc, u_long selfpc); 27 #define _MCOUNT_DECL(frompc, selfpc) \ argument 28 static inline void mcount_internal (u_long frompc, u_long selfpc) 32 void __mcount (void *frompc) \ 34 mcount_internal ((u_long) strip_pac (frompc), (u_long) RETURN_ADDRESS (0)); \
|
/glibc-2.36/sysdeps/or1k/ |
D | machine-gmon.h | 21 #define _MCOUNT_DECL(frompc, selfpc) \ argument 23 __mcount_internal (unsigned long int frompc, unsigned long int selfpc) 31 _mcount (void *frompc) \ 33 __mcount_internal ((unsigned long int) frompc, \
|
/glibc-2.36/sysdeps/arc/ |
D | machine-gmon.h | 21 #define _MCOUNT_DECL(frompc, selfpc) \ argument 23 __mcount_internal (unsigned long int frompc, unsigned long int selfpc) 31 _mcount (void *frompc) \ 33 __mcount_internal ((unsigned long int) frompc, \
|
/glibc-2.36/gmon/ |
D | mcount.c | 59 _MCOUNT_DECL(frompc, selfpc) /* _mcount; may be static, inline, etc */ in _MCOUNT_DECL() argument 81 frompc -= p->lowpc; in _MCOUNT_DECL() 82 if (frompc > p->textsize) in _MCOUNT_DECL() 93 i = frompc >> p->log_hashfraction; in _MCOUNT_DECL() 95 i = frompc / (p->hashfraction * sizeof(*p->froms)); in _MCOUNT_DECL()
|
D | gmon.c | 254 u_long frompc; in write_call_graph() local 274 frompc = _gmonparam.lowpc; in write_call_graph() 275 frompc += (from_index * _gmonparam.hashfraction in write_call_graph() 283 char *frompc; in write_call_graph() member 289 arc.frompc = (char *) frompc - load_address; in write_call_graph()
|
/glibc-2.36/sysdeps/powerpc/ |
D | machine-gmon.h | 22 void __mcount_internal (unsigned long frompc, unsigned long selfpc); 24 #define _MCOUNT_DECL(frompc, selfpc) \ argument 25 void __mcount_internal (unsigned long frompc, unsigned long selfpc)
|
/glibc-2.36/sysdeps/microblaze/ |
D | machine-gmon.h | 22 void __mcount_internal (unsigned long frompc, unsigned long selfpc); 24 #define _MCOUNT_DECL(frompc, selfpc) \ argument 25 void __mcount_internal (unsigned long frompc, unsigned long selfpc)
|
/glibc-2.36/elf/ |
D | dl-profile.c | 489 _dl_mcount (ElfW(Addr) frompc, ElfW(Addr) selfpc) in _dl_mcount() argument 503 frompc -= lowpc; in _dl_mcount() 504 if (frompc >= textsize) in _dl_mcount() 505 frompc = 0; in _dl_mcount() 531 while (fromp->here->from_pc != frompc) in _dl_mcount() 536 while (fromp->link != 0 && fromp->here->from_pc != frompc); in _dl_mcount() 538 if (fromp->here->from_pc != frompc) in _dl_mcount() 572 data[newarc].from_pc = frompc; in _dl_mcount()
|
/glibc-2.36/sysdeps/sh/ |
D | machine-gmon.h | 22 void mcount_internal (u_long frompc, u_long selfpc); 24 #define _MCOUNT_DECL(frompc, selfpc) \ argument 25 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/sparc/ |
D | machine-gmon.h | 24 extern void mcount_internal (u_long frompc, u_long selfpc); 26 #define _MCOUNT_DECL(frompc, selfpc) \ argument 27 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/s390/ |
D | machine-gmon.h | 27 void mcount_internal (u_long frompc, u_long selfpc); 29 #define _MCOUNT_DECL(frompc, selfpc) \ argument 30 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/arm/ |
D | machine-gmon.h | 27 extern void mcount_internal (u_long frompc, u_long selfpc); 28 #define _MCOUNT_DECL(frompc, selfpc) \ argument 29 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/csky/ |
D | machine-gmon.h | 27 extern void mcount_internal (u_long frompc, u_long selfpc); 28 #define _MCOUNT_DECL(frompc, selfpc) \ argument 29 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/x86_64/ |
D | machine-gmon.h | 29 void mcount_internal (u_long frompc, u_long selfpc); 31 #define _MCOUNT_DECL(frompc, selfpc) \ argument 32 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/i386/ |
D | machine-gmon.h | 31 extern void mcount_internal (u_long frompc, u_long selfpc) 34 #define _MCOUNT_DECL(frompc, selfpc) \ argument 36 void mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/generic/ |
D | machine-gmon.h | 38 static void mcount_internal (u_long frompc, u_long selfpc); 40 #define _MCOUNT_DECL(frompc, selfpc) \ argument 41 static inline void mcount_internal (u_long frompc, u_long selfpc)
|
D | ldsodefs.h | 662 void (*_dl_mcount) (ElfW(Addr) frompc, ElfW(Addr) selfpc); 1087 extern void _dl_mcount (ElfW(Addr) frompc, ElfW(Addr) selfpc);
|
/glibc-2.36/sysdeps/nios2/ |
D | machine-gmon.h | 21 #define _MCOUNT_DECL(frompc, selfpc) \ argument 22 static void __attribute_used__ __mcount_internal (u_long frompc, u_long selfpc)
|
/glibc-2.36/sysdeps/mips/ |
D | machine-gmon.h | 21 #define _MCOUNT_DECL(frompc,selfpc) \ argument 22 static void __attribute_used__ __mcount (u_long frompc, u_long selfpc)
|
/glibc-2.36/ChangeLog.old/ |
D | ChangeLog.7 | 2590 Optimize frompc folding.
|
D | ChangeLog.18 | 65657 * gmon/mcount.c (_MCOUNT_DECL(frompc, selfpc)): Likewise.
|