X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FTrace.h;h=702a51ec7220179a42047e47d69de4e5040553d1;hb=53628e913632cac29d54da914040e39add334784;hp=0e142f5238c82dc32b48e340b489c7e32c760f2d;hpb=f732e7862bb1fcc65fcfbcfb6eaaf6dde39fdd5f;p=ghc-hetmet.git diff --git a/rts/Trace.h b/rts/Trace.h index 0e142f5..702a51e 100644 --- a/rts/Trace.h +++ b/rts/Trace.h @@ -1,58 +1,55 @@ /* ----------------------------------------------------------------------------- * - * (c) The GHC Team 2006 + * (c) The GHC Team, 2008-2009 * - * Debug and performance tracing. - * - * This is a layer over RtsMessages, which provides for generating - * trace messages with timestamps and thread Ids attached - * automatically. Also, multiple classes of messages are supported, - * which can be enabled separately via RTS flags. - * - * All debug trace messages go through here. Additionally, we - * generate timestamped trace messages for consumption by profiling - * tools using this API. + * Support for fast binary event logging. * * ---------------------------------------------------------------------------*/ #ifndef TRACE_H #define TRACE_H +#include "rts/EventLogFormat.h" +#include "Capability.h" + +BEGIN_RTS_PRIVATE + // ----------------------------------------------------------------------------- -// Tracing functions +// Posting events // ----------------------------------------------------------------------------- -void initTracing (void); +INLINE_HEADER void trace (StgWord32 class, char *msg, ...); -// The simple way: -void trace (StgWord32 class, const char *str, ...) - GNUC3_ATTRIBUTE(format (printf, 2, 3)); - -// The harder way: sometimes we want to generate a trace message that -// consists of multiple components generated by different functions. -// So we provide the functionality of trace() split into 3 parts: -// - traceClass(): a check that the required class is enabled -// - traceBegin(): print the beginning of the trace message -// - traceEnd(): complete the trace message (release the lock too). -// -INLINE_HEADER rtsBool traceClass (StgWord32 class); +#ifdef DEBUG +INLINE_HEADER void debugTrace (StgWord32 class, char *msg, ...); +#endif -void traceBegin (const char *str, ...) - GNUC3_ATTRIBUTE(format (printf, 1, 2)); +INLINE_HEADER void traceSchedEvent (Capability *cap, EventTypeNum tag, + StgTSO *tso, StgWord64 other); -void traceEnd (void); +INLINE_HEADER void traceCap (StgWord32 class, Capability *cap, + char *msg, ...); + +INLINE_HEADER void traceThreadStatus (StgWord32 class, StgTSO *tso); + +INLINE_HEADER rtsBool traceClass (StgWord32 class); #ifdef DEBUG -#define debugTrace(class, str, ...) trace(class,str, ## __VA_ARGS__) -// variable arg macros are C99, and supported by gcc. -#define debugTraceBegin(str, ...) traceBegin(str, ## __VA_ARGS__) -#define debugTraceEnd() traceEnd() -#else -#define debugTrace(class, str, ...) /* nothing */ -#define debugTraceBegin(str, ...) /* nothing */ -#define debugTraceEnd() /* nothing */ +void traceBegin (const char *str, ...); +void traceEnd (void); #endif +// ----------------------------------------------------------------------------- +// EventLog API +// ----------------------------------------------------------------------------- + +#if defined(TRACING) + +void initTracing (void); +void endTracing (void); +void freeTracing (void); + +#endif /* TRACING */ // ----------------------------------------------------------------------------- // Message classes, these may be OR-ed together @@ -74,20 +71,121 @@ void traceEnd (void); #define DEBUG_linker (1<<12) #define DEBUG_squeeze (1<<13) #define DEBUG_hpc (1<<14) +#define DEBUG_sparks (1<<15) -// Tracing flags -#define TRACE_sched (1<<20) -#define TRACE_gc (1<<21) +// events +#define TRACE_sched (1<<16) // ----------------------------------------------------------------------------- // PRIVATE below here // ----------------------------------------------------------------------------- +#ifdef TRACING + extern StgWord32 classes_enabled; -INLINE_HEADER rtsBool -traceClass (StgWord32 class) { return (classes_enabled & class); } +INLINE_HEADER rtsBool traceClass (StgWord32 class) +{ return (classes_enabled & class); } + +void traceSchedEvent_ (Capability *cap, EventTypeNum tag, + StgTSO *tso, StgWord64 other); + +/* + * Trace an event to the capability's event buffer. + */ +INLINE_HEADER void traceSchedEvent(Capability *cap, EventTypeNum tag, + StgTSO *tso, StgWord64 other) +{ + if (traceClass(TRACE_sched)) { + traceSchedEvent_(cap, tag, tso, other); + } +} + +void traceCap_(Capability *cap, char *msg, va_list ap); + +/* + * Trace a log message + */ +INLINE_HEADER void traceCap (StgWord32 class, Capability *cap, char *msg, ...) +{ + va_list ap; + va_start(ap,msg); + if (traceClass(class)) { + traceCap_(cap, msg, ap); + } + va_end(ap); +} + +void trace_(char *msg, va_list ap); + +/* + * Trace a log message + */ +INLINE_HEADER void trace (StgWord32 class, char *msg, ...) +{ + va_list ap; + va_start(ap,msg); + if (traceClass(class)) { + trace_(msg, ap); + } + va_end(ap); +} -// ----------------------------------------------------------------------------- +#ifdef DEBUG +INLINE_HEADER void debugTrace (StgWord32 class, char *msg, ...) +{ + va_list ap; + va_start(ap,msg); + if (traceClass(class)) { + trace_(msg, ap); + } + va_end(ap); +} +#else + +#define debugTrace(class, str, ...) /* nothing */ +// variable arg macros are C99, and supported by gcc. + +#endif + +void traceThreadStatus_ (StgTSO *tso); + +INLINE_HEADER void traceThreadStatus (StgWord32 class, StgTSO *tso) +{ + if (traceClass(class)) { + traceThreadStatus_(tso); + } +} + +#else /* !TRACING */ + +INLINE_HEADER rtsBool traceClass (StgWord32 class STG_UNUSED) +{ return rtsFalse; } + +INLINE_HEADER void traceSchedEvent (Capability *cap STG_UNUSED, + EventTypeNum tag STG_UNUSED, + StgTSO *tso STG_UNUSED, + StgWord64 other STG_UNUSED) +{ /* nothing */ } + +INLINE_HEADER void traceCap (StgWord32 class STG_UNUSED, + Capability *cap STG_UNUSED, + char *msg STG_UNUSED, ...) +{ /* nothing */ } + +INLINE_HEADER void trace (StgWord32 class STG_UNUSED, + char *msg STG_UNUSED, ...) +{ /* nothing */ } + +#define debugTrace(class, str, ...) /* nothing */ +// variable arg macros are C99, and supported by gcc. + +INLINE_HEADER void traceThreadStatus (StgWord32 class STG_UNUSED, + StgTSO *tso STG_UNUSED) +{ /* nothing */ } + +#endif /* TRACING */ + +END_RTS_PRIVATE #endif /* TRACE_H */