34 #define F_IDENT __FUNCTION__
39 extern void trace_set_time(
void);
40 extern unsigned long trace_time(
void);
41 extern void trace_dump_chars(
unsigned char *
data,
unsigned int len);
42 extern void trace_dump_uints(
U32BIT *
data,
unsigned int len,
unsigned int pitch);
45 extern unsigned long mheg_trace_debug;
48 #define TALWAYS 0x00ffffff
49 #define TWARN (1 << 30)
51 #define TKEYS (1 << 0)
52 #define TSTATE (1 << 0)
53 #define TPERFORM (1 << 0)
54 #define TTUNE (1 << 1)
55 #define TMEMORY (1 << 2)
56 #define TMHBOOT (1 << 3)
57 #define THBBTV (1 << 3)
59 #define TSTRM (1 << 4)
60 #define TFILE (1 << 5)
61 #define TDSMCC (1 << 6)
62 #define TDSMFG (1 << 7)
64 #define TQUERY (1 << 8)
65 #define TSERVICE (1 << 9)
66 #define TSSF (1 << 10)
67 #define TCACHE (1 << 11)
69 #define TICS (1 << 12)
70 #define TQUEUE (1 << 13)
71 #define TBROWSER (1 << 14)
72 #define TVGRAPI (1 << 15)
74 #define TGRAPHICS (1 << 16)
75 #define TFONT (1 << 17)
76 #define TTEXT (1 << 18)
77 #define TFONTCACHE (1 << 19)
79 #define TEVNTS (1 << 20)
80 #define TACTIONS (1 << 21)
81 #define TTIME (1 << 22)
82 #define TAIT (1 << 23)
84 extern unsigned long last_trace_time;
85 #define TRACETIME() if (last_trace_time + 100 < trace_time()) { last_trace_time = trace_time(); \
86 STB_SPDebugWrite("TRACE TIME= %d.%02d secs", last_trace_time / 100, last_trace_time % 100); }
87 #define TERPRINT(s, ...) STB_SPDebugWrite("ERROR-%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
88 #define TRCPRINT(s, ...) STB_SPDebugWrite("%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
89 #define TRACE_SET_TIME()
90 #elif TRACE_TIMING == 1
92 #define TERPRINT(s, ...) STB_SPDebugWrite("ERROR-%s:%d (%ld) " s, F_IDENT, __LINE__, trace_time(), ##__VA_ARGS__)
93 #define TRCPRINT(s, ...) STB_SPDebugWrite("%s:%d (%ld) " s, F_IDENT, __LINE__, trace_time(), ##__VA_ARGS__)
94 #define TRACE_SET_TIME() trace_set_time()
97 #define TERPRINT(s, ...) STB_SPDebugWrite("ERROR-%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
98 #define TRCPRINT(s, ...) STB_SPDebugWrite("%s:%d " s, F_IDENT, __LINE__, ##__VA_ARGS__)
99 #define TRACE_SET_TIME()
102 #define TRACE(t, x) TRACETIME() if ((t) == TERROR) { TERPRINT x; } \
103 else if ((t) & mheg_trace_debug) { TRCPRINT x; }
105 #define TPRINT(t, x) if ((t) & mheg_trace_debug) STB_SPDebugNoCnWrite x;
106 #define TRACE_BUFF(t, d, l) if ((t) & mheg_trace_debug) trace_dump_chars(d, l);
107 #define TRACE_UINT(t, d, l, p) if ((t) & mheg_trace_debug) trace_dump_uints(d, l, p);
108 #define TRACE_UNIC(t, d, l) if ((t) & mheg_trace_debug) trace_unicode(d, l);
112 #define ERROR_PRINT(x) STB_SPDebugNoCnWrite x
113 #define WARNING_PRINT(x) if (mheg_trace_debug) STB_SPDebugNoCnWrite x
115 #define TRACE_MEM() if (TMEMORY & mheg_trace_debug) MHG_DebugMemStats(__LINE__)
117 #define DBGTRACE(t, x, ...) if ((t) == TERROR || ((t) & mheg_trace_debug)) { \
118 STB_SPDebugWrite( "T%05x-%s:%d " x, t, F_IDENT, __LINE__, ##__VA_ARGS__); }
120 #define DBG_PRINTF STB_SPDebugNoCnWrite
126 #define TRACE_BUFF(t, d, l)
127 #define TRACE_UINT(t, d, l, p)
128 #define TRACE_UNIC(t, d, l)
131 #define TRACE_SET_TIME()
132 #define DBGTRACE(t, x, ...)
133 #define DBG_PRINTF(x, ...)
137 #if !defined(NDEBUG) && defined(STACK_DEBUGGING)
138 void STB_OSTaskAddFunc(
const char *func);
139 void STB_OSTaskRemFunc(
const char *func);
141 #define DECLARE_NAME(x) const char *func_name = F_IDENT;
143 #define DECLARE_NAME(x) const char func_name[] = #x;
145 #define FUNCTION_START(x) DECLARE_NAME(x) STB_OSTaskAddFunc(func_name);
146 #define FUNCTION_FINISH(x) STB_OSTaskRemFunc(func_name);
148 #define FUNCTION_START(name)
149 #define FUNCTION_FINISH(name)
152 #if defined(NDEBUG) && !defined(OVERRIDE_DEBUG_PRINTS)
167 #define DPLEVEL DBG_LEVEL
171 #define DPL5(x) STB_SPDebugNoCnWrite x
177 #define DPL4(x) STB_SPDebugNoCnWrite x
183 #define DPL3(x) STB_SPDebugNoCnWrite x
189 #define DPL2(x) STB_SPDebugNoCnWrite x
195 #define DPL1(x) STB_SPDebugNoCnWrite x
201 #if !defined(NDEBUG) && defined(DBGPRINT_ENABLED)
202 #define DBGPRINT(x, ...) STB_SPDebugWrite( "[%d] " x, __LINE__, ##__VA_ARGS__);
204 #define DBGPRINT(x, ...)
Debug functions required by MHEG5 engine in debug builds.
const char * data
Definition: mh5gate.c:65
void MHG_DebugMemStats(int line)
Definition: glue_memory.c:708
void MHG_DebugSetState(unsigned long state)
Definition: glue_debug.c:54
int len
Definition: mh5gate.c:66
uint16_t U16BIT
Definition: techtype.h:95
System Wide Global Technical Data Type Definitions.
unsigned long MHG_DebugGetState(void)
Definition: glue_debug.c:45
uint32_t U32BIT
Definition: techtype.h:97