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
|
/***************************************************************************
profiler.h
Functions to manage profiling of MAME execution.
Copyright Nicola Salmoria and the MAME Team.
Visit http://mamedev.org for licensing and usage restrictions.
***************************************************************************/
#pragma once
#ifndef __PROFILER_H__
#define __PROFILER_H__
/* profiling */
enum
{
PROFILER_END = -1,
PROFILER_CPU1 = 0,
PROFILER_CPU2,
PROFILER_CPU3,
PROFILER_CPU4,
PROFILER_CPU5,
PROFILER_CPU6,
PROFILER_CPU7,
PROFILER_CPU8,
PROFILER_MEMREAD,
PROFILER_MEMWRITE,
PROFILER_VIDEO,
PROFILER_DRAWGFX,
PROFILER_COPYBITMAP,
PROFILER_TILEMAP_DRAW,
PROFILER_TILEMAP_DRAW_ROZ,
PROFILER_TILEMAP_UPDATE,
PROFILER_ARTWORK,
PROFILER_BLIT,
PROFILER_SOUND,
PROFILER_MIXER,
PROFILER_TIMER_CALLBACK,
PROFILER_INPUT, /* input.c and inptport.c */
PROFILER_MOVIE_REC, /* movie recording */
PROFILER_LOGERROR, /* logerror */
PROFILER_EXTRA, /* everything else */
/* the USER types are available to driver writers to profile */
/* custom sections of the code */
PROFILER_USER1,
PROFILER_USER2,
PROFILER_USER3,
PROFILER_USER4,
PROFILER_PROFILER,
PROFILER_IDLE,
PROFILER_TOTAL
};
/*
To start profiling a certain section, e.g. video:
profiler_mark(PROFILER_VIDEO);
to end profiling the current section:
profiler_mark(PROFILER_END);
the profiler handles a FILO list so calls may be nested.
*/
#ifdef MAME_PROFILER
void profiler_mark(int type);
/* functions called by usrintf.c */
void profiler_start(void);
void profiler_stop(void);
const char *profiler_get_text(running_machine *machine);
#else
#define profiler_mark(type)
#define profiler_start()
#define profiler_stop()
#define profiler_get_text(machine) ""
#endif
#endif /* __PROFILER_H__ */
|