X-Git-Url: http://git.megacz.com/?a=blobdiff_plain;f=rts%2FTrace.h;h=702a51ec7220179a42047e47d69de4e5040553d1;hb=d64900abb0ddc2f2ab52948cc274f2adc864a6dc;hp=8820075bea535172c9d9953ea86ce22109a76eb5;hpb=7d7c187b4a12f1bb350e85cdb0115e19537cc704;p=ghc-hetmet.git diff --git a/rts/Trace.h b/rts/Trace.h index 8820075..702a51e 100644 --- a/rts/Trace.h +++ b/rts/Trace.h @@ -1,61 +1,55 @@ /* ----------------------------------------------------------------------------- * - * (c) The GHC Team 2006 + * (c) The GHC Team, 2008-2009 * - * Debug tracing. - * - * This is a layer over RtsMessages, which provides for generating - * trace messages with timestamps and task 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. + * Support for fast binary event logging. * * ---------------------------------------------------------------------------*/ #ifndef TRACE_H #define TRACE_H -#pragma GCC visibility push(hidden) +#include "rts/EventLogFormat.h" +#include "Capability.h" + +BEGIN_RTS_PRIVATE // ----------------------------------------------------------------------------- -// Tracing functions +// Posting events // ----------------------------------------------------------------------------- +INLINE_HEADER void trace (StgWord32 class, char *msg, ...); + #ifdef DEBUG +INLINE_HEADER void debugTrace (StgWord32 class, char *msg, ...); +#endif -void initTracing (void); +INLINE_HEADER void traceSchedEvent (Capability *cap, EventTypeNum tag, + StgTSO *tso, StgWord64 other); -// 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); +INLINE_HEADER void traceCap (StgWord32 class, Capability *cap, + char *msg, ...); -void traceBegin (const char *str, ...) - GNUC3_ATTRIBUTE(format (printf, 1, 2)); +INLINE_HEADER void traceThreadStatus (StgWord32 class, StgTSO *tso); +INLINE_HEADER rtsBool traceClass (StgWord32 class); + +#ifdef DEBUG +void traceBegin (const char *str, ...); void traceEnd (void); +#endif -#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() +// ----------------------------------------------------------------------------- +// EventLog API +// ----------------------------------------------------------------------------- -#else /* !DEBUG */ +#if defined(TRACING) -#define debugTrace(class, str, ...) /* nothing */ -#define debugTraceBegin(str, ...) /* nothing */ -#define debugTraceEnd() /* nothing */ +void initTracing (void); +void endTracing (void); +void freeTracing (void); -#endif +#endif /* TRACING */ // ----------------------------------------------------------------------------- // Message classes, these may be OR-ed together @@ -77,19 +71,121 @@ void traceEnd (void); #define DEBUG_linker (1<<12) #define DEBUG_squeeze (1<<13) #define DEBUG_hpc (1<<14) -#define DEBUG_eventlog (1<<15) +#define DEBUG_sparks (1<<15) + +// 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 */ -#pragma GCC visibility pop +END_RTS_PRIVATE #endif /* TRACE_H */