Home
last modified time | relevance | path

Searched refs:mcount (Results 1 – 25 of 32) sorted by relevance

12

/kernel/linux/linux-5.10/Documentation/trace/
Dftrace-design.rst37 You will need to implement the mcount and the ftrace_stub functions.
39 The exact mcount symbol name will depend on your toolchain. Some call it
40 "mcount", "_mcount", or even "__mcount". You can probably figure it out by
43 $ echo 'main(){}' | gcc -x c -S -o - - -pg | grep mcount
44 call mcount
46 We'll make the assumption below that the symbol is "mcount" just to keep things
49 Keep in mind that the ABI that is in effect inside of the mcount function is
54 mcount call (before/after function prologue). You might also want to look at
55 how glibc has implemented the mcount function for your architecture. It might
58 The mcount function should check the function pointer ftrace_trace_function
[all …]
/kernel/linux/linux-5.10/arch/sparc/lib/
Dmcount.S22 .globl mcount symbol
23 .type mcount,#function
25 mcount: label
70 .size mcount,.-mcount
DMakefile52 lib-$(CONFIG_SPARC64) += mcount.o ipcsum.o xor.o hweight.o ffs.o
/kernel/linux/linux-5.10/arch/um/kernel/
Dgprof_syms.c8 extern void mcount(void);
9 EXPORT_SYMBOL(mcount);
/kernel/linux/linux-5.10/net/dsa/
Dmaster.c150 int mcount = 0, count, i; in dsa_master_get_strings() local
160 mcount = phy_ethtool_get_sset_count(dev->phydev); in dsa_master_get_strings()
161 if (mcount < 0) in dsa_master_get_strings()
162 mcount = 0; in dsa_master_get_strings()
166 mcount = ops->get_sset_count(dev, stringset); in dsa_master_get_strings()
167 if (mcount < 0) in dsa_master_get_strings()
168 mcount = 0; in dsa_master_get_strings()
173 ndata = data + mcount * len; in dsa_master_get_strings()
/kernel/linux/linux-5.10/arch/parisc/include/asm/
Dftrace.h6 extern void mcount(void);
8 #define MCOUNT_ADDR ((unsigned long)mcount)
/kernel/linux/linux-5.10/arch/ia64/include/asm/
Dftrace.h10 #define mcount _mcount macro
13 #define MCOUNT_ADDR (((struct fnptr *)mcount)->ip)
/kernel/linux/linux-5.10/arch/sh/include/asm/
Dftrace.h11 extern void mcount(void);
13 #define MCOUNT_ADDR ((unsigned long)(mcount))
/kernel/linux/linux-5.10/arch/riscv/kernel/
DMakefile44 obj-$(CONFIG_FUNCTION_TRACER) += mcount.o ftrace.o
45 obj-$(CONFIG_DYNAMIC_FTRACE) += mcount-dyn.o
/kernel/linux/linux-5.10/arch/sh/lib/
Dmcount.S82 .globl mcount symbol
83 .type mcount,@function
85 mcount: label
DMakefile31 lib-$(CONFIG_MCOUNT) += mcount.o
/kernel/linux/linux-5.10/arch/xtensa/include/asm/
Dftrace.h36 #define mcount _mcount macro
/kernel/linux/linux-5.10/arch/csky/abiv2/
DMakefile12 obj-$(CONFIG_FUNCTION_TRACER) += mcount.o
/kernel/linux/linux-5.10/drivers/mtd/nand/onenand/
Donenand_samsung.c383 int i, mcount, scount; in s3c_onenand_command() local
416 mcount = mtd->writesize >> 2; in s3c_onenand_command()
422 for (i = 0; i < mcount; i++) in s3c_onenand_command()
429 for (i = 0; i < mcount; i++) in s3c_onenand_command()
441 for (i = 0; i < mcount; i++) in s3c_onenand_command()
449 for (i = 0; i < mcount; i++) in s3c_onenand_command()
/kernel/linux/linux-5.10/arch/riscv/include/asm/
Dftrace.h23 #define MCOUNT_NAME mcount
/kernel/linux/linux-5.10/arch/powerpc/kernel/trace/
Dftrace_64.S25 _GLOBAL(mcount)
Dftrace_32.S13 _GLOBAL(mcount)
/kernel/linux/linux-5.10/arch/mips/include/asm/
Dftrace.h20 #define mcount _mcount macro
/kernel/linux/linux-5.10/arch/microblaze/kernel/
DMakefile27 obj-$(CONFIG_FUNCTION_TRACER) += ftrace.o mcount.o
/kernel/linux/linux-5.10/arch/xtensa/kernel/
DMakefile15 obj-$(CONFIG_FUNCTION_TRACER) += mcount.o
/kernel/linux/linux-5.10/arch/sh/kernel/
Dsh_ksyms_32.c117 DECLARE_EXPORT(mcount);
/kernel/linux/linux-5.10/arch/s390/kernel/
DMakefile61 obj-$(CONFIG_FUNCTION_TRACER) += mcount.o ftrace.o
/kernel/linux/linux-5.10/arch/mips/kernel/
DMakefile43 obj-$(CONFIG_FUNCTION_TRACER) += mcount.o ftrace.o
/kernel/linux/linux-5.10/arch/s390/
DMakefile107 ifeq ($(call cc-option-yn,-mfentry -mnop-mcount),n)
/kernel/linux/linux-5.10/scripts/
Drecordmcount.h359 char const *mcount = gpfx == '_' ? "_mcount" : "mcount"; in get_mcountsym() local
364 if (strcmp(mcount, symname) == 0 || in get_mcountsym()

12