update
[lttv.git] / markers-test / test-mark-speed-empty.c
1 /* test-mark.c
2 *
3 */
4
5 #include <linux/module.h>
6 #include <linux/proc_fs.h>
7 #include <linux/sched.h>
8 #include <linux/timex.h>
9 #include <linux/marker.h>
10 #include <asm/ptrace.h>
11 #include <asm/system.h>
12
13 static void noinline test2(const struct marker *mdata,
14 void *call_private, ...)
15 {
16 /* not called */
17 printk("blah\n");
18 }
19
20 /*
21 * Generic marker flavor always available.
22 * Note : the empty asm volatile with read constraint is used here instead of a
23 * "used" attribute to fix a gcc 4.1.x bug.
24 * Make sure the alignment of the structure in the __markers section will
25 * not add unwanted padding between the beginning of the section and the
26 * structure. Force alignment to the same alignment as the section start.
27 */
28 #define __my_trace_mark(generic, name, call_private, format, args...) \
29 do { \
30 static const char __mstrtab_##name[] \
31 __attribute__((section("__markers_strings"))) \
32 = #name "\0" format; \
33 static struct marker __mark_##name \
34 __attribute__((section("__markers"), aligned(8))) = \
35 { __mstrtab_##name, &__mstrtab_##name[sizeof(#name)], \
36 0, 0, marker_probe_cb, \
37 { __mark_empty_function, NULL}, NULL }; \
38 __mark_check_format(format, ## args); \
39 if (!generic) { \
40 if (unlikely(imv_read(__mark_##name.state))) \
41 test2 \
42 (&__mark_##name, call_private, \
43 ## args); \
44 } else { \
45 if (unlikely(_imv_read(__mark_##name.state))) \
46 test2 \
47 (&__mark_##name, call_private, \
48 ## args); \
49 } \
50 } while (0)
51
52 //asm volatile ("");
53 struct proc_dir_entry *pentry = NULL;
54
55 char temp0[8192];
56 int temp[8192] __cacheline_aligned;
57 char temp5[8192];
58
59 static inline void test(unsigned long arg, unsigned long arg2)
60 {
61 #ifdef CACHEFLUSH
62 wbinvd();
63 #endif
64 temp[2] = (temp[0] + 60) << 10;
65 temp[3] = (temp[2] + 60) << 10;
66 temp[4] = (temp[3] + 60) << 10;
67 temp[0] = (temp[4] + 60) << 10;
68 barrier();
69 asm ("");
70 barrier();
71 //__my_trace_mark(1, kernel_debug_test, NULL, "%d %d %ld %ld", 2, current->pid, arg, arg2);
72 //__my_trace_mark(0, kernel_debug_test, NULL, "%d %d %ld %ld", 2, current->pid, arg, arg2);
73 }
74
75 static int my_open(struct inode *inode, struct file *file)
76 {
77 unsigned int i;
78 cycles_t cycles1, cycles2;
79 unsigned long flags;
80
81 local_irq_save(flags);
82 #ifdef CACHEFLUSH
83 wbinvd(); /* initial write back, without cycle count */
84 msleep(20); /* wait for L2 flush */
85 #endif
86 rdtsc_barrier();
87 cycles1 = get_cycles();
88 rdtsc_barrier();
89 for(i=0; i<2000; i++) {
90 test(i, i);
91 test(i, i);
92 test(i, i);
93 test(i, i);
94 test(i, i);
95 test(i, i);
96 test(i, i);
97 test(i, i);
98 test(i, i);
99 test(i, i);
100 }
101 rdtsc_barrier();
102 cycles2 = get_cycles();
103 rdtsc_barrier();
104 local_irq_restore(flags);
105 printk("cycles : %llu\n", cycles2-cycles1);
106 return -EPERM;
107 }
108
109
110 static struct file_operations my_operations = {
111 .open = my_open,
112 };
113
114 int init_module(void)
115 {
116 pentry = create_proc_entry("testmark", 0444, NULL);
117 if (pentry)
118 pentry->proc_fops = &my_operations;
119
120 return 0;
121 }
122
123 void cleanup_module(void)
124 {
125 remove_proc_entry("testmark", NULL);
126 }
127
128 MODULE_LICENSE("GPL");
129 MODULE_AUTHOR("Mathieu Desnoyers");
130 MODULE_DESCRIPTION("Marker Test");
131 MODULE_VERSION("1.0");
132
This page took 0.032568 seconds and 5 git commands to generate.