update
[lttv.git] / markers-test / test-mark-speed-opt.c
CommitLineData
f3be6faa 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>
db68aac5 11#include <asm/system.h>
12
f3be6faa 13static 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
f3be6faa 52struct proc_dir_entry *pentry = NULL;
53
f36297eb 54char temp0[8192];
f8a585e7 55int temp[8192];
56char temp5[8192];
562710d7 57
f3be6faa 58static inline void test(unsigned long arg, unsigned long arg2)
59{
64242d95 60#ifdef CACHEFLUSH
db68aac5 61 wbinvd();
64242d95 62#endif
f8a585e7 63 temp[2] = (temp[0] + 60) << 10;
64 temp[3] = (temp[2] + 60) << 10;
65 temp[4] = (temp[3] + 60) << 10;
66 temp[0] = (temp[4] + 60) << 10;
f3be6faa 67 //asm volatile ("");
68 //__my_trace_mark(1, kernel_debug_test, NULL, "%d %d %ld %ld", 2, current->pid, arg, arg2);
f39e77c6 69 barrier();
f3be6faa 70 __my_trace_mark(0, kernel_debug_test, NULL, "%d %d %ld %ld", 2, current->pid, arg, arg2);
f39e77c6 71 barrier();
f3be6faa 72}
73
74static int my_open(struct inode *inode, struct file *file)
75{
76 unsigned int i;
77 cycles_t cycles1, cycles2;
78 unsigned long flags;
79
80 local_irq_save(flags);
d3926140 81#ifdef CACHEFLUSH
82 wbinvd(); /* initial write back, without cycle count */
83#endif
f3be6faa 84 rdtsc_barrier();
85 cycles1 = get_cycles();
86 rdtsc_barrier();
0ab0302a 87 for(i=0; i<2000; i++) {
3a9fa119 88 test(i, i);
89 test(i, 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);
f3be6faa 97 test(i, i);
98 }
99 rdtsc_barrier();
100 cycles2 = get_cycles();
101 rdtsc_barrier();
102 local_irq_restore(flags);
37c58830 103 printk("cycles : %llu\n", cycles2-cycles1);
f3be6faa 104 return -EPERM;
105}
106
107
108static struct file_operations my_operations = {
109 .open = my_open,
110};
111
112int init_module(void)
113{
114 pentry = create_proc_entry("testmark", 0444, NULL);
115 if (pentry)
116 pentry->proc_fops = &my_operations;
117
118 return 0;
119}
120
121void cleanup_module(void)
122{
123 remove_proc_entry("testmark", NULL);
124}
125
126MODULE_LICENSE("GPL");
127MODULE_AUTHOR("Mathieu Desnoyers");
128MODULE_DESCRIPTION("Marker Test");
64242d95 129MODULE_VERSION("1.0");
f3be6faa 130
This page took 0.02705 seconds and 4 git commands to generate.