blob: b537a25ffa17215996577b65ac88539c959595c9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX_PROFILE_H
2#define _LINUX_PROFILE_H
3
Linus Torvalds1da177e2005-04-16 15:20:36 -07004#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005#include <linux/init.h>
6#include <linux/cpumask.h>
Ingo Molnarece8a682006-12-06 20:37:24 -08007#include <linux/cache.h>
8
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <asm/errno.h>
10
11#define CPU_PROFILING 1
12#define SCHED_PROFILING 2
Ingo Molnarece8a682006-12-06 20:37:24 -080013#define SLEEP_PROFILING 3
Ingo Molnar07031e12007-01-10 23:15:38 -080014#define KVM_PROFILING 4
Linus Torvalds1da177e2005-04-16 15:20:36 -070015
16struct proc_dir_entry;
17struct pt_regs;
Andrew Morton772a0dc2006-03-23 03:00:55 -080018struct notifier_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
Adrian Bunkb03f6482008-07-25 01:45:35 -070020#if defined(CONFIG_PROFILING) && defined(CONFIG_PROC_FS)
Al Virofbd387a2013-04-01 20:48:34 -040021void create_prof_cpu_mask(void);
Paul Mundt66f50ee2008-10-22 14:14:59 -070022int create_proc_profile(void);
Adrian Bunkb03f6482008-07-25 01:45:35 -070023#else
Al Virofbd387a2013-04-01 20:48:34 -040024static inline void create_prof_cpu_mask(void)
Andrew Mortoncebbd3f2008-07-25 01:45:35 -070025{
26}
Paul Mundt66f50ee2008-10-22 14:14:59 -070027
28static inline int create_proc_profile(void)
29{
30 return 0;
31}
Adrian Bunkb03f6482008-07-25 01:45:35 -070032#endif
33
34enum profile_type {
35 PROFILE_TASK_EXIT,
36 PROFILE_MUNMAP
37};
38
39#ifdef CONFIG_PROFILING
40
41extern int prof_on __read_mostly;
42
Linus Torvalds1da177e2005-04-16 15:20:36 -070043/* init basic kernel profiler */
Dave Hansen22b8ce92008-10-15 22:01:46 -070044int profile_init(void);
45int profile_setup(char *str);
Adrian Bunkb03f6482008-07-25 01:45:35 -070046void profile_tick(int type);
Sam Ravnborgd3091292014-05-16 23:26:05 +020047int setup_profiling_timer(unsigned int multiplier);
Ingo Molnarece8a682006-12-06 20:37:24 -080048
49/*
50 * Add multiple profiler hits to a given address:
51 */
Adrian Bunkb03f6482008-07-25 01:45:35 -070052void profile_hits(int type, void *ip, unsigned int nr_hits);
Ingo Molnarece8a682006-12-06 20:37:24 -080053
54/*
55 * Single profiler hit:
56 */
57static inline void profile_hit(int type, void *ip)
58{
59 /*
60 * Speedup for the common (no profiling enabled) case:
61 */
62 if (unlikely(prof_on == type))
63 profile_hits(type, ip, 1);
64}
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066struct task_struct;
67struct mm_struct;
68
69/* task is in do_exit() */
70void profile_task_exit(struct task_struct * task);
71
72/* task is dead, free task struct ? Returns 1 if
73 * the task was taken, 0 if the task should be freed.
74 */
75int profile_handoff_task(struct task_struct * task);
76
77/* sys_munmap */
78void profile_munmap(unsigned long addr);
79
80int task_handoff_register(struct notifier_block * n);
81int task_handoff_unregister(struct notifier_block * n);
82
83int profile_event_register(enum profile_type, struct notifier_block * n);
84int profile_event_unregister(enum profile_type, struct notifier_block * n);
85
Linus Torvalds1da177e2005-04-16 15:20:36 -070086struct pt_regs;
87
88#else
89
Adrian Bunkb03f6482008-07-25 01:45:35 -070090#define prof_on 0
91
Dave Hansen22b8ce92008-10-15 22:01:46 -070092static inline int profile_init(void)
Adrian Bunkb03f6482008-07-25 01:45:35 -070093{
Dave Hansen22b8ce92008-10-15 22:01:46 -070094 return 0;
Adrian Bunkb03f6482008-07-25 01:45:35 -070095}
96
97static inline void profile_tick(int type)
98{
99 return;
100}
101
102static inline void profile_hits(int type, void *ip, unsigned int nr_hits)
103{
104 return;
105}
106
107static inline void profile_hit(int type, void *ip)
108{
109 return;
110}
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112static inline int task_handoff_register(struct notifier_block * n)
113{
114 return -ENOSYS;
115}
116
117static inline int task_handoff_unregister(struct notifier_block * n)
118{
119 return -ENOSYS;
120}
121
122static inline int profile_event_register(enum profile_type t, struct notifier_block * n)
123{
124 return -ENOSYS;
125}
126
127static inline int profile_event_unregister(enum profile_type t, struct notifier_block * n)
128{
129 return -ENOSYS;
130}
131
132#define profile_task_exit(a) do { } while (0)
133#define profile_handoff_task(a) (0)
134#define profile_munmap(a) do { } while (0)
135
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#endif /* CONFIG_PROFILING */
137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#endif /* _LINUX_PROFILE_H */