hc
2023-11-20 520ec20d74dfd87f62fd58b921b7209d6daed94a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
/**
 * @file perfmon.c
 *
 * @remark Copyright 2003 OProfile authors
 * @remark Read the file COPYING
 *
 * @author John Levon <levon@movementarian.org>
 */
 
#include <linux/kernel.h>
#include <linux/oprofile.h>
#include <linux/sched.h>
#include <asm/perfmon.h>
#include <asm/ptrace.h>
#include <asm/errno.h>
 
static int allow_ints;
 
static int
perfmon_handler(struct task_struct *task, void *buf, pfm_ovfl_arg_t *arg,
                struct pt_regs *regs, unsigned long stamp)
{
   int event = arg->pmd_eventid;
 
   arg->ovfl_ctrl.bits.reset_ovfl_pmds = 1;
 
   /* the owner of the oprofile event buffer may have exited
    * without perfmon being shutdown (e.g. SIGSEGV)
    */
   if (allow_ints)
       oprofile_add_sample(regs, event);
   return 0;
}
 
 
static int perfmon_start(void)
{
   allow_ints = 1;
   return 0;
}
 
 
static void perfmon_stop(void)
{
   allow_ints = 0;
}
 
 
#define OPROFILE_FMT_UUID { \
   0x77, 0x7a, 0x6e, 0x61, 0x20, 0x65, 0x73, 0x69, 0x74, 0x6e, 0x72, 0x20, 0x61, 0x65, 0x0a, 0x6c }
 
static pfm_buffer_fmt_t oprofile_fmt = {
     .fmt_name         = "oprofile_format",
     .fmt_uuid        = OPROFILE_FMT_UUID,
     .fmt_handler        = perfmon_handler,
};
 
 
static char *get_cpu_type(void)
{
   __u8 family = local_cpu_data->family;
 
   switch (family) {
       case 0x07:
           return "ia64/itanium";
       case 0x1f:
           return "ia64/itanium2";
       default:
           return "ia64/ia64";
   }
}
 
 
/* all the ops are handled via userspace for IA64 perfmon */
 
static int using_perfmon;
 
int perfmon_init(struct oprofile_operations *ops)
{
   int ret = pfm_register_buffer_fmt(&oprofile_fmt);
   if (ret)
       return -ENODEV;
 
   ops->cpu_type = get_cpu_type();
   ops->start = perfmon_start;
   ops->stop = perfmon_stop;
   using_perfmon = 1;
   printk(KERN_INFO "oprofile: using perfmon.\n");
   return 0;
}
 
 
void perfmon_exit(void)
{
   if (!using_perfmon)
       return;
 
   pfm_unregister_buffer_fmt(oprofile_fmt.fmt_uuid);
}