aboutsummaryrefslogtreecommitdiffstats
path: root/src/profiling.c
diff options
context:
space:
mode:
authorBad Diode <bd@badd10de.dev>2023-04-22 18:45:35 +0200
committerBad Diode <bd@badd10de.dev>2023-04-22 18:45:35 +0200
commitd4fe4d95f105d8b9b47d26264c4876cbf4095a5d (patch)
treec85cee096603ab54301537add8f7d6e231bdbd81 /src/profiling.c
parent320690edaff025d4d446e2f67d23304e1810196e (diff)
downloadstepper-d4fe4d95f105d8b9b47d26264c4876cbf4095a5d.tar.gz
stepper-d4fe4d95f105d8b9b47d26264c4876cbf4095a5d.zip
Prepare profiling macros
Diffstat (limited to 'src/profiling.c')
-rw-r--r--src/profiling.c201
1 files changed, 201 insertions, 0 deletions
diff --git a/src/profiling.c b/src/profiling.c
new file mode 100644
index 0000000..de969d2
--- /dev/null
+++ b/src/profiling.c
@@ -0,0 +1,201 @@
1//
2// Profiling macros.
3//
4
5#ifndef PROF_ENABLE
6#define PROF_ENABLE 0
7#endif
8
9#if PROF_ENABLE > 0 && PROF_ENABLE < 3
10
11#ifndef PROF_N_FRAMES
12#define PROF_N_FRAMES 30
13#endif
14
15// Profile method 1: Average per N frames.
16#if PROF_ENABLE == 1
17#define TEXT_ENABLE 1
18#define PROF(F,VAR) \
19 do { \
20 u32 __tmp_prof = profile_measure();\
21 F;\
22 (VAR) += profile_measure() - __tmp_prof;\
23 } while (0)
24
25// Profile method 2: Maximum in N frames.
26#elif PROF_ENABLE == 2
27#define TEXT_ENABLE 1
28#define PROF(F,VAR) \
29 do { \
30 u32 __tmp_prof = profile_measure();\
31 (F);\
32 (VAR) = MAX(profile_measure() - __tmp_prof, (VAR));\
33 } while (0)
34#endif
35
36#ifndef PROF_SHOW_X
37#define PROF_SHOW_X 0
38#endif
39#ifndef PROF_SHOW_Y
40#define PROF_SHOW_Y 0
41#endif
42
43static bool profile_show = true;
44static bool profile_bg_show = true;
45
46#define PROF_SHOW() \
47 do { \
48 if (key_tap(KEY_START)) {\
49 profile_show ^= 1;\
50 }\
51 if (key_tap(KEY_SELECT)) {\
52 profile_bg_show ^= 1;\
53 }\
54 if (profile_show) {\
55 txt_position((PROF_SHOW_X), (PROF_SHOW_Y));\
56 draw_filled_rect((PROF_SHOW_X), (PROF_SHOW_X), 8 * 18, 8 * 16, 0);\
57 txt_printf("VIDEO\n");\
58 txt_printf(">CLEAR %.8lu\n", avg_clear_cycles);\
59 txt_printf(">LINES %.8lu\n", avg_line_cycles);\
60 txt_printf(">RECT %.8lu\n", avg_rect_cycles);\
61 txt_printf(">FRECT %.8lu\n", avg_fill_rect_cycles);\
62 txt_printf(">1BPP %.8lu\n", avg_icn_cycles);\
63 txt_printf(">2BPP %.8lu\n", avg_chr_cycles);\
64 txt_printf(">FLIP %.8lu\n", avg_flip_cycles);\
65 txt_printf("TEXT\n");\
66 txt_printf(">DRAWF %.8lu\n", avg_txt_drawf_cycles);\
67 txt_printf(">PRINTF %.8lu\n", avg_txt_printf_cycles);\
68 txt_printf(">RENDER %.8lu\n", avg_txt_render_cycles);\
69 txt_printf(">CLEAR %.8lu\n", avg_txt_clear_cycles);\
70 txt_printf("TOTAL %.8lu\n", avg_frame_cycles);\
71 }\
72 if (profile_bg_show) {\
73 u32 frame_time =\
74 FP_DIV(\
75 FP_NUM(avg_frame_cycles + 1, 2),\
76 FP_NUM(2809, 2),\
77 2) * 166;\
78 u32 fps =\
79 FP_DIV(\
80 FP_NUM(280896 * 60, 2),\
81 FP_NUM(avg_frame_cycles + 1, 2),\
82 2);\
83 txt_printf("TIME %.8lu\n", frame_time >> 2);\
84 txt_printf("FPS %.8lu\n", (fps >> 2) + 1);\
85 }\
86 } while (0)
87
88static u32 prof_frame_counter = 0;
89
90static u32 frame_cycles = 0;
91static u32 flip_cycles = 0;
92static u32 clear_cycles = 0;
93static u32 line_cycles = 0;
94static u32 rect_cycles = 0;
95static u32 fill_rect_cycles = 0;
96static u32 chr_cycles = 0;
97static u32 icn_cycles = 0;
98static u32 txt_drawf_cycles = 0;
99static u32 txt_printf_cycles = 0;
100static u32 txt_render_cycles = 0;
101static u32 txt_clear_cycles = 0;
102static u32 input_cycles = 0;
103
104static u32 avg_frame_cycles = 0;
105static u32 avg_flip_cycles = 0;
106static u32 avg_clear_cycles = 0;
107static u32 avg_line_cycles = 0;
108static u32 avg_rect_cycles = 0;
109static u32 avg_fill_rect_cycles = 0;
110static u32 avg_chr_cycles = 0;
111static u32 avg_icn_cycles = 0;
112static u32 avg_txt_drawf_cycles = 0;
113static u32 avg_txt_printf_cycles = 0;
114static u32 avg_txt_render_cycles = 0;
115static u32 avg_txt_clear_cycles = 0;
116static u32 avg_input_cycles = 0;
117
118#if PROF_ENABLE == 1
119#define FRAME_START()\
120 do { \
121 if (prof_frame_counter == PROF_N_FRAMES) {\
122 avg_frame_cycles = frame_cycles / prof_frame_counter;\
123 avg_flip_cycles = flip_cycles / prof_frame_counter;\
124 avg_clear_cycles = clear_cycles / prof_frame_counter;\
125 avg_line_cycles = line_cycles / prof_frame_counter;\
126 avg_rect_cycles = rect_cycles / prof_frame_counter;\
127 avg_fill_rect_cycles = fill_rect_cycles / prof_frame_counter;\
128 avg_chr_cycles = chr_cycles / prof_frame_counter;\
129 avg_icn_cycles = icn_cycles / prof_frame_counter;\
130 avg_txt_drawf_cycles = txt_drawf_cycles / prof_frame_counter;\
131 avg_txt_printf_cycles = txt_printf_cycles / prof_frame_counter;\
132 avg_txt_render_cycles = txt_render_cycles / prof_frame_counter;\
133 avg_txt_clear_cycles = txt_clear_cycles / prof_frame_counter;\
134 avg_input_cycles = input_cycles / prof_frame_counter;\
135 frame_cycles = 0;\
136 flip_cycles = 0;\
137 clear_cycles = 0;\
138 line_cycles = 0;\
139 rect_cycles = 0;\
140 fill_rect_cycles = 0;\
141 chr_cycles = 0;\
142 icn_cycles = 0;\
143 txt_drawf_cycles = 0;\
144 txt_printf_cycles = 0;\
145 txt_render_cycles = 0;\
146 txt_clear_cycles = 0;\
147 input_cycles = 0;\
148 prof_frame_counter = 0;\
149 }\
150 profile_start();\
151 } while (0)
152#elif PROF_ENABLE == 2
153#define FRAME_START()\
154 do { \
155 if (prof_frame_counter == PROF_N_FRAMES) {\
156 avg_frame_cycles = frame_cycles;\
157 avg_flip_cycles = flip_cycles;\
158 avg_clear_cycles = clear_cycles;\
159 avg_line_cycles = line_cycles;\
160 avg_rect_cycles = rect_cycles;\
161 avg_fill_rect_cycles = fill_rect_cycles;\
162 avg_chr_cycles = chr_cycles;\
163 avg_icn_cycles = icn_cycles;\
164 avg_txt_drawf_cycles = txt_drawf_cycles;\
165 avg_txt_printf_cycles = txt_printf_cycles;\
166 avg_txt_render_cycles = txt_render_cycles;\
167 avg_txt_clear_cycles = txt_clear_cycles;\
168 avg_input_cycles = input_cycles;\
169 frame_cycles = 0;\
170 flip_cycles = 0;\
171 clear_cycles = 0;\
172 line_cycles = 0;\
173 rect_cycles = 0;\
174 fill_rect_cycles = 0;\
175 chr_cycles = 0;\
176 icn_cycles = 0;\
177 txt_drawf_cycles = 0;\
178 txt_printf_cycles = 0;\
179 txt_render_cycles = 0;\
180 txt_clear_cycles = 0;\
181 input_cycles = 0;\
182 prof_frame_counter = 0;\
183 }\
184 profile_start();\
185 } while (0)
186#endif
187
188#define FRAME_END() \
189 do { \
190 prof_frame_counter++;\
191 frame_cycles += profile_stop();\
192 } while (0)
193
194#else
195
196// No profiling.
197#define PROF(F,VAR) (F)
198#define PROF_SHOW()
199#define FRAME_START()
200#define FRAME_END()
201#endif