sl@0: // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // Definitions of performance tracing macros sl@0: // sl@0: // sl@0: sl@0: #ifndef __WS_TRACES_H__ sl@0: #define __WS_TRACES_H__ sl@0: sl@0: #include sl@0: sl@0: #ifdef USE_TRACECORE_CATEGORY sl@0: enum TWsPerformanceTraceCategories sl@0: { sl@0: EWsPerformanceTraceProcessRawEvent = 0x10, sl@0: EWsPerformanceTraceQueueEvent, sl@0: EWsPerformanceTraceGetEvent, sl@0: EWsPerformanceTraceEventReady, sl@0: sl@0: EWsPerformanceTraceTriggerRedraw = 0x20, sl@0: EWsPerformanceTraceGetRedraw, sl@0: EWsPerformanceTraceRedrawReady, sl@0: sl@0: EWsPerformanceTraceStartRedraw = 0x30, sl@0: EWsPerformanceTraceStopRedraw sl@0: }; sl@0: #else sl@0: enum TWsPerformanceTraceCategories sl@0: { sl@0: EWsPerformanceTraceProcessRawEvent = 130, sl@0: EWsPerformanceTraceQueueEvent, sl@0: EWsPerformanceTraceGetEvent, sl@0: EWsPerformanceTraceEventReady, sl@0: sl@0: EWsPerformanceTraceTriggerRedraw = 140, sl@0: EWsPerformanceTraceGetRedraw, sl@0: EWsPerformanceTraceRedrawReady, sl@0: sl@0: EWsPerformanceTraceStartRedraw = 150, sl@0: EWsPerformanceTraceStopRedraw sl@0: }; sl@0: #endif sl@0: sl@0: #ifndef USE_WS_PERFORMANCE_TRACING sl@0: #define WS_TRACE0(category) sl@0: #define WS_TRACE_CONTEXT0(category) sl@0: #else sl@0: // TraceCore BTrace Handler sl@0: #ifdef USE_TRACECORE_CATEGORY sl@0: #define WS_TRACE0(category) BTrace4(0xA0, 0, category) sl@0: #define WS_TRACE_CONTEXT0(category) BTraceContext4(0xA0, 0, category) sl@0: #else sl@0: #define WS_TRACE0(category) BTrace0(category, 0) sl@0: #define WS_TRACE_CONTEXT0(category) BTraceContext0(category, 0) sl@0: #endif // USE_TRACECORE_CATEGORY sl@0: #endif // USE_WS_PERFORMANCE_TRACING sl@0: sl@0: #define WS_TRACE_SERVER_PROCESSRAWEVENT() WS_TRACE0(EWsPerformanceTraceProcessRawEvent) sl@0: #define WS_TRACE_SERVER_QUEUEEVENT() WS_TRACE0(EWsPerformanceTraceQueueEvent) sl@0: #define WS_TRACE_CLIENT_GETEVENT() WS_TRACE_CONTEXT0(EWsPerformanceTraceGetEvent) sl@0: #define WS_TRACE_CLIENT_EVENTREADY() WS_TRACE_CONTEXT0(EWsPerformanceTraceEventReady) sl@0: sl@0: #define WS_TRACE_SERVER_TRIGGERREDRAW() WS_TRACE0(EWsPerformanceTraceTriggerRedraw) sl@0: #define WS_TRACE_CLIENT_GETREDRAW() WS_TRACE_CONTEXT0(EWsPerformanceTraceGetRedraw) sl@0: #define WS_TRACE_CLIENT_REDRAWREADY() WS_TRACE_CONTEXT0(EWsPerformanceTraceRedrawReady) sl@0: sl@0: #define WS_TRACE_SERVER_STARTDRAW() WS_TRACE0(EWsPerformanceTraceStartRedraw) sl@0: #define WS_TRACE_SERVER_STOPDRAW() WS_TRACE0(EWsPerformanceTraceStopRedraw) sl@0: sl@0: #endif